Codebase list curl / 36ff641
New upstream version 7.83.0 Samuel Henrique 2 years ago
825 changed file(s) with 36196 addition(s) and 26780 deletion(s). Raw diff Collapse all Expand all
+1415
-1569
CHANGES less more
44 \___|\___/|_| \_\_____|
55
66 Changelog
7
8 Version 7.83.0 (27 Apr 2022)
9
10 Daniel Stenberg (27 Apr 2022)
11 - RELEASE-NOTES: synced
12
13 The 7.83.0 release
14
15 - docs/THANKS: contributors from 7.83.0
16
17 - test 898/974/976: require proxy to run
18
19 Fixes #8755
20 Reported-by: Marc Hörsken
21 Closes #8756
22
23 - gnutls: don't leak the SRP credentials in redirects
24
25 Follow-up to 620ea21410030 and 139a54ed0a172a
26
27 Reported-by: Harry Sintonen
28 Closes #8752
29
30 - CURLOPT*TLSAUTH: they only work with OpenSSL or GnuTLS
31
32 Closes #8753
33
34 - openssl: don't leak the SRP credentials in redirects either
35
36 Follow-up to 620ea21410030
37
38 Reported-by: Harry Sintonen
39 Closes #8751
40
41 - [Liam Warfield brought this change]
42
43 hyper: fix tests 580 and 581 for hyper
44
45 Hyper now has the ability to preserve header order. This commit adds a
46 few lines setting the connection options for this feature.
47
48 Related to issue #8617
49 Closes #8707
50
51 - conncache: remove name arg from Curl_conncache_find_bundle
52
53 To simplify, and also since the returned name is not the full actual
54 name used for the check. The port number and zone id is also involved,
55 so just showing the name is misleading.
56
57 Closes #8750
58
59 - tests: verify the fix for CVE-2022-27774
60
61 - Test 973 redirects from HTTP to FTP, clear auth
62 - Test 974 redirects from HTTP to HTTP different port, clear auth
63 - Test 975 redirects from HTTP to FTP, permitted to keep auth
64 - Test 976 redirects from HTTP to HTTP different port, permitted to keep
65 auth
66
67 - transfer: redirects to other protocols or ports clear auth
68
69 ... unless explicitly permitted.
70
71 Bug: https://curl.se/docs/CVE-2022-27774.html
72 Reported-by: Harry Sintonen
73 Closes #8748
74
75 - connect: store "conn_remote_port" in the info struct
76
77 To make it available after the connection ended.
78
79 - cookie.d: clarify when cookies are always sent
80
81 - test898: verify the fix for CVE-2022-27776
82
83 Do not pass on Authorization headers on redirects to another port
84
85 - http: avoid auth/cookie on redirects same host diff port
86
87 CVE-2022-27776
88
89 Reported-by: Harry Sintonen
90 Bug: https://curl.se/docs/CVE-2022-27776.html
91 Closes #8749
92
93 - libssh2: make the md5 comparison fail if wrong length
94
95 Making it just skip the check unless exactly 32 is too brittle. Even if
96 the docs says it needs to be exactly 32, it is be safer to make the
97 comparison fail here instead.
98
99 Reported-by: Harry Sintonen
100 Bug: https://hackerone.com/reports/1549461
101 Closes #8745
102
103 - conncache: include the zone id in the "bundle" hashkey
104
105 Make connections to two separate IPv6 zone ids create separate
106 connections.
107
108 Reported-by: Harry Sintonen
109 Bug: https://curl.se/docs/CVE-2022-27775.html
110 Closes #8747
111
112 - [Patrick Monnerat brought this change]
113
114 url: check sasl additional parameters for connection reuse.
115
116 Also move static function safecmp() as non-static Curl_safecmp() since
117 its purpose is needed at several places.
118
119 Bug: https://curl.se/docs/CVE-2022-22576.html
120
121 CVE-2022-22576
122
123 Closes #8746
124
125 - libssh2: compare sha256 strings case sensitively
126
127 Reported-by: Harry Sintonen
128 Bug: https://hackerone.com/reports/1549435
129 Closes #8744
130
131 - tool_getparam: error out on missing -K file
132
133 Add test 411 to verify.
134
135 Reported-by: Median Median Stride
136 Bug: https://hackerone.com/reports/1542881
137 Closes #8731
138
139 - [Tatsuhiro Tsujikawa brought this change]
140
141 ngtcp2: deal with sub-millisecond timeout
142
143 Closes #8738
144
145 - misc: update copyright year ranges
146
147 - c_escape: escape '?' in generated --libcurl code
148
149 In order to avoid the risk of it being used in an accidental trigraph in
150 the generated code.
151
152 Reported-by: Harry Sintonen
153 Bug: https://hackerone.com/reports/1548535
154 Closes #8742
155
156 - [pheiduck on github brought this change]
157
158 mlc: curl.zuul.vexxhost.dev is reachable again
159
160 remove it from ignorelist for linkcheck
161
162 Closes #8736
163
164 - [Tatsuhiro Tsujikawa brought this change]
165
166 ngtcp2: avoid busy loop in low CWND situation
167
168 Closes #8739
169
170 - TODO: telnet - exit immediately upon connection if stdin is /dev/null
171
172 Suggested-by: Robin A. Meade
173 URL: https://curl.se/mail/archive-2022-04/0027.html
174
175 - [Kushal Das brought this change]
176
177 docs: updates spellings with full words
178
179 Closes #8730
180
181 - tests/FILEFORMAT.md: spellfix
182
183 Daniel Gustafsson (21 Apr 2022)
184 - misc: fix typos
185
186 Fix a few random typos is comments and workflow names.
187
188 - macos: fix .plist installation into framework
189
190 The copy command introduced in e498a9b1f had leftover '>' from the
191 previous sed command it replaced, which broke its syntax. Fix by
192 removing.
193
194 Reported-by: Emanuele Torre <torreemanuele6@gmail.com>
195
196 Daniel Stenberg (21 Apr 2022)
197 - [Christopher Degawa brought this change]
198
199 Makefile: fix ca-bundle due to mk-ca-bundle.pl being moved
200
201 The script was moved in 8e22fc68e7dda43e9f but the lines that called it
202 was not changed to reflect it's new position
203
204 Signed-off-by: Christopher Degawa <ccom@randomderp.com>
205
206 Closes #8728
207
208 Daniel Gustafsson (20 Apr 2022)
209 - macos: set .plist version in autoconf
210
211 Set the libcurl version in libcurl.plist like how libcurl.vers is
212 created.
213
214 Closes: #8692
215 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
216 Reviewed-by: Nick Zitzmann <nickzman@gmail.com>
217
218 - cookies: Improve errorhandling for reading cookiefile
219
220 The existing programming had some issues with errorhandling for reading
221 the cookie file. If the file failed to open, we would silently ignore it
222 and continue as if there was no file (or stdin) passed. In this case, we
223 would also call fclose() on the NULL FILE pointer, which is undefined
224 behavior. Fix by ensuring that the FILE pointer is set before calling
225 fclose on it, and issue a warning in case the file cannot be opened.
226 Erroring out on nonexisting file would break backwards compatibility of
227 very old behavior so we can't really go there.
228
229 Closes: #8699
230 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
231 Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
232
233 Daniel Stenberg (20 Apr 2022)
234 - libcurl-tutorial.3: spellfix and minor polish
235
236 - CURLINFO_PRIMARY_PORT.3: spellfix
237
238 Reported-by: Patrick Monnerat
239
240 - [Jay Dommaschk brought this change]
241
242 libssh: fix double close
243
244 libssh closes the socket in ssh_diconnect() so make sure that libcurl
245 does not also close it.
246
247 Fixes #8708
248 Closes #8718
249
250 Jay Satiro (20 Apr 2022)
251 - [Gisle Vanem brought this change]
252
253 unit1620: call global_init before calling Curl_open
254
255 Curl_open calls the resolver init and on Windows if the resolver backend
256 is c-ares then the Windows sockets library (winsock) must already have
257 been initialized (via global init).
258
259 Ref: https://github.com/curl/curl/pull/8540#issuecomment-1059771800
260
261 Closes https://github.com/curl/curl/pull/8719
262
263 Daniel Stenberg (19 Apr 2022)
264 - CURLINFO_PRIMARY_PORT.3: clarify which port this is
265
266 As it was not entirely clear previously.
267
268 Closes #8725
269
270 - CURLOPT_UNRESTRICTED_AUTH.3: extended explanation
271
272 Include details about Authentication headers.
273
274 Reported-by: Brad Spencer
275 Fixes #8724
276 Closes #8726
277
278 - .github/workflows/macos.yml: add a libssh job with c-ares
279
280 ... to enable the memdebug system
281
282 Closes #8720
283
284 - RELEASE-NOTES: synced
285
286 Jay Satiro (17 Apr 2022)
287 - [Gisle Vanem brought this change]
288
289 docs/HTTP3.md: fix typo
290
291 also fix msh3 section formatting
292
293 Ref: https://github.com/curl/curl/commit/37492ebb#r70980087
294
295 Marc Hoersken (17 Apr 2022)
296 - timediff.[ch]: add curlx helper functions for timeval conversions
297
298 Also move timediff_t definitions from timeval.h to timediff.h and
299 then make timeval.h include the new standalone-capable timediff.h.
300
301 Reviewed-by: Jay Satiro
302 Reviewed-by: Daniel Stenberg
303
304 Supersedes #5888
305 Closes #8595
306
307 Daniel Stenberg (17 Apr 2022)
308 - [Balakrishnan Balasubramanian brought this change]
309
310 tests: refactor server/socksd.c to support --unix-socket
311
312 Closes #8687
313
314 - [Emanuele Torre brought this change]
315
316 tool_paramhlp: use feof(3) to identify EOF correctly when using fread(3)
317
318 This loop was using the number of bytes read from the file as condition
319 to keep reading.
320
321 From Linux's fread(3) man page:
322 > On success, fread() and fwrite() return the number of items read or
323 > written. This number equals the number of bytes transferred only when
324 > size is 1. If an error occurs, or the end of the file is reached, the
325 > return value is a short item count (or zero).
326 >
327 > The file position indicator for the stream is advanced by the number
328 > of bytes successfully read or written.
329 >
330 > fread() does not distinguish between end-of-file and error, and
331 > callers must use feof(3) and ferror(3) to determine which occurred.
332
333 This means that nread!=0 doesn't make much sense as an end condition for
334 the loop: nread==0 doesn't necessarily mean that EOF has been reached or
335 an error has occured (but that is usually the case) and nread!=0 doesn't
336 necessarily mean that EOF has not been reached or that no read errors
337 have occured. feof(3) and ferror(3) should be uses when using fread(3).
338
339 Currently curl has to performs an extra fread(3) call to get a return
340 value equal to 0 to stop looping.
341
342 This usually "works" (even though nread==0 shouldn't be interpreted as
343 EOF) if stdin is a pipe because EOF usually marks the "real" end of the
344 stream, so the extra fread(3) call will return immediately and the extra
345 read syscall won't be noticeable:
346
347 bash-5.1$ strace -e read curl -s -F file=@- 0x0.st <<< a 2>&1 |
348 > tail -n 5
349 read(0, "a\n", 4096) = 2
350 read(0, "", 4096) = 0
351 read(0, "", 4096) = 0
352 http://0x0.st/oRs.txt
353 +++ exited with 0 +++
354 bash-5.1$
355
356 But this doesn't work if curl is reading from stdin, stdin is a
357 terminal, and the EOF is being emulated using a shell with ^D. Two
358 consecutive ^D will be required in this case to actually make curl stop
359 reading:
360
361 bash-5.1$ curl -F file=@- 0x0.st
362 a
363 ^D^D
364 http://0x0.st/oRs.txt
365 bash-5.1$
366
367 A possible workaround to this issue is to use a program that handles EOF
368 correctly to indirectly send data to curl's stdin:
369
370 bash-5.1$ cat - | curl -F file=@- 0x0.st
371 a
372 ^D
373 http://0x0.st/oRs.txt
374 bash-5.1$
375
376 This patch makes curl handle EOF properly when using fread(3) in
377 file2memory() so that the workaround is not necessary.
378
379 Since curl was previously ignoring read errors caused by this fread(3),
380 ferror(3) is also used in the condition of the loop: read errors and EOF
381 will have the same meaning; this is done to somewhat preserve the old
382 behaviour instead of making the command fail when a read error occurs.
383
384 Closes #8701
385
386 - gen.pl: change wording for mutexed options
387
388 Instead of saying "This option overrides NNN", now say "This option is
389 mutually exclusive to NNN" in the generated man page ouput, as the
390 option does not in all cases actually override the others but they are
391 always mutually exclusive.
392
393 Ref: #8704
394 Closes #8716
395
396 - curl: error out if -T and -d are used for the same URL
397
398 As one implies PUT and the other POST, both cannot be used
399 simultaneously.
400
401 Add test 378 to verify.
402
403 Reported-by: Boris Verkhovskiy
404 Fixes #8704
405 Closes #8715
406
407 - lib: remove exclamation marks
408
409 ... from infof() and failf() calls. Make them less attention seeking.
410
411 Closes #8713
412
413 - fail.d: tweak the description
414
415 Reviewed-by: Daniel Gustafsson
416 Suggested-by: Robert Charles Muir
417 Ref: https://twitter.com/rcmuir/status/1514915401574010887
418
419 Closes #8714
420
421 Daniel Gustafsson (15 Apr 2022)
422 - docs: Fix missing semicolon in example code
423
424 Multiple share examples were missing a semicolon on the line defining
425 the CURLSHcode variable.
426
427 Closes: #8697
428 Reported-by: Michael Kaufmann <mail@michael-kaufmann.ch>
429 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
430
431 - infof: consistent capitalization of warning messages
432
433 Ensure that all infof calls with a warning message are capitalized
434 in the same way. At some point we should probably set up a style-
435 guide for infof but until then let's aim for a little consistenncy
436 where we can.
437
438 Closes: #8711
439 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
440
441 - RELEASE-NOTES: synced
442
443 - [Matteo Baccan brought this change]
444
445 perl: removed a double semicolon at end of line
446
447 Remove double semicolons at end of line in Perl code.
448
449 Closes: #8709
450 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
451
452 - curl_easy_header: fix typos in documentation
453
454 Closes: #8694
455 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
456
457 Marcel Raad (11 Apr 2022)
458 - appveyor: add Cygwin build
459
460 Closes https://github.com/curl/curl/pull/8693
461
462 - appveyor: only add MSYS2 to PATH where required
463
464 Closes https://github.com/curl/curl/pull/8693
465
466 Daniel Stenberg (10 Apr 2022)
467 - [Tatsuhiro Tsujikawa brought this change]
468
469 ngtcp2: fix memory leak
470
471 Closes #8691
472
473 - [Tatsuhiro Tsujikawa brought this change]
474
475 ngtcp2: remove remote_addr which is not used in a meaningful way
476
477 Closes #8689
478
479 - [Tatsuhiro Tsujikawa brought this change]
480
481 ngtcp2: enlarge H3_SEND_SIZE
482
483 Make h3_SEND_SIZE larger because current value (20KiB) is too small
484 for the high latency environment.
485
486 Closes #8690
487
488 - [Tatsuhiro Tsujikawa brought this change]
489
490 ngtcp2: fix HTTP/3 upload stall and avoid busy loop
491
492 This commit fixes HTTP/3 upload stall if upload data is larger than
493 H3_SEND_SIZE. Only check writability of socket if a stream is
494 writable to avoid busy loop when QUIC flow control window is filled
495 up, or upload buffer is full.
496
497 Closes #8688
498
499 - [Nick Banks brought this change]
500
501 msh3: add support for QUIC and HTTP/3 using msh3
502
503 Considered experimental, as the other HTTP/3 backends.
504
505 Closes #8517
506
507 - TODO: "SFTP with SCP://"
508
509 - GHA: move bearssl jobs over from zuul
510
511 Closes #8684
512
513 - data/DISABLED: disable test 313 on bearssl builds
514
515 Closes #8684
516
517 - runtests: add 'bearssl' as testable feature
518
519 Closes #8684
520
521 - GHA: add openssl3 jobs moved over from zuul
522
523 Closes #8683
524
525 - schannel: remove dead code that will never run
526
527 As the condition can't ever evaluate true
528
529 Reported-by: Andrey Alifanov
530 Ref: #8675
531 Closes #8677
532
533 - connecache: remove duplicate connc->closure_handle check
534
535 The superfluous extra check could cause analyzer false positives
536 and doesn't serve any purpose.
537
538 Closes #8676
539
540 - [Michał Antoniak brought this change]
541
542 mbedtls: remove server_fd from backend
543
544 Closes #8682
545
546 - [Tatsuhiro Tsujikawa brought this change]
547
548 ngtcp2: use token when detecting :status header field
549
550 Closes #8679
551
552 - [Tatsuhiro Tsujikawa brought this change]
553
554 ngtcp2: make curl 1ms faster
555
556 Pass 0 for an already expired timer.
557
558 Closes #8678
559
560 - [Tatsuhiro Tsujikawa brought this change]
561
562 ngtcp2: fix QUIC_IDLE_TIMEOUT
563
564 QUIC_IDLE_TIMEOUT should be of type ngtcp2_duration which is
565 nanoseconds resolution.
566
567 Closes #8678
568
569 - English: use American spelling consistently
570
571 Authorization, Initialization, Organization etc.
572
573 Closes #8673
574
575 Daniel Gustafsson (5 Apr 2022)
576 - [Sascha Zengler brought this change]
577
578 BUGS: Fix incorrect punctuation
579
580 Closes #8672
581 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
582
583 Daniel Stenberg (4 Apr 2022)
584 - tool_listhelp.c: uppercase URL
585
586 - RELEASE-NOTES: synced
587
588 - http: streamclose "already downloaded"
589
590 Instead of connclose()ing, since when HTTP/2 is used it doesn't need to
591 close the connection as stopping the current transfer is enough.
592
593 Reported-by: Evangelos Foutras
594 Closes #8665
595
596 Jay Satiro (1 Apr 2022)
597 - ftp: fix error message for partial file upload
598
599 - Show the count of bytes written on partial file upload.
600
601 Prior to this change the error message mistakenly showed the count of
602 bytes read, not written.
603
604 Bug: https://github.com/curl/curl/discussions/8637
605 Reported-by: Taras Kushnir
606
607 Closes https://github.com/curl/curl/pull/8649
608
609 Daniel Stenberg (1 Apr 2022)
610 - http: correct the header error message to say colon
611
612 Not semicolon
613
614 Reported-by: Gisle Vanem
615 Ref: #8666
616 Closes #8667
617
618 - lib: #ifdef on USE_HTTP2 better
619
620 ... as nghttp2 might not be the library that provides HTTP/2 support.
621
622 Closes #8661
623
624 - [Michał Antoniak brought this change]
625
626 mbedtls: remove 'protocols' array from backend when ALPN is not used
627
628 Closes #8663
629
630 - http2: RST the stream if we stop it on our own will
631
632 For the "simulated 304" case the done-call isn't considered "premature"
633 but since the server didn't close the stream it needs to be reset to
634 stop delivering data.
635
636 Closes #8664
637
638 - http: close the stream (not connection) on time condition abort
639
640 Closes #8664
641
642 - http2: handle DONE called for the paused stream
643
644 As it could otherwise stall all streams on the connection
645
646 Reported-by: Evangelos Foutras
647 Fixes #8626
648 Closes #8664
649
650 - tls: make mbedtls and NSS check for h2, not nghttp2
651
652 This makes them able to also negotiate HTTP/2 even when built to use
653 hyper for h2.
654
655 Closes #8656
656
657 - tests/libtest/lib670.c: fixup the copyright year range
658
659 follow-up to b54e18640ea4b7
660
661 - [Leandro Coutinho brought this change]
662
663 lib670: avoid double check result
664
665 Closes #8660
666
667 - vtls: use a generic "ALPN, server accepted" message
668
669 Closes #8657
670
671 - vtls: use a backend standard message for "ALPN: offers %s"
672
673 I call it VTLS_INFOF_ALPN_OFFER_1STR, the '1str' meaning that the
674 infof() call also needs a string argument: the ALPN ID.
675
676 Closes #8657
677
678 - [Christian Schmitz brought this change]
679
680 strcase.h: add comment about the return code
681
682 Tool often we run into expecting this to work like strcmp, but it
683 returns 1 instead of 0 for match.
684
685 Closes #8658
686
687 - vtls: provide a unified APLN-disagree string for all backends
688
689 Also rephrase to make it sound less dangerous:
690
691 "ALPN: server did not agree on a protocol. Uses default."
692
693 Reported-by: Nick Coghlan
694 Fixes #8643
695 Closes #8651
696
697 - projects/README: converted to markdown
698
699 Closes #8652
700
701 - misc: spelling fixes
702
703 Mostly in comments but also in the -w documentation for headers_json.
704
705 Closes #8647
706
707 - KNOW_BUGS: HTTP3/Transfer closed with n bytes remaining to read
708
709 "HTTP/3 does not support client certs" considered fixed, at least with
710 the ngtcp2 backend.
711
712 Closes #8523
713
714 - CURLOPT_PREQUOTE.3: only works for FTP file transfers, not dirs
715
716 Also add to quote.d. Add to TODO as something to add in a future.
717
718 Reported-by: anon00000000 on github
719 Closes #8602
720 Closes #8648
721
722 - RELEASE-NOTES: synced
723
724 - pop3/smtp: return *WEIRD_SERVER_REPLY when not understood
725
726 This leaves the CURLE_RECV_ERROR error code for explicit failure to
727 receive network data and allows users to better separate the problems.
728
729 Ref #8356
730 Reported-by: Rianov Viacheslav
731 Closes #8506
732
733 - docs: lots of minor language polish
734
735 Mostly based on recent language decisions from "everything curl":
736
737 - remove contractions (isn't => is not)
738 - *an* HTTP (consistency)
739 - runtime (no hyphen)
740 - backend (no hyphen)
741 - URL is uppercase
742
743 Closes #8646
744
745 Jay Satiro (29 Mar 2022)
746 - projects: Update VC version names for VS2017, VS2022
747
748 - Rename VC15 -> VC14.10, VC17 -> VC14.30.
749
750 The projects directory that holds the pre-generated Visual Studio
751 project files uses VC<ver> to indicate the MSVC version. At some point
752 support for Visual Studio 2017 (Visual Studio version 15 which uses MSVC
753 14.10) was added as VC15. Visual Studio 2022 (Visual Studio version 17
754 which uses MSVC 14.30) project files were recently added and followed
755 that same format using VC17.
756
757 There is no such MSVC version (yet) as VC15 or VC17.
758
759 For VS 2017 for example, the name we use is correct as either VS17,
760 VS2017, VC14.10. I opted for the latter since we use VC for earlier
761 versions (eg VC10, VC12, etc).
762
763 Ref: https://github.com/curl/curl/pull/8438#issuecomment-1037070192
764
765 Closes https://github.com/curl/curl/pull/8447
766
767 Daniel Stenberg (29 Mar 2022)
768 - mqtt: better handling of TCP disconnect mid-message
769
770 Reported-by: Jenny Heino
771 Bug: https://hackerone.com/reports/1521610
772 Closes #8644
773
774 - CURLOPT_DISALLOW_USERNAME_IN_URL.3: use uppercase URL
775
776 - [Ian Blanes brought this change]
777
778 docs/DYNBUF: clarify documentation for Curl_dyn_ptr and Curl_dyn_uptr
779
780 Closes #8606
781
782 - [Ian Blanes brought this change]
783
784 curl: fix segmentation fault for empty output file names.
785
786 Function glob_match_url set *result to NULL when called with filename =
787 "", producing an indirect NULL pointer dereference.
788
789 Closes #8606
790
791 - TODO: Read keys from ~/.ssh/id_ecdsa, id_ed25519
792
793 It would be nice to expand the list of key locations curl uses for the
794 newer key types supported by libssh2.
795
796 Closes #8586
797
798 - ngtcp2: update to work after recent ngtcp2 updates
799
800 Assisted-by: Tatsuhiro Tsujikawa
801 Reported-by: jurisuk on github
802 Fixes #8638
803 Closes #8639
804
805 - [Farzin brought this change]
806
807 CURLOPT_PROGRESSFUNCTION.3: fix typo in example
808
809 Closes #8636
810
811 - curl/header_json: output the header names in lowercase
812
813 To better allow json[“header”].
814
815 Reported-by: Peter Korsgaard
816 Bug: https://daniel.haxx.se/blog/2022/03/24/easier-header-picking-with-curl/comment-page-1/#comment-25878
817 Closes #8633
818
819 - RELEASE-NOTES: synced
820
821 - headers.h: make Curl_headers_push() be CURLE_OK when not built
822
823 ... to avoid errors when the function isn't there.
824
825 Reported-by: Marcel Raad
826 Fixes #8627
827 Closes #8628
828
829 - scripts: move three scripts from lib/ to scripts/
830
831 Move checksrc.pl, firefox-db2pem.sh and mk-ca-bundle.pl since they don't
832 particularly belong in lib/
833
834 Also created an EXTRA_DIST= in scripts/Makefile.am instead of specifying
835 those files in the root Makefile.am
836
837 Closes #8625
838
839 Marc Hoersken (23 Mar 2022)
840 - lib/warnless.[ch]: only check for WIN32 and ignore _WIN32
841
842 curl_setup.h automatically defines WIN32 if just _WIN32 is defined.
843
844 Therefore make sure curl_setup.h is included through warnless.h.
845
846 Reviewed-by: Daniel Stenberg
847 Reviewed-by: Jay Satiro
848
849 Closes #8594
850
851 - tests/server/util.h: align WIN32 condition with util.c
852
853 There is no need to test for both _WIN32 and WIN32 as curl_setup.h
854 automatically defines the later if the first one is defined.
855
856 Also tests/server/util.c is only checking for WIN32 arouund the
857 implementation of win32_perror, so just defining _WIN32
858 would not be sufficient for a successful compilation.
859
860 Reviewed-by: Daniel Stenberg
861 Reviewed-by: Jay Satiro
862
863 Closes #8594
864
865 Daniel Stenberg (22 Mar 2022)
866 - [pheiduck on github brought this change]
867
868 firefox-db2pem.sh: make the shell script safer
869
870 Reported by lift
871
872 Closes #8616
873
874 Jay Satiro (22 Mar 2022)
875 - gtls: fix build for disabled TLS-SRP
876
877 Prior to this change if, at build time, the GnuTLS backend was found to
878 have TLS-SRP support (HAVE_GNUTLS_SRP) but TLS-SRP was disabled in curl
879 via --disable-tls-srp (!USE_TLS_SRP) then a build error would occur.
880
881 Bug: https://curl.se/mail/lib-2022-03/0046.html
882 Reported-by: Robert Brose
883
884 Closes https://github.com/curl/curl/pull/8604
885
886 - winbuild: Add a Visual Studio example to the README
887
888 - Add an example that explains in detail how the user can add libcurl to
889 their Visual Studio project.
890
891 Ref: https://github.com/curl/curl/issues/8591
892
893 Closes https://github.com/curl/curl/pull/8592
894
895 - docs/opts: Mention Schannel client cert type is P12
896
897 Schannel backend code behaves same as Secure Transport, it expects a P12
898 certificate file or the name of a certificate already in the user's OS
899 key store. Also, both backends ignore CURLOPT_SSLKEY (tool: --key)
900 because they expect the private key to already be available from the
901 keystore or P12 certificate.
902
903 Ref: https://github.com/curl/curl/discussions/8581#discussioncomment-2337260
904
905 Closes https://github.com/curl/curl/pull/8587
906
907 Daniel Stenberg (22 Mar 2022)
908 - lib1945: fix compiler warning 4706 on MSVC
909
910 Follow-up from d1e4a677340c
911
912 Closes #8623
913
914 - [pheiduck on github brought this change]
915
916 ci/event-based.yml: improve impacket install
917
918 skip python3-pip
919 install impacket with library module
920
921 Closes #8621
922
923 - test1459: disable for oldlibssh
924
925 This test with libssh 0.9.3 works fine on github but fails on circleci.
926 Might as well disable this test for oldlibssh installations.
927
928 Closes #8622
929
930 - test1135: sync with recent API updates
931
932 This test verifies that the order of functions in public headers remain
933 the same but hasn't been updated to care for recently added header
934 files. The order is important for some few platforms - or VERSIONINFO
935 needs to updated.
936
937 This fix also updates VERSIONINFO to be sure.
938
939 Closes #8620
940
941 - curl_easy_nextheader.3: fix two typos
942
943 Reported-by: Timothe Litt
944 Bug: https://curl.se/mail/lib-2022-03/0060.html
945
946 - options: remove mistaken space before paren in prototype
947
948 - cirrus: add --enable-headers-api for some windows builds
949
950 - GHA: --enable-headers-api in all workflows
951
952 - lib: make the headers API depend on --enable-headers-api
953
954 - configure: add --enable-headers-api to enable the headers API
955
956 Defaults to disabled while labeled EXPERIMENTAL.
957
958 Make all the headers API tests require 'headers-api' to run.
959
960 - test1671: verify -w '%{header_json}
961
962 - test1670: verify -w %header{}
963
964 - curl: add %{header_json} support in -w handling
965
966 Outputs all response headers as a JSON object.
967
968 - curl: add %header{name} support in -w handling
969
970 Outputs the response header 'name'
971
972 - header api: add curl_easy_header and curl_easy_nextheader
973
974 Add test 1940 to 1946 to verify.
975
976 Closes #8593
977
978 - test1459: remove the different exit code for oldlibssh
979
980 When using libssh/0.9.3/openssl/zlib, we seem to be getting the "right"
981 error code.
982
983 Closes #8490
984
985 - libssh: unstick SFTP transfers when done event-based
986
987 Test 604 and 606 (at least).
988
989 Closes #8490
990
991 - gha: move the event-based test over from Zuul
992
993 Switched libssh2 to libssh
994
995 Closes #8490
996
997 - RELEASE-NOTES: synced
998
999 - http: return error on colon-less HTTP headers
1000
1001 It's a protocol violation and accepting them leads to no good.
1002
1003 Add test case 398 to verify
1004
1005 Closes #8610
1006
1007 - test718: edited slightly to return better HTTP
1008
1009 Since hyper is picky and won't play ball otherwise.
1010
1011 Bug: https://github.com/hyperium/hyper/issues/2783
1012 Reported-by: Daniel Valenzuela
1013 Closes #8614
1014
1015 - hyper: no h2c support
1016
1017 Make tests require h2c feature present to run, and only set h2c if
1018 nghttp2 is used in the build. Hyper does not support it.
1019
1020 Remove those tests from DISABLED
1021
1022 Fixes #8605
1023 Closes #8613
1024
1025 - configure: bump the copyright year range int the generated output
1026
1027 - [Andreas Falkenhahn brought this change]
1028
1029 BINDINGS.md: add Hollywood binding
1030
1031 Closes #8609
1032
1033 - HISTORY: add some 2022 data
1034
1035 - scripts/copyright.pl: ignore the new mlc_config.json file
1036
1037 - [pheiduck on github brought this change]
1038
1039 mlc_config.json: add file to ignore known troublesome URLs
1040
1041 This is the config file for the CI markdown link checker and lets us
1042 filter URLs that are known to cause problems. Like
1043 https://curl.zuul.vexxhost.dev/ for now.
1044
1045 Closes #8597
1046
1047 - [pheiduck on github brought this change]
1048
1049 winbuild/README.md: fixup dead link
1050
1051 Closes #8597
1052
1053 Jay Satiro (18 Mar 2022)
1054 - rtsp: don't let CSeq error override earlier errors
1055
1056 - When done, if an error has already occurred then don't check the
1057 sequence numbers for mismatch.
1058
1059 A sequence number may not have been received if an error occurred.
1060
1061 Prior to this change a sequence mismatch error would override earlier
1062 errors. For example, a server that returns nothing would cause error
1063 CURLE_GOT_NOTHING in Curl_http_done which was then overridden by
1064 CURLE_RTSP_CSEQ_ERROR in rtsp_done.
1065
1066 Closes https://github.com/curl/curl/pull/8525
1067
1068 - lib: fix some misuse of curlx_convert_wchar_to_UTF8
1069
1070 curlx_convert_wchar_to_UTF8 must be freed by curlx_unicodefree, but
1071 prior to this change some uses mistakenly called free.
1072
1073 I've reviewed all other uses of curlx_convert_wchar_to_UTF8 and
1074 curlx_convert_UTF8_to_wchar.
1075
1076 Ref: https://github.com/curl/curl/commit/1d5d0ae
1077
1078 Closes https://github.com/curl/curl/pull/8521
1079
1080 - mk-ca-bundle.pl: Use stricter logic to process the certificates
1081
1082 .. and bump version to 1.29.
1083
1084 This change makes the script properly ignore unknown blocks and
1085 otherwise fail when Mozilla changes the certdata format in ways we
1086 don't expect. Though this is less flexible behavior it makes it far less
1087 likely that an invalid certificate can slip through.
1088
1089 Prior to this change the state machine did not always properly reset,
1090 and it was possible that a certificate marked as invalid could then
1091 later be marked as valid when there was conflicting trust info or
1092 an unknown block was erroneously processed as part of the certificate.
1093
1094 Ref: https://github.com/curl/curl/pull/7801#pullrequestreview-768384569
1095
1096 Closes https://github.com/curl/curl/pull/8411
1097
1098 Marcel Raad (17 Mar 2022)
1099 - test375: fix line endings on Windows
1100
1101 Closes https://github.com/curl/curl/pull/8599
1102
1103 Daniel Stenberg (17 Mar 2022)
1104 - http: reject header contents with nul bytes
1105
1106 They are not allowed by the protocol and allowing them risk that curl
1107 misbehaves somewhere where C functions are used but won't work on the
1108 full contents. Further, they are not supported by hyper and they cause
1109 problems for the new coming headers API work.
1110
1111 Updated test 262 to verify and enabled it for hyper as well
1112
1113 Closes #8601
1114
1115 - [pheiduck on github brought this change]
1116
1117 CI: Do not use buildconf. Instead, just use: autoreconf -fi
1118
1119 Closes #8596
1120
1121 - RELEASE-NOTES: synced
1122
1123 Jay Satiro (14 Mar 2022)
1124 - libssh: Improve fix for missing SSH_S_ stat macros
1125
1126 - If building libcurl against an old libssh version missing SSH_S_IFMT
1127 and SSH_S_IFLNK then use the values from a supported version.
1128
1129 Prior to this change if libssh did not define SSH_S_IFMT and SSH_S_IFLNK
1130 then S_IFMT and S_IFLNK, respectively, were used instead. The problem
1131 with that is the user's S_ stat macros don't have the same values across
1132 platforms. For example Windows has values different from Linux.
1133
1134 Follow-up to 7b0fd39.
1135
1136 Ref: https://github.com/curl/curl/pull/8511#discussion_r815292391
1137 Ref: https://github.com/curl/curl/pull/8574
1138
1139 Closes https://github.com/curl/curl/pull/8588
1140
1141 Marc Hoersken (13 Mar 2022)
1142 - tool and tests: force flush of all buffers at end of program
1143
1144 On Windows data can be lost in buffers in case of abnormal program
1145 termination, especially in process chains as seen due to flaky tests.
1146 Therefore flushing all buffers manually should avoid this data loss.
1147
1148 In the curl tool we play the safe game by only flushing write buffers,
1149 but in the testsuite where we manage all buffers, we flush everything.
1150
1151 This should drastically reduce Windows CI and testsuite flakiness.
1152
1153 Reviewed-by: Daniel Stenberg
1154
1155 Supersedes #7833 and #6064
1156 Closes #8516
1157
1158 Daniel Stenberg (12 Mar 2022)
1159 - [Jan Venekamp brought this change]
1160
1161 BearSSL: add CURLOPT_SSL_CTX_FUNCTION support
1162
1163 Closes #8478
1164
1165 - [Jan Venekamp brought this change]
1166
1167 BearSSL: add CURLOPT_SSL_CIPHER_LIST support
1168
1169 Closes #8477
1170
1171 Dan Fandrich (11 Mar 2022)
1172 - tool_cb_hdr: Turn the Location: into a terminal hyperlink
1173
1174 This turns even relative URLs into clickable hyperlinks in a supported
1175 terminal when --styled-output is enabled. Many terminals already turn
1176 URLs into clickable links but there is not enough information in a
1177 relative URL to do this automatically otherwise.
1178
1179 - keepalive-time.d: It takes many probes to detect brokenness
1180
1181 Daniel Stenberg (11 Mar 2022)
1182 - [HexTheDragon brought this change]
1183
1184 curl: add --no-clobber
1185
1186 Does not overwrite output files if they already exist
1187
1188 Closes #7708
1189 Co-authored-by: Daniel Stenberg
1190
1191 - RELEASE-NOTES: synced
1192
1193 also bump next pending version to become 7.83.0
1194
1195 - [Jean-Philippe Menil brought this change]
1196
1197 openssl: check SSL_get_peer_cert_chain return value
1198
1199 Signed-off-by: Jean-Philippe Menil <jpmenil@gmail.com>
1200 Closes #8579
1201
1202 - [Jay Satiro brought this change]
1203
1204 mk-ca-bundle.vbs: delete this script in favor of mk-ca-bundle.pl
1205
1206 mk-ca-bundle.vbs is a Windows-specific script for Mozilla certificate
1207 extraction, similar to mk-ca-bundle.pl which runs on any platform. The
1208 vbs version has not been maintained while the perl version has been
1209 maintained with improvements and security fixes. I don't think it's
1210 worth the work to maintain both versions. Windows users should be able
1211 to use mk-ca-bundle.pl without any problems, as long as they have perl.
1212
1213 Closes #8412
1214
1215 - CURLSHOPT_UNLOCKFUNC.3: fix the callback prototype
1216
1217 Copy and paste error
1218
1219 Reported-by: Francisco Olarte
1220 Fixes #8573
1221 Closes #8577
1222
1223 - remove-on-error.d: typo
1224
1225 Reported-by: Colin Leroy
1226 Bug: https://github.com/curl/curl/pull/8503#pullrequestreview-906520081
1227
1228 - curl: add --remove-on-error
1229
1230 If a transfer returns an error, using this option makes curl remove the
1231 leftover downloded (partial) local file before exiting.
1232
1233 Added test 376 to verify
1234
1235 Closes #8503
1236
1237 - libssh: fix build with old libssh versions
1238
1239 ... that don't have the SSH_S_* defines. Spotted on a machine using
1240 libssh 0.7.3
1241
1242 Closes #8574
1243
1244 - hyper: fix status_line() return code
1245
1246 Detected while working on #7708 that happened to trigger an error here
1247 with a new test case.
1248
1249 Closes #8572
1250
1251 - [Alejandro R. Sedeño brought this change]
1252
1253 configure.ac: move -pthread CFLAGS setting back where it used to be
1254
1255 The fix for #8276 proposed in #8374 set `CFLAGS="$CFLAGS -pthead"`
1256 earlier than it used to be set, applying it in cases where it should not
1257 have been applied.
1258
1259 This moves the AIX XLC check to a new `case $host in` block inside of
1260 the `if test "$USE_THREADS_POSIX" != "1"` block, where `CFLAGS="$CFLAGS
1261 -pthead"` used to happen.
1262
1263 Fixes #8541
1264 Closes #8542
1265
1266 - [Tatsuhiro Tsujikawa brought this change]
1267
1268 ngtcp2: add client certificate authentication for OpenSSL
1269
1270 Closes #8522
1271
1272 - tool_operate: fix a scan-build warning
1273
1274 ... and avoid the temp storing of the return code in a diff variable.
1275
1276 Closes #8565
1277
1278 - test375: verify that --proxy errors out if proxy is disabled in the build
1279
1280 Closes #8565
1281
1282 - curl: error out when options need features not present in libcurl
1283
1284 Trying to use a proxy when libcurl was built with proxy support disabled
1285 should make curl error out properly.
1286
1287 Remove knowledge of disabled features from the tool code and instead
1288 make it properly respond to what libcurl returns. Update all tests to
1289 properly require the necessary features to be present/absent so that the
1290 test suite can still be run even with libcurl builds with disabled
1291 features.
1292
1293 Ref: https://curl.se/mail/archive-2022-03/0013.html
1294 Closes #8565
1295
1296 - ngtcp2: disconnect the QUIC connection proper
1297
1298 Reported-by: mehatzri on github
1299 Reviewed-by: Tatsuhiro Tsujikawa
1300 Fixes #8534
1301 closes #8569
1302
1303 Dan Fandrich (9 Mar 2022)
1304 - test386: Fix an incorrect test markup tag
1305
1306 Daniel Stenberg (9 Mar 2022)
1307 - [Don J Olmstead brought this change]
1308
1309 nonblock: restore setsockopt method to curlx_nonblock
1310
1311 The implementation using setsockopt was removed when BeOS support was
1312 purged. However this functionality wasn't BeOS specific, it is still
1313 used by for example Orbis OS (Playstation 4/5 OS).
1314
1315 Closes #8562
1316
1317 - openssl: fix CN check error code
1318
1319 Due to a missing 'else' this returns error too easily.
1320
1321 Regressed in: d15692ebb
1322
1323 Reported-by: Kristoffer Gleditsch
1324 Fixes #8559
1325 Closes #8560
1326
1327 - [Frank Meier brought this change]
1328
1329 connect: make Curl_getconnectinfo work with conn cache from share handle
1330
1331 Closes #8524
1332
1333 - [lwthiker brought this change]
1334
1335 openssl: enable CURLOPT_SSL_EC_CURVES with BoringSSL
1336
1337 The CURLOPT_SSL_EC_CURVES option (used by the '--curves' flag) in
1338 libcurl was ignored when compiling with BoringSSL because
1339 HAVE_SSL_CTX_SET_EC_CURVES was explicitly disabled if BoringSSL was
1340 detected. However, this feature is supported in BoringSSL since
1341 5fd1807d. This commit enables it, and also reduces the required minimal
1342 OpenSSL version to 1.0.2 as per OpenSSL's official documentation.
1343
1344 Fixes #8553
1345 Closes #8556
1346
1347 - [Samuel Henrique brought this change]
1348
1349 json.d: fix typo (overriden -> overridden)
1350
1351 Closes #8557
1352
1353 - wolfssl: fix compiler error without IPv6
1354
1355 Reported-by: Joseph Chen
1356 Fixes #8550
1357 Closes #8552
1358
1359 - RELEASE-NOTES: synced
1360
1361 and bump pending version to 7.82.1
1362
1363 - [Paul Howarth brought this change]
1364
1365 runtests: make 'oldlibssh' be before 0.9.4
1366
1367 The 'oldlibssh' feature indicates that the error code returned by libssh
1368 for a broken known_hosts file should be 67 rather than 60 (test1459).
1369 This feature was added as part of #8444 with 'oldlibssh' mapping to
1370 libssh versions prior to 0.9.6, and then refined as part of #8511 to map
1371 to versions prior to 0.9.5.
1372
1373 In Red Hat Enterprise Linux 8.5 there is a patched version of libssh
1374 version 0.9.4 (https://git.centos.org/rpms/libssh/blob/c8/f/SOURCES) in
1375 which test1459 fails because it returns the "new" value rather than the
1376 "old" one. It's plausible that one of the patches is responsible for
1377 this rather than the underlying code but I don't think so.
1378
1379 This change therefore drops the 'oldlibssh' version check to map to
1380 libssh versions older than 0.9.4, which fixes builds on RHEL-8.
1381
1382 Closes #8548
1383
1384 - ipv4/6.d: clarify that they are about using IP addresses
1385
1386 ... they may still *resolve* other families, but not use those
1387 addresses.
1388
1389 Ref: #8530
1390 Closes #8543
1391
1392 - [r-a-sattarov brought this change]
1393
1394 curl/system.h: update ifdef condition for MCST-LCC compiler
1395
1396 in mcst-lcc compiler => 1.25 added a new macro definition to determine
1397 compiler
1398
1399 Closes #8546
1400
1401 Marc Hoersken (6 Mar 2022)
1402 - CI: install Python package impacket to run SMB test 1451
1403
1404 Install Python package impacket in relevant CI workflows.
1405
1406 Follow up to #7935
1407 Supersedes #7940
1408 Closes #8544
1409
1410 Daniel Stenberg (5 Mar 2022)
1411 - [Michał Antoniak brought this change]
1412
1413 connect: use TCP_KEEPALIVE only if TCP_KEEPIDLE is not defined
1414
1415 Closes #8539
1416
1417 - docs/HYPER.md: updated to reflect current hyper build needs
1418
1419 - GHA: build hyper with nightly rustc
1420
1421 Closes #8545
71422
81423 Version 7.82.0 (5 Mar 2022)
91424
61607575 ngtcp2: replace deprecated functions with nghttp3_conn_shutdown_stream_read
61617576
61627577 Closes #7546
6163
6164 - [Tatsuhiro Tsujikawa brought this change]
6165
6166 ngtcp2: rework the return value handling of ngtcp2_conn_writev_stream
6167
6168 Rework the return value handling of ngtcp2_conn_writev_stream and treat
6169 NGTCP2_ERR_STREAM_SHUT_WR separately.
6170
6171 Closes #7546
6172
6173 - configure: error out if both ngtcp2 and quiche are specified
6174
6175 Reported-by: Vincent Grande
6176 See #7539
6177 Closes #7545
6178
6179 - [Jeff Mears brought this change]
6180
6181 easy: use a custom implementation of wcsdup on Windows
6182
6183 ... so that malloc/free overrides from curl_global_init are used for
6184 wcsdup correctly.
6185
6186 Closes #7540
6187
6188 - zuul: add an mbedtls3 CI job
6189
6190 Closes #7544
6191
6192 - [Benau brought this change]
6193
6194 mbedTLS: initial 3.0.0 support
6195
6196 Closes #7428
6197
6198 - RELEASE-NOTES: synced
6199
6200 - configure.ac: revert bad nghttp2 library detection improvements
6201
6202 This reverts commit b4b34db65f9f8, 673753344c5f and 29c7cf79e8b.
6203
6204 The logic is now back to assuming that the nghttp2 lib is called nghttp2 and
6205 nothing else.
6206
6207 Reported-by: Rui Pinheiro
6208 Reported-by: Alex Crichton
6209 Fixes #7514
6210 Closes #7515
6211
6212 - happy-eyeballs-timeout-ms.d: polish the wording
6213
6214 Reported-by: Josh Soref
6215 Fixes #7433
6216 Closes #7542
6217
6218 - [modbw brought this change]
6219
6220 mbedtls_threadlock: fix unused variable warning
6221
6222 Closes #7393
6223
6224 - [Tatsuhiro Tsujikawa brought this change]
6225
6226 ngtcp2: compile with the latest ngtcp2 and nghttp3
6227
6228 Closes #7541
6229
6230 Marc Hoersken (31 Jul 2021)
6231 - CI/cirrus: reduce compile time with increased parallism
6232
6233 Cirrus CI VMs have 2 CPUs, let's use them also for Windows builds.
6234
6235 Reviewed-by: Daniel Stenberg
6236 Closes #7505
6237
6238 Daniel Stenberg (30 Jul 2021)
6239 - [Bin Lan brought this change]
6240
6241 tool/tests: fix potential year 2038 issues
6242
6243 The length of 'long' in a 32-bit system is 32 bits, which cannot be used
6244 to save timestamps after 2038. Most operating systems have extended
6245 time_t to 64 bits.
6246
6247 Remove the castings to long.
6248
6249 Closes #7466
6250
6251 - compressed.d: it's a request, not an order
6252
6253 Clarified
6254
6255 Reported-by: Dan Jacobson
6256 Reviewed-by: Daniel Gustafsson
6257 Fixes #7516
6258 Closes #7517
6259
6260 - [Bernhard M. Wiedemann brought this change]
6261
6262 tests: make three tests pass until 2037
6263
6264 after 2038 something in test1915 fails on 32-bit OSes
6265
6266 Closes #7512
6267
6268 Daniel Gustafsson (30 Jul 2021)
6269 - connect: remove superfluous conditional
6270
6271 Commit dbd16c3e2 cleaned up the logic for traversing the addrinfos,
6272 but the move left a conditional on ai which no longer is needed as
6273 the while loop reevaluation will cover it.
6274
6275 Closes #7511
6276 Reviewed-by: Carlo Marcelo Arenas Belón
6277 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
6278
6279 Daniel Stenberg (29 Jul 2021)
6280 - RELEASE-NOTES: synced
6281
6282 and bump curlver to 7.79.0 for next release
6283
6284 Marc Hoersken (29 Jul 2021)
6285 - tests/*server.py: remove pidfile on server termination
6286
6287 Avoid pidfile leaking/laying around after server already exited.
6288
6289 Reviewed-by: Daniel Stenberg
6290 Closes #7506
6291
6292 Daniel Gustafsson (27 Jul 2021)
6293 - tool_main: fix typo in comment
6294
6295 The referred to library is NSPR, so fix the switched around characters.
6296
6297 Daniel Stenberg (28 Jul 2021)
6298 - [Aleksandr Krotov brought this change]
6299
6300 bearssl: support CURLOPT_CAINFO_BLOB
6301
6302 Closes #7468
6303
6304 - curl.1: mention "global" flags
6305
6306 Mention options that are "global". A global command line option is one
6307 that doesn't get reset at --next uses and therefore don't need to be
6308 used again.
6309
6310 Reported-by: Josh Soref
6311
6312 Fixes #7457
6313 Closes #7510
6314
6315 - CURLOPT_DOH_URL.3: CURLOPT_OPENSOCKETFUNCTION is not inherited
6316
6317 Reported-by: Daniel Woelfel
6318 Fixes #7441
6319 Closes #7509
6320
6321 - KNOWN_BUGS: add more HTTP/3 problems
6322
6323 Closes #7351
6324 Closes #7339
6325 Closes #7125
6326
6327 Marc Hoersken (27 Jul 2021)
6328 - CI/azure: reduce compile time with increased parallism
6329
6330 Azure Pipelines CI VMs have 2 CPUs, let's use them.
6331
6332 Closes #7489
6333
6334 Jay Satiro (27 Jul 2021)
6335 - [Josh Soref brought this change]
6336
6337 docs: fix grammar
6338
6339 Fixes https://github.com/curl/curl/issues/7444
6340 Fixes https://github.com/curl/curl/issues/7451
6341 Fixes https://github.com/curl/curl/issues/7465
6342 Closes https://github.com/curl/curl/pull/7495
6343
6344 - mail-rcpt.d: fix grammar
6345
6346 Remove confusing sentence that says to specify an e-mail address for
6347 mail transfer, since that's implied.
6348
6349 Reported-by: Josh Soref
6350
6351 Fixes https://github.com/curl/curl/issues/7452
6352 Closes https://github.com/curl/curl/pull/7495
6353
6354 Daniel Stenberg (27 Jul 2021)
6355 - c-hyper: remove the hyper_executor_poll() loop from Curl_http
6356
6357 1. it's superfluous
6358 2. it didn't work identically to the Curl_hyper_stream one which could
6359 cause problems like #7486
6360
6361 Pointed-out-by: David Cook
6362 Closes #7499
6363
6364 - curl-openssl.m4: check lib64 for the pkg-config file
6365
6366 OpenSSL recently started putting the libs in $prefix/lib64 on 'make
6367 install', so we check that directory for pkg-config data if the 'lib'
6368 check fails.
6369
6370 Closes #7503
6371
6372 - CURLOPT_SSL_CTX_*.3: tidy up the example
6373
6374 Use the proper code style. Don't store return codes that aren't read.
6375 Copy the same example into CURLOPT_SSL_CTX_FUNCTION.3 as well.
6376
6377 Closes #7500
6378
6379 - example/cookie_interface: fix scan-build printf warning
6380
6381 Follow-up to 4b79c4fb565
6382
6383 Fixes #7497
6384 Closes #7498
6385
6386 - [Josh Soref brought this change]
6387
6388 limit-rate.d: clarify base unit
6389
6390 Fixes #7439
6391 Closes #7494
6392
6393 - [Carlo Marcelo Arenas Belón brought this change]
6394
6395 examples/cookie_interface: avoid printfing time_t directly
6396
6397 time_t representation is undefined and varies on bitsize and signedness,
6398 and as of C11 could be even non integer.
6399
6400 instead of casting to unsigned long (which would truncate in systems
6401 with a 32bit long after 2106) use difftime to get the elapsed time as a
6402 double and print that (without decimals) instead.
6403
6404 alternatively a cast to curl_off_t and its corresponding print
6405 formatting could have been used (at least in POSIX) but portability and
6406 curl agnostic code was prioritized.
6407
6408 Closes #7490
6409
6410 Marc Hoersken (25 Jul 2021)
6411 - tests/servers: remove obsolete pid variable
6412
6413 Variable is not used since pidfile handling moved to util.[ch]
6414
6415 Reviewed-by: Jay Satiro
6416 Closes #7482
6417
6418 - tests/servers: use our platform-aware pid for server verification
6419
6420 The pid used for server verification is later stored as pid2 in
6421 the hash of running test servers and therefore used for shutdown.
6422
6423 The pid used for shutdown must be the platform-aware (Win32) pid
6424 to avoid leaking test servers while running them using Cygwin/msys.
6425
6426 Reviewed-by: Jay Satiro
6427 Closes #7481
6428
6429 - tests/runtests.pl: cleanup copy&paste mistakes and unused code
6430
6431 Reviewed-by: Jay Satiro
6432 Part of #7481
6433
6434 Daniel Stenberg (25 Jul 2021)
6435 - RELEASE-NOTES: synced
6436
6437 bumped to 7.78.1 for next release
6438
6439 - http_proxy: clear 'sending' when the outgoing request is sent
6440
6441 ... so that Curl_connect_getsock() will know how to wait for the socket
6442 to become readable and not writable after the entire CONNECT request has
6443 been issued.
6444
6445 Regression added in 7.77.0
6446
6447 Reported-by: zloi-user on github
6448 Assisted-by: Jay Satiro
6449 Fixes #7155
6450 Closes #7484
6451
6452 Jay Satiro (25 Jul 2021)
6453 - [Josh Soref brought this change]
6454
6455 openssl: fix grammar
6456
6457 Closes https://github.com/curl/curl/pull/7480
6458
6459 - configure.ac: tweak nghttp2 library name fix again
6460
6461 - Change extraction to handle multiple library names returned by
6462 pkg-config (eg a possible scenario with pkg-config --static).
6463
6464 Ref: https://github.com/curl/curl/pull/7472
6465
6466 Closes https://github.com/curl/curl/pull/7485
6467
6468 Dan Fandrich (23 Jul 2021)
6469 - Get rid of the unused HAVE_SIG_ATOMIC_T et. al.
6470
6471 It was added in 2006 but I see no evidence it was ever used.
6472
6473 Jay Satiro (23 Jul 2021)
6474 - docs: change max-filesize caveat again
6475
6476 - Add protocols field to max-filesize.d.
6477
6478 - Revert wording on unknown file size caveat and do not discuss specific
6479 protocols in that section.
6480
6481 Partial revert of ecf0225. All max-filesize options now have the list of
6482 protocols and it's clearer just to have that list without discussing
6483 specific protocols in the caveat.
6484
6485 Reported-by: Josh Soref
6486
6487 Ref: https://github.com/curl/curl/issues/7453#issuecomment-884128762
6488
6489 Daniel Stenberg (22 Jul 2021)
6490 - [Christian Weisgerber brought this change]
6491
6492 configure: tweak nghttp2 library name fix
6493
6494 commit 29c7cf79e8b44cf (shipped in 7.78.0) introduced a problem by
6495 assuming that LIB_H2 does not have any leading whitespace. At least
6496 OpenBSD's native pkg-config can produce such whitespace, though:
6497
6498 $ pkg-config --libs-only-l libnghttp2
6499 -lnghttp2
6500
6501 As a result, the configure check for libnghttp2 will erroneously fail.
6502
6503 Bug: https://curl.se/mail/lib-2021-07/0050.html
6504 Closes #7472
6505
6506 - [Bastian Krause brought this change]
6507
6508 docs/MQTT: update state of username/password support
6509
6510 PR #7243 implemented username/password support for MQTT, so let's drop
6511 these items from the caveats.
6512
6513 Signed-off-by: Bastian Krause <bst@pengutronix.de>
6514
6515 Closes #7474
6516
6517 - [Oleg Pudeyev brought this change]
6518
6519 CURLMOPT_TIMERFUNCTION.3: remove misplaced "time"
6520
6521 Closes #7470
6522
6523 Version 7.78.0 (21 Jul 2021)
6524
6525 Daniel Stenberg (21 Jul 2021)
6526 - RELEASE-NOTES: synced
6527
6528 curl 7.78.0 release
6529
6530 - winbuild/MakefileBuild.vc: bump copyright year
6531
6532 Jay Satiro (21 Jul 2021)
6533 - docs: mention max-filesize options also apply to MQTT transfers
6534
6535 Also make it clearer that the caveat 'if the file size is unknown it
6536 the option will have no effect' may apply to protocols other than FTP
6537 and HTTP.
6538
6539 Reported-by: Josh Soref
6540
6541 Fixes https://github.com/curl/curl/issues/7453
6542
6543 - [Josh Soref brought this change]
6544
6545 docs/cmdline: fix grammar and typos
6546
6547 - [Josh Soref brought this change]
6548
6549 dump-header.d: Drop suggestion to use for cookie storage
6550
6551 Since --cookie-jar is the preferred way to store cookies, no longer
6552 suggest using --dump-header to do so.
6553
6554 Co-authored-by: Daniel Stenberg
6555
6556 Closes https://github.com/curl/curl/issues/7414
6557
6558 - [Josh Soref brought this change]
6559
6560 doc/cmdline: fix grammar and typos
6561
6562 Closes https://github.com/curl/curl/pull/7454
6563 Closes https://github.com/curl/curl/pull/7455
6564 Closes https://github.com/curl/curl/pull/7456
6565 Closes https://github.com/curl/curl/pull/7459
6566 Closes https://github.com/curl/curl/pull/7460
6567 Closes https://github.com/curl/curl/pull/7461
6568 Closes https://github.com/curl/curl/pull/7462
6569 Closes https://github.com/curl/curl/pull/7463
6570
6571 Daniel Stenberg (20 Jul 2021)
6572 - vtls: fix connection reuse checks for issuer cert and case sensitivity
6573
6574 CVE-2021-22924
6575
6576 Reported-by: Harry Sintonen
6577 Bug: https://curl.se/docs/CVE-2021-22924.html
6578
6579 - sectransp: check for client certs by name first, then file
6580
6581 CVE-2021-22926
6582
6583 Bug: https://curl.se/docs/CVE-2021-22926.html
6584
6585 Assisted-by: Daniel Gustafsson
6586 Reported-by: Harry Sintonen
6587
6588 - telnet: fix option parser to not send uninitialized contents
6589
6590 CVS-2021-22925
6591
6592 Reported-by: Red Hat Product Security
6593 Bug: https://curl.se/docs/CVE-2021-22925.html
6594
6595 Jay Satiro (20 Jul 2021)
6596 - connect: fix wrong format specifier in connect error string
6597
6598 0842175 (not in any release) used the wrong format specifier (long int)
6599 for timediff_t. On an OS such as Windows libcurl's timediff_t (usually
6600 64-bit) is bigger than long int (32-bit). In 32-bit Windows builds the
6601 upper 32-bits of the timediff_t were erroneously then used by the next
6602 format specifier. Usually since the timeout isn't larger than 32-bits
6603 this would result in null as a pointer to the string with the reason for
6604 the connection failing. On other OSes or maybe other compilers it could
6605 probably result in garbage values (ie crash on deref).
6606
6607 Before:
6608 Failed to connect to localhost port 12345 after 1201 ms: (nil)
6609
6610 After:
6611 Failed to connect to localhost port 12345 after 1203 ms: Connection refused
6612
6613 Closes https://github.com/curl/curl/pull/7449
6614
6615 - winbuild: support alternate nghttp2 static lib name
6616
6617 - Support both nghttp2.lib and nghttp2_static.lib for static nghttp2.
6618
6619 nghttp2 briefly changed its static lib name to nghttp2_static, but then
6620 made the _static suffix optional.
6621
6622 Ref: https://github.com/nghttp2/nghttp2/pull/1394
6623 Ref: https://github.com/nghttp2/nghttp2/pull/1418
6624 Ref: https://github.com/nghttp2/nghttp2/issues/1466
6625
6626 Reported-by: Pierre Yager
6627
6628 Fixes https://github.com/curl/curl/issues/7446
6629 Closes https://github.com/curl/curl/pull/7447
6630
6631 - [Josh Soref brought this change]
6632
6633 docs/cmdline: fix grammar and typos
6634
6635 Closes https://github.com/curl/curl/pull/7432
6636 Closes https://github.com/curl/curl/pull/7436
6637 Closes https://github.com/curl/curl/pull/7438
6638 Closes https://github.com/curl/curl/pull/7440
6639 Closes https://github.com/curl/curl/pull/7445
6640
6641 - [Josh Soref brought this change]
6642
6643 delegation.d: mention what happens when used multiple times
6644
6645 Closes https://github.com/curl/curl/pull/7408
6646
6647 - [Josh Soref brought this change]
6648
6649 create-file-mode.d: mention what happens when used multiple times
6650
6651 Closes https://github.com/curl/curl/pull/7407
6652
6653 - [Josh Soref brought this change]
6654
6655 config.d: split comments and option-per line
6656
6657 Closes https://github.com/curl/curl/pull/7405
6658
6659 Daniel Stenberg (19 Jul 2021)
6660 - misc: copyright year range updates
6661
6662 - mailmap: add Tobias and Timur
6663
6664 Daniel Gustafsson (18 Jul 2021)
6665 - [Josh Soref brought this change]
6666
6667 docs: spell out directories instead of dirs in create-dirs
6668
6669 Write out directories rather than using the dirs abbrevation. Also
6670 use plural form consistently, even if the code in the end might just
6671 create a single directory.
6672
6673 Closes #7406
6674 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
6675 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
6676
6677 - [Tobias Nyholm brought this change]
6678
6679 docs: correct spelling errors and a broken link
6680
6681 Update grammar and spelling in docs and source code comments.
6682
6683 Closes: #7427
6684 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
6685
6686 Marc Hoersken (18 Jul 2021)
6687 - CI/cirrus: install impacket from PyPI instead of FreeBSD packages
6688
6689 Availability of impacket as FreeBSD package is too flaky.
6690
6691 Stick to legacy version of cryptography which still
6692 supports OpenSSL version 1.0.2 due to FreeBSD 11.
6693
6694 Reviewed-by: Daniel Stenberg
6695
6696 Closes #7418
6697
6698 Daniel Stenberg (18 Jul 2021)
6699 - [Josh Soref brought this change]
6700
6701 docs/cmdline: mention what happens when used multiple times
6702
6703 For --dns-ipv4-addr, --dns-ipv6-addr and --dns-servers
6704
6705 Closes #7410
6706 Closes #7411
6707 Closes #7412
6708
6709 - [Michał Antoniak brought this change]
6710
6711 lib: fix compiler warnings with CURL_DISABLE_NETRC
6712
6713 warning C4189: 'netrc_user_changed': local variable is initialized but
6714 not referenced
6715
6716 warning C4189: 'netrc_passwd_changed': local variable is initialized but
6717 not referenced
6718
6719 Closes #7423
6720
6721 - disable-epsv.d: remove duplicate "(FTP)"
6722
6723 ... since the tooling adds that to the output based on the "Protocols:"
6724 tag.
6725
6726 - [Max Zettlmeißl brought this change]
6727
6728 docs: make the documentation for --etag-save match the program behaviour
6729
6730 When using curl with the option `--etag-save` I expected it to save the
6731 ETag without its surrounding quotes, as stated by the documentation in
6732 the repository and by the generated man pages.
6733
6734 My first endeavour was to fix the program, but while investigating the
6735 history of the relevant parts, I discovered that curl once saved the
6736 ETag without the quotes. This was undone by Daniel Stenberg in commit
6737 `98c94596f5928840177b6bd3c7b0f0dd03a431af`, therefore I decided that in
6738 this case the documentation should be adjusted to match the behaviour of
6739 curl.
6740
6741 The changed save behaviour also made parts of the `--etag-compare`
6742 documentation wrong or superfluous, so I adjusted those accordingly.
6743
6744 Closes #7429
6745
6746 - [Josh Soref brought this change]
6747
6748 write-out.d: add missing periods
6749
6750 Closes #7404
6751
6752 - [Josie Huddleston brought this change]
6753
6754 easy: during upkeep, attach Curl_easy to connections in the cache
6755
6756 During the protocol-specific parts of connection upkeep, some code
6757 assumes that the data->conn pointer already is set correctly. However,
6758 there's currently no guarantee of that in the code.
6759
6760 This fix temporarily attaches each connection to the Curl_easy object
6761 before performing the protocol-specific connection check on it, in a
6762 similar manner to the connection checking in extract_if_dead().
6763
6764 Fixes #7386
6765 Closes #7387
6766 Reported-by: Josie Huddleston
6767
6768 - [Josh Soref brought this change]
6769
6770 cleanup: spell DoH with a lowercase o
6771
6772 Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
6773
6774 Closes #7413
6775
6776 - [Josh Soref brought this change]
6777
6778 TheArtOfHttpScripting: polish
6779
6780 - add missing backticks and comma
6781
6782 - fix proxy description:
6783
6784 * example proxy isn't local
6785 * locally doesn't really make sense
6786
6787 Closes #7416
6788
6789 - [Josh Soref brought this change]
6790
6791 form.d: add examples of `,`/`;` for file[name]
6792
6793 Fixes #7415
6794 Closes #7417
6795
6796 - [Michał Antoniak brought this change]
6797
6798 mbedtls: Remove unnecessary include
6799
6800 - curl_setup.h: all references to mbedtls_md4* functions and structures
6801 are in the md4.c. This file already includes the <mbedtls/md4.h> file
6802 along with the file existence control (defined (MBEDTLS_MD4_C))
6803
6804 - curl_ntlm_core.c: unnecessary include - repeated below
6805
6806 Closes #7419
6807
6808 - RELEASE-NOTES: synced
6809
6810 Jay Satiro (16 Jul 2021)
6811 - [User Sg brought this change]
6812
6813 multi: fix crash in curl_multi_wait / curl_multi_poll
6814
6815 Appears to have been caused by 51c0ebc (precedes 7.77.0) which added a
6816 VALID_SOCK check to one of the loops through the sockets but not the
6817 other.
6818
6819 Reported-by: sylgal@users.noreply.github.com
6820 Authored-by: sylgal@users.noreply.github.com
6821
6822 Fixes https://github.com/curl/curl/issues/7379
6823 Closes https://github.com/curl/curl/pull/7389
6824
6825 - [Daniel Gustafsson brought this change]
6826
6827 tool_help: remove unused define
6828
6829 The PRINT_LINES_PAUSE macro is no longer used, and has been mostly
6830 cleaned out but one occurrence remained.
6831
6832 Closes https://github.com/curl/curl/pull/7380
6833
6834 - [Sergey Markelov brought this change]
6835
6836 build: fix compiler warnings when CURL_DISABLE_VERBOSE_STRINGS
6837
6838 fix compiler warnings about unused variables and parameters when
6839 built with --disable-verbose.
6840
6841 Closes https://github.com/curl/curl/pull/7377
6842
6843 - [Andrea Pappacoda brought this change]
6844
6845 build: fix IoctlSocket FIONBIO check
6846
6847 Prior to this change HAVE_IOCTLSOCKET_CAMEL_FIONBIO mistakenly checked
6848 for (lowercase) ioctlsocket when it should have checked for IoctlSocket.
6849
6850 Closes https://github.com/curl/curl/pull/7375
6851
6852 - [Timur Artikov brought this change]
6853
6854 configure: fix nghttp2 library name for static builds
6855
6856 Don't hardcode the nghttp2 library name,
6857 because it can vary, be "nghttp2_static" for example.
6858
6859 Fixes https://github.com/curl/curl/issues/7367
6860 Closes https://github.com/curl/curl/pull/7368
6861
6862 Gisle Vanem (16 Jul 2021)
6863 - [PellesC] fix _lseeki64() macro
6864
6865 - [SChannel] Use '_tcsncmp()' instead
6866
6867 Revert previous change for PellesC.
6868
6869 Instead replace all use of `_tcsnccmp()` with `_tcsncmp()`.
6870
6871 - [PellesC] missing '_tcsnccmp'
6872
6873 PellesC compiler does not have this macro in it's `<tchar.h>`
6874
6875 Daniel Gustafsson (14 Jul 2021)
6876 - TODO: add mention of mbedTLS 3 incompatibilities
6877
6878 Wyatt OʼDay reported in #7385 that mbedTLS isn't backwards compatible
6879 and curl no longer builds with it. Document the need to fix our support
6880 until so has been done.
6881
6882 Closes #7390
6883 Fixes #7385
6884 Reported-by: Wyatt OʼDay
6885 Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
6886
6887 - docs: fix inconsistencies in EGDSOCKET documentation
6888
6889 Only the OpenSSL backend actually use the EGDSOCKET, and also use
6890 TLS consistently rather than mixing SSL and TLS. While there, also
6891 fix a minor spelling nit.
6892
6893 Closes: #7391
6894 Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
6895
6896 - [Борис Верховский brought this change]
6897
6898 docs: document missing arguments to commands
6899
6900 This is a followup to commit f410b9e538129e77607fef1 fixing a few
6901 more commands which takes arguments.
6902
6903 Closes #7382
6904 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
6905
6906 - [Randolf J brought this change]
6907
6908 docs: fix incorrect argument name reference
6909
6910 The documentation for the read callback was erroneously referencing
6911 the nitems argument by nmemb. The error was introduced in commit
6912 ce0881edee3c7.
6913
6914 Closes #7383
6915 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
6916
6917 - [Борис Верховский brought this change]
6918
6919 tool_help: Document that --tlspassword takes a password
6920
6921 Closes #7378
6922 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
6923
6924 - scripts: Fix typo in release-notes instructions
6925
6926 The command to run had a typo in the pathname which prevented copy
6927 pasting it to work, which has annoyed me enough to fix this now.
6928
6929 - RELEASE-NOTES: synced
6930
6931 Jay Satiro (10 Jul 2021)
6932 - write-out.d: Clarify urlnum is not unique for de-globbed URLs
6933
6934 Reported-by: Коваленко Анатолий Викторович
6935
6936 Fixes https://github.com/curl/curl/issues/7342
6937 Closes https://github.com/curl/curl/pull/7369
6938
6939 Daniel Gustafsson (3 Jul 2021)
6940 - [William Desportes brought this change]
6941
6942 docs: Fix typos
6943
6944 Closes: #7370
6945 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
6946
6947 Daniel Stenberg (8 Jul 2021)
6948 - [Jonathan Wernberg brought this change]
6949
6950 Revert "ftp: Expression 'ftpc->wait_data_conn' is always false"
6951
6952 The reverted commit introduced a logic error in code that was
6953 correct.
6954
6955 The client using libcurl would notice the error since FTP file
6956 uploads in active transfer mode would somtimes complete with
6957 success despite no transfer having been performed and the
6958 "uploaded" file thus not being on the remote server afterwards.
6959
6960 The FTP server would notice the error because it receives a
6961 RST on the data connection it has established with the client
6962 before any data was transferred at all.
6963
6964 The logic error happens if the STOR response from the server have
6965 arrived by the time ftp_multi_statemach() in the affected code path
6966 is called, but the incoming data connection have not arrived yet.
6967 In that case, the processing of the STOR response will cause
6968 'ftpc->wait_data_conn' to be set to TRUE, contradicting the comment
6969 in the code. Since 'complete' will also be set, later logic would
6970 believe the transfer was done.
6971
6972 In most cases, the STOR response will not have arrived yet when
6973 the affected code path is executed, or the incoming connection will
6974 also have arrived, and thus the error would not express itself.
6975 But if the speed difference of the device using libcurl and the
6976 FTP server is exactly right, the error may happen as often as in
6977 one out of hundred file transfers.
6978
6979 This reverts commit 49f3117a238b6eac0e22a32f50699a9eddcb66ab.
6980
6981 Bug: https://curl.se/mail/lib-2021-07/0025.html
6982 Closes #7362
6983
6984 - msnprintf: return number of printed characters excluding null byte
6985
6986 ... even when the output is "capped" by the maximum length argument.
6987
6988 Clarified in the docs.
6989
6990 Closes #7361
6991
6992 - infof: remove newline from format strings, always append it
6993
6994 - the data needs to be "line-based" anyway since it's also passed to the
6995 debug callback/application
6996
6997 - it makes infof() work like failf() and consistency is good
6998
6999 - there's an assert that triggers on newlines in the format string
7000
7001 - Also removes a few instances of "..."
7002
7003 - Removes the code that would append "..." to the end of the data *iff*
7004 it was truncated in infof()
7005
7006 Closes #7357
7007
7008 - examples/multi-single: fix scan-build warning
7009
7010 warning: Value stored to 'mc' during its initialization is never read
7011
7012 Follow-up to ae8e11ed5fd2ce
7013
7014 Closes #7360
7015
7016 - wolfssl: failing to set a session id is not reason to error out
7017
7018 ... as it is *probably* just timed out.
7019
7020 Reported-by: Francisco Munoz
7021
7022 Closes #7358
7023
7024 - docs/examples: use curl_multi_poll() in multi examples
7025
7026 The API is soon two years old and deserves being shown as the primary
7027 way to drive multi code as it makes it much easier to write code.
7028
7029 multi-poll: removed
7030
7031 multi-legacy: add to show how we did multi API use before
7032 curl_multi_wait/poll.
7033
7034 Closes #7352
7035
7036 - KNOWN_BUGS: flaky Windows CI builds
7037
7038 Closes #6972
7039
7040 - RELEASE-NOTES: synced
7041
7042 - test1147: hyper doesn't allow "crazy" request headers like built-in
7043
7044 ... so strip that from the test.
7045
7046 Closes #7349
7047
7048 - c-hyper: bail on too long response headers
7049
7050 To match with built-in behaviors. Makes test 1154 work.
7051
7052 Closes #7350
7053
7054 - test1151: added missing CRLF to work with hyper
7055
7056 Closes #7350
7057
7058 - c-hyper: add support for transfer-encoding in the request
7059
7060 Closes #7348
7061
7062 - [Andrea Pappacoda brought this change]
7063
7064 cmake: remove libssh2 feature checks
7065
7066 libssh2 features are detected based on version since commit
7067 9dbbba997608f7c3c5de1c627c77c8cd2aa85b73
7068
7069 Closes #7343
7070
7071 - test1116: hyper doesn't pass through "surprise-trailers"
7072
7073 Closes #7344
7074
7075 - socks4: scan for the IPv4 address in resolve results
7076
7077 Follow-up to 84d2839740 which changed the resolving to always resolve
7078 both address families, but since SOCKS4 only supports IPv4 it should
7079 scan for and use the first available IPv4 address.
7080
7081 Reported-by: shithappens2016 on github
7082 Fixes #7345
7083 Closes #7346
7084
7085 Jay Satiro (5 Jul 2021)
7086 - proto.d: fix formatting for paragraphs after margin changes
7087
7088 Closes https://github.com/curl/curl/pull/7341
7089
7090 - pinnedpubkey.d: fix formatting for version support lists
7091
7092 Closes https://github.com/curl/curl/pull/7340
7093
7094 Daniel Stenberg (2 Jul 2021)
7095 - TODO: "Support in-memory certs/ca certs/keys" done
7096
7097 Has been suppored for a while now with the *BLOB options.
7098
7099 - examples: safer and more proper read callback logic
7100
7101 The same callback code is used in:
7102
7103 imap-append.c
7104 smtp-authzid.c
7105 smtp-mail.c
7106 smtp-multi.c
7107 smtp-ssl.c
7108 smtp-tls.c
7109
7110 It should not assume that it can copy full lines into the buffer as it
7111 will encourage sloppy coding practices. Instead use byte-wise logic and
7112 check/acknowledge the buffer size appropriately.
7113
7114 Reported-by: Harry Sintonen
7115 Fixes #7330
7116 Closes #7331
7117
7118 - test1519: adjusted to work with hyper
7119
7120 Closes #7333
7121
7122 - test1518: adjusted to work with hyper
7123
7124 ... by making sure the stdout output doesn't look like HTTP headers.
7125
7126 Closes #7333
7127
7128 - test1514: add a CRLF to the response to make it correct
7129
7130 Makes hyper accept it fine instead returning HYPERE_UNEXPECTED_EOF on
7131 us.
7132
7133 Closes #7334
7134
7135 - formdata: avoid "Argument cannot be negative" warning
7136
7137 ... when converting a curl_off_t to size_t, by using
7138 CURL_ZERO_TERMINATED before passing the argument to the function.
7139
7140 Detected by Coverity CID 1486590.
7141
7142 Closes #7328
7143 Assisted-by: Daniel Gustafsson
7144
7145 - lib: more %u for port and int for %*s fixes
7146
7147 Detected by Coverity
7148
7149 Closes #7329
7150
7151 - doh: (void)-prefix call to curl_easy_setopt
7152
7153 - lib: fix type of len passed to *printf's %*s
7154
7155 ... it needs to be 'int'. Detected by Coverity CID 1486611 (etc)
7156
7157 Closes #7326
7158
7159 - lib: use %u instead of %ld for port number printf
7160
7161 Follow-up to 764c6bd3bf which changed the type of some port number
7162 fields. Detected by Coverity (CID 1486624) etc.
7163
7164 Closes #7325
7165
7166 - version: turn version number functions into returning void
7167
7168 ... as we never use the return codes from them.
7169
7170 Reviewed-by: Daniel Gustafsson
7171 Closes #7319
7172
7173 - mqtt: extend the error message for no topic
7174
7175 ... and mention that it needs URL encoding.
7176
7177 Reported-by: Peter Körner
7178 Fixes #7316
7179 Closes #7317
7180
7181 - formdata: correct typecast in curl_mime_data call
7182
7183 Coverity pointed out it the mismatch. CID 1486590
7184
7185 Closes #7327
7186
7187 - url: (void)-prefix a curl_url_get() call
7188
7189 Coverity (CID 1486645) pointed out a use of curl_url_get() in the
7190 parse_proxy function where the return code wasn't checked. A
7191 (void)-prefix makes the intention obvious.
7192
7193 Closes #7320
7194
7195 - glob: pass an 'int' as len when using printf's %*s
7196
7197 Detected by Coverity CID 1486629.
7198
7199 Closes #7324
7200
7201 - vtls: use free() not curl_free()
7202
7203 curl_free() is provided for users of the API to free returned data,
7204 there's no need to use it internally.
7205
7206 Closes #7318
7207
7208 - zuul: use the new rustls directory name
7209
7210 Follow-up to 6d972c8b1cbb3 which missed updating this directory name.
7211
7212 Also no longer call it crustls in the docs and bump to rusttls-ffi 0.7.1
7213
7214 Closes #7311
7215
7216 Jay Satiro (29 Jun 2021)
7217 - http: fix crash in rate-limited upload
7218
7219 - Don't set the size of the piece of data to send to the rate limit if
7220 that limit is larger than the buffer size that will hold the piece.
7221
7222 Prior to this change if CURLOPT_MAX_SEND_SPEED_LARGE
7223 (curl tool: --limit-rate) was set then it was possible that a temporary
7224 buffer used for uploading could be written to out of bounds. A likely
7225 scenario for this would be a non-trivial amount of post data combined
7226 with a rate limit larger than CURLOPT_UPLOAD_BUFFERSIZE (default 64k).
7227
7228 The bug was introduced in 24e469f which is in releases since 7.76.0.
7229
7230 perl -e "print '0' x 200000" > tmp
7231 curl --limit-rate 128k -d @tmp httpbin.org/post
7232
7233 Reported-by: Richard Marion
7234
7235 Fixes https://github.com/curl/curl/issues/7308
7236 Closes https://github.com/curl/curl/pull/7315
7237
7238 Daniel Stenberg (29 Jun 2021)
7239 - copyright: add boiler-plate headers to CI config files
7240
7241 And whitelist .zuul.ignore
7242
7243 Closes #7314
7244
7245 - CI: remove travis details
7246
7247 Rename still used leftovers to "zuul" as that's now the CI using them.
7248
7249 Closes #7313
7250
7251 - RELEASE-NOTES: synced
7252
7253 - openssl: avoid static variable for seed flag
7254
7255 Avoid the race condition risk by instead storing the "seeded" flag in
7256 the multi handle. Modern OpenSSL versions handle the seeding itself so
7257 doing the seeding once per multi-handle instead of once per process is
7258 less of an issue.
7259
7260 Reported-by: Gerrit Renker
7261 Fixes #7296
7262 Closes #7306
7263
7264 - configure: inhibit the implicit-fallthrough warning on gcc-12
7265
7266 ... since it no longer acknowledges the comment markup we use for that
7267 purpose.
7268
7269 Reported-by: Younes El-karama
7270 Fixes #7295
7271 Closes #7307
7272
7273 Daniel Gustafsson (28 Jun 2021)
7274 - [Andrei Rybak brought this change]
7275
7276 misc: fix typos in comments which repeat a word
7277
7278 Fix typos in code comments which repeat various words. In trivial
7279 cases, just delete the repeated word. Reword the affected sentence in
7280 "lib/url.c" for it to make sense.
7281
7282 Closes #7303
7283 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
7284
7285 Daniel Stenberg (27 Jun 2021)
7286 - lib677: make it survive torture testing
7287
7288 Follow-up to a5ab72d5edd7
7289
7290 Closes #7300
7291
7292 - [Tommy Chiang brought this change]
7293
7294 docs/BINDINGS: fix outdated links
7295
7296 * luacurl page is now not accessible, fix it with wayback machine page
7297 * Scheme one seems not providing https now, change it back to http one
7298
7299 Closes #7301
7300
7301 - [Jacob Hoffman-Andrews brought this change]
7302
7303 curstls: bump crustls version and use new URL
7304
7305 crustls moved to https://github.com/rustls/rustls-ffi. This also bumps
7306 the expected version to 0.7.0.
7307
7308 Closes #7297
7309
7310 - RELEASE-NOTES: synced
7311
7312 - examples: length-limit two sscanf() uses of %s
7313
7314 Reported-by: Jishan Shaikh
7315 Fixes #7293
7316 Closes #7294
7317
7318 - [Richard Whitehouse brought this change]
7319
7320 multi: alter transfer timeout ordering
7321
7322 - Check whether a connection has succeded before checking whether it's
7323 timed out.
7324
7325 This means if we've connected quickly, but subsequently been
7326 descheduled, we allow the connection to succeed. Note, if we timeout,
7327 but between checking the timeout, and connecting to the server the
7328 connection succeeds, we will allow it to go ahead. This is viewed as
7329 an acceptable trade off.
7330
7331 - Add additional failf logging around failed connection attempts to
7332 propogate the cause up to the caller.
7333
7334 Co-Authored-by: Martin Howarth
7335 Closes #7178
7336
7337 - test677: IMAP CONNECT_ONLY, custom command and then exit
7338
7339 Adjusted ftpserver.pl to add support for the IMAP IDLE command
7340
7341 Adjusted test 660 to sync with the fix
7342
7343 - multi: do not switch off connect_only flag when closing
7344
7345 ... as it made protocol specific disconnect commands wrongly get used.
7346
7347 Bug: https://curl.se/mail/lib-2021-06/0024.html
7348 Reported-by: Aleksander Mazur
7349 Closes #7288
7350
7351 - http: make the haproxy support work with unix domain sockets
7352
7353 ... it should then pass on "PROXY UNKNOWN" since it doesn't know the
7354 involved IP addresses.
7355
7356 Reported-by: Valentín Gutiérrez
7357 Fixes #7290
7358 Closes #7291
7359
7360 - [Xiang Xiao brought this change]
7361
7362 curl.h: include sys/select.h for NuttX RTOS
7363
7364 Closes #7287
7365
7366 - [Bin Meng brought this change]
7367
7368 curl.h: remove the execution bit
7369
7370 The execution bit of curl.h file was wrongly added:
7371
7372 commit 2621025d6f96 ("curl.h: <sys/select.h> is supported by VxWorks7")
7373
7374 and should be removed.
7375
7376 Follow-up to 2621025d6f96 ("curl.h: <sys/select.h> is supported by VxWorks7")
7377 Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
7378 Closes #7286
7379
7380 - [Bin Lan brought this change]
7381
7382 curl.h: <sys/select.h> is supported by VxWorks7
7383
7384 Closes #7285
7385
7386 - [Bachue Zhou brought this change]
7387
7388 quiche: use send() instead of sendto() to avoid macOS issue
7389
7390 sendto() always returns "Socket is already connected" error on macos
7391
7392 Closes #7260
7393
7394 - [Li Xinwei brought this change]
7395
7396 cmake: fix support for UnixSockets feature on Win32
7397
7398 Move the definition of sockaddr_un struct from config-win32.h to
7399 curl_setup.h, so that it could be shared by all build systems.
7400
7401 Add ADDRESS_FAMILY typedef for old mingw, now old mingw can also use
7402 unix sockets.
7403
7404 Also fix the build of tests/server/sws.c on Win32 when USE_UNIX_SOCKETS
7405 is defined.
7406
7407 Closes #7034
7408
7409 - [Gregory Muchka brought this change]
7410
7411 hostip: (macOS) free returned memory of SCDynamicStoreCopyProxies
7412
7413 From Apples documentation on SCDynamicStoreCopyProxies, "Return Value: A
7414 dictionary of key-value pairs that represent the current internet proxy
7415 settings, or NULL if no proxy settings have been defined or if an error
7416 occurred. You must release the returned value."
7417
7418 Failure to release the returned value of SCDynamicStoreCopyProxies can
7419 result in a memory leak.
7420
7421 Source: https://developer.apple.com/documentation/systemconfiguration/1517088-scdynamicstorecopyproxies
7422
7423 Closes #7265
7424
7425 - RELEASE-NOTES: synced
7426
7427 Jay Satiro (21 Jun 2021)
7428 - vtls: fix warning due to function prototype mismatch
7429
7430 b09c8ee changed the function prototype. Caught by Visual Studio.
7431
7432 - curl_multibyte: Remove local encoding fallbacks
7433
7434 - If the UTF-8 to UTF-16 conversion fails in Windows Unicode builds then
7435 no longer fall back to assuming the string is in a local encoding.
7436
7437 Background:
7438
7439 Some functions in Windows Unicode builds must convert UTF-8 to UTF-16 to
7440 pass to the Windows CRT API wide-character functions since in Windows
7441 UTF-8 is not a valid locale (or at least 99% of the time right now).
7442
7443 Prior to this change if the Unicode encoding conversion failed then
7444 libcurl would assume, for backwards compatibility with applications that
7445 may have written their code for non-Unicode builds, attempt to convert
7446 the string from local encoding to UTF-16.
7447
7448 That type of "best effort" could theoretically cause some type of
7449 security or other problem if a string that was locally encoded was also
7450 valid UTF-8, and therefore an unexpected UTF-8 to UTF-16 conversion
7451 could occur.
7452
7453 Ref: https://github.com/curl/curl/pull/7246
7454
7455 Closes https://github.com/curl/curl/pull/7257
7456
7457 Daniel Stenberg (20 Jun 2021)
7458 - curl_endian: remove the unused Curl_write64_le function
7459
7460 The last usage was removed in cca455a36
7461
7462 Closes #7280
7463
7464 - vtls: only store TIMER_APPCONNECT for non-proxy connect
7465
7466 Introducing a 'isproxy' argument to the connect function so that it
7467 knows wether to store the time stamp or not.
7468
7469 Reported-by: Yongkang Huang
7470 Fixes #7274
7471 Closes #7274
7472
7473 - gnutls: set the preferred TLS versions in correct order
7474
7475 Regression since 781864bedbc57 (curl 7.77.0)
7476
7477 Reported-by: civodul on github
7478 Assisted-by: Nikos Mavrogiannopoulos
7479 Fixes #7277
7480 Closes #7278
7481
7482 - [Gergely Nagy brought this change]
7483
7484 configure/cmake: remove checks for unused gethostbyaddr and gethostbyaddr_r
7485
7486 Closes #7276
7487
7488 - [Gergely Nagy brought this change]
7489
7490 configure/cmake: remove checks for unused inet_ntoa and inet_ntoa_r
7491
7492 Closes #7276
7493
7494 - [Gergely Nagy brought this change]
7495
7496 configure/cmake: remove unused define HAVE_PERROR
7497
7498 Closes #7276
7499
7500 - [Gergely Nagy brought this change]
7501
7502 configure: remove unused check for gai_strerror
7503
7504 Closes #7276
7505
7506 - [Gergely Nagy brought this change]
7507
7508 configure/cmake: remove unused define HAVE_FREEIFADDRS
7509
7510 Closes #7276
7511
7512 - [Gergely Nagy brought this change]
7513
7514 configure/cmake: remove unused define HAVE_FORK
7515
7516 Closes #7276
7517
7518 - [Gergely Nagy brought this change]
7519
7520 configure/cmake: remove unused define HAVE_FDOPEN
7521
7522 Closes #7276
7523
7524 - [Gergely Nagy brought this change]
7525
7526 configure/cmake: remove checks for unused sgtty.h
7527
7528 Closes #7276
7529
7530 - [Gergely Nagy brought this change]
7531
7532 configure/cmake: remove remaining checks for rsa.h
7533
7534 Closes #7276
7535
7536 - [Gergely Nagy brought this change]
7537
7538 configure/cmake: remove remaining checks for err.h
7539
7540 Closes #7276
7541
7542 - [Gergely Nagy brought this change]
7543
7544 configure/cmake: remove remaining checks for crypto.h
7545
7546 Closes #7276
7547
7548 - [Gergely Nagy brought this change]
7549
7550 configure/cmake: remove checks for unused getservbyport_r
7551
7552 Closes #7276
7553
7554 - --socks4[a]: clarify where the host name is resolved
7555
7556 Closes #7273
7557
7558 - libcurl-security.3: mention file descriptors and forks
7559
7560 ... and move the security report section last.
7561
7562 Reported-by: Harry Sintonen
7563 Closes #7270
7564
7565 - [Alex Xu (Hello71) brought this change]
7566
7567 configure.ac: make non-executable
7568
7569 it needs to be processed by autoconf or autoreconf, and doesn't have a
7570 suitable shebang to be directly executed. other projects normally set
7571 configure.ac -x.
7572
7573 Closes #7272
7574
7575 - configure: do not strip out debug flags
7576
7577 To allow users to set them when invoking configure without using
7578 --with-debug.
7579
7580 Reported-by: Alex Xu
7581 Fixes #7216
7582 Closes #7267
7583
7584 - libssh2: limit time a disconnect can take to 1 second
7585
7586 Closes #7271
7587
7588 - TLS: prevent shutdown loops to get stuck
7589
7590 ... by making sure the loops are only allowed to read the shutdown
7591 traffic a limited number of times.
7592
7593 Reported-by: Harry Sintonen
7594 Closes #7271
7595
7596 - hyper: propagate errors back up from read callbacks
7597
7598 Makes test 513 work with hyper
7599
7600 Closes #7266
7601
7602 - KNOWN_BUGS: Negotiate on Windows fails
7603
7604 Closes #5881
7605
7606 - KNOWN_BUGS: renames instead of locking for atomic operations
7607
7608 Closes #6882
7609 Closes #6884
7610
7611 - zuul: add two missing CI jobs
7612
7613 ... that were configured, just not run
7614
7615 Closes #7261
7616
7617 Viktor Szakats (15 Jun 2021)
7618 - idn: fix libidn2 with windows unicode builds
7619
7620 Unicode Windows builds use UTF-8 strings internally in libcurl,
7621 so make sure to call the UTF-8 flavour of the libidn2 API. Also
7622 document that Windows builds with libidn2 and UNICODE do expect
7623 CURLOPT_URL as an UTF-8 string.
7624
7625 Reported-by: dEajL3kA on github
7626 Assisted-by: Jay Satiro
7627 Reviewed-by: Marcel Raad
7628 Closes #7246
7629 Fixes #7228
7630
7631 Daniel Stenberg (15 Jun 2021)
7632 - curl_url_set: reject spaces in URLs w/o CURLU_ALLOW_SPACE
7633
7634 They were never officially allowed and slipped in only due to sloppy
7635 parsing. Spaces (ascii 32) should be correctly encoded (to %20) before
7636 being part of a URL.
7637
7638 The new flag bit CURLU_ALLOW_SPACE when a full URL is set, makes libcurl
7639 allow spaces.
7640
7641 Updated test 1560 to verify.
7642
7643 Closes #7073
7644
7645 - RELEASE-NOTES: synced
7646
7647 ... and bump to version 7.78.0 for the next planned release.
7648
7649 Jay Satiro (15 Jun 2021)
7650 - docs: Remove outdated curl tool limitation
7651
7652 - Document that HTTP/2 multiplexing is supported by the curl tool when
7653 parallel transfers are used.
7654
7655 Supported since 7.66.0 via --parallel, but the doc wasn't updated.
7656
7657 Closes https://github.com/curl/curl/pull/7259
7658
7659 - http2: Clarify 'Using HTTP2' verbose message
7660
7661 - Change phrasing from multi-use to multiplexing since the former may
7662 not be as well understood.
7663
7664 Before: * Using HTTP2, server supports multi-use
7665
7666 After: * Using HTTP2, server supports multiplexing
7667
7668 Bug: https://github.com/curl/curl/discussions/7255
7669 Reported-by: David Hu
7670
7671 Closes https://github.com/curl/curl/pull/7258
7672
7673 Daniel Stenberg (14 Jun 2021)
7674 - winbuild/README: VC should be set to 6 'or larger'
7675
7676 Previously it listed all versions up to 15 (missing 16) but this new
7677 phrasing is more open ended.
7678
7679 Reported-by: Hugh Macdonald
7680 Fixes #7253
7681 Closes #7254
7682
7683 - [Jacob Hoffman-Andrews brought this change]
7684
7685 rustls: remove native_roots fallback
7686
7687 For the commandline tool, we expect to be passed
7688 SSL_CONN_CONFIG(CAfile); for library use, the use should pass a set of
7689 trusted roots (like in other TLS backends).
7690
7691 This also removes a dependency on Security.framework when building on
7692 macOS.
7693
7694 Closes #7250
7695
7696 - [Albin Vass brought this change]
7697
7698 travis: remove jobs that have migrated to zuul
7699
7700 Closes #7245
7701
7702 - [Mohammed Naser brought this change]
7703
7704 CI: add jobs using Zuul
7705
7706 It also includes a few changes to get the builds going:
7707 - Added autoconf to common dependencies
7708 - Added automake to common dependencies
7709 - Added libtool to common dependencies
7710 - Added libssl-dev to common dependencies
7711
7712 Co-authored-by: Albin Vass
7713
7714 Closes #7245
7715
7716 - netrc: skip 'macdef' definitions
7717
7718 Add test 494 to verify
7719
7720 Reported-by: Harry Sintonen
7721 Fixes #7238
7722 Closes #7244
7723
7724 - multi: add scan-build-6 work-around in curl_multi_fdset
7725
7726 scan-build-6 otherwise warns, saying: warning: The left operand of '>='
7727 is a garbage value otherwise, which is false.
7728
7729 Later scan-builds don't claim this on the same code.
7730
7731 Closes #7248
0 #***************************************************************************
1 # _ _ ____ _
2 # Project ___| | | | _ \| |
3 # / __| | | | |_) | |
4 # | (__| |_| | _ <| |___
5 # \___|\___/|_| \_\_____|
6 #
7 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 #
9 # This software is licensed as described in the file COPYING, which
10 # you should have received as part of this distribution. The terms
11 # are also available at https://curl.se/docs/copyright.html.
12 #
13 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 # copies of the Software, and permit persons to whom the Software is
15 # furnished to do so, under the terms of the COPYING file.
16 #
17 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 # KIND, either express or implied.
19 #
20 ###########################################################################
21
22 #[=======================================================================[.rst:
23 FindMSH3
24 ----------
25
26 Find the msh3 library
27
28 Result Variables
29 ^^^^^^^^^^^^^^^^
30
31 ``MSH3_FOUND``
32 System has msh3
33 ``MSH3_INCLUDE_DIRS``
34 The msh3 include directories.
35 ``MSH3_LIBRARIES``
36 The libraries needed to use msh3
37 #]=======================================================================]
38 if(UNIX)
39 find_package(PkgConfig QUIET)
40 pkg_search_module(PC_MSH3 libmsh3)
41 endif()
42
43 find_path(MSH3_INCLUDE_DIR msh3.h
44 HINTS
45 ${PC_MSH3_INCLUDEDIR}
46 ${PC_MSH3_INCLUDE_DIRS}
47 )
48
49 find_library(MSH3_LIBRARY NAMES msh3
50 HINTS
51 ${PC_MSH3_LIBDIR}
52 ${PC_MSH3_LIBRARY_DIRS}
53 )
54
55 include(FindPackageHandleStandardArgs)
56 find_package_handle_standard_args(MSH3
57 REQUIRED_VARS
58 MSH3_LIBRARY
59 MSH3_INCLUDE_DIR
60 )
61
62 if(MSH3_FOUND)
63 set(MSH3_LIBRARIES ${MSH3_LIBRARY})
64 set(MSH3_INCLUDE_DIRS ${MSH3_INCLUDE_DIR})
65 endif()
66
67 mark_as_advanced(MSH3_INCLUDE_DIRS MSH3_LIBRARIES)
555555 cmake_pop_check_state()
556556 endif()
557557
558 option(USE_MSH3 "Use msquic library for HTTP/3 support" OFF)
559 if(USE_MSH3)
560 if(USE_NGTCP2 OR USE_QUICHE)
561 message(FATAL_ERROR "Only one HTTP/3 backend can be selected!")
562 endif()
563 set(USE_MSH3 ON)
564 include_directories(${MSH3_INCLUDE_DIRS})
565 list(APPEND CURL_LIBS ${MSH3_LIBRARIES})
566 endif()
567
558568 if(NOT CURL_DISABLE_LDAP)
559569 if(WIN32)
560570 option(USE_WIN32_LDAP "Use Windows LDAP implementation" ON)
55 # | (__| |_| | _ <| |___
66 # \___|\___/|_| \_\_____|
77 #
8 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
8 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
99 #
1010 # This software is licensed as described in the file COPYING, which
1111 # you should have received as part of this distribution. The terms
115115 mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Resources
116116 cp lib/.libs/libcurl.dylib libcurl.framework/${FRAMEWORK_VERSION}/libcurl
117117 install_name_tool -id @rpath/libcurl.framework/${FRAMEWORK_VERSION}/libcurl libcurl.framework/${FRAMEWORK_VERSION}/libcurl
118 /usr/bin/sed -e "s/7\.12\.3/$VERSION/" lib/libcurl.plist >libcurl.framework/${FRAMEWORK_VERSION}/Resources/Info.plist
118 cp lib/libcurl.plist libcurl.framework/${FRAMEWORK_VERSION}/Resources/Info.plist
119119 mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
120120 cp include/curl/*.h libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
121121 pushd libcurl.framework
8080
8181 linux-ssl: ssl
8282
83 ca-bundle: lib/mk-ca-bundle.pl
83 ca-bundle: scripts/mk-ca-bundle.pl
8484 @echo "generate a fresh ca-bundle.crt"
8585 @perl $< -b -l -u lib/ca-bundle.crt
8686
3535 CMake/FindGSS.cmake \
3636 CMake/FindLibSSH2.cmake \
3737 CMake/FindMbedTLS.cmake \
38 CMake/FindMSH3.cmake \
3839 CMake/FindNGHTTP2.cmake \
3940 CMake/FindNGHTTP3.cmake \
4041 CMake/FindNGTCP2.cmake \
7677 VC14_SRCVCXPROJ = projects/Windows/VC14/src/curl.vcxproj.dist
7778 VC14_SRCVCXPROJ_DEPS = $(VC14_SRCTMPL) Makefile.am src/Makefile.inc
7879
79 VC15_LIBTMPL = projects/Windows/VC15/lib/libcurl.tmpl
80 VC15_LIBVCXPROJ = projects/Windows/VC15/lib/libcurl.vcxproj.dist
81 VC15_LIBVCXPROJ_DEPS = $(VC15_LIBTMPL) Makefile.am lib/Makefile.inc
82 VC15_SRCTMPL = projects/Windows/VC15/src/curl.tmpl
83 VC15_SRCVCXPROJ = projects/Windows/VC15/src/curl.vcxproj.dist
84 VC15_SRCVCXPROJ_DEPS = $(VC15_SRCTMPL) Makefile.am src/Makefile.inc
85
86 VC17_LIBTMPL = projects/Windows/VC17/lib/libcurl.tmpl
87 VC17_LIBVCXPROJ = projects/Windows/VC17/lib/libcurl.vcxproj.dist
88 VC17_LIBVCXPROJ_DEPS = $(VC17_LIBTMPL) Makefile.am lib/Makefile.inc
89 VC17_SRCTMPL = projects/Windows/VC17/src/curl.tmpl
90 VC17_SRCVCXPROJ = projects/Windows/VC17/src/curl.vcxproj.dist
91 VC17_SRCVCXPROJ_DEPS = $(VC17_SRCTMPL) Makefile.am src/Makefile.inc
92
93 VC_DIST = projects/README \
94 projects/build-openssl.bat \
95 projects/build-wolfssl.bat \
96 projects/checksrc.bat \
97 projects/Windows/VC10/curl-all.sln \
98 projects/Windows/VC10/lib/libcurl.sln \
99 projects/Windows/VC10/lib/libcurl.vcxproj.filters \
100 projects/Windows/VC10/src/curl.sln \
101 projects/Windows/VC10/src/curl.vcxproj.filters \
102 projects/Windows/VC11/curl-all.sln \
103 projects/Windows/VC11/lib/libcurl.sln \
104 projects/Windows/VC11/lib/libcurl.vcxproj.filters \
105 projects/Windows/VC11/src/curl.sln \
106 projects/Windows/VC11/src/curl.vcxproj.filters \
107 projects/Windows/VC12/curl-all.sln \
108 projects/Windows/VC12/lib/libcurl.sln \
109 projects/Windows/VC12/lib/libcurl.vcxproj.filters \
110 projects/Windows/VC12/src/curl.sln \
111 projects/Windows/VC12/src/curl.vcxproj.filters \
112 projects/Windows/VC14/curl-all.sln \
113 projects/Windows/VC14/lib/libcurl.sln \
114 projects/Windows/VC14/lib/libcurl.vcxproj.filters \
115 projects/Windows/VC14/src/curl.sln \
116 projects/Windows/VC14/src/curl.vcxproj.filters \
117 projects/Windows/VC15/curl-all.sln \
118 projects/Windows/VC15/lib/libcurl.sln \
119 projects/Windows/VC15/lib/libcurl.vcxproj.filters \
120 projects/Windows/VC15/src/curl.sln \
121 projects/Windows/VC15/src/curl.vcxproj.filters \
122 projects/Windows/VC17/curl-all.sln \
123 projects/Windows/VC17/lib/libcurl.sln \
124 projects/Windows/VC17/lib/libcurl.vcxproj.filters \
125 projects/Windows/VC17/src/curl.sln \
126 projects/Windows/VC17/src/curl.vcxproj.filters \
127 projects/generate.bat \
128 projects/wolfssl_options.h \
80 VC14_10_LIBTMPL = projects/Windows/VC14.10/lib/libcurl.tmpl
81 VC14_10_LIBVCXPROJ = projects/Windows/VC14.10/lib/libcurl.vcxproj.dist
82 VC14_10_LIBVCXPROJ_DEPS = $(VC14_10_LIBTMPL) Makefile.am lib/Makefile.inc
83 VC14_10_SRCTMPL = projects/Windows/VC14.10/src/curl.tmpl
84 VC14_10_SRCVCXPROJ = projects/Windows/VC14.10/src/curl.vcxproj.dist
85 VC14_10_SRCVCXPROJ_DEPS = $(VC14_10_SRCTMPL) Makefile.am src/Makefile.inc
86
87 VC14_30_LIBTMPL = projects/Windows/VC14.30/lib/libcurl.tmpl
88 VC14_30_LIBVCXPROJ = projects/Windows/VC14.30/lib/libcurl.vcxproj.dist
89 VC14_30_LIBVCXPROJ_DEPS = $(VC14_30_LIBTMPL) Makefile.am lib/Makefile.inc
90 VC14_30_SRCTMPL = projects/Windows/VC14.30/src/curl.tmpl
91 VC14_30_SRCVCXPROJ = projects/Windows/VC14.30/src/curl.vcxproj.dist
92 VC14_30_SRCVCXPROJ_DEPS = $(VC14_30_SRCTMPL) Makefile.am src/Makefile.inc
93
94 VC_DIST = projects/README.md \
95 projects/build-openssl.bat \
96 projects/build-wolfssl.bat \
97 projects/checksrc.bat \
98 projects/Windows/VC10/curl-all.sln \
99 projects/Windows/VC10/lib/libcurl.sln \
100 projects/Windows/VC10/lib/libcurl.vcxproj.filters \
101 projects/Windows/VC10/src/curl.sln \
102 projects/Windows/VC10/src/curl.vcxproj.filters \
103 projects/Windows/VC11/curl-all.sln \
104 projects/Windows/VC11/lib/libcurl.sln \
105 projects/Windows/VC11/lib/libcurl.vcxproj.filters \
106 projects/Windows/VC11/src/curl.sln \
107 projects/Windows/VC11/src/curl.vcxproj.filters \
108 projects/Windows/VC12/curl-all.sln \
109 projects/Windows/VC12/lib/libcurl.sln \
110 projects/Windows/VC12/lib/libcurl.vcxproj.filters \
111 projects/Windows/VC12/src/curl.sln \
112 projects/Windows/VC12/src/curl.vcxproj.filters \
113 projects/Windows/VC14/curl-all.sln \
114 projects/Windows/VC14/lib/libcurl.sln \
115 projects/Windows/VC14/lib/libcurl.vcxproj.filters \
116 projects/Windows/VC14/src/curl.sln \
117 projects/Windows/VC14/src/curl.vcxproj.filters \
118 projects/Windows/VC14.10/curl-all.sln \
119 projects/Windows/VC14.10/lib/libcurl.sln \
120 projects/Windows/VC14.10/lib/libcurl.vcxproj.filters \
121 projects/Windows/VC14.10/src/curl.sln \
122 projects/Windows/VC14.10/src/curl.vcxproj.filters \
123 projects/Windows/VC14.30/curl-all.sln \
124 projects/Windows/VC14.30/lib/libcurl.sln \
125 projects/Windows/VC14.30/lib/libcurl.vcxproj.filters \
126 projects/Windows/VC14.30/src/curl.sln \
127 projects/Windows/VC14.30/src/curl.vcxproj.filters \
128 projects/generate.bat \
129 projects/wolfssl_options.h \
129130 projects/wolfssl_override.props
130131
131132 WINBUILD_DIST = winbuild/README.md winbuild/gen_resp_file.bat \
141142 plan9/src/mkfile.inc \
142143 plan9/src/mkfile
143144
144 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
145 RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework \
146 scripts/updatemanpages.pl $(CMAKE_DIST) \
147 $(VC_DIST) $(WINBUILD_DIST) $(PLAN9_DIST) \
148 lib/libcurl.vers.in buildconf.bat scripts/coverage.sh scripts/completion.pl
145 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
146 RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework $(CMAKE_DIST) \
147 $(VC_DIST) $(WINBUILD_DIST) $(PLAN9_DIST) lib/libcurl.vers.in buildconf.bat
149148
150149 CLEANFILES = $(VC10_LIBVCXPROJ) $(VC10_SRCVCXPROJ) $(VC11_LIBVCXPROJ) \
151150 $(VC11_SRCVCXPROJ) $(VC12_LIBVCXPROJ) $(VC12_SRCVCXPROJ) $(VC14_LIBVCXPROJ) \
152 $(VC14_SRCVCXPROJ) $(VC15_LIBVCXPROJ) $(VC15_SRCVCXPROJ) $(VC17_LIBVCXPROJ) \
153 $(VC17_SRCVCXPROJ)
151 $(VC14_SRCVCXPROJ) $(VC14_10_LIBVCXPROJ) $(VC14_10_SRCVCXPROJ) \
152 $(VC14_30_LIBVCXPROJ) $(VC14_30_SRCVCXPROJ)
154153
155154 bin_SCRIPTS = curl-config
156155
278277 (cd docs && $(MAKE) uninstall)
279278 (cd docs/libcurl && $(MAKE) uninstall)
280279
281 ca-bundle: lib/mk-ca-bundle.pl
280 ca-bundle: scripts/mk-ca-bundle.pl
282281 @echo "generating a fresh ca-bundle.crt"
283282 @perl $< -b -l -u lib/ca-bundle.crt
284283
299298 vc-ide: $(VC10_LIBVCXPROJ_DEPS) $(VC10_SRCVCXPROJ_DEPS) \
300299 $(VC11_LIBVCXPROJ_DEPS) $(VC11_SRCVCXPROJ_DEPS) $(VC12_LIBVCXPROJ_DEPS) \
301300 $(VC12_SRCVCXPROJ_DEPS) $(VC14_LIBVCXPROJ_DEPS) $(VC14_SRCVCXPROJ_DEPS) \
302 $(VC15_LIBVCXPROJ_DEPS) $(VC15_SRCVCXPROJ_DEPS) $(VC17_LIBVCXPROJ_DEPS) \
303 $(VC17_SRCVCXPROJ_DEPS)
301 $(VC14_10_LIBVCXPROJ_DEPS) $(VC14_10_SRCVCXPROJ_DEPS) \
302 $(VC14_30_LIBVCXPROJ_DEPS) $(VC14_30_SRCVCXPROJ_DEPS)
304303 @(win32_lib_srcs='$(LIB_CFILES)'; \
305304 win32_lib_hdrs='$(LIB_HFILES) config-win32.h'; \
306305 win32_lib_rc='$(LIB_RCFILES)'; \
557556 -v src_x_hdrs="$$sorted_src_x_hdrs" \
558557 "$$awk_code" $(srcdir)/$(VC14_SRCTMPL) > $(VC14_SRCVCXPROJ) || { exit 1; }; \
559558 \
560 echo "generating '$(VC15_LIBVCXPROJ)'"; \
559 echo "generating '$(VC14_10_LIBVCXPROJ)'"; \
561560 awk -v proj_type=vcxproj \
562561 -v lib_srcs="$$sorted_lib_srcs" \
563562 -v lib_hdrs="$$sorted_lib_hdrs" \
570569 -v lib_vssh_hdrs="$$sorted_lib_vssh_hdrs" \
571570 -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
572571 -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
573 "$$awk_code" $(srcdir)/$(VC15_LIBTMPL) > $(VC15_LIBVCXPROJ) || { exit 1; }; \
574 \
575 echo "generating '$(VC15_SRCVCXPROJ)'"; \
572 "$$awk_code" $(srcdir)/$(VC14_10_LIBTMPL) > $(VC14_10_LIBVCXPROJ) || { exit 1; }; \
573 \
574 echo "generating '$(VC14_10_SRCVCXPROJ)'"; \
576575 awk -v proj_type=vcxproj \
577576 -v src_srcs="$$sorted_src_srcs" \
578577 -v src_hdrs="$$sorted_src_hdrs" \
579578 -v src_rc="$$win32_src_rc" \
580579 -v src_x_srcs="$$sorted_src_x_srcs" \
581580 -v src_x_hdrs="$$sorted_src_x_hdrs" \
582 "$$awk_code" $(srcdir)/$(VC15_SRCTMPL) > $(VC15_SRCVCXPROJ) || { exit 1; }; \
583 \
584 echo "generating '$(VC17_LIBVCXPROJ)'"; \
581 "$$awk_code" $(srcdir)/$(VC14_10_SRCTMPL) > $(VC14_10_SRCVCXPROJ) || { exit 1; }; \
582 \
583 echo "generating '$(VC14_30_LIBVCXPROJ)'"; \
585584 awk -v proj_type=vcxproj \
586585 -v lib_srcs="$$sorted_lib_srcs" \
587586 -v lib_hdrs="$$sorted_lib_hdrs" \
594593 -v lib_vssh_hdrs="$$sorted_lib_vssh_hdrs" \
595594 -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
596595 -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
597 "$$awk_code" $(srcdir)/$(VC17_LIBTMPL) > $(VC17_LIBVCXPROJ) || { exit 1; }; \
598 \
599 echo "generating '$(VC17_SRCVCXPROJ)'"; \
596 "$$awk_code" $(srcdir)/$(VC14_30_LIBTMPL) > $(VC14_30_LIBVCXPROJ) || { exit 1; }; \
597 \
598 echo "generating '$(VC14_30_SRCVCXPROJ)'"; \
600599 awk -v proj_type=vcxproj \
601600 -v src_srcs="$$sorted_src_srcs" \
602601 -v src_hdrs="$$sorted_src_hdrs" \
603602 -v src_rc="$$win32_src_rc" \
604603 -v src_x_srcs="$$sorted_src_x_srcs" \
605604 -v src_x_hdrs="$$sorted_src_x_hdrs" \
606 "$$awk_code" $(srcdir)/$(VC17_SRCTMPL) > $(VC17_SRCVCXPROJ) || { exit 1; };)
605 "$$awk_code" $(srcdir)/$(VC14_30_SRCTMPL) > $(VC14_30_SRCVCXPROJ) || { exit 1; };)
607606
608607 tidy:
609608 (cd src && $(MAKE) tidy)
373373 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
374374 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
375375 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
376 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
376377 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
377378 CYGPATH_W = @CYGPATH_W@
378379 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
390391 ETAGS = @ETAGS@
391392 EXEEXT = @EXEEXT@
392393 FGREP = @FGREP@
394 FILECMD = @FILECMD@
393395 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
394396 GCOV = @GCOV@
395397 GREP = @GREP@
465467 USE_LIBSSH = @USE_LIBSSH@
466468 USE_LIBSSH2 = @USE_LIBSSH2@
467469 USE_MBEDTLS = @USE_MBEDTLS@
470 USE_MSH3 = @USE_MSH3@
468471 USE_NGHTTP2 = @USE_NGHTTP2@
469472 USE_NGHTTP3 = @USE_NGHTTP3@
470473 USE_NGTCP2 = @USE_NGTCP2@
555558 CMake/FindGSS.cmake \
556559 CMake/FindLibSSH2.cmake \
557560 CMake/FindMbedTLS.cmake \
561 CMake/FindMSH3.cmake \
558562 CMake/FindNGHTTP2.cmake \
559563 CMake/FindNGHTTP3.cmake \
560564 CMake/FindNGTCP2.cmake \
592596 VC14_SRCTMPL = projects/Windows/VC14/src/curl.tmpl
593597 VC14_SRCVCXPROJ = projects/Windows/VC14/src/curl.vcxproj.dist
594598 VC14_SRCVCXPROJ_DEPS = $(VC14_SRCTMPL) Makefile.am src/Makefile.inc
595 VC15_LIBTMPL = projects/Windows/VC15/lib/libcurl.tmpl
596 VC15_LIBVCXPROJ = projects/Windows/VC15/lib/libcurl.vcxproj.dist
597 VC15_LIBVCXPROJ_DEPS = $(VC15_LIBTMPL) Makefile.am lib/Makefile.inc
598 VC15_SRCTMPL = projects/Windows/VC15/src/curl.tmpl
599 VC15_SRCVCXPROJ = projects/Windows/VC15/src/curl.vcxproj.dist
600 VC15_SRCVCXPROJ_DEPS = $(VC15_SRCTMPL) Makefile.am src/Makefile.inc
601 VC17_LIBTMPL = projects/Windows/VC17/lib/libcurl.tmpl
602 VC17_LIBVCXPROJ = projects/Windows/VC17/lib/libcurl.vcxproj.dist
603 VC17_LIBVCXPROJ_DEPS = $(VC17_LIBTMPL) Makefile.am lib/Makefile.inc
604 VC17_SRCTMPL = projects/Windows/VC17/src/curl.tmpl
605 VC17_SRCVCXPROJ = projects/Windows/VC17/src/curl.vcxproj.dist
606 VC17_SRCVCXPROJ_DEPS = $(VC17_SRCTMPL) Makefile.am src/Makefile.inc
607 VC_DIST = projects/README \
608 projects/build-openssl.bat \
609 projects/build-wolfssl.bat \
610 projects/checksrc.bat \
611 projects/Windows/VC10/curl-all.sln \
612 projects/Windows/VC10/lib/libcurl.sln \
613 projects/Windows/VC10/lib/libcurl.vcxproj.filters \
614 projects/Windows/VC10/src/curl.sln \
615 projects/Windows/VC10/src/curl.vcxproj.filters \
616 projects/Windows/VC11/curl-all.sln \
617 projects/Windows/VC11/lib/libcurl.sln \
618 projects/Windows/VC11/lib/libcurl.vcxproj.filters \
619 projects/Windows/VC11/src/curl.sln \
620 projects/Windows/VC11/src/curl.vcxproj.filters \
621 projects/Windows/VC12/curl-all.sln \
622 projects/Windows/VC12/lib/libcurl.sln \
623 projects/Windows/VC12/lib/libcurl.vcxproj.filters \
624 projects/Windows/VC12/src/curl.sln \
625 projects/Windows/VC12/src/curl.vcxproj.filters \
626 projects/Windows/VC14/curl-all.sln \
627 projects/Windows/VC14/lib/libcurl.sln \
628 projects/Windows/VC14/lib/libcurl.vcxproj.filters \
629 projects/Windows/VC14/src/curl.sln \
630 projects/Windows/VC14/src/curl.vcxproj.filters \
631 projects/Windows/VC15/curl-all.sln \
632 projects/Windows/VC15/lib/libcurl.sln \
633 projects/Windows/VC15/lib/libcurl.vcxproj.filters \
634 projects/Windows/VC15/src/curl.sln \
635 projects/Windows/VC15/src/curl.vcxproj.filters \
636 projects/Windows/VC17/curl-all.sln \
637 projects/Windows/VC17/lib/libcurl.sln \
638 projects/Windows/VC17/lib/libcurl.vcxproj.filters \
639 projects/Windows/VC17/src/curl.sln \
640 projects/Windows/VC17/src/curl.vcxproj.filters \
641 projects/generate.bat \
642 projects/wolfssl_options.h \
599 VC14_10_LIBTMPL = projects/Windows/VC14.10/lib/libcurl.tmpl
600 VC14_10_LIBVCXPROJ = projects/Windows/VC14.10/lib/libcurl.vcxproj.dist
601 VC14_10_LIBVCXPROJ_DEPS = $(VC14_10_LIBTMPL) Makefile.am lib/Makefile.inc
602 VC14_10_SRCTMPL = projects/Windows/VC14.10/src/curl.tmpl
603 VC14_10_SRCVCXPROJ = projects/Windows/VC14.10/src/curl.vcxproj.dist
604 VC14_10_SRCVCXPROJ_DEPS = $(VC14_10_SRCTMPL) Makefile.am src/Makefile.inc
605 VC14_30_LIBTMPL = projects/Windows/VC14.30/lib/libcurl.tmpl
606 VC14_30_LIBVCXPROJ = projects/Windows/VC14.30/lib/libcurl.vcxproj.dist
607 VC14_30_LIBVCXPROJ_DEPS = $(VC14_30_LIBTMPL) Makefile.am lib/Makefile.inc
608 VC14_30_SRCTMPL = projects/Windows/VC14.30/src/curl.tmpl
609 VC14_30_SRCVCXPROJ = projects/Windows/VC14.30/src/curl.vcxproj.dist
610 VC14_30_SRCVCXPROJ_DEPS = $(VC14_30_SRCTMPL) Makefile.am src/Makefile.inc
611 VC_DIST = projects/README.md \
612 projects/build-openssl.bat \
613 projects/build-wolfssl.bat \
614 projects/checksrc.bat \
615 projects/Windows/VC10/curl-all.sln \
616 projects/Windows/VC10/lib/libcurl.sln \
617 projects/Windows/VC10/lib/libcurl.vcxproj.filters \
618 projects/Windows/VC10/src/curl.sln \
619 projects/Windows/VC10/src/curl.vcxproj.filters \
620 projects/Windows/VC11/curl-all.sln \
621 projects/Windows/VC11/lib/libcurl.sln \
622 projects/Windows/VC11/lib/libcurl.vcxproj.filters \
623 projects/Windows/VC11/src/curl.sln \
624 projects/Windows/VC11/src/curl.vcxproj.filters \
625 projects/Windows/VC12/curl-all.sln \
626 projects/Windows/VC12/lib/libcurl.sln \
627 projects/Windows/VC12/lib/libcurl.vcxproj.filters \
628 projects/Windows/VC12/src/curl.sln \
629 projects/Windows/VC12/src/curl.vcxproj.filters \
630 projects/Windows/VC14/curl-all.sln \
631 projects/Windows/VC14/lib/libcurl.sln \
632 projects/Windows/VC14/lib/libcurl.vcxproj.filters \
633 projects/Windows/VC14/src/curl.sln \
634 projects/Windows/VC14/src/curl.vcxproj.filters \
635 projects/Windows/VC14.10/curl-all.sln \
636 projects/Windows/VC14.10/lib/libcurl.sln \
637 projects/Windows/VC14.10/lib/libcurl.vcxproj.filters \
638 projects/Windows/VC14.10/src/curl.sln \
639 projects/Windows/VC14.10/src/curl.vcxproj.filters \
640 projects/Windows/VC14.30/curl-all.sln \
641 projects/Windows/VC14.30/lib/libcurl.sln \
642 projects/Windows/VC14.30/lib/libcurl.vcxproj.filters \
643 projects/Windows/VC14.30/src/curl.sln \
644 projects/Windows/VC14.30/src/curl.vcxproj.filters \
645 projects/generate.bat \
646 projects/wolfssl_options.h \
643647 projects/wolfssl_override.props
644648
645649 WINBUILD_DIST = winbuild/README.md winbuild/gen_resp_file.bat \
655659 plan9/src/mkfile.inc \
656660 plan9/src/mkfile
657661
658 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
659 RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework \
660 scripts/updatemanpages.pl $(CMAKE_DIST) \
661 $(VC_DIST) $(WINBUILD_DIST) $(PLAN9_DIST) \
662 lib/libcurl.vers.in buildconf.bat scripts/coverage.sh scripts/completion.pl
662 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
663 RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework $(CMAKE_DIST) \
664 $(VC_DIST) $(WINBUILD_DIST) $(PLAN9_DIST) lib/libcurl.vers.in buildconf.bat
663665
664666 CLEANFILES = $(VC10_LIBVCXPROJ) $(VC10_SRCVCXPROJ) $(VC11_LIBVCXPROJ) \
665667 $(VC11_SRCVCXPROJ) $(VC12_LIBVCXPROJ) $(VC12_SRCVCXPROJ) $(VC14_LIBVCXPROJ) \
666 $(VC14_SRCVCXPROJ) $(VC15_LIBVCXPROJ) $(VC15_SRCVCXPROJ) $(VC17_LIBVCXPROJ) \
667 $(VC17_SRCVCXPROJ)
668 $(VC14_SRCVCXPROJ) $(VC14_10_LIBVCXPROJ) $(VC14_10_SRCVCXPROJ) \
669 $(VC14_30_LIBVCXPROJ) $(VC14_30_SRCVCXPROJ)
668670
669671 bin_SCRIPTS = curl-config
670672 SUBDIRS = lib src
727729 vtls/x509asn1.h
728730
729731 LIB_VQUIC_CFILES = \
732 vquic/msh3.c \
730733 vquic/ngtcp2.c \
731734 vquic/quiche.c \
732735 vquic/vquic.c
733736
734737 LIB_VQUIC_HFILES = \
738 vquic/msh3.h \
735739 vquic/ngtcp2.h \
736740 vquic/quiche.h \
737741 vquic/vquic.h
792796 gopher.c \
793797 h2h3.c \
794798 hash.c \
799 headers.c \
795800 hmac.c \
796801 hostasyn.c \
797802 hostip.c \
855860 system_win32.c \
856861 telnet.c \
857862 tftp.c \
863 timediff.c \
858864 timeval.c \
859865 transfer.c \
860866 url.c \
921927 gopher.h \
922928 h2h3.h \
923929 hash.h \
930 headers.h \
924931 hostip.h \
925932 hsts.h \
926933 http.h \
974981 system_win32.h \
975982 telnet.h \
976983 tftp.h \
984 timediff.h \
977985 timeval.h \
978986 transfer.h \
979987 url.h \
9951003 # the official API, but we re-use the code here to avoid duplication.
9961004 CURLX_CFILES = \
9971005 ../lib/strtoofft.c \
1006 ../lib/timediff.c \
9981007 ../lib/nonblock.c \
9991008 ../lib/warnless.c \
10001009 ../lib/curl_ctype.c \
10051014 CURLX_HFILES = \
10061015 ../lib/curl_setup.h \
10071016 ../lib/strtoofft.h \
1017 ../lib/timediff.h \
10081018 ../lib/nonblock.h \
10091019 ../lib/warnless.h \
10101020 ../lib/curl_ctype.h \
17571767 (cd docs && $(MAKE) uninstall)
17581768 (cd docs/libcurl && $(MAKE) uninstall)
17591769
1760 ca-bundle: lib/mk-ca-bundle.pl
1770 ca-bundle: scripts/mk-ca-bundle.pl
17611771 @echo "generating a fresh ca-bundle.crt"
17621772 @perl $< -b -l -u lib/ca-bundle.crt
17631773
17781788 vc-ide: $(VC10_LIBVCXPROJ_DEPS) $(VC10_SRCVCXPROJ_DEPS) \
17791789 $(VC11_LIBVCXPROJ_DEPS) $(VC11_SRCVCXPROJ_DEPS) $(VC12_LIBVCXPROJ_DEPS) \
17801790 $(VC12_SRCVCXPROJ_DEPS) $(VC14_LIBVCXPROJ_DEPS) $(VC14_SRCVCXPROJ_DEPS) \
1781 $(VC15_LIBVCXPROJ_DEPS) $(VC15_SRCVCXPROJ_DEPS) $(VC17_LIBVCXPROJ_DEPS) \
1782 $(VC17_SRCVCXPROJ_DEPS)
1791 $(VC14_10_LIBVCXPROJ_DEPS) $(VC14_10_SRCVCXPROJ_DEPS) \
1792 $(VC14_30_LIBVCXPROJ_DEPS) $(VC14_30_SRCVCXPROJ_DEPS)
17831793 @(win32_lib_srcs='$(LIB_CFILES)'; \
17841794 win32_lib_hdrs='$(LIB_HFILES) config-win32.h'; \
17851795 win32_lib_rc='$(LIB_RCFILES)'; \
20362046 -v src_x_hdrs="$$sorted_src_x_hdrs" \
20372047 "$$awk_code" $(srcdir)/$(VC14_SRCTMPL) > $(VC14_SRCVCXPROJ) || { exit 1; }; \
20382048 \
2039 echo "generating '$(VC15_LIBVCXPROJ)'"; \
2049 echo "generating '$(VC14_10_LIBVCXPROJ)'"; \
20402050 awk -v proj_type=vcxproj \
20412051 -v lib_srcs="$$sorted_lib_srcs" \
20422052 -v lib_hdrs="$$sorted_lib_hdrs" \
20492059 -v lib_vssh_hdrs="$$sorted_lib_vssh_hdrs" \
20502060 -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
20512061 -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
2052 "$$awk_code" $(srcdir)/$(VC15_LIBTMPL) > $(VC15_LIBVCXPROJ) || { exit 1; }; \
2062 "$$awk_code" $(srcdir)/$(VC14_10_LIBTMPL) > $(VC14_10_LIBVCXPROJ) || { exit 1; }; \
20532063 \
2054 echo "generating '$(VC15_SRCVCXPROJ)'"; \
2064 echo "generating '$(VC14_10_SRCVCXPROJ)'"; \
20552065 awk -v proj_type=vcxproj \
20562066 -v src_srcs="$$sorted_src_srcs" \
20572067 -v src_hdrs="$$sorted_src_hdrs" \
20582068 -v src_rc="$$win32_src_rc" \
20592069 -v src_x_srcs="$$sorted_src_x_srcs" \
20602070 -v src_x_hdrs="$$sorted_src_x_hdrs" \
2061 "$$awk_code" $(srcdir)/$(VC15_SRCTMPL) > $(VC15_SRCVCXPROJ) || { exit 1; }; \
2071 "$$awk_code" $(srcdir)/$(VC14_10_SRCTMPL) > $(VC14_10_SRCVCXPROJ) || { exit 1; }; \
20622072 \
2063 echo "generating '$(VC17_LIBVCXPROJ)'"; \
2073 echo "generating '$(VC14_30_LIBVCXPROJ)'"; \
20642074 awk -v proj_type=vcxproj \
20652075 -v lib_srcs="$$sorted_lib_srcs" \
20662076 -v lib_hdrs="$$sorted_lib_hdrs" \
20732083 -v lib_vssh_hdrs="$$sorted_lib_vssh_hdrs" \
20742084 -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
20752085 -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
2076 "$$awk_code" $(srcdir)/$(VC17_LIBTMPL) > $(VC17_LIBVCXPROJ) || { exit 1; }; \
2086 "$$awk_code" $(srcdir)/$(VC14_30_LIBTMPL) > $(VC14_30_LIBVCXPROJ) || { exit 1; }; \
20772087 \
2078 echo "generating '$(VC17_SRCVCXPROJ)'"; \
2088 echo "generating '$(VC14_30_SRCVCXPROJ)'"; \
20792089 awk -v proj_type=vcxproj \
20802090 -v src_srcs="$$sorted_src_srcs" \
20812091 -v src_hdrs="$$sorted_src_hdrs" \
20822092 -v src_rc="$$win32_src_rc" \
20832093 -v src_x_srcs="$$sorted_src_x_srcs" \
20842094 -v src_x_hdrs="$$sorted_src_x_hdrs" \
2085 "$$awk_code" $(srcdir)/$(VC17_SRCTMPL) > $(VC17_SRCVCXPROJ) || { exit 1; };)
2095 "$$awk_code" $(srcdir)/$(VC14_30_SRCTMPL) > $(VC14_30_SRCVCXPROJ) || { exit 1; };)
20862096
20872097 tidy:
20882098 (cd src && $(MAKE) tidy)
0 curl and libcurl 7.82.0
1
2 Public curl releases: 206
3 Command line options: 245
0 curl and libcurl 7.83.0
1
2 Public curl releases: 207
3 Command line options: 247
44 curl_easy_setopt() options: 295
5 Public functions in libcurl: 86
6 Contributors: 2597
5 Public functions in libcurl: 88
6 Contributors: 2625
77
88 This release includes the following changes:
99
10 o curl: add --json [67]
11 o mesalink: remove support [23]
10 o curl: add %header{name} experimental support in -w handling
11 o curl: add %{header_json} experimental support in -w handling
12 o curl: add --no-clobber [28]
13 o curl: add --remove-on-error [11]
14 o header api: add curl_easy_header and curl_easy_nextheader [56]
15 o msh3: add support for QUIC and HTTP/3 using msh3 [84]
1216
1317 This release includes the following bugfixes:
1418
15 o appveyor: update images from VS 2019 to 2022
16 o appveyor: use VS 2017 image for the autotools builds
17 o azure-pipelines: add a build on Windows with libssh [154]
18 o bearssl: fix connect error on expired cert and no verify [132]
19 o bearssl: fix EXC_BAD_ACCESS on incomplete CA cert [131]
20 o bearssl: fix session resumption (session id) [133]
21 o build: enable -Warith-conversion
22 o build: fix -Wenum-conversion handling
23 o build: fix ngtcp2 crypto library detection [63]
24 o checkprefix: remove strlen calls [128]
25 o checksrc: fix typo in comment [34]
26 o CI: move 'distcheck' job from zuul to azure pipelines [60]
27 o CI: move scan-build job from Zuul to Azure Pipelines [59]
28 o CI: move the NSS job from zuul to GHA [84]
29 o ci: move the OpenSSL + c-ares job from Zuul to Circle CI [75]
30 o CI: move the rustls CI job to GHA from Zuul [8]
31 o CI: move two jobs from Zuul to Circle CI [73]
32 o CI: test building wolfssl with --enable-opensslextra [42]
33 o CI: workflows/wolfssl: install impacket [47]
34 o circleci: add a job using libssh [121]
35 o cirlceci: also run a c-ares job on arm with debug enabled [74]
36 o cmake: fix iOS CMake project generation error [13]
37 o cmdline-opts/gen.pl: fix option matching to improve references [50]
38 o config.d: Clarify _curlrc filename is still valid on Windows [95]
39 o configure.ac: use user-specified gssapi dir when using pkg-config [136]
40 o configure: change output for cross-compiled alt-svc support [140]
41 o configure: fix '--enable-code-coverage' typo [110]
42 o configure: remove support for "embedded ares" [82]
43 o configure: requires --with-nss-deprecated to build with NSS [114]
44 o configure: set CURL_LIBRARY_PATH for nghttp2 [58]
45 o configure: support specification of a nghttp2 library path [101]
46 o configure: use correct CFLAGS for threaded resolver with xlC on AIX [54]
47 o curl tool: erase some more sensitive command line arguments [22]
48 o curl-functions.m4: fix LIBRARY_PATH adjustment to avoid eval [5]
49 o curl-functions.m4: revert DYLD_LIBRARY_PATH tricks in CURL_RUN_IFELSE [9]
50 o curl-openssl: fix SRP check for OpenSSL 3.0 [86]
51 o curl-openssl: remove the OpenSSL headers and library versions check [35]
52 o curl.h: fix typo [129]
53 o curl: remove "separators" (when using globbed URLs) [32]
54 o curl_getdate.3: remove pointless .PP line [68]
55 o curl_multi_socket.3: remove callback and typical usage descriptions [7]
56 o curl_url_set.3: mention when CURLU_ALLOW_SPACE was added
57 o CURLMOPT_TIMERFUNCTION/DATA.3: fix the examples [27]
58 o CURLOPT_PROGRESSFUNCTION.3: fix example struct assignment [147]
59 o CURLOPT_RESOLVE.3: change example port to 443
60 o CURLOPT_XFERINFOFUNCTION.3: fix example struct assignment [153]
61 o CURLOPT_XFERINFOFUNCTION.3: fix typo in example [81]
62 o CURLSHOPT_LOCKFUNC.3: fix typo "relased" -> "released" [71]
63 o des: fix compile break for OpenSSL without DES [141]
64 o docs/cmdline-opts: add "mutexed" options for more http versions [25]
65 o docs/DEPRECATE: remove NPN support in August 2022 [64]
66 o docs: capitalize the name 'Netscape' [77]
67 o docs: document HTTP/2 not insisting on TLS 1.2 [49]
68 o docs: fix mandoc -T lint formatting complaints [2]
69 o docs: update IETF links to use datatracker [41]
70 o examples/curlx: support building with OpenSSL 1.1.0+ [148]
71 o examples/multi-app.c: call curl_multi_remove_handle as well [19]
72 o formdata: avoid size_t => long typecast overflows [37]
73 o ftp: provide error message for control bytes in path [66]
74 o gen.pl: terminate "example" sections better [4]
75 o gha: add a macOS CI job with libssh [142]
76 o gskit: Convert to using Curl_poll [111]
77 o gskit: Fix errors from Curl_strerror refactor [113]
78 o gskit: Fix initialization of Curl_ssl_gskit struct [112]
79 o h2/h3: allow CURLOPT_HTTPHEADER change ":scheme" [88]
80 o hostcheck: fixed to not touch used input strings [38]
81 o hostcheck: reduce strlen calls on chained certificates [92]
82 o hostip: avoid unused parameter error in Curl_resolv_check [144]
83 o http2: move two infof calls to debug-h2-only [145]
84 o http: make Curl_compareheader() take string length arguments too [87]
85 o if2ip: make Curl_ipv6_scope a blank macro when IPv6-disabled [104]
86 o KNOWN_BUGS: fix typo "libpsl"
87 o ldap: return CURLE_URL_MALFORMAT for bad URL [24]
88 o lib: remove support for CURL_DOES_CONVERSIONS [96]
89 o libssh2: don't typecast socket to int for libssh2_session_handshake [151]
90 o libssh: fix include files and defines use for Windows builds [156]
91 o Makefile.am: Generate VS 2022 projects
92 o maketgz: return error if 'make dist' fails [79]
93 o mbedtls: enable use of mbedtls without CRL support [57]
94 o mbedtls: enable use of mbedtls without filesystem functions support [100]
95 o mbedtls: fix CURLOPT_SSLCERT_BLOB (again)
96 o mbedtls: fix ssl_init error with mbedTLS 3.1.0+ [12]
97 o mbedtls: remove #include <mbedtls/certs.h> [56]
98 o mbedtls: return CURLcode result instead of a mbedtls error code [1]
99 o md5: check md5_init_func return value
100 o mime: use a define instead of the magic number 24 [89]
101 o misc: allow curl to build with wolfssl --enable-opensslextra [43]
102 o misc: remove BeOS code and references [30]
103 o misc: remove the final watcom references [29]
104 o misc: remove unused data when IPv6 is not supported [80]
105 o mqtt: free 'sendleftovers' in disconnect [115]
106 o mqtt: free any send leftover data when done [36]
107 o multi: allow user callbacks to call curl_multi_assign [126]
108 o multi: grammar fix in comment [69]
109 o multi: remember connection_id before returning connection to pool [76]
110 o multi: set in_callback for multi interface callbacks [28]
111 o netware: remove support [72]
112 o next.d. remove .fi/.nf as they are handled by gen.pl [3]
113 o ngtcp2: adapt to changed end of headers callback proto [39]
114 o ngtcp2: fix declaration of ‘result’ shadows a previous local [14]
115 o ngtcp2: Reset dynbuf when it is fully drained [143]
116 o nss: handshake callback during shutdown has no conn->bundle [55]
117 o ntlm: remove unused feature defines [117]
118 o openldap: fix compiler warning when built without SSL support [70]
119 o openldap: implement SASL authentication [16]
120 o openldap: pass string length arguments to client_write() [116]
121 o openssl.h: avoid including OpenSSL headers here [15]
122 o openssl: check if sessionid flag is enabled before retrieving session [125]
123 o openssl: check SSL_get_ex_data to prevent potential NULL dereference [40]
124 o openssl: check the return value of BIO_new_mem_buf() [18]
125 o openssl: fix `ctx_option_t` for OpenSSL v3+
126 o openssl: fix build for version < 1.1.0 [134]
127 o openssl: return error if TLS 1.3 is requested when not supported [45]
128 o os400: Add function wrapper for system command [138]
129 o os400: Add link to QADRT devkit to README.OS400 [137]
130 o os400: Default build to target current release [139]
131 o OS400: fix typos in rpg include file [149]
132 o projects: add support for Visual Studio 17 (2022) [124]
133 o projects: fix Visual Studio wolfSSL configurations
134 o projects: remove support for MSVC before VC10 (Visual Studio 2010) [123]
135 o quiche: after leaving h3_recving state, poll again [108]
136 o quiche: change qlog file extension to `.sqlog` [44]
137 o quiche: fix upload for bigger content-length [146]
138 o quiche: handle stream reset [83]
139 o quiche: remove two leftover debug infof() outputs
140 o quiche: verify the server cert on connect [33]
141 o quiche: when *recv_body() returns data, drain it before polling again [109]
142 o README.md: fix links [118]
143 o remote-header-name.d: clarify [10]
144 o runtests.pl: disable debuginfod [51]
145 o runtests.pl: properly print the test if it contains binary zeros
146 o runtests.pl: support the nonewline attribute for the data part [21]
147 o runtests.pl: tolerate test directories without Makefile.inc [98]
148 o runtests: allow client/file to specify multiple directories
149 o runtests: make 'rustls' a testable feature
150 o runtests: make 'wolfssl' a testable feature [6]
151 o runtests: set 'oldlibssh' for libssh versions before 0.9.5 [122]
152 o rustls: add CURLOPT_CAINFO_BLOB support [26]
153 o schannel: move the algIds array out of schannel.h [135]
154 o scripts/cijobs.pl: output data about all currect CI jobs [78]
155 o scripts/completion.pl: improve zsh completion [46]
156 o scripts/copyright.pl: support many provided file names on the cmdline
157 o scripts/delta: check the file delta for current branch
158 o sectransp: mark a 3DES cipher as weak [130]
159 o setopt: do bounds-check before strdup [99]
160 o setopt: fix the TLSAUTH #ifdefs for proxy-disabled builds [53]
161 o sha256: Fix minimum OpenSSL version [102]
162 o smb: pass socket for writing and reading data instead of FIRSTSOCKET [90]
163 o ssl: reduce allocated space for ssl backend when FTP is disabled [127]
164 o test3021: disable all msys2 path transformation
165 o test374: gif data without new line at the end [20]
166 o tests/disable-scan.pl: properly detect multiple symbols per line [94]
167 o tests/unit/Makefile.am: add NSS_LIBS to build with NSS fine [85]
168 o tool_findfile: check ~/.config/curlrc too [17]
169 o tool_getparam: DNS options that need c-ares now fail without it [31]
170 o TPF: drop support [97]
171 o unit1610: init SSL library before calling SHA256 functions [152]
172 o url: exclude zonefrom_url when no ipv6 is available [103]
173 o url: given a user in the URL, find pwd for that user in netrc [11]
174 o url: keep trailing dot in host name [62]
175 o url: make Curl_disconnect return void [48]
176 o urlapi: handle "redirects" smarter [119]
177 o urldata: CONN_IS_PROXIED replaces bits.proxy when proxy can be disabled [52]
178 o urldata: remove conn->bits.user_passwd [105]
179 o version_win32: fix warning for `CURL_WINDOWS_APP` [93]
180 o vtls: fix socket check conditions [150]
181 o vtls: pass on the right SNI name [61]
182 o vxworks: drop support [65]
183 o winbuild: add parameter WITH_SSH [120]
184 o wolfssl: return CURLE_AGAIN for the SSL_ERROR_NONE case [106]
185 o wolfssl: when SSL_read() returns zero, check the error [107]
186 o write-out.d: Fix num_headers formatting
187 o x509asn1: toggle off functions not needed for diff tls backends [91]
19 o appveyor: add Cygwin build [77]
20 o appveyor: only add MSYS2 to PATH where required [78]
21 o BearSSL: add CURLOPT_SSL_CIPHER_LIST support [27]
22 o BearSSL: add CURLOPT_SSL_CTX_FUNCTION support [26]
23 o BINDINGS.md: add Hollywood binding [34]
24 o CI: Do not use buildconf. Instead, just use: autoreconf -fi [42]
25 o CI: install Python package impacket to run SMB test 1451 [5]
26 o configure.ac: move -pthread CFLAGS setting back where it used to be [14]
27 o configure: bump the copyright year range int the generated output
28 o conncache: include the zone id in the "bundle" hashkey [112]
29 o connecache: remove duplicate connc->closure_handle check [90]
30 o connect: make Curl_getconnectinfo work with conn cache from share handle [22]
31 o connect: use TCP_KEEPALIVE only if TCP_KEEPIDLE is not defined [6]
32 o cookie.d: clarify when cookies are sent
33 o cookies: improve errorhandling for reading cookiefile [123]
34 o curl/system.h: update ifdef condition for MCST-LCC compiler [4]
35 o curl: error out if -T and -d are used for the same URL [99]
36 o curl: error out when options need features not present in libcurl [18]
37 o curl: escape '?' in generated --libcurl code [117]
38 o curl: fix segmentation fault for empty output file names. [60]
39 o curl_easy_header: fix typos in documentation [74]
40 o CURLINFO_PRIMARY_PORT.3: clarify which port this is [126]
41 o CURLOPT*TLSAUTH.3: they only work with OpenSSL or GnuTLS [105]
42 o CURLOPT_DISALLOW_USERNAME_IN_URL.3: use uppercase URL
43 o CURLOPT_PREQUOTE.3: only works for FTP file transfers, not dirs [79]
44 o CURLOPT_PROGRESSFUNCTION.3: fix typo in example [63]
45 o CURLOPT_UNRESTRICTED_AUTH.3: extended explanation [127]
46 o CURLSHOPT_UNLOCKFUNC.3: fix the callback prototype [9]
47 o docs/HYPER.md: updated to reflect current hyper build needs
48 o docs/opts: Mention Schannel client cert type is P12 [50]
49 o docs: Fix missing semicolon in example code [102]
50 o docs: lots of minor language polish [51]
51 o English: use American spelling consistently [95]
52 o fail.d: tweak the description [101]
53 o firefox-db2pem.sh: make the shell script safer [47]
54 o ftp: fix error message for partial file upload [61]
55 o gen.pl: change wording for mutexed options [98]
56 o GHA: add openssl3 jobs moved over from zuul [88]
57 o GHA: build hyper with nightly rustc [7]
58 o GHA: move bearssl jobs over from zuul [85]
59 o gha: move the event-based test over from Zuul [59]
60 o gtls: fix build for disabled TLS-SRP [48]
61 o http2: handle DONE called for the paused stream [69]
62 o http2: RST the stream if we stop it on our own will [67]
63 o http: avoid auth/cookie on redirects same host diff port [110]
64 o http: close the stream (not connection) on time condition abort [68]
65 o http: reject header contents with nul bytes [41]
66 o http: return error on colon-less HTTP headers [31]
67 o http: streamclose "already downloaded" [57]
68 o hyper: fix status_line() return code [13]
69 o hyper: fix tests 580 and 581 for hyper [107]
70 o hyper: no h2c support [33]
71 o infof: consistent capitalization of warning messages [103]
72 o ipv4/6.d: clarify that they are about using IP addresses [3]
73 o json.d: fix typo (overriden -> overridden) [24]
74 o keepalive-time.d: It takes many probes to detect brokenness [29]
75 o lib/warnless.[ch]: only check for WIN32 and ignore _WIN32 [45]
76 o lib670: avoid double check result [71]
77 o lib: #ifdef on USE_HTTP2 better [65]
78 o lib: fix some misuse of curlx_convert_wchar_to_UTF8 [38]
79 o lib: remove exclamation marks [100]
80 o libssh2: compare sha256 strings case sensitively [114]
81 o libssh2: make the md5 comparison fail if wrong length [111]
82 o libssh: fix build with old libssh versions [12]
83 o libssh: fix double close [124]
84 o libssh: Improve fix for missing SSH_S_ stat macros [10]
85 o libssh: unstick SFTP transfers when done event-based [58]
86 o macos: set .plist version in autoconf [122]
87 o mbedtls: remove 'protocols' array from backend when ALPN is not used [66]
88 o mbedtls: remove server_fd from backend [91]
89 o mk-ca-bundle.pl: Use stricter logic to process the certificates [39]
90 o mk-ca-bundle.vbs: delete this script in favor of mk-ca-bundle.pl [8]
91 o mlc_config.json: add file to ignore known troublesome URLs [35]
92 o mqtt: better handling of TCP disconnect mid-message [55]
93 o ngtcp2: add client certificate authentication for OpenSSL [15]
94 o ngtcp2: avoid busy loop in low CWND situation [119]
95 o ngtcp2: deal with sub-millisecond timeout [116]
96 o ngtcp2: disconnect the QUIC connection proper [19]
97 o ngtcp2: enlarge H3_SEND_SIZE [82]
98 o ngtcp2: fix HTTP/3 upload stall and avoid busy loop [83]
99 o ngtcp2: fix memory leak [80]
100 o ngtcp2: fix QUIC_IDLE_TIMEOUT [94]
101 o ngtcp2: make curl 1ms faster [93]
102 o ngtcp2: remove remote_addr which is not used in a meaningful way [81]
103 o ngtcp2: update to work after recent ngtcp2 updates [62]
104 o ngtcp2: use token when detecting :status header field [92]
105 o nonblock: restore setsockopt method to curlx_nonblock [20]
106 o openssl: check SSL_get_peer_cert_chain return value [1]
107 o openssl: enable CURLOPT_SSL_EC_CURVES with BoringSSL [23]
108 o openssl: fix CN check error code [21]
109 o options: remove mistaken space before paren in prototype
110 o perl: removed a double semicolon at end of line [64]
111 o pop3/smtp: return *WEIRD_SERVER_REPLY when not understood [43]
112 o projects/README: converted to markdown [76]
113 o projects: Update VC version names for VS2017, VS2022 [52]
114 o rtsp: don't let CSeq error override earlier errors [37]
115 o runtests: add 'bearssl' as testable feature [87]
116 o runtests: make 'oldlibssh' be before 0.9.4 [2]
117 o schannel: remove dead code that will never run [89]
118 o scripts/copyright.pl: ignore the new mlc_config.json file
119 o scripts: move three scripts from lib/ to scripts/ [44]
120 o test1135: sync with recent API updates [54]
121 o test1459: disable for oldlibssh [53]
122 o test375: fix line endings on Windows [40]
123 o test386: Fix an incorrect test markup tag
124 o test718: edited slightly to return better HTTP [32]
125 o tests/server/util.h: align WIN32 condition with util.c [46]
126 o tests: refactor server/socksd.c to support --unix-socket [96]
127 o timediff.[ch]: add curlx helper functions for timeval conversions [86]
128 o tls: make mbedtls and NSS check for h2, not nghttp2 [70]
129 o tool and tests: force flush of all buffers at end of program [17]
130 o tool_cb_hdr: Turn the Location: into a terminal hyperlink [30]
131 o tool_getparam: error out on missing -K file [115]
132 o tool_listhelp.c: uppercase URL
133 o tool_operate: fix a scan-build warning [16]
134 o tool_paramhlp: use feof(3) to identify EOF correctly when using fread(3) [97]
135 o transfer: redirects to other protocols or ports clear auth [109]
136 o unit1620: call global_init before calling Curl_open [125]
137 o url: check sasl additional parameters for connection reuse. [113]
138 o vtls: provide a unified APLN-disagree string for all backends [75]
139 o vtls: use a backend standard message for "ALPN: offers %s" [73]
140 o vtls: use a generic "ALPN, server accepted" message [72]
141 o winbuild/README.md: fixup dead link [36]
142 o winbuild: Add a Visual Studio example to the README [49]
143 o wolfssl: fix compiler error without IPv6 [25]
188144
189145 This release includes the following known bugs:
190146
193149 This release would not have looked like this without help, code, reports and
194150 advice from friends like these:
195151
196 1337vt on github, Alejandro R. Sedeño, Alessandro Ghedini, Antoine Pietri,
197 Bernhard Walle, Bjarni Ingi Gislason, Cameron Will, Charles Cazabon,
198 coralw on github, Dan Fandrich, Daniel Stenberg, Davide Cassioli,
199 Eric Musser, Fabian Keil, Fabian Yamaguchi, Farzin on github, Filip Lundgren,
200 gaoxingwang on github, Harry Sarson, Henrik Holst, Ikko Ashimine,
201 illusory-dream on github, Jan Ehrhardt, Jan-Piet Mens, Jan Venekamp,
202 Jean-Philippe Menil, jhoyla on github, Jim Beveridge, Joel Depooter,
203 John H. Ayad, jonny112 on github, Kantanat Wannapaka, Kevin Adler,
204 Kushal Das, Leah Neukirchen, Lucas Pardue, luminixinc on github,
205 Manfred Schwarb, Marcel Raad, Melroy van den Berg, Michael Kaufmann,
206 Michael Wallner, Michał Antoniak, Neal McBurnett, neutric on github,
207 Niels Martignène, Patrick Monnerat, pheiduck on github, Ray Satiro,
208 Rob Boeckermann, Ryan Schmidt, Samuel Henrique, Sandro Jaeckel,
209 Satadru Pramanik, Sebastian Sterk, siddharthchhabrap on github, Stav Nir,
210 Stefan Eissing, Stephen Boost, Stephen M. Coakley, Stewart Gebbie,
211 Tatsuhiro Tsujikawa, updatede on github, Viktor Szakats, vl409 on github,
212 Xiaoke Wang, 梦终无痕
213 (67 contributors)
152 Alejandro R. Sedeño, Andreas Falkenhahn, Andrey Alifanov,
153 anon00000000 on github, Balakrishnan Balasubramanian, Boris Verkhovskiy,
154 Brad Spencer, Christian Schmitz, Christopher Degawa, Colin Leroy,
155 Dan Fandrich, Daniel Gustafsson, Daniel Stenberg, Daniel Valenzuela,
156 Don J Olmstead, Emanuele Torre, Evangelos Foutras, Francisco Olarte,
157 Frank Meier, Gisle Vanem, Harry Sintonen, Ian Blanes, Jan Venekamp,
158 Jay Dommaschk, Jean-Philippe Menil, Jenny Heino, Joseph Chen,
159 jurisuk on github, Kristoffer Gleditsch, Kushal Das, Leandro Coutinho,
160 Liam Warfield, Marcel Raad, Marc Hörsken, Matteo Baccan,
161 Median Median Stride, mehatzri on github, Michael Kaufmann, Michał Antoniak,
162 Nick Banks, Nick Coghlan, Nick Zitzmann, Patrick Monnerat, Paul Howarth,
163 Paweł Kowalski, Peter Korsgaard, pheiduck on github, r-a-sattarov on github,
164 Ray Satiro, Rianov Viacheslav, Robert Brose, Robert Charles Muir,
165 Robin A. Meade, Samuel Henrique, Sascha Zengler, Taras Kushnir,
166 Tatsuhiro Tsujikawa, Timothe Litt, Viktor Szakats, HexTheDragon
167 (60 contributors)
214168
215169 References to bug reports and discussions on issues:
216170
217 [1] = https://curl.se/bug/?i=8266
218 [2] = https://curl.se/bug/?i=8228
219 [3] = https://curl.se/bug/?i=8228
220 [4] = https://curl.se/bug/?i=8228
221 [5] = https://curl.se/bug/?i=8229
222 [6] = https://curl.se/bug/?i=8252
223 [7] = https://curl.se/bug/?i=8262
224 [8] = https://curl.se/bug/?i=8251
225 [9] = https://curl.se/bug/?i=8229
226 [10] = https://curl.se/bug/?i=8249
227 [11] = https://curl.se/bug/?i=8241
228 [12] = https://curl.se/bug/?i=8238
229 [13] = https://curl.se/bug/?i=8244
230 [14] = https://curl.se/bug/?i=8245
231 [15] = https://curl.se/bug/?i=8240
232 [16] = https://curl.se/bug/?i=8152
233 [17] = https://curl.se/bug/?i=8208
234 [18] = https://curl.se/bug/?i=8233
235 [19] = https://curl.se/bug/?i=8234
236 [20] = https://curl.se/bug/?i=8239
237 [21] = https://curl.se/bug/?i=8239
238 [22] = https://curl.se/bug/?i=7964
239 [23] = https://curl.se/bug/?i=8188
240 [24] = https://curl.se/bug/?i=8170
241 [25] = https://curl.se/bug/?i=8254
242 [26] = https://curl.se/bug/?i=8255
243 [27] = https://curl.se/bug/?i=8286
244 [28] = https://curl.se/bug/?i=8282
245 [29] = https://curl.se/bug/?i=8287
246 [30] = https://curl.se/bug/?i=8288
247 [31] = https://curl.se/bug/?i=8285
248 [32] = https://curl.se/bug/?i=8278
249 [33] = https://curl.se/bug/?i=8173
250 [34] = https://curl.se/bug/?i=8281
251 [35] = https://curl.se/bug/?i=8279
252 [36] = https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=43515
253 [37] = https://hackerone.com/reports/1444539
254 [38] = https://curl.se/bug/?i=8321
255 [39] = https://curl.se/bug/?i=8322
256 [40] = https://curl.se/bug/?i=8268
257 [41] = https://curl.se/bug/?i=8317
258 [42] = https://curl.se/bug/?i=8315
259 [43] = https://curl.se/bug/?i=8292
260 [44] = https://curl.se/bug/?i=8316
261 [45] = https://curl.se/bug/?i=8309
262 [46] = https://curl.se/bug/?i=8363
263 [47] = https://curl.se/bug/?i=8307
264 [48] = https://curl.se/bug/?i=8303
265 [49] = https://curl.se/bug/?i=8235
266 [50] = https://curl.se/bug/?i=8299
267 [51] = https://curl.se/bug/?i=8291
268 [52] = https://curl.se/bug/?i=8350
269 [53] = https://curl.se/bug/?i=8350
270 [54] = https://curl.se/bug/?i=8276
271 [55] = https://curl.se/bug/?i=8341
272 [56] = https://curl.se/bug/?i=8343
273 [57] = https://curl.se/bug/?i=8344
274 [58] = https://curl.se/bug/?i=8340
275 [59] = https://curl.se/bug/?i=8338
276 [60] = https://curl.se/bug/?i=8334
277 [61] = https://curl.se/bug/?i=8320
278 [62] = https://curl.se/bug/?i=8290
279 [63] = https://curl.se/bug/?i=8372
280 [64] = https://curl.se/bug/?i=8458
281 [65] = https://curl.se/bug/?i=8362
282 [66] = https://curl.se/bug/?i=8460
283 [67] = https://curl.se/bug/?i=8314
284 [68] = https://curl.se/bug/?i=8365
285 [69] = https://curl.se/bug/?i=8368
286 [70] = https://curl.se/bug/?i=8367
287 [71] = https://curl.se/bug/?i=8364
288 [72] = https://curl.se/bug/?i=8358
289 [73] = https://curl.se/bug/?i=8359
290 [74] = https://curl.se/bug/?i=8357
291 [75] = https://curl.se/bug/?i=8357
292 [76] = https://hackerone.com/reports/1463013
293 [77] = https://curl.se/bug/?i=8354
294 [78] = https://curl.se/bug/?i=8408
295 [79] = https://curl.se/mail/lib-2022-02/0070.html
296 [80] = https://curl.se/bug/?i=8430
297 [81] = https://curl.se/bug/?i=8487
298 [82] = https://curl.se/bug/?i=8397
299 [83] = https://curl.se/bug/?i=8437
300 [84] = https://curl.se/bug/?i=8396
301 [85] = https://curl.se/bug/?i=8396
302 [86] = https://curl.se/bug/?i=8394
303 [87] = https://curl.se/bug/?i=8391
304 [88] = https://curl.se/bug/?i=8381
305 [89] = https://curl.se/bug/?i=8441
306 [90] = https://curl.se/bug/?i=8383
307 [91] = https://curl.se/bug/?i=8386
308 [92] = https://curl.se/bug/?i=8428
309 [93] = https://curl.se/bug/?i=8385
310 [94] = https://curl.se/bug/?i=8384
311 [95] = https://curl.se/bug/?i=8382
312 [96] = https://curl.se/bug/?i=8378
313 [97] = https://curl.se/bug/?i=8378
314 [98] = https://curl.se/bug/?i=8379
315 [99] = https://curl.se/bug/?i=8377
316 [100] = https://curl.se/bug/?i=8376
317 [101] = https://curl.se/bug/?i=8375
318 [102] = https://curl.se/bug/?i=8464
319 [103] = https://curl.se/bug/?i=8439
320 [104] = https://curl.se/bug/?i=8439
321 [105] = https://curl.se/bug/?i=8449
322 [106] = https://curl.se/bug/?i=8431
323 [107] = https://curl.se/bug/?i=8431
324 [108] = https://curl.se/bug/?i=8436
325 [109] = https://curl.se/bug/?i=8429
326 [110] = https://curl.se/bug/?i=8425
327 [111] = https://curl.se/bug/?i=8454
328 [112] = https://curl.se/bug/?i=8454
329 [113] = https://curl.se/bug/?i=8454
330 [114] = https://curl.se/bug/?i=8395
331 [115] = https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=43646
332 [116] = https://curl.se/bug/?i=8404
333 [117] = https://curl.se/bug/?i=8453
334 [118] = https://curl.se/bug/?i=8448
335 [119] = https://curl.se/bug/?i=8450
336 [120] = https://curl.se/bug/?i=8514
337 [121] = https://curl.se/bug/?i=8444
338 [122] = https://curl.se/bug/?i=8444
339 [123] = https://curl.se/bug/?i=8442
340 [124] = https://curl.se/bug/?i=8438
341 [125] = https://curl.se/bug/?i=8472
342 [126] = https://curl.se/bug/?i=8480
343 [127] = https://curl.se/bug/?i=8471
344 [128] = https://curl.se/bug/?i=8481
345 [129] = https://curl.se/bug/?i=8482
346 [130] = https://curl.se/bug/?i=8479
347 [131] = https://curl.se/bug/?i=8476
348 [132] = https://curl.se/bug/?i=8475
349 [133] = https://curl.se/bug/?i=8474
350 [134] = https://curl.se/bug/?i=8470
351 [135] = https://curl.se/bug/?i=8469
352 [136] = https://curl.se/bug/?i=8289
353 [137] = https://curl.se/bug/?i=8455
354 [138] = https://curl.se/bug/?i=8455
355 [139] = https://curl.se/bug/?i=8455
356 [140] = https://curl.se/bug/?i=8512
357 [141] = https://curl.se/bug/?i=8459
358 [142] = https://curl.se/bug/?i=8513
359 [143] = https://curl.se/bug/?i=7351
360 [144] = https://curl.se/bug/?i=8505
361 [145] = https://curl.se/bug/?i=8502
362 [146] = https://curl.se/bug/?i=8421
363 [147] = https://curl.se/bug/?i=8500
364 [148] = https://curl.se/bug/?i=8529
365 [149] = https://curl.se/bug/?i=8494
366 [150] = https://curl.se/bug/?i=8493
367 [151] = https://curl.se/bug/?i=8492
368 [152] = https://curl.se/bug/?i=8538
369 [153] = https://curl.se/bug/?i=8519
370 [154] = https://curl.se/bug/?i=8511
371 [156] = https://curl.se/mail/lib-2022-02/0131.html
171 [1] = https://curl.se/bug/?i=8579
172 [2] = https://curl.se/bug/?i=8548
173 [3] = https://curl.se/bug/?i=8543
174 [4] = https://curl.se/bug/?i=8546
175 [5] = https://curl.se/bug/?i=8544
176 [6] = https://curl.se/bug/?i=8539
177 [7] = https://curl.se/bug/?i=8545
178 [8] = https://curl.se/bug/?i=8412
179 [9] = https://curl.se/bug/?i=8573
180 [10] = https://curl.se/bug/?i=8588
181 [11] = https://curl.se/bug/?i=8503
182 [12] = https://curl.se/bug/?i=8574
183 [13] = https://curl.se/bug/?i=8572
184 [14] = https://curl.se/bug/?i=8541
185 [15] = https://curl.se/bug/?i=8522
186 [16] = https://curl.se/bug/?i=8565
187 [17] = https://curl.se/bug/?i=8516
188 [18] = https://curl.se/bug/?i=8565
189 [19] = https://curl.se/bug/?i=8534
190 [20] = https://curl.se/bug/?i=8562
191 [21] = https://curl.se/bug/?i=8559
192 [22] = https://curl.se/bug/?i=8524
193 [23] = https://curl.se/bug/?i=8553
194 [24] = https://curl.se/bug/?i=8557
195 [25] = https://curl.se/bug/?i=8550
196 [26] = https://curl.se/bug/?i=8478
197 [27] = https://curl.se/bug/?i=8477
198 [28] = https://curl.se/bug/?i=7708
199 [29] = https://curl.se/bug/?i=8570
200 [30] = https://curl.se/bug/?i=7963
201 [31] = https://curl.se/bug/?i=8610
202 [32] = https://github.com/hyperium/hyper/issues/2783
203 [33] = https://curl.se/bug/?i=8605
204 [34] = https://curl.se/bug/?i=8609
205 [35] = https://curl.se/bug/?i=8597
206 [36] = https://curl.se/bug/?i=8597
207 [37] = https://curl.se/bug/?i=8525
208 [38] = https://curl.se/bug/?i=8521
209 [39] = https://curl.se/bug/?i=8411
210 [40] = https://curl.se/bug/?i=8599
211 [41] = https://curl.se/bug/?i=8601
212 [42] = https://curl.se/bug/?i=8596
213 [43] = https://curl.se/bug/?i=8506
214 [44] = https://curl.se/bug/?i=8625
215 [45] = https://curl.se/bug/?i=8594
216 [46] = https://curl.se/bug/?i=8594
217 [47] = https://curl.se/bug/?i=8616
218 [48] = https://curl.se/mail/lib-2022-03/0046.html
219 [49] = https://curl.se/bug/?i=8592
220 [50] = https://curl.se/bug/?i=8587
221 [51] = https://curl.se/bug/?i=8646
222 [52] = https://curl.se/bug/?i=8447
223 [53] = https://curl.se/bug/?i=8622
224 [54] = https://curl.se/bug/?i=8620
225 [55] = https://hackerone.com/reports/1521610
226 [56] = https://curl.se/bug/?i=8593
227 [57] = https://curl.se/bug/?i=8665
228 [58] = https://curl.se/bug/?i=8490
229 [59] = https://curl.se/bug/?i=8490
230 [60] = https://curl.se/bug/?i=8606
231 [61] = https://curl.se/bug/?i=8637
232 [62] = https://curl.se/bug/?i=8638
233 [63] = https://curl.se/bug/?i=8636
234 [64] = https://curl.se/bug/?i=8709
235 [65] = https://curl.se/bug/?i=8661
236 [66] = https://curl.se/bug/?i=8663
237 [67] = https://curl.se/bug/?i=8664
238 [68] = https://curl.se/bug/?i=8664
239 [69] = https://curl.se/bug/?i=8626
240 [70] = https://curl.se/bug/?i=8656
241 [71] = https://curl.se/bug/?i=8660
242 [72] = https://curl.se/bug/?i=8657
243 [73] = https://curl.se/bug/?i=8657
244 [74] = https://curl.se/bug/?i=8694
245 [75] = https://curl.se/bug/?i=8643
246 [76] = https://curl.se/bug/?i=8652
247 [77] = https://curl.se/bug/?i=8693
248 [78] = https://curl.se/bug/?i=8693
249 [79] = https://curl.se/bug/?i=8602
250 [80] = https://curl.se/bug/?i=8691
251 [81] = https://curl.se/bug/?i=8689
252 [82] = https://curl.se/bug/?i=8690
253 [83] = https://curl.se/bug/?i=8688
254 [84] = https://curl.se/bug/?i=8517
255 [85] = https://curl.se/bug/?i=8684
256 [86] = https://curl.se/bug/?i=8595
257 [87] = https://curl.se/bug/?i=8684
258 [88] = https://curl.se/bug/?i=8683
259 [89] = https://curl.se/bug/?i=8677
260 [90] = https://curl.se/bug/?i=8676
261 [91] = https://curl.se/bug/?i=8682
262 [92] = https://curl.se/bug/?i=8679
263 [93] = https://curl.se/bug/?i=8678
264 [94] = https://curl.se/bug/?i=8678
265 [95] = https://curl.se/bug/?i=8673
266 [96] = https://curl.se/bug/?i=8687
267 [97] = https://curl.se/bug/?i=8701
268 [98] = https://curl.se/bug/?i=8716
269 [99] = https://curl.se/bug/?i=8704
270 [100] = https://curl.se/bug/?i=8713
271 [101] = https://curl.se/bug/?i=8714
272 [102] = https://curl.se/bug/?i=8697
273 [103] = https://curl.se/bug/?i=8711
274 [105] = https://curl.se/bug/?i=8753
275 [107] = https://curl.se/bug/?i=8707
276 [109] = https://curl.se/docs/CVE-2022-27774.html
277 [110] = https://curl.se/docs/CVE-2022-27776.html
278 [111] = https://hackerone.com/reports/1549461
279 [112] = https://curl.se/docs/CVE-2022-27775.html
280 [113] = https://curl.se/docs/CVE-2022-22576.html
281 [114] = https://hackerone.com/reports/1549435
282 [115] = https://hackerone.com/reports/1542881
283 [116] = https://curl.se/bug/?i=8738
284 [117] = https://hackerone.com/reports/1548535
285 [119] = https://curl.se/bug/?i=8739
286 [122] = https://curl.se/bug/?i=8692
287 [123] = https://curl.se/bug/?i=8699
288 [124] = https://curl.se/bug/?i=8708
289 [125] = https://curl.se/bug/?i=8719
290 [126] = https://curl.se/bug/?i=8725
291 [127] = https://curl.se/bug/?i=8724
1111 # This configure script is free software; the Free Software Foundation
1212 # gives unlimited permission to copy, distribute and modify it.
1313 #
14 # Copyright (c) 1998 - 2021 Daniel Stenberg, <daniel@haxx.se>
14 # Copyright (c) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>
1515 # This configure script may be copied, distributed and modified under the
1616 # terms of the curl license; see COPYING for more details
1717
927927 PERL
928928 FISH_FUNCTIONS_DIR
929929 ZSH_FUNCTIONS_DIR
930 USE_MSH3
930931 USE_QUICHE
931932 USE_NGHTTP3
932933 USE_NGTCP2_CRYPTO_GNUTLS
934935 USE_NGTCP2
935936 USE_NGHTTP2
936937 IDN_ENABLED
938 CURL_PLIST_VERSION
937939 CURL_LT_SHLIB_USE_VERSIONED_SYMBOLS_FALSE
938940 CURL_LT_SHLIB_USE_VERSIONED_SYMBOLS_TRUE
939941 CURL_LT_SHLIB_VERSIONED_FLAVOUR
10241026 MANIFEST_TOOL
10251027 RANLIB
10261028 ac_ct_AR
1029 FILECMD
10271030 LN_S
10281031 NM
10291032 ac_ct_DUMPBIN
12341237 with_ngtcp2
12351238 with_nghttp3
12361239 with_quiche
1240 with_msh3
12371241 with_zsh_functions_dir
12381242 with_fish_functions_dir
12391243 enable_threaded_resolver
12561260 enable_dnsshuffle
12571261 enable_get_easy_options
12581262 enable_alt_svc
1263 enable_headers_api
12591264 enable_hsts
12601265 '
12611266 ac_precious_vars='build_alias
20242029 Disable curl_easy_options
20252030 --enable-alt-svc Enable alt-svc support
20262031 --disable-alt-svc Disable alt-svc support
2032 --enable-headers-api Enable headers-api support
2033 --disable-headers-api Disable headers-api support
20272034 --enable-hsts Enable HSTS support
20282035 --disable-hsts Disable HSTS support
20292036
21312138 --without-nghttp3 Disable nghttp3 usage
21322139 --with-quiche=PATH Enable quiche usage
21332140 --without-quiche Disable quiche usage
2141 --with-msh3=PATH Enable msh3 usage
2142 --without-msh3 Disable msh3 usage
21342143 --with-zsh-functions-dir=PATH
21352144 Install zsh completions to PATH
21362145 --without-zsh-functions-dir
22262235 This configure script is free software; the Free Software Foundation
22272236 gives unlimited permission to copy, distribute and modify it.
22282237
2229 Copyright (c) 1998 - 2021 Daniel Stenberg, <daniel@haxx.se>
2238 Copyright (c) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>
22302239 This configure script may be copied, distributed and modified under the
22312240 terms of the curl license; see COPYING for more details
22322241 _ACEOF
65456554 curl_rtmp_msg="no (--with-librtmp)"
65466555 curl_psl_msg="no (--with-libpsl)"
65476556 curl_altsvc_msg="enabled (--disable-alt-svc)"
6557 curl_headers_msg="no (--enable-headers-api)"
65486558 curl_hsts_msg="enabled (--disable-hsts)"
65496559 ssl_backends=
65506560 curl_h1_msg="enabled (internal)"
65516561 curl_h2_msg="no (--with-nghttp2, --with-hyper)"
6552 curl_h3_msg="no (--with-ngtcp2, --with-quiche)"
6562 curl_h3_msg="no (--with-ngtcp2, --with-quiche --with-msh3)"
65536563
65546564 enable_altsvc="yes"
65556565 hsts="yes"
83898399 mingw*) lt_bad_file=conftest.nm/nofile ;;
83908400 *) lt_bad_file=/dev/null ;;
83918401 esac
8392 case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
8402 case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in
83938403 *$lt_bad_file* | *'Invalid file or object type'*)
83948404 lt_cv_path_NM="$tmp_nm -B"
83958405 break 2
83968406 ;;
83978407 *)
8398 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
8408 case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in
83998409 */dev/null*)
84008410 lt_cv_path_NM="$tmp_nm -p"
84018411 break 2
85338543 fi
85348544 fi
85358545
8536 case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
8546 case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in
85378547 *COFF*)
85388548 DUMPBIN="$DUMPBIN -symbols -headers"
85398549 ;;
86378647 lt_cv_sys_max_cmd_len=8192;
86388648 ;;
86398649
8640 bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
8650 bitrig* | darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*)
86418651 # This has been around since 386BSD, at least. Likely further.
86428652 if test -x /sbin/sysctl; then
86438653 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
86808690 sysv5* | sco5v6* | sysv4.2uw2*)
86818691 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
86828692 if test -n "$kargmax"; then
8683 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'`
8693 lt_cv_sys_max_cmd_len=`echo $kargmax | $SED 's/.*[ ]//'`
86848694 else
86858695 lt_cv_sys_max_cmd_len=32768
86868696 fi
88868896
88878897
88888898 if test -n "$ac_tool_prefix"; then
8899 # Extract the first word of "${ac_tool_prefix}file", so it can be a program name with args.
8900 set dummy ${ac_tool_prefix}file; ac_word=$2
8901 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8902 printf %s "checking for $ac_word... " >&6; }
8903 if test ${ac_cv_prog_FILECMD+y}
8904 then :
8905 printf %s "(cached) " >&6
8906 else $as_nop
8907 if test -n "$FILECMD"; then
8908 ac_cv_prog_FILECMD="$FILECMD" # Let the user override the test.
8909 else
8910 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8911 for as_dir in $PATH
8912 do
8913 IFS=$as_save_IFS
8914 case $as_dir in #(((
8915 '') as_dir=./ ;;
8916 */) ;;
8917 *) as_dir=$as_dir/ ;;
8918 esac
8919 for ac_exec_ext in '' $ac_executable_extensions; do
8920 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8921 ac_cv_prog_FILECMD="${ac_tool_prefix}file"
8922 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8923 break 2
8924 fi
8925 done
8926 done
8927 IFS=$as_save_IFS
8928
8929 fi
8930 fi
8931 FILECMD=$ac_cv_prog_FILECMD
8932 if test -n "$FILECMD"; then
8933 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FILECMD" >&5
8934 printf "%s\n" "$FILECMD" >&6; }
8935 else
8936 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8937 printf "%s\n" "no" >&6; }
8938 fi
8939
8940
8941 fi
8942 if test -z "$ac_cv_prog_FILECMD"; then
8943 ac_ct_FILECMD=$FILECMD
8944 # Extract the first word of "file", so it can be a program name with args.
8945 set dummy file; ac_word=$2
8946 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8947 printf %s "checking for $ac_word... " >&6; }
8948 if test ${ac_cv_prog_ac_ct_FILECMD+y}
8949 then :
8950 printf %s "(cached) " >&6
8951 else $as_nop
8952 if test -n "$ac_ct_FILECMD"; then
8953 ac_cv_prog_ac_ct_FILECMD="$ac_ct_FILECMD" # Let the user override the test.
8954 else
8955 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8956 for as_dir in $PATH
8957 do
8958 IFS=$as_save_IFS
8959 case $as_dir in #(((
8960 '') as_dir=./ ;;
8961 */) ;;
8962 *) as_dir=$as_dir/ ;;
8963 esac
8964 for ac_exec_ext in '' $ac_executable_extensions; do
8965 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8966 ac_cv_prog_ac_ct_FILECMD="file"
8967 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8968 break 2
8969 fi
8970 done
8971 done
8972 IFS=$as_save_IFS
8973
8974 fi
8975 fi
8976 ac_ct_FILECMD=$ac_cv_prog_ac_ct_FILECMD
8977 if test -n "$ac_ct_FILECMD"; then
8978 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_FILECMD" >&5
8979 printf "%s\n" "$ac_ct_FILECMD" >&6; }
8980 else
8981 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8982 printf "%s\n" "no" >&6; }
8983 fi
8984
8985 if test "x$ac_ct_FILECMD" = x; then
8986 FILECMD=":"
8987 else
8988 case $cross_compiling:$ac_tool_warned in
8989 yes:)
8990 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
8991 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
8992 ac_tool_warned=yes ;;
8993 esac
8994 FILECMD=$ac_ct_FILECMD
8995 fi
8996 else
8997 FILECMD="$ac_cv_prog_FILECMD"
8998 fi
8999
9000
9001
9002
9003
9004
9005
9006 if test -n "$ac_tool_prefix"; then
88899007 # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args.
88909008 set dummy ${ac_tool_prefix}objdump; ac_word=$2
88919009 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
90259143
90269144 bsdi[45]*)
90279145 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
9028 lt_cv_file_magic_cmd='/usr/bin/file -L'
9146 lt_cv_file_magic_cmd='$FILECMD -L'
90299147 lt_cv_file_magic_test_file=/shlib/libc.so
90309148 ;;
90319149
90599177 lt_cv_deplibs_check_method=pass_all
90609178 ;;
90619179
9062 freebsd* | dragonfly*)
9180 freebsd* | dragonfly* | midnightbsd*)
90639181 if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
90649182 case $host_cpu in
90659183 i*86 )
90669184 # Not sure whether the presence of OpenBSD here was a mistake.
90679185 # Let's accept both of them until this is cleared up.
90689186 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'
9069 lt_cv_file_magic_cmd=/usr/bin/file
9187 lt_cv_file_magic_cmd=$FILECMD
90709188 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
90719189 ;;
90729190 esac
90809198 ;;
90819199
90829200 hpux10.20* | hpux11*)
9083 lt_cv_file_magic_cmd=/usr/bin/file
9201 lt_cv_file_magic_cmd=$FILECMD
90849202 case $host_cpu in
90859203 ia64*)
90869204 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
91279245
91289246 newos6*)
91299247 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
9130 lt_cv_file_magic_cmd=/usr/bin/file
9248 lt_cv_file_magic_cmd=$FILECMD
91319249 lt_cv_file_magic_test_file=/usr/lib/libnls.so
91329250 ;;
91339251
94979615 fi
94989616
94999617 : ${AR=ar}
9500 : ${AR_FLAGS=cr}
9501
9502
9503
9504
9505
9618
9619
9620
9621
9622
9623
9624 # Use ARFLAGS variable as AR's operation code to sync the variable naming with
9625 # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have
9626 # higher priority because thats what people were doing historically (setting
9627 # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS
9628 # variable obsoleted/removed.
9629
9630 test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr}
9631 lt_ar_flags=$AR_FLAGS
9632
9633
9634
9635
9636
9637
9638 # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override
9639 # by AR_FLAGS because that was never working and AR_FLAGS is about to die.
95069640
95079641
95089642
991910053
992010054 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
992110055 # Gets list of data symbols to import.
9922 lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'"
10056 lt_cv_sys_global_symbol_to_import="$SED -n -e 's/^I .* \(.*\)$/\1/p'"
992310057 # Adjust the below global symbol transforms to fixup imported variables.
992410058 lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'"
992510059 lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'"
993710071 # Transform an extracted symbol line into a proper C declaration.
993810072 # Some systems (esp. on ia64) link data and code symbols differently,
993910073 # so use this general approach.
9940 lt_cv_sys_global_symbol_to_cdecl="sed -n"\
10074 lt_cv_sys_global_symbol_to_cdecl="$SED -n"\
994110075 $lt_cdecl_hook\
994210076 " -e 's/^T .* \(.*\)$/extern int \1();/p'"\
994310077 " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'"
994410078
994510079 # Transform an extracted symbol line into symbol name and symbol address
9946 lt_cv_sys_global_symbol_to_c_name_address="sed -n"\
10080 lt_cv_sys_global_symbol_to_c_name_address="$SED -n"\
994710081 $lt_c_name_hook\
994810082 " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\
994910083 " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'"
995010084
995110085 # Transform an extracted symbol line into symbol name with lib prefix and
995210086 # symbol address.
9953 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\
10087 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="$SED -n"\
995410088 $lt_c_name_lib_hook\
995510089 " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\
995610090 " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\
997410108 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
997510109 # Fake it for dumpbin and say T for any non-static function,
997610110 # D for any global variable and I for any imported variable.
9977 # Also find C++ and __fastcall symbols from MSVC++,
10111 # Also find C++ and __fastcall symbols from MSVC++ or ICC,
997810112 # which start with @ or ?.
997910113 lt_cv_sys_global_symbol_pipe="$AWK '"\
998010114 " {last_section=section; section=\$ 3};"\
999210126 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\
999310127 " ' prfx=^$ac_symprfx"
999410128 else
9995 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
9996 fi
9997 lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
10129 lt_cv_sys_global_symbol_pipe="$SED -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
10130 fi
10131 lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | $SED '/ __gnu_lto/d'"
999810132
999910133 # Check to see that the pipe works correctly.
1000010134 pipe_works=no
1019410328 fi
1019510329 ;; #(
1019610330 /*)
10197 lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
10331 lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"`
1019810332 ;; #(
1019910333 no|'')
1020010334 ;; #(
1031910453 ac_status=$?
1032010454 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1032110455 test $ac_status = 0; }; then
10322 case `/usr/bin/file conftest.$ac_objext` in
10456 case `$FILECMD conftest.$ac_objext` in
1032310457 *ELF-32*)
1032410458 HPUX_IA64_MODE=32
1032510459 ;;
1034010474 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1034110475 test $ac_status = 0; }; then
1034210476 if test yes = "$lt_cv_prog_gnu_ld"; then
10343 case `/usr/bin/file conftest.$ac_objext` in
10477 case `$FILECMD conftest.$ac_objext` in
1034410478 *32-bit*)
1034510479 LD="${LD-ld} -melf32bsmip"
1034610480 ;;
1035210486 ;;
1035310487 esac
1035410488 else
10355 case `/usr/bin/file conftest.$ac_objext` in
10489 case `$FILECMD conftest.$ac_objext` in
1035610490 *32-bit*)
1035710491 LD="${LD-ld} -32"
1035810492 ;;
1037810512 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1037910513 test $ac_status = 0; }; then
1038010514 emul=elf
10381 case `/usr/bin/file conftest.$ac_objext` in
10515 case `$FILECMD conftest.$ac_objext` in
1038210516 *32-bit*)
1038310517 emul="${emul}32"
1038410518 ;;
1038610520 emul="${emul}64"
1038710521 ;;
1038810522 esac
10389 case `/usr/bin/file conftest.$ac_objext` in
10523 case `$FILECMD conftest.$ac_objext` in
1039010524 *MSB*)
1039110525 emul="${emul}btsmip"
1039210526 ;;
1039410528 emul="${emul}ltsmip"
1039510529 ;;
1039610530 esac
10397 case `/usr/bin/file conftest.$ac_objext` in
10531 case `$FILECMD conftest.$ac_objext` in
1039810532 *N32*)
1039910533 emul="${emul}n32"
1040010534 ;;
1041810552 ac_status=$?
1041910553 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1042010554 test $ac_status = 0; }; then
10421 case `/usr/bin/file conftest.o` in
10555 case `$FILECMD conftest.o` in
1042210556 *32-bit*)
1042310557 case $host in
1042410558 x86_64-*kfreebsd*-gnu)
1042510559 LD="${LD-ld} -m elf_i386_fbsd"
1042610560 ;;
1042710561 x86_64-*linux*)
10428 case `/usr/bin/file conftest.o` in
10562 case `$FILECMD conftest.o` in
1042910563 *x86-64*)
1043010564 LD="${LD-ld} -m elf32_x86_64"
1043110565 ;;
1053210666 ac_status=$?
1053310667 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1053410668 test $ac_status = 0; }; then
10535 case `/usr/bin/file conftest.o` in
10669 case `$FILECMD conftest.o` in
1053610670 *64-bit*)
1053710671 case $lt_cv_prog_gnu_ld in
1053810672 yes*)
1131411448 _LT_EOF
1131511449 echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5
1131611450 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5
11317 echo "$AR cr libconftest.a conftest.o" >&5
11318 $AR cr libconftest.a conftest.o 2>&5
11451 echo "$AR $AR_FLAGS libconftest.a conftest.o" >&5
11452 $AR $AR_FLAGS libconftest.a conftest.o 2>&5
1131911453 echo "$RANLIB libconftest.a" >&5
1132011454 $RANLIB libconftest.a 2>&5
1132111455 cat > conftest.c << _LT_EOF
1134211476 _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;
1134311477 darwin1.*)
1134411478 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
11345 darwin*) # darwin 5.x on
11346 # if running on 10.5 or later, the deployment target defaults
11347 # to the OS version, if on x86, and 10.4, the deployment
11348 # target defaults to 10.4. Don't you love it?
11349 case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
11350 10.0,*86*-darwin8*|10.0,*-darwin[912]*)
11351 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
11352 10.[012][,.]*)
11353 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
11354 10.*|11.*)
11355 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
11479 darwin*)
11480 case $MACOSX_DEPLOYMENT_TARGET,$host in
11481 10.[012],*|,*powerpc*-darwin[5-8]*)
11482 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
11483 *)
11484 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
1135611485 esac
1135711486 ;;
1135811487 esac
1217512304 ofile=libtool
1217612305 can_build_shared=yes
1217712306
12178 # All known linkers require a '.a' archive for static linking (except MSVC,
12179 # which needs '.lib').
12307 # All known linkers require a '.a' archive for static linking (except MSVC and
12308 # ICC, which need '.lib').
1218012309 libext=a
1218112310
1218212311 with_gnu_ld=$lt_cv_prog_gnu_ld
1269412823 lt_prog_compiler_static='-qstaticlink'
1269512824 ;;
1269612825 *)
12697 case `$CC -V 2>&1 | sed 5q` in
12826 case `$CC -V 2>&1 | $SED 5q` in
1269812827 *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*)
1269912828 # Sun Fortran 8.3 passes all unrecognized flags to the linker
1270012829 lt_prog_compiler_pic='-KPIC'
1311713246
1311813247 case $host_os in
1311913248 cygwin* | mingw* | pw32* | cegcc*)
13120 # FIXME: the MSVC++ port hasn't been tested in a loooong time
13249 # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time
1312113250 # When not using gcc, we currently assume that we are using
13122 # Microsoft Visual C++.
13251 # Microsoft Visual C++ or Intel C++ Compiler.
1312313252 if test yes != "$GCC"; then
1312413253 with_gnu_ld=no
1312513254 fi
1312613255 ;;
1312713256 interix*)
13128 # we just hope/assume this is gcc and not c89 (= MSVC++)
13257 # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC)
1312913258 with_gnu_ld=yes
1313013259 ;;
1313113260 openbsd* | bitrig*)
1318013309 whole_archive_flag_spec=
1318113310 fi
1318213311 supports_anon_versioning=no
13183 case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in
13312 case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in
1318413313 *GNU\ gold*) supports_anon_versioning=yes ;;
1318513314 *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
1318613315 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
1329213421 emximp -o $lib $output_objdir/$libname.def'
1329313422 old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
1329413423 enable_shared_with_static_runtimes=yes
13424 file_list_spec='@'
1329513425 ;;
1329613426
1329713427 interix[3-9]*)
1330613436 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
1330713437 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
1330813438 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
13309 archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
13439 archive_expsym_cmds='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
1331013440 ;;
1331113441
1331213442 gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
1334913479 compiler_needs_object=yes
1335013480 ;;
1335113481 esac
13352 case `$CC -V 2>&1 | sed 5q` in
13482 case `$CC -V 2>&1 | $SED 5q` in
1335313483 *Sun\ C*) # Sun C 5.9
1335413484 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
1335513485 compiler_needs_object=yes
1336113491
1336213492 if test yes = "$supports_anon_versioning"; then
1336313493 archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
13364 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
13494 cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
1336513495 echo "local: *; };" >> $output_objdir/$libname.ver~
1336613496 $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
1336713497 fi
1336813498
1336913499 case $cc_basename in
1337013500 tcc*)
13501 hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
1337113502 export_dynamic_flag_spec='-rdynamic'
1337213503 ;;
1337313504 xlf* | bgf* | bgxlf* | mpixlf*)
1337713508 archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
1337813509 if test yes = "$supports_anon_versioning"; then
1337913510 archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
13380 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
13511 cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
1338113512 echo "local: *; };" >> $output_objdir/$libname.ver~
1338213513 $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
1338313514 fi
1350913640 if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
1351013641 export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
1351113642 else
13512 export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
13643 export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
1351313644 fi
1351413645 aix_use_runtimelinking=no
1351513646
1377813909
1377913910 cygwin* | mingw* | pw32* | cegcc*)
1378013911 # When not using gcc, we currently assume that we are using
13781 # Microsoft Visual C++.
13912 # Microsoft Visual C++ or Intel C++ Compiler.
1378213913 # hardcode_libdir_flag_spec is actually meaningless, as there is
1378313914 # no search path for DLLs.
1378413915 case $cc_basename in
13785 cl*)
13786 # Native MSVC
13916 cl* | icl*)
13917 # Native MSVC or ICC
1378713918 hardcode_libdir_flag_spec=' '
1378813919 allow_undefined_flag=unsupported
1378913920 always_export_symbols=yes
1382413955 fi'
1382513956 ;;
1382613957 *)
13827 # Assume MSVC wrapper
13958 # Assume MSVC and ICC wrapper
1382813959 hardcode_libdir_flag_spec=' '
1382913960 allow_undefined_flag=unsupported
1383013961 # Tell ltmain to make .lib files, not .a files.
1386513996 output_verbose_link_cmd=func_echo_all
1386613997 archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil"
1386713998 module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil"
13868 archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
13869 module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
13999 archive_expsym_cmds="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
14000 module_expsym_cmds="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
1387014001
1387114002 else
1387214003 ld_shlibs=no
1390014031 ;;
1390114032
1390214033 # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
13903 freebsd* | dragonfly*)
14034 freebsd* | dragonfly* | midnightbsd*)
1390414035 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
1390514036 hardcode_libdir_flag_spec='-R$libdir'
1390614037 hardcode_direct=yes
1408114212 # Fabrice Bellard et al's Tiny C Compiler
1408214213 ld_shlibs=yes
1408314214 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
14215 hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
1408414216 ;;
1408514217 esac
1408614218 ;;
1415214284 emximp -o $lib $output_objdir/$libname.def'
1415314285 old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
1415414286 enable_shared_with_static_runtimes=yes
14287 file_list_spec='@'
1415514288 ;;
1415614289
1415714290 osf3*)
1484414977 case $host_os in
1484514978 cygwin*)
1484614979 # Cygwin DLLs use 'cyg' prefix rather than 'lib'
14847 soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
14980 soname_spec='`echo $libname | $SED -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
1484814981
1484914982 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"
1485014983 ;;
1485414987 ;;
1485514988 pw32*)
1485614989 # pw32 DLLs use 'pw' prefix rather than 'lib'
14857 library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
14990 library_names_spec='`echo $libname | $SED -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
1485814991 ;;
1485914992 esac
1486014993 dynamic_linker='Win32 ld.exe'
1486114994 ;;
1486214995
14863 *,cl*)
14864 # Native MSVC
14996 *,cl* | *,icl*)
14997 # Native MSVC or ICC
1486514998 libname_spec='$name'
1486614999 soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
1486715000 library_names_spec='$libname.dll.lib'
1488015013 done
1488115014 IFS=$lt_save_ifs
1488215015 # Convert to MSYS style.
14883 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'`
15016 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'`
1488415017 ;;
1488515018 cygwin*)
1488615019 # Convert to unix form, then to dos form, then back to unix form
1491715050 ;;
1491815051
1491915052 *)
14920 # Assume MSVC wrapper
15053 # Assume MSVC and ICC wrapper
1492115054 library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'
1492215055 dynamic_linker='Win32 ld.exe'
1492315056 ;;
1495015083 shlibpath_var=LD_LIBRARY_PATH
1495115084 ;;
1495215085
14953 freebsd* | dragonfly*)
15086 freebsd* | dragonfly* | midnightbsd*)
1495415087 # DragonFly does not have aout. When/if they implement a new
1495515088 # versioning mechanism, adjust this.
1495615089 if test -x /usr/bin/objformat; then
1611416247 old_striplib=
1611516248 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
1611616249 printf %s "checking whether stripping libraries is possible... " >&6; }
16117 if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
16118 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
16119 test -z "$striplib" && striplib="$STRIP --strip-unneeded"
16120 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
16250 if test -z "$STRIP"; then
16251 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
16252 printf "%s\n" "no" >&6; }
16253 else
16254 if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
16255 old_striplib="$STRIP --strip-debug"
16256 striplib="$STRIP --strip-unneeded"
16257 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1612116258 printf "%s\n" "yes" >&6; }
16122 else
16123 # FIXME - insert some real tests, host_os isn't really good enough
16124 case $host_os in
16125 darwin*)
16126 if test -n "$STRIP"; then
16259 else
16260 case $host_os in
16261 darwin*)
16262 # FIXME - insert some real tests, host_os isn't really good enough
1612716263 striplib="$STRIP -x"
1612816264 old_striplib="$STRIP -S"
1612916265 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1613016266 printf "%s\n" "yes" >&6; }
16131 else
16267 ;;
16268 freebsd*)
16269 if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then
16270 old_striplib="$STRIP --strip-debug"
16271 striplib="$STRIP --strip-unneeded"
16272 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
16273 printf "%s\n" "yes" >&6; }
16274 else
16275 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
16276 printf "%s\n" "no" >&6; }
16277 fi
16278 ;;
16279 *)
1613216280 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
1613316281 printf "%s\n" "no" >&6; }
16134 fi
16135 ;;
16136 *)
16137 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
16138 printf "%s\n" "no" >&6; }
16139 ;;
16140 esac
16282 ;;
16283 esac
16284 fi
1614116285 fi
1614216286
1614316287
2924329387 fi
2924429388
2924529389
29390 CURL_PLIST_VERSION="$CURLVERSION"
29391
29392
2924629393
2924729394 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable Windows native IDN (Windows native builds only)" >&5
2924829395 printf %s "checking whether to enable Windows native IDN (Windows native builds only)... " >&6; }
3149731644 as_fn_error $? "--with-quiche was specified but could not find quiche pkg-config file." "$LINENO" 5
3149831645 fi
3149931646 fi
31647 fi
31648
31649
31650 OPT_MSH3="no"
31651
31652 if test "x$disable_http" = "xyes" -o "x$USE_NGTCP" = "x1"; then
31653 # without HTTP or with ngtcp2, msh3 is no use
31654 OPT_MSH3="no"
31655 fi
31656
31657
31658 # Check whether --with-msh3 was given.
31659 if test ${with_msh3+y}
31660 then :
31661 withval=$with_msh3; OPT_MSH3=$withval
31662 fi
31663
31664 case "$OPT_MSH3" in
31665 no)
31666 want_msh3="no"
31667 ;;
31668 yes)
31669 want_msh3="default"
31670 want_msh3_path=""
31671 ;;
31672 *)
31673 want_msh3="yes"
31674 want_msh3_path="$withval"
31675 ;;
31676 esac
31677
31678 if test X"$want_msh3" != Xno; then
31679
31680 if test "$NGHTTP3_ENABLED" = 1; then
31681 as_fn_error $? "--with-msh3 and --with-ngtcp2 are mutually exclusive" "$LINENO" 5
31682 fi
31683
31684 CLEANLDFLAGS="$LDFLAGS"
31685 CLEANCPPFLAGS="$CPPFLAGS"
31686 CLEANLIBS="$LIBS"
31687
31688 if test -n "$want_msh3_path"; then
31689 LD_MSH3="-L$want_msh3_path/lib"
31690 CPP_MSH3="-I$want_msh3_path/include"
31691 DIR_MSH3="$want_msh3_path/lib"
31692 LDFLAGS="$LDFLAGS $LD_MSH3"
31693 CPPFLAGS="$CPPFLAGS $CPP_MSH3"
31694 fi
31695 LIBS="-lmsh3 $LIBS"
31696
31697 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for MsH3ApiOpen in -lmsh3" >&5
31698 printf %s "checking for MsH3ApiOpen in -lmsh3... " >&6; }
31699 if test ${ac_cv_lib_msh3_MsH3ApiOpen+y}
31700 then :
31701 printf %s "(cached) " >&6
31702 else $as_nop
31703 ac_check_lib_save_LIBS=$LIBS
31704 LIBS="-lmsh3 $LIBS"
31705 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
31706 /* end confdefs.h. */
31707
31708
31709 #ifdef __cplusplus
31710 extern "C"
31711 #endif
31712 char MsH3ApiOpen ();
31713 int main (void)
31714 {
31715 return MsH3ApiOpen ();
31716 ;
31717 return 0;
31718 }
31719 _ACEOF
31720 if ac_fn_c_try_link "$LINENO"
31721 then :
31722 ac_cv_lib_msh3_MsH3ApiOpen=yes
31723 else $as_nop
31724 ac_cv_lib_msh3_MsH3ApiOpen=no
31725 fi
31726 rm -f core conftest.err conftest.$ac_objext conftest.beam \
31727 conftest$ac_exeext conftest.$ac_ext
31728 LIBS=$ac_check_lib_save_LIBS
31729 fi
31730 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_msh3_MsH3ApiOpen" >&5
31731 printf "%s\n" "$ac_cv_lib_msh3_MsH3ApiOpen" >&6; }
31732 if test "x$ac_cv_lib_msh3_MsH3ApiOpen" = xyes
31733 then :
31734
31735 for ac_header in msh3.h
31736 do :
31737 ac_fn_c_check_header_compile "$LINENO" "msh3.h" "ac_cv_header_msh3_h" "$ac_includes_default"
31738 if test "x$ac_cv_header_msh3_h" = xyes
31739 then :
31740 printf "%s\n" "#define HAVE_MSH3_H 1" >>confdefs.h
31741 curl_h3_msg="enabled (msh3)"
31742 MSH3_ENABLED=1
31743
31744 printf "%s\n" "#define USE_MSH3 1" >>confdefs.h
31745
31746 USE_MSH3=1
31747
31748 CURL_LIBRARY_PATH="$CURL_LIBRARY_PATH:$DIR_MSH3"
31749 export CURL_LIBRARY_PATH
31750 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: Added $DIR_MSH3 to CURL_LIBRARY_PATH" >&5
31751 printf "%s\n" "$as_me: Added $DIR_MSH3 to CURL_LIBRARY_PATH" >&6;}
31752 else $as_nop
31753 experimental="$experimental HTTP3"
31754
31755 fi
31756
31757 done
31758
31759 else $as_nop
31760 LDFLAGS=$CLEANLDFLAGS
31761 CPPFLAGS=$CLEANCPPFLAGS
31762 LIBS=$CLEANLIBS
31763
31764 fi
31765
3150031766 fi
3150131767
3150231768
4537945645 *-hp-hpux*)
4538045646 USE_THREADS_POSIX=""
4538145647 ;;
45382 *-ibm-aix*)
45383 COMPILER_VERSION=`"$CC" -qversion 2>/dev/null`
45384 if test x"$COMPILER_VERSION" = "x"; then
45385 CFLAGS="$CFLAGS -pthread"
45386 else
45387 CFLAGS="$CFLAGS -qthreaded"
45388 fi
45389 ;;
4539045648 *)
45391 CFLAGS="$CFLAGS -pthread"
4539245649 ;;
4539345650 esac
4539445651
4539545652 if test "$USE_THREADS_POSIX" != "1"
4539645653 then
45654 case $host in
45655 *-ibm-aix*)
45656 COMPILER_VERSION=`"$CC" -qversion 2>/dev/null`
45657 if test x"$COMPILER_VERSION" = "x"; then
45658 CFLAGS="$CFLAGS -pthread"
45659 else
45660 CFLAGS="$CFLAGS -qthreaded"
45661 fi
45662 ;;
45663 *)
45664 CFLAGS="$CFLAGS -pthread"
45665 ;;
45666 esac
4539745667 # assign PTHREAD for pkg-config use
4539845668 PTHREAD=" -pthread"
4539945669 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5
4602546295 fi
4602646296
4602746297
46298 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to support headers-api" >&5
46299 printf %s "checking whether to support headers-api... " >&6; }
46300 # Check whether --enable-headers-api was given.
46301 if test ${enable_headers_api+y}
46302 then :
46303 enableval=$enable_headers_api; case "$enableval" in
46304 yes)
46305 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
46306 printf "%s\n" "yes" >&6; }
46307
46308 printf "%s\n" "#define USE_HEADERS_API 1" >>confdefs.h
46309
46310 curl_headers_msg="enabled";
46311 ;;
46312 *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
46313 printf "%s\n" "no" >&6; }
46314 ;;
46315 esac
46316 else $as_nop
46317 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
46318 printf "%s\n" "no" >&6; }
46319
46320 fi
46321
46322
4602846323 if test -n "$SSL_ENABLED"; then
4602946324
4603046325 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to support HSTS" >&5
4624946544 SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP2"
4625046545 fi
4625146546
46252 if test "x$USE_NGTCP2" = "x1" -o "x$USE_QUICHE" = "x1"; then
46547 if test "x$USE_NGTCP2" = "x1" -o "x$USE_QUICHE" = "x1" \
46548 -o "x$USE_MSH3" = "x1"; then
4625346549 SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP3"
4625446550 fi
4625546551
4655746853 ac_configure_args="$ac_configure_args --enable-curldebug"
4655846854 fi
4655946855
46560 ac_config_files="$ac_config_files Makefile docs/Makefile docs/examples/Makefile docs/libcurl/Makefile docs/libcurl/opts/Makefile docs/cmdline-opts/Makefile include/Makefile include/curl/Makefile src/Makefile lib/Makefile scripts/Makefile lib/libcurl.vers tests/Makefile tests/certs/Makefile tests/certs/scripts/Makefile tests/data/Makefile tests/server/Makefile tests/libtest/Makefile tests/unit/Makefile packages/Makefile packages/vms/Makefile curl-config libcurl.pc"
46856 ac_config_files="$ac_config_files Makefile docs/Makefile docs/examples/Makefile docs/libcurl/Makefile docs/libcurl/opts/Makefile docs/cmdline-opts/Makefile include/Makefile include/curl/Makefile src/Makefile lib/Makefile scripts/Makefile lib/libcurl.vers lib/libcurl.plist tests/Makefile tests/certs/Makefile tests/certs/scripts/Makefile tests/data/Makefile tests/server/Makefile tests/libtest/Makefile tests/unit/Makefile packages/Makefile packages/vms/Makefile curl-config libcurl.pc"
4656146857
4656246858 cat >confcache <<\_ACEOF
4656346859 # This file is a shell script that caches the results of configure
4738047676 lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`'
4738147677 reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`'
4738247678 reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`'
47679 FILECMD='`$ECHO "$FILECMD" | $SED "$delay_single_quote_subst"`'
4738347680 deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`'
4738447681 file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`'
4738547682 file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`'
4738647683 want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`'
4738747684 sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`'
4738847685 AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`'
47686 lt_ar_flags='`$ECHO "$lt_ar_flags" | $SED "$delay_single_quote_subst"`'
4738947687 AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`'
4739047688 archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`'
4739147689 STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`'
4750947807 lt_SP2NL \
4751047808 lt_NL2SP \
4751147809 reload_flag \
47810 FILECMD \
4751247811 deplibs_check_method \
4751347812 file_magic_cmd \
4751447813 file_magic_glob \
4751547814 want_nocaseglob \
4751647815 sharedlib_from_linklib_cmd \
4751747816 AR \
47518 AR_FLAGS \
4751947817 archiver_list_spec \
4752047818 STRIP \
4752147819 RANLIB \
4764347941 "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
4764447942 "scripts/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
4764547943 "lib/libcurl.vers") CONFIG_FILES="$CONFIG_FILES lib/libcurl.vers" ;;
47944 "lib/libcurl.plist") CONFIG_FILES="$CONFIG_FILES lib/libcurl.plist" ;;
4764647945 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
4764747946 "tests/certs/Makefile") CONFIG_FILES="$CONFIG_FILES tests/certs/Makefile" ;;
4764847947 "tests/certs/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES tests/certs/scripts/Makefile" ;;
4848848787 # convert \$build files to toolchain format.
4848948788 to_tool_file_cmd=$lt_cv_to_tool_file_cmd
4849048789
48790 # A file(cmd) program that detects file types.
48791 FILECMD=$lt_FILECMD
48792
4849148793 # Method to check whether dependent libraries are shared objects.
4849248794 deplibs_check_method=$lt_deplibs_check_method
4849348795
4850648808 # The archiver.
4850748809 AR=$lt_AR
4850848810
48811 # Flags to create an archive (by configure).
48812 lt_ar_flags=$lt_ar_flags
48813
4850948814 # Flags to create an archive.
48510 AR_FLAGS=$lt_AR_FLAGS
48815 AR_FLAGS=\${ARFLAGS-"\$lt_ar_flags"}
4851148816
4851248817 # How to feed a file listing to the archiver.
4851348818 archiver_list_spec=$lt_archiver_list_spec
4888349188 # if finds mixed CR/LF and LF-only lines. Since sed operates in
4888449189 # text mode, it properly converts lines to CR/LF. This bash problem
4888549190 # is reportedly fixed, but why not run on old versions too?
48886 sed '$q' "$ltmain" >> "$cfgfile" \
49191 $SED '$q' "$ltmain" >> "$cfgfile" \
4888749192 || (rm -f "$cfgfile"; exit 1)
4888849193
4888949194 mv -f "$cfgfile" "$ofile" ||
4910549410 RTMP: ${curl_rtmp_msg}
4910649411 PSL: ${curl_psl_msg}
4910749412 Alt-svc: ${curl_altsvc_msg}
49413 Headers API: ${curl_headers_msg}
4910849414 HSTS: ${curl_hsts_msg}
4910949415 HTTP1: ${curl_h1_msg}
4911049416 HTTP2: ${curl_h2_msg}
4915149457 RTMP: ${curl_rtmp_msg}
4915249458 PSL: ${curl_psl_msg}
4915349459 Alt-svc: ${curl_altsvc_msg}
49460 Headers API: ${curl_headers_msg}
4915449461 HSTS: ${curl_hsts_msg}
4915549462 HTTP1: ${curl_h1_msg}
4915649463 HTTP2: ${curl_h2_msg}
3030 CURL_OVERRIDE_AUTOCONF
3131
3232 dnl configure script copyright
33 AC_COPYRIGHT([Copyright (c) 1998 - 2021 Daniel Stenberg, <daniel@haxx.se>
33 AC_COPYRIGHT([Copyright (c) 1998 - 2022 Daniel Stenberg, <daniel@haxx.se>
3434 This configure script may be copied, distributed and modified under the
3535 terms of the curl license; see COPYING for more details])
3636
164164 curl_rtmp_msg="no (--with-librtmp)"
165165 curl_psl_msg="no (--with-libpsl)"
166166 curl_altsvc_msg="enabled (--disable-alt-svc)"
167 curl_headers_msg="no (--enable-headers-api)"
167168 curl_hsts_msg="enabled (--disable-hsts)"
168169 ssl_backends=
169170 curl_h1_msg="enabled (internal)"
170171 curl_h2_msg="no (--with-nghttp2, --with-hyper)"
171 curl_h3_msg="no (--with-ngtcp2, --with-quiche)"
172 curl_h3_msg="no (--with-ngtcp2, --with-quiche --with-msh3)"
172173
173174 enable_altsvc="yes"
174175 hsts="yes"
23312332 AM_CONDITIONAL([CURL_LT_SHLIB_USE_VERSIONED_SYMBOLS],
23322333 [test "x$versioned_symbols" = 'xyes'])
23332334
2335 dnl Update .plist file with current version
2336 AC_SUBST([CURL_PLIST_VERSION],
2337 ["$CURLVERSION"])
2338
23342339 dnl -------------------------------------------------
23352340 dnl check winidn option before other IDN libraries
23362341 dnl -------------------------------------------------
30323037 AC_MSG_ERROR([--with-quiche was specified but could not find quiche pkg-config file.])
30333038 fi
30343039 fi
3040 fi
3041
3042 dnl **********************************************************************
3043 dnl Check for msh3 (QUIC)
3044 dnl **********************************************************************
3045
3046 OPT_MSH3="no"
3047
3048 if test "x$disable_http" = "xyes" -o "x$USE_NGTCP" = "x1"; then
3049 # without HTTP or with ngtcp2, msh3 is no use
3050 OPT_MSH3="no"
3051 fi
3052
3053 AC_ARG_WITH(msh3,
3054 AS_HELP_STRING([--with-msh3=PATH],[Enable msh3 usage])
3055 AS_HELP_STRING([--without-msh3],[Disable msh3 usage]),
3056 [OPT_MSH3=$withval])
3057 case "$OPT_MSH3" in
3058 no)
3059 dnl --without-msh3 option used
3060 want_msh3="no"
3061 ;;
3062 yes)
3063 dnl --with-msh3 option used without path
3064 want_msh3="default"
3065 want_msh3_path=""
3066 ;;
3067 *)
3068 dnl --with-msh3 option used with path
3069 want_msh3="yes"
3070 want_msh3_path="$withval"
3071 ;;
3072 esac
3073
3074 if test X"$want_msh3" != Xno; then
3075
3076 if test "$NGHTTP3_ENABLED" = 1; then
3077 AC_MSG_ERROR([--with-msh3 and --with-ngtcp2 are mutually exclusive])
3078 fi
3079
3080 dnl backup the pre-msh3 variables
3081 CLEANLDFLAGS="$LDFLAGS"
3082 CLEANCPPFLAGS="$CPPFLAGS"
3083 CLEANLIBS="$LIBS"
3084
3085 if test -n "$want_msh3_path"; then
3086 LD_MSH3="-L$want_msh3_path/lib"
3087 CPP_MSH3="-I$want_msh3_path/include"
3088 DIR_MSH3="$want_msh3_path/lib"
3089 LDFLAGS="$LDFLAGS $LD_MSH3"
3090 CPPFLAGS="$CPPFLAGS $CPP_MSH3"
3091 fi
3092 LIBS="-lmsh3 $LIBS"
3093
3094 AC_CHECK_LIB(msh3, MsH3ApiOpen,
3095 [
3096 AC_CHECK_HEADERS(msh3.h,
3097 curl_h3_msg="enabled (msh3)"
3098 MSH3_ENABLED=1
3099 AC_DEFINE(USE_MSH3, 1, [if msh3 is in use])
3100 AC_SUBST(USE_MSH3, [1])
3101 CURL_LIBRARY_PATH="$CURL_LIBRARY_PATH:$DIR_MSH3"
3102 export CURL_LIBRARY_PATH
3103 AC_MSG_NOTICE([Added $DIR_MSH3 to CURL_LIBRARY_PATH]),
3104 experimental="$experimental HTTP3"
3105 )
3106 ],
3107 dnl not found, revert back to clean variables
3108 LDFLAGS=$CLEANLDFLAGS
3109 CPPFLAGS=$CLEANCPPFLAGS
3110 LIBS=$CLEANLIBS
3111 )
30353112 fi
30363113
30373114 dnl **********************************************************************
35213598 dnl it doesn't actually work without -lpthread
35223599 USE_THREADS_POSIX=""
35233600 ;;
3524 *-ibm-aix*)
3525 dnl Check if compiler is xlC
3526 COMPILER_VERSION=`"$CC" -qversion 2>/dev/null`
3527 if test x"$COMPILER_VERSION" = "x"; then
3528 CFLAGS="$CFLAGS -pthread"
3529 else
3530 CFLAGS="$CFLAGS -qthreaded"
3531 fi
3532 ;;
35333601 *)
3534 CFLAGS="$CFLAGS -pthread"
35353602 ;;
35363603 esac
35373604
35383605 dnl if it wasn't found without lib, search for it in pthread lib
35393606 if test "$USE_THREADS_POSIX" != "1"
35403607 then
3608 case $host in
3609 *-ibm-aix*)
3610 dnl Check if compiler is xlC
3611 COMPILER_VERSION=`"$CC" -qversion 2>/dev/null`
3612 if test x"$COMPILER_VERSION" = "x"; then
3613 CFLAGS="$CFLAGS -pthread"
3614 else
3615 CFLAGS="$CFLAGS -qthreaded"
3616 fi
3617 ;;
3618 *)
3619 CFLAGS="$CFLAGS -pthread"
3620 ;;
3621 esac
35413622 # assign PTHREAD for pkg-config use
35423623 PTHREAD=" -pthread"
35433624 AC_CHECK_LIB(pthread, pthread_create,
39264007 AC_MSG_RESULT(yes)
39274008 )
39284009
4010 dnl ************************************************************
4011 dnl switch on/off headers-api
4012 dnl
4013 AC_MSG_CHECKING([whether to support headers-api])
4014 AC_ARG_ENABLE(headers-api,
4015 AS_HELP_STRING([--enable-headers-api],[Enable headers-api support])
4016 AS_HELP_STRING([--disable-headers-api],[Disable headers-api support]),
4017 [ case "$enableval" in
4018 yes)
4019 AC_MSG_RESULT(yes)
4020 AC_DEFINE(USE_HEADERS_API, 1, [enable headers-api])
4021 curl_headers_msg="enabled";
4022 ;;
4023 *) AC_MSG_RESULT(no)
4024 ;;
4025 esac ],
4026 AC_MSG_RESULT(no)
4027 )
4028
39294029 dnl only check for HSTS if there's SSL present
39304030 if test -n "$SSL_ENABLED"; then
39314031
41214221 SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP2"
41224222 fi
41234223
4124 if test "x$USE_NGTCP2" = "x1" -o "x$USE_QUICHE" = "x1"; then
4224 if test "x$USE_NGTCP2" = "x1" -o "x$USE_QUICHE" = "x1" \
4225 -o "x$USE_MSH3" = "x1"; then
41254226 SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP3"
41264227 fi
41274228
42844385 lib/Makefile \
42854386 scripts/Makefile \
42864387 lib/libcurl.vers \
4388 lib/libcurl.plist \
42874389 tests/Makefile \
42884390 tests/certs/Makefile \
42894391 tests/certs/scripts/Makefile \
43404442 RTMP: ${curl_rtmp_msg}
43414443 PSL: ${curl_psl_msg}
43424444 Alt-svc: ${curl_altsvc_msg}
4445 Headers API: ${curl_headers_msg}
43434446 HSTS: ${curl_hsts_msg}
43444447 HTTP1: ${curl_h1_msg}
43454448 HTTP2: ${curl_h2_msg}
5151 [Harbour](https://github.com/vszakats/hb/tree/main/contrib/hbcurl) Written by Viktor Szakats
5252
5353 [Haskell](https://hackage.haskell.org/package/curl) Written by Galois, Inc
54
55 [Hollywood](https://www.hollywood-mal.com/download.html) hURL by Andreas Falkenhahn
5456
5557 [Java](https://github.com/pjlegato/curl-java)
5658
6464 debug dump with your bug report. The output you get by using the `-v` or
6565 `--trace` options.
6666
67 If curl crashed, causing a core dump (in unix), there is hardly any use to
67 If curl crashed, causing a core dump (in Unix), there is hardly any use to
6868 send that huge file to anyone of us. Unless we have the same system setup as
6969 you, we cannot do much with it. Instead, we ask you to get a stack trace and
7070 send that (much smaller) output to us instead.
127127
128128 The list that is presented is the stack trace. If everything worked, it is
129129 supposed to contain the chain of functions that were called when curl
130 crashed. Include the stack trace with your detailed bug report. it will help a
130 crashed. Include the stack trace with your detailed bug report, it will help a
131131 lot.
132132
133133 ## Bugs in libcurl bindings
519519 documentation](https://docs.microsoft.com/en-us/windows/win32/secauthn/tls-cipher-suites-in-windows-server-2022).
520520 Note that the supported ciphers in this case follow the OS version, so if you
521521 are running an outdated OS you might still be supporting weak ciphers.
522
523 ## BearSSL
524
525 BearSSL ciphers can be specified by either the OpenSSL name (`ECDHE-RSA-AES128-GCM-SHA256`) or the IANA name (`TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256`).
526
527 Since BearSSL 0.1:
528
529 `DES-CBC3-SHA`
530 `AES128-SHA`
531 `AES256-SHA`
532 `AES128-SHA256`
533 `AES256-SHA256`
534 `AES128-GCM-SHA256`
535 `AES256-GCM-SHA384`
536 `ECDH-ECDSA-DES-CBC3-SHA`
537 `ECDH-ECDSA-AES128-SHA`
538 `ECDH-ECDSA-AES256-SHA`
539 `ECDHE-ECDSA-DES-CBC3-SHA`
540 `ECDHE-ECDSA-AES128-SHA`
541 `ECDHE-ECDSA-AES256-SHA`
542 `ECDH-RSA-DES-CBC3-SHA`
543 `ECDH-RSA-AES128-SHA`
544 `ECDH-RSA-AES256-SHA`
545 `ECDHE-RSA-DES-CBC3-SHA`
546 `ECDHE-RSA-AES128-SHA`
547 `ECDHE-RSA-AES256-SHA`
548 `ECDHE-ECDSA-AES128-SHA256`
549 `ECDHE-ECDSA-AES256-SHA384`
550 `ECDH-ECDSA-AES128-SHA256`
551 `ECDH-ECDSA-AES256-SHA384`
552 `ECDHE-RSA-AES128-SHA256`
553 `ECDHE-RSA-AES256-SHA384`
554 `ECDH-RSA-AES128-SHA256`
555 `ECDH-RSA-AES256-SHA384`
556 `ECDHE-ECDSA-AES128-GCM-SHA256`
557 `ECDHE-ECDSA-AES256-GCM-SHA384`
558 `ECDH-ECDSA-AES128-GCM-SHA256`
559 `ECDH-ECDSA-AES256-GCM-SHA384`
560 `ECDHE-RSA-AES128-GCM-SHA256`
561 `ECDHE-RSA-AES256-GCM-SHA384`
562 `ECDH-RSA-AES128-GCM-SHA256`
563 `ECDH-RSA-AES256-GCM-SHA384`
564
565 Since BearSSL 0.2:
566
567 `ECDHE-RSA-CHACHA20-POLY1305`
568 `ECDHE-ECDSA-CHACHA20-POLY1305`
569
570 Since BearSSL 0.6:
571
572 `AES128-CCM`
573 `AES256-CCM`
574 `AES128-CCM8`
575 `AES256-CCM8`
576 `ECDHE-ECDSA-AES128-CCM`
577 `ECDHE-ECDSA-AES256-CCM`
578 `ECDHE-ECDSA-AES128-CCM8`
579 `ECDHE-ECDSA-AES256-CCM8`
88 tastes satisfied.
99
1010 Our C code has a few style rules. Most of them are verified and upheld by the
11 `lib/checksrc.pl` script. Invoked with `make checksrc` or even by default by
12 the build system when built after `./configure --enable-debug` has been used.
11 `scripts/checksrc.pl` script. Invoked with `make checksrc` or even by default
12 by the build system when built after `./configure --enable-debug` has been
13 used.
1314
1415 It is normally not a problem for anyone to follow the guidelines, as you just
1516 need to copy the style already used in the source code and there are no
1313 - NSS has very few users outside of curl as well (primarily Firefox)
1414 - NSS is harder than ever to find documentation for
1515 - NSS was always "best" used with Red Hat Linux when they provided additional
16 features on top of the regular NSS that isn't shipped by the vanilla library
16 features on top of the regular NSS that is not shipped by the vanilla library
1717
1818 Starting in 7.82.0, building curl to use NSS configure requires the additional
1919 flag --with-nss-deprecated in an attempt to highlight these plans.
8383 char *Curl_dyn_ptr(const struct dynbuf *s);
8484 ```
8585
86 Returns a `char *` to the buffer if it has a length, otherwise a NULL. Since
87 the buffer may be reallocated, this pointer should not be trusted or used
88 anymore after the next buffer manipulation call.
86 Returns a `char *` to the buffer if it has a length, otherwise may return
87 NULL. Since the buffer may be reallocated, this pointer should not be trusted
88 or used anymore after the next buffer manipulation call.
8989
9090 ## uptr
9191
9393 unsigned char *Curl_dyn_uptr(const struct dynbuf *s);
9494 ```
9595
96 Returns an `unsigned char *` to the buffer if it has a length, otherwise a
97 NULL. Since the buffer may be reallocated, this pointer should not be trusted
98 or used anymore after the next buffer manipulation call.
96 Returns an `unsigned char *` to the buffer if it has a length, otherwise may
97 return NULL. Since the buffer may be reallocated, this pointer should not be
98 trusted or used anymore after the next buffer manipulation call.
9999
100100 ## len
101101
1919
2020 - The Hyper HTTP backend
2121 - HTTP/3 support and options
22 - CURLSSLOPT_NATIVE_CA (No configure option, feature built in when supported)
22 - `CURLSSLOPT_NATIVE_CA` (No configure option, feature built in when supported)
23 - The headers API: `curl_easy_header` and `curl_easy_nextheader`.
4141 3.11 How do I POST with a different Content-Type?
4242 3.12 Why do FTP-specific features over HTTP proxy fail?
4343 3.13 Why do my single/double quotes fail?
44 3.14 Does curl support Javascript or PAC (automated proxy config)?
44 3.14 Does curl support JavaScript or PAC (automated proxy config)?
4545 3.15 Can I do recursive fetches with curl?
4646 3.16 What certificates do I need when I use SSL?
47 3.17 How do I list the root dir of an FTP server?
47 3.17 How do I list the root directory of an FTP server?
4848 3.18 Can I use curl to send a POST/PUT and not wait for a response?
4949 3.19 How do I get HTTP from a host using a specific IP address?
5050 3.20 How to SFTP from my user's home directory?
5555 4.2 Why do I get problems when I use & or % in the URL?
5656 4.3 How can I use {, }, [ or ] to specify multiple URLs?
5757 4.4 Why do I get downloaded data even though the web page does not exist?
58 4.5 Why do I get return code XXX from a HTTP server?
58 4.5 Why do I get return code XXX from an HTTP server?
5959 4.5.1 "400 Bad Request"
6060 4.5.2 "401 Unauthorized"
6161 4.5.3 "403 Forbidden"
224224 implement it for you, that is not a friendly attitude. We spend a
225225 considerable time already on maintaining and developing curl. In order to
226226 get more out of us, you should consider trading in some of your time and
227 effort in return. Simply go to the GitHub repo which resides at
227 effort in return. Simply go to the GitHub repository which resides at
228228 https://github.com/curl/curl, fork the project, and create pull requests
229229 with your proposed changes.
230230
326326 In the cURL project we have decided not to attempt to keep this file updated
327327 (or even present) since deciding what to add to a ca cert bundle is an
328328 undertaking we have not been ready to accept, and the one we can get from
329 Mozilla is perfectly fine so there's no need to duplicate that work.
329 Mozilla is perfectly fine so there is no need to duplicate that work.
330330
331331 Today, with many services performed over HTTPS, every operating system
332332 should come with a default ca cert bundle that can be deemed somewhat
340340
341341 1.12 I have a problem who, can I chat with?
342342
343 There's a bunch of friendly people hanging out in the #curl channel on the
343 There is a bunch of friendly people hanging out in the #curl channel on the
344344 IRC network libera.chat. If you are polite and nice, chances are good that
345345 you can get -- or provide -- help instantly.
346346
433433
434434 3.1 curl: (1) SSL is disabled, https: not supported
435435
436 If you get this output when trying to get anything from a https:// server,
436 If you get this output when trying to get anything from an https:// server,
437437 it means that the instance of curl/libcurl that you are using was built
438438 without support for this protocol.
439439
492492
493493 To curl, all contents are alike. It does not matter how the page was
494494 generated. It may be ASP, PHP, Perl, shell-script, SSI or plain HTML
495 files. There's no difference to curl and it does not even know what kind of
495 files. There is no difference to curl and it does not even know what kind of
496496 language that generated the page.
497497
498 See also item 3.14 regarding javascript.
498 See also item 3.14 regarding JavaScript.
499499
500500 3.7 Can I use curl to delete/rename a file through FTP?
501501
563563
564564 3.12 Why do FTP-specific features over HTTP proxy fail?
565565
566 Because when you use a HTTP proxy, the protocol spoken on the network will
567 be HTTP, even if you specify a FTP URL. This effectively means that you
566 Because when you use an HTTP proxy, the protocol spoken on the network will
567 be HTTP, even if you specify an FTP URL. This effectively means that you
568568 normally cannot use FTP-specific features such as FTP upload and FTP quote
569569 etc.
570570
596596 Remember that curl works and runs on more operating systems than most single
597597 individuals have ever tried.
598598
599 3.14 Does curl support Javascript or PAC (automated proxy config)?
600
601 Many web pages do magic stuff using embedded Javascript. curl and libcurl
599 3.14 Does curl support JavaScript or PAC (automated proxy config)?
600
601 Many web pages do magic stuff using embedded JavaScript. curl and libcurl
602602 have no built-in support for that, so it will be treated just like any other
603603 contents.
604604
605605 .pac files are a Netscape invention and are sometimes used by organizations
606606 to allow them to differentiate which proxies to use. The .pac contents is
607 just a Javascript program that gets invoked by the browser and that returns
608 the name of the proxy to connect to. Since curl does not support Javascript,
607 just a JavaScript program that gets invoked by the browser and that returns
608 the name of the proxy to connect to. Since curl does not support JavaScript,
609609 it cannot support .pac proxy configuration either.
610610
611 Some workarounds usually suggested to overcome this Javascript dependency:
612
613 Depending on the Javascript complexity, write up a script that translates it
611 Some workarounds usually suggested to overcome this JavaScript dependency:
612
613 Depending on the JavaScript complexity, write up a script that translates it
614614 to another language and execute that.
615615
616 Read the Javascript code and rewrite the same logic in another language.
617
618 Implement a Javascript interpreter, people have successfully used the
619 Mozilla Javascript engine in the past.
616 Read the JavaScript code and rewrite the same logic in another language.
617
618 Implement a JavaScript interpreter, people have successfully used the
619 Mozilla JavaScript engine in the past.
620620
621621 Ask your admins to stop this, for a static proxy setup or similar.
622622
667667 refused access. You then need to explicitly disable the verification to
668668 connect to the server.
669669
670 3.17 How do I list the root dir of an FTP server?
670 3.17 How do I list the root directory of an FTP server?
671671
672672 There are two ways. The way defined in the RFC is to use an encoded slash
673 in the first path part. List the "/tmp" dir like this:
673 in the first path part. List the "/tmp" directory like this:
674674
675675 curl ftp://ftp.sunet.se/%2ftmp/
676676
736736 In normal circumstances, -X should hardly ever be used.
737737
738738 By default you use curl without explicitly saying which request method to
739 use when the URL identifies a HTTP transfer. If you just pass in a URL like
739 use when the URL identifies an HTTP transfer. If you just pass in a URL like
740740 "curl http://example.com" it will use GET. If you use -d or -F curl will use
741741 POST, -I will cause a HEAD and -T will make it a PUT.
742742
764764
765765 4.2 Why do I get problems when I use & or % in the URL?
766766
767 In general unix shells, the & symbol is treated specially and when used, it
767 In general Unix shells, the & symbol is treated specially and when used, it
768768 runs the specified command in the background. To safely send the & as a part
769769 of a URL, you should quote the entire URL by using single (') or double (")
770770 quotes around it. Similar problems can also occur on some shells with other
806806 By using the --fail option you can tell curl explicitly to not get any data
807807 if the HTTP return code does not say success.
808808
809 4.5 Why do I get return code XXX from a HTTP server?
809 4.5 Why do I get return code XXX from an HTTP server?
810810
811811 RFC2616 clearly explains the return codes. This is a short transcript. Go
812812 read the RFC for exact details:
958958 curl supports HTTP redirects well (see item 3.8). Browsers generally support
959959 at least two other ways to perform redirects that curl does not:
960960
961 Meta tags. You can write a HTML tag that will cause the browser to redirect
961 Meta tags. You can write an HTML tag that will cause the browser to redirect
962962 to another given URL after a certain time.
963963
964 Javascript. You can write a Javascript program embedded in a HTML page that
964 JavaScript. You can write a JavaScript program embedded in an HTML page that
965965 redirects the browser to another given URL.
966966
967967 There is no way to make curl follow these redirects. You must either
977977 the control connection and will therefore immediately connect and try to
978978 speak SSL. FTPS:// connections default to port 990.
979979
980 To use explicit FTPS, you use a FTP:// URL and the --ftp-ssl option (or one
980 To use explicit FTPS, you use an FTP:// URL and the --ftp-ssl option (or one
981981 of its related flavors). This is the most common method, and the one
982982 mandated by RFC4217. This kind of connection will then of course use the
983983 standard FTP port 21 by default.
12111211 5.8 libcurl.so.X: open failed: No such file or directory
12121212
12131213 This is an error message you might get when you try to run a program linked
1214 with a shared version of libcurl and your run-time linker (ld.so) could not
1214 with a shared version of libcurl and your runtime linker (ld.so) could not
12151215 find the shared library named libcurl.so.X. (Where X is the number of the
12161216 current libcurl ABI, typically 3 or 4).
12171217
12201220 They are usually:
12211221
12221222 * Add an option to the linker command line that specify the hard-coded path
1223 the run-time linker should check for the lib (usually -R)
1223 the runtime linker should check for the lib (usually -R)
12241224
12251225 * Set an environment variable (LD_LIBRARY_PATH for example) where ld.so
12261226 should check for libs
12271227
12281228 * Adjust the system's config to check for libs in the directory where you have
1229 put the dir (like Linux's /etc/ld.so.conf)
1229 put the library (like Linux's /etc/ld.so.conf)
12301230
12311231 'man ld.so' and 'man ld' will tell you more details
12321232
13241324 to list the files.
13251325
13261326 The follow-up question tends to be how is a program supposed to parse the
1327 directory listing. How does it know what's a file and what's a dir and what's
1328 a symlink etc. If the FTP server supports the MLSD command then it will
1329 return data in a machine-readable format that can be parsed for type. The
1330 types are specified by RFC3659 section 7.5.1. If MLSD is not supported then
1331 you have to work with what you are given. The LIST output format is entirely
1332 at the server's own liking and the NLST output does not reveal any types and
1333 in many cases does not even include all the directory entries. Also, both LIST
1334 and NLST tend to hide unix-style hidden files (those that start with a dot)
1335 by default so you need to do "LIST -a" or similar to see them.
1327 directory listing. How does it know what's a file and what's a directory and
1328 what's a symlink etc. If the FTP server supports the MLSD command then it
1329 will return data in a machine-readable format that can be parsed for type.
1330 The types are specified by RFC3659 section 7.5.1. If MLSD is not supported
1331 then you have to work with what you are given. The LIST output format is
1332 entirely at the server's own liking and the NLST output does not reveal any
1333 types and in many cases does not even include all the directory entries.
1334 Also, both LIST and NLST tend to hide unix-style hidden files (those that
1335 start with a dot) by default so you need to do "LIST -a" or similar to see
1336 them.
13361337
13371338 Example - List only directories.
13381339 ftp.funet.fi supports MLSD and ftp.kernel.org does not:
13671368 5.17 Can I write a server with libcurl?
13681369
13691370 No. libcurl offers no functions or building blocks to build any kind of
1370 internet protocol server. libcurl is only a client-side library. For server
1371 Internet protocol server. libcurl is only a client-side library. For server
13711372 libraries, you need to continue your search elsewhere but there exist many
13721373 good open source ones out there for most protocols you could want a server
13731374 for. There are also really good stand-alone servers that have been tested
1374 and proven for many years. There's no need for you to reinvent them.
1375 and proven for many years. There is no need for you to reinvent them.
13751376
13761377 5.18 Does libcurl use threads?
13771378
15041505
15051506 8.1 Why does curl use C89?
15061507
1507 As with everything in curl, there's a history and we keep using what we have
1508 As with everything in curl, there is a history and we keep using what we have
15081509 used before until someone brings up the subject and argues for and works on
15091510 changing it.
15101511
15341535 stable, we will never risk anything by rewriting a lot of things in one go.
15351536 That said, we can certainly offer more and more optional backends written in
15361537 other languages, as long as those backends can be plugged in at build-time.
1537 Back-ends can be written in any language, but should probably provide APIs
1538 Backends can be written in any language, but should probably provide APIs
15381539 usable from C to ease integration and transition.
2121 - "standard" proxy environment variables support
2222 - compiles on win32 (reported builds on 70+ operating systems)
2323 - selectable network interface for outgoing traffic
24 - IPv6 support on unix and Windows
24 - IPv6 support on Unix and Windows
2525 - happy eyeballs dual-stack connects
2626 - persistent connections
2727 - SOCKS 4 + 5 support, with or without local name resolving
197197
198198 ## MQTT
199199
200 - Subscribe to and publish topics using url scheme `mqtt://broker/topic`
200 - Subscribe to and publish topics using URL scheme `mqtt://broker/topic`
201201
202202 ## Footnotes
203203
410410 2021
411411 ----
412412
413 February 3: curl 7.75.0 ships with support for Hyper is a HTTP backend
413 February 3: curl 7.75.0 ships with support for Hyper as an HTTP backend
414414
415415 March 31: curl 7.76.0 ships with support for rustls
416416
417417 July: HSTS is supported
418
419 2022
420 ----
421
422 March: added --json, removed mesalink support
423
424 Public curl releases: 206
425 Command line options: 245
426 curl_easy_setopt() options: 295
427 Public functions in libcurl: 86
428 Contributors: 2601
429
430 The curl.se website serves 16,500 GB/month over 462M requests, the
431 official docker image has been pulled 4,098,015,431 times.
11
22 ## Cookie overview
33
4 Cookies are `name=contents` pairs that a HTTP server tells the client to
4 Cookies are `name=contents` pairs that an HTTP server tells the client to
55 hold and then the client sends back those to the server on subsequent
66 requests to the same domains and paths for which the cookies were set.
77
110110 `CURLOPT_COOKIELIST`
111111
112112 Provide detailed information about a single cookie to add to the internal
113 storage of cookies. Pass in the cookie as a HTTP header with all the details
114 set, or pass in a line from a Netscape cookie file. This option can also be
115 used to flush the cookies etc.
113 storage of cookies. Pass in the cookie as an HTTP header with all the
114 details set, or pass in a line from a Netscape cookie file. This option can
115 also be used to flush the cookies etc.
116116
117117 `CURLINFO_COOKIELIST`
118118
119119 Extract cookie information from the internal cookie storage as a linked
120120 list.
121121
122 ## Cookies with javascript
122 ## Cookies with JavaScript
123123
124 These days a lot of the web is built up by javascript. The webbrowser loads
125 complete programs that render the page you see. These javascript programs
124 These days a lot of the web is built up by JavaScript. The webbrowser loads
125 complete programs that render the page you see. These JavaScript programs
126126 can also set and access cookies.
127127
128128 Since curl and libcurl are plain HTTP clients without any knowledge of or
129 capability to handle javascript, such cookies will not be detected or used.
129 capability to handle JavaScript, such cookies will not be detected or used.
130130
131131 Often, if you want to mimic what a browser does on such websites, you can
132132 record web browser HTTP traffic when using such a site and then repeat the
7676 attempt to re-use existing HTTP/2 connections and just add a new stream over
7777 that when doing subsequent parallel requests.
7878
79 While libcurl sets up a connection to a HTTP server there is a period during
79 While libcurl sets up a connection to an HTTP server there is a period during
8080 which it does not know if it can pipeline or do multiplexing and if you add new
8181 transfers in that period, libcurl will default to start new connections for
8282 those transfers. With the new option `CURLOPT_PIPEWAIT` (added in 7.43.0), you
1717 [ngtcp2](https://github.com/ngtcp2/ngtcp2)
1818
1919 [quiche](https://github.com/cloudflare/quiche)
20
21 [msquic](https://github.com/microsoft/msquic) & [msh3](https://github.com/nibanks/msh3)
2022
2123 ## Experimental
2224
135137
136138 If `make install` results in `Permission denied` error, you will need to prepend it with `sudo`.
137139
140 # msh3 (msquic) version
141
142 ## Build Linux (with quictls fork of OpenSSL)
143
144 Build msh3:
145
146 % git clone -b v0.1.0 --single-branch --recursive https://github.com/nibanks/msh3
147 % cd msh3 && mkdir build && cd build
148 % cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
149 % cmake --build .
150 % cmake --install .
151
152 Build curl:
153
154 % git clone https://github.com/curl/curl
155 % cd curl
156 % autoreconf -fi
157 % ./configure LDFLAGS="-Wl,-rpath,/usr/local/lib" --with-msh3=/usr/local --with-openssl
158 % make
159 % make install
160
161 Run from `/usr/local/bin/curl`.
162
163 ## Build Windows
164
165 Build msh3:
166
167 % git clone -b v0.2.0 --single-branch --recursive https://github.com/nibanks/msh3
168 % cd msh3 && mkdir build && cd build
169 % cmake -G 'Visual Studio 17 2022' -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
170 % cmake --build . --config Release
171 % cmake --install . --config Release
172
173 **Note** - On Windows, Schannel will be used for TLS support by default. If
174 you with to use (the quictls fork of) OpenSSL, specify the `-DQUIC_TLS=openssl`
175 option to the generate command above. Also note that OpenSSL brings with it an
176 additional set of build dependencies not specified here.
177
178 Build curl (in [Visual Studio Command prompt](../winbuild/README.md#open-a-command-prompt)):
179
180 % git clone https://github.com/curl/curl
181 % cd curl/winbuild
182 % nmake /f Makefile.vc mode=dll WITH_MSH3=dll MSH3_PATH="C:/Program Files/msh3" MACHINE=x64
183
184 **Note** - If you encounter a build error with `tool_hugehelp.c` being missing,
185 rename `tool_hugehelp.c.cvs` in the same directory to `tool_hugehelp.c` and
186 then run `nmake` again.
187
188 Run in the `C:/Program Files/msh3/lib` directory, copy `curl.exe` to that
189 directory, or copy `msquic.dll` and `msh3.dll` from that directory to the
190 `curl.exe` directory. For example:
191
192 % C:\Program Files\msh3\lib> F:\curl\builds\libcurl-vc-x64-release-dll-ipv6-sspi-schannel-msh3\bin\curl.exe --http3 https://www.google.com
193
138194 # `--http3`
139195
140196 Use HTTP/3 directly:
156212 This is not advice on how to run anything in production. This is for
157213 development and experimenting.
158214
159 ## Prereqs
215 ## Prerequisite(s)
160216
161217 An existing local HTTP/1.1 server that hosts files. Preferably also a few huge
162218 ones. You can easily create huge local files like `truncate -s=8G 8GB` - they
163 are huge but do not occupy that much space on disk since they're just a big
164 hole.
219 are huge but do not occupy that much space on disk since they are just big
220 holes.
165221
166222 In my Debian setup I just installed **apache2**. It runs on port 80 and has a
167223 document root in `/var/www/html`. I can get the 8GB file from it with `curl
168224 localhost/8GB -o dev/null`
169225
170 In this description we setup and run a HTTP/3 reverse-proxy in front of the
226 In this description we setup and run an HTTP/3 reverse-proxy in front of the
171227 HTTP/1 server.
172228
173229 ## Setup
201257 single binary in a separate directory if you prefer.
202258
203259 In the same directory you put caddy, create a `Caddyfile` with the following
204 content to run a HTTP/3 reverse-proxy on port 7443:
260 content to run an HTTP/3 reverse-proxy on port 7443:
205261 ~~~
206262 {
207263 auto_https disable_redirects
1717
1818 ## build curl with hyper
1919
20 Build hyper and enable the C API:
20 Since March 3 2022, hyper needs the nightly rustc to build, which you may need
21 to install first with:
22
23 % rustup toolchain install nightly
24
25 Then build hyper and enable its C API like this:
2126
2227 % git clone https://github.com/hyperium/hyper
2328 % cd hyper
24 % RUSTFLAGS="--cfg hyper_unstable_ffi" cargo build --features client,http1,http2,ffi
29 % RUSTFLAGS="--cfg hyper_unstable_ffi" cargo +nightly rustc --features client,http1,http2,ffi -Z unstable-options --crate-type cdylib
2530
2631 Build curl to use hyper's C API:
2732
5055 - `CURLOPT_IGNORE_CONTENT_LENGTH`
5156 - `--raw` and disabling `CURLOPT_HTTP_TRANSFER_DECODING`
5257 - RTSP
53 - hyper is much stricter about what HTTP header contents it allow in requests
58 - hyper is much stricter about what HTTP header contents it allows
5459 - HTTP/0.9
60 - HTTP/2 upgrade using HTTP:// URLs. Aka 'h2c'
5561
5662 ## Remaining issues
5763
8383
8484 CPPFLAGS="-I/path/to/ssl/include" LDFLAGS="-L/path/to/ssl/lib" ./configure
8585
86 If you have shared SSL libs installed in a directory where your run-time
86 If you have shared SSL libs installed in a directory where your runtime
8787 linker does not find them (which usually causes configure failures), you can
88 provide this option to gcc to set a hard-coded path to the run-time linker:
88 provide this option to gcc to set a hard-coded path to the runtime linker:
8989
9090 LDFLAGS=-Wl,-R/usr/local/ssl/lib ./configure --with-openssl
9191
125125
126126 # Windows
127127
128 ## Building Windows DLLs and C run-time (CRT) linkage issues
128 ## Building Windows DLLs and C runtime (CRT) linkage issues
129129
130130 As a general rule, building a DLL with static CRT linkage is highly
131131 discouraged, and intermixing CRTs in the same app is something to avoid at
148148
149149 ## MingW32
150150
151 Make sure that MinGW32's bin dir is in the search path, for example:
151 Make sure that MinGW32's bin directory is in the search path, for example:
152152
153153 ```cmd
154154 set PATH=c:\mingw32\bin;%PATH%
193193
194194 ## Cygwin
195195
196 Almost identical to the unix installation. Run the configure script in the
196 Almost identical to the Unix installation. Run the configure script in the
197197 curl source tree root with `sh configure`. Make sure you have the `sh`
198198 executable in `/bin/` or you will see the configure fail toward the end.
199199
522522 those features to fail. The test harness can be manually forced to skip the
523523 relevant tests by specifying certain key words on the `runtests.pl` command
524524 line. Following is a list of appropriate key words for those configure options
525 that aren't automatically detected:
525 that are not automatically detected:
526526
527527 - `--disable-cookies` !cookies
528528 - `--disable-dateparse` !RETRY-AFTER !CURLOPT_TIMECONDITION !CURLINFO_FILETIME !If-Modified-Since !getdate !-z
157157
158158 18. HTTP/3
159159 18.1 If the HTTP/3 server closes connection during upload curl hangs
160 18.8 HTTP/3 does not support client certs
160 18.2 Transfer closed with n bytes remaining to read
161161 18.9 connection migration does not work
162162
163163 ==============================================================================
204204
205205 1.7 Deflate error after all content was received
206206
207 There's a situation where we can get an error in a HTTP response that is
207 There's a situation where we can get an error in an HTTP response that is
208208 compressed, when that error is detected after all the actual body contents
209209 have been received and delivered to the application. This is tricky, but is
210210 ultimately a broken server.
223223
224224 1.11 CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM
225225
226 I'm using libcurl to POST form data using a FILE* with the CURLFORM_STREAM
227 option of curl_formadd(). I have noticed that if the connection drops at just
228 the right time, the POST is reattempted without the data from the file. It
229 seems like the file stream position is not getting reset to the beginning of
230 the file. I found the CURLOPT_SEEKFUNCTION option and set that with a
231 function that performs an fseek() on the FILE*. However, setting that did not
232 seem to fix the issue or even get called. See
233 https://github.com/curl/curl/issues/768
226 When using libcurl to POST form data using a FILE* with the CURLFORM_STREAM
227 option of curl_formadd(). I notice that if the connection drops at just the
228 right time, the POST is reattempted without the data from the file. It seems
229 like the file stream position is not getting reset to the beginning of the
230 file. I found the CURLOPT_SEEKFUNCTION option and set that with a function
231 that performs an fseek() on the FILE*. However, setting that did not seem to
232 fix the issue or even get called. See https://github.com/curl/curl/issues/768
234233
235234
236235 2. TLS
632631
633632 7.1 FTP without or slow 220 response
634633
635 If a connection is made to a FTP server but the server then just never sends
634 If a connection is made to an FTP server but the server then just never sends
636635 the 220 response or otherwise is dead slow, libcurl will not acknowledge the
637636 connection timeout during that phase but only the "real" timeout - which may
638637 surprise users as it is probably considered to be the connect phase to most
11181117
11191118 See https://github.com/curl/curl/issues/6606
11201119
1121 18.8 HTTP/3 does not support client certs
1122
1123 aka "mutual authentication".
1124
1125 https://github.com/curl/curl/issues/7625
1120 18.2 Transfer closed with n bytes remaining to read
1121
1122 HTTP/3 transfers with the Jetty HTTP/3 server seem to not work.
1123
1124 https://github.com/curl/curl/issues/8523
11261125
11271126 18.9 connection migration does not work
11281127
4444
4545 1.2 Netiquette
4646
47 Netiquette is a common term for how to behave on the internet. Of course, in
47 Netiquette is a common term for how to behave on the Internet. Of course, in
4848 each particular group and subculture there will be differences in what is
4949 acceptable and what is considered good manners.
5050
299299 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
300300 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
301301 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
302 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
302303 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
303304 CYGPATH_W = @CYGPATH_W@
304305 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
316317 ETAGS = @ETAGS@
317318 EXEEXT = @EXEEXT@
318319 FGREP = @FGREP@
320 FILECMD = @FILECMD@
319321 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
320322 GCOV = @GCOV@
321323 GREP = @GREP@
391393 USE_LIBSSH = @USE_LIBSSH@
392394 USE_LIBSSH2 = @USE_LIBSSH2@
393395 USE_MBEDTLS = @USE_MBEDTLS@
396 USE_MSH3 = @USE_MSH3@
394397 USE_NGHTTP2 = @USE_NGHTTP2@
395398 USE_NGHTTP3 = @USE_NGHTTP3@
396399 USE_NGTCP2 = @USE_NGTCP2@
171171 Andrew Potter
172172 Andrew Robbins
173173 Andrew Wansink
174 Andrey Alifanov
174175 Andrey Gursky
175176 Andrey Labunets
176177 Andrii Moiseiev
182183 Andy Tsouladze
183184 Angus Mackay
184185 anio on github
186 anon00000000 on github
185187 anshnd on github
186188 Antarpreet Singh
187189 Anthon Pang
238240 Balaji Parasuram
239241 Balaji S Rao
240242 Balaji Salunke
243 Balakrishnan Balasubramanian
241244 Balazs Kovacsics
242245 Balint Szilakszi
243246 Barry Abrahamson
312315 Bodo Bergmann
313316 Bogdan Nicula
314317 Boris Rasin
318 Boris Verkhovskiy
315319 Brad Burdick
316320 Brad Fitzpatrick
317321 Brad Harder
421425 Christophe Dervieux
422426 Christophe Legry
423427 Christopher Conroy
428 Christopher Degawa
424429 Christopher Head
425430 Christopher Palow
426431 Christopher R. Palmer
447452 Colby Ranger
448453 Colin Blair
449454 Colin Hogben
455 Colin Leroy
450456 Colin O'Dell
451457 Colin Watson
452458 Colm Buckley
524530 Daniel Steinberg
525531 Daniel Stenberg
526532 Daniel Theron
533 Daniel Valenzuela
527534 Daniel Woelfel
528535 Daphne Luong
529536 Dario Nieuwenhuis
701708 elsamuko on github
702709 emanruse on github
703710 Emanuele Bovisio
711 Emanuele Torre
704712 Emil Engler
705713 Emil Lerner
706714 Emil Romanus
790798 Forrest Cahoon
791799 Francisco Moraes
792800 Francisco Munoz
801 Francisco Olarte
793802 Francisco Sedano
794803 Francois Petitjean
795804 Francois Rivard
938947 Henry Ludemann
939948 Henry Roeland
940949 Herve Amblard
950 HexTheDragon
941951 Hidemoto Nakada
942952 Himanshu Gupta
943953 Ho-chi Chen
956966 hydra3333 on github
957967 Hzhijun
958968 iammrtau on github
969 Ian Blanes
959970 Ian D Allen
960971 Ian Fette
961972 Ian Ford
10641075 Javier Navarro
10651076 Javier Sixto
10661077 Jay Austin
1078 Jay Dommaschk
10671079 Jayesh A Shah
10681080 Jaz Fresh
10691081 Jean Fabrice
10901102 Jeffrey Tolar
10911103 Jeffrey Walton
10921104 jeffrson on github
1105 Jenny Heino
10931106 Jens Finkhaeuser
10941107 Jens Rantil
10951108 Jens Schleusener
12561269 jungle-boogie on github
12571270 Junho Choi
12581271 Jurij Smakov
1272 jurisuk on github
12591273 Juro Bystricky
12601274 Justin Clift
12611275 Justin Ehlert
13811395 Lawrence Matthews
13821396 Lawrence Wagerfield
13831397 Leah Neukirchen
1398 Leandro Coutinho
13841399 Legoff Vincent
13851400 Lehel Bernadt
13861401 Leif W
13981413 Leszek Kubik
13991414 Li Xinwei
14001415 Liam Healy
1416 Liam Warfield
14011417 lijian996 on github
14021418 Lijo Antony
14031419 lilongyan-huawei on github
15601576 Matt Veenstra
15611577 Matt Witherspoon
15621578 Matt Wixson
1579 Matteo Baccan
15631580 Matteo Bignotti
15641581 Matteo Bignottignotti
15651582 Matteo Rocco
15901607 Maxime Legros
15911608 mbeifuss on github
15921609 mccormickt12 on github
1610 Median Median Stride
1611 mehatzri on github
15931612 Mehmet Bozkurt
15941613 Mekonikum
15951614 Melissa Mears
17291748 nianxuejie on github
17301749 Nic Roets
17311750 Nicholas Maniscalco
1751 Nick Banks
1752 Nick Coghlan
17321753 Nick Draffen
17331754 Nick Gimbrone
17341755 Nick Humfrey
18591880 Pavol Markovic
18601881 Pawel A. Gajda
18611882 Pawel Kierski
1883 Paweł Kowalski
18621884 Paweł Wegner
18631885 Pedro Larroy
18641886 Pedro Monreal
19441966 Quanah Gibson-Mount
19451967 Quentin Balland
19461968 Quinn Slack
1969 r-a-sattarov on github
19471970 R. Dennis Steed
19481971 Radek Zajic
19491972 Radoslav Georgiev
19982021 Rene Rebe
19992022 Reuven Wachtfogel
20002023 Reza Arbab
2024 Rianov Viacheslav
20012025 Ricardo Cadime
20022026 Ricardo Gomes
20032027 Ricardo Martins
20522076 Rob Ward
20532077 Robert A. Monat
20542078 Robert B. Harris
2079 Robert Brose
2080 Robert Charles Muir
20552081 Robert D. Young
20562082 Robert Dunaj
20572083 Robert Foreman
20642090 Robert Schumann
20652091 Robert Weaver
20662092 Robert Wruck
2093 Robin A. Meade
20672094 Robin Cornelius
20682095 Robin Douine
20692096 Robin Johnson
21472174 Sara Golemon
21482175 Saran Neti
21492176 Sascha Swiercy
2177 Sascha Zengler
21502178 Satadru Pramanik
21512179 Saul good
21522180 Saurav Babu
23142342 Taiyu Len
23152343 Taneli Vähäkangas
23162344 Tanguy Fautre
2345 Taras Kushnir
23172346 tarek112 on github
23182347 Tatsuhiro Tsujikawa
23192348 tawmoto on github
6363 4.1 HOST
6464 4.2 Alter passive/active on failure and retry
6565 4.3 Earlier bad letter detection
66 4.4 Support CURLOPT_PREQUOTE for dir listings too
6667 4.5 ASCII support
6768 4.6 GSSAPI via Windows SSPI
6869 4.7 STAT for LIST without data connection
7980 6.1 ditch stdin
8081 6.2 ditch telnet-specific select
8182 6.3 feature negotiation debug data
83 6.4 exit immediately upon connection if stdin is /dev/null
8284
8385 7. SMTP
8486 7.1 Passing NOTIFY option to CURLOPT_MAIL_RCPT
135137 17. SSH protocols
136138 17.1 Multiplexing
137139 17.2 Handle growing SFTP files
140 17.3 Read keys from ~/.ssh/id_ecdsa, id_ed25519
138141 17.4 Support CURLOPT_PREQUOTE
139142 17.5 SSH over HTTPS proxy with more backends
143 17.6 SFTP with SCP://
140144
141145 18. Command line tool
142146 18.1 sync
143147 18.2 glob posts
144 18.3 prevent file overwriting
145148 18.4 --proxycommand
146149 18.5 UTF-8 filenames in Content-Disposition
147150 18.6 Option to make -Z merge lined based outputs on stdout
180183 20.5 Add support for concurrent connections
181184 20.6 Use the RFC6265 test suite
182185 20.7 Support LD_PRELOAD on macOS
183 20.8 Run web-platform-tests url tests
186 20.8 Run web-platform-tests URL tests
184187
185188 21. MQTT
186189 21.1 Support rate-limiting
306309 reuse purpose it is verified that it is still alive.
307310
308311 Those connections may get closed by the server side for idleness or they may
309 get a HTTP/2 ping from the peer to verify that they are still alive. By adding
310 monitoring of the connections while in the pool, libcurl can detect dead
311 connections (and close them) better and earlier, and it can handle HTTP/2
312 pings to keep such ones alive even when not actively doing transfers on them.
312 get an HTTP/2 ping from the peer to verify that they are still alive. By
313 adding monitoring of the connections while in the pool, libcurl can detect
314 dead connections (and close them) better and earlier, and it can handle
315 HTTP/2 pings to keep such ones alive even when not actively doing transfers
316 on them.
313317
314318 1.16 Try to URL encode given URL
315319
529533
530534 Make the detection of (bad) %0d and %0a codes in FTP URL parts earlier in the
531535 process to avoid doing a resolve and connect in vain.
536
537 4.4 Support CURLOPT_PREQUOTE for dir listings too
538
539 The lack of support is mostly an oversight and requires the FTP state machine
540 to get updated to get fixed.
541
542 https://github.com/curl/curl/issues/8602
532543
533544 4.5 ASCII support
534545
625636
626637 Add telnet feature negotiation data to the debug callback as header data.
627638
639 6.4 exit immediately upon connection if stdin is /dev/null
640
641 If it did, curl could be used to probe if there's an server there listening
642 on a specific port. That is, the following command would exit immediately
643 after the connection is established with exit code 0:
644
645 curl -s --connect-timeout 2 telnet://example.com:80 </dev/null
628646
629647 7. SMTP
630648
911929
912930 https://github.com/curl/curl/issues/4344
913931
932 17.3 Read keys from ~/.ssh/id_ecdsa, id_ed25519
933
934 The libssh2 backend in curl is limited to only reading keys from id_rsa and
935 id_dsa, which makes it fail connecting to servers that use more modern key
936 types.
937
938 https://github.com/curl/curl/issues/8586
939
914940 17.4 Support CURLOPT_PREQUOTE
915941
916942 The two other QUOTE options are supported for SFTP, but this was left out for
923949 functionality with the libssh2 backend. Presumably, this support
924950 can/could be added for the other backends as well.
925951
952 17.6 SFTP with SCP://
953
954 OpenSSH 9 switched their 'scp' tool to speak SFTP under the hood. Going
955 forward it might be worth having curl or libcurl attempt SFTP if SCP fails to
956 follow suite.
957
926958 18. Command line tool
927959
928960 18.1 sync
938970
939971 Globbing support for -d and -F, as in 'curl -d "name=foo[0-9]" URL'.
940972 This is easily scripted though.
941
942 18.3 prevent file overwriting
943
944 Add an option that prevents curl from overwriting existing local files. When
945 used, and there already is an existing file with the target file name
946 (either -O or -o), a number should be appended (and increased if already
947 existing). So that index.html becomes first index.html.1 and then
948 index.html.2 etc.
949973
950974 18.4 --proxycommand
951975
11161140 18.21 retry on the redirected-to URL
11171141
11181142 When curl is told to --retry a failed transfer and follows redirects, it
1119 might get a HTTP 429 response from the redirected-to URL and not the original
1120 one, which then could make curl decide to rather retry the transfer on that
1121 URL only instead of the original operation to the original URL.
1143 might get an HTTP 429 response from the redirected-to URL and not the
1144 original one, which then could make curl decide to rather retry the transfer
1145 on that URL only instead of the original operation to the original URL.
11221146
11231147 Perhaps extra emphasized if the original transfer is a large POST that
11241148 redirects to a separate GET, and that GET is what gets the 529
12601284 properly. Look into making the preload support in runtests.pl portable such
12611285 that it uses DYLD_INSERT_LIBRARIES on macOS.
12621286
1263 20.8 Run web-platform-tests url tests
1264
1265 Run web-platform-tests url tests and compare results with browsers on wpt.fyi
1287 20.8 Run web-platform-tests URL tests
1288
1289 Run web-platform-tests URL tests and compare results with browsers on wpt.fyi
12661290
12671291 It would help us find issues to fix and help us document where our parser
12681292 differs from the WHATWG URL spec parsers.
2929 request a particular action, and then the server replies a few text lines
3030 before the actual requested content is sent to the client.
3131
32 The client, curl, sends a HTTP request. The request contains a method (like
32 The client, curl, sends an HTTP request. The request contains a method (like
3333 GET, POST, HEAD etc), a number of request headers and sometimes a request
3434 body. The HTTP server responds with a status line (indicating if things went
3535 well), response headers and most often also a response body. The "body" part
102102 The port number you specify in the URL is the number that the server uses to
103103 offer its services. Sometimes you may use a proxy, and then you may
104104 need to specify that proxy's port number separately from what curl needs to
105 connect to the server. Like when using a HTTP proxy on port 4321:
105 connect to the server. Like when using an HTTP proxy on port 4321:
106106
107107 curl --proxy http://proxy.example.org:4321 http://remote.example.org/
108108
206206
207207 ## Forms explained
208208
209 Forms are the general way a website can present a HTML page with fields for
209 Forms are the general way a website can present an HTML page with fields for
210210 the user to enter data in, and then press some kind of 'OK' or 'Submit'
211211 button to get that data sent to the server. The server then typically uses
212212 the posted data to decide how to act. Like using the entered words to search
350350
351351 ## PUT
352352
353 Perhaps the best way to upload data to a HTTP server is to use PUT. Then
353 Perhaps the best way to upload data to an HTTP server is to use PUT. Then
354354 again, this of course requires that someone put a program or script on the
355 server end that knows how to receive a HTTP PUT stream.
356
357 Put a file to a HTTP server with curl:
355 server end that knows how to receive an HTTP PUT stream.
356
357 Put a file to an HTTP server with curl:
358358
359359 curl --upload-file uploadfile http://www.example.com/receive.cgi
360360
385385
386386 ## Proxy Authentication
387387
388 Sometimes your HTTP access is only available through the use of a HTTP
389 proxy. This seems to be especially common at various companies. A HTTP proxy
388 Sometimes your HTTP access is only available through the use of an HTTP
389 proxy. This seems to be especially common at various companies. An HTTP proxy
390390 may require its own user and password to allow the client to get through to
391391 the Internet. To specify those with curl, run something like:
392392
415415
416416 ## Referer
417417
418 A HTTP request may include a 'referer' field (yes it is misspelled), which
418 An HTTP request may include a 'referer' field (yes it is misspelled), which
419419 can be used to tell from which URL the client got to this particular
420420 resource. Some programs/scripts check the referer field of requests to verify
421421 that this was not arriving from an external site or an unknown page. While
434434 applications use this information to decide how to display pages. Silly web
435435 programmers try to make different pages for users of different browsers to
436436 make them look the best possible for their particular browsers. They usually
437 also do different kinds of javascript, vbscript etc.
437 also do different kinds of JavaScript, VBScript etc.
438438
439439 At times, you will see that getting a page with curl will not return the same
440440 page that you see when getting the page with your browser. Then you know it
478478 Browsers typically support at least two other ways of redirects that curl
479479 does not: first the html may contain a meta refresh tag that asks the browser
480480 to load a specific URL after a set number of seconds, or it may use
481 javascript to do it.
481 JavaScript to do it.
482482
483483 # Cookies
484484
559559
560560 Curl supports encrypted fetches when built to use a TLS library and it can be
561561 built to use one out of a fairly large set of libraries - `curl -V` will show
562 which one your curl was built to use (if any!). To get a page from a HTTPS
562 which one your curl was built to use (if any!). To get a page from an HTTPS
563563 server, simply run curl like:
564564
565565 curl https://secure.example.com
571571 side certificates. All certificates are locked with a pass phrase, which you
572572 need to enter before the certificate can be used by curl. The pass phrase
573573 can be specified on the command line or if not, entered interactively when
574 curl queries for it. Use a certificate with curl on a HTTPS server like:
574 curl queries for it. Use a certificate with curl on an HTTPS server like:
575575
576576 curl --cert mycert.pem https://secure.example.com
577577
647647 make sure you got there through their login page) so you should make a habit
648648 of first getting the login-form page to capture the cookies set there.
649649
650 Some web-based login systems feature various amounts of javascript, and
650 Some web-based login systems feature various amounts of JavaScript, and
651651 sometimes they use such code to set or modify cookie contents. Possibly they
652652 do that to prevent programmed logins, like this manual describes how to...
653653 Anyway, if reading the code is not enough to let you repeat the behavior
654654 manually, capturing the HTTP requests done by your browsers and analyzing the
655655 sent cookies is usually a working method to work out how to shortcut the
656 javascript need.
656 JavaScript need.
657657
658658 In the actual `<form>` tag for the login, lots of sites fill-in
659659 random/session or otherwise secretly generated hidden tags and you may need
316316 separated by a question mark and when that field is not required an empty
317317 string with the question mark separator should be included.
318318
319 Search for the DN as `My Organisation`:
320
321 ldap://ldap.example.com/o=My%20Organisation
319 Search for the DN as `My Organization`:
320
321 ldap://ldap.example.com/o=My%20Organization
322322
323323 the same search but will only return postalAddress attributes:
324324
325 ldap://ldap.example.com/o=My%20Organisation?postalAddress
325 ldap://ldap.example.com/o=My%20Organization?postalAddress
326326
327327 Search for an empty DN and request information about the
328328 `rootDomainNamingContext` attribute for an Active Directory server:
234234 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
235235 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
236236 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
237 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
237238 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
238239 CYGPATH_W = @CYGPATH_W@
239240 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
251252 ETAGS = @ETAGS@
252253 EXEEXT = @EXEEXT@
253254 FGREP = @FGREP@
255 FILECMD = @FILECMD@
254256 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
255257 GCOV = @GCOV@
256258 GREP = @GREP@
326328 USE_LIBSSH = @USE_LIBSSH@
327329 USE_LIBSSH2 = @USE_LIBSSH2@
328330 USE_MBEDTLS = @USE_MBEDTLS@
331 USE_MSH3 = @USE_MSH3@
329332 USE_NGHTTP2 = @USE_NGHTTP2@
330333 USE_NGHTTP3 = @USE_NGHTTP3@
331334 USE_NGTCP2 = @USE_NGTCP2@
523526 next.d \
524527 no-alpn.d \
525528 no-buffer.d \
529 no-clobber.d \
526530 no-keepalive.d \
527531 no-npn.d \
528532 no-progress-meter.d \
586590 remote-name-all.d \
587591 remote-name.d \
588592 remote-time.d \
593 remove-on-error.d \
589594 request-target.d \
590595 request.d \
591596 resolve.d \
139139 next.d \
140140 no-alpn.d \
141141 no-buffer.d \
142 no-clobber.d \
142143 no-keepalive.d \
143144 no-npn.d \
144145 no-progress-meter.d \
202203 remote-name-all.d \
203204 remote-name.d \
204205 remote-time.d \
206 remove-on-error.d \
205207 request-target.d \
206208 request.d \
207209 resolve.d \
00 Long: cert-type
11 Protocols: TLS
22 Arg: <type>
3 Help: Certificate type (DER/PEM/ENG)
3 Help: Certificate type (DER/PEM/ENG/P12)
44 See-also: cert key key-type
55 Category: tls
66 Example: --cert-type PEM --cert file $URL
77 Added: 7.9.3
88 ---
99 Tells curl what type the provided client certificate is using. PEM, DER, ENG
10 and P12 are recognized types. If not specified, PEM is assumed.
10 and P12 are recognized types.
11
12 The default type depends on the TLS backend and is usually PEM, however for
13 Secure Transport and Schannel it is P12. If --cert is a pkcs11: URI then ENG is
14 the default type.
1115
1216 If this option is used several times, the last one will be used.
88 See-also: cookie-jar junk-session-cookies
99 Added: 4.9
1010 ---
11 Pass the data to the HTTP server in the Cookie header. It is supposedly
12 the data previously received from the server in a "Set-Cookie:" line. The
13 data should be in the format "NAME1=VALUE1; NAME2=VALUE2".
11 Pass the data to the HTTP server in the Cookie header. It is supposedly the
12 data previously received from the server in a "Set-Cookie:" line. The data
13 should be in the format "NAME1=VALUE1; NAME2=VALUE2". This makes curl use the
14 cookie header with this content explicitly in all outgoing request(s). If
15 multiple requests are done due to authentication, followed redirects or
16 similar, they will all get this cookie passed on.
1417
1518 If no '=' symbol is used in the argument, it is instead treated as a filename
1619 to read previously stored cookie from. This option also activates the cookie
00 Long: data-urlencode
11 Arg: <data>
2 Help: HTTP POST data url encoded
2 Help: HTTP POST data URL encoded
33 Protocols: HTTP
44 See-also: data data-raw
55 Added: 7.18.0
00 Long: disallow-username-in-url
1 Help: Disallow username in url
1 Help: Disallow username in URL
22 Protocols: HTTP
33 Added: 7.61.0
44 See-also: proto
55 Category: curl http
66 Example: --disallow-username-in-url $URL
77 ---
8 This tells curl to exit if passed a url containing a username. This is probably
9 most useful when the URL is being provided at run-time or similar.
8 This tells curl to exit if passed a URL containing a username. This is probably
9 most useful when the URL is being provided at runtime or similar.
88 ---
99 Select the OpenSSL crypto engine to use for cipher operations. Use --engine
1010 list to print a list of build-time supported engines. Note that not all (and
11 possibly none) of the engines may be available at run-time.
11 possibly none) of the engines may be available at runtime.
00 Long: fail
11 Short: f
22 Protocols: HTTP
3 Help: Fail silently (no output at all) on HTTP errors
3 Help: Fail fast with no output on HTTP errors
44 See-also: fail-with-body
55 Category: important http
66 Example: --fail $URL
77 Added: 4.0
88 ---
9 Fail silently (no output at all) on server errors. This is mostly done to
10 enable scripts etc to better deal with failed attempts. In normal cases
11 when an HTTP server fails to deliver a document, it returns an HTML document
12 stating so (which often also describes why and more). This flag will prevent
13 curl from outputting that and return error 22.
9 Fail fast with no output at all on server errors. This is useful to enable
10 scripts and users to better deal with failed attempts. In normal cases when an
11 HTTP server fails to deliver a document, it returns an HTML document stating
12 so (which often also describes why and more). This flag will prevent curl from
13 outputting that and return error 22.
1414
1515 This method is not fail-safe and there are occasions where non-successful
1616 response codes will slip through, especially when authentication is involved
348348 my $l = manpageify($k);
349349 $mstr .= sprintf "%s$l", $mstr?" and ":"";
350350 }
351 push @foot, overrides($standalone, "This option overrides $mstr. ");
351 push @foot, overrides($standalone,
352 "This option is mutually exclusive to $mstr. ");
352353 }
353354 if($examples[0]) {
354355 my $s ="";
2929 for each line in the input file. Using @- will make curl read the header file
3030 from stdin. Added in 7.55.0.
3131
32 You need --proxy-header to send custom headers intended for a HTTP
32 You need --proxy-header to send custom headers intended for an HTTP
3333 proxy. Added in 7.37.0.
3434
35 Passing on a "Transfer-Encoding: chunked" header when doing a HTTP request
35 Passing on a "Transfer-Encoding: chunked" header when doing an HTTP request
3636 with a request body, will make curl send the data using chunked encoding.
3737
3838 **WARNING**: headers set with this option will be set in all requests - even
99 Category: connection dns
1010 Example: --ipv4 $URL
1111 ---
12 This option tells curl to resolve names to IPv4 addresses only, and not for
13 example try IPv6.
12 This option tells curl to use IPv4 addresses only, and not for example try
13 IPv6.
99 Category: connection dns
1010 Example: --ipv6 $URL
1111 ---
12 This option tells curl to resolve names to IPv6 addresses only, and not for
13 example try IPv4.
12 This option tells curl to use IPv6 addresses only, and not for example try
13 IPv4.
2828 If this option is used more than once on the same command line, the additional
2929 data pieces will be concatenated to the previous before sending.
3030
31 The headers this option sets can be overriden with --header as usual.
31 The headers this option sets can be overridden with --header as usual.
88 This option sets the time a connection needs to remain idle before sending
99 keepalive probes and the time between individual keepalive probes. It is
1010 currently effective on operating systems offering the TCP_KEEPIDLE and
11 TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more). This
12 option has no effect if --no-keepalive is used.
11 TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more).
12 Keepalives are used by the TCP stack to detect broken networks on idle
13 connections. The number of missed keepalive probes before declaring the
14 connection down is OS dependent and is commonly 9 or 10. This option has no
15 effect if --no-keepalive is used.
1316
1417 If this option is used several times, the last one will be used. If
1518 unspecified, the option defaults to 60 seconds.
1717 as "pkcs11" if none was provided and the --key-type option will be set as
1818 "ENG" if none was provided.
1919
20 If curl is built against Secure Transport or Schannel then this option is
21 ignored for TLS protocols (HTTPS, etc). Those backends expect the private key
22 to be already present in the keychain or PKCS#12 file containing the
23 certificate.
24
2025 If this option is used several times, the last one will be used.
0 Long: no-clobber
1 Help: Do not overwrite files that already exist
2 Category: curl output
3 Added: 7.83.0
4 See-also: output remote-name
5 Example: --no-clobber --output local/dir/file $URL
6 ---
7 When used in conjunction with the --output, --remote-header-name,
8 --remote-name, or --remote-name-all options, curl avoids overwriting files
9 that already exist. Instead, a dot and a number gets appended to the name
10 of the file that would be created, up to filename.100 after which it will not
11 create any file.
12
13 Note that this is the negated option name documented. You can thus use
14 --clobber to enforce the clobbering, even if --remote-header-name or -J is
15 specified.
163163 .IP 21
164164 FTP quote error. A quote command returned error from the server.
165165 .IP 22
166 HTTP page not retrieved. The requested url was not found or returned another
166 HTTP page not retrieved. The requested URL was not found or returned another
167167 error with the HTTP error code being 400 or above. This return code only
168168 appears if --fail is used.
169169 .IP 23
1010 Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
1111 sent BEFORE the transfer takes place (just after the initial PWD command in an
1212 FTP transfer, to be exact). To make commands take place after a successful
13 transfer, prefix them with a dash '-'. To make commands be sent after curl
14 has changed the working directory, just before the transfer command(s), prefix
15 the command with a '+' (this is only supported for FTP). You may specify any
16 number of commands.
13 transfer, prefix them with a dash '-'.
14
15 (FTP only) To make commands be sent after curl has changed the working
16 directory, just before the file transfer command(s), prefix the command with a
17 '+'. This is not performed when a directory listing is performed.
18
19 You may specify any number of commands.
1720
1821 By default curl will stop at first failure. To make curl continue even if the
1922 command fails, prefix the command with an asterisk (*). Otherwise, if the
0 Long: remove-on-error
1 Help: Remove output file on errors
2 See-also: fail
3 Category: curl
4 Example: --remove-on-error -o output $URL
5 Added: 7.83.0
6 ---
7 When curl returns an error when told to save output in a local file, this
8 option removes that saved file before exiting. This prevents curl from
9 leaving a partial file in the case of an error during transfer.
10
11 If the output is not a file, this option has no effect.
55 Example: --sasl-authzid zid imap://example.com/
66 See-also: login-options
77 ---
8 Use this authorisation identity (authzid), during SASL PLAIN authentication,
8 Use this authorization identity (authzid), during SASL PLAIN authentication,
99 in addition to the authentication identity (authcid) as specified by --user.
1010
1111 If the option is not specified, the server will derive the authzid from the
2121 The output will be written to standard output, but this can be switched to
2222 standard error by using %{stderr}.
2323
24 EXPERIMENTAL feature: Output HTTP headers from the most recent request by
25 using \fB%header{name}\fP where \fBname\fP is the case insensitive name of the
26 header (without the trailing colon). The header contents are exactly as sent
27 over the network, with leading and trailing whitespace trimmed. Added in curl
28 7.83.0.
29
2430 .B NOTE:
2531 The %-symbol is a special symbol in the win32-environment, where all
2632 occurrences of % must be doubled when using this option.
4652 .B ftp_entry_path
4753 The initial path curl ended up in when logging on to the remote FTP
4854 server. (Added in 7.15.4)
55 .TP
56 .B header_json
57 EXPERIMENTAL feature.
58
59 A JSON object with all HTTP response headers from the recent transfer. Values
60 are provided as arrays, since in the case of multiple headers there can be
61 multiple values.
62
63 The header names provided in lowercase, listed in order of appearance over the
64 wire. Except for duplicated headers. They are grouped on the first occurrence
65 of that header, each value is presented in the JSON array.
4966 .TP
5067 .B http_code
5168 The numerical response code that was found in the last retrieved HTTP(S) or
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl-config 1 "November 04, 2020" "Curl 7.82.0" "curl-config manual"
22 .TH curl-config 1 "November 04, 2020" "Curl 7.83.0" "curl-config manual"
2323
2424 .SH NAME
2525 curl-config \- Get information about a libcurl installation
2121 .\"
2222 .\" DO NOT EDIT. Generated by the curl project gen.pl man page generator.
2323 .\"
24 .TH curl 1 "March 05 2022" "curl 7.82.0" "curl Manual"
24 .TH curl 1 "April 25 2022" "curl 7.83.0" "curl Manual"
2525 .SH NAME
2626 curl \- transfer a URL
2727 .SH SYNOPSIS
374374 See also \fI--pinnedpubkey\fP. Added in 7.41.0.
375375 .IP "\-\-cert-type <type>"
376376 (TLS) Tells curl what type the provided client certificate is using. PEM, DER, ENG
377 and P12 are recognized types. If not specified, PEM is assumed.
377 and P12 are recognized types.
378
379 The default type depends on the TLS backend and is usually PEM, however for
380 Secure Transport and Schannel it is P12. If \-\-cert is a pkcs11: URI then ENG is
381 the default type.
378382
379383 If this option is used several times, the last one will be used.
380384
637641
638642 See also \fI-b, --cookie\fP.
639643 .IP "\-b, \-\-cookie <data|filename>"
640 (HTTP) Pass the data to the HTTP server in the Cookie header. It is supposedly
641 the data previously received from the server in a "Set-Cookie:" line. The
642 data should be in the format "NAME1=VALUE1; NAME2=VALUE2".
644 (HTTP) Pass the data to the HTTP server in the Cookie header. It is supposedly the
645 data previously received from the server in a "Set-Cookie:" line. The data
646 should be in the format "NAME1=VALUE1; NAME2=VALUE2". This makes curl use the
647 cookie header with this content explicitly in all outgoing request(s). If
648 multiple requests are done due to authentication, followed redirects or
649 similar, they will all get this cookie passed on.
643650
644651 If no \(aq=' symbol is used in the argument, it is instead treated as a filename
645652 to read previously stored cookie from. This option also activates the cookie
854861 curl -d @filename https://example.com
855862 .fi
856863
857 See also \fI--data-binary\fP, \fI--data-urlencode\fP and \fI--data-raw\fP. This option overrides \fI-F, --form\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
864 See also \fI--data-binary\fP, \fI--data-urlencode\fP and \fI--data-raw\fP. This option is mutually exclusive to \fI-F, --form\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
858865 .IP "\-\-delegation <LEVEL>"
859866 (GSS/kerberos) Set LEVEL to tell the server what it is allowed to delegate when it
860867 comes to user credentials.
888895 curl -u name:password --digest https://example.com
889896 .fi
890897
891 See also \fI-u, --user\fP, \fI--proxy-digest\fP and \fI--anyauth\fP. This option overrides \fI--basic\fP and \fI--ntlm\fP and \fI--negotiate\fP.
898 See also \fI-u, --user\fP, \fI--proxy-digest\fP and \fI--anyauth\fP. This option is mutually exclusive to \fI--basic\fP and \fI--ntlm\fP and \fI--negotiate\fP.
892899 .IP "\-\-disable-eprt"
893900 (FTP) Tell curl to disable the use of the EPRT and LPRT commands when doing active
894901 FTP transfers. Curl will normally always first attempt to use EPRT, then LPRT
944951
945952 See also \fI-K, --config\fP.
946953 .IP "\-\-disallow-username-in-url"
947 (HTTP) This tells curl to exit if passed a url containing a username. This is probably
948 most useful when the URL is being provided at run-time or similar.
954 (HTTP) This tells curl to exit if passed a URL containing a username. This is probably
955 most useful when the URL is being provided at runtime or similar.
949956
950957 Example:
951958 .nf
10671074 .IP "\-\-engine <name>"
10681075 (TLS) Select the OpenSSL crypto engine to use for cipher operations. Use \-\-engine
10691076 list to print a list of build-time supported engines. Note that not all (and
1070 possibly none) of the engines may be available at run-time.
1077 possibly none) of the engines may be available at runtime.
10711078
10721079 Example:
10731080 .nf
11601167
11611168 See also \fI-f, --fail\fP. Added in 7.76.0.
11621169 .IP "\-f, \-\-fail"
1163 (HTTP) Fail silently (no output at all) on server errors. This is mostly done to
1164 enable scripts etc to better deal with failed attempts. In normal cases
1165 when an HTTP server fails to deliver a document, it returns an HTML document
1166 stating so (which often also describes why and more). This flag will prevent
1167 curl from outputting that and return error 22.
1170 (HTTP) Fail fast with no output at all on server errors. This is useful to enable
1171 scripts and users to better deal with failed attempts. In normal cases when an
1172 HTTP server fails to deliver a document, it returns an HTML document stating
1173 so (which often also describes why and more). This flag will prevent curl from
1174 outputting that and return error 22.
11681175
11691176 This method is not fail-safe and there are occasions where non-successful
11701177 response codes will slip through, especially when authentication is involved
13741381 curl --form "name=curl" --form "file=@loadthis" https://example.com
13751382 .fi
13761383
1377 See also \fI-d, --data\fP, \fI--form-string\fP and \fI--form-escape\fP. This option overrides \fI-d, --data\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
1384 See also \fI-d, --data\fP, \fI--form-string\fP and \fI--form-escape\fP. This option is mutually exclusive to \fI-d, --data\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
13781385 .IP "\-\-ftp-account <data>"
13791386 (FTP) When an FTP server asks for "account data" after user name and password has
13801387 been provided, this data is sent off using the ACCT command.
16501657 for each line in the input file. Using @- will make curl read the header file
16511658 from stdin. Added in 7.55.0.
16521659
1653 You need \-\-proxy-header to send custom headers intended for a HTTP
1660 You need \-\-proxy-header to send custom headers intended for an HTTP
16541661 proxy. Added in 7.37.0.
16551662
1656 Passing on a "Transfer-Encoding: chunked" header when doing a HTTP request
1663 Passing on a "Transfer-Encoding: chunked" header when doing an HTTP request
16571664 with a request body, will make curl send the data using chunked encoding.
16581665
16591666 \fBWARNING\fP: headers set with this option will be set in all requests \- even
17481755 curl --http1.0 https://example.com
17491756 .fi
17501757
1751 See also \fI--http0.9\fP and \fI--http1.1\fP. This option overrides \fI--http1.1\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP.
1758 See also \fI--http0.9\fP and \fI--http1.1\fP. This option is mutually exclusive to \fI--http1.1\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP.
17521759 .IP "\-\-http1.1"
17531760 (HTTP) Tells curl to use HTTP version 1.1.
17541761
17571764 curl --http1.1 https://example.com
17581765 .fi
17591766
1760 See also \fI-0, --http1.0\fP and \fI--http0.9\fP. This option overrides \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP. Added in 7.33.0.
1767 See also \fI-0, --http1.0\fP and \fI--http0.9\fP. This option is mutually exclusive to \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP. Added in 7.33.0.
17611768 .IP "\-\-http2-prior-knowledge"
17621769 (HTTP) Tells curl to issue its non-TLS HTTP requests using HTTP/2 without HTTP/1.1
17631770 Upgrade. It requires prior knowledge that the server supports HTTP/2 straight
17691776 curl --http2-prior-knowledge https://example.com
17701777 .fi
17711778
1772 See also \fI--http2\fP and \fI--http3\fP. \fI--http2-prior-knowledge\fP requires that the underlying libcurl was built to support HTTP/2. This option overrides \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http3\fP. Added in 7.49.0.
1779 See also \fI--http2\fP and \fI--http3\fP. \fI--http2-prior-knowledge\fP requires that the underlying libcurl was built to support HTTP/2. This option is mutually exclusive to \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http3\fP. Added in 7.49.0.
17731780 .IP "\-\-http2"
17741781 (HTTP) Tells curl to use HTTP version 2.
17751782
17881795 curl --http2 https://example.com
17891796 .fi
17901797
1791 See also \fI--http1.1\fP and \fI--http3\fP. \fI--http2\fP requires that the underlying libcurl was built to support HTTP/2. This option overrides \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP. Added in 7.33.0.
1798 See also \fI--http1.1\fP and \fI--http3\fP. \fI--http2\fP requires that the underlying libcurl was built to support HTTP/2. This option is mutually exclusive to \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2-prior-knowledge\fP and \fI--http3\fP. Added in 7.33.0.
17921799 .IP "\-\-http3"
17931800 (HTTP) \fBWARNING\fP: this option is experimental. Do not use in production.
17941801
18051812 curl --http3 https://example.com
18061813 .fi
18071814
1808 See also \fI--http1.1\fP and \fI--http2\fP. \fI--http3\fP requires that the underlying libcurl was built to support HTTP/3. This option overrides \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP. Added in 7.66.0.
1815 See also \fI--http1.1\fP and \fI--http2\fP. \fI--http3\fP requires that the underlying libcurl was built to support HTTP/3. This option is mutually exclusive to \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2\fP and \fI--http2-prior-knowledge\fP. Added in 7.66.0.
18091816 .IP "\-\-ignore-content-length"
18101817 (FTP HTTP) For HTTP, Ignore the Content-Length header. This is particularly useful for
18111818 servers running Apache 1.x, which will report incorrect Content-Length for
18821889
18831890 See also \fI--dns-interface\fP.
18841891 .IP "\-4, \-\-ipv4"
1885 This option tells curl to resolve names to IPv4 addresses only, and not for
1886 example try IPv6.
1892 This option tells curl to use IPv4 addresses only, and not for example try
1893 IPv6.
18871894
18881895 Example:
18891896 .nf
18901897 curl --ipv4 https://example.com
18911898 .fi
18921899
1893 See also \fI--http1.1\fP and \fI--http2\fP. This option overrides \fI-6, --ipv6\fP.
1900 See also \fI--http1.1\fP and \fI--http2\fP. This option is mutually exclusive to \fI-6, --ipv6\fP.
18941901 .IP "\-6, \-\-ipv6"
1895 This option tells curl to resolve names to IPv6 addresses only, and not for
1896 example try IPv4.
1902 This option tells curl to use IPv6 addresses only, and not for example try
1903 IPv4.
18971904
18981905 Example:
18991906 .nf
19001907 curl --ipv6 https://example.com
19011908 .fi
19021909
1903 See also \fI--http1.1\fP and \fI--http2\fP. This option overrides \fI-4, --ipv4\fP.
1910 See also \fI--http1.1\fP and \fI--http2\fP. This option is mutually exclusive to \fI-4, --ipv4\fP.
19041911 .IP "\-\-json <data>"
19051912 (HTTP) Sends the specified JSON data in a POST request to the HTTP server. \-\-json
19061913 works as a shortcut for passing on these three options:
19221929 If this option is used more than once on the same command line, the additional
19231930 data pieces will be concatenated to the previous before sending.
19241931
1925 The headers this option sets can be overriden with \-\-header as usual.
1932 The headers this option sets can be overridden with \-\-header as usual.
19261933
19271934 Examples:
19281935 .nf
19321939 curl --json @- https://example.com < json.txt
19331940 .fi
19341941
1935 See also \fI--data-binary\fP and \fI--data-raw\fP. This option overrides \fI-F, --form\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP. Added in 7.82.0.
1942 See also \fI--data-binary\fP and \fI--data-raw\fP. This option is mutually exclusive to \fI-F, --form\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP. Added in 7.82.0.
19361943 .IP "\-j, \-\-junk-session-cookies"
19371944 (HTTP) When curl is told to read cookies from a given file, this option will make it
19381945 discard all "session cookies". This will basically have the same effect as if
19491956 This option sets the time a connection needs to remain idle before sending
19501957 keepalive probes and the time between individual keepalive probes. It is
19511958 currently effective on operating systems offering the TCP_KEEPIDLE and
1952 TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more). This
1953 option has no effect if \-\-no-keepalive is used.
1959 TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more).
1960 Keepalives are used by the TCP stack to detect broken networks on idle
1961 connections. The number of missed keepalive probes before declaring the
1962 connection down is OS dependent and is commonly 9 or 10. This option has no
1963 effect if \-\-no-keepalive is used.
19541964
19551965 If this option is used several times, the last one will be used. If
19561966 unspecified, the option defaults to 60 seconds.
19841994 PKCS#11 URI. If a PKCS#11 URI is provided, then the \-\-engine option will be set
19851995 as "pkcs11" if none was provided and the \-\-key-type option will be set as
19861996 "ENG" if none was provided.
1997
1998 If curl is built against Secure Transport or Schannel then this option is
1999 ignored for TLS protocols (HTTPS, etc). Those backends expect the private key
2000 to be already present in the keychain or PKCS#12 file containing the
2001 certificate.
19872002
19882003 If this option is used several times, the last one will be used.
19892004
22992314 curl --netrc-file netrc https://example.com
23002315 .fi
23012316
2302 See also \fI-n, --netrc\fP, \fI-u, --user\fP and \fI-K, --config\fP. This option overrides \fI-n, --netrc\fP.
2317 See also \fI-n, --netrc\fP, \fI-u, --user\fP and \fI-K, --config\fP. This option is mutually exclusive to \fI-n, --netrc\fP.
23032318 .IP "\-\-netrc-optional"
23042319 Similar to \fI\-n, \-\-netrc\fP, but this option makes the .netrc usage \fBoptional\fP
23052320 and not mandatory as the \-\-netrc option does.
23092324 curl --netrc-optional https://example.com
23102325 .fi
23112326
2312 See also \fI--netrc-file\fP. This option overrides \fI-n, --netrc\fP.
2327 See also \fI--netrc-file\fP. This option is mutually exclusive to \fI-n, --netrc\fP.
23132328 .IP "\-n, \-\-netrc"
23142329 Makes curl scan the \fI.netrc\fP (\fI_netrc\fP on Windows) file in the user\(aqs home
23152330 directory for login name and password. This is typically used for FTP on
23842399 .fi
23852400
23862401 See also \fI-#, --progress-bar\fP.
2402 .IP "\-\-no-clobber"
2403 When used in conjunction with the \fI\-o, \-\-output\fP, \fI\-J, \-\-remote-header-name\fP,
2404 \fI\-O, \-\-remote-name\fP, or \-\-remote-name-all options, curl avoids overwriting files
2405 that already exist. Instead, a dot and a number gets appended to the name
2406 of the file that would be created, up to filename.100 after which it will not
2407 create any file.
2408
2409 Note that this is the negated option name documented. You can thus use
2410 \-\-clobber to enforce the clobbering, even if \-\-remote-header-name or \-J is
2411 specified.
2412
2413 Example:
2414 .nf
2415 curl --no-clobber --output local/dir/file https://example.com
2416 .fi
2417
2418 See also \fI-o, --output\fP and \fI-O, --remote-name\fP. Added in 7.83.0.
23872419 .IP "\-\-no-keepalive"
23882420 Disables the use of keepalive messages on the TCP connection. curl otherwise
23892421 enables them by default.
24832515 curl --ntlm -u user:password https://example.com
24842516 .fi
24852517
2486 See also \fI--proxy-ntlm\fP. \fI--ntlm\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI--basic\fP and \fI--negotiate\fP and \fI--digest\fP and \fI--anyauth\fP.
2518 See also \fI--proxy-ntlm\fP. \fI--ntlm\fP requires that the underlying libcurl was built to support TLS. This option is mutually exclusive to \fI--basic\fP and \fI--negotiate\fP and \fI--digest\fP and \fI--anyauth\fP.
24872519 .IP "\-\-oauth2-bearer <token>"
24882520 (IMAP LDAP POP3 SMTP HTTP) Specify the Bearer Token for OAUTH 2.0 server authentication. The Bearer Token
24892521 is used in conjunction with the user name which can be specified as part of
32293261 (FTP SFTP) Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
32303262 sent BEFORE the transfer takes place (just after the initial PWD command in an
32313263 FTP transfer, to be exact). To make commands take place after a successful
3232 transfer, prefix them with a dash \(aq-'. To make commands be sent after curl
3233 has changed the working directory, just before the transfer command(s), prefix
3234 the command with a \(aq+' (this is only supported for FTP). You may specify any
3235 number of commands.
3264 transfer, prefix them with a dash \(aq-'.
3265
3266 (FTP only) To make commands be sent after curl has changed the working
3267 directory, just before the file transfer command(s), prefix the command with a
3268 \(aq+'. This is not performed when a directory listing is performed.
3269
3270 You may specify any number of commands.
32363271
32373272 By default curl will stop at first failure. To make curl continue even if the
32383273 command fails, prefix the command with an asterisk (*). Otherwise, if the
34553490 .fi
34563491
34573492 See also \fI-O, --remote-name\fP and \fI-z, --time-cond\fP.
3493 .IP "\-\-remove-on-error"
3494 When curl returns an error when told to save output in a local file, this
3495 option removes that saved file before exiting. This prevents curl from
3496 leaving a partial file in the case of an error during transfer.
3497
3498 If the output is not a file, this option has no effect.
3499
3500 Example:
3501 .nf
3502 curl --remove-on-error -o output https://example.com
3503 .fi
3504
3505 See also \fI-f, --fail\fP. Added in 7.83.0.
34583506 .IP "\-\-request-target <path>"
34593507 (HTTP) Tells curl to use an alternative "target" (path) instead of using the path as
34603508 provided in the URL. Particularly useful when wanting to issue HTTP requests
36453693
36463694 See also \fI--retry-max-time\fP.
36473695 .IP "\-\-sasl-authzid <identity>"
3648 Use this authorisation identity (authzid), during SASL PLAIN authentication,
3696 Use this authorization identity (authzid), during SASL PLAIN authentication,
36493697 in addition to the authentication identity (authcid) as specified by \fI\-u, \-\-user\fP.
36503698
36513699 If the option is not specified, the server will derive the authzid from the
39724020 curl --sslv2 https://example.com
39734021 .fi
39744022
3975 See also \fI--http1.1\fP and \fI--http2\fP. \fI-2, --sslv2\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI-3, --sslv3\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
4023 See also \fI--http1.1\fP and \fI--http2\fP. \fI-2, --sslv2\fP requires that the underlying libcurl was built to support TLS. This option is mutually exclusive to \fI-3, --sslv3\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
39764024 .IP "\-3, \-\-sslv3"
39774025 (SSL) This option previously asked curl to use SSLv3, but starting in curl 7.77.0
39784026 this instruction is ignored. SSLv3 is widely considered insecure (see RFC
39834031 curl --sslv3 https://example.com
39844032 .fi
39854033
3986 See also \fI--http1.1\fP and \fI--http2\fP. \fI-3, --sslv3\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI-2, --sslv2\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
4034 See also \fI--http1.1\fP and \fI--http2\fP. \fI-3, --sslv3\fP requires that the underlying libcurl was built to support TLS. This option is mutually exclusive to \fI-2, --sslv2\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
39874035 .IP "\-\-stderr <file>"
39884036 Redirect all writes to stderr to the specified file instead. If the file name
39894037 is a plain \(aq-', it is instead written to stdout.
42564304 curl --tlsv1 https://example.com
42574305 .fi
42584306
4259 See also \fI--http1.1\fP and \fI--http2\fP. \fI-1, --tlsv1\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI--tlsv1.1\fP and \fI--tlsv1.2\fP and \fI--tlsv1.3\fP.
4307 See also \fI--http1.1\fP and \fI--http2\fP. \fI-1, --tlsv1\fP requires that the underlying libcurl was built to support TLS. This option is mutually exclusive to \fI--tlsv1.1\fP and \fI--tlsv1.2\fP and \fI--tlsv1.3\fP.
42604308 .IP "\-\-tr-encoding"
42614309 (HTTP) Request a compressed Transfer-Encoding response using one of the algorithms
42624310 curl supports, and uncompress the data while receiving it.
42864334 curl --trace-ascii log.txt https://example.com
42874335 .fi
42884336
4289 See also \fI-v, --verbose\fP and \fI--trace\fP. This option overrides \fI--trace\fP and \fI-v, --verbose\fP.
4337 See also \fI-v, --verbose\fP and \fI--trace\fP. This option is mutually exclusive to \fI--trace\fP and \fI-v, --verbose\fP.
42904338 .IP "\-\-trace-time"
42914339 Prepends a time stamp to each trace or verbose line that curl displays.
42924340
43154363 curl --trace log.txt https://example.com
43164364 .fi
43174365
4318 See also \fI--trace-ascii\fP and \fI--trace-time\fP. This option overrides \fI-v, --verbose\fP and \fI--trace-ascii\fP.
4366 See also \fI--trace-ascii\fP and \fI--trace-time\fP. This option is mutually exclusive to \fI-v, --verbose\fP and \fI--trace-ascii\fP.
43194367 .IP "\-\-unix-socket <path>"
43204368 (HTTP) Connect through this Unix domain socket, instead of using the network.
43214369
44724520 curl --verbose https://example.com
44734521 .fi
44744522
4475 See also \fI-i, --include\fP. This option overrides \fI--trace\fP and \fI--trace-ascii\fP.
4523 See also \fI-i, --include\fP. This option is mutually exclusive to \fI--trace\fP and \fI--trace-ascii\fP.
44764524 .IP "\-V, \-\-version"
44774525 Displays information about curl and the libcurl version it uses.
44784526
45714619 The output will be written to standard output, but this can be switched to
45724620 standard error by using %{stderr}.
45734621
4622 EXPERIMENTAL feature: Output HTTP headers from the most recent request by
4623 using \fB%header{name}\fP where \fBname\fP is the case insensitive name of the
4624 header (without the trailing colon). The header contents are exactly as sent
4625 over the network, with leading and trailing whitespace trimmed. Added in curl
4626 7.83.0.
4627
45744628 .B NOTE:
45754629 The %-symbol is a special symbol in the win32-environment, where all
45764630 occurrences of % must be doubled when using this option.
45964650 .B ftp_entry_path
45974651 The initial path curl ended up in when logging on to the remote FTP
45984652 server.
4653 .TP
4654 .B header_json
4655 EXPERIMENTAL feature.
4656
4657 A JSON object with all HTTP response headers from the recent transfer. Values
4658 are provided as arrays, since in the case of multiple headers there can be
4659 multiple values.
4660
4661 The header names provided in lowercase, listed in order of appearance over the
4662 wire. Except for duplicated headers. They are grouped on the first occurrence
4663 of that header, each value is presented in the JSON array.
45994664 .TP
46004665 .B http_code
46014666 The numerical response code that was found in the last retrieved HTTP(S) or
49264991 .IP 21
49274992 FTP quote error. A quote command returned error from the server.
49284993 .IP 22
4929 HTTP page not retrieved. The requested url was not found or returned another
4994 HTTP page not retrieved. The requested URL was not found or returned another
49304995 error with the HTTP error code being 400 or above. This return code only
49314996 appears if \-\-fail is used.
49324997 .IP 23
6666 CS_ = $(CS_0)
6767
6868 checksrc:
69 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.c)
69 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/*.c)
139139 ftpgetresp$(EXEEXT) ftpsget$(EXEEXT) ftpupload$(EXEEXT) \
140140 ftpuploadfrommem$(EXEEXT) ftpuploadresume$(EXEEXT) \
141141 getinfo$(EXEEXT) getinmemory$(EXEEXT) getredirect$(EXEEXT) \
142 getreferrer$(EXEEXT) http-post$(EXEEXT) \
142 getreferrer$(EXEEXT) headerapi$(EXEEXT) http-post$(EXEEXT) \
143143 http2-download$(EXEEXT) http2-pushinmemory$(EXEEXT) \
144144 http2-serverpush$(EXEEXT) http2-upload$(EXEEXT) http3$(EXEEXT) \
145145 http3-present$(EXEEXT) httpcustomheader$(EXEEXT) \
359359 @USE_EXPLICIT_LIB_DEPS_FALSE@ $(LIBDIR)/libcurl.la
360360 @USE_EXPLICIT_LIB_DEPS_TRUE@getreferrer_DEPENDENCIES = \
361361 @USE_EXPLICIT_LIB_DEPS_TRUE@ $(LIBDIR)/libcurl.la
362 headerapi_SOURCES = headerapi.c
363 headerapi_OBJECTS = headerapi.$(OBJEXT)
364 headerapi_LDADD = $(LDADD)
365 @USE_EXPLICIT_LIB_DEPS_FALSE@headerapi_DEPENDENCIES = \
366 @USE_EXPLICIT_LIB_DEPS_FALSE@ $(LIBDIR)/libcurl.la
367 @USE_EXPLICIT_LIB_DEPS_TRUE@headerapi_DEPENDENCIES = \
368 @USE_EXPLICIT_LIB_DEPS_TRUE@ $(LIBDIR)/libcurl.la
362369 http_post_SOURCES = http-post.c
363370 http_post_OBJECTS = http-post.$(OBJEXT)
364371 http_post_LDADD = $(LDADD)
885892 ./$(DEPDIR)/ftpupload.Po ./$(DEPDIR)/ftpuploadfrommem.Po \
886893 ./$(DEPDIR)/ftpuploadresume.Po ./$(DEPDIR)/getinfo.Po \
887894 ./$(DEPDIR)/getinmemory.Po ./$(DEPDIR)/getredirect.Po \
888 ./$(DEPDIR)/getreferrer.Po ./$(DEPDIR)/http-post.Po \
889 ./$(DEPDIR)/http2-download.Po \
895 ./$(DEPDIR)/getreferrer.Po ./$(DEPDIR)/headerapi.Po \
896 ./$(DEPDIR)/http-post.Po ./$(DEPDIR)/http2-download.Po \
890897 ./$(DEPDIR)/http2-pushinmemory.Po \
891898 ./$(DEPDIR)/http2-serverpush.Po ./$(DEPDIR)/http2-upload.Po \
892899 ./$(DEPDIR)/http3-present.Po ./$(DEPDIR)/http3.Po \
948955 fopen.c ftp-wildcard.c ftpget.c ftpgetinfo.c ftpgetresp.c \
949956 ftpsget.c ftpupload.c ftpuploadfrommem.c ftpuploadresume.c \
950957 getinfo.c getinmemory.c getredirect.c getreferrer.c \
951 http-post.c http2-download.c http2-pushinmemory.c \
958 headerapi.c http-post.c http2-download.c http2-pushinmemory.c \
952959 http2-serverpush.c http2-upload.c http3.c http3-present.c \
953960 httpcustomheader.c httpput.c httpput-postfields.c https.c \
954961 imap-append.c imap-authzid.c imap-copy.c imap-create.c \
970977 fileupload.c fopen.c ftp-wildcard.c ftpget.c ftpgetinfo.c \
971978 ftpgetresp.c ftpsget.c ftpupload.c ftpuploadfrommem.c \
972979 ftpuploadresume.c getinfo.c getinmemory.c getredirect.c \
973 getreferrer.c http-post.c http2-download.c \
980 getreferrer.c headerapi.c http-post.c http2-download.c \
974981 http2-pushinmemory.c http2-serverpush.c http2-upload.c http3.c \
975982 http3-present.c httpcustomheader.c httpput.c \
976983 httpput-postfields.c https.c imap-append.c imap-authzid.c \
10581065 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
10591066 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
10601067 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
1068 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
10611069 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
10621070 CYGPATH_W = @CYGPATH_W@
10631071 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
10751083 ETAGS = @ETAGS@
10761084 EXEEXT = @EXEEXT@
10771085 FGREP = @FGREP@
1086 FILECMD = @FILECMD@
10781087 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
10791088 GCOV = @GCOV@
10801089 GREP = @GREP@
11521161 USE_LIBSSH = @USE_LIBSSH@
11531162 USE_LIBSSH2 = @USE_LIBSSH2@
11541163 USE_MBEDTLS = @USE_MBEDTLS@
1164 USE_MSH3 = @USE_MSH3@
11551165 USE_NGHTTP2 = @USE_NGHTTP2@
11561166 USE_NGHTTP3 = @USE_NGHTTP3@
11571167 USE_NGTCP2 = @USE_NGTCP2@
14101420 @rm -f getreferrer$(EXEEXT)
14111421 $(AM_V_CCLD)$(LINK) $(getreferrer_OBJECTS) $(getreferrer_LDADD) $(LIBS)
14121422
1423 headerapi$(EXEEXT): $(headerapi_OBJECTS) $(headerapi_DEPENDENCIES) $(EXTRA_headerapi_DEPENDENCIES)
1424 @rm -f headerapi$(EXEEXT)
1425 $(AM_V_CCLD)$(LINK) $(headerapi_OBJECTS) $(headerapi_LDADD) $(LIBS)
1426
14131427 http-post$(EXEEXT): $(http_post_OBJECTS) $(http_post_DEPENDENCIES) $(EXTRA_http_post_DEPENDENCIES)
14141428 @rm -f http-post$(EXEEXT)
14151429 $(AM_V_CCLD)$(LINK) $(http_post_OBJECTS) $(http_post_LDADD) $(LIBS)
17261740 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getinmemory.Po@am__quote@ # am--include-marker
17271741 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getredirect.Po@am__quote@ # am--include-marker
17281742 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getreferrer.Po@am__quote@ # am--include-marker
1743 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/headerapi.Po@am__quote@ # am--include-marker
17291744 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http-post.Po@am__quote@ # am--include-marker
17301745 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http2-download.Po@am__quote@ # am--include-marker
17311746 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http2-pushinmemory.Po@am__quote@ # am--include-marker
19821997 -rm -f ./$(DEPDIR)/getinmemory.Po
19831998 -rm -f ./$(DEPDIR)/getredirect.Po
19841999 -rm -f ./$(DEPDIR)/getreferrer.Po
2000 -rm -f ./$(DEPDIR)/headerapi.Po
19852001 -rm -f ./$(DEPDIR)/http-post.Po
19862002 -rm -f ./$(DEPDIR)/http2-download.Po
19872003 -rm -f ./$(DEPDIR)/http2-pushinmemory.Po
21212137 -rm -f ./$(DEPDIR)/getinmemory.Po
21222138 -rm -f ./$(DEPDIR)/getredirect.Po
21232139 -rm -f ./$(DEPDIR)/getreferrer.Po
2140 -rm -f ./$(DEPDIR)/headerapi.Po
21242141 -rm -f ./$(DEPDIR)/http-post.Po
21252142 -rm -f ./$(DEPDIR)/http2-download.Po
21262143 -rm -f ./$(DEPDIR)/http2-pushinmemory.Po
22352252 all: $(check_PROGRAMS)
22362253
22372254 checksrc:
2238 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.c)
2255 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/*.c)
22392256
22402257 # Tell versions [3.59,3.63) of GNU make to not export all variables.
22412258 # Otherwise a system limit (for SysV at least) may be exceeded.
4343 getinmemory \
4444 getredirect \
4545 getreferrer \
46 headerapi \
4647 http-post \
4748 http2-download \
4849 http2-pushinmemory \
22
33 This is a little program to demonstrate the usage of
44
5 - an ssl initialisation callback setting a user key and trustbases
5 - an SSL initialization callback setting a user key and trustbases
66 coming from a pkcs12 file
77 - using an ssl application callback to find a URI in the
88 certificate presented during ssl session establishment.
227227 }
228228
229229
230 /* The SSL initialisation callback. The callback sets:
230 /* The SSL initialization callback. The callback sets:
231231 - a private key and certificate
232232 - a trusted ca certificate
233233 - a preferred cipherlist
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21 /* <DESC>
22 * Extract headers post transfer with the header API
23 * </DESC>
24 */
25 #include <stdio.h>
26 #include <curl/curl.h>
27
28 static size_t write_cb(char *data, size_t n, size_t l, void *userp)
29 {
30 /* take care of the data here, ignored in this example */
31 (void)data;
32 (void)userp;
33 return n*l;
34 }
35
36 int main(void)
37 {
38 CURL *curl;
39
40 curl = curl_easy_init();
41 if(curl) {
42 CURLcode res;
43 struct curl_header *header;
44 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
45 /* example.com is redirected, so we tell libcurl to follow redirection */
46 curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
47
48 /* this example just ignores the content */
49 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_cb);
50
51 /* Perform the request, res will get the return code */
52 res = curl_easy_perform(curl);
53 /* Check for errors */
54 if(res != CURLE_OK)
55 fprintf(stderr, "curl_easy_perform() failed: %s\n",
56 curl_easy_strerror(res));
57
58 if(CURLHE_OK == curl_easy_header(curl, "Content-Type", 0, CURLH_HEADER,
59 -1, &header))
60 printf("Got content-type: %s\n", header->value);
61
62 printf("All server headers:\n");
63 {
64 struct curl_header *h;
65 struct curl_header *prev = NULL;
66 do {
67 h = curl_easy_nextheader(curl, CURLH_HEADER, -1, prev);
68 if(h)
69 printf(" %s: %s (%u)\n", h->name, h->value, (int)h->amount);
70 prev = h;
71 } while(h);
72
73 }
74 /* always cleanup */
75 curl_easy_cleanup(curl);
76 }
77 return 0;
78 }
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4444 curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
4545 curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
4646
47 /* Set the authorisation identity (identity to act as) */
47 /* Set the authorization identity (identity to act as) */
4848 curl_easy_setopt(curl, CURLOPT_SASL_AUTHZID, "shared-mailbox");
4949
5050 /* Force PLAIN authentication */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4444 curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
4545 curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
4646
47 /* Set the authorisation identity (identity to act as) */
47 /* Set the authorization identity (identity to act as) */
4848 curl_easy_setopt(curl, CURLOPT_SASL_AUTHZID, "shared-mailbox");
4949
5050 /* Force PLAIN authentication */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
106106 curl_easy_setopt(curl, CURLOPT_USERNAME, "kurt");
107107 curl_easy_setopt(curl, CURLOPT_PASSWORD, "xipj3plmq");
108108
109 /* Set the authorisation identity (identity to act as) */
109 /* Set the authorization identity (identity to act as) */
110110 curl_easy_setopt(curl, CURLOPT_SASL_AUTHZID, "ursel");
111111
112112 /* Force PLAIN authentication */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
3838 *
3939 * Synchronising your computer clock via Internet time server usually relies
4040 * on DAYTIME, TIME, or NTP protocols. These protocols provide good accurate
41 * time synchronisation but it does not work very well through a
41 * time synchronization but it does not work very well through a
4242 * firewall/proxy. Some adjustment has to be made to the firewall/proxy for
4343 * these protocols to work properly.
4444 *
4242 # | (__| |_| | _ <| |___
4343 # \___|\___/|_| \_\_____|
4444 #
45 # Copyright (C) 2008 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
45 # Copyright (C) 2008 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
4646 #
4747 # This software is licensed as described in the file COPYING, which
4848 # you should have received as part of this distribution. The terms
504504 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
505505 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
506506 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
507 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
507508 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
508509 CYGPATH_W = @CYGPATH_W@
509510 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
521522 ETAGS = @ETAGS@
522523 EXEEXT = @EXEEXT@
523524 FGREP = @FGREP@
525 FILECMD = @FILECMD@
524526 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
525527 GCOV = @GCOV@
526528 GREP = @GREP@
596598 USE_LIBSSH = @USE_LIBSSH@
597599 USE_LIBSSH2 = @USE_LIBSSH2@
598600 USE_MBEDTLS = @USE_MBEDTLS@
601 USE_MSH3 = @USE_MSH3@
599602 USE_NGHTTP2 = @USE_NGHTTP2@
600603 USE_NGHTTP3 = @USE_NGHTTP3@
601604 USE_NGTCP2 = @USE_NGTCP2@
679682 curl_easy_duphandle.3 \
680683 curl_easy_escape.3 \
681684 curl_easy_getinfo.3 \
685 curl_easy_header.3 \
682686 curl_easy_init.3 \
687 curl_easy_nextheader.3 \
683688 curl_easy_option_by_id.3 \
684689 curl_easy_option_by_name.3 \
685690 curl_easy_option_next.3 \
44 # | (__| |_| | _ <| |___
55 # \___|\___/|_| \_\_____|
66 #
7 # Copyright (C) 2008 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 # Copyright (C) 2008 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 #
99 # This software is licensed as described in the file COPYING, which
1010 # you should have received as part of this distribution. The terms
2626 curl_easy_duphandle.3 \
2727 curl_easy_escape.3 \
2828 curl_easy_getinfo.3 \
29 curl_easy_header.3 \
2930 curl_easy_init.3 \
31 curl_easy_nextheader.3 \
3032 curl_easy_option_by_id.3 \
3133 curl_easy_option_by_name.3 \
3234 curl_easy_option_next.3 \
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_cleanup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_cleanup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_cleanup - End a libcurl easy handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_duphandle 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_duphandle 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_duphandle - Clone a libcurl session handle
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_escape 3 "December 06, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_escape 3 "December 06, 2021" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_escape - URL encodes the given string
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_getinfo 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_getinfo 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_getinfo - extract information from a curl handle
0 .\" **************************************************************************
1 .\" * _ _ ____ _
2 .\" * Project ___| | | | _ \| |
3 .\" * / __| | | | |_) | |
4 .\" * | (__| |_| | _ <| |___
5 .\" * \___|\___/|_| \_\_____|
6 .\" *
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 .\" *
9 .\" * This software is licensed as described in the file COPYING, which
10 .\" * you should have received as part of this distribution. The terms
11 .\" * are also available at https://curl.se/docs/copyright.html.
12 .\" *
13 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 .\" * copies of the Software, and permit persons to whom the Software is
15 .\" * furnished to do so, under the terms of the COPYING file.
16 .\" *
17 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 .\" * KIND, either express or implied.
19 .\" *
20 .\" **************************************************************************
21 .TH curl_easy_header 3 "April 11, 2022" "libcurl 7.83.0" "libcurl Manual"
22
23 .SH NAME
24 curl_easy_header - get an HTTP header
25 .SH SYNOPSIS
26 .nf
27 #include <curl/curl.h>
28
29 CURLHcode curl_easy_header(CURL *easy,
30 const char *name,
31 size_t index,
32 unsigned int origin,
33 int request,
34 struct curl_header **hout);
35 .SH DESCRIPTION
36 EXPERIMENTAL feature!
37
38 \fIcurl_easy_header(3)\fP returns a pointer to a "curl_header" struct in
39 \fBhout\fP with data for the HTTP response header \fIname\fP. The case
40 insensitive nul-terminated header name should be specified without colon.
41
42 \fIindex\fP 0 means asking for the first instance of the header. If the
43 returned header struct has \fBamount\fP set larger than 1, it means there are
44 more instances of the same header name available to get. Asking for a too big
45 index makes \fBCURLHE_BADINDEX\fP get returned.
46
47 The \fIorigin\fP argument is for specifying which headers to receive, as a
48 single HTTP transfer might provide headers from several different places and
49 they may then have different importance to the user and headers using the same
50 name might be used. The \fIorigin\fP is a bitmask for what header sources you
51 want. See the descriptions below.
52
53 The \fIrequest\fP argument tells libcurl from which request you want headers
54 from. A single transfer might consist of a series of HTTP requests and this
55 argument lets you specify which particular individual request you want the
56 headers from. 0 being the first request and then the number increases for
57 further redirects or when multi-state authentication is used. Passing in -1 is
58 a shortcut to "the last" request in the series, independently of the actual
59 amount of requests used.
60
61 libcurl stores and provides the actually used "correct" headers. If for
62 example two headers with the same name arrive and the latter overrides the
63 former, then only the latter will be provided. If the first header survives
64 the second, then only the first one will be provided. An application using
65 this API does not have to bother about multiple headers used wrongly.
66
67 The memory for the returned struct is associated with the easy handle and
68 subsequent calls to \fIcurl_easy_header(3)\fP will clobber the struct used in
69 the previous calls for the same easy handle. Applications need to copy the
70 data if it wants to keep it around. The memory used for the struct gets freed
71 with calling \fIcurl_easy_cleanup(3)\fP of the easy handle.
72
73 The first line in an HTTP response is called the status line. It is not
74 considered a header by this function. Headers are the "name: value" lines
75 following the status.
76
77 This function can be used before (all) headers have been received and is fine
78 to call from within libcurl callbacks. It will always return the state of the
79 headers at the time it is called.
80 .SH "The header struct"
81 .nf
82 struct curl_header {
83 char *name;
84 char *value;
85 size_t amount;
86 size_t index;
87 unsigned int origin;
88 void *anchor;
89 };
90 .fi
91
92 The data \fBname\fP field points to, will be the same as the requested name
93 but it might have a different case.
94
95 The data \fBvalue\fP field points to, comes exactly as delivered over the
96 network but with leading and trailing whitespace and newlines stripped
97 off. The `value` data is nul-terminated.
98
99 \fBamount\fP is how many headers using this name that exist, within the origin
100 and request scope asked for.
101
102 \fBindex\fP is the zero based entry number of this particular header, which in
103 case this header was used more than once in the requested scope can be larger
104 than 0 but is always less than \fBamount\fP.
105
106 The \fBorigin\fP field in the "curl_header" struct has one of the origin bits
107 set, indicating where from the header originates. At the time of this writing,
108 there are 5 bits with defined use. The undocumented 27 remaining bits are
109 reserved for future use and must not be assumed to have any particular value.
110
111 \fBanchor\fP is a private handle used by libcurl internals. Do not modify.
112 .SH ORIGINS
113 .IP CURLH_HEADER
114 The header arrived as a header from the server.
115 .IP CURLH_TRAILER
116 The header arrived as a trailer. A header that arrives after the body.
117 .IP CURLH_CONNECT
118 The header arrived in a CONNECT response. A CONNECT request is being done to
119 setup a transfer "through" an HTTP(S) proxy.
120 .IP CURLH_1XX
121 The header arrived in an HTTP 1xx response. A 1xx response is an "intermediate"
122 response that might happen before the "real" response.
123 .IP CURLH_PSUEDO
124 The header is an HTTP/2 or HTTP/3 pseudo header
125 .SH EXAMPLE
126 .nf
127 struct curl_header *type;
128 CURLHcode h =
129 curl_easy_header(easy, "Content-Type", 0, CURLH_HEADER, -1, &type);
130 .fi
131 .SH AVAILABILITY
132 Added in 7.83.0
133 .SH RETURN VALUE
134 This function returns a CURLHcode indicating success or error.
135 .IP "CURLHE_BADINDEX (1)"
136 There is no header with the requested index.
137 .IP "CURLHE_MISSING (2)"
138 No such header exists.
139 .IP "CURLHE_NOHEADERS (3)"
140 No headers at all have been recorded.
141 .IP "CURLHE_NOREQUEST (4)"
142 There was no such request number.
143 .IP "CURLHE_OUT_OF_MEMORY (5)"
144 Out of resources
145 .IP "CURLHE_BAD_ARGUMENT (6)"
146 One or more of the given arguments are bad.
147 .IP "CURLHE_NOT_BUILT_IN (7)"
148 HTTP or the header API has been disabled in the build.
149 .SH "SEE ALSO"
150 .BR curl_easy_nextheader "(3), " curl_easy_perform "(3), "
151 .BR CURLOPT_HEADERFUNCTION "(3), " CURLINFO_CONTENT_TYPE "(3) "
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_init 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_init 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_init - Start a libcurl easy session
0 .\" **************************************************************************
1 .\" * _ _ ____ _
2 .\" * Project ___| | | | _ \| |
3 .\" * / __| | | | |_) | |
4 .\" * | (__| |_| | _ <| |___
5 .\" * \___|\___/|_| \_\_____|
6 .\" *
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 .\" *
9 .\" * This software is licensed as described in the file COPYING, which
10 .\" * you should have received as part of this distribution. The terms
11 .\" * are also available at https://curl.se/docs/copyright.html.
12 .\" *
13 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 .\" * copies of the Software, and permit persons to whom the Software is
15 .\" * furnished to do so, under the terms of the COPYING file.
16 .\" *
17 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 .\" * KIND, either express or implied.
19 .\" *
20 .\" **************************************************************************
21 .TH curl_easy_nextheader 3 "March 22, 2022" "libcurl 7.83.0" "libcurl Manual"
22
23 .SH NAME
24 curl_easy_nextheader - get the next HTTP header
25 .SH SYNOPSIS
26 .nf
27 #include <curl/curl.h>
28
29 struct curl_header *curl_easy_nextheader(CURL *easy,
30 unsigned int origin,
31 int request,
32 struct curl_header *prev);
33 .fi
34 .SH DESCRIPTION
35 EXPERIMENTAL feature!
36
37 This function lets an application iterate over all previously received HTTP
38 headers.
39
40 The \fIorigin\fP argument is for specifying which headers to receive, as a
41 single HTTP transfer might provide headers from several different places and
42 they may then have different importance to the user and headers using the same
43 name might be used. The \fIorigin\fP is a bitmask for what header sources you
44 want. See the \fIcurl_easy_header(3)\fP man page for the origin descriptions.
45
46 The \fIrequest\fP argument tells libcurl from which request you want headers
47 from. A single transfer might consist of a series of HTTP requests and this
48 argument lets you specify which particular individual request you want the
49 headers from. 0 being the first request and then the number increases for
50 further redirects or when multi-state authentication is used. Passing in -1 is
51 a shortcut to "the last" request in the series, independently of the actual
52 amount of requests used.
53
54 It is suggested that you pass in the same \fBorigin\fP and \fBrequest\fP when
55 iterating over a range of headers as changing the value mid-loop might give
56 you unexpected results.
57
58 If \fIprev\fP is NULL, this function returns a pointer to the first header
59 stored within the given scope (origin + request).
60
61 If \fIprev\fP is a pointer to a previously returned header struct,
62 \fIcurl_easy_nextheader(3)\fP returns a pointer the next header stored within
63 the given scope. This way, an application can iterate over all available
64 headers.
65
66 The memory for the struct this points to, is owned and managed by libcurl and
67 is associated with the easy handle. Applications must copy the data if they
68 want it to survive subsequent API calls or the life-time of the easy handle.
69 .SH EXAMPLE
70 .nf
71 struct curl_header *prev = NULL;
72 struct curl_header *h;
73
74 /* extract the normal headers from the first request */
75 while((h = curl_easy_nextheader(easy, CURLH_HEADER, 0, prev))) {
76 print "%s: %s\\n", h->name, h->value);
77 prev = h;
78 }
79
80 /* extract the normal headers + 1xx + trailers from the last request */
81 unsigned int origin = CURLH_HEADER| CURLH_1XX | CURLH_TRAILER;
82 while((h = curl_easy_nextheader(easy, origin, -1, prev))) {
83 print "%s: %s\\n", h->name, h->value);
84 prev = h;
85 }
86 .fi
87 .SH AVAILABILITY
88 Added in 7.83.0
89 .SH RETURN VALUE
90 This function returns the next header, or NULL when there are no more
91 (matching) headers or an error occurred.
92
93 If this function returns NULL when \fIprev\fP was set to NULL, then there are
94 no headers available within the scope to return.
95 .SH "SEE ALSO"
96 .BR curl_easy_header "(3), " curl_easy_perform "(3) "
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_option_by_id 3 "November 04, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_option_by_id 3 "November 04, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_option_by_id - find an easy setopt option by id
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_option_by_name 3 "November 04, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_option_by_name 3 "November 04, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_option_by_name - find an easy setopt option by name
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_option_next 3 "November 04, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_option_next 3 "November 04, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_option_next - iterate over easy setopt options
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_pause 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_pause 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_pause - pause and unpause a connection
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_perform 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_perform 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_perform - perform a blocking file transfer
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_recv 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_recv 3 "March 29, 2022" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_recv - receives raw data on an "easy" connection
3434 it together with \fIcurl_easy_send(3)\fP to implement custom protocols using
3535 libcurl. This functionality can be particularly useful if you use proxies
3636 and/or SSL encryption: libcurl will take care of proxy negotiation and
37 connection set-up.
37 connection setup.
3838
3939 \fBbuffer\fP is a pointer to your buffer that will get the received
4040 data. \fBbuflen\fP is the maximum amount of data you can get in that
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_reset 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_reset 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_reset - reset all options of a libcurl session handle
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_send 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_send 3 "March 29, 2022" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_send - sends raw data over an "easy" connection
3535 use it together with \fIcurl_easy_recv(3)\fP to implement custom protocols
3636 using libcurl. This functionality can be particularly useful if you use
3737 proxies and/or SSL encryption: libcurl will take care of proxy negotiation and
38 connection set-up.
38 connection setup.
3939
4040 \fBbuffer\fP is a pointer to the data of length \fBbuflen\fP that you want sent.
4141 The variable \fBn\fP points to will receive the number of sent bytes.
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_setopt 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_setopt 3 "April 05, 2022" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_setopt \- set options for a curl easy handle
264264 .IP CURLOPT_PROXYAUTH
265265 HTTP proxy authentication methods. See \fICURLOPT_PROXYAUTH(3)\fP
266266 .IP CURLOPT_SASL_AUTHZID
267 SASL authorisation identity (identity to act as). See \fICURLOPT_SASL_AUTHZID(3)\fP
267 SASL authorization identity (identity to act as). See \fICURLOPT_SASL_AUTHZID(3)\fP
268268 .IP CURLOPT_SASL_IR
269269 Enable SASL initial response. See \fICURLOPT_SASL_IR(3)\fP
270270 .IP CURLOPT_XOAUTH2_BEARER
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_easy_strerror 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_easy_strerror 3 "March 29, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_easy_strerror - return string describing error code
3333 CURLcode error code passed in the argument \fIerrornum\fP.
3434
3535 Typically applications also appreciate \fICURLOPT_ERRORBUFFER(3)\fP for more
36 specific error descriptions generated at run-time.
36 specific error descriptions generated at runtime.
3737 .SH EXAMPLE
3838 .nf
3939 /* Perform the request, res will get the return code */
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_unescape 3 "December 06, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_unescape 3 "December 06, 2021" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_unescape - URL decodes the given string
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_easy_upkeep 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_easy_upkeep 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
2525 curl_easy_upkeep - Perform any connection upkeep checks.
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_escape 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_escape 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_escape - URL encodes the given string
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_formadd 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_formadd 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_formadd - add a section to a multipart/formdata HTTP POST
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_formfree 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_formfree 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_formfree - free a previously build multipart/formdata HTTP POST chain
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_formget 3 "October 31, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_formget 3 "October 31, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_formget - serialize a previously built multipart/formdata HTTP POST chain
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_free 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_free 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_free - reclaim memory that has been obtained through a libcurl call
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_getdate 3 "February 01, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_getdate 3 "February 01, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_getdate - Convert a date string to number of seconds
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_getenv 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_getenv 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_getenv - return value for environment name
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_global_cleanup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_global_cleanup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_global_cleanup - global libcurl cleanup
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_global_init 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_global_init 3 "April 05, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
24 curl_global_init - Global libcurl initialisation
24 curl_global_init - Global libcurl initialization
2525 .SH SYNOPSIS
2626 .nf
2727 #include <curl/curl.h>
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_global_init_mem 3 "January 05, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_global_init_mem 3 "April 05, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
24 curl_global_init_mem - Global libcurl initialisation with memory callbacks
24 curl_global_init_mem - Global libcurl initialization with memory callbacks
2525 .SH SYNOPSIS
2626 .nf
2727 #include <curl/curl.h>
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_global_sslset 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_global_sslset 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_global_sslset - Select SSL backend to use with libcurl
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_addpart 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_addpart 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_addpart - append a new empty part to a mime structure
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_data 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_data 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_data - set a mime part's body data from memory
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_data_cb 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_data_cb 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_data_cb - set a callback-based data source for a mime part's body
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_encoder 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_encoder 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_encoder - set a mime part's encoder and content transfer encoding
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_filedata 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_filedata 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_filedata - set a mime part's body data from a file contents
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_filename 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_filename 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_filename - set a mime part's remote file name
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_free 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_free 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_free - free a previously built mime structure
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_headers 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_headers 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_headers - set a mime part's custom headers
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_init 3 "December 17, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_init 3 "December 17, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_init - create a mime handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_name 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_name 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_name - set a mime part's name
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_subparts 3 "December 17, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_subparts 3 "December 17, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_subparts - set subparts of a multipart mime part
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_mime_type 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_mime_type 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_mime_type - set a mime part's content type
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_printf 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_printf 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_maprintf, curl_mfprintf, curl_mprintf, curl_msnprintf, curl_msprintf
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_add_handle 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_add_handle 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_add_handle - add an easy handle to a multi session
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_assign 3 "March 05, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_assign 3 "March 05, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_assign \- set data to associate with an internal socket
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_cleanup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_cleanup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_cleanup - close down a multi session
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_fdset 3 "October 31, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_fdset 3 "October 31, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_fdset - extracts file descriptor information from a multi handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_info_read 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_info_read 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_info_read - read multi stack informationals
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_init 3 "January 04, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_init 3 "January 04, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_init - create a multi handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_perform 3 "December 09, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_perform 3 "December 09, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_perform - reads/writes available data from each easy handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_poll 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_poll 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_poll - polls on all easy handles in a multi handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_remove_handle 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_remove_handle 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_remove_handle - remove an easy handle from a multi session
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_setopt 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_setopt 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_setopt \- set options for a curl multi handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_socket 3 "January 11, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_socket 3 "January 11, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_socket \- reads/writes available data
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_socket_action 3 "December 09, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_socket_action 3 "December 09, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_socket_action \- reads/writes available data given an action
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_strerror 3 "November 04, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_strerror 3 "November 04, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_strerror - return string describing error code
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_timeout 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_timeout 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_timeout \- how long to wait for action before proceeding
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_wait 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_wait 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_wait - polls on all easy handles in a multi handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_multi_wakeup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_multi_wakeup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_multi_wakeup - wakes up a sleeping curl_multi_poll call
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_share_cleanup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_share_cleanup 3 "April 25, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_share_cleanup - Clean up a shared object
3636 immediately with no action.
3737 .SH EXAMPLE
3838 .nf
39 CURLSHcode sh
39 CURLSHcode sh;
4040 share = curl_share_init();
4141 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
4242 /* use the share, then ... */
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_share_init 3 "January 05, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_share_init 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_share_init - Create a shared object
3939 specific curl handle use the data in this share.
4040 .SH EXAMPLE
4141 .nf
42 CURLSHcode sh
42 CURLSHcode sh;
4343 share = curl_share_init();
4444 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
4545 if(sh)
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_share_setopt 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_share_setopt 3 "April 25, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_share_setopt - Set options for a shared object
4343 See \fICURLSHOPT_USERDATA(3)\fP.
4444 .SH EXAMPLE
4545 .nf
46 CURLSHcode sh
46 CURLSHcode sh;
4747 share = curl_share_init();
4848 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
4949 if(sh)
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_share_strerror 3 "January 05, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_share_strerror 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_share_strerror - return string describing error code
3131 error code passed in the argument \fIerrornum\fP.
3232 .SH EXAMPLE
3333 .nf
34 CURLSHcode sh
34 CURLSHcode sh;
3535 share = curl_share_init();
3636 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
3737 if(sh)
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_slist_append 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_slist_append 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_slist_append - add a string to an slist
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_slist_free_all 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_slist_free_all 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_slist_free_all - free an entire curl_slist list
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_strequal 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_strequal 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_strequal, curl_strnequal - case insensitive string comparisons
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_unescape 3 "January 05, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_unescape 3 "January 05, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_unescape - URL decodes the given string
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url - returns a new CURLU handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url_cleanup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url_cleanup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url_cleanup - free a CURLU handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url_dup 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url_dup 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url_dup - duplicate a CURLU handle
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url_get 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url_get 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url_get - extract a part from a URL
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url_set 3 "January 08, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url_set 3 "January 08, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url_set - set a URL part
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_url_strerror 3 "November 04, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_url_strerror 3 "November 04, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_url_strerror - return string describing error code
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH curl_version 3 "November 26, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH curl_version 3 "November 26, 2021" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 curl_version - returns the libcurl version string
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH curl_version_info 3 "January 10, 2022" "libcurl 7.82.0" "libcurl Manual"
22 .TH curl_version_info 3 "March 29, 2022" "libcurl 7.83.0" "libcurl Manual"
2323
2424 .SH NAME
25 curl_version_info - returns run-time libcurl version info
25 curl_version_info - returns runtime libcurl version info
2626 .SH SYNOPSIS
2727 .nf
2828 #include <curl/curl.h>
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl 3 "November 08, 2021" "libcurl 7.82.0" "libcurl easy interface"
21 .TH libcurl 3 "November 08, 2021" "libcurl 7.83.0" "libcurl easy interface"
2222
2323 .SH NAME
2424 libcurl-easy \- easy interface overview
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl-env 3 "January 09, 2022" "libcurl 7.82.0" "libcurl environment variables"
21 .TH libcurl-env 3 "January 09, 2022" "libcurl 7.83.0" "libcurl environment variables"
2222
2323 .SH NAME
2424 libcurl-env \- environment variables libcurl understands
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH libcurl-errors 3 "January 09, 2022" "libcurl 7.82.0" "libcurl errors"
22 .TH libcurl-errors 3 "January 09, 2022" "libcurl 7.83.0" "libcurl errors"
2323
2424 .SH NAME
2525 libcurl-errors \- error codes in libcurl
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH libcurl-multi 3 "December 23, 2021" "libcurl 7.82.0" "libcurl multi interface"
22 .TH libcurl-multi 3 "December 23, 2021" "libcurl 7.83.0" "libcurl multi interface"
2323
2424 .SH NAME
2525 libcurl-multi \- how to use the multi interface
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH libcurl-security 3 "December 15, 2021" "libcurl 7.82.0" "libcurl security"
22 .TH libcurl-security 3 "December 15, 2021" "libcurl 7.83.0" "libcurl security"
2323
2424 .SH NAME
2525 libcurl-security \- security considerations when using libcurl
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl-share 3 "October 31, 2021" "libcurl 7.82.0" "libcurl share interface"
21 .TH libcurl-share 3 "October 31, 2021" "libcurl 7.83.0" "libcurl share interface"
2222
2323 .SH NAME
2424 libcurl-share \- how to use the share interface
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl-symbols 3 "Mar 5, 2022" "libcurl 7.41.0" "libcurl symbols"
21 .TH libcurl-symbols 3 "Apr 27, 2022" "libcurl 7.41.0" "libcurl symbols"
2222 .SH NAME
2323 libcurl-symbols \- libcurl symbol version information
2424 .SH "libcurl symbols"
3434 code will make it no longer compile error-free after that specified version.
3535
3636 This man page is automatically generated from the symbols-in-versions file.
37 .IP CURL_CHUNK_BGN_FUNC_FAIL
38 Introduced in 7.21.0
39 .IP CURL_CHUNK_BGN_FUNC_OK
40 Introduced in 7.21.0
41 .IP CURL_CHUNK_BGN_FUNC_SKIP
42 Introduced in 7.21.0
43 .IP CURL_CHUNK_END_FUNC_FAIL
44 Introduced in 7.21.0
45 .IP CURL_CHUNK_END_FUNC_OK
46 Introduced in 7.21.0
47 .IP CURL_CSELECT_ERR
48 Introduced in 7.16.3
49 .IP CURL_CSELECT_IN
50 Introduced in 7.16.3
51 .IP CURL_CSELECT_OUT
52 Introduced in 7.16.3
53 .IP CURL_DID_MEMORY_FUNC_TYPEDEFS
54 Introduced in 7.49.0
55 .IP CURL_EASY_NONE
56 Introduced in 7.14.0
57 .IP CURL_EASY_TIMEOUT
58 Introduced in 7.14.0
59 .IP CURL_ERROR_SIZE
60 Introduced in 7.1
61 .IP CURL_FNMATCHFUNC_FAIL
62 Introduced in 7.21.0
63 .IP CURL_FNMATCHFUNC_MATCH
64 Introduced in 7.21.0
65 .IP CURL_FNMATCHFUNC_NOMATCH
66 Introduced in 7.21.0
67 .IP CURL_FORMADD_DISABLED
68 Introduced in 7.12.1
69 Deprecated since 7.56.0
70 .IP CURL_FORMADD_ILLEGAL_ARRAY
71 Introduced in 7.9.8
72 Deprecated since 7.56.0
73 .IP CURL_FORMADD_INCOMPLETE
74 Introduced in 7.9.8
75 Deprecated since 7.56.0
76 .IP CURL_FORMADD_MEMORY
77 Introduced in 7.9.8
78 Deprecated since 7.56.0
79 .IP CURL_FORMADD_NULL
80 Introduced in 7.9.8
81 Deprecated since 7.56.0
82 .IP CURL_FORMADD_OK
83 Introduced in 7.9.8
84 Deprecated since 7.56.0
85 .IP CURL_FORMADD_OPTION_TWICE
86 Introduced in 7.9.8
87 Deprecated since 7.56.0
88 .IP CURL_FORMADD_UNKNOWN_OPTION
89 Introduced in 7.9.8
90 Deprecated since 7.56.0
91 .IP CURL_GLOBAL_ACK_EINTR
92 Introduced in 7.30.0
93 .IP CURL_GLOBAL_ALL
94 Introduced in 7.8
95 .IP CURL_GLOBAL_DEFAULT
96 Introduced in 7.8
97 .IP CURL_GLOBAL_NOTHING
98 Introduced in 7.8
99 .IP CURL_GLOBAL_SSL
100 Introduced in 7.8
101 .IP CURL_GLOBAL_WIN32
102 Introduced in 7.8.1
103 .IP CURL_HET_DEFAULT
104 Introduced in 7.59.0
105 .IP CURL_HTTP_VERSION_1_0
106 Introduced in 7.9.1
107 .IP CURL_HTTP_VERSION_1_1
108 Introduced in 7.9.1
109 .IP CURL_HTTP_VERSION_2
110 Introduced in 7.43.0
111 .IP CURL_HTTP_VERSION_2_0
112 Introduced in 7.33.0
113 .IP CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE
114 Introduced in 7.49.0
115 .IP CURL_HTTP_VERSION_2TLS
116 Introduced in 7.47.0
117 .IP CURL_HTTP_VERSION_3
118 Introduced in 7.66.0
119 .IP CURL_HTTP_VERSION_NONE
120 Introduced in 7.9.1
121 .IP CURL_HTTPPOST_BUFFER
122 Introduced in 7.46.0
123 .IP CURL_HTTPPOST_CALLBACK
124 Introduced in 7.46.0
125 .IP CURL_HTTPPOST_FILENAME
126 Introduced in 7.46.0
127 .IP CURL_HTTPPOST_LARGE
128 Introduced in 7.46.0
129 .IP CURL_HTTPPOST_PTRBUFFER
130 Introduced in 7.46.0
131 .IP CURL_HTTPPOST_PTRCONTENTS
132 Introduced in 7.46.0
133 .IP CURL_HTTPPOST_PTRNAME
134 Introduced in 7.46.0
135 .IP CURL_HTTPPOST_READFILE
136 Introduced in 7.46.0
137 .IP CURL_IPRESOLVE_V4
138 Introduced in 7.10.8
139 .IP CURL_IPRESOLVE_V6
140 Introduced in 7.10.8
141 .IP CURL_IPRESOLVE_WHATEVER
142 Introduced in 7.10.8
143 .IP CURL_LOCK_ACCESS_NONE
144 Introduced in 7.10.3
145 .IP CURL_LOCK_ACCESS_SHARED
146 Introduced in 7.10.3
147 .IP CURL_LOCK_ACCESS_SINGLE
148 Introduced in 7.10.3
149 .IP CURL_LOCK_DATA_CONNECT
150 Introduced in 7.10.3
151 .IP CURL_LOCK_DATA_COOKIE
152 Introduced in 7.10.3
153 .IP CURL_LOCK_DATA_DNS
154 Introduced in 7.10.3
155 .IP CURL_LOCK_DATA_NONE
156 Introduced in 7.10.3
157 .IP CURL_LOCK_DATA_PSL
158 Introduced in 7.61.0
159 .IP CURL_LOCK_DATA_SHARE
160 Introduced in 7.10.4
161 .IP CURL_LOCK_DATA_SSL_SESSION
162 Introduced in 7.10.3
163 .IP CURL_LOCK_TYPE_CONNECT
164 Introduced in 7.10
165 .IP CURL_LOCK_TYPE_COOKIE
166 Introduced in 7.10
167 .IP CURL_LOCK_TYPE_DNS
168 Introduced in 7.10
169 .IP CURL_LOCK_TYPE_NONE
170 Introduced in 7.10
171 .IP CURL_LOCK_TYPE_SSL_SESSION
172 Introduced in 7.10
173 .IP CURL_MAX_HTTP_HEADER
174 Introduced in 7.19.7
175 .IP CURL_MAX_READ_SIZE
176 Introduced in 7.53.0
177 .IP CURL_MAX_WRITE_SIZE
178 Introduced in 7.9.7
179 .IP CURL_NETRC_IGNORED
180 Introduced in 7.9.8
181 .IP CURL_NETRC_OPTIONAL
182 Introduced in 7.9.8
183 .IP CURL_NETRC_REQUIRED
184 Introduced in 7.9.8
185 .IP CURL_POLL_IN
186 Introduced in 7.14.0
187 .IP CURL_POLL_INOUT
188 Introduced in 7.14.0
189 .IP CURL_POLL_NONE
190 Introduced in 7.14.0
191 .IP CURL_POLL_OUT
192 Introduced in 7.14.0
193 .IP CURL_POLL_REMOVE
194 Introduced in 7.14.0
195 .IP CURL_PREREQFUNC_ABORT
196 Introduced in 7.79.0
197 .IP CURL_PREREQFUNC_OK
198 Introduced in 7.79.0
199 .IP CURL_PROGRESS_BAR
200 Introduced in 7.1.1
201 .IP CURL_PROGRESS_STATS
202 Introduced in 7.1.1
203 .IP CURL_PROGRESSFUNC_CONTINUE
204 Introduced in 7.68.0
205 .IP CURL_PUSH_DENY
206 Introduced in 7.44.0
207 .IP CURL_PUSH_ERROROUT
208 Introduced in 7.72.0
209 .IP CURL_PUSH_OK
210 Introduced in 7.44.0
211 .IP CURL_READFUNC_ABORT
212 Introduced in 7.12.1
213 .IP CURL_READFUNC_PAUSE
214 Introduced in 7.18.0
215 .IP CURL_REDIR_GET_ALL
216 Introduced in 7.19.1
217 .IP CURL_REDIR_POST_301
218 Introduced in 7.19.1
219 .IP CURL_REDIR_POST_302
220 Introduced in 7.19.1
221 .IP CURL_REDIR_POST_303
222 Introduced in 7.25.1
223 .IP CURL_REDIR_POST_ALL
224 Introduced in 7.19.1
225 .IP CURL_RTSPREQ_ANNOUNCE
226 Introduced in 7.20.0
227 .IP CURL_RTSPREQ_DESCRIBE
228 Introduced in 7.20.0
229 .IP CURL_RTSPREQ_GET_PARAMETER
230 Introduced in 7.20.0
231 .IP CURL_RTSPREQ_NONE
232 Introduced in 7.20.0
233 .IP CURL_RTSPREQ_OPTIONS
234 Introduced in 7.20.0
235 .IP CURL_RTSPREQ_PAUSE
236 Introduced in 7.20.0
237 .IP CURL_RTSPREQ_PLAY
238 Introduced in 7.20.0
239 .IP CURL_RTSPREQ_RECEIVE
240 Introduced in 7.20.0
241 .IP CURL_RTSPREQ_RECORD
242 Introduced in 7.20.0
243 .IP CURL_RTSPREQ_SET_PARAMETER
244 Introduced in 7.20.0
245 .IP CURL_RTSPREQ_SETUP
246 Introduced in 7.20.0
247 .IP CURL_RTSPREQ_TEARDOWN
248 Introduced in 7.20.0
249 .IP CURL_SEEKFUNC_CANTSEEK
250 Introduced in 7.19.5
251 .IP CURL_SEEKFUNC_FAIL
252 Introduced in 7.19.5
253 .IP CURL_SEEKFUNC_OK
254 Introduced in 7.19.5
255 .IP CURL_SOCKET_BAD
256 Introduced in 7.14.0
257 .IP CURL_SOCKET_TIMEOUT
258 Introduced in 7.14.0
259 .IP CURL_SOCKOPT_ALREADY_CONNECTED
260 Introduced in 7.21.5
261 .IP CURL_SOCKOPT_ERROR
262 Introduced in 7.21.5
263 .IP CURL_SOCKOPT_OK
264 Introduced in 7.21.5
265 .IP CURL_SSLVERSION_DEFAULT
266 Introduced in 7.9.2
267 .IP CURL_SSLVERSION_MAX_DEFAULT
268 Introduced in 7.54.0
269 .IP CURL_SSLVERSION_MAX_NONE
270 Introduced in 7.54.0
271 .IP CURL_SSLVERSION_MAX_TLSv1_0
272 Introduced in 7.54.0
273 .IP CURL_SSLVERSION_MAX_TLSv1_1
274 Introduced in 7.54.0
275 .IP CURL_SSLVERSION_MAX_TLSv1_2
276 Introduced in 7.54.0
277 .IP CURL_SSLVERSION_MAX_TLSv1_3
278 Introduced in 7.54.0
279 .IP CURL_SSLVERSION_SSLv2
280 Introduced in 7.9.2
281 .IP CURL_SSLVERSION_SSLv3
282 Introduced in 7.9.2
283 .IP CURL_SSLVERSION_TLSv1
284 Introduced in 7.9.2
285 .IP CURL_SSLVERSION_TLSv1_0
286 Introduced in 7.34.0
287 .IP CURL_SSLVERSION_TLSv1_1
288 Introduced in 7.34.0
289 .IP CURL_SSLVERSION_TLSv1_2
290 Introduced in 7.34.0
291 .IP CURL_SSLVERSION_TLSv1_3
292 Introduced in 7.52.0
293 .IP CURL_STRICTER
294 Introduced in 7.50.2
295 .IP CURL_TIMECOND_IFMODSINCE
296 Introduced in 7.9.7
297 .IP CURL_TIMECOND_IFUNMODSINCE
298 Introduced in 7.9.7
299 .IP CURL_TIMECOND_LASTMOD
300 Introduced in 7.9.7
301 .IP CURL_TIMECOND_NONE
302 Introduced in 7.9.7
303 .IP CURL_TLSAUTH_NONE
304 Introduced in 7.21.4
305 .IP CURL_TLSAUTH_SRP
306 Introduced in 7.21.4
307 .IP CURL_TRAILERFUNC_ABORT
308 Introduced in 7.64.0
309 .IP CURL_TRAILERFUNC_OK
310 Introduced in 7.64.0
311 .IP CURL_UPKEEP_INTERVAL_DEFAULT
312 Introduced in 7.62.0
313 .IP CURL_VERSION_ALTSVC
314 Introduced in 7.64.1
315 .IP CURL_VERSION_ASYNCHDNS
316 Introduced in 7.10.7
317 .IP CURL_VERSION_BROTLI
318 Introduced in 7.57.0
319 .IP CURL_VERSION_CONV
320 Introduced in 7.15.4
321 .IP CURL_VERSION_CURLDEBUG
322 Introduced in 7.19.6
323 .IP CURL_VERSION_DEBUG
324 Introduced in 7.10.6
325 .IP CURL_VERSION_GSASL
326 Introduced in 7.76.0
327 .IP CURL_VERSION_GSSAPI
328 Introduced in 7.38.0
329 .IP CURL_VERSION_GSSNEGOTIATE
330 Introduced in 7.10.6
331 Deprecated since 7.38.0
332 .IP CURL_VERSION_HSTS
333 Introduced in 7.74.0
334 .IP CURL_VERSION_HTTP2
335 Introduced in 7.33.0
336 .IP CURL_VERSION_HTTP3
337 Introduced in 7.66.0
338 .IP CURL_VERSION_HTTPS_PROXY
339 Introduced in 7.52.0
340 .IP CURL_VERSION_IDN
341 Introduced in 7.12.0
342 .IP CURL_VERSION_IPV6
343 Introduced in 7.10
344 .IP CURL_VERSION_KERBEROS4
345 Introduced in 7.10
346 Deprecated since 7.33.0
347 .IP CURL_VERSION_KERBEROS5
348 Introduced in 7.40.0
349 .IP CURL_VERSION_LARGEFILE
350 Introduced in 7.11.1
351 .IP CURL_VERSION_LIBZ
352 Introduced in 7.10
353 .IP CURL_VERSION_MULTI_SSL
354 Introduced in 7.56.0
355 .IP CURL_VERSION_NTLM
356 Introduced in 7.10.6
357 .IP CURL_VERSION_NTLM_WB
358 Introduced in 7.22.0
359 .IP CURL_VERSION_PSL
360 Introduced in 7.47.0
361 .IP CURL_VERSION_SPNEGO
362 Introduced in 7.10.8
363 .IP CURL_VERSION_SSL
364 Introduced in 7.10
365 .IP CURL_VERSION_SSPI
366 Introduced in 7.13.2
367 .IP CURL_VERSION_TLSAUTH_SRP
368 Introduced in 7.21.4
369 .IP CURL_VERSION_UNICODE
370 Introduced in 7.72.0
371 .IP CURL_VERSION_UNIX_SOCKETS
372 Introduced in 7.40.0
373 .IP CURL_VERSION_ZSTD
374 Introduced in 7.72.0
375 .IP CURL_WAIT_POLLIN
376 Introduced in 7.28.0
377 .IP CURL_WAIT_POLLOUT
378 Introduced in 7.28.0
379 .IP CURL_WAIT_POLLPRI
380 Introduced in 7.28.0
381 .IP CURL_WIN32
382 Introduced in 7.69.0
383 .IP CURL_WRITEFUNC_PAUSE
384 Introduced in 7.18.0
385 .IP CURL_ZERO_TERMINATED
386 Introduced in 7.56.0
37387 .IP CURLALTSVC_H1
38388 Introduced in 7.64.1
39389 .IP CURLALTSVC_H2
46396 Introduced in 7.10.6
47397 .IP CURLAUTH_ANYSAFE
48398 Introduced in 7.10.6
399 .IP CURLAUTH_AWS_SIGV4
400 Introduced in 7.75.0
49401 .IP CURLAUTH_BASIC
50402 Introduced in 7.10.6
51403 .IP CURLAUTH_BEARER
69421 Introduced in 7.22.0
70422 .IP CURLAUTH_ONLY
71423 Introduced in 7.21.3
72 .IP CURLAUTH_AWS_SIGV4
73 Introduced in 7.75.0
74424 .IP CURLCLOSEPOLICY_CALLBACK
75425 Introduced in 7.7
76426 .IP CURLCLOSEPOLICY_LEAST_RECENTLY_USED
119469 Introduced in 7.1
120470 .IP CURLE_FAILED_INIT
121471 Introduced in 7.1
472 .IP CURLE_FILE_COULDNT_READ_FILE
473 Introduced in 7.1
122474 .IP CURLE_FILESIZE_EXCEEDED
123475 Introduced in 7.10.8
124 .IP CURLE_FILE_COULDNT_READ_FILE
125 Introduced in 7.1
126476 .IP CURLE_FTP_ACCEPT_FAILED
127477 Introduced in 7.24.0
128478 .IP CURLE_FTP_ACCEPT_TIMEOUT
229579 .IP CURLE_MALFORMAT_USER
230580 Introduced in 7.1
231581 Deprecated since 7.17.0
582 .IP CURLE_NO_CONNECTION_AVAILABLE
583 Introduced in 7.30.0
232584 .IP CURLE_NOT_BUILT_IN
233585 Introduced in 7.21.5
234 .IP CURLE_NO_CONNECTION_AVAILABLE
235 Introduced in 7.30.0
236586 .IP CURLE_OK
237587 Introduced in 7.1
238588 .IP CURLE_OPERATION_TIMEDOUT
454804 .IP CURLFORM_STREAM
455805 Introduced in 7.18.2
456806 Deprecated since 7.56.0
807 .IP CURLFTP_CREATE_DIR
808 Introduced in 7.19.4
809 .IP CURLFTP_CREATE_DIR_NONE
810 Introduced in 7.19.4
811 .IP CURLFTP_CREATE_DIR_RETRY
812 Introduced in 7.19.4
457813 .IP CURLFTPAUTH_DEFAULT
458814 Introduced in 7.12.2
459815 .IP CURLFTPAUTH_SSL
486842 .IP CURLFTPSSL_TRY
487843 Introduced in 7.11.0
488844 Deprecated since 7.17.0
489 .IP CURLFTP_CREATE_DIR
490 Introduced in 7.19.4
491 .IP CURLFTP_CREATE_DIR_NONE
492 Introduced in 7.19.4
493 .IP CURLFTP_CREATE_DIR_RETRY
494 Introduced in 7.19.4
495845 .IP CURLGSSAPI_DELEGATION_FLAG
496846 Introduced in 7.22.0
497847 .IP CURLGSSAPI_DELEGATION_NONE
498848 Introduced in 7.22.0
499849 .IP CURLGSSAPI_DELEGATION_POLICY_FLAG
500850 Introduced in 7.22.0
851 .IP CURLH_1XX
852 Introduced in 7.83.0
853 .IP CURLH_CONNECT
854 Introduced in 7.83.0
855 .IP CURLH_HEADER
856 Introduced in 7.83.0
857 .IP CURLH_PSEUDO
858 Introduced in 7.83.0
859 .IP CURLH_TRAILER
860 Introduced in 7.83.0
861 .IP CURLHE_BAD_ARGUMENT
862 Introduced in 7.83.0
863 .IP CURLHE_BADINDEX
864 Introduced in 7.83.0
865 .IP CURLHE_MISSING
866 Introduced in 7.83.0
867 .IP CURLHE_NOHEADERS
868 Introduced in 7.83.0
869 .IP CURLHE_NOREQUEST
870 Introduced in 7.83.0
871 .IP CURLHE_NOT_BUILT_IN
872 Introduced in 7.83.0
873 .IP CURLHE_OK
874 Introduced in 7.83.0
875 .IP CURLHE_OUT_OF_MEMORY
876 Introduced in 7.83.0
501877 .IP CURLHEADER_SEPARATE
502878 Introduced in 7.37.0
503879 .IP CURLHEADER_UNIFIED
556932 Introduced in 7.9.6
557933 .IP CURLINFO_HEADER_SIZE
558934 Introduced in 7.4.1
559 .IP CURLINFO_HTTPAUTH_AVAIL
560 Introduced in 7.10.8
561935 .IP CURLINFO_HTTP_CODE
562936 Introduced in 7.4.1
563937 Deprecated since 7.10.8
565939 Introduced in 7.10.7
566940 .IP CURLINFO_HTTP_VERSION
567941 Introduced in 7.50.0
942 .IP CURLINFO_HTTPAUTH_AVAIL
943 Introduced in 7.10.8
568944 .IP CURLINFO_LASTONE
569945 Introduced in 7.4.1
570946 .IP CURLINFO_LASTSOCKET
601977 Introduced in 7.10.3
602978 .IP CURLINFO_PROTOCOL
603979 Introduced in 7.52.0
980 .IP CURLINFO_PROXY_ERROR
981 Introduced in 7.73.0
982 .IP CURLINFO_PROXY_SSL_VERIFYRESULT
983 Introduced in 7.52.0
604984 .IP CURLINFO_PROXYAUTH_AVAIL
605985 Introduced in 7.10.8
606 .IP CURLINFO_PROXY_ERROR
607 Introduced in 7.73.0
608 .IP CURLINFO_PROXY_SSL_VERIFYRESULT
609 Introduced in 7.52.0
610986 .IP CURLINFO_PTR
611987 Introduced in 7.54.1
612988 .IP CURLINFO_REDIRECT_COUNT
7201096 Introduced in 7.19.6
7211097 .IP CURLKHTYPE_UNKNOWN
7221098 Introduced in 7.19.6
723 .IP CURLMIMEOPT_FORMESCAPE
724 Introduced in 7.81.0
725 .IP CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE
726 Introduced in 7.30.0
727 .IP CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE
728 Introduced in 7.30.0
729 .IP CURLMOPT_MAXCONNECTS
730 Introduced in 7.16.3
731 .IP CURLMOPT_MAX_CONCURRENT_STREAMS
732 Introduced in 7.67.0
733 .IP CURLMOPT_MAX_HOST_CONNECTIONS
734 Introduced in 7.30.0
735 .IP CURLMOPT_MAX_PIPELINE_LENGTH
736 Introduced in 7.30.0
737 .IP CURLMOPT_MAX_TOTAL_CONNECTIONS
738 Introduced in 7.30.0
739 .IP CURLMOPT_PIPELINING
740 Introduced in 7.16.0
741 .IP CURLMOPT_PIPELINING_SERVER_BL
742 Introduced in 7.30.0
743 .IP CURLMOPT_PIPELINING_SITE_BL
744 Introduced in 7.30.0
745 .IP CURLMOPT_PUSHDATA
746 Introduced in 7.44.0
747 .IP CURLMOPT_PUSHFUNCTION
748 Introduced in 7.44.0
749 .IP CURLMOPT_SOCKETDATA
750 Introduced in 7.15.4
751 .IP CURLMOPT_SOCKETFUNCTION
752 Introduced in 7.15.4
753 .IP CURLMOPT_TIMERDATA
754 Introduced in 7.16.0
755 .IP CURLMOPT_TIMERFUNCTION
756 Introduced in 7.16.0
757 .IP CURLMSG_DONE
758 Introduced in 7.9.6
759 .IP CURLMSG_NONE
760 Introduced in 7.9.6
7611099 .IP CURLM_ABORTED_BY_CALLBACK
7621100 Introduced in 7.81.0
7631101 .IP CURLM_ADDED_ALREADY
7861124 Introduced in 7.15.4
7871125 .IP CURLM_WAKEUP_FAILURE
7881126 Introduced in 7.68.0
1127 .IP CURLMIMEOPT_FORMESCAPE
1128 Introduced in 7.81.0
1129 .IP CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE
1130 Introduced in 7.30.0
1131 .IP CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE
1132 Introduced in 7.30.0
1133 .IP CURLMOPT_MAX_CONCURRENT_STREAMS
1134 Introduced in 7.67.0
1135 .IP CURLMOPT_MAX_HOST_CONNECTIONS
1136 Introduced in 7.30.0
1137 .IP CURLMOPT_MAX_PIPELINE_LENGTH
1138 Introduced in 7.30.0
1139 .IP CURLMOPT_MAX_TOTAL_CONNECTIONS
1140 Introduced in 7.30.0
1141 .IP CURLMOPT_MAXCONNECTS
1142 Introduced in 7.16.3
1143 .IP CURLMOPT_PIPELINING
1144 Introduced in 7.16.0
1145 .IP CURLMOPT_PIPELINING_SERVER_BL
1146 Introduced in 7.30.0
1147 .IP CURLMOPT_PIPELINING_SITE_BL
1148 Introduced in 7.30.0
1149 .IP CURLMOPT_PUSHDATA
1150 Introduced in 7.44.0
1151 .IP CURLMOPT_PUSHFUNCTION
1152 Introduced in 7.44.0
1153 .IP CURLMOPT_SOCKETDATA
1154 Introduced in 7.15.4
1155 .IP CURLMOPT_SOCKETFUNCTION
1156 Introduced in 7.15.4
1157 .IP CURLMOPT_TIMERDATA
1158 Introduced in 7.16.0
1159 .IP CURLMOPT_TIMERFUNCTION
1160 Introduced in 7.16.0
1161 .IP CURLMSG_DONE
1162 Introduced in 7.9.6
1163 .IP CURLMSG_NONE
1164 Introduced in 7.9.6
7891165 .IP CURLOPT
7901166 Introduced in 7.69.0
791 .IP CURLOPTTYPE_BLOB
792 Introduced in 7.71.0
793 .IP CURLOPTTYPE_CBPOINT
794 Introduced in 7.73.0
795 .IP CURLOPTTYPE_FUNCTIONPOINT
796 Introduced in 7.1
797 .IP CURLOPTTYPE_LONG
798 Introduced in 7.1
799 .IP CURLOPTTYPE_OBJECTPOINT
800 Introduced in 7.1
801 .IP CURLOPTTYPE_OFF_T
802 Introduced in 7.11.0
803 .IP CURLOPTTYPE_SLISTPOINT
804 Introduced in 7.65.2
805 .IP CURLOPTTYPE_STRINGPOINT
806 Introduced in 7.46.0
807 .IP CURLOPTTYPE_VALUES
808 Introduced in 7.73.0
8091167 .IP CURLOPT_ABSTRACT_UNIX_SOCKET
8101168 Introduced in 7.53.0
1169 .IP CURLOPT_ACCEPT_ENCODING
1170 Introduced in 7.21.6
8111171 .IP CURLOPT_ACCEPTTIMEOUT_MS
8121172 Introduced in 7.24.0
813 .IP CURLOPT_ACCEPT_ENCODING
814 Introduced in 7.21.6
8151173 .IP CURLOPT_ADDRESS_SCOPE
8161174 Introduced in 7.19.0
8171175 .IP CURLOPT_ALTSVC
8221180 Introduced in 7.17.0
8231181 .IP CURLOPT_AUTOREFERER
8241182 Introduced in 7.1
1183 .IP CURLOPT_AWS_SIGV4
1184 Introduced in 7.75.0
8251185 .IP CURLOPT_BUFFERSIZE
8261186 Introduced in 7.10
8271187 .IP CURLOPT_CAINFO
8491209 Introduced in 7.21.7
8501210 .IP CURLOPT_CLOSESOCKETFUNCTION
8511211 Introduced in 7.21.7
1212 .IP CURLOPT_CONNECT_ONLY
1213 Introduced in 7.15.2
1214 .IP CURLOPT_CONNECT_TO
1215 Introduced in 7.49.0
8521216 .IP CURLOPT_CONNECTTIMEOUT
8531217 Introduced in 7.7
8541218 .IP CURLOPT_CONNECTTIMEOUT_MS
8551219 Introduced in 7.16.2
856 .IP CURLOPT_CONNECT_ONLY
857 Introduced in 7.15.2
858 .IP CURLOPT_CONNECT_TO
859 Introduced in 7.49.0
8601220 .IP CURLOPT_CONV_FROM_NETWORK_FUNCTION
8611221 Introduced in 7.15.4
8621222 Deprecated since 7.82.0
9441304 Introduced in 7.7
9451305 .IP CURLOPT_FRESH_CONNECT
9461306 Introduced in 7.7
947 .IP CURLOPT_FTPAPPEND
948 Introduced in 7.1
949 Deprecated since 7.16.4
950 .IP CURLOPT_FTPASCII
951 Introduced in 7.1
952 Deprecated since 7.11.1
953 Last used in 7.15.5
954 .IP CURLOPT_FTPLISTONLY
955 Introduced in 7.1
956 Deprecated since 7.16.4
957 .IP CURLOPT_FTPPORT
958 Introduced in 7.1
959 .IP CURLOPT_FTPSSLAUTH
960 Introduced in 7.12.2
9611307 .IP CURLOPT_FTP_ACCOUNT
9621308 Introduced in 7.13.0
9631309 .IP CURLOPT_FTP_ALTERNATIVE_TO_USER
9811327 Introduced in 7.9.2
9821328 .IP CURLOPT_FTP_USE_PRET
9831329 Introduced in 7.20.0
1330 .IP CURLOPT_FTPAPPEND
1331 Introduced in 7.1
1332 Deprecated since 7.16.4
1333 .IP CURLOPT_FTPASCII
1334 Introduced in 7.1
1335 Deprecated since 7.11.1
1336 Last used in 7.15.5
1337 .IP CURLOPT_FTPLISTONLY
1338 Introduced in 7.1
1339 Deprecated since 7.16.4
1340 .IP CURLOPT_FTPPORT
1341 Introduced in 7.1
1342 .IP CURLOPT_FTPSSLAUTH
1343 Introduced in 7.12.2
9841344 .IP CURLOPT_GSSAPI_DELEGATION
9851345 Introduced in 7.22.0
9861346 .IP CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS
10111371 Introduced in 7.64.0
10121372 .IP CURLOPT_HTTP200ALIASES
10131373 Introduced in 7.10.3
1014 .IP CURLOPT_HTTPAUTH
1015 Introduced in 7.10.6
1016 .IP CURLOPT_HTTPGET
1017 Introduced in 7.8.1
1018 .IP CURLOPT_HTTPHEADER
1019 Introduced in 7.1
1020 .IP CURLOPT_HTTPPOST
1021 Introduced in 7.1
1022 Deprecated since 7.56.0
1023 .IP CURLOPT_HTTPPROXYTUNNEL
1024 Introduced in 7.3
1025 .IP CURLOPT_HTTPREQUEST
1026 Introduced in 7.1
10271374 .IP CURLOPT_HTTP_CONTENT_DECODING
10281375 Introduced in 7.16.2
10291376 .IP CURLOPT_HTTP_TRANSFER_DECODING
10301377 Introduced in 7.16.2
10311378 .IP CURLOPT_HTTP_VERSION
10321379 Introduced in 7.9.1
1380 .IP CURLOPT_HTTPAUTH
1381 Introduced in 7.10.6
1382 .IP CURLOPT_HTTPGET
1383 Introduced in 7.8.1
1384 .IP CURLOPT_HTTPHEADER
1385 Introduced in 7.1
1386 .IP CURLOPT_HTTPPOST
1387 Introduced in 7.1
1388 Deprecated since 7.56.0
1389 .IP CURLOPT_HTTPPROXYTUNNEL
1390 Introduced in 7.3
1391 .IP CURLOPT_HTTPREQUEST
1392 Introduced in 7.1
10331393 .IP CURLOPT_IGNORE_CONTENT_LENGTH
10341394 Introduced in 7.14.1
10351395 .IP CURLOPT_INFILE
10821442 Introduced in 7.20.0
10831443 .IP CURLOPT_MAIL_RCPT_ALLLOWFAILS
10841444 Introduced in 7.69.0
1445 .IP CURLOPT_MAX_RECV_SPEED_LARGE
1446 Introduced in 7.15.5
1447 .IP CURLOPT_MAX_SEND_SPEED_LARGE
1448 Introduced in 7.15.5
10851449 .IP CURLOPT_MAXAGE_CONN
10861450 Introduced in 7.65.0
10871451 .IP CURLOPT_MAXCONNECTS
10941458 Introduced in 7.80.0
10951459 .IP CURLOPT_MAXREDIRS
10961460 Introduced in 7.5
1097 .IP CURLOPT_MAX_RECV_SPEED_LARGE
1098 Introduced in 7.15.5
1099 .IP CURLOPT_MAX_SEND_SPEED_LARGE
1100 Introduced in 7.15.5
1461 .IP CURLOPT_MIME_OPTIONS
1462 Introduced in 7.81.0
11011463 .IP CURLOPT_MIMEPOST
11021464 Introduced in 7.56.0
1103 .IP CURLOPT_MIME_OPTIONS
1104 Introduced in 7.81.0
11051465 .IP CURLOPT_MUTE
11061466 Introduced in 7.1
11071467 Deprecated since 7.8
11671527 Introduced in 7.1
11681528 .IP CURLOPT_POSTREDIR
11691529 Introduced in 7.19.1
1530 .IP CURLOPT_PRE_PROXY
1531 Introduced in 7.52.0
11701532 .IP CURLOPT_PREQUOTE
11711533 Introduced in 7.9.5
11721534 .IP CURLOPT_PREREQDATA
11731535 Introduced in 7.80.0
11741536 .IP CURLOPT_PREREQFUNCTION
11751537 Introduced in 7.80.0
1176 .IP CURLOPT_PRE_PROXY
1177 Introduced in 7.52.0
11781538 .IP CURLOPT_PRIVATE
11791539 Introduced in 7.10.3
11801540 .IP CURLOPT_PROGRESSDATA
11861546 Introduced in 7.19.4
11871547 .IP CURLOPT_PROXY
11881548 Introduced in 7.1
1549 .IP CURLOPT_PROXY_CAINFO
1550 Introduced in 7.52.0
1551 .IP CURLOPT_PROXY_CAINFO_BLOB
1552 Introduced in 7.77.0
1553 .IP CURLOPT_PROXY_CAPATH
1554 Introduced in 7.52.0
1555 .IP CURLOPT_PROXY_CRLFILE
1556 Introduced in 7.52.0
1557 .IP CURLOPT_PROXY_ISSUERCERT
1558 Introduced in 7.71.0
1559 .IP CURLOPT_PROXY_ISSUERCERT_BLOB
1560 Introduced in 7.71.0
1561 .IP CURLOPT_PROXY_KEYPASSWD
1562 Introduced in 7.52.0
1563 .IP CURLOPT_PROXY_PINNEDPUBLICKEY
1564 Introduced in 7.52.0
1565 .IP CURLOPT_PROXY_SERVICE_NAME
1566 Introduced in 7.43.0
1567 .IP CURLOPT_PROXY_SSL_CIPHER_LIST
1568 Introduced in 7.52.0
1569 .IP CURLOPT_PROXY_SSL_OPTIONS
1570 Introduced in 7.52.0
1571 .IP CURLOPT_PROXY_SSL_VERIFYHOST
1572 Introduced in 7.52.0
1573 .IP CURLOPT_PROXY_SSL_VERIFYPEER
1574 Introduced in 7.52.0
1575 .IP CURLOPT_PROXY_SSLCERT
1576 Introduced in 7.52.0
1577 .IP CURLOPT_PROXY_SSLCERT_BLOB
1578 Introduced in 7.71.0
1579 .IP CURLOPT_PROXY_SSLCERTTYPE
1580 Introduced in 7.52.0
1581 .IP CURLOPT_PROXY_SSLKEY
1582 Introduced in 7.52.0
1583 .IP CURLOPT_PROXY_SSLKEY_BLOB
1584 Introduced in 7.71.0
1585 .IP CURLOPT_PROXY_SSLKEYTYPE
1586 Introduced in 7.52.0
1587 .IP CURLOPT_PROXY_SSLVERSION
1588 Introduced in 7.52.0
1589 .IP CURLOPT_PROXY_TLS13_CIPHERS
1590 Introduced in 7.61.0
1591 .IP CURLOPT_PROXY_TLSAUTH_PASSWORD
1592 Introduced in 7.52.0
1593 .IP CURLOPT_PROXY_TLSAUTH_TYPE
1594 Introduced in 7.52.0
1595 .IP CURLOPT_PROXY_TLSAUTH_USERNAME
1596 Introduced in 7.52.0
1597 .IP CURLOPT_PROXY_TRANSFER_MODE
1598 Introduced in 7.18.0
11891599 .IP CURLOPT_PROXYAUTH
11901600 Introduced in 7.10.7
11911601 .IP CURLOPT_PROXYHEADER
12001610 Introduced in 7.19.1
12011611 .IP CURLOPT_PROXYUSERPWD
12021612 Introduced in 7.1
1203 .IP CURLOPT_PROXY_CAINFO
1204 Introduced in 7.52.0
1205 .IP CURLOPT_PROXY_CAINFO_BLOB
1206 Introduced in 7.77.0
1207 .IP CURLOPT_PROXY_CAPATH
1208 Introduced in 7.52.0
1209 .IP CURLOPT_PROXY_CRLFILE
1210 Introduced in 7.52.0
1211 .IP CURLOPT_PROXY_ISSUERCERT
1212 Introduced in 7.71.0
1213 .IP CURLOPT_PROXY_ISSUERCERT_BLOB
1214 Introduced in 7.71.0
1215 .IP CURLOPT_PROXY_KEYPASSWD
1216 Introduced in 7.52.0
1217 .IP CURLOPT_PROXY_PINNEDPUBLICKEY
1218 Introduced in 7.52.0
1219 .IP CURLOPT_PROXY_SERVICE_NAME
1220 Introduced in 7.43.0
1221 .IP CURLOPT_PROXY_SSLCERT
1222 Introduced in 7.52.0
1223 .IP CURLOPT_PROXY_SSLCERTTYPE
1224 Introduced in 7.52.0
1225 .IP CURLOPT_PROXY_SSLCERT_BLOB
1226 Introduced in 7.71.0
1227 .IP CURLOPT_PROXY_SSLKEY
1228 Introduced in 7.52.0
1229 .IP CURLOPT_PROXY_SSLKEYTYPE
1230 Introduced in 7.52.0
1231 .IP CURLOPT_PROXY_SSLKEY_BLOB
1232 Introduced in 7.71.0
1233 .IP CURLOPT_PROXY_SSLVERSION
1234 Introduced in 7.52.0
1235 .IP CURLOPT_PROXY_SSL_CIPHER_LIST
1236 Introduced in 7.52.0
1237 .IP CURLOPT_PROXY_SSL_OPTIONS
1238 Introduced in 7.52.0
1239 .IP CURLOPT_PROXY_SSL_VERIFYHOST
1240 Introduced in 7.52.0
1241 .IP CURLOPT_PROXY_SSL_VERIFYPEER
1242 Introduced in 7.52.0
1243 .IP CURLOPT_PROXY_TLS13_CIPHERS
1244 Introduced in 7.61.0
1245 .IP CURLOPT_PROXY_TLSAUTH_PASSWORD
1246 Introduced in 7.52.0
1247 .IP CURLOPT_PROXY_TLSAUTH_TYPE
1248 Introduced in 7.52.0
1249 .IP CURLOPT_PROXY_TLSAUTH_USERNAME
1250 Introduced in 7.52.0
1251 .IP CURLOPT_PROXY_TRANSFER_MODE
1252 Introduced in 7.18.0
12531613 .IP CURLOPT_PUT
12541614 Introduced in 7.1
12551615 .IP CURLOPT_QUOTE
12781638 Introduced in 7.1
12791639 .IP CURLOPT_RESUME_FROM_LARGE
12801640 Introduced in 7.11.0
1641 .IP CURLOPT_RTSP_CLIENT_CSEQ
1642 Introduced in 7.20.0
1643 .IP CURLOPT_RTSP_REQUEST
1644 Introduced in 7.20.0
1645 .IP CURLOPT_RTSP_SERVER_CSEQ
1646 Introduced in 7.20.0
1647 .IP CURLOPT_RTSP_SESSION_ID
1648 Introduced in 7.20.0
1649 .IP CURLOPT_RTSP_STREAM_URI
1650 Introduced in 7.20.0
1651 .IP CURLOPT_RTSP_TRANSPORT
1652 Introduced in 7.20.0
12811653 .IP CURLOPT_RTSPHEADER
1282 Introduced in 7.20.0
1283 .IP CURLOPT_RTSP_CLIENT_CSEQ
1284 Introduced in 7.20.0
1285 .IP CURLOPT_RTSP_REQUEST
1286 Introduced in 7.20.0
1287 .IP CURLOPT_RTSP_SERVER_CSEQ
1288 Introduced in 7.20.0
1289 .IP CURLOPT_RTSP_SESSION_ID
1290 Introduced in 7.20.0
1291 .IP CURLOPT_RTSP_STREAM_URI
1292 Introduced in 7.20.0
1293 .IP CURLOPT_RTSP_TRANSPORT
12941654 Introduced in 7.20.0
12951655 .IP CURLOPT_SASL_AUTHZID
12961656 Introduced in 7.66.0
13511711 Introduced in 7.16.1
13521712 .IP CURLOPT_SSH_PUBLIC_KEYFILE
13531713 Introduced in 7.16.1
1354 .IP CURLOPT_SSLCERT
1355 Introduced in 7.1
1356 .IP CURLOPT_SSLCERTPASSWD
1357 Introduced in 7.1.1
1358 Deprecated since 7.17.0
1359 .IP CURLOPT_SSLCERTTYPE
1360 Introduced in 7.9.3
1361 .IP CURLOPT_SSLCERT_BLOB
1362 Introduced in 7.71.0
1363 .IP CURLOPT_SSLENGINE
1364 Introduced in 7.9.3
1365 .IP CURLOPT_SSLENGINE_DEFAULT
1366 Introduced in 7.9.3
1367 .IP CURLOPT_SSLKEY
1368 Introduced in 7.9.3
1369 .IP CURLOPT_SSLKEYPASSWD
1370 Introduced in 7.9.3
1371 Deprecated since 7.17.0
1372 .IP CURLOPT_SSLKEYTYPE
1373 Introduced in 7.9.3
1374 .IP CURLOPT_SSLKEY_BLOB
1375 Introduced in 7.71.0
1376 .IP CURLOPT_SSLVERSION
1377 Introduced in 7.1
13781714 .IP CURLOPT_SSL_CIPHER_LIST
13791715 Introduced in 7.9
13801716 .IP CURLOPT_SSL_CTX_DATA
13991735 Introduced in 7.4.2
14001736 .IP CURLOPT_SSL_VERIFYSTATUS
14011737 Introduced in 7.41.0
1738 .IP CURLOPT_SSLCERT
1739 Introduced in 7.1
1740 .IP CURLOPT_SSLCERT_BLOB
1741 Introduced in 7.71.0
1742 .IP CURLOPT_SSLCERTPASSWD
1743 Introduced in 7.1.1
1744 Deprecated since 7.17.0
1745 .IP CURLOPT_SSLCERTTYPE
1746 Introduced in 7.9.3
1747 .IP CURLOPT_SSLENGINE
1748 Introduced in 7.9.3
1749 .IP CURLOPT_SSLENGINE_DEFAULT
1750 Introduced in 7.9.3
1751 .IP CURLOPT_SSLKEY
1752 Introduced in 7.9.3
1753 .IP CURLOPT_SSLKEY_BLOB
1754 Introduced in 7.71.0
1755 .IP CURLOPT_SSLKEYPASSWD
1756 Introduced in 7.9.3
1757 Deprecated since 7.17.0
1758 .IP CURLOPT_SSLKEYTYPE
1759 Introduced in 7.9.3
1760 .IP CURLOPT_SSLVERSION
1761 Introduced in 7.1
14021762 .IP CURLOPT_STDERR
14031763 Introduced in 7.1
14041764 .IP CURLOPT_STREAM_DEPENDS
14471807 Introduced in 7.64.0
14481808 .IP CURLOPT_TRAILERFUNCTION
14491809 Introduced in 7.64.0
1810 .IP CURLOPT_TRANSFER_ENCODING
1811 Introduced in 7.21.6
14501812 .IP CURLOPT_TRANSFERTEXT
14511813 Introduced in 7.1.1
1452 .IP CURLOPT_TRANSFER_ENCODING
1453 Introduced in 7.21.6
14541814 .IP CURLOPT_UNIX_SOCKET_PATH
14551815 Introduced in 7.40.0
14561816 .IP CURLOPT_UNRESTRICTED_AUTH
14631823 Introduced in 7.62.0
14641824 .IP CURLOPT_URL
14651825 Introduced in 7.1
1826 .IP CURLOPT_USE_SSL
1827 Introduced in 7.17.0
14661828 .IP CURLOPT_USERAGENT
14671829 Introduced in 7.1
14681830 .IP CURLOPT_USERNAME
14691831 Introduced in 7.19.1
14701832 .IP CURLOPT_USERPWD
14711833 Introduced in 7.1
1472 .IP CURLOPT_USE_SSL
1473 Introduced in 7.17.0
1474 .IP CURLOPT_AWS_SIGV4
1475 Introduced in 7.75.0
14761834 .IP CURLOPT_VERBOSE
14771835 Introduced in 7.1
14781836 .IP CURLOPT_WILDCARDMATCH
14911849 Introduced in 7.32.0
14921850 .IP CURLOPT_XOAUTH2_BEARER
14931851 Introduced in 7.33.0
1852 .IP CURLOPTTYPE_BLOB
1853 Introduced in 7.71.0
1854 .IP CURLOPTTYPE_CBPOINT
1855 Introduced in 7.73.0
1856 .IP CURLOPTTYPE_FUNCTIONPOINT
1857 Introduced in 7.1
1858 .IP CURLOPTTYPE_LONG
1859 Introduced in 7.1
1860 .IP CURLOPTTYPE_OBJECTPOINT
1861 Introduced in 7.1
1862 .IP CURLOPTTYPE_OFF_T
1863 Introduced in 7.11.0
1864 .IP CURLOPTTYPE_SLISTPOINT
1865 Introduced in 7.65.2
1866 .IP CURLOPTTYPE_STRINGPOINT
1867 Introduced in 7.46.0
1868 .IP CURLOPTTYPE_VALUES
1869 Introduced in 7.73.0
14941870 .IP CURLOT_BLOB
14951871 Introduced in 7.73.0
14961872 .IP CURLOT_CBPTR
15911967 Introduced in 7.19.4
15921968 .IP CURLPROXY_HTTP
15931969 Introduced in 7.10
1970 .IP CURLPROXY_HTTP_1_0
1971 Introduced in 7.19.4
15941972 .IP CURLPROXY_HTTPS
15951973 Introduced in 7.52.0
1596 .IP CURLPROXY_HTTP_1_0
1597 Introduced in 7.19.4
15981974 .IP CURLPROXY_SOCKS4
15991975 Introduced in 7.10
16001976 .IP CURLPROXY_SOCKS4A
16732049 Introduced in 7.73.0
16742050 .IP CURLSHE_BAD_OPTION
16752051 Introduced in 7.10.3
2052 .IP CURLSHE_IN_USE
2053 Introduced in 7.10.3
16762054 .IP CURLSHE_INVALID
1677 Introduced in 7.10.3
1678 .IP CURLSHE_IN_USE
16792055 Introduced in 7.10.3
16802056 .IP CURLSHE_NOMEM
16812057 Introduced in 7.12.0
17482124 .IP CURLSSLBACKEND_POLARSSL
17492125 Introduced in 7.34.0
17502126 Deprecated since 7.69.0
2127 .IP CURLSSLBACKEND_QSOSSL
2128 Introduced in 7.34.0
17512129 .IP CURLSSLBACKEND_RUSTLS
17522130 Introduced in 7.76.0
1753 .IP CURLSSLBACKEND_QSOSSL
1754 Introduced in 7.34.0
17552131 .IP CURLSSLBACKEND_SCHANNEL
17562132 Introduced in 7.34.0
17572133 .IP CURLSSLBACKEND_SECURETRANSPORT
17842160 Introduced in 7.74.0
17852161 .IP CURLSTS_OK
17862162 Introduced in 7.74.0
2163 .IP CURLU_ALLOW_SPACE
2164 Introduced in 7.78.0
2165 .IP CURLU_APPENDQUERY
2166 Introduced in 7.62.0
2167 .IP CURLU_DEFAULT_PORT
2168 Introduced in 7.62.0
2169 .IP CURLU_DEFAULT_SCHEME
2170 Introduced in 7.62.0
2171 .IP CURLU_DISALLOW_USER
2172 Introduced in 7.62.0
2173 .IP CURLU_GUESS_SCHEME
2174 Introduced in 7.62.0
2175 .IP CURLU_NO_AUTHORITY
2176 Introduced in 7.67.0
2177 .IP CURLU_NO_DEFAULT_PORT
2178 Introduced in 7.62.0
2179 .IP CURLU_NON_SUPPORT_SCHEME
2180 Introduced in 7.62.0
2181 .IP CURLU_PATH_AS_IS
2182 Introduced in 7.62.0
2183 .IP CURLU_URLDECODE
2184 Introduced in 7.62.0
2185 .IP CURLU_URLENCODE
2186 Introduced in 7.62.0
17872187 .IP CURLUE_BAD_FILE_URL
17882188 Introduced in 7.81.0
17892189 .IP CURLUE_BAD_FRAGMENT
18742274 Introduced in 7.17.0
18752275 .IP CURLUSESSL_TRY
18762276 Introduced in 7.17.0
1877 .IP CURLU_ALLOW_SPACE
1878 Introduced in 7.78.0
1879 .IP CURLU_APPENDQUERY
1880 Introduced in 7.62.0
1881 .IP CURLU_DEFAULT_PORT
1882 Introduced in 7.62.0
1883 .IP CURLU_DEFAULT_SCHEME
1884 Introduced in 7.62.0
1885 .IP CURLU_DISALLOW_USER
1886 Introduced in 7.62.0
1887 .IP CURLU_GUESS_SCHEME
1888 Introduced in 7.62.0
1889 .IP CURLU_NON_SUPPORT_SCHEME
1890 Introduced in 7.62.0
1891 .IP CURLU_NO_AUTHORITY
1892 Introduced in 7.67.0
1893 .IP CURLU_NO_DEFAULT_PORT
1894 Introduced in 7.62.0
1895 .IP CURLU_PATH_AS_IS
1896 Introduced in 7.62.0
1897 .IP CURLU_URLDECODE
1898 Introduced in 7.62.0
1899 .IP CURLU_URLENCODE
1900 Introduced in 7.62.0
19012277 .IP CURLVERSION_EIGHTH
19022278 Introduced in 7.72.0
19032279 .IP CURLVERSION_FIFTH
19202296 Introduced in 7.77.0
19212297 .IP CURLVERSION_THIRD
19222298 Introduced in 7.12.0
1923 .IP CURL_CHUNK_BGN_FUNC_FAIL
1924 Introduced in 7.21.0
1925 .IP CURL_CHUNK_BGN_FUNC_OK
1926 Introduced in 7.21.0
1927 .IP CURL_CHUNK_BGN_FUNC_SKIP
1928 Introduced in 7.21.0
1929 .IP CURL_CHUNK_END_FUNC_FAIL
1930 Introduced in 7.21.0
1931 .IP CURL_CHUNK_END_FUNC_OK
1932 Introduced in 7.21.0
1933 .IP CURL_CSELECT_ERR
1934 Introduced in 7.16.3
1935 .IP CURL_CSELECT_IN
1936 Introduced in 7.16.3
1937 .IP CURL_CSELECT_OUT
1938 Introduced in 7.16.3
1939 .IP CURL_DID_MEMORY_FUNC_TYPEDEFS
1940 Introduced in 7.49.0
1941 .IP CURL_EASY_NONE
1942 Introduced in 7.14.0
1943 .IP CURL_EASY_TIMEOUT
1944 Introduced in 7.14.0
1945 .IP CURL_ERROR_SIZE
1946 Introduced in 7.1
1947 .IP CURL_FNMATCHFUNC_FAIL
1948 Introduced in 7.21.0
1949 .IP CURL_FNMATCHFUNC_MATCH
1950 Introduced in 7.21.0
1951 .IP CURL_FNMATCHFUNC_NOMATCH
1952 Introduced in 7.21.0
1953 .IP CURL_FORMADD_DISABLED
1954 Introduced in 7.12.1
1955 Deprecated since 7.56.0
1956 .IP CURL_FORMADD_ILLEGAL_ARRAY
1957 Introduced in 7.9.8
1958 Deprecated since 7.56.0
1959 .IP CURL_FORMADD_INCOMPLETE
1960 Introduced in 7.9.8
1961 Deprecated since 7.56.0
1962 .IP CURL_FORMADD_MEMORY
1963 Introduced in 7.9.8
1964 Deprecated since 7.56.0
1965 .IP CURL_FORMADD_NULL
1966 Introduced in 7.9.8
1967 Deprecated since 7.56.0
1968 .IP CURL_FORMADD_OK
1969 Introduced in 7.9.8
1970 Deprecated since 7.56.0
1971 .IP CURL_FORMADD_OPTION_TWICE
1972 Introduced in 7.9.8
1973 Deprecated since 7.56.0
1974 .IP CURL_FORMADD_UNKNOWN_OPTION
1975 Introduced in 7.9.8
1976 Deprecated since 7.56.0
1977 .IP CURL_GLOBAL_ACK_EINTR
1978 Introduced in 7.30.0
1979 .IP CURL_GLOBAL_ALL
1980 Introduced in 7.8
1981 .IP CURL_GLOBAL_DEFAULT
1982 Introduced in 7.8
1983 .IP CURL_GLOBAL_NOTHING
1984 Introduced in 7.8
1985 .IP CURL_GLOBAL_SSL
1986 Introduced in 7.8
1987 .IP CURL_GLOBAL_WIN32
1988 Introduced in 7.8.1
1989 .IP CURL_HET_DEFAULT
1990 Introduced in 7.59.0
1991 .IP CURL_HTTPPOST_BUFFER
1992 Introduced in 7.46.0
1993 .IP CURL_HTTPPOST_CALLBACK
1994 Introduced in 7.46.0
1995 .IP CURL_HTTPPOST_FILENAME
1996 Introduced in 7.46.0
1997 .IP CURL_HTTPPOST_LARGE
1998 Introduced in 7.46.0
1999 .IP CURL_HTTPPOST_PTRBUFFER
2000 Introduced in 7.46.0
2001 .IP CURL_HTTPPOST_PTRCONTENTS
2002 Introduced in 7.46.0
2003 .IP CURL_HTTPPOST_PTRNAME
2004 Introduced in 7.46.0
2005 .IP CURL_HTTPPOST_READFILE
2006 Introduced in 7.46.0
2007 .IP CURL_HTTP_VERSION_1_0
2008 Introduced in 7.9.1
2009 .IP CURL_HTTP_VERSION_1_1
2010 Introduced in 7.9.1
2011 .IP CURL_HTTP_VERSION_2
2012 Introduced in 7.43.0
2013 .IP CURL_HTTP_VERSION_2TLS
2014 Introduced in 7.47.0
2015 .IP CURL_HTTP_VERSION_2_0
2016 Introduced in 7.33.0
2017 .IP CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE
2018 Introduced in 7.49.0
2019 .IP CURL_HTTP_VERSION_3
2020 Introduced in 7.66.0
2021 .IP CURL_HTTP_VERSION_NONE
2022 Introduced in 7.9.1
2023 .IP CURL_IPRESOLVE_V4
2024 Introduced in 7.10.8
2025 .IP CURL_IPRESOLVE_V6
2026 Introduced in 7.10.8
2027 .IP CURL_IPRESOLVE_WHATEVER
2028 Introduced in 7.10.8
2029 .IP CURL_LOCK_ACCESS_NONE
2030 Introduced in 7.10.3
2031 .IP CURL_LOCK_ACCESS_SHARED
2032 Introduced in 7.10.3
2033 .IP CURL_LOCK_ACCESS_SINGLE
2034 Introduced in 7.10.3
2035 .IP CURL_LOCK_DATA_CONNECT
2036 Introduced in 7.10.3
2037 .IP CURL_LOCK_DATA_COOKIE
2038 Introduced in 7.10.3
2039 .IP CURL_LOCK_DATA_DNS
2040 Introduced in 7.10.3
2041 .IP CURL_LOCK_DATA_NONE
2042 Introduced in 7.10.3
2043 .IP CURL_LOCK_DATA_PSL
2044 Introduced in 7.61.0
2045 .IP CURL_LOCK_DATA_SHARE
2046 Introduced in 7.10.4
2047 .IP CURL_LOCK_DATA_SSL_SESSION
2048 Introduced in 7.10.3
2049 .IP CURL_LOCK_TYPE_CONNECT
2050 Introduced in 7.10
2051 .IP CURL_LOCK_TYPE_COOKIE
2052 Introduced in 7.10
2053 .IP CURL_LOCK_TYPE_DNS
2054 Introduced in 7.10
2055 .IP CURL_LOCK_TYPE_NONE
2056 Introduced in 7.10
2057 .IP CURL_LOCK_TYPE_SSL_SESSION
2058 Introduced in 7.10
2059 .IP CURL_MAX_HTTP_HEADER
2060 Introduced in 7.19.7
2061 .IP CURL_MAX_READ_SIZE
2062 Introduced in 7.53.0
2063 .IP CURL_MAX_WRITE_SIZE
2064 Introduced in 7.9.7
2065 .IP CURL_NETRC_IGNORED
2066 Introduced in 7.9.8
2067 .IP CURL_NETRC_OPTIONAL
2068 Introduced in 7.9.8
2069 .IP CURL_NETRC_REQUIRED
2070 Introduced in 7.9.8
2071 .IP CURL_POLL_IN
2072 Introduced in 7.14.0
2073 .IP CURL_POLL_INOUT
2074 Introduced in 7.14.0
2075 .IP CURL_POLL_NONE
2076 Introduced in 7.14.0
2077 .IP CURL_POLL_OUT
2078 Introduced in 7.14.0
2079 .IP CURL_POLL_REMOVE
2080 Introduced in 7.14.0
2081 .IP CURL_PREREQFUNC_ABORT
2082 Introduced in 7.79.0
2083 .IP CURL_PREREQFUNC_OK
2084 Introduced in 7.79.0
2085 .IP CURL_PROGRESSFUNC_CONTINUE
2086 Introduced in 7.68.0
2087 .IP CURL_PROGRESS_BAR
2088 Introduced in 7.1.1
2089 .IP CURL_PROGRESS_STATS
2090 Introduced in 7.1.1
2091 .IP CURL_PUSH_DENY
2092 Introduced in 7.44.0
2093 .IP CURL_PUSH_ERROROUT
2094 Introduced in 7.72.0
2095 .IP CURL_PUSH_OK
2096 Introduced in 7.44.0
2097 .IP CURL_READFUNC_ABORT
2098 Introduced in 7.12.1
2099 .IP CURL_READFUNC_PAUSE
2100 Introduced in 7.18.0
2101 .IP CURL_REDIR_GET_ALL
2102 Introduced in 7.19.1
2103 .IP CURL_REDIR_POST_301
2104 Introduced in 7.19.1
2105 .IP CURL_REDIR_POST_302
2106 Introduced in 7.19.1
2107 .IP CURL_REDIR_POST_303
2108 Introduced in 7.25.1
2109 .IP CURL_REDIR_POST_ALL
2110 Introduced in 7.19.1
2111 .IP CURL_RTSPREQ_ANNOUNCE
2112 Introduced in 7.20.0
2113 .IP CURL_RTSPREQ_DESCRIBE
2114 Introduced in 7.20.0
2115 .IP CURL_RTSPREQ_GET_PARAMETER
2116 Introduced in 7.20.0
2117 .IP CURL_RTSPREQ_NONE
2118 Introduced in 7.20.0
2119 .IP CURL_RTSPREQ_OPTIONS
2120 Introduced in 7.20.0
2121 .IP CURL_RTSPREQ_PAUSE
2122 Introduced in 7.20.0
2123 .IP CURL_RTSPREQ_PLAY
2124 Introduced in 7.20.0
2125 .IP CURL_RTSPREQ_RECEIVE
2126 Introduced in 7.20.0
2127 .IP CURL_RTSPREQ_RECORD
2128 Introduced in 7.20.0
2129 .IP CURL_RTSPREQ_SETUP
2130 Introduced in 7.20.0
2131 .IP CURL_RTSPREQ_SET_PARAMETER
2132 Introduced in 7.20.0
2133 .IP CURL_RTSPREQ_TEARDOWN
2134 Introduced in 7.20.0
2135 .IP CURL_SEEKFUNC_CANTSEEK
2136 Introduced in 7.19.5
2137 .IP CURL_SEEKFUNC_FAIL
2138 Introduced in 7.19.5
2139 .IP CURL_SEEKFUNC_OK
2140 Introduced in 7.19.5
2141 .IP CURL_SOCKET_BAD
2142 Introduced in 7.14.0
2143 .IP CURL_SOCKET_TIMEOUT
2144 Introduced in 7.14.0
2145 .IP CURL_SOCKOPT_ALREADY_CONNECTED
2146 Introduced in 7.21.5
2147 .IP CURL_SOCKOPT_ERROR
2148 Introduced in 7.21.5
2149 .IP CURL_SOCKOPT_OK
2150 Introduced in 7.21.5
2151 .IP CURL_SSLVERSION_DEFAULT
2152 Introduced in 7.9.2
2153 .IP CURL_SSLVERSION_MAX_DEFAULT
2154 Introduced in 7.54.0
2155 .IP CURL_SSLVERSION_MAX_NONE
2156 Introduced in 7.54.0
2157 .IP CURL_SSLVERSION_MAX_TLSv1_0
2158 Introduced in 7.54.0
2159 .IP CURL_SSLVERSION_MAX_TLSv1_1
2160 Introduced in 7.54.0
2161 .IP CURL_SSLVERSION_MAX_TLSv1_2
2162 Introduced in 7.54.0
2163 .IP CURL_SSLVERSION_MAX_TLSv1_3
2164 Introduced in 7.54.0
2165 .IP CURL_SSLVERSION_SSLv2
2166 Introduced in 7.9.2
2167 .IP CURL_SSLVERSION_SSLv3
2168 Introduced in 7.9.2
2169 .IP CURL_SSLVERSION_TLSv1
2170 Introduced in 7.9.2
2171 .IP CURL_SSLVERSION_TLSv1_0
2172 Introduced in 7.34.0
2173 .IP CURL_SSLVERSION_TLSv1_1
2174 Introduced in 7.34.0
2175 .IP CURL_SSLVERSION_TLSv1_2
2176 Introduced in 7.34.0
2177 .IP CURL_SSLVERSION_TLSv1_3
2178 Introduced in 7.52.0
2179 .IP CURL_STRICTER
2180 Introduced in 7.50.2
2181 .IP CURL_TIMECOND_IFMODSINCE
2182 Introduced in 7.9.7
2183 .IP CURL_TIMECOND_IFUNMODSINCE
2184 Introduced in 7.9.7
2185 .IP CURL_TIMECOND_LASTMOD
2186 Introduced in 7.9.7
2187 .IP CURL_TIMECOND_NONE
2188 Introduced in 7.9.7
2189 .IP CURL_TLSAUTH_NONE
2190 Introduced in 7.21.4
2191 .IP CURL_TLSAUTH_SRP
2192 Introduced in 7.21.4
2193 .IP CURL_TRAILERFUNC_ABORT
2194 Introduced in 7.64.0
2195 .IP CURL_TRAILERFUNC_OK
2196 Introduced in 7.64.0
2197 .IP CURL_UPKEEP_INTERVAL_DEFAULT
2198 Introduced in 7.62.0
2199 .IP CURL_VERSION_ALTSVC
2200 Introduced in 7.64.1
2201 .IP CURL_VERSION_ASYNCHDNS
2202 Introduced in 7.10.7
2203 .IP CURL_VERSION_BROTLI
2204 Introduced in 7.57.0
2205 .IP CURL_VERSION_CONV
2206 Introduced in 7.15.4
2207 .IP CURL_VERSION_CURLDEBUG
2208 Introduced in 7.19.6
2209 .IP CURL_VERSION_DEBUG
2210 Introduced in 7.10.6
2211 .IP CURL_VERSION_GSASL
2212 Introduced in 7.76.0
2213 .IP CURL_VERSION_GSSAPI
2214 Introduced in 7.38.0
2215 .IP CURL_VERSION_GSSNEGOTIATE
2216 Introduced in 7.10.6
2217 Deprecated since 7.38.0
2218 .IP CURL_VERSION_HSTS
2219 Introduced in 7.74.0
2220 .IP CURL_VERSION_HTTP2
2221 Introduced in 7.33.0
2222 .IP CURL_VERSION_HTTP3
2223 Introduced in 7.66.0
2224 .IP CURL_VERSION_HTTPS_PROXY
2225 Introduced in 7.52.0
2226 .IP CURL_VERSION_IDN
2227 Introduced in 7.12.0
2228 .IP CURL_VERSION_IPV6
2229 Introduced in 7.10
2230 .IP CURL_VERSION_KERBEROS4
2231 Introduced in 7.10
2232 Deprecated since 7.33.0
2233 .IP CURL_VERSION_KERBEROS5
2234 Introduced in 7.40.0
2235 .IP CURL_VERSION_LARGEFILE
2236 Introduced in 7.11.1
2237 .IP CURL_VERSION_LIBZ
2238 Introduced in 7.10
2239 .IP CURL_VERSION_MULTI_SSL
2240 Introduced in 7.56.0
2241 .IP CURL_VERSION_NTLM
2242 Introduced in 7.10.6
2243 .IP CURL_VERSION_NTLM_WB
2244 Introduced in 7.22.0
2245 .IP CURL_VERSION_PSL
2246 Introduced in 7.47.0
2247 .IP CURL_VERSION_SPNEGO
2248 Introduced in 7.10.8
2249 .IP CURL_VERSION_SSL
2250 Introduced in 7.10
2251 .IP CURL_VERSION_SSPI
2252 Introduced in 7.13.2
2253 .IP CURL_VERSION_TLSAUTH_SRP
2254 Introduced in 7.21.4
2255 .IP CURL_VERSION_UNICODE
2256 Introduced in 7.72.0
2257 .IP CURL_VERSION_UNIX_SOCKETS
2258 Introduced in 7.40.0
2259 .IP CURL_VERSION_ZSTD
2260 Introduced in 7.72.0
2261 .IP CURL_WAIT_POLLIN
2262 Introduced in 7.28.0
2263 .IP CURL_WAIT_POLLOUT
2264 Introduced in 7.28.0
2265 .IP CURL_WAIT_POLLPRI
2266 Introduced in 7.28.0
2267 .IP CURL_WIN32
2268 Introduced in 7.69.0
2269 .IP CURL_WRITEFUNC_PAUSE
2270 Introduced in 7.18.0
2271 .IP CURL_ZERO_TERMINATED
2272 Introduced in 7.56.0
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH libcurl-thread 3 "November 26, 2021" "libcurl 7.82.0" "libcurl thread safety"
22 .TH libcurl-thread 3 "November 26, 2021" "libcurl 7.83.0" "libcurl thread safety"
2323
2424 .SH NAME
2525 libcurl-thread \- libcurl thread safety
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH libcurl-tutorial 3 "December 20, 2021" "libcurl 7.82.0" "libcurl programming"
22 .TH libcurl-tutorial 3 "April 21, 2022" "libcurl 7.83.0" "libcurl programming"
2323
2424 .SH NAME
2525 libcurl-tutorial \- libcurl programming tutorial
7777 See also the "Features libcurl Provides" further down.
7878 .IP "autoconf macro"
7979 When you write your configure script to detect libcurl and setup variables
80 accordingly, we offer a prewritten macro that probably does everything you
81 need in this area. See docs/libcurl/libcurl.m4 file - it includes docs on how
82 to use it.
80 accordingly, we offer a macro that probably does everything you need in this
81 area. See docs/libcurl/libcurl.m4 file - it includes docs on how to use it.
8382
8483 .SH "Portable Code in a Portable World"
8584 The people behind libcurl have put a considerable effort to make libcurl work
131130 should be avoided. They should only be called once each.
132131
133132 .SH "Features libcurl Provides"
134 It is considered best-practice to determine libcurl features at run-time
135 rather than at build-time (if possible of course). By calling
133 It is considered best-practice to determine libcurl features at runtime rather
134 than at build-time (if possible of course). By calling
136135 \fIcurl_version_info(3)\fP and checking out the details of the returned
137136 struct, your program can figure out exactly what the currently running libcurl
138137 supports.
443442 \fICURLOPT_POSTFIELDS(3)\fP, this automatically switches the handle to use
444443 POST in the upcoming request.
445444
446 Ok, so what if you want to post binary data that also requires you to set the
447 Content-Type: header of the post? Well, binary posts prevent libcurl from
448 being able to do strlen() on the data to figure out the size, so therefore we
449 must tell libcurl the size of the post data. Setting headers in libcurl
450 requests are done in a generic way, by building a list of our own headers and
451 then passing that list to libcurl.
445 What if you want to post binary data that also requires you to set the
446 Content-Type: header of the post? Well, binary posts prevent libcurl from being
447 able to do strlen() on the data to figure out the size, so therefore we must
448 tell libcurl the size of the post data. Setting headers in libcurl requests are
449 done in a generic way, by building a list of our own headers and then passing
450 that list to libcurl.
452451
453452 .nf
454453 struct curl_slist *headers=NULL;
851850 and similar things, which effectively makes it impossible for a proxy to
852851 operate as a "man in between" which the proxy's task is, as previously
853852 discussed. Instead, the only way to have SSL work over an HTTP proxy is to ask
854 the proxy to tunnel trough everything without being able to check or fiddle
853 the proxy to tunnel everything through without being able to check or fiddle
855854 with the traffic.
856855
857856 Opening an SSL connection over an HTTP proxy is therefore a matter of asking the
892891 .IP "Proxy Auto-Config"
893892
894893 Netscape first came up with this. It is basically a web page (usually using a
895 \&.pac extension) with a Javascript that when executed by the browser with the
894 \&.pac extension) with a JavaScript that when executed by the browser with the
896895 requested URL as input, returns information to the browser on how to connect
897896 to the URL. The returned information might be "DIRECT" (which means no proxy
898897 should be used), "PROXY host:port" (to tell the browser where the proxy for
899898 this particular URL is) or "SOCKS host:port" (to direct the browser to a SOCKS
900899 proxy).
901900
902 libcurl has no means to interpret or evaluate Javascript and thus it does not
901 libcurl has no means to interpret or evaluate JavaScript and thus it does not
903902 support this. If you get yourself in a position where you face this nasty
904903 invention, the following advice have been mentioned and used in the past:
905904
906 - Depending on the Javascript complexity, write up a script that translates it
905 - Depending on the JavaScript complexity, write up a script that translates it
907906 to another language and execute that.
908907
909 - Read the Javascript code and rewrite the same logic in another language.
910
911 - Implement a Javascript interpreter; people have successfully used the
912 Mozilla Javascript engine in the past.
908 - Read the JavaScript code and rewrite the same logic in another language.
909
910 - Implement a JavaScript interpreter; people have successfully used the
911 Mozilla JavaScript engine in the past.
913912
914913 - Ask your admins to stop this, for a static proxy setup or similar.
915914
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl 3 "October 31, 2021" "libcurl 7.82.0" "libcurl url interface"
21 .TH libcurl 3 "March 29, 2022" "libcurl 7.83.0" "libcurl URL interface"
2222
2323 .SH NAME
2424 libcurl-url \- URL interface overview
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH libcurl 3 "January 05, 2022" "libcurl 7.82.0" "libcurl overview"
21 .TH libcurl 3 "January 05, 2022" "libcurl 7.83.0" "libcurl overview"
2222
2323 .SH NAME
2424 libcurl \- client-side URL transfers
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_ACTIVESOCKET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_ACTIVESOCKET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_ACTIVESOCKET \- get the active socket
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_APPCONNECT_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_APPCONNECT_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_APPCONNECT_TIME \- get the time until the SSL/SSH handshake is completed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_APPCONNECT_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_APPCONNECT_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_APPCONNECT_TIME_T \- get the time until the SSL/SSH handshake is completed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CERTINFO 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CERTINFO 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CERTINFO \- get the TLS certificate chain
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONDITION_UNMET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONDITION_UNMET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONDITION_UNMET \- get info on unmet time conditional or 304 HTTP response.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONNECT_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONNECT_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONNECT_TIME \- get the time until connect
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONNECT_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONNECT_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONNECT_TIME_T \- get the time until connect
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONTENT_LENGTH_DOWNLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONTENT_LENGTH_DOWNLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONTENT_LENGTH_DOWNLOAD \- get content-length of download
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONTENT_LENGTH_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONTENT_LENGTH_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T \- get content-length of download
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONTENT_LENGTH_UPLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONTENT_LENGTH_UPLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONTENT_LENGTH_UPLOAD \- get the specified size of the upload
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONTENT_LENGTH_UPLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONTENT_LENGTH_UPLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONTENT_LENGTH_UPLOAD_T \- get the specified size of the upload
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_CONTENT_TYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_CONTENT_TYPE 3 "March 17, 2022" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_CONTENT_TYPE \- get Content-Type
6565 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
6666 .SH "SEE ALSO"
6767 .BR curl_easy_getinfo "(3), " curl_easy_setopt "(3), "
68 .BR CURLOPT_HEADERFUNCTION "(3), " curl_easy_header "(3) "
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_COOKIELIST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_COOKIELIST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_COOKIELIST \- get all known cookies
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_EFFECTIVE_METHOD 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_EFFECTIVE_METHOD 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_EFFECTIVE_METHOD \- get the last used HTTP method
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_EFFECTIVE_URL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_EFFECTIVE_URL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_EFFECTIVE_URL \- get the last used URL
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_FILETIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_FILETIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_FILETIME \- get the remote time of the retrieved document
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_FILETIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_FILETIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_FILETIME_T \- get the remote time of the retrieved document
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_FTP_ENTRY_PATH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_FTP_ENTRY_PATH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_FTP_ENTRY_PATH \- get entry path in FTP server
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_HEADER_SIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_HEADER_SIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_HEADER_SIZE \- get size of retrieved headers
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_HTTPAUTH_AVAIL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_HTTPAUTH_AVAIL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_HTTPAUTH_AVAIL \- get available HTTP authentication methods
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_HTTP_CONNECTCODE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_HTTP_CONNECTCODE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_HTTP_CONNECTCODE \- get the CONNECT response code
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_HTTP_VERSION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_HTTP_VERSION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_HTTP_VERSION \- get the http version used in the connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_LASTSOCKET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_LASTSOCKET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_LASTSOCKET \- get the last socket used
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_LOCAL_IP 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_LOCAL_IP 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_LOCAL_IP \- get local IP address of last connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_LOCAL_PORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_LOCAL_PORT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_LOCAL_PORT \- get the latest local port number
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_NAMELOOKUP_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_NAMELOOKUP_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_NAMELOOKUP_TIME \- get the name lookup time
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_NAMELOOKUP_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_NAMELOOKUP_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_NAMELOOKUP_TIME_T \- get the name lookup time in microseconds
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_NUM_CONNECTS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_NUM_CONNECTS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_NUM_CONNECTS \- get number of created connections
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_OS_ERRNO 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_OS_ERRNO 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_OS_ERRNO \- get errno number from last connect failure
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PRETRANSFER_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PRETRANSFER_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PRETRANSFER_TIME \- get the time until the file transfer start
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PRETRANSFER_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PRETRANSFER_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PRETRANSFER_TIME_T \- get the time until the file transfer start
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PRIMARY_IP 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PRIMARY_IP 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PRIMARY_IP \- get IP address of last connection
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PRIMARY_PORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PRIMARY_PORT 3 "April 20, 2022" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PRIMARY_PORT \- get the latest destination port number
3232 .SH DESCRIPTION
3333 Pass a pointer to a long to receive the destination port of the most recent
3434 connection done with this \fBcurl\fP handle.
35
36 This is the destination port of the actual TCP or UDP connection libcurl used.
37 If a proxy was used for the most recent transfer, this is the port number of
38 the proxy, if no proxy was used it is the port number of the most recently
39 accessed URL.
3540 .SH PROTOCOLS
3641 All
3742 .SH EXAMPLE
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PRIVATE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PRIVATE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PRIVATE \- get the private pointer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PROTOCOL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PROTOCOL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PROTOCOL \- get the protocol used in the connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PROXYAUTH_AVAIL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PROXYAUTH_AVAIL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PROXYAUTH_AVAIL \- get available HTTP proxy authentication methods
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PROXY_ERROR 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PROXY_ERROR 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PROXY_ERROR \- get the detailed (SOCKS) proxy error
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_PROXY_SSL_VERIFYRESULT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_PROXY_SSL_VERIFYRESULT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_PROXY_SSL_VERIFYRESULT \- get the result of the proxy certificate verification
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REDIRECT_COUNT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REDIRECT_COUNT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REDIRECT_COUNT \- get the number of redirects
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REDIRECT_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REDIRECT_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REDIRECT_TIME \- get the time for all redirection steps
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REDIRECT_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REDIRECT_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REDIRECT_TIME_T \- get the time for all redirection steps
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REDIRECT_URL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REDIRECT_URL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REDIRECT_URL \- get the URL a redirect would go to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REFERER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REFERER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REFERER \- get the referrer header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_REQUEST_SIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_REQUEST_SIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_REQUEST_SIZE \- get size of sent request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RESPONSE_CODE 3 "December 14, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RESPONSE_CODE 3 "December 14, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RESPONSE_CODE \- get the last response code
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RETRY_AFTER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RETRY_AFTER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RETRY_AFTER \- returns the Retry-After retry delay
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RTSP_CLIENT_CSEQ 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RTSP_CLIENT_CSEQ 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RTSP_CLIENT_CSEQ \- get the next RTSP client CSeq
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RTSP_CSEQ_RECV 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RTSP_CSEQ_RECV 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RTSP_CSEQ_RECV \- get the recently received CSeq
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RTSP_SERVER_CSEQ 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RTSP_SERVER_CSEQ 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RTSP_SERVER_CSEQ \- get the next RTSP server CSeq
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_RTSP_SESSION_ID 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_RTSP_SESSION_ID 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_RTSP_SESSION_ID \- get RTSP session ID
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SCHEME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SCHEME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SCHEME \- get the URL scheme (sometimes called protocol) used in the connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SIZE_DOWNLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SIZE_DOWNLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SIZE_DOWNLOAD \- get the number of downloaded bytes
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SIZE_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SIZE_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SIZE_DOWNLOAD_T \- get the number of downloaded bytes
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SIZE_UPLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SIZE_UPLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SIZE_UPLOAD \- get the number of uploaded bytes
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SIZE_UPLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SIZE_UPLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SIZE_UPLOAD_T \- get the number of uploaded bytes
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SPEED_DOWNLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SPEED_DOWNLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SPEED_DOWNLOAD \- get download speed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SPEED_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SPEED_DOWNLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SPEED_DOWNLOAD_T \- get download speed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SPEED_UPLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SPEED_UPLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SPEED_UPLOAD \- get upload speed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SPEED_UPLOAD_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SPEED_UPLOAD_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SPEED_UPLOAD_T \- get upload speed
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SSL_ENGINES 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SSL_ENGINES 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SSL_ENGINES \- get an slist of OpenSSL crypto-engines
3434 Pass the address of a 'struct curl_slist *' to receive a linked-list of
3535 OpenSSL crypto-engines supported. Note that engines are normally implemented
3636 in separate dynamic libraries. Hence not all the returned engines may be
37 available at run-time. \fBNOTE:\fP you must call \fIcurl_slist_free_all(3)\fP
37 available at runtime. \fBNOTE:\fP you must call \fIcurl_slist_free_all(3)\fP
3838 on the list pointer once you are done with it, as libcurl will not free the
3939 data for you.
4040 .SH PROTOCOLS
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_SSL_VERIFYRESULT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_SSL_VERIFYRESULT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_SSL_VERIFYRESULT \- get the result of the certificate verification
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_STARTTRANSFER_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_STARTTRANSFER_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_STARTTRANSFER_TIME \- get the time until the first byte is received
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_STARTTRANSFER_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_STARTTRANSFER_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_STARTTRANSFER_TIME_T \- get the time until the first byte is received
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_TLS_SESSION 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_TLS_SESSION 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_TLS_SESSION \- get TLS session info
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_TLS_SSL_PTR 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_TLS_SSL_PTR 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_TLS_SESSION, CURLINFO_TLS_SSL_PTR \- get TLS session info
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_TOTAL_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_TOTAL_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_TOTAL_TIME \- get total time of previous transfer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLINFO_TOTAL_TIME_T 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_getinfo options"
22 .TH CURLINFO_TOTAL_TIME_T 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_getinfo options"
2323
2424 .SH NAME
2525 CURLINFO_TOTAL_TIME_T \- get total time of previous transfer in microseconds
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE \- chunk length threshold for pipelining
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE \- size threshold for pipelining penalty
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_MAXCONNECTS 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_MAXCONNECTS 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_MAXCONNECTS \- size of connection cache
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_MAX_CONCURRENT_STREAMS 3 "September 08, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_MAX_CONCURRENT_STREAMS 3 "September 08, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_MAX_CONCURRENT_STREAMS \- max concurrent streams for http2
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_MAX_HOST_CONNECTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_MAX_HOST_CONNECTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_MAX_HOST_CONNECTIONS \- max number of connections to a single host
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_MAX_PIPELINE_LENGTH 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_MAX_PIPELINE_LENGTH 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_MAX_PIPELINE_LENGTH \- maximum number of requests in a pipeline
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_MAX_TOTAL_CONNECTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_MAX_TOTAL_CONNECTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_MAX_TOTAL_CONNECTIONS \- max simultaneously open connections
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_PIPELINING 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_PIPELINING 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_PIPELINING \- enable HTTP pipelining and multiplexing
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_PIPELINING_SERVER_BL 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_PIPELINING_SERVER_BL 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_PIPELINING_SERVER_BL \- pipelining server block list
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_PIPELINING_SITE_BL 3 "November 26, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_PIPELINING_SITE_BL 3 "November 26, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_PIPELINING_SITE_BL \- pipelining host block list
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_PUSHDATA 3 "November 04, 2020" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_PUSHDATA 3 "November 04, 2020" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_PUSHDATA \- pointer to pass to push callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_PUSHFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_PUSHFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_PUSHFUNCTION \- callback that approves or denies server pushes
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_SOCKETDATA 3 "November 04, 2020" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_SOCKETDATA 3 "November 04, 2020" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_SOCKETDATA \- custom pointer passed to the socket callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_SOCKETFUNCTION 3 "December 02, 2021" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_SOCKETFUNCTION 3 "December 02, 2021" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_SOCKETFUNCTION \- callback informed about what to wait for
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_TIMERDATA 3 "January 17, 2022" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_TIMERDATA 3 "January 17, 2022" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_TIMERDATA \- custom pointer to pass to timer callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLMOPT_TIMERFUNCTION 3 "January 17, 2022" "libcurl 7.82.0" "curl_multi_setopt options"
22 .TH CURLMOPT_TIMERFUNCTION 3 "January 17, 2022" "libcurl 7.83.0" "curl_multi_setopt options"
2323
2424 .SH NAME
2525 CURLMOPT_TIMERFUNCTION \- callback to receive timeout values
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ABSTRACT_UNIX_SOCKET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ABSTRACT_UNIX_SOCKET 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ABSTRACT_UNIX_SOCKET \- abstract Unix domain socket
3939 should not contain a leading NULL).
4040
4141 On non-supporting platforms, the abstract address will be interpreted as an
42 empty string and fail gracefully, generating a run-time error.
42 empty string and fail gracefully, generating a runtime error.
4343
4444 This option shares the same semantics as \fICURLOPT_UNIX_SOCKET_PATH(3)\fP in
4545 which documentation more details can be found. Internally, these two options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ACCEPTTIMEOUT_MS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ACCEPTTIMEOUT_MS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ACCEPTTIMEOUT_MS \- timeout waiting for FTP server to connect back
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ACCEPT_ENCODING 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ACCEPT_ENCODING 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ACCEPT_ENCODING \- automatic decompression of HTTP downloads
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ADDRESS_SCOPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ADDRESS_SCOPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ADDRESS_SCOPE \- scope id for IPv6 addresses
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ALTSVC 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ALTSVC 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ALTSVC \- alt-svc cache file name
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ALTSVC_CTRL 3 "November 04, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ALTSVC_CTRL 3 "November 04, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ALTSVC_CTRL \- control alt-svc behavior
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_APPEND 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_APPEND 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_APPEND \- append to the remote file
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_AUTOREFERER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_AUTOREFERER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_AUTOREFERER \- automatically update the referer header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_AWS_SIGV4 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_AWS_SIGV4 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_AWS_SIGV4 \- V4 signature
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_BUFFERSIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_BUFFERSIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_BUFFERSIZE \- receive buffer size
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CAINFO 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CAINFO 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CAINFO \- path to Certificate Authority (CA) bundle
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CAINFO_BLOB 3 "January 09, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CAINFO_BLOB 3 "January 09, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CAINFO_BLOB \- Certificate Authority (CA) bundle in PEM format
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CAPATH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CAPATH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CAPATH \- directory holding CA certificates
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CERTINFO 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CERTINFO 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CERTINFO \- request SSL certificate information
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CHUNK_BGN_FUNCTION 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CHUNK_BGN_FUNCTION 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CHUNK_BGN_FUNCTION \- callback before a transfer with FTP wildcardmatch
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CHUNK_DATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CHUNK_DATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CHUNK_DATA \- pointer passed to the FTP chunk callbacks
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CHUNK_END_FUNCTION 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CHUNK_END_FUNCTION 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CHUNK_END_FUNCTION \- callback after a transfer with FTP wildcardmatch
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CLOSESOCKETDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CLOSESOCKETDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CLOSESOCKETDATA \- pointer passed to the socket close callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CLOSESOCKETFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CLOSESOCKETFUNCTION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CLOSESOCKETFUNCTION \- callback to socket close replacement
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONNECTTIMEOUT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONNECTTIMEOUT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONNECTTIMEOUT \- timeout for the connect phase
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONNECTTIMEOUT_MS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONNECTTIMEOUT_MS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONNECTTIMEOUT_MS \- timeout for the connect phase
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONNECT_ONLY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONNECT_ONLY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONNECT_ONLY \- stop when connected to target server
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONNECT_TO 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONNECT_TO 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONNECT_TO \- connect to a specific host and port instead of the URL's host and port
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONV_FROM_NETWORK_FUNCTION 3 "February 03, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONV_FROM_NETWORK_FUNCTION 3 "February 03, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONV_FROM_NETWORK_FUNCTION \- convert data from network to host encoding
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONV_FROM_UTF8_FUNCTION 3 "February 03, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONV_FROM_UTF8_FUNCTION 3 "February 03, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONV_FROM_UTF8_FUNCTION \- convert data from UTF8 to host encoding
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CONV_TO_NETWORK_FUNCTION 3 "February 03, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CONV_TO_NETWORK_FUNCTION 3 "February 03, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CONV_TO_NETWORK_FUNCTION \- convert data to network from host encoding
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COOKIE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COOKIE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COOKIE \- HTTP Cookie header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COOKIEFILE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COOKIEFILE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COOKIEFILE \- file name to read cookies from
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COOKIEJAR 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COOKIEJAR 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COOKIEJAR \- file name to store cookies to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COOKIELIST 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COOKIELIST 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COOKIELIST \- add to or manipulate cookies held in memory
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COOKIESESSION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COOKIESESSION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COOKIESESSION \- start a new cookie session
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_COPYPOSTFIELDS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_COPYPOSTFIELDS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_COPYPOSTFIELDS \- have libcurl copy data to POST
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CRLF 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CRLF 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CRLF \- CRLF conversion
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CRLFILE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CRLFILE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CRLFILE \- Certificate Revocation List file
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CURLU 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CURLU 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CURLU \- URL in CURLU * format
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_CUSTOMREQUEST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_CUSTOMREQUEST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_CUSTOMREQUEST \- custom request method
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DEBUGDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DEBUGDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DEBUGDATA \- pointer passed to the debug callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DEBUGFUNCTION 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DEBUGFUNCTION 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DEBUGFUNCTION \- debug callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DEFAULT_PROTOCOL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DEFAULT_PROTOCOL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DEFAULT_PROTOCOL \- default protocol to use if the URL is missing a
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DIRLISTONLY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DIRLISTONLY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DIRLISTONLY \- ask for names only in a directory listing
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DISALLOW_USERNAME_IN_URL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DISALLOW_USERNAME_IN_URL 3 "March 28, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
25 CURLOPT_DISALLOW_USERNAME_IN_URL \- disallow specifying username in the url
25 CURLOPT_DISALLOW_USERNAME_IN_URL \- disallow specifying username in the URL
2626 .SH SYNOPSIS
2727 .nf
2828 #include <curl/curl.h>
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_CACHE_TIMEOUT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_CACHE_TIMEOUT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_CACHE_TIMEOUT \- life-time for DNS cache entries
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_INTERFACE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_INTERFACE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_INTERFACE \- interface to speak DNS over
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_LOCAL_IP4 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_LOCAL_IP4 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_LOCAL_IP4 \- IPv4 address to bind DNS resolves to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_LOCAL_IP6 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_LOCAL_IP6 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_LOCAL_IP6 \- IPv6 address to bind DNS resolves to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_SERVERS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_SERVERS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_SERVERS \- DNS servers to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_SHUFFLE_ADDRESSES 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_SHUFFLE_ADDRESSES 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_SHUFFLE_ADDRESSES \- shuffle IP addresses for hostname
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DNS_USE_GLOBAL_CACHE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DNS_USE_GLOBAL_CACHE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DNS_USE_GLOBAL_CACHE \- global DNS cache
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DOH_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DOH_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DOH_SSL_VERIFYHOST \- verify the host name in the DoH SSL certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DOH_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DOH_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DOH_SSL_VERIFYPEER \- verify the DoH SSL certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DOH_SSL_VERIFYSTATUS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DOH_SSL_VERIFYSTATUS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DOH_SSL_VERIFYSTATUS \- verify the DoH SSL certificate's status
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 2018 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 2018 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_DOH_URL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_DOH_URL 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_DOH_URL \- provide the DNS-over-HTTPS URL
3333 Pass in a pointer to a \fIURL\fP for the DoH server to use for name
3434 resolving. The parameter should be a char * to a null-terminated string which
3535 must be URL-encoded in the following format: "https://host:port/path". It MUST
36 specify a HTTPS URL.
36 specify an HTTPS URL.
3737
3838 libcurl does not validate the syntax or use this variable until the transfer is
3939 issued. Even if you set a crazy value here, \fIcurl_easy_setopt(3)\fP will
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_EGDSOCKET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_EGDSOCKET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_EGDSOCKET \- EGD socket path
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ERRORBUFFER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ERRORBUFFER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ERRORBUFFER \- error buffer for error messages
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_EXPECT_100_TIMEOUT_MS 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_EXPECT_100_TIMEOUT_MS 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_EXPECT_100_TIMEOUT_MS \- timeout for Expect: 100-continue response
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FAILONERROR 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FAILONERROR 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FAILONERROR \- request failure on HTTP response >= 400
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FILETIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FILETIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FILETIME \- get the modification time of the remote resource
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FNMATCH_DATA 3 "November 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FNMATCH_DATA 3 "November 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FNMATCH_DATA \- pointer passed to the fnmatch callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FNMATCH_FUNCTION 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FNMATCH_FUNCTION 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FNMATCH_FUNCTION \- wildcard match callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FOLLOWLOCATION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FOLLOWLOCATION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FOLLOWLOCATION \- follow HTTP 3xx redirects
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FORBID_REUSE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FORBID_REUSE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FORBID_REUSE \- make connection get closed at once after use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FRESH_CONNECT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FRESH_CONNECT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FRESH_CONNECT \- force a new connection to be used
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTPPORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTPPORT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTPPORT \- make FTP transfer active
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTPSSLAUTH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTPSSLAUTH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTPSSLAUTH \- order in which to attempt TLS vs SSL
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_ACCOUNT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_ACCOUNT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_ACCOUNT \- account info for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_ALTERNATIVE_TO_USER 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_ALTERNATIVE_TO_USER 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_ALTERNATIVE_TO_USER \- command to use instead of USER with FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_CREATE_MISSING_DIRS 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_CREATE_MISSING_DIRS 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_CREATE_MISSING_DIRS \- create missing dirs for FTP and SFTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_FILEMETHOD 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_FILEMETHOD 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_FILEMETHOD \- select directory traversing method for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_RESPONSE_TIMEOUT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_RESPONSE_TIMEOUT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_RESPONSE_TIMEOUT \- time allowed to wait for FTP response
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_SKIP_PASV_IP 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_SKIP_PASV_IP 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_SKIP_PASV_IP \- ignore the IP address in the PASV response
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_SSL_CCC 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_SSL_CCC 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_SSL_CCC \- switch off SSL again with FTP after auth
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_USE_EPRT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_USE_EPRT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_USE_EPRT \- use EPRT for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_USE_EPSV 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_USE_EPSV 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_USE_EPSV \- use EPSV for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_FTP_USE_PRET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_FTP_USE_PRET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_FTP_USE_PRET \- use PRET for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_GSSAPI_DELEGATION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_GSSAPI_DELEGATION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_GSSAPI_DELEGATION \- allowed GSS-API delegation
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS \- head start for ipv6 for happy eyeballs
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HAPROXYPROTOCOL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HAPROXYPROTOCOL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HAPROXYPROTOCOL \- send HAProxy PROXY protocol v1 header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HEADER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HEADER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HEADER \- pass headers to the data stream
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HEADERDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HEADERDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HEADERDATA \- pointer to pass to header callback
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HEADERFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HEADERFUNCTION 3 "March 17, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HEADERFUNCTION \- callback that receives header data
117117 .SH RETURN VALUE
118118 Returns CURLE_OK
119119 .SH "SEE ALSO"
120 .BR curl_easy_header "(3), "
120121 .BR CURLOPT_HEADERDATA "(3), " CURLOPT_WRITEFUNCTION "(3), "
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HEADEROPT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HEADEROPT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HEADEROPT \- send HTTP headers to both proxy and host or separately
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTS 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTS 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTS \- HSTS cache file name
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTSREADDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTSREADDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTSREADDATA \- pointer passed to the HSTS read callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTSREADFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTSREADFUNCTION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTSREADFUNCTION \- read callback for HSTS hosts
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTSWRITEDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTSWRITEDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTSWRITEDATA \- pointer passed to the HSTS write callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTSWRITEFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTSWRITEFUNCTION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTSWRITEFUNCTION \- write callback for HSTS hosts
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HSTS_CTRL 3 "September 06, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HSTS_CTRL 3 "September 06, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HSTS_CTRL \- control HSTS behavior
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2019, 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTP09_ALLOWED 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTP09_ALLOWED 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTP09_ALLOWED \- allow HTTP/0.9 response
3232 .SH DESCRIPTION
3333 Pass the long argument \fIallowed\fP set to 1L to allow HTTP/0.9 responses.
3434
35 A HTTP/0.9 response is a server response entirely without headers and only a
35 An HTTP/0.9 response is a server response entirely without headers and only a
3636 body. You can connect to lots of random TCP services and still get a response
3737 that curl might consider to be HTTP/0.9!
3838 .SH DEFAULT
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTP200ALIASES 3 "November 01, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTP200ALIASES 3 "November 01, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTP200ALIASES \- alternative matches for HTTP 200 OK
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTPAUTH 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTPAUTH 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTPAUTH \- HTTP server authentication methods to try
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTPGET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTPGET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTPGET \- ask for an HTTP GET request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTPHEADER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTPHEADER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTPHEADER \- set of HTTP headers
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTPPOST 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTPPOST 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTPPOST \- multipart formpost content
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTPPROXYTUNNEL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTPPROXYTUNNEL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTPPROXYTUNNEL \- tunnel through HTTP proxy
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTP_CONTENT_DECODING 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTP_CONTENT_DECODING 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTP_CONTENT_DECODING \- HTTP content decoding control
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTP_TRANSFER_DECODING 3 "October 22, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTP_TRANSFER_DECODING 3 "October 22, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTP_TRANSFER_DECODING \- HTTP transfer decoding control
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_HTTP_VERSION 3 "January 19, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_HTTP_VERSION 3 "January 19, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_HTTP_VERSION \- HTTP protocol version to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_IGNORE_CONTENT_LENGTH 3 "August 23, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_IGNORE_CONTENT_LENGTH 3 "August 23, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_IGNORE_CONTENT_LENGTH \- ignore content length
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_INFILESIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_INFILESIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_INFILESIZE \- size of the input file to send off
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_INFILESIZE_LARGE 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_INFILESIZE_LARGE 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_INFILESIZE_LARGE \- size of the input file to send off
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_INTERFACE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_INTERFACE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_INTERFACE \- source interface for outgoing traffic
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_INTERLEAVEDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_INTERLEAVEDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_INTERLEAVEDATA \- pointer passed to RTSP interleave callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_INTERLEAVEFUNCTION 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_INTERLEAVEFUNCTION 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_INTERLEAVEFUNCTION \- callback for RTSP interleaved data
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_IOCTLDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_IOCTLDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_IOCTLDATA \- pointer passed to I/O callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_IOCTLFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_IOCTLFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_IOCTLFUNCTION \- callback for I/O operations
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_IPRESOLVE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_IPRESOLVE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_IPRESOLVE \- IP protocol version to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ISSUERCERT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ISSUERCERT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ISSUERCERT \- issuer SSL certificate filename
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_ISSUERCERT_BLOB 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_ISSUERCERT_BLOB 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_ISSUERCERT_BLOB \- issuer SSL certificate from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_KEEP_SENDING_ON_ERROR 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_KEEP_SENDING_ON_ERROR 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_KEEP_SENDING_ON_ERROR \- keep sending on early HTTP response >= 300
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_KEYPASSWD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_KEYPASSWD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_KEYPASSWD \- passphrase to private key
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_KRBLEVEL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_KRBLEVEL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_KRBLEVEL \- FTP kerberos security level
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_LOCALPORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_LOCALPORT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_LOCALPORT \- local port number to use for socket
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_LOCALPORTRANGE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_LOCALPORTRANGE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_LOCALPORTRANGE \- number of additional local ports to try
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_LOGIN_OPTIONS 3 "January 10, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_LOGIN_OPTIONS 3 "January 10, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_LOGIN_OPTIONS \- login options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_LOW_SPEED_LIMIT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_LOW_SPEED_LIMIT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_LOW_SPEED_LIMIT \- low speed limit in bytes per second
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_LOW_SPEED_TIME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_LOW_SPEED_TIME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_LOW_SPEED_TIME \- low speed limit time period
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAIL_AUTH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAIL_AUTH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAIL_AUTH \- SMTP authentication address
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAIL_FROM 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAIL_FROM 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAIL_FROM \- SMTP sender address
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAIL_RCPT 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAIL_RCPT 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAIL_RCPT \- list of SMTP mail recipients
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAIL_RCPT_ALLLOWFAILS 3 "July 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAIL_RCPT_ALLLOWFAILS 3 "July 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAIL_RCPT_ALLLOWFAILS \- allow RCPT TO command to fail for some recipients
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXAGE_CONN 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXAGE_CONN 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXAGE_CONN \- max idle time allowed for reusing a connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXCONNECTS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXCONNECTS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXCONNECTS \- maximum connection cache size
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXFILESIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXFILESIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXFILESIZE \- maximum file size allowed to download
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXFILESIZE_LARGE 3 "July 23, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXFILESIZE_LARGE 3 "July 23, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXFILESIZE_LARGE \- maximum file size allowed to download
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXLIFETIME_CONN 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXLIFETIME_CONN 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXLIFETIME_CONN \- max lifetime (since creation) allowed for reusing a connection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAXREDIRS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAXREDIRS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAXREDIRS \- maximum number of redirects allowed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAX_RECV_SPEED_LARGE 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAX_RECV_SPEED_LARGE 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAX_RECV_SPEED_LARGE \- rate limit data download speed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MAX_SEND_SPEED_LARGE 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MAX_SEND_SPEED_LARGE 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MAX_SEND_SPEED_LARGE \- rate limit data upload speed
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MIMEPOST 3 "December 17, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MIMEPOST 3 "December 17, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MIMEPOST \- send data from mime structure
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_MIME_OPTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_MIME_OPTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_MIME_OPTIONS \- set MIME option flags
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NETRC 3 "January 07, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NETRC 3 "January 07, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NETRC \- enable use of .netrc
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NETRC_FILE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NETRC_FILE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NETRC_FILE \- file name to read .netrc info from
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NEW_DIRECTORY_PERMS 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NEW_DIRECTORY_PERMS 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NEW_DIRECTORY_PERMS \- permissions for remotely created directories
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NEW_FILE_PERMS 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NEW_FILE_PERMS 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NEW_FILE_PERMS \- permissions for remotely created files
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NOBODY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NOBODY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NOBODY \- do the download request without getting the body
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NOPROGRESS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NOPROGRESS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NOPROGRESS \- switch off the progress meter
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NOPROXY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NOPROXY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NOPROXY \- disable proxy use for specific hosts
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_NOSIGNAL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_NOSIGNAL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_NOSIGNAL \- skip all signal handling
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_OPENSOCKETDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_OPENSOCKETDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_OPENSOCKETDATA \- pointer passed to open socket callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_OPENSOCKETFUNCTION 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_OPENSOCKETFUNCTION 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_OPENSOCKETFUNCTION \- callback for opening socket
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PASSWORD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PASSWORD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PASSWORD \- password to use in authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PATH_AS_IS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PATH_AS_IS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PATH_AS_IS \- do not handle dot dot sequences
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PINNEDPUBLICKEY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PINNEDPUBLICKEY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PINNEDPUBLICKEY \- pinned public key
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PIPEWAIT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PIPEWAIT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PIPEWAIT \- wait for pipelining/multiplexing
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PORT 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PORT \- remote port number to connect to
3838 application to override that.
3939
4040 While this option accepts a 'long', a port number is usually a 16 bit number
41 and therefore using a port number over 65535 will cause a run-time error.
41 and therefore using a port number over 65535 will cause a runtime error.
4242 .SH DEFAULT
4343 By default this is 0 which makes it not used.
4444 .SH PROTOCOLS
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POST \- make an HTTP POST
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POSTFIELDS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POSTFIELDS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POSTFIELDS \- data to POST to server
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POSTFIELDSIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POSTFIELDSIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POSTFIELDSIZE \- size of POST data pointed to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POSTFIELDSIZE_LARGE 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POSTFIELDSIZE_LARGE 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POSTFIELDSIZE_LARGE \- size of POST data pointed to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POSTQUOTE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POSTQUOTE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POSTQUOTE \- (S)FTP commands to run after the transfer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_POSTREDIR 3 "December 31, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_POSTREDIR 3 "December 31, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_POSTREDIR \- how to act on an HTTP POST redirect
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PREQUOTE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PREQUOTE 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PREQUOTE \- commands to run before an FTP transfer
3636 struct curl_slist structs properly filled in as described for
3737 \fICURLOPT_QUOTE(3)\fP. Disable this operation again by setting a NULL to this
3838 option.
39
40 These commands are not performed when a directory listing is performed, only
41 for file transfers.
3942
4043 While \fICURLOPT_QUOTE(3)\fP and \fICURLOPT_POSTQUOTE(3)\fP work for SFTP,
4144 this option does not.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PREREQDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PREREQDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PREREQDATA \- pointer passed to the pre-request callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PREREQFUNCTION 3 "January 05, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PREREQFUNCTION 3 "January 05, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PREREQFUNCTION \- user callback called when a connection has been
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PRE_PROXY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PRE_PROXY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PRE_PROXY \- pre-proxy host to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PRIVATE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PRIVATE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PRIVATE \- store a private pointer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROGRESSDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROGRESSDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROGRESSDATA \- pointer passed to the progress callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROGRESSFUNCTION 3 "February 23, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROGRESSFUNCTION 3 "March 25, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROGRESSFUNCTION \- progress meter callback
9393 double ultotal,
9494 double ulnow)
9595 {
96 struct progress *memory = (struct progress *)userp;
96 struct progress *memory = (struct progress *)clientp;
9797
9898 /* use the values */
9999
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROTOCOLS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROTOCOLS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROTOCOLS \- allowed protocols
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY \- proxy to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYAUTH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYAUTH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYAUTH \- HTTP proxy authentication methods
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYHEADER 3 "November 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYHEADER 3 "November 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYHEADER \- set of HTTP headers to pass to proxy
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYPASSWORD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYPASSWORD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYPASSWORD \- password to use with proxy authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYPORT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYPORT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYPORT \- port number the proxy listens on
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYTYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYTYPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYTYPE \- proxy protocol type
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYUSERNAME 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYUSERNAME 3 "November 04, 2020" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYUSERNAME \- user name to use for proxy authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXYUSERPWD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXYUSERPWD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXYUSERPWD \- user name and password to use for proxy authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_CAINFO 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_CAINFO 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_CAINFO \- path to proxy Certificate Authority (CA) bundle
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_CAINFO_BLOB 3 "January 09, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_CAINFO_BLOB 3 "January 09, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_CAINFO_BLOB \- proxy Certificate Authority (CA) bundle in PEM format
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_CAPATH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_CAPATH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_CAPATH \- directory holding HTTPS proxy CA certificates
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_CRLFILE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_CRLFILE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_CRLFILE \- HTTPS proxy Certificate Revocation List file
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_ISSUERCERT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_ISSUERCERT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_ISSUERCERT \- proxy issuer SSL certificate filename
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_ISSUERCERT_BLOB 3 "November 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_ISSUERCERT_BLOB 3 "November 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_ISSUERCERT_BLOB \- proxy issuer SSL certificate from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_KEYPASSWD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_KEYPASSWD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_KEYPASSWD \- passphrase for the proxy private key
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_PINNEDPUBLICKEY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_PINNEDPUBLICKEY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_PINNEDPUBLICKEY \- pinned public key for https proxy
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SERVICE_NAME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SERVICE_NAME 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SERVICE_NAME \- proxy authentication service name
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLCERT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLCERT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLCERT \- HTTPS proxy client certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLCERTTYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLCERTTYPE 3 "March 12, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLCERTTYPE \- type of the proxy client SSL certificate
3333 Pass a pointer to a null-terminated string as parameter. The string should be
3434 the format of your client certificate used when connecting to an HTTPS proxy.
3535
36 Supported formats are "PEM" and "DER", except with Secure Transport. OpenSSL
37 (versions 0.9.3 and later) and Secure Transport (on iOS 5 or later, or OS X
38 10.7 or later) also support "P12" for PKCS#12-encoded files.
36 Supported formats are "PEM" and "DER", except with Secure Transport or
37 Schannel. OpenSSL (versions 0.9.3 and later), Secure Transport (on iOS 5 or
38 later, or OS X 10.7 or later) and Schannel support "P12" for PKCS#12-encoded
39 files.
3940
4041 The application does not have to keep the string around after setting this
4142 option.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLCERT_BLOB 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLCERT_BLOB 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLCERT_BLOB \- SSL proxy client certificate from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLKEY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLKEY 3 "March 12, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLKEY \- private keyfile for HTTPS proxy client cert
3535 default format is "PEM" and can be changed with
3636 \fICURLOPT_PROXY_SSLKEYTYPE(3)\fP.
3737
38 (iOS and Mac OS X only) This option is ignored if curl was built against
39 Secure Transport. Secure Transport expects the private key to be already
40 present in the keychain or PKCS#12 file containing the certificate.
38 (Windows, iOS and Mac OS X) This option is ignored by Secure Transport and
39 Schannel SSL backends because they expect the private key to be already present
40 in the keychain or PKCS#12 file containing the certificate.
4141
4242 The application does not have to keep the string around after setting this
4343 option.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLKEYTYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLKEYTYPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLKEYTYPE \- type of the proxy private key file
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLKEY_BLOB 3 "October 25, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLKEY_BLOB 3 "October 25, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLKEY_BLOB \- private key for proxy cert from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSLVERSION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSLVERSION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSLVERSION \- preferred HTTPS proxy TLS version
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSL_CIPHER_LIST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSL_CIPHER_LIST 3 "December 06, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSL_CIPHER_LIST \- ciphers to use for HTTPS proxy
4949 For WolfSSL, valid examples of cipher lists include \fBECDHE-RSA-RC4-SHA\fP,
5050 \fBAES256-SHA:AES256-SHA256\fP, etc.
5151
52 For BearSSL, valid examples of cipher lists include
53 \fBECDHE-RSA-CHACHA20-POLY1305:ECDHE-RSA-AES128-GCM-SHA256\fP, or when using IANA names
54 \fBTLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\fP,
55 etc.
56 With BearSSL you do not add/remove ciphers. If one uses this option then all
57 known ciphers are disabled and only those passed in are enabled.
58
5259 you will find more details about cipher lists on this URL:
5360
5461 https://curl.se/docs/ssl-ciphers.html
7178 }
7279 .fi
7380 .SH AVAILABILITY
74 Added in 7.52.0
81 Added in 7.52.0, in 7.83.0 for BearSSL
7582
7683 If built TLS enabled.
7784 .SH RETURN VALUE
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSL_OPTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSL_OPTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSL_OPTIONS \- HTTPS proxy SSL behavior options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSL_VERIFYHOST \- verify the proxy certificate's name against host
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_SSL_VERIFYPEER \- verify the proxy's SSL certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_TLS13_CIPHERS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_TLS13_CIPHERS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_TLS13_CIPHERS \- ciphers suites for proxy TLS 1.3
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_TLSAUTH_PASSWORD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_TLSAUTH_PASSWORD 3 "April 25, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_TLSAUTH_PASSWORD \- password to use for proxy TLS authentication
5656 }
5757 .fi
5858 .SH AVAILABILITY
59 Added in 7.52.0
59 Added in 7.52.0, with the OpenSSL and GnuTLS backends only
6060 .SH RETURN VALUE
6161 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
6262 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_TLSAUTH_TYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_TLSAUTH_TYPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_TLSAUTH_TYPE \- HTTPS proxy TLS authentication methods
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_TLSAUTH_USERNAME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_TLSAUTH_USERNAME 3 "April 25, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_TLSAUTH_USERNAME \- user name to use for proxy TLS authentication
5656 }
5757 .fi
5858 .SH AVAILABILITY
59 Added in 7.52.0
59 Added in 7.52.0, with the OpenSSL and GnuTLS backends only.
6060 .SH RETURN VALUE
6161 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
6262 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PROXY_TRANSFER_MODE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PROXY_TRANSFER_MODE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PROXY_TRANSFER_MODE \- append FTP transfer mode to URL for proxy
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_PUT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_PUT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_PUT \- make an HTTP PUT request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_QUOTE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_QUOTE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_QUOTE \- (S)FTP commands to run before transfer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RANDOM_FILE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RANDOM_FILE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RANDOM_FILE \- file to read random data from
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RANGE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RANGE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RANGE \- byte range to request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_READDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_READDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_READDATA \- pointer passed to the read callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_READFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_READFUNCTION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_READFUNCTION \- read callback for data uploads
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_REDIR_PROTOCOLS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_REDIR_PROTOCOLS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_REDIR_PROTOCOLS \- protocols allowed to redirect to
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_REFERER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_REFERER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_REFERER \- the HTTP referer header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_REQUEST_TARGET 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_REQUEST_TARGET 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_REQUEST_TARGET \- alternative target for this request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RESOLVE 3 "January 10, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RESOLVE 3 "January 10, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RESOLVE \- provide custom host name to IP address resolves
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RESOLVER_START_DATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RESOLVER_START_DATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RESOLVER_START_DATA \- pointer passed to the resolver start callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RESOLVER_START_FUNCTION 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RESOLVER_START_FUNCTION 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RESOLVER_START_FUNCTION \- callback called before a new name resolve is started
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RESUME_FROM 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RESUME_FROM 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RESUME_FROM \- offset to resume transfer from
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RESUME_FROM_LARGE 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RESUME_FROM_LARGE 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RESUME_FROM_LARGE \- offset to resume transfer from
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_CLIENT_CSEQ 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_CLIENT_CSEQ 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_CLIENT_CSEQ \- RTSP client CSEQ number
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_REQUEST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_REQUEST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_REQUEST \- RTSP request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_SERVER_CSEQ 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_SERVER_CSEQ 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_SERVER_CSEQ \- RTSP server CSEQ number
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_SESSION_ID 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_SESSION_ID 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_SESSION_ID \- RTSP session ID
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_STREAM_URI 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_STREAM_URI 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_STREAM_URI \- RTSP stream URI
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_RTSP_TRANSPORT 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_RTSP_TRANSPORT 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_RTSP_TRANSPORT \- RTSP Transport: header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SASL_AUTHZID 3 "January 10, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SASL_AUTHZID 3 "April 05, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
25 CURLOPT_SASL_AUTHZID \- authorisation identity (identity to act as)
25 CURLOPT_SASL_AUTHZID \- authorization identity (identity to act as)
2626 .SH SYNOPSIS
2727 .nf
2828 #include <curl/curl.h>
3131 .fi
3232 .SH DESCRIPTION
3333 Pass a char * as parameter, which should be pointing to the null-terminated
34 authorisation identity (authzid) for the transfer. Only applicable to the PLAIN
34 authorization identity (authzid) for the transfer. Only applicable to the PLAIN
3535 SASL authentication mechanism where it is optional.
3636
3737 When not specified only the authentication identity (authcid) as specified by
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SASL_IR 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SASL_IR 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SASL_IR \- send initial response in first packet
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SEEKDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SEEKDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SEEKDATA \- pointer passed to the seek callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SEEKFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SEEKFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SEEKFUNCTION \- user callback for seeking in input stream
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SERVICE_NAME 3 "January 10, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SERVICE_NAME 3 "January 10, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SERVICE_NAME \- authentication service name
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SHARE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SHARE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SHARE \- share handle to use
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SOCKOPTDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SOCKOPTDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SOCKOPTDATA \- pointer to pass to sockopt callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SOCKOPTFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SOCKOPTFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SOCKOPTFUNCTION \- callback for setting socket options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SOCKS5_AUTH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SOCKS5_AUTH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SOCKS5_AUTH \- methods for SOCKS5 proxy authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SOCKS5_GSSAPI_NEC 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SOCKS5_GSSAPI_NEC 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SOCKS5_GSSAPI_NEC \- socks proxy gssapi negotiation protection
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SOCKS5_GSSAPI_SERVICE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SOCKS5_GSSAPI_SERVICE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SOCKS5_GSSAPI_SERVICE \- SOCKS5 proxy authentication service name
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_AUTH_TYPES 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_AUTH_TYPES 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_AUTH_TYPES \- auth types for SFTP and SCP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_COMPRESSION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_COMPRESSION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_COMPRESSION \- enable SSH compression
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 3 "November 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 3 "November 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 \- MD5 checksum of SSH server public key
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256 3 "March 29, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256 \- SHA256 hash of SSH server public key
5252 .fi
5353 .SH AVAILABILITY
5454 Added in 7.80.0
55 Requires the libssh2 back-end.
55 Requires the libssh2 backend.
5656 .SH RETURN VALUE
5757 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
5858 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_KEYDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_KEYDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_KEYDATA \- pointer passed to the SSH key callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_KEYFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_KEYFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_KEYFUNCTION \- callback for known host matching logic
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_KNOWNHOSTS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_KNOWNHOSTS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_KNOWNHOSTS \- file name holding the SSH known hosts
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_PRIVATE_KEYFILE 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_PRIVATE_KEYFILE 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_PRIVATE_KEYFILE \- private key file for SSH auth
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSH_PUBLIC_KEYFILE 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSH_PUBLIC_KEYFILE 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSH_PUBLIC_KEYFILE \- public key file for SSH auth
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLCERT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLCERT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLCERT \- SSL client certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLCERTTYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLCERTTYPE 3 "March 12, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLCERTTYPE \- type of client SSL certificate
3131 .fi
3232 .SH DESCRIPTION
3333 Pass a pointer to a null-terminated string as parameter. The string should be
34 the format of your certificate. Supported formats are "PEM" and "DER", except
35 with Secure Transport. OpenSSL (versions 0.9.3 and later) and Secure Transport
36 (on iOS 5 or later, or OS X 10.7 or later) also support "P12" for
37 PKCS#12-encoded files.
34 the format of your certificate.
35
36 Supported formats are "PEM" and "DER", except with Secure Transport or
37 Schannel. OpenSSL (versions 0.9.3 and later), Secure Transport (on iOS 5 or
38 later, or OS X 10.7 or later) and Schannel support "P12" for PKCS#12-encoded
39 files.
3840
3941 The application does not have to keep the string around after setting this
4042 option.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLCERT_BLOB 3 "January 11, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLCERT_BLOB 3 "January 11, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLCERT_BLOB \- SSL client certificate from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLENGINE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLENGINE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLENGINE \- SSL engine identifier
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLENGINE_DEFAULT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLENGINE_DEFAULT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLENGINE_DEFAULT \- make SSL engine default
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLKEY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLKEY 3 "March 12, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLKEY \- private keyfile for TLS and SSL client cert
3434 the file name of your private key. The default format is "PEM" and can be
3535 changed with \fICURLOPT_SSLKEYTYPE(3)\fP.
3636
37 (iOS and Mac OS X only) This option is ignored if curl was built against
38 Secure Transport. Secure Transport expects the private key to be already
39 present in the keychain or PKCS#12 file containing the certificate.
37 (Windows, iOS and Mac OS X) This option is ignored by Secure Transport and
38 Schannel SSL backends because they expect the private key to be already present
39 in the keychain or PKCS#12 file containing the certificate.
4040
4141 The application does not have to keep the string around after setting this
4242 option.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLKEYTYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLKEYTYPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLKEYTYPE \- type of the private key file
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLKEY_BLOB 3 "October 25, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLKEY_BLOB 3 "October 25, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLKEY_BLOB \- private key for client cert from memory blob
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSLVERSION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSLVERSION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSLVERSION \- preferred TLS/SSL version
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_CIPHER_LIST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_CIPHER_LIST 3 "December 06, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_CIPHER_LIST \- ciphers to use for TLS
4848 For WolfSSL, valid examples of cipher lists include \fBECDHE-RSA-RC4-SHA\fP,
4949 \fBAES256-SHA:AES256-SHA256\fP, etc.
5050
51 For BearSSL, valid examples of cipher lists include
52 \fBECDHE-RSA-CHACHA20-POLY1305:ECDHE-RSA-AES128-GCM-SHA256\fP, or when using IANA names
53 \fBTLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\fP,
54 etc.
55 With BearSSL you do not add/remove ciphers. If one uses this option then all
56 known ciphers are disabled and only those passed in are enabled.
57
5158 you will find more details about cipher lists on this URL:
5259
5360 https://curl.se/docs/ssl-ciphers.html
6976 }
7077 .fi
7178 .SH AVAILABILITY
79 Added in 7.9, in 7.83.0 for BearSSL
80
7281 If built TLS enabled.
7382 .SH RETURN VALUE
7483 Returns CURLE_OK if TLS is supported, CURLE_UNKNOWN_OPTION if not, or
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_CTX_DATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_CTX_DATA 3 "February 19, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_CTX_DATA \- pointer passed to ssl_ctx callback
115115 }
116116 .fi
117117 .SH AVAILABILITY
118 Added in 7.11.0 for OpenSSL, in 7.42.0 for wolfSSL and in 7.54.0 for
119 mbedTLS. Other SSL backends are not supported.
118 Added in 7.11.0 for OpenSSL, in 7.42.0 for wolfSSL, in 7.54.0 for mbedTLS,
119 in 7.83.0 in BearSSL. Other SSL backends are not supported.
120120 .SH RETURN VALUE
121121 CURLE_OK if supported; or an error such as:
122122
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_CTX_FUNCTION 3 "July 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_CTX_FUNCTION 3 "February 19, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_CTX_FUNCTION \- SSL context callback for OpenSSL, wolfSSL or mbedTLS
3232 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_CTX_FUNCTION,
3333 ssl_ctx_callback);
3434 .SH DESCRIPTION
35 This option only works for libcurl powered by OpenSSL, wolfSSL or mbedTLS. If
36 libcurl was built against another SSL library this functionality is absent.
35 This option only works for libcurl powered by OpenSSL, wolfSSL, mbedTLS or
36 BearSSL. If libcurl was built against another SSL library this functionality
37 is absent.
3738
3839 Pass a pointer to your callback function, which should match the prototype
3940 shown above.
4243 of an SSL connection after having processed all other SSL related options to
4344 give a last chance to an application to modify the behavior of the SSL
4445 initialization. The \fIssl_ctx\fP parameter is actually a pointer to the SSL
45 library's \fISSL_CTX\fP for OpenSSL or wolfSSL, and a pointer to
46 \fImbedtls_ssl_config\fP for mbedTLS. If an error is returned from the
46 library's \fISSL_CTX\fP for OpenSSL or wolfSSL, a pointer to
47 \fImbedtls_ssl_config\fP for mbedTLS or a pointer to
48 \fIbr_ssl_client_context\fP for BearSSL. If an error is returned from the
4749 callback no attempt to establish a connection is made and the perform
4850 operation will return the callback's error code. Set the \fIuserptr\fP
4951 argument with the \fICURLOPT_SSL_CTX_DATA(3)\fP option.
152154 }
153155 .fi
154156 .SH AVAILABILITY
155 Added in 7.11.0 for OpenSSL, in 7.42.0 for wolfSSL and in 7.54.0 for
156 mbedTLS. Other SSL backends are not supported.
157 Added in 7.11.0 for OpenSSL, in 7.42.0 for wolfSSL, in 7.54.0 for mbedTLS,
158 in 7.83.0 in BearSSL. Other SSL backends are not supported.
157159 .SH RETURN VALUE
158160 CURLE_OK if supported; or an error such as:
159161
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_EC_CURVES 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_EC_CURVES 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_EC_CURVES \- key exchange curves
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_ENABLE_ALPN 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_ENABLE_ALPN 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_ENABLE_ALPN \- Application Layer Protocol Negotiation
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_ENABLE_NPN 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_ENABLE_NPN 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_ENABLE_NPN \- use NPN
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_FALSESTART 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_FALSESTART 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_FALSESTART \- TLS false start
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_OPTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_OPTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_OPTIONS \- SSL behavior options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_SESSIONID_CACHE 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_SESSIONID_CACHE 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_SESSIONID_CACHE \- use the SSL session-ID cache
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_VERIFYHOST 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_VERIFYHOST \- verify the certificate's name against host
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_VERIFYPEER 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_VERIFYPEER \- verify the peer's SSL certificate
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SSL_VERIFYSTATUS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SSL_VERIFYSTATUS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SSL_VERIFYSTATUS \- verify the certificate's status
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_STDERR 3 "December 06, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_STDERR 3 "December 06, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_STDERR \- redirect stderr to another stream
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_STREAM_DEPENDS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_STREAM_DEPENDS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_STREAM_DEPENDS \- stream this transfer depends on
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_STREAM_DEPENDS_E 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_STREAM_DEPENDS_E 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_STREAM_DEPENDS_E \- stream this transfer depends on exclusively
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_STREAM_WEIGHT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_STREAM_WEIGHT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_STREAM_WEIGHT \- numerical stream weight
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_SUPPRESS_CONNECT_HEADERS 3 "September 08, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_SUPPRESS_CONNECT_HEADERS 3 "September 08, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_SUPPRESS_CONNECT_HEADERS \- suppress proxy CONNECT response headers from user callbacks
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TCP_FASTOPEN 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TCP_FASTOPEN 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TCP_FASTOPEN \- TCP Fast Open
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TCP_KEEPALIVE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TCP_KEEPALIVE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TCP_KEEPALIVE \- TCP keep-alive probing
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TCP_KEEPIDLE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TCP_KEEPIDLE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TCP_KEEPIDLE \- TCP keep-alive idle time wait
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TCP_KEEPINTVL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TCP_KEEPINTVL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TCP_KEEPINTVL \- TCP keep-alive interval
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TCP_NODELAY 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TCP_NODELAY 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TCP_NODELAY \- the TCP_NODELAY option
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TELNETOPTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TELNETOPTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TELNETOPTIONS \- set of telnet options
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TFTP_BLKSIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TFTP_BLKSIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TFTP_BLKSIZE \- TFTP block size
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TFTP_NO_OPTIONS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TFTP_NO_OPTIONS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TFTP_NO_OPTIONS \- send no TFTP options requests
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TIMECONDITION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TIMECONDITION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TIMECONDITION \- select condition for a time request
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TIMEOUT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TIMEOUT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TIMEOUT \- maximum time the transfer is allowed to complete
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TIMEOUT_MS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TIMEOUT_MS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TIMEOUT_MS \- maximum time the transfer is allowed to complete
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TIMEVALUE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TIMEVALUE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TIMEVALUE \- time value for conditional
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TIMEVALUE_LARGE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TIMEVALUE_LARGE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TIMEVALUE_LARGE \- time value for conditional
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TLS13_CIPHERS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TLS13_CIPHERS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TLS13_CIPHERS \- ciphers suites to use for TLS 1.3
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TLSAUTH_PASSWORD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TLSAUTH_PASSWORD 3 "April 25, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TLSAUTH_PASSWORD \- password to use for TLS authentication
5656 }
5757 .fi
5858 .SH AVAILABILITY
59 Added in 7.21.4
59 Added in 7.21.4, with the OpenSSL and GnuTLS backends only
6060 .SH RETURN VALUE
6161 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
6262 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TLSAUTH_TYPE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TLSAUTH_TYPE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TLSAUTH_TYPE \- TLS authentication methods
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TLSAUTH_USERNAME 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TLSAUTH_USERNAME 3 "April 25, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TLSAUTH_USERNAME \- user name to use for TLS authentication
5656 }
5757 .fi
5858 .SH AVAILABILITY
59 Added in 7.21.4
59 Added in 7.21.4, with the OpenSSL and GnuTLS backends only
6060 .SH RETURN VALUE
6161 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
6262 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TRAILERDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TRAILERDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TRAILERDATA \- pointer passed to trailing headers callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TRAILERFUNCTION 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TRAILERFUNCTION 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TRAILERFUNCTION \- callback for sending trailing headers
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TRANSFERTEXT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TRANSFERTEXT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TRANSFERTEXT \- request a text based transfer for FTP
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_TRANSFER_ENCODING 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_TRANSFER_ENCODING 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_TRANSFER_ENCODING \- ask for HTTP Transfer Encoding
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_UNIX_SOCKET_PATH 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_UNIX_SOCKET_PATH 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_UNIX_SOCKET_PATH \- Unix domain socket
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_UNRESTRICTED_AUTH 3 "November 04, 2020" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_UNRESTRICTED_AUTH 3 "April 19, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_UNRESTRICTED_AUTH \- send credentials to other hosts too
3535 hostname changed. This option is meaningful only when setting
3636 \fICURLOPT_FOLLOWLOCATION(3)\fP.
3737
38 By default, libcurl will only send given credentials to the initial host name
39 as given in the original URL, to avoid leaking username + password to other
40 sites.
38 Further, when this option is not used or set to \fB0L\fP, libcurl will not
39 send custom set nor internally generated Authentication: headers on requests
40 done to other hosts than the one used for the initial URL.
41
42 By default, libcurl will only send credentials and Authentication headers to
43 the initial host name as given in the original URL, to avoid leaking username
44 + password to other sites.
45
46 This option should be used with caution: when curl follows redirects it
47 blindly fetches the next URL as instructed by the server. Setting
48 \fICURLOPT_UNRESTRICTED_AUTH(3)\fP to 1L will therefore also make curl trust
49 the server and send possibly sensitive credentials to a host the server points
50 out.
4151 .SH DEFAULT
4252 0
4353 .SH PROTOCOLS
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_UPKEEP_INTERVAL_MS 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_UPKEEP_INTERVAL_MS 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_UPKEEP_INTERVAL_MS \- connection upkeep interval
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_UPLOAD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_UPLOAD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_UPLOAD \- data upload
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_UPLOAD_BUFFERSIZE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_UPLOAD_BUFFERSIZE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_UPLOAD_BUFFERSIZE \- upload buffer size
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_URL 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_URL 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_URL \- URL for this transfer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_USERAGENT 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_USERAGENT 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_USERAGENT \- HTTP user-agent header
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_USERNAME 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_USERNAME 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_USERNAME \- user name to use in authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_USERPWD 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_USERPWD 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_USERPWD \- user name and password to use in authentication
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_USE_SSL 3 "November 30, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_USE_SSL 3 "November 30, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_USE_SSL \- request using SSL / TLS for the transfer
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_VERBOSE 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_VERBOSE 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_VERBOSE \- verbose mode
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_WILDCARDMATCH 3 "January 05, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_WILDCARDMATCH 3 "January 05, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_WILDCARDMATCH \- directory wildcard transfers
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_WRITEDATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_WRITEDATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_WRITEDATA \- pointer passed to the write callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_WRITEFUNCTION 3 "October 31, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_WRITEFUNCTION 3 "October 31, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_WRITEFUNCTION \- callback for writing received data
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_XFERINFODATA 3 "November 26, 2021" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_XFERINFODATA 3 "November 26, 2021" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_XFERINFODATA \- pointer passed to the progress callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_XFERINFOFUNCTION 3 "February 27, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_XFERINFOFUNCTION 3 "February 27, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_XFERINFOFUNCTION \- progress meter callback
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH CURLOPT_XOAUTH2_BEARER 3 "January 10, 2022" "libcurl 7.82.0" "curl_easy_setopt options"
22 .TH CURLOPT_XOAUTH2_BEARER 3 "January 10, 2022" "libcurl 7.83.0" "curl_easy_setopt options"
2323
2424 .SH NAME
2525 CURLOPT_XOAUTH2_BEARER \- OAuth 2.0 access token
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH CURLSHOPT_LOCKFUNC 3 "January 31, 2022" "libcurl 7.82.0" "libcurl Manual"
21 .TH CURLSHOPT_LOCKFUNC 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 CURLSHOPT_LOCKFUNC - mutex lock callback
5353 All
5454 .SH EXAMPLE
5555 .nf
56 CURLSHcode sh
56 CURLSHcode sh;
5757 share = curl_share_init();
5858 sh = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, mutex_lock);
5959 if(sh)
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH CURLSHOPT_SHARE 3 "November 12, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH CURLSHOPT_SHARE 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 CURLSHOPT_SHARE - add data to share
8080 All
8181 .SH EXAMPLE
8282 .nf
83 CURLSHcode sh
83 CURLSHcode sh;
8484 share = curl_share_init();
8585 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE);
8686 if(sh)
44 .\" * | (__| |_| | _ <| |___
55 .\" * \___|\___/|_| \_\_____|
66 .\" *
7 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 .\" *
99 .\" * This software is licensed as described in the file COPYING, which
1010 .\" * you should have received as part of this distribution. The terms
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH CURLSHOPT_UNLOCKFUNC 3 "November 12, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH CURLSHOPT_UNLOCKFUNC 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 CURLSHOPT_UNLOCKFUNC - mutex unlock callback
2626 .nf
2727 #include <curl/curl.h>
2828
29 void unlockcb(CURL *handle, curl_lock_data data, curl_lock_access access,
30 void *userptr);
29 void unlockcb(CURL *handle, curl_lock_data data, void *userptr);
3130
3231 CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_UNLOCKFUNC, unlockcb);
3332 .fi
5251 All
5352 .SH EXAMPLE
5453 .nf
55 CURLSHcode sh
54 CURLSHcode sh;
5655 share = curl_share_init();
5756 sh = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, mutex_unlock);
5857 if(sh)
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH CURLSHOPT_UNSHARE 3 "November 12, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH CURLSHOPT_UNSHARE 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 CURLSHOPT_UNSHARE - remove data to share
5353 All
5454 .SH EXAMPLE
5555 .nf
56 CURLSHcode sh
56 CURLSHcode sh;
5757 share = curl_share_init();
5858 sh = curl_share_setopt(share, CURLSHOPT_UNSHARE, CURL_LOCK_DATA_COOKIE);
5959 if(sh)
1818 .\" * KIND, either express or implied.
1919 .\" *
2020 .\" **************************************************************************
21 .TH CURLSHOPT_USERDATA 3 "December 09, 2021" "libcurl 7.82.0" "libcurl Manual"
21 .TH CURLSHOPT_USERDATA 3 "April 15, 2022" "libcurl 7.83.0" "libcurl Manual"
2222
2323 .SH NAME
2424 CURLSHOPT_USERDATA - pointer passed to the (un)lock mutex callbacks
3636 All
3737 .SH EXAMPLE
3838 .nf
39 CURLSHcode sh
39 CURLSHcode sh;
4040 struct secrets private_stuff;
4141 share = curl_share_init();
4242 sh = curl_share_setopt(share, CURLSHOPT_USERDATA, &private_stuff);
264264 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
265265 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
266266 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
267 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
267268 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
268269 CYGPATH_W = @CYGPATH_W@
269270 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
281282 ETAGS = @ETAGS@
282283 EXEEXT = @EXEEXT@
283284 FGREP = @FGREP@
285 FILECMD = @FILECMD@
284286 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
285287 GCOV = @GCOV@
286288 GREP = @GREP@
356358 USE_LIBSSH = @USE_LIBSSH@
357359 USE_LIBSSH2 = @USE_LIBSSH2@
358360 USE_MBEDTLS = @USE_MBEDTLS@
361 USE_MSH3 = @USE_MSH3@
359362 USE_NGHTTP2 = @USE_NGHTTP2@
360363 USE_NGHTTP3 = @USE_NGHTTP3@
361364 USE_NGTCP2 = @USE_NGTCP2@
1111
1212 Name Introduced Deprecated Last
1313
14 CURL_CHUNK_BGN_FUNC_FAIL 7.21.0
15 CURL_CHUNK_BGN_FUNC_OK 7.21.0
16 CURL_CHUNK_BGN_FUNC_SKIP 7.21.0
17 CURL_CHUNK_END_FUNC_FAIL 7.21.0
18 CURL_CHUNK_END_FUNC_OK 7.21.0
19 CURL_CSELECT_ERR 7.16.3
20 CURL_CSELECT_IN 7.16.3
21 CURL_CSELECT_OUT 7.16.3
22 CURL_DID_MEMORY_FUNC_TYPEDEFS 7.49.0
23 CURL_EASY_NONE 7.14.0 - 7.15.4
24 CURL_EASY_TIMEOUT 7.14.0 - 7.15.4
25 CURL_ERROR_SIZE 7.1
26 CURL_FNMATCHFUNC_FAIL 7.21.0
27 CURL_FNMATCHFUNC_MATCH 7.21.0
28 CURL_FNMATCHFUNC_NOMATCH 7.21.0
29 CURL_FORMADD_DISABLED 7.12.1 7.56.0
30 CURL_FORMADD_ILLEGAL_ARRAY 7.9.8 7.56.0
31 CURL_FORMADD_INCOMPLETE 7.9.8 7.56.0
32 CURL_FORMADD_MEMORY 7.9.8 7.56.0
33 CURL_FORMADD_NULL 7.9.8 7.56.0
34 CURL_FORMADD_OK 7.9.8 7.56.0
35 CURL_FORMADD_OPTION_TWICE 7.9.8 7.56.0
36 CURL_FORMADD_UNKNOWN_OPTION 7.9.8 7.56.0
37 CURL_GLOBAL_ACK_EINTR 7.30.0
38 CURL_GLOBAL_ALL 7.8
39 CURL_GLOBAL_DEFAULT 7.8
40 CURL_GLOBAL_NOTHING 7.8
41 CURL_GLOBAL_SSL 7.8
42 CURL_GLOBAL_WIN32 7.8.1
43 CURL_HET_DEFAULT 7.59.0
44 CURL_HTTP_VERSION_1_0 7.9.1
45 CURL_HTTP_VERSION_1_1 7.9.1
46 CURL_HTTP_VERSION_2 7.43.0
47 CURL_HTTP_VERSION_2_0 7.33.0
48 CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE 7.49.0
49 CURL_HTTP_VERSION_2TLS 7.47.0
50 CURL_HTTP_VERSION_3 7.66.0
51 CURL_HTTP_VERSION_NONE 7.9.1
52 CURL_HTTPPOST_BUFFER 7.46.0
53 CURL_HTTPPOST_CALLBACK 7.46.0
54 CURL_HTTPPOST_FILENAME 7.46.0
55 CURL_HTTPPOST_LARGE 7.46.0
56 CURL_HTTPPOST_PTRBUFFER 7.46.0
57 CURL_HTTPPOST_PTRCONTENTS 7.46.0
58 CURL_HTTPPOST_PTRNAME 7.46.0
59 CURL_HTTPPOST_READFILE 7.46.0
60 CURL_IPRESOLVE_V4 7.10.8
61 CURL_IPRESOLVE_V6 7.10.8
62 CURL_IPRESOLVE_WHATEVER 7.10.8
63 CURL_LOCK_ACCESS_NONE 7.10.3
64 CURL_LOCK_ACCESS_SHARED 7.10.3
65 CURL_LOCK_ACCESS_SINGLE 7.10.3
66 CURL_LOCK_DATA_CONNECT 7.10.3
67 CURL_LOCK_DATA_COOKIE 7.10.3
68 CURL_LOCK_DATA_DNS 7.10.3
69 CURL_LOCK_DATA_NONE 7.10.3
70 CURL_LOCK_DATA_PSL 7.61.0
71 CURL_LOCK_DATA_SHARE 7.10.4
72 CURL_LOCK_DATA_SSL_SESSION 7.10.3
73 CURL_LOCK_TYPE_CONNECT 7.10 - 7.10.2
74 CURL_LOCK_TYPE_COOKIE 7.10 - 7.10.2
75 CURL_LOCK_TYPE_DNS 7.10 - 7.10.2
76 CURL_LOCK_TYPE_NONE 7.10 - 7.10.2
77 CURL_LOCK_TYPE_SSL_SESSION 7.10 - 7.10.2
78 CURL_MAX_HTTP_HEADER 7.19.7
79 CURL_MAX_READ_SIZE 7.53.0
80 CURL_MAX_WRITE_SIZE 7.9.7
81 CURL_NETRC_IGNORED 7.9.8
82 CURL_NETRC_OPTIONAL 7.9.8
83 CURL_NETRC_REQUIRED 7.9.8
84 CURL_POLL_IN 7.14.0
85 CURL_POLL_INOUT 7.14.0
86 CURL_POLL_NONE 7.14.0
87 CURL_POLL_OUT 7.14.0
88 CURL_POLL_REMOVE 7.14.0
89 CURL_PREREQFUNC_ABORT 7.79.0
90 CURL_PREREQFUNC_OK 7.79.0
91 CURL_PROGRESS_BAR 7.1.1 - 7.4.1
92 CURL_PROGRESS_STATS 7.1.1 - 7.4.1
93 CURL_PROGRESSFUNC_CONTINUE 7.68.0
94 CURL_PUSH_DENY 7.44.0
95 CURL_PUSH_ERROROUT 7.72.0
96 CURL_PUSH_OK 7.44.0
97 CURL_READFUNC_ABORT 7.12.1
98 CURL_READFUNC_PAUSE 7.18.0
99 CURL_REDIR_GET_ALL 7.19.1
100 CURL_REDIR_POST_301 7.19.1
101 CURL_REDIR_POST_302 7.19.1
102 CURL_REDIR_POST_303 7.25.1
103 CURL_REDIR_POST_ALL 7.19.1
104 CURL_RTSPREQ_ANNOUNCE 7.20.0
105 CURL_RTSPREQ_DESCRIBE 7.20.0
106 CURL_RTSPREQ_GET_PARAMETER 7.20.0
107 CURL_RTSPREQ_NONE 7.20.0
108 CURL_RTSPREQ_OPTIONS 7.20.0
109 CURL_RTSPREQ_PAUSE 7.20.0
110 CURL_RTSPREQ_PLAY 7.20.0
111 CURL_RTSPREQ_RECEIVE 7.20.0
112 CURL_RTSPREQ_RECORD 7.20.0
113 CURL_RTSPREQ_SET_PARAMETER 7.20.0
114 CURL_RTSPREQ_SETUP 7.20.0
115 CURL_RTSPREQ_TEARDOWN 7.20.0
116 CURL_SEEKFUNC_CANTSEEK 7.19.5
117 CURL_SEEKFUNC_FAIL 7.19.5
118 CURL_SEEKFUNC_OK 7.19.5
119 CURL_SOCKET_BAD 7.14.0
120 CURL_SOCKET_TIMEOUT 7.14.0
121 CURL_SOCKOPT_ALREADY_CONNECTED 7.21.5
122 CURL_SOCKOPT_ERROR 7.21.5
123 CURL_SOCKOPT_OK 7.21.5
124 CURL_SSLVERSION_DEFAULT 7.9.2
125 CURL_SSLVERSION_MAX_DEFAULT 7.54.0
126 CURL_SSLVERSION_MAX_NONE 7.54.0
127 CURL_SSLVERSION_MAX_TLSv1_0 7.54.0
128 CURL_SSLVERSION_MAX_TLSv1_1 7.54.0
129 CURL_SSLVERSION_MAX_TLSv1_2 7.54.0
130 CURL_SSLVERSION_MAX_TLSv1_3 7.54.0
131 CURL_SSLVERSION_SSLv2 7.9.2
132 CURL_SSLVERSION_SSLv3 7.9.2
133 CURL_SSLVERSION_TLSv1 7.9.2
134 CURL_SSLVERSION_TLSv1_0 7.34.0
135 CURL_SSLVERSION_TLSv1_1 7.34.0
136 CURL_SSLVERSION_TLSv1_2 7.34.0
137 CURL_SSLVERSION_TLSv1_3 7.52.0
138 CURL_STRICTER 7.50.2
139 CURL_TIMECOND_IFMODSINCE 7.9.7
140 CURL_TIMECOND_IFUNMODSINCE 7.9.7
141 CURL_TIMECOND_LASTMOD 7.9.7
142 CURL_TIMECOND_NONE 7.9.7
143 CURL_TLSAUTH_NONE 7.21.4
144 CURL_TLSAUTH_SRP 7.21.4
145 CURL_TRAILERFUNC_ABORT 7.64.0
146 CURL_TRAILERFUNC_OK 7.64.0
147 CURL_UPKEEP_INTERVAL_DEFAULT 7.62.0
148 CURL_VERSION_ALTSVC 7.64.1
149 CURL_VERSION_ASYNCHDNS 7.10.7
150 CURL_VERSION_BROTLI 7.57.0
151 CURL_VERSION_CONV 7.15.4
152 CURL_VERSION_CURLDEBUG 7.19.6
153 CURL_VERSION_DEBUG 7.10.6
154 CURL_VERSION_GSASL 7.76.0
155 CURL_VERSION_GSSAPI 7.38.0
156 CURL_VERSION_GSSNEGOTIATE 7.10.6 7.38.0
157 CURL_VERSION_HSTS 7.74.0
158 CURL_VERSION_HTTP2 7.33.0
159 CURL_VERSION_HTTP3 7.66.0
160 CURL_VERSION_HTTPS_PROXY 7.52.0
161 CURL_VERSION_IDN 7.12.0
162 CURL_VERSION_IPV6 7.10
163 CURL_VERSION_KERBEROS4 7.10 7.33.0
164 CURL_VERSION_KERBEROS5 7.40.0
165 CURL_VERSION_LARGEFILE 7.11.1
166 CURL_VERSION_LIBZ 7.10
167 CURL_VERSION_MULTI_SSL 7.56.0
168 CURL_VERSION_NTLM 7.10.6
169 CURL_VERSION_NTLM_WB 7.22.0
170 CURL_VERSION_PSL 7.47.0
171 CURL_VERSION_SPNEGO 7.10.8
172 CURL_VERSION_SSL 7.10
173 CURL_VERSION_SSPI 7.13.2
174 CURL_VERSION_TLSAUTH_SRP 7.21.4
175 CURL_VERSION_UNICODE 7.72.0
176 CURL_VERSION_UNIX_SOCKETS 7.40.0
177 CURL_VERSION_ZSTD 7.72.0
178 CURL_WAIT_POLLIN 7.28.0
179 CURL_WAIT_POLLOUT 7.28.0
180 CURL_WAIT_POLLPRI 7.28.0
181 CURL_WIN32 7.69.0
182 CURL_WRITEFUNC_PAUSE 7.18.0
183 CURL_ZERO_TERMINATED 7.56.0
14184 CURLALTSVC_H1 7.64.1
15185 CURLALTSVC_H2 7.64.1
16186 CURLALTSVC_H3 7.64.1
17187 CURLALTSVC_READONLYFILE 7.64.1
18188 CURLAUTH_ANY 7.10.6
19189 CURLAUTH_ANYSAFE 7.10.6
190 CURLAUTH_AWS_SIGV4 7.75.0
20191 CURLAUTH_BASIC 7.10.6
21192 CURLAUTH_BEARER 7.61.0
22193 CURLAUTH_DIGEST 7.10.6
28199 CURLAUTH_NTLM 7.10.6
29200 CURLAUTH_NTLM_WB 7.22.0
30201 CURLAUTH_ONLY 7.21.3
31 CURLAUTH_AWS_SIGV4 7.75.0
32202 CURLCLOSEPOLICY_CALLBACK 7.7
33203 CURLCLOSEPOLICY_LEAST_RECENTLY_USED 7.7
34204 CURLCLOSEPOLICY_LEAST_TRAFFIC 7.7
51221 CURLE_COULDNT_RESOLVE_HOST 7.1
52222 CURLE_COULDNT_RESOLVE_PROXY 7.1
53223 CURLE_FAILED_INIT 7.1
224 CURLE_FILE_COULDNT_READ_FILE 7.1
54225 CURLE_FILESIZE_EXCEEDED 7.10.8
55 CURLE_FILE_COULDNT_READ_FILE 7.1
56226 CURLE_FTP_ACCEPT_FAILED 7.24.0
57227 CURLE_FTP_ACCEPT_TIMEOUT 7.24.0
58228 CURLE_FTP_ACCESS_DENIED 7.1 7.17.0
96266 CURLE_LIBRARY_NOT_FOUND 7.1 7.17.0
97267 CURLE_LOGIN_DENIED 7.13.1
98268 CURLE_MALFORMAT_USER 7.1 7.17.0
269 CURLE_NO_CONNECTION_AVAILABLE 7.30.0
99270 CURLE_NOT_BUILT_IN 7.21.5
100 CURLE_NO_CONNECTION_AVAILABLE 7.30.0
101271 CURLE_OK 7.1
102272 CURLE_OPERATION_TIMEDOUT 7.10.2
103273 CURLE_OPERATION_TIMEOUTED 7.1 7.17.0
193363 CURLFORM_PTRCONTENTS 7.9 7.56.0
194364 CURLFORM_PTRNAME 7.9 7.56.0
195365 CURLFORM_STREAM 7.18.2 7.56.0
366 CURLFTP_CREATE_DIR 7.19.4
367 CURLFTP_CREATE_DIR_NONE 7.19.4
368 CURLFTP_CREATE_DIR_RETRY 7.19.4
196369 CURLFTPAUTH_DEFAULT 7.12.2
197370 CURLFTPAUTH_SSL 7.12.2
198371 CURLFTPAUTH_TLS 7.12.2
207380 CURLFTPSSL_CONTROL 7.11.0 7.17.0
208381 CURLFTPSSL_NONE 7.11.0 7.17.0
209382 CURLFTPSSL_TRY 7.11.0 7.17.0
210 CURLFTP_CREATE_DIR 7.19.4
211 CURLFTP_CREATE_DIR_NONE 7.19.4
212 CURLFTP_CREATE_DIR_RETRY 7.19.4
213383 CURLGSSAPI_DELEGATION_FLAG 7.22.0
214384 CURLGSSAPI_DELEGATION_NONE 7.22.0
215385 CURLGSSAPI_DELEGATION_POLICY_FLAG 7.22.0
386 CURLH_1XX 7.83.0
387 CURLH_CONNECT 7.83.0
388 CURLH_HEADER 7.83.0
389 CURLH_PSEUDO 7.83.0
390 CURLH_TRAILER 7.83.0
391 CURLHE_BAD_ARGUMENT 7.83.0
392 CURLHE_BADINDEX 7.83.0
393 CURLHE_MISSING 7.83.0
394 CURLHE_NOHEADERS 7.83.0
395 CURLHE_NOREQUEST 7.83.0
396 CURLHE_NOT_BUILT_IN 7.83.0
397 CURLHE_OK 7.83.0
398 CURLHE_OUT_OF_MEMORY 7.83.0
216399 CURLHEADER_SEPARATE 7.37.0
217400 CURLHEADER_UNIFIED 7.37.0
218401 CURLHSTS_ENABLE 7.74.0
242425 CURLINFO_HEADER_IN 7.9.6
243426 CURLINFO_HEADER_OUT 7.9.6
244427 CURLINFO_HEADER_SIZE 7.4.1
245 CURLINFO_HTTPAUTH_AVAIL 7.10.8
246428 CURLINFO_HTTP_CODE 7.4.1 7.10.8
247429 CURLINFO_HTTP_CONNECTCODE 7.10.7
248430 CURLINFO_HTTP_VERSION 7.50.0
431 CURLINFO_HTTPAUTH_AVAIL 7.10.8
249432 CURLINFO_LASTONE 7.4.1
250433 CURLINFO_LASTSOCKET 7.15.2
251434 CURLINFO_LOCAL_IP 7.21.0
264447 CURLINFO_PRIMARY_PORT 7.21.0
265448 CURLINFO_PRIVATE 7.10.3
266449 CURLINFO_PROTOCOL 7.52.0
267 CURLINFO_PROXYAUTH_AVAIL 7.10.8
268450 CURLINFO_PROXY_ERROR 7.73.0
269451 CURLINFO_PROXY_SSL_VERIFYRESULT 7.52.0
452 CURLINFO_PROXYAUTH_AVAIL 7.10.8
270453 CURLINFO_PTR 7.54.1
271454 CURLINFO_REDIRECT_COUNT 7.9.7
272455 CURLINFO_REDIRECT_TIME 7.9.7
323506 CURLKHTYPE_RSA 7.19.6
324507 CURLKHTYPE_RSA1 7.19.6
325508 CURLKHTYPE_UNKNOWN 7.19.6
326 CURLMIMEOPT_FORMESCAPE 7.81.0
327 CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE 7.30.0
328 CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE 7.30.0
329 CURLMOPT_MAXCONNECTS 7.16.3
330 CURLMOPT_MAX_CONCURRENT_STREAMS 7.67.0
331 CURLMOPT_MAX_HOST_CONNECTIONS 7.30.0
332 CURLMOPT_MAX_PIPELINE_LENGTH 7.30.0
333 CURLMOPT_MAX_TOTAL_CONNECTIONS 7.30.0
334 CURLMOPT_PIPELINING 7.16.0
335 CURLMOPT_PIPELINING_SERVER_BL 7.30.0
336 CURLMOPT_PIPELINING_SITE_BL 7.30.0
337 CURLMOPT_PUSHDATA 7.44.0
338 CURLMOPT_PUSHFUNCTION 7.44.0
339 CURLMOPT_SOCKETDATA 7.15.4
340 CURLMOPT_SOCKETFUNCTION 7.15.4
341 CURLMOPT_TIMERDATA 7.16.0
342 CURLMOPT_TIMERFUNCTION 7.16.0
343 CURLMSG_DONE 7.9.6
344 CURLMSG_NONE 7.9.6
345509 CURLM_ABORTED_BY_CALLBACK 7.81.0
346510 CURLM_ADDED_ALREADY 7.32.1
347511 CURLM_BAD_EASY_HANDLE 7.9.6
356520 CURLM_RECURSIVE_API_CALL 7.59.0
357521 CURLM_UNKNOWN_OPTION 7.15.4
358522 CURLM_WAKEUP_FAILURE 7.68.0
523 CURLMIMEOPT_FORMESCAPE 7.81.0
524 CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE 7.30.0
525 CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE 7.30.0
526 CURLMOPT_MAX_CONCURRENT_STREAMS 7.67.0
527 CURLMOPT_MAX_HOST_CONNECTIONS 7.30.0
528 CURLMOPT_MAX_PIPELINE_LENGTH 7.30.0
529 CURLMOPT_MAX_TOTAL_CONNECTIONS 7.30.0
530 CURLMOPT_MAXCONNECTS 7.16.3
531 CURLMOPT_PIPELINING 7.16.0
532 CURLMOPT_PIPELINING_SERVER_BL 7.30.0
533 CURLMOPT_PIPELINING_SITE_BL 7.30.0
534 CURLMOPT_PUSHDATA 7.44.0
535 CURLMOPT_PUSHFUNCTION 7.44.0
536 CURLMOPT_SOCKETDATA 7.15.4
537 CURLMOPT_SOCKETFUNCTION 7.15.4
538 CURLMOPT_TIMERDATA 7.16.0
539 CURLMOPT_TIMERFUNCTION 7.16.0
540 CURLMSG_DONE 7.9.6
541 CURLMSG_NONE 7.9.6
359542 CURLOPT 7.69.0
360 CURLOPTTYPE_BLOB 7.71.0
361 CURLOPTTYPE_CBPOINT 7.73.0
362 CURLOPTTYPE_FUNCTIONPOINT 7.1
363 CURLOPTTYPE_LONG 7.1
364 CURLOPTTYPE_OBJECTPOINT 7.1
365 CURLOPTTYPE_OFF_T 7.11.0
366 CURLOPTTYPE_SLISTPOINT 7.65.2
367 CURLOPTTYPE_STRINGPOINT 7.46.0
368 CURLOPTTYPE_VALUES 7.73.0
369543 CURLOPT_ABSTRACT_UNIX_SOCKET 7.53.0
544 CURLOPT_ACCEPT_ENCODING 7.21.6
370545 CURLOPT_ACCEPTTIMEOUT_MS 7.24.0
371 CURLOPT_ACCEPT_ENCODING 7.21.6
372546 CURLOPT_ADDRESS_SCOPE 7.19.0
373547 CURLOPT_ALTSVC 7.64.1
374548 CURLOPT_ALTSVC_CTRL 7.64.1
375549 CURLOPT_APPEND 7.17.0
376550 CURLOPT_AUTOREFERER 7.1
551 CURLOPT_AWS_SIGV4 7.75.0
377552 CURLOPT_BUFFERSIZE 7.10
378553 CURLOPT_CAINFO 7.4.2
379554 CURLOPT_CAINFO_BLOB 7.77.0
386561 CURLOPT_CLOSEPOLICY 7.7 7.16.1
387562 CURLOPT_CLOSESOCKETDATA 7.21.7
388563 CURLOPT_CLOSESOCKETFUNCTION 7.21.7
564 CURLOPT_CONNECT_ONLY 7.15.2
565 CURLOPT_CONNECT_TO 7.49.0
389566 CURLOPT_CONNECTTIMEOUT 7.7
390567 CURLOPT_CONNECTTIMEOUT_MS 7.16.2
391 CURLOPT_CONNECT_ONLY 7.15.2
392 CURLOPT_CONNECT_TO 7.49.0
393568 CURLOPT_CONV_FROM_NETWORK_FUNCTION 7.15.4 7.82.0
394569 CURLOPT_CONV_FROM_UTF8_FUNCTION 7.15.4 7.82.0
395570 CURLOPT_CONV_TO_NETWORK_FUNCTION 7.15.4 7.82.0
431606 CURLOPT_FOLLOWLOCATION 7.1
432607 CURLOPT_FORBID_REUSE 7.7
433608 CURLOPT_FRESH_CONNECT 7.7
434 CURLOPT_FTPAPPEND 7.1 7.16.4
435 CURLOPT_FTPASCII 7.1 7.11.1 7.15.5
436 CURLOPT_FTPLISTONLY 7.1 7.16.4
437 CURLOPT_FTPPORT 7.1
438 CURLOPT_FTPSSLAUTH 7.12.2
439609 CURLOPT_FTP_ACCOUNT 7.13.0
440610 CURLOPT_FTP_ALTERNATIVE_TO_USER 7.15.5
441611 CURLOPT_FTP_CREATE_MISSING_DIRS 7.10.7
447617 CURLOPT_FTP_USE_EPRT 7.10.5
448618 CURLOPT_FTP_USE_EPSV 7.9.2
449619 CURLOPT_FTP_USE_PRET 7.20.0
620 CURLOPT_FTPAPPEND 7.1 7.16.4
621 CURLOPT_FTPASCII 7.1 7.11.1 7.15.5
622 CURLOPT_FTPLISTONLY 7.1 7.16.4
623 CURLOPT_FTPPORT 7.1
624 CURLOPT_FTPSSLAUTH 7.12.2
450625 CURLOPT_GSSAPI_DELEGATION 7.22.0
451626 CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS 7.59.0
452627 CURLOPT_HAPROXYPROTOCOL 7.60.0
462637 CURLOPT_HSTSWRITEFUNCTION 7.74.0
463638 CURLOPT_HTTP09_ALLOWED 7.64.0
464639 CURLOPT_HTTP200ALIASES 7.10.3
640 CURLOPT_HTTP_CONTENT_DECODING 7.16.2
641 CURLOPT_HTTP_TRANSFER_DECODING 7.16.2
642 CURLOPT_HTTP_VERSION 7.9.1
465643 CURLOPT_HTTPAUTH 7.10.6
466644 CURLOPT_HTTPGET 7.8.1
467645 CURLOPT_HTTPHEADER 7.1
468646 CURLOPT_HTTPPOST 7.1 7.56.0
469647 CURLOPT_HTTPPROXYTUNNEL 7.3
470648 CURLOPT_HTTPREQUEST 7.1 - 7.15.5
471 CURLOPT_HTTP_CONTENT_DECODING 7.16.2
472 CURLOPT_HTTP_TRANSFER_DECODING 7.16.2
473 CURLOPT_HTTP_VERSION 7.9.1
474649 CURLOPT_IGNORE_CONTENT_LENGTH 7.14.1
475650 CURLOPT_INFILE 7.1 7.9.7
476651 CURLOPT_INFILESIZE 7.1
496671 CURLOPT_MAIL_FROM 7.20.0
497672 CURLOPT_MAIL_RCPT 7.20.0
498673 CURLOPT_MAIL_RCPT_ALLLOWFAILS 7.69.0
674 CURLOPT_MAX_RECV_SPEED_LARGE 7.15.5
675 CURLOPT_MAX_SEND_SPEED_LARGE 7.15.5
499676 CURLOPT_MAXAGE_CONN 7.65.0
500677 CURLOPT_MAXCONNECTS 7.7
501678 CURLOPT_MAXFILESIZE 7.10.8
502679 CURLOPT_MAXFILESIZE_LARGE 7.11.0
503680 CURLOPT_MAXLIFETIME_CONN 7.80.0
504681 CURLOPT_MAXREDIRS 7.5
505 CURLOPT_MAX_RECV_SPEED_LARGE 7.15.5
506 CURLOPT_MAX_SEND_SPEED_LARGE 7.15.5
682 CURLOPT_MIME_OPTIONS 7.81.0
507683 CURLOPT_MIMEPOST 7.56.0
508 CURLOPT_MIME_OPTIONS 7.81.0
509684 CURLOPT_MUTE 7.1 7.8 7.15.5
510685 CURLOPT_NETRC 7.1
511686 CURLOPT_NETRC_FILE 7.11.0
533708 CURLOPT_POSTFIELDSIZE_LARGE 7.11.1
534709 CURLOPT_POSTQUOTE 7.1
535710 CURLOPT_POSTREDIR 7.19.1
711 CURLOPT_PRE_PROXY 7.52.0
536712 CURLOPT_PREQUOTE 7.9.5
537713 CURLOPT_PREREQDATA 7.80.0
538714 CURLOPT_PREREQFUNCTION 7.80.0
539 CURLOPT_PRE_PROXY 7.52.0
540715 CURLOPT_PRIVATE 7.10.3
541716 CURLOPT_PROGRESSDATA 7.1
542717 CURLOPT_PROGRESSFUNCTION 7.1 7.32.0
543718 CURLOPT_PROTOCOLS 7.19.4
544719 CURLOPT_PROXY 7.1
545 CURLOPT_PROXYAUTH 7.10.7
546 CURLOPT_PROXYHEADER 7.37.0
547 CURLOPT_PROXYPASSWORD 7.19.1
548 CURLOPT_PROXYPORT 7.1
549 CURLOPT_PROXYTYPE 7.10
550 CURLOPT_PROXYUSERNAME 7.19.1
551 CURLOPT_PROXYUSERPWD 7.1
552720 CURLOPT_PROXY_CAINFO 7.52.0
553721 CURLOPT_PROXY_CAINFO_BLOB 7.77.0
554722 CURLOPT_PROXY_CAPATH 7.52.0
558726 CURLOPT_PROXY_KEYPASSWD 7.52.0
559727 CURLOPT_PROXY_PINNEDPUBLICKEY 7.52.0
560728 CURLOPT_PROXY_SERVICE_NAME 7.43.0
561 CURLOPT_PROXY_SSLCERT 7.52.0
562 CURLOPT_PROXY_SSLCERTTYPE 7.52.0
563 CURLOPT_PROXY_SSLCERT_BLOB 7.71.0
564 CURLOPT_PROXY_SSLKEY 7.52.0
565 CURLOPT_PROXY_SSLKEYTYPE 7.52.0
566 CURLOPT_PROXY_SSLKEY_BLOB 7.71.0
567 CURLOPT_PROXY_SSLVERSION 7.52.0
568729 CURLOPT_PROXY_SSL_CIPHER_LIST 7.52.0
569730 CURLOPT_PROXY_SSL_OPTIONS 7.52.0
570731 CURLOPT_PROXY_SSL_VERIFYHOST 7.52.0
571732 CURLOPT_PROXY_SSL_VERIFYPEER 7.52.0
733 CURLOPT_PROXY_SSLCERT 7.52.0
734 CURLOPT_PROXY_SSLCERT_BLOB 7.71.0
735 CURLOPT_PROXY_SSLCERTTYPE 7.52.0
736 CURLOPT_PROXY_SSLKEY 7.52.0
737 CURLOPT_PROXY_SSLKEY_BLOB 7.71.0
738 CURLOPT_PROXY_SSLKEYTYPE 7.52.0
739 CURLOPT_PROXY_SSLVERSION 7.52.0
572740 CURLOPT_PROXY_TLS13_CIPHERS 7.61.0
573741 CURLOPT_PROXY_TLSAUTH_PASSWORD 7.52.0
574742 CURLOPT_PROXY_TLSAUTH_TYPE 7.52.0
575743 CURLOPT_PROXY_TLSAUTH_USERNAME 7.52.0
576744 CURLOPT_PROXY_TRANSFER_MODE 7.18.0
745 CURLOPT_PROXYAUTH 7.10.7
746 CURLOPT_PROXYHEADER 7.37.0
747 CURLOPT_PROXYPASSWORD 7.19.1
748 CURLOPT_PROXYPORT 7.1
749 CURLOPT_PROXYTYPE 7.10
750 CURLOPT_PROXYUSERNAME 7.19.1
751 CURLOPT_PROXYUSERPWD 7.1
577752 CURLOPT_PUT 7.1
578753 CURLOPT_QUOTE 7.1
579754 CURLOPT_RANDOM_FILE 7.7
588763 CURLOPT_RESOLVER_START_FUNCTION 7.59.0
589764 CURLOPT_RESUME_FROM 7.1
590765 CURLOPT_RESUME_FROM_LARGE 7.11.0
591 CURLOPT_RTSPHEADER 7.20.0
592766 CURLOPT_RTSP_CLIENT_CSEQ 7.20.0
593767 CURLOPT_RTSP_REQUEST 7.20.0
594768 CURLOPT_RTSP_SERVER_CSEQ 7.20.0
595769 CURLOPT_RTSP_SESSION_ID 7.20.0
596770 CURLOPT_RTSP_STREAM_URI 7.20.0
597771 CURLOPT_RTSP_TRANSPORT 7.20.0
772 CURLOPT_RTSPHEADER 7.20.0
598773 CURLOPT_SASL_AUTHZID 7.66.0
599774 CURLOPT_SASL_IR 7.31.0
600775 CURLOPT_SEEKDATA 7.18.0
624799 CURLOPT_SSH_KNOWNHOSTS 7.19.6
625800 CURLOPT_SSH_PRIVATE_KEYFILE 7.16.1
626801 CURLOPT_SSH_PUBLIC_KEYFILE 7.16.1
627 CURLOPT_SSLCERT 7.1
628 CURLOPT_SSLCERTPASSWD 7.1.1 7.17.0
629 CURLOPT_SSLCERTTYPE 7.9.3
630 CURLOPT_SSLCERT_BLOB 7.71.0
631 CURLOPT_SSLENGINE 7.9.3
632 CURLOPT_SSLENGINE_DEFAULT 7.9.3
633 CURLOPT_SSLKEY 7.9.3
634 CURLOPT_SSLKEYPASSWD 7.9.3 7.17.0
635 CURLOPT_SSLKEYTYPE 7.9.3
636 CURLOPT_SSLKEY_BLOB 7.71.0
637 CURLOPT_SSLVERSION 7.1
638802 CURLOPT_SSL_CIPHER_LIST 7.9
639803 CURLOPT_SSL_CTX_DATA 7.10.6
640804 CURLOPT_SSL_CTX_FUNCTION 7.10.6
647811 CURLOPT_SSL_VERIFYHOST 7.8.1
648812 CURLOPT_SSL_VERIFYPEER 7.4.2
649813 CURLOPT_SSL_VERIFYSTATUS 7.41.0
814 CURLOPT_SSLCERT 7.1
815 CURLOPT_SSLCERT_BLOB 7.71.0
816 CURLOPT_SSLCERTPASSWD 7.1.1 7.17.0
817 CURLOPT_SSLCERTTYPE 7.9.3
818 CURLOPT_SSLENGINE 7.9.3
819 CURLOPT_SSLENGINE_DEFAULT 7.9.3
820 CURLOPT_SSLKEY 7.9.3
821 CURLOPT_SSLKEY_BLOB 7.71.0
822 CURLOPT_SSLKEYPASSWD 7.9.3 7.17.0
823 CURLOPT_SSLKEYTYPE 7.9.3
824 CURLOPT_SSLVERSION 7.1
650825 CURLOPT_STDERR 7.1
651826 CURLOPT_STREAM_DEPENDS 7.46.0
652827 CURLOPT_STREAM_DEPENDS_E 7.46.0
671846 CURLOPT_TLSAUTH_USERNAME 7.21.4
672847 CURLOPT_TRAILERDATA 7.64.0
673848 CURLOPT_TRAILERFUNCTION 7.64.0
849 CURLOPT_TRANSFER_ENCODING 7.21.6
674850 CURLOPT_TRANSFERTEXT 7.1.1
675 CURLOPT_TRANSFER_ENCODING 7.21.6
676851 CURLOPT_UNIX_SOCKET_PATH 7.40.0
677852 CURLOPT_UNRESTRICTED_AUTH 7.10.4
678853 CURLOPT_UPKEEP_INTERVAL_MS 7.62.0
679854 CURLOPT_UPLOAD 7.1
680855 CURLOPT_UPLOAD_BUFFERSIZE 7.62.0
681856 CURLOPT_URL 7.1
857 CURLOPT_USE_SSL 7.17.0
682858 CURLOPT_USERAGENT 7.1
683859 CURLOPT_USERNAME 7.19.1
684860 CURLOPT_USERPWD 7.1
685 CURLOPT_USE_SSL 7.17.0
686 CURLOPT_AWS_SIGV4 7.75.0
687861 CURLOPT_VERBOSE 7.1
688862 CURLOPT_WILDCARDMATCH 7.21.0
689863 CURLOPT_WRITEDATA 7.9.7
693867 CURLOPT_XFERINFODATA 7.32.0
694868 CURLOPT_XFERINFOFUNCTION 7.32.0
695869 CURLOPT_XOAUTH2_BEARER 7.33.0
870 CURLOPTTYPE_BLOB 7.71.0
871 CURLOPTTYPE_CBPOINT 7.73.0
872 CURLOPTTYPE_FUNCTIONPOINT 7.1
873 CURLOPTTYPE_LONG 7.1
874 CURLOPTTYPE_OBJECTPOINT 7.1
875 CURLOPTTYPE_OFF_T 7.11.0
876 CURLOPTTYPE_SLISTPOINT 7.65.2
877 CURLOPTTYPE_STRINGPOINT 7.46.0
878 CURLOPTTYPE_VALUES 7.73.0
696879 CURLOT_BLOB 7.73.0
697880 CURLOT_CBPTR 7.73.0
698881 CURLOT_FUNCTION 7.73.0
743926 CURLPROTO_TELNET 7.19.4
744927 CURLPROTO_TFTP 7.19.4
745928 CURLPROXY_HTTP 7.10
929 CURLPROXY_HTTP_1_0 7.19.4
746930 CURLPROXY_HTTPS 7.52.0
747 CURLPROXY_HTTP_1_0 7.19.4
748931 CURLPROXY_SOCKS4 7.10
749932 CURLPROXY_SOCKS4A 7.18.0
750933 CURLPROXY_SOCKS5 7.10
784967 CURLPX_UNKNOWN_MODE 7.73.0
785968 CURLPX_USER_REJECTED 7.73.0
786969 CURLSHE_BAD_OPTION 7.10.3
970 CURLSHE_IN_USE 7.10.3
787971 CURLSHE_INVALID 7.10.3
788 CURLSHE_IN_USE 7.10.3
789972 CURLSHE_NOMEM 7.12.0
790973 CURLSHE_NOT_BUILT_IN 7.23.0
791974 CURLSHE_OK 7.10.3
8201003 CURLSSLBACKEND_NSS 7.34.0
8211004 CURLSSLBACKEND_OPENSSL 7.34.0
8221005 CURLSSLBACKEND_POLARSSL 7.34.0 7.69.0
1006 CURLSSLBACKEND_QSOSSL 7.34.0 - 7.38.0
8231007 CURLSSLBACKEND_RUSTLS 7.76.0
824 CURLSSLBACKEND_QSOSSL 7.34.0 - 7.38.0
8251008 CURLSSLBACKEND_SCHANNEL 7.34.0
8261009 CURLSSLBACKEND_SECURETRANSPORT 7.64.1
8271010 CURLSSLBACKEND_WOLFSSL 7.49.0
8381021 CURLSTS_DONE 7.74.0
8391022 CURLSTS_FAIL 7.74.0
8401023 CURLSTS_OK 7.74.0
1024 CURLU_ALLOW_SPACE 7.78.0
1025 CURLU_APPENDQUERY 7.62.0
1026 CURLU_DEFAULT_PORT 7.62.0
1027 CURLU_DEFAULT_SCHEME 7.62.0
1028 CURLU_DISALLOW_USER 7.62.0
1029 CURLU_GUESS_SCHEME 7.62.0
1030 CURLU_NO_AUTHORITY 7.67.0
1031 CURLU_NO_DEFAULT_PORT 7.62.0
1032 CURLU_NON_SUPPORT_SCHEME 7.62.0
1033 CURLU_PATH_AS_IS 7.62.0
1034 CURLU_URLDECODE 7.62.0
1035 CURLU_URLENCODE 7.62.0
8411036 CURLUE_BAD_FILE_URL 7.81.0
8421037 CURLUE_BAD_FRAGMENT 7.81.0
8431038 CURLUE_BAD_HANDLE 7.62.0
8831078 CURLUSESSL_CONTROL 7.17.0
8841079 CURLUSESSL_NONE 7.17.0
8851080 CURLUSESSL_TRY 7.17.0
886 CURLU_ALLOW_SPACE 7.78.0
887 CURLU_APPENDQUERY 7.62.0
888 CURLU_DEFAULT_PORT 7.62.0
889 CURLU_DEFAULT_SCHEME 7.62.0
890 CURLU_DISALLOW_USER 7.62.0
891 CURLU_GUESS_SCHEME 7.62.0
892 CURLU_NON_SUPPORT_SCHEME 7.62.0
893 CURLU_NO_AUTHORITY 7.67.0
894 CURLU_NO_DEFAULT_PORT 7.62.0
895 CURLU_PATH_AS_IS 7.62.0
896 CURLU_URLDECODE 7.62.0
897 CURLU_URLENCODE 7.62.0
8981081 CURLVERSION_EIGHTH 7.72.0
8991082 CURLVERSION_FIFTH 7.57.0
9001083 CURLVERSION_FIRST 7.10
9061089 CURLVERSION_SIXTH 7.66.0
9071090 CURLVERSION_TENTH 7.77.0
9081091 CURLVERSION_THIRD 7.12.0
909 CURL_CHUNK_BGN_FUNC_FAIL 7.21.0
910 CURL_CHUNK_BGN_FUNC_OK 7.21.0
911 CURL_CHUNK_BGN_FUNC_SKIP 7.21.0
912 CURL_CHUNK_END_FUNC_FAIL 7.21.0
913 CURL_CHUNK_END_FUNC_OK 7.21.0
914 CURL_CSELECT_ERR 7.16.3
915 CURL_CSELECT_IN 7.16.3
916 CURL_CSELECT_OUT 7.16.3
917 CURL_DID_MEMORY_FUNC_TYPEDEFS 7.49.0
918 CURL_EASY_NONE 7.14.0 - 7.15.4
919 CURL_EASY_TIMEOUT 7.14.0 - 7.15.4
920 CURL_ERROR_SIZE 7.1
921 CURL_FNMATCHFUNC_FAIL 7.21.0
922 CURL_FNMATCHFUNC_MATCH 7.21.0
923 CURL_FNMATCHFUNC_NOMATCH 7.21.0
924 CURL_FORMADD_DISABLED 7.12.1 7.56.0
925 CURL_FORMADD_ILLEGAL_ARRAY 7.9.8 7.56.0
926 CURL_FORMADD_INCOMPLETE 7.9.8 7.56.0
927 CURL_FORMADD_MEMORY 7.9.8 7.56.0
928 CURL_FORMADD_NULL 7.9.8 7.56.0
929 CURL_FORMADD_OK 7.9.8 7.56.0
930 CURL_FORMADD_OPTION_TWICE 7.9.8 7.56.0
931 CURL_FORMADD_UNKNOWN_OPTION 7.9.8 7.56.0
932 CURL_GLOBAL_ACK_EINTR 7.30.0
933 CURL_GLOBAL_ALL 7.8
934 CURL_GLOBAL_DEFAULT 7.8
935 CURL_GLOBAL_NOTHING 7.8
936 CURL_GLOBAL_SSL 7.8
937 CURL_GLOBAL_WIN32 7.8.1
938 CURL_HET_DEFAULT 7.59.0
939 CURL_HTTPPOST_BUFFER 7.46.0
940 CURL_HTTPPOST_CALLBACK 7.46.0
941 CURL_HTTPPOST_FILENAME 7.46.0
942 CURL_HTTPPOST_LARGE 7.46.0
943 CURL_HTTPPOST_PTRBUFFER 7.46.0
944 CURL_HTTPPOST_PTRCONTENTS 7.46.0
945 CURL_HTTPPOST_PTRNAME 7.46.0
946 CURL_HTTPPOST_READFILE 7.46.0
947 CURL_HTTP_VERSION_1_0 7.9.1
948 CURL_HTTP_VERSION_1_1 7.9.1
949 CURL_HTTP_VERSION_2 7.43.0
950 CURL_HTTP_VERSION_2TLS 7.47.0
951 CURL_HTTP_VERSION_2_0 7.33.0
952 CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE 7.49.0
953 CURL_HTTP_VERSION_3 7.66.0
954 CURL_HTTP_VERSION_NONE 7.9.1
955 CURL_IPRESOLVE_V4 7.10.8
956 CURL_IPRESOLVE_V6 7.10.8
957 CURL_IPRESOLVE_WHATEVER 7.10.8
958 CURL_LOCK_ACCESS_NONE 7.10.3
959 CURL_LOCK_ACCESS_SHARED 7.10.3
960 CURL_LOCK_ACCESS_SINGLE 7.10.3
961 CURL_LOCK_DATA_CONNECT 7.10.3
962 CURL_LOCK_DATA_COOKIE 7.10.3
963 CURL_LOCK_DATA_DNS 7.10.3
964 CURL_LOCK_DATA_NONE 7.10.3
965 CURL_LOCK_DATA_PSL 7.61.0
966 CURL_LOCK_DATA_SHARE 7.10.4
967 CURL_LOCK_DATA_SSL_SESSION 7.10.3
968 CURL_LOCK_TYPE_CONNECT 7.10 - 7.10.2
969 CURL_LOCK_TYPE_COOKIE 7.10 - 7.10.2
970 CURL_LOCK_TYPE_DNS 7.10 - 7.10.2
971 CURL_LOCK_TYPE_NONE 7.10 - 7.10.2
972 CURL_LOCK_TYPE_SSL_SESSION 7.10 - 7.10.2
973 CURL_MAX_HTTP_HEADER 7.19.7
974 CURL_MAX_READ_SIZE 7.53.0
975 CURL_MAX_WRITE_SIZE 7.9.7
976 CURL_NETRC_IGNORED 7.9.8
977 CURL_NETRC_OPTIONAL 7.9.8
978 CURL_NETRC_REQUIRED 7.9.8
979 CURL_POLL_IN 7.14.0
980 CURL_POLL_INOUT 7.14.0
981 CURL_POLL_NONE 7.14.0
982 CURL_POLL_OUT 7.14.0
983 CURL_POLL_REMOVE 7.14.0
984 CURL_PREREQFUNC_ABORT 7.79.0
985 CURL_PREREQFUNC_OK 7.79.0
986 CURL_PROGRESSFUNC_CONTINUE 7.68.0
987 CURL_PROGRESS_BAR 7.1.1 - 7.4.1
988 CURL_PROGRESS_STATS 7.1.1 - 7.4.1
989 CURL_PUSH_DENY 7.44.0
990 CURL_PUSH_ERROROUT 7.72.0
991 CURL_PUSH_OK 7.44.0
992 CURL_READFUNC_ABORT 7.12.1
993 CURL_READFUNC_PAUSE 7.18.0
994 CURL_REDIR_GET_ALL 7.19.1
995 CURL_REDIR_POST_301 7.19.1
996 CURL_REDIR_POST_302 7.19.1
997 CURL_REDIR_POST_303 7.25.1
998 CURL_REDIR_POST_ALL 7.19.1
999 CURL_RTSPREQ_ANNOUNCE 7.20.0
1000 CURL_RTSPREQ_DESCRIBE 7.20.0
1001 CURL_RTSPREQ_GET_PARAMETER 7.20.0
1002 CURL_RTSPREQ_NONE 7.20.0
1003 CURL_RTSPREQ_OPTIONS 7.20.0
1004 CURL_RTSPREQ_PAUSE 7.20.0
1005 CURL_RTSPREQ_PLAY 7.20.0
1006 CURL_RTSPREQ_RECEIVE 7.20.0
1007 CURL_RTSPREQ_RECORD 7.20.0
1008 CURL_RTSPREQ_SETUP 7.20.0
1009 CURL_RTSPREQ_SET_PARAMETER 7.20.0
1010 CURL_RTSPREQ_TEARDOWN 7.20.0
1011 CURL_SEEKFUNC_CANTSEEK 7.19.5
1012 CURL_SEEKFUNC_FAIL 7.19.5
1013 CURL_SEEKFUNC_OK 7.19.5
1014 CURL_SOCKET_BAD 7.14.0
1015 CURL_SOCKET_TIMEOUT 7.14.0
1016 CURL_SOCKOPT_ALREADY_CONNECTED 7.21.5
1017 CURL_SOCKOPT_ERROR 7.21.5
1018 CURL_SOCKOPT_OK 7.21.5
1019 CURL_SSLVERSION_DEFAULT 7.9.2
1020 CURL_SSLVERSION_MAX_DEFAULT 7.54.0
1021 CURL_SSLVERSION_MAX_NONE 7.54.0
1022 CURL_SSLVERSION_MAX_TLSv1_0 7.54.0
1023 CURL_SSLVERSION_MAX_TLSv1_1 7.54.0
1024 CURL_SSLVERSION_MAX_TLSv1_2 7.54.0
1025 CURL_SSLVERSION_MAX_TLSv1_3 7.54.0
1026 CURL_SSLVERSION_SSLv2 7.9.2
1027 CURL_SSLVERSION_SSLv3 7.9.2
1028 CURL_SSLVERSION_TLSv1 7.9.2
1029 CURL_SSLVERSION_TLSv1_0 7.34.0
1030 CURL_SSLVERSION_TLSv1_1 7.34.0
1031 CURL_SSLVERSION_TLSv1_2 7.34.0
1032 CURL_SSLVERSION_TLSv1_3 7.52.0
1033 CURL_STRICTER 7.50.2
1034 CURL_TIMECOND_IFMODSINCE 7.9.7
1035 CURL_TIMECOND_IFUNMODSINCE 7.9.7
1036 CURL_TIMECOND_LASTMOD 7.9.7
1037 CURL_TIMECOND_NONE 7.9.7
1038 CURL_TLSAUTH_NONE 7.21.4
1039 CURL_TLSAUTH_SRP 7.21.4
1040 CURL_TRAILERFUNC_ABORT 7.64.0
1041 CURL_TRAILERFUNC_OK 7.64.0
1042 CURL_UPKEEP_INTERVAL_DEFAULT 7.62.0
1043 CURL_VERSION_ALTSVC 7.64.1
1044 CURL_VERSION_ASYNCHDNS 7.10.7
1045 CURL_VERSION_BROTLI 7.57.0
1046 CURL_VERSION_CONV 7.15.4
1047 CURL_VERSION_CURLDEBUG 7.19.6
1048 CURL_VERSION_DEBUG 7.10.6
1049 CURL_VERSION_GSASL 7.76.0
1050 CURL_VERSION_GSSAPI 7.38.0
1051 CURL_VERSION_GSSNEGOTIATE 7.10.6 7.38.0
1052 CURL_VERSION_HSTS 7.74.0
1053 CURL_VERSION_HTTP2 7.33.0
1054 CURL_VERSION_HTTP3 7.66.0
1055 CURL_VERSION_HTTPS_PROXY 7.52.0
1056 CURL_VERSION_IDN 7.12.0
1057 CURL_VERSION_IPV6 7.10
1058 CURL_VERSION_KERBEROS4 7.10 7.33.0
1059 CURL_VERSION_KERBEROS5 7.40.0
1060 CURL_VERSION_LARGEFILE 7.11.1
1061 CURL_VERSION_LIBZ 7.10
1062 CURL_VERSION_MULTI_SSL 7.56.0
1063 CURL_VERSION_NTLM 7.10.6
1064 CURL_VERSION_NTLM_WB 7.22.0
1065 CURL_VERSION_PSL 7.47.0
1066 CURL_VERSION_SPNEGO 7.10.8
1067 CURL_VERSION_SSL 7.10
1068 CURL_VERSION_SSPI 7.13.2
1069 CURL_VERSION_TLSAUTH_SRP 7.21.4
1070 CURL_VERSION_UNICODE 7.72.0
1071 CURL_VERSION_UNIX_SOCKETS 7.40.0
1072 CURL_VERSION_ZSTD 7.72.0
1073 CURL_WAIT_POLLIN 7.28.0
1074 CURL_WAIT_POLLOUT 7.28.0
1075 CURL_WAIT_POLLPRI 7.28.0
1076 CURL_WIN32 7.69.0
1077 CURL_WRITEFUNC_PAUSE 7.18.0
1078 CURL_ZERO_TERMINATED 7.56.0
127127 --next (-:) 7.36.0
128128 --no-alpn 7.36.0
129129 --no-buffer (-N) 6.5
130 --no-clobber 7.83.0
130131 --no-keepalive 7.18.0
131132 --no-npn 7.36.0
132133 --no-progress-meter 7.67.0
190191 --remote-name (-O) 4.0
191192 --remote-name-all 7.19.0
192193 --remote-time (-R) 7.9
194 --remove-on-error 7.83.0
193195 --request (-X) 6.0
194196 --request-target 7.55.0
195197 --resolve 7.21.3
247247 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
248248 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
249249 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
250 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
250251 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
251252 CYGPATH_W = @CYGPATH_W@
252253 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
264265 ETAGS = @ETAGS@
265266 EXEEXT = @EXEEXT@
266267 FGREP = @FGREP@
268 FILECMD = @FILECMD@
267269 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
268270 GCOV = @GCOV@
269271 GREP = @GREP@
339341 USE_LIBSSH = @USE_LIBSSH@
340342 USE_LIBSSH2 = @USE_LIBSSH2@
341343 USE_MBEDTLS = @USE_MBEDTLS@
344 USE_MSH3 = @USE_MSH3@
342345 USE_NGHTTP2 = @USE_NGHTTP2@
343346 USE_NGHTTP3 = @USE_NGHTTP3@
344347 USE_NGTCP2 = @USE_NGTCP2@
44 # | (__| |_| | _ <| |___
55 # \___|\___/|_| \_\_____|
66 #
7 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 #
99 # This software is licensed as described in the file COPYING, which
1010 # you should have received as part of this distribution. The terms
2020 ###########################################################################
2121 pkginclude_HEADERS = \
2222 curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \
23 typecheck-gcc.h system.h urlapi.h options.h
23 typecheck-gcc.h system.h urlapi.h options.h header.h
2424
2525 pkgincludedir= $(includedir)/curl
2626
3030 CS_ = $(CS_0)
3131
3232 checksrc:
33 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS)
33 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS)
3434
3535 if CURLDEBUG
3636 # for debug builds, we scan the sources on all regular make invokes
234234 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
235235 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
236236 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
237 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
237238 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
238239 CYGPATH_W = @CYGPATH_W@
239240 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
251252 ETAGS = @ETAGS@
252253 EXEEXT = @EXEEXT@
253254 FGREP = @FGREP@
255 FILECMD = @FILECMD@
254256 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
255257 GCOV = @GCOV@
256258 GREP = @GREP@
326328 USE_LIBSSH = @USE_LIBSSH@
327329 USE_LIBSSH2 = @USE_LIBSSH2@
328330 USE_MBEDTLS = @USE_MBEDTLS@
331 USE_MSH3 = @USE_MSH3@
329332 USE_NGHTTP2 = @USE_NGHTTP2@
330333 USE_NGHTTP3 = @USE_NGHTTP3@
331334 USE_NGTCP2 = @USE_NGTCP2@
410413 # | (__| |_| | _ <| |___
411414 # \___|\___/|_| \_\_____|
412415 #
413 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
416 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
414417 #
415418 # This software is licensed as described in the file COPYING, which
416419 # you should have received as part of this distribution. The terms
426429 ###########################################################################
427430 pkginclude_HEADERS = \
428431 curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \
429 typecheck-gcc.h system.h urlapi.h options.h
432 typecheck-gcc.h system.h urlapi.h options.h header.h
430433
431434 CHECKSRC = $(CS_$(V))
432435 CS_0 = @echo " RUN " $@;
700703
701704
702705 checksrc:
703 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS)
706 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS)
704707
705708 # for debug builds, we scan the sources on all regular make invokes
706709 @CURLDEBUG_TRUE@all-local: checksrc
20482048 * (in seconds) */
20492049 CURLOPT(CURLOPT_MAXAGE_CONN, CURLOPTTYPE_LONG, 288),
20502050
2051 /* SASL authorisation identity */
2051 /* SASL authorization identity */
20522052 CURLOPT(CURLOPT_SASL_AUTHZID, CURLOPTTYPE_STRINGPOINT, 289),
20532053
20542054 /* allow RCPT TO command to fail for some recipients */
30683068 #include "multi.h"
30693069 #include "urlapi.h"
30703070 #include "options.h"
3071 #include "header.h"
30713072
30723073 /* the typechecker doesn't work in C++ (yet) */
30733074 #if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
2929
3030 /* This is the version number of the libcurl package from which this header
3131 file origins: */
32 #define LIBCURL_VERSION "7.82.0"
32 #define LIBCURL_VERSION "7.83.0"
3333
3434 /* The numeric version number is also available "in parts" by using these
3535 defines: */
3636 #define LIBCURL_VERSION_MAJOR 7
37 #define LIBCURL_VERSION_MINOR 82
37 #define LIBCURL_VERSION_MINOR 83
3838 #define LIBCURL_VERSION_PATCH 0
3939
4040 /* This is the numeric version of the libcurl version number, meant for easier
5656 CURL_VERSION_BITS() macro since curl's own configure script greps for it
5757 and needs it to contain the full number.
5858 */
59 #define LIBCURL_VERSION_NUM 0x075200
59 #define LIBCURL_VERSION_NUM 0x075300
6060
6161 /*
6262 * This is the date and time when the full source package was created. The
6767 *
6868 * "2007-11-23"
6969 */
70 #define LIBCURL_TIMESTAMP "2022-03-05"
70 #define LIBCURL_TIMESTAMP "2022-04-27"
7171
7272 #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
7373 #define CURL_AT_LEAST_VERSION(x,y,z) \
0 #ifndef CURLINC_HEADER_H
1 #define CURLINC_HEADER_H
2 /***************************************************************************
3 * _ _ ____ _
4 * Project ___| | | | _ \| |
5 * / __| | | | |_) | |
6 * | (__| |_| | _ <| |___
7 * \___|\___/|_| \_\_____|
8 *
9 * Copyright (C) 2018 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
10 *
11 * This software is licensed as described in the file COPYING, which
12 * you should have received as part of this distribution. The terms
13 * are also available at https://curl.se/docs/copyright.html.
14 *
15 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 * copies of the Software, and permit persons to whom the Software is
17 * furnished to do so, under the terms of the COPYING file.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ***************************************************************************/
23
24 struct curl_header {
25 char *name; /* this might not use the same case */
26 char *value;
27 size_t amount; /* number of headers using this name */
28 size_t index; /* ... of this instance, 0 or higher */
29 unsigned int origin; /* see bits below */
30 void *anchor; /* handle privately used by libcurl */
31 };
32
33 /* 'origin' bits */
34 #define CURLH_HEADER (1<<0) /* plain server header */
35 #define CURLH_TRAILER (1<<1) /* trailers */
36 #define CURLH_CONNECT (1<<2) /* CONNECT headers */
37 #define CURLH_1XX (1<<3) /* 1xx headers */
38 #define CURLH_PSEUDO (1<<4) /* pseudo headers */
39
40 typedef enum {
41 CURLHE_OK,
42 CURLHE_BADINDEX, /* header exists but not with this index */
43 CURLHE_MISSING, /* no such header exists */
44 CURLHE_NOHEADERS, /* no headers at all exist (yet) */
45 CURLHE_NOREQUEST, /* no request with this number was used */
46 CURLHE_OUT_OF_MEMORY, /* out of memory while processing */
47 CURLHE_BAD_ARGUMENT, /* a function argument was not okay */
48 CURLHE_NOT_BUILT_IN /* if API was disabled in the build */
49 } CURLHcode;
50
51 CURL_EXTERN CURLHcode curl_easy_header(CURL *easy,
52 const char *name,
53 size_t index,
54 unsigned int origin,
55 int request,
56 struct curl_header **hout);
57
58 CURL_EXTERN struct curl_header *curl_easy_nextheader(CURL *easy,
59 unsigned int origin,
60 int request,
61 struct curl_header *prev);
62
63 #endif /* CURLINC_HEADER_H */
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 2018 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 2018 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
5656 curl_easy_option_by_name(const char *name);
5757
5858 CURL_EXTERN const struct curl_easyoption *
59 curl_easy_option_by_id (CURLoption id);
59 curl_easy_option_by_id(CURLoption id);
6060
6161 CURL_EXTERN const struct curl_easyoption *
6262 curl_easy_option_next(const struct curl_easyoption *prev);
120120 # define CURL_TYPEOF_CURL_SOCKLEN_T int
121121
122122 #elif defined(__LCC__)
123 # if defined(__e2k__) /* MCST eLbrus C Compiler */
123 # if defined(__MCST__) /* MCST eLbrus Compiler Collection */
124124 # define CURL_TYPEOF_CURL_OFF_T long
125125 # define CURL_FORMAT_CURL_OFF_T "ld"
126126 # define CURL_FORMAT_CURL_OFF_TU "lu"
2222
2323 CMAKE_DIST = CMakeLists.txt curl_config.h.cmake
2424
25 EXTRA_DIST = Makefile.m32 config-win32.h config-win32ce.h config-plan9.h \
26 config-riscos.h config-mac.h curl_config.h.in makefile.dj config-dos.h \
27 libcurl.plist libcurl.rc config-amigaos.h makefile.amiga config-win32ce.h \
28 config-os400.h setup-os400.h mk-ca-bundle.pl mk-ca-bundle.vbs \
29 $(CMAKE_DIST) firefox-db2pem.sh checksrc.pl setup-win32.h .checksrc
25 EXTRA_DIST = Makefile.m32 config-win32.h config-win32ce.h config-plan9.h \
26 config-riscos.h config-mac.h curl_config.h.in makefile.dj config-dos.h \
27 libcurl.plist libcurl.rc config-amigaos.h makefile.amiga config-win32ce.h \
28 config-os400.h setup-os400.h $(CMAKE_DIST) setup-win32.h .checksrc
3029
3130 lib_LTLIBRARIES = libcurl.la
3231
5554 # Prevent LIBS from being used for all link targets
5655 LIBS = $(BLANK_AT_MAKETIME)
5756
58 VERSIONINFO=-version-info 11:0:7
57 VERSIONINFO=-version-info 12:0:8
5958 # This flag accepts an argument of the form current[:revision[:age]]. So,
6059 # passing -version-info 3:12:1 sets current to 3, revision to 12, and age to
6160 # 1.
127126 CS_ = $(CS_0)
128127
129128 checksrc:
130 $(CHECKSRC)(@PERL@ $(srcdir)/checksrc.pl -D$(srcdir) -W$(srcdir)/curl_config.h \
131 $(srcdir)/*.[ch] $(srcdir)/vauth/*.[ch] $(srcdir)/vtls/*.[ch] $(srcdir)/vquic/*.[ch] $(srcdir)/vssh/*.[ch])
129 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) \
130 -W$(srcdir)/curl_config.h $(srcdir)/*.[ch] $(srcdir)/vauth/*.[ch] \
131 $(srcdir)/vtls/*.[ch] $(srcdir)/vquic/*.[ch] $(srcdir)/vssh/*.[ch])
132132
133133 if CURLDEBUG
134134 # for debug builds, we scan the sources on all regular make invokes
152152 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
153153 mkinstalldirs = $(install_sh) -d
154154 CONFIG_HEADER = curl_config.h
155 CONFIG_CLEAN_FILES = libcurl.vers
155 CONFIG_CLEAN_FILES = libcurl.vers libcurl.plist
156156 CONFIG_CLEAN_VPATH_FILES =
157157 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
158158 am__vpath_adj = case $$p in \
206206 libcurl_la-formdata.lo libcurl_la-ftp.lo \
207207 libcurl_la-ftplistparser.lo libcurl_la-getenv.lo \
208208 libcurl_la-getinfo.lo libcurl_la-gopher.lo libcurl_la-h2h3.lo \
209 libcurl_la-hash.lo libcurl_la-hmac.lo libcurl_la-hostasyn.lo \
210 libcurl_la-hostip.lo libcurl_la-hostip4.lo \
211 libcurl_la-hostip6.lo libcurl_la-hostsyn.lo libcurl_la-hsts.lo \
212 libcurl_la-http.lo libcurl_la-http2.lo \
213 libcurl_la-http_chunks.lo libcurl_la-http_digest.lo \
214 libcurl_la-http_negotiate.lo libcurl_la-http_ntlm.lo \
215 libcurl_la-http_proxy.lo libcurl_la-http_aws_sigv4.lo \
216 libcurl_la-idn_win32.lo libcurl_la-if2ip.lo libcurl_la-imap.lo \
217 libcurl_la-inet_ntop.lo libcurl_la-inet_pton.lo \
218 libcurl_la-krb5.lo libcurl_la-ldap.lo libcurl_la-llist.lo \
219 libcurl_la-md4.lo libcurl_la-md5.lo libcurl_la-memdebug.lo \
220 libcurl_la-mime.lo libcurl_la-mprintf.lo libcurl_la-mqtt.lo \
221 libcurl_la-multi.lo libcurl_la-netrc.lo libcurl_la-nonblock.lo \
209 libcurl_la-hash.lo libcurl_la-headers.lo libcurl_la-hmac.lo \
210 libcurl_la-hostasyn.lo libcurl_la-hostip.lo \
211 libcurl_la-hostip4.lo libcurl_la-hostip6.lo \
212 libcurl_la-hostsyn.lo libcurl_la-hsts.lo libcurl_la-http.lo \
213 libcurl_la-http2.lo libcurl_la-http_chunks.lo \
214 libcurl_la-http_digest.lo libcurl_la-http_negotiate.lo \
215 libcurl_la-http_ntlm.lo libcurl_la-http_proxy.lo \
216 libcurl_la-http_aws_sigv4.lo libcurl_la-idn_win32.lo \
217 libcurl_la-if2ip.lo libcurl_la-imap.lo libcurl_la-inet_ntop.lo \
218 libcurl_la-inet_pton.lo libcurl_la-krb5.lo libcurl_la-ldap.lo \
219 libcurl_la-llist.lo libcurl_la-md4.lo libcurl_la-md5.lo \
220 libcurl_la-memdebug.lo libcurl_la-mime.lo \
221 libcurl_la-mprintf.lo libcurl_la-mqtt.lo libcurl_la-multi.lo \
222 libcurl_la-netrc.lo libcurl_la-nonblock.lo \
222223 libcurl_la-openldap.lo libcurl_la-parsedate.lo \
223224 libcurl_la-pingpong.lo libcurl_la-pop3.lo \
224225 libcurl_la-progress.lo libcurl_la-psl.lo libcurl_la-rand.lo \
231232 libcurl_la-splay.lo libcurl_la-strcase.lo libcurl_la-strdup.lo \
232233 libcurl_la-strerror.lo libcurl_la-strtok.lo \
233234 libcurl_la-strtoofft.lo libcurl_la-system_win32.lo \
234 libcurl_la-telnet.lo libcurl_la-tftp.lo libcurl_la-timeval.lo \
235 libcurl_la-transfer.lo libcurl_la-url.lo libcurl_la-urlapi.lo \
236 libcurl_la-version.lo libcurl_la-version_win32.lo \
237 libcurl_la-warnless.lo libcurl_la-wildcard.lo
235 libcurl_la-telnet.lo libcurl_la-tftp.lo libcurl_la-timediff.lo \
236 libcurl_la-timeval.lo libcurl_la-transfer.lo libcurl_la-url.lo \
237 libcurl_la-urlapi.lo libcurl_la-version.lo \
238 libcurl_la-version_win32.lo libcurl_la-warnless.lo \
239 libcurl_la-wildcard.lo
238240 am__dirstamp = $(am__leading_dot)dirstamp
239241 am__objects_2 = vauth/libcurl_la-cleartext.lo vauth/libcurl_la-cram.lo \
240242 vauth/libcurl_la-digest.lo vauth/libcurl_la-digest_sspi.lo \
251253 vtls/libcurl_la-schannel.lo vtls/libcurl_la-schannel_verify.lo \
252254 vtls/libcurl_la-sectransp.lo vtls/libcurl_la-vtls.lo \
253255 vtls/libcurl_la-wolfssl.lo vtls/libcurl_la-x509asn1.lo
254 am__objects_4 = vquic/libcurl_la-ngtcp2.lo vquic/libcurl_la-quiche.lo \
255 vquic/libcurl_la-vquic.lo
256 am__objects_4 = vquic/libcurl_la-msh3.lo vquic/libcurl_la-ngtcp2.lo \
257 vquic/libcurl_la-quiche.lo vquic/libcurl_la-vquic.lo
256258 am__objects_5 = vssh/libcurl_la-libssh.lo vssh/libcurl_la-libssh2.lo \
257259 vssh/libcurl_la-wolfssh.lo
258260 am__objects_6 = $(am__objects_1) $(am__objects_2) $(am__objects_3) \
292294 libcurlu_la-formdata.lo libcurlu_la-ftp.lo \
293295 libcurlu_la-ftplistparser.lo libcurlu_la-getenv.lo \
294296 libcurlu_la-getinfo.lo libcurlu_la-gopher.lo \
295 libcurlu_la-h2h3.lo libcurlu_la-hash.lo libcurlu_la-hmac.lo \
296 libcurlu_la-hostasyn.lo libcurlu_la-hostip.lo \
297 libcurlu_la-hostip4.lo libcurlu_la-hostip6.lo \
298 libcurlu_la-hostsyn.lo libcurlu_la-hsts.lo libcurlu_la-http.lo \
299 libcurlu_la-http2.lo libcurlu_la-http_chunks.lo \
300 libcurlu_la-http_digest.lo libcurlu_la-http_negotiate.lo \
301 libcurlu_la-http_ntlm.lo libcurlu_la-http_proxy.lo \
302 libcurlu_la-http_aws_sigv4.lo libcurlu_la-idn_win32.lo \
303 libcurlu_la-if2ip.lo libcurlu_la-imap.lo \
304 libcurlu_la-inet_ntop.lo libcurlu_la-inet_pton.lo \
305 libcurlu_la-krb5.lo libcurlu_la-ldap.lo libcurlu_la-llist.lo \
306 libcurlu_la-md4.lo libcurlu_la-md5.lo libcurlu_la-memdebug.lo \
307 libcurlu_la-mime.lo libcurlu_la-mprintf.lo libcurlu_la-mqtt.lo \
297 libcurlu_la-h2h3.lo libcurlu_la-hash.lo libcurlu_la-headers.lo \
298 libcurlu_la-hmac.lo libcurlu_la-hostasyn.lo \
299 libcurlu_la-hostip.lo libcurlu_la-hostip4.lo \
300 libcurlu_la-hostip6.lo libcurlu_la-hostsyn.lo \
301 libcurlu_la-hsts.lo libcurlu_la-http.lo libcurlu_la-http2.lo \
302 libcurlu_la-http_chunks.lo libcurlu_la-http_digest.lo \
303 libcurlu_la-http_negotiate.lo libcurlu_la-http_ntlm.lo \
304 libcurlu_la-http_proxy.lo libcurlu_la-http_aws_sigv4.lo \
305 libcurlu_la-idn_win32.lo libcurlu_la-if2ip.lo \
306 libcurlu_la-imap.lo libcurlu_la-inet_ntop.lo \
307 libcurlu_la-inet_pton.lo libcurlu_la-krb5.lo \
308 libcurlu_la-ldap.lo libcurlu_la-llist.lo libcurlu_la-md4.lo \
309 libcurlu_la-md5.lo libcurlu_la-memdebug.lo libcurlu_la-mime.lo \
310 libcurlu_la-mprintf.lo libcurlu_la-mqtt.lo \
308311 libcurlu_la-multi.lo libcurlu_la-netrc.lo \
309312 libcurlu_la-nonblock.lo libcurlu_la-openldap.lo \
310313 libcurlu_la-parsedate.lo libcurlu_la-pingpong.lo \
320323 libcurlu_la-strdup.lo libcurlu_la-strerror.lo \
321324 libcurlu_la-strtok.lo libcurlu_la-strtoofft.lo \
322325 libcurlu_la-system_win32.lo libcurlu_la-telnet.lo \
323 libcurlu_la-tftp.lo libcurlu_la-timeval.lo \
324 libcurlu_la-transfer.lo libcurlu_la-url.lo \
325 libcurlu_la-urlapi.lo libcurlu_la-version.lo \
326 libcurlu_la-version_win32.lo libcurlu_la-warnless.lo \
327 libcurlu_la-wildcard.lo
326 libcurlu_la-tftp.lo libcurlu_la-timediff.lo \
327 libcurlu_la-timeval.lo libcurlu_la-transfer.lo \
328 libcurlu_la-url.lo libcurlu_la-urlapi.lo \
329 libcurlu_la-version.lo libcurlu_la-version_win32.lo \
330 libcurlu_la-warnless.lo libcurlu_la-wildcard.lo
328331 am__objects_10 = vauth/libcurlu_la-cleartext.lo \
329332 vauth/libcurlu_la-cram.lo vauth/libcurlu_la-digest.lo \
330333 vauth/libcurlu_la-digest_sspi.lo vauth/libcurlu_la-gsasl.lo \
342345 vtls/libcurlu_la-schannel_verify.lo \
343346 vtls/libcurlu_la-sectransp.lo vtls/libcurlu_la-vtls.lo \
344347 vtls/libcurlu_la-wolfssl.lo vtls/libcurlu_la-x509asn1.lo
345 am__objects_12 = vquic/libcurlu_la-ngtcp2.lo \
348 am__objects_12 = vquic/libcurlu_la-msh3.lo vquic/libcurlu_la-ngtcp2.lo \
346349 vquic/libcurlu_la-quiche.lo vquic/libcurlu_la-vquic.lo
347350 am__objects_13 = vssh/libcurlu_la-libssh.lo \
348351 vssh/libcurlu_la-libssh2.lo vssh/libcurlu_la-wolfssh.lo
415418 ./$(DEPDIR)/libcurl_la-gopher.Plo \
416419 ./$(DEPDIR)/libcurl_la-h2h3.Plo \
417420 ./$(DEPDIR)/libcurl_la-hash.Plo \
421 ./$(DEPDIR)/libcurl_la-headers.Plo \
418422 ./$(DEPDIR)/libcurl_la-hmac.Plo \
419423 ./$(DEPDIR)/libcurl_la-hostasyn.Plo \
420424 ./$(DEPDIR)/libcurl_la-hostip.Plo \
475479 ./$(DEPDIR)/libcurl_la-system_win32.Plo \
476480 ./$(DEPDIR)/libcurl_la-telnet.Plo \
477481 ./$(DEPDIR)/libcurl_la-tftp.Plo \
482 ./$(DEPDIR)/libcurl_la-timediff.Plo \
478483 ./$(DEPDIR)/libcurl_la-timeval.Plo \
479484 ./$(DEPDIR)/libcurl_la-transfer.Plo \
480485 ./$(DEPDIR)/libcurl_la-url.Plo \
530535 ./$(DEPDIR)/libcurlu_la-gopher.Plo \
531536 ./$(DEPDIR)/libcurlu_la-h2h3.Plo \
532537 ./$(DEPDIR)/libcurlu_la-hash.Plo \
538 ./$(DEPDIR)/libcurlu_la-headers.Plo \
533539 ./$(DEPDIR)/libcurlu_la-hmac.Plo \
534540 ./$(DEPDIR)/libcurlu_la-hostasyn.Plo \
535541 ./$(DEPDIR)/libcurlu_la-hostip.Plo \
593599 ./$(DEPDIR)/libcurlu_la-system_win32.Plo \
594600 ./$(DEPDIR)/libcurlu_la-telnet.Plo \
595601 ./$(DEPDIR)/libcurlu_la-tftp.Plo \
602 ./$(DEPDIR)/libcurlu_la-timediff.Plo \
596603 ./$(DEPDIR)/libcurlu_la-timeval.Plo \
597604 ./$(DEPDIR)/libcurlu_la-transfer.Plo \
598605 ./$(DEPDIR)/libcurlu_la-url.Plo \
627634 vauth/$(DEPDIR)/libcurlu_la-spnego_gssapi.Plo \
628635 vauth/$(DEPDIR)/libcurlu_la-spnego_sspi.Plo \
629636 vauth/$(DEPDIR)/libcurlu_la-vauth.Plo \
637 vquic/$(DEPDIR)/libcurl_la-msh3.Plo \
630638 vquic/$(DEPDIR)/libcurl_la-ngtcp2.Plo \
631639 vquic/$(DEPDIR)/libcurl_la-quiche.Plo \
632640 vquic/$(DEPDIR)/libcurl_la-vquic.Plo \
641 vquic/$(DEPDIR)/libcurlu_la-msh3.Plo \
633642 vquic/$(DEPDIR)/libcurlu_la-ngtcp2.Plo \
634643 vquic/$(DEPDIR)/libcurlu_la-quiche.Plo \
635644 vquic/$(DEPDIR)/libcurlu_la-vquic.Plo \
716725 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
717726 done | $(am__uniquify_input)`
718727 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.inc \
719 $(srcdir)/curl_config.h.in $(srcdir)/libcurl.vers.in \
720 $(top_srcdir)/depcomp
728 $(srcdir)/curl_config.h.in $(srcdir)/libcurl.plist.in \
729 $(srcdir)/libcurl.vers.in $(top_srcdir)/depcomp
721730 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
722731 ACLOCAL = @ACLOCAL@
723732 AMTAR = @AMTAR@
764773 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
765774 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
766775 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
776 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
767777 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
768778 CYGPATH_W = @CYGPATH_W@
769779 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
781791 ETAGS = @ETAGS@
782792 EXEEXT = @EXEEXT@
783793 FGREP = @FGREP@
794 FILECMD = @FILECMD@
784795 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
785796 GCOV = @GCOV@
786797 GREP = @GREP@
858869 USE_LIBSSH = @USE_LIBSSH@
859870 USE_LIBSSH2 = @USE_LIBSSH2@
860871 USE_MBEDTLS = @USE_MBEDTLS@
872 USE_MSH3 = @USE_MSH3@
861873 USE_NGHTTP2 = @USE_NGHTTP2@
862874 USE_NGHTTP3 = @USE_NGHTTP3@
863875 USE_NGTCP2 = @USE_NGTCP2@
958970 ###########################################################################
959971 AUTOMAKE_OPTIONS = foreign nostdinc
960972 CMAKE_DIST = CMakeLists.txt curl_config.h.cmake
961 EXTRA_DIST = Makefile.m32 config-win32.h config-win32ce.h config-plan9.h \
962 config-riscos.h config-mac.h curl_config.h.in makefile.dj config-dos.h \
963 libcurl.plist libcurl.rc config-amigaos.h makefile.amiga config-win32ce.h \
964 config-os400.h setup-os400.h mk-ca-bundle.pl mk-ca-bundle.vbs \
965 $(CMAKE_DIST) firefox-db2pem.sh checksrc.pl setup-win32.h .checksrc
973 EXTRA_DIST = Makefile.m32 config-win32.h config-win32ce.h config-plan9.h \
974 config-riscos.h config-mac.h curl_config.h.in makefile.dj config-dos.h \
975 libcurl.plist libcurl.rc config-amigaos.h makefile.amiga config-win32ce.h \
976 config-os400.h setup-os400.h $(CMAKE_DIST) setup-win32.h .checksrc
966977
967978 lib_LTLIBRARIES = libcurl.la
968979 @BUILD_UNITTESTS_FALSE@noinst_LTLIBRARIES =
9901001 # For the full guide on libcurl ABI rules, see docs/libcurl/ABI
9911002 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/lib \
9921003 -I$(top_srcdir)/lib -DBUILDING_LIBCURL
993 VERSIONINFO = -version-info 11:0:7
1004 VERSIONINFO = -version-info 12:0:8
9941005 AM_LDFLAGS =
9951006 AM_CFLAGS =
9961007 libcurl_la_CPPFLAGS_EXTRA = $(am__append_6) $(am__append_7)
10591070 vtls/x509asn1.h
10601071
10611072 LIB_VQUIC_CFILES = \
1073 vquic/msh3.c \
10621074 vquic/ngtcp2.c \
10631075 vquic/quiche.c \
10641076 vquic/vquic.c
10651077
10661078 LIB_VQUIC_HFILES = \
1079 vquic/msh3.h \
10671080 vquic/ngtcp2.h \
10681081 vquic/quiche.h \
10691082 vquic/vquic.h
11241137 gopher.c \
11251138 h2h3.c \
11261139 hash.c \
1140 headers.c \
11271141 hmac.c \
11281142 hostasyn.c \
11291143 hostip.c \
11871201 system_win32.c \
11881202 telnet.c \
11891203 tftp.c \
1204 timediff.c \
11901205 timeval.c \
11911206 transfer.c \
11921207 url.c \
12531268 gopher.h \
12541269 h2h3.h \
12551270 hash.h \
1271 headers.h \
12561272 hostip.h \
12571273 hsts.h \
12581274 http.h \
13061322 system_win32.h \
13071323 telnet.h \
13081324 tftp.h \
1325 timediff.h \
13091326 timeval.h \
13101327 transfer.h \
13111328 url.h \
13851402 distclean-hdr:
13861403 -rm -f curl_config.h stamp-h1
13871404 libcurl.vers: $(top_builddir)/config.status $(srcdir)/libcurl.vers.in
1405 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
1406 libcurl.plist: $(top_builddir)/config.status $(srcdir)/libcurl.plist.in
13881407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
13891408
13901409 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
15081527 vquic/$(DEPDIR)/$(am__dirstamp):
15091528 @$(MKDIR_P) vquic/$(DEPDIR)
15101529 @: > vquic/$(DEPDIR)/$(am__dirstamp)
1530 vquic/libcurl_la-msh3.lo: vquic/$(am__dirstamp) \
1531 vquic/$(DEPDIR)/$(am__dirstamp)
15111532 vquic/libcurl_la-ngtcp2.lo: vquic/$(am__dirstamp) \
15121533 vquic/$(DEPDIR)/$(am__dirstamp)
15131534 vquic/libcurl_la-quiche.lo: vquic/$(am__dirstamp) \
15871608 vtls/$(DEPDIR)/$(am__dirstamp)
15881609 vtls/libcurlu_la-x509asn1.lo: vtls/$(am__dirstamp) \
15891610 vtls/$(DEPDIR)/$(am__dirstamp)
1611 vquic/libcurlu_la-msh3.lo: vquic/$(am__dirstamp) \
1612 vquic/$(DEPDIR)/$(am__dirstamp)
15901613 vquic/libcurlu_la-ngtcp2.lo: vquic/$(am__dirstamp) \
15911614 vquic/$(DEPDIR)/$(am__dirstamp)
15921615 vquic/libcurlu_la-quiche.lo: vquic/$(am__dirstamp) \
16641687 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-gopher.Plo@am__quote@ # am--include-marker
16651688 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-h2h3.Plo@am__quote@ # am--include-marker
16661689 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-hash.Plo@am__quote@ # am--include-marker
1690 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-headers.Plo@am__quote@ # am--include-marker
16671691 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-hmac.Plo@am__quote@ # am--include-marker
16681692 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-hostasyn.Plo@am__quote@ # am--include-marker
16691693 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-hostip.Plo@am__quote@ # am--include-marker
17271751 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-system_win32.Plo@am__quote@ # am--include-marker
17281752 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-telnet.Plo@am__quote@ # am--include-marker
17291753 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-tftp.Plo@am__quote@ # am--include-marker
1754 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-timediff.Plo@am__quote@ # am--include-marker
17301755 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-timeval.Plo@am__quote@ # am--include-marker
17311756 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-transfer.Plo@am__quote@ # am--include-marker
17321757 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurl_la-url.Plo@am__quote@ # am--include-marker
17821807 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-gopher.Plo@am__quote@ # am--include-marker
17831808 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-h2h3.Plo@am__quote@ # am--include-marker
17841809 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-hash.Plo@am__quote@ # am--include-marker
1810 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-headers.Plo@am__quote@ # am--include-marker
17851811 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-hmac.Plo@am__quote@ # am--include-marker
17861812 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-hostasyn.Plo@am__quote@ # am--include-marker
17871813 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-hostip.Plo@am__quote@ # am--include-marker
18451871 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-system_win32.Plo@am__quote@ # am--include-marker
18461872 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-telnet.Plo@am__quote@ # am--include-marker
18471873 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-tftp.Plo@am__quote@ # am--include-marker
1874 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-timediff.Plo@am__quote@ # am--include-marker
18481875 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-timeval.Plo@am__quote@ # am--include-marker
18491876 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-transfer.Plo@am__quote@ # am--include-marker
18501877 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurlu_la-url.Plo@am__quote@ # am--include-marker
18791906 @AMDEP_TRUE@@am__include@ @am__quote@vauth/$(DEPDIR)/libcurlu_la-spnego_gssapi.Plo@am__quote@ # am--include-marker
18801907 @AMDEP_TRUE@@am__include@ @am__quote@vauth/$(DEPDIR)/libcurlu_la-spnego_sspi.Plo@am__quote@ # am--include-marker
18811908 @AMDEP_TRUE@@am__include@ @am__quote@vauth/$(DEPDIR)/libcurlu_la-vauth.Plo@am__quote@ # am--include-marker
1909 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurl_la-msh3.Plo@am__quote@ # am--include-marker
18821910 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurl_la-ngtcp2.Plo@am__quote@ # am--include-marker
18831911 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurl_la-quiche.Plo@am__quote@ # am--include-marker
18841912 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurl_la-vquic.Plo@am__quote@ # am--include-marker
1913 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurlu_la-msh3.Plo@am__quote@ # am--include-marker
18851914 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurlu_la-ngtcp2.Plo@am__quote@ # am--include-marker
18861915 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurlu_la-quiche.Plo@am__quote@ # am--include-marker
18871916 @AMDEP_TRUE@@am__include@ @am__quote@vquic/$(DEPDIR)/libcurlu_la-vquic.Plo@am__quote@ # am--include-marker
22832312 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
22842313 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o libcurl_la-hash.lo `test -f 'hash.c' || echo '$(srcdir)/'`hash.c
22852314
2315 libcurl_la-headers.lo: headers.c
2316 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT libcurl_la-headers.lo -MD -MP -MF $(DEPDIR)/libcurl_la-headers.Tpo -c -o libcurl_la-headers.lo `test -f 'headers.c' || echo '$(srcdir)/'`headers.c
2317 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurl_la-headers.Tpo $(DEPDIR)/libcurl_la-headers.Plo
2318 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='headers.c' object='libcurl_la-headers.lo' libtool=yes @AMDEPBACKSLASH@
2319 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2320 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o libcurl_la-headers.lo `test -f 'headers.c' || echo '$(srcdir)/'`headers.c
2321
22862322 libcurl_la-hmac.lo: hmac.c
22872323 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT libcurl_la-hmac.lo -MD -MP -MF $(DEPDIR)/libcurl_la-hmac.Tpo -c -o libcurl_la-hmac.lo `test -f 'hmac.c' || echo '$(srcdir)/'`hmac.c
22882324 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurl_la-hmac.Tpo $(DEPDIR)/libcurl_la-hmac.Plo
27242760 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
27252761 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o libcurl_la-tftp.lo `test -f 'tftp.c' || echo '$(srcdir)/'`tftp.c
27262762
2763 libcurl_la-timediff.lo: timediff.c
2764 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT libcurl_la-timediff.lo -MD -MP -MF $(DEPDIR)/libcurl_la-timediff.Tpo -c -o libcurl_la-timediff.lo `test -f 'timediff.c' || echo '$(srcdir)/'`timediff.c
2765 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurl_la-timediff.Tpo $(DEPDIR)/libcurl_la-timediff.Plo
2766 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timediff.c' object='libcurl_la-timediff.lo' libtool=yes @AMDEPBACKSLASH@
2767 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2768 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o libcurl_la-timediff.lo `test -f 'timediff.c' || echo '$(srcdir)/'`timediff.c
2769
27272770 libcurl_la-timeval.lo: timeval.c
27282771 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT libcurl_la-timeval.lo -MD -MP -MF $(DEPDIR)/libcurl_la-timeval.Tpo -c -o libcurl_la-timeval.lo `test -f 'timeval.c' || echo '$(srcdir)/'`timeval.c
27292772 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurl_la-timeval.Tpo $(DEPDIR)/libcurl_la-timeval.Plo
29833026 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
29843027 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o vtls/libcurl_la-x509asn1.lo `test -f 'vtls/x509asn1.c' || echo '$(srcdir)/'`vtls/x509asn1.c
29853028
3029 vquic/libcurl_la-msh3.lo: vquic/msh3.c
3030 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT vquic/libcurl_la-msh3.lo -MD -MP -MF vquic/$(DEPDIR)/libcurl_la-msh3.Tpo -c -o vquic/libcurl_la-msh3.lo `test -f 'vquic/msh3.c' || echo '$(srcdir)/'`vquic/msh3.c
3031 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) vquic/$(DEPDIR)/libcurl_la-msh3.Tpo vquic/$(DEPDIR)/libcurl_la-msh3.Plo
3032 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vquic/msh3.c' object='vquic/libcurl_la-msh3.lo' libtool=yes @AMDEPBACKSLASH@
3033 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3034 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -c -o vquic/libcurl_la-msh3.lo `test -f 'vquic/msh3.c' || echo '$(srcdir)/'`vquic/msh3.c
3035
29863036 vquic/libcurl_la-ngtcp2.lo: vquic/ngtcp2.c
29873037 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurl_la_CPPFLAGS) $(CPPFLAGS) $(libcurl_la_CFLAGS) $(CFLAGS) -MT vquic/libcurl_la-ngtcp2.lo -MD -MP -MF vquic/$(DEPDIR)/libcurl_la-ngtcp2.Tpo -c -o vquic/libcurl_la-ngtcp2.lo `test -f 'vquic/ngtcp2.c' || echo '$(srcdir)/'`vquic/ngtcp2.c
29883038 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) vquic/$(DEPDIR)/libcurl_la-ngtcp2.Tpo vquic/$(DEPDIR)/libcurl_la-ngtcp2.Plo
33543404 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
33553405 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o libcurlu_la-hash.lo `test -f 'hash.c' || echo '$(srcdir)/'`hash.c
33563406
3407 libcurlu_la-headers.lo: headers.c
3408 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT libcurlu_la-headers.lo -MD -MP -MF $(DEPDIR)/libcurlu_la-headers.Tpo -c -o libcurlu_la-headers.lo `test -f 'headers.c' || echo '$(srcdir)/'`headers.c
3409 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurlu_la-headers.Tpo $(DEPDIR)/libcurlu_la-headers.Plo
3410 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='headers.c' object='libcurlu_la-headers.lo' libtool=yes @AMDEPBACKSLASH@
3411 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3412 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o libcurlu_la-headers.lo `test -f 'headers.c' || echo '$(srcdir)/'`headers.c
3413
33573414 libcurlu_la-hmac.lo: hmac.c
33583415 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT libcurlu_la-hmac.lo -MD -MP -MF $(DEPDIR)/libcurlu_la-hmac.Tpo -c -o libcurlu_la-hmac.lo `test -f 'hmac.c' || echo '$(srcdir)/'`hmac.c
33593416 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurlu_la-hmac.Tpo $(DEPDIR)/libcurlu_la-hmac.Plo
37953852 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
37963853 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o libcurlu_la-tftp.lo `test -f 'tftp.c' || echo '$(srcdir)/'`tftp.c
37973854
3855 libcurlu_la-timediff.lo: timediff.c
3856 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT libcurlu_la-timediff.lo -MD -MP -MF $(DEPDIR)/libcurlu_la-timediff.Tpo -c -o libcurlu_la-timediff.lo `test -f 'timediff.c' || echo '$(srcdir)/'`timediff.c
3857 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurlu_la-timediff.Tpo $(DEPDIR)/libcurlu_la-timediff.Plo
3858 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timediff.c' object='libcurlu_la-timediff.lo' libtool=yes @AMDEPBACKSLASH@
3859 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3860 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o libcurlu_la-timediff.lo `test -f 'timediff.c' || echo '$(srcdir)/'`timediff.c
3861
37983862 libcurlu_la-timeval.lo: timeval.c
37993863 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT libcurlu_la-timeval.lo -MD -MP -MF $(DEPDIR)/libcurlu_la-timeval.Tpo -c -o libcurlu_la-timeval.lo `test -f 'timeval.c' || echo '$(srcdir)/'`timeval.c
38003864 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libcurlu_la-timeval.Tpo $(DEPDIR)/libcurlu_la-timeval.Plo
40534117 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vtls/x509asn1.c' object='vtls/libcurlu_la-x509asn1.lo' libtool=yes @AMDEPBACKSLASH@
40544118 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
40554119 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o vtls/libcurlu_la-x509asn1.lo `test -f 'vtls/x509asn1.c' || echo '$(srcdir)/'`vtls/x509asn1.c
4120
4121 vquic/libcurlu_la-msh3.lo: vquic/msh3.c
4122 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT vquic/libcurlu_la-msh3.lo -MD -MP -MF vquic/$(DEPDIR)/libcurlu_la-msh3.Tpo -c -o vquic/libcurlu_la-msh3.lo `test -f 'vquic/msh3.c' || echo '$(srcdir)/'`vquic/msh3.c
4123 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) vquic/$(DEPDIR)/libcurlu_la-msh3.Tpo vquic/$(DEPDIR)/libcurlu_la-msh3.Plo
4124 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vquic/msh3.c' object='vquic/libcurlu_la-msh3.lo' libtool=yes @AMDEPBACKSLASH@
4125 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4126 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -c -o vquic/libcurlu_la-msh3.lo `test -f 'vquic/msh3.c' || echo '$(srcdir)/'`vquic/msh3.c
40564127
40574128 vquic/libcurlu_la-ngtcp2.lo: vquic/ngtcp2.c
40584129 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurlu_la_CPPFLAGS) $(CPPFLAGS) $(libcurlu_la_CFLAGS) $(CFLAGS) -MT vquic/libcurlu_la-ngtcp2.lo -MD -MP -MF vquic/$(DEPDIR)/libcurlu_la-ngtcp2.Tpo -c -o vquic/libcurlu_la-ngtcp2.lo `test -f 'vquic/ngtcp2.c' || echo '$(srcdir)/'`vquic/ngtcp2.c
42894360 -rm -f ./$(DEPDIR)/libcurl_la-gopher.Plo
42904361 -rm -f ./$(DEPDIR)/libcurl_la-h2h3.Plo
42914362 -rm -f ./$(DEPDIR)/libcurl_la-hash.Plo
4363 -rm -f ./$(DEPDIR)/libcurl_la-headers.Plo
42924364 -rm -f ./$(DEPDIR)/libcurl_la-hmac.Plo
42934365 -rm -f ./$(DEPDIR)/libcurl_la-hostasyn.Plo
42944366 -rm -f ./$(DEPDIR)/libcurl_la-hostip.Plo
43524424 -rm -f ./$(DEPDIR)/libcurl_la-system_win32.Plo
43534425 -rm -f ./$(DEPDIR)/libcurl_la-telnet.Plo
43544426 -rm -f ./$(DEPDIR)/libcurl_la-tftp.Plo
4427 -rm -f ./$(DEPDIR)/libcurl_la-timediff.Plo
43554428 -rm -f ./$(DEPDIR)/libcurl_la-timeval.Plo
43564429 -rm -f ./$(DEPDIR)/libcurl_la-transfer.Plo
43574430 -rm -f ./$(DEPDIR)/libcurl_la-url.Plo
44074480 -rm -f ./$(DEPDIR)/libcurlu_la-gopher.Plo
44084481 -rm -f ./$(DEPDIR)/libcurlu_la-h2h3.Plo
44094482 -rm -f ./$(DEPDIR)/libcurlu_la-hash.Plo
4483 -rm -f ./$(DEPDIR)/libcurlu_la-headers.Plo
44104484 -rm -f ./$(DEPDIR)/libcurlu_la-hmac.Plo
44114485 -rm -f ./$(DEPDIR)/libcurlu_la-hostasyn.Plo
44124486 -rm -f ./$(DEPDIR)/libcurlu_la-hostip.Plo
44704544 -rm -f ./$(DEPDIR)/libcurlu_la-system_win32.Plo
44714545 -rm -f ./$(DEPDIR)/libcurlu_la-telnet.Plo
44724546 -rm -f ./$(DEPDIR)/libcurlu_la-tftp.Plo
4547 -rm -f ./$(DEPDIR)/libcurlu_la-timediff.Plo
44734548 -rm -f ./$(DEPDIR)/libcurlu_la-timeval.Plo
44744549 -rm -f ./$(DEPDIR)/libcurlu_la-transfer.Plo
44754550 -rm -f ./$(DEPDIR)/libcurlu_la-url.Plo
45044579 -rm -f vauth/$(DEPDIR)/libcurlu_la-spnego_gssapi.Plo
45054580 -rm -f vauth/$(DEPDIR)/libcurlu_la-spnego_sspi.Plo
45064581 -rm -f vauth/$(DEPDIR)/libcurlu_la-vauth.Plo
4582 -rm -f vquic/$(DEPDIR)/libcurl_la-msh3.Plo
45074583 -rm -f vquic/$(DEPDIR)/libcurl_la-ngtcp2.Plo
45084584 -rm -f vquic/$(DEPDIR)/libcurl_la-quiche.Plo
45094585 -rm -f vquic/$(DEPDIR)/libcurl_la-vquic.Plo
4586 -rm -f vquic/$(DEPDIR)/libcurlu_la-msh3.Plo
45104587 -rm -f vquic/$(DEPDIR)/libcurlu_la-ngtcp2.Plo
45114588 -rm -f vquic/$(DEPDIR)/libcurlu_la-quiche.Plo
45124589 -rm -f vquic/$(DEPDIR)/libcurlu_la-vquic.Plo
46404717 -rm -f ./$(DEPDIR)/libcurl_la-gopher.Plo
46414718 -rm -f ./$(DEPDIR)/libcurl_la-h2h3.Plo
46424719 -rm -f ./$(DEPDIR)/libcurl_la-hash.Plo
4720 -rm -f ./$(DEPDIR)/libcurl_la-headers.Plo
46434721 -rm -f ./$(DEPDIR)/libcurl_la-hmac.Plo
46444722 -rm -f ./$(DEPDIR)/libcurl_la-hostasyn.Plo
46454723 -rm -f ./$(DEPDIR)/libcurl_la-hostip.Plo
47034781 -rm -f ./$(DEPDIR)/libcurl_la-system_win32.Plo
47044782 -rm -f ./$(DEPDIR)/libcurl_la-telnet.Plo
47054783 -rm -f ./$(DEPDIR)/libcurl_la-tftp.Plo
4784 -rm -f ./$(DEPDIR)/libcurl_la-timediff.Plo
47064785 -rm -f ./$(DEPDIR)/libcurl_la-timeval.Plo
47074786 -rm -f ./$(DEPDIR)/libcurl_la-transfer.Plo
47084787 -rm -f ./$(DEPDIR)/libcurl_la-url.Plo
47584837 -rm -f ./$(DEPDIR)/libcurlu_la-gopher.Plo
47594838 -rm -f ./$(DEPDIR)/libcurlu_la-h2h3.Plo
47604839 -rm -f ./$(DEPDIR)/libcurlu_la-hash.Plo
4840 -rm -f ./$(DEPDIR)/libcurlu_la-headers.Plo
47614841 -rm -f ./$(DEPDIR)/libcurlu_la-hmac.Plo
47624842 -rm -f ./$(DEPDIR)/libcurlu_la-hostasyn.Plo
47634843 -rm -f ./$(DEPDIR)/libcurlu_la-hostip.Plo
48214901 -rm -f ./$(DEPDIR)/libcurlu_la-system_win32.Plo
48224902 -rm -f ./$(DEPDIR)/libcurlu_la-telnet.Plo
48234903 -rm -f ./$(DEPDIR)/libcurlu_la-tftp.Plo
4904 -rm -f ./$(DEPDIR)/libcurlu_la-timediff.Plo
48244905 -rm -f ./$(DEPDIR)/libcurlu_la-timeval.Plo
48254906 -rm -f ./$(DEPDIR)/libcurlu_la-transfer.Plo
48264907 -rm -f ./$(DEPDIR)/libcurlu_la-url.Plo
48554936 -rm -f vauth/$(DEPDIR)/libcurlu_la-spnego_gssapi.Plo
48564937 -rm -f vauth/$(DEPDIR)/libcurlu_la-spnego_sspi.Plo
48574938 -rm -f vauth/$(DEPDIR)/libcurlu_la-vauth.Plo
4939 -rm -f vquic/$(DEPDIR)/libcurl_la-msh3.Plo
48584940 -rm -f vquic/$(DEPDIR)/libcurl_la-ngtcp2.Plo
48594941 -rm -f vquic/$(DEPDIR)/libcurl_la-quiche.Plo
48604942 -rm -f vquic/$(DEPDIR)/libcurl_la-vquic.Plo
4943 -rm -f vquic/$(DEPDIR)/libcurlu_la-msh3.Plo
48614944 -rm -f vquic/$(DEPDIR)/libcurlu_la-ngtcp2.Plo
48624945 -rm -f vquic/$(DEPDIR)/libcurlu_la-quiche.Plo
48634946 -rm -f vquic/$(DEPDIR)/libcurlu_la-vquic.Plo
49395022
49405023
49415024 checksrc:
4942 $(CHECKSRC)(@PERL@ $(srcdir)/checksrc.pl -D$(srcdir) -W$(srcdir)/curl_config.h \
4943 $(srcdir)/*.[ch] $(srcdir)/vauth/*.[ch] $(srcdir)/vtls/*.[ch] $(srcdir)/vquic/*.[ch] $(srcdir)/vssh/*.[ch])
5025 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) \
5026 -W$(srcdir)/curl_config.h $(srcdir)/*.[ch] $(srcdir)/vauth/*.[ch] \
5027 $(srcdir)/vtls/*.[ch] $(srcdir)/vquic/*.[ch] $(srcdir)/vssh/*.[ch])
49445028
49455029 # for debug builds, we scan the sources on all regular make invokes
49465030 @CURLDEBUG_TRUE@all-local: checksrc
7575 vtls/x509asn1.h
7676
7777 LIB_VQUIC_CFILES = \
78 vquic/msh3.c \
7879 vquic/ngtcp2.c \
7980 vquic/quiche.c \
8081 vquic/vquic.c
8182
8283 LIB_VQUIC_HFILES = \
84 vquic/msh3.h \
8385 vquic/ngtcp2.h \
8486 vquic/quiche.h \
8587 vquic/vquic.h
140142 gopher.c \
141143 h2h3.c \
142144 hash.c \
145 headers.c \
143146 hmac.c \
144147 hostasyn.c \
145148 hostip.c \
203206 system_win32.c \
204207 telnet.c \
205208 tftp.c \
209 timediff.c \
206210 timeval.c \
207211 transfer.c \
208212 url.c \
269273 gopher.h \
270274 h2h3.h \
271275 hash.h \
276 headers.h \
272277 hostip.h \
273278 hsts.h \
274279 http.h \
322327 system_win32.h \
323328 telnet.h \
324329 tftp.h \
330 timediff.h \
325331 timeval.h \
326332 transfer.h \
327333 url.h \
5252 #if defined(USE_QUICHE) && !defined(UNITTESTS)
5353 #define H3VERSION "h3-29"
5454 #elif defined(USE_NGTCP2) && !defined(UNITTESTS)
55 #define H3VERSION "h3-29"
56 #elif defined(USE_MSH3) && !defined(UNITTESTS)
5557 #define H3VERSION "h3-29"
5658 #else
5759 #define H3VERSION "h3"
263265
264266 /* set default behavior */
265267 asi->flags = CURLALTSVC_H1
266 #ifdef USE_NGHTTP2
268 #ifdef USE_HTTP2
267269 | CURLALTSVC_H2
268270 #endif
269271 #ifdef ENABLE_QUIC
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
6464 #include "connect.h"
6565 #include "select.h"
6666 #include "progress.h"
67 #include "timediff.h"
6768
6869 # if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \
6970 defined(WIN32)
289290
290291 timeout = ares_timeout((ares_channel)data->state.async.resolver, &maxtime,
291292 &timebuf);
292 milli = (timeout->tv_sec * 1000) + (timeout->tv_usec/1000);
293 milli = (long)curlx_tvtoms(timeout);
293294 if(milli == 0)
294295 milli += 10;
295296 Curl_expire(data, milli, EXPIRE_ASYNC_NAME);
292292 writetype |= CLIENTWRITE_BODY;
293293 result = Curl_client_write(data, writetype,
294294 Curl_dyn_ptr(&data->state.headerb), len);
295 if(result) {
296 data->state.hresult = CURLE_ABORTED_BY_CALLBACK;
297 return HYPER_ITER_BREAK;
298 }
295 if(result)
296 return result;
299297 }
300298 data->info.header_size += (long)len;
301299 data->req.headerbytecount += (long)len;
415413 else if(h->endtask == task) {
416414 /* end of transfer */
417415 *done = TRUE;
418 infof(data, "hyperstream is done!");
416 infof(data, "hyperstream is done");
419417 if(!k->bodywrites) {
420418 /* hyper doesn't always call the body write callback */
421419 bool stilldone;
805803 }
806804
807805 if(data->state.hresult)
808 infof(data, "ERROR in 1xx, bail out!");
806 infof(data, "ERROR in 1xx, bail out");
809807 }
810808
811809 /*
905903 hyper_clientconn_options_http2(options, 1);
906904 h2 = TRUE;
907905 }
906 hyper_clientconn_options_set_preserve_header_case(options, 1);
907 hyper_clientconn_options_set_preserve_header_order(options, 1);
908908
909909 hyper_clientconn_options_exec(options, h->exec);
910910
+0
-876
lib/checksrc.pl less more
0 #!/usr/bin/env perl
1 #***************************************************************************
2 # _ _ ____ _
3 # Project ___| | | | _ \| |
4 # / __| | | | |_) | |
5 # | (__| |_| | _ <| |___
6 # \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 2011 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at https://curl.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 ###########################################################################
22
23 use strict;
24 use warnings;
25
26 my $max_column = 79;
27 my $indent = 2;
28
29 my $warnings = 0;
30 my $swarnings = 0;
31 my $errors = 0;
32 my $serrors = 0;
33 my $suppressed; # skipped problems
34 my $file;
35 my $dir=".";
36 my $wlist="";
37 my @alist;
38 my $windows_os = $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'msys';
39 my $verbose;
40 my %skiplist;
41
42 my %ignore;
43 my %ignore_set;
44 my %ignore_used;
45 my @ignore_line;
46
47 my %warnings_extended = (
48 'COPYRIGHTYEAR' => 'copyright year incorrect',
49 'STRERROR', => 'strerror() detected',
50 );
51
52 my %warnings = (
53 'LONGLINE' => "Line longer than $max_column",
54 'TABS' => 'TAB characters not allowed',
55 'TRAILINGSPACE' => 'Trailing whitespace on the line',
56 'CPPCOMMENTS' => '// comment detected',
57 'SPACEBEFOREPAREN' => 'space before an open parenthesis',
58 'SPACEAFTERPAREN' => 'space after open parenthesis',
59 'SPACEBEFORECLOSE' => 'space before a close parenthesis',
60 'SPACEBEFORECOMMA' => 'space before a comma',
61 'RETURNNOSPACE' => 'return without space',
62 'COMMANOSPACE' => 'comma without following space',
63 'BRACEELSE' => '} else on the same line',
64 'PARENBRACE' => '){ without sufficient space',
65 'SPACESEMICOLON' => 'space before semicolon',
66 'BANNEDFUNC' => 'a banned function was used',
67 'FOPENMODE' => 'fopen needs a macro for the mode string',
68 'BRACEPOS' => 'wrong position for an open brace',
69 'INDENTATION' => 'wrong start column for code',
70 'COPYRIGHT' => 'file missing a copyright statement',
71 'BADCOMMAND' => 'bad !checksrc! instruction',
72 'UNUSEDIGNORE' => 'a warning ignore was not used',
73 'OPENCOMMENT' => 'file ended with a /* comment still "open"',
74 'ASTERISKSPACE' => 'pointer declared with space after asterisk',
75 'ASTERISKNOSPACE' => 'pointer declared without space before asterisk',
76 'ASSIGNWITHINCONDITION' => 'assignment within conditional expression',
77 'EQUALSNOSPACE' => 'equals sign without following space',
78 'NOSPACEEQUALS' => 'equals sign without preceding space',
79 'SEMINOSPACE' => 'semicolon without following space',
80 'MULTISPACE' => 'multiple spaces used when not suitable',
81 'SIZEOFNOPAREN' => 'use of sizeof without parentheses',
82 'SNPRINTF' => 'use of snprintf',
83 'ONELINECONDITION' => 'conditional block on the same line as the if()',
84 'TYPEDEFSTRUCT' => 'typedefed struct',
85 'DOBRACE' => 'A single space between do and open brace',
86 'BRACEWHILE' => 'A single space between open brace and while',
87 'EXCLAMATIONSPACE' => 'Whitespace after exclamation mark in expression',
88 'EMPTYLINEBRACE' => 'Empty line before the open brace',
89 'EQUALSNULL' => 'if/while comparison with == NULL',
90 'NOTEQUALSZERO', => 'if/while comparison with != 0',
91 );
92
93 sub readskiplist {
94 open(W, "<$dir/checksrc.skip") or return;
95 my @all=<W>;
96 for(@all) {
97 $windows_os ? $_ =~ s/\r?\n$// : chomp;
98 $skiplist{$_}=1;
99 }
100 close(W);
101 }
102
103 # Reads the .checksrc in $dir for any extended warnings to enable locally.
104 # Currently there is no support for disabling warnings from the standard set,
105 # and since that's already handled via !checksrc! commands there is probably
106 # little use to add it.
107 sub readlocalfile {
108 my $i = 0;
109
110 open(my $rcfile, "<", "$dir/.checksrc") or return;
111
112 while(<$rcfile>) {
113 $i++;
114
115 # Lines starting with '#' are considered comments
116 if (/^\s*(#.*)/) {
117 next;
118 }
119 elsif (/^\s*enable ([A-Z]+)$/) {
120 if(!defined($warnings_extended{$1})) {
121 print STDERR "invalid warning specified in .checksrc: \"$1\"\n";
122 next;
123 }
124 $warnings{$1} = $warnings_extended{$1};
125 }
126 elsif (/^\s*disable ([A-Z]+)$/) {
127 if(!defined($warnings{$1})) {
128 print STDERR "invalid warning specified in .checksrc: \"$1\"\n";
129 next;
130 }
131 # Accept-list
132 push @alist, $1;
133 }
134 else {
135 die "Invalid format in $dir/.checksrc on line $i\n";
136 }
137 }
138 close($rcfile);
139 }
140
141 sub checkwarn {
142 my ($name, $num, $col, $file, $line, $msg, $error) = @_;
143
144 my $w=$error?"error":"warning";
145 my $nowarn=0;
146
147 #if(!$warnings{$name}) {
148 # print STDERR "Dev! there's no description for $name!\n";
149 #}
150
151 # checksrc.skip
152 if($skiplist{$line}) {
153 $nowarn = 1;
154 }
155 # !checksrc! controlled
156 elsif($ignore{$name}) {
157 $ignore{$name}--;
158 $ignore_used{$name}++;
159 $nowarn = 1;
160 if(!$ignore{$name}) {
161 # reached zero, enable again
162 enable_warn($name, $num, $file, $line);
163 }
164 }
165
166 if($nowarn) {
167 $suppressed++;
168 if($w) {
169 $swarnings++;
170 }
171 else {
172 $serrors++;
173 }
174 return;
175 }
176
177 if($w) {
178 $warnings++;
179 }
180 else {
181 $errors++;
182 }
183
184 $col++;
185 print "$file:$num:$col: $w: $msg ($name)\n";
186 print " $line\n";
187
188 if($col < 80) {
189 my $pref = (' ' x $col);
190 print "${pref}^\n";
191 }
192 }
193
194 $file = shift @ARGV;
195
196 while(defined $file) {
197
198 if($file =~ /-D(.*)/) {
199 $dir = $1;
200 $file = shift @ARGV;
201 next;
202 }
203 elsif($file =~ /-W(.*)/) {
204 $wlist .= " $1 ";
205 $file = shift @ARGV;
206 next;
207 }
208 elsif($file =~ /-A(.+)/) {
209 push @alist, $1;
210 $file = shift @ARGV;
211 next;
212 }
213 elsif($file =~ /-i([1-9])/) {
214 $indent = $1 + 0;
215 $file = shift @ARGV;
216 next;
217 }
218 elsif($file =~ /-m([0-9]+)/) {
219 $max_column = $1 + 0;
220 $file = shift @ARGV;
221 next;
222 }
223 elsif($file =~ /^(-h|--help)/) {
224 undef $file;
225 last;
226 }
227
228 last;
229 }
230
231 if(!$file) {
232 print "checksrc.pl [option] <file1> [file2] ...\n";
233 print " Options:\n";
234 print " -A[rule] Accept this violation, can be used multiple times\n";
235 print " -D[DIR] Directory to prepend file names\n";
236 print " -h Show help output\n";
237 print " -W[file] Skip the given file - ignore all its flaws\n";
238 print " -i<n> Indent spaces. Default: 2\n";
239 print " -m<n> Maximum line length. Default: 79\n";
240 print "\nDetects and warns for these problems:\n";
241 my @allw = keys %warnings;
242 push @allw, keys %warnings_extended;
243 for my $w (sort @allw) {
244 if($warnings{$w}) {
245 printf (" %-18s: %s\n", $w, $warnings{$w});
246 }
247 else {
248 printf (" %-18s: %s[*]\n", $w, $warnings_extended{$w});
249 }
250 }
251 print " [*] = disabled by default\n";
252 exit;
253 }
254
255 readskiplist();
256 readlocalfile();
257
258 do {
259 if("$wlist" !~ / $file /) {
260 my $fullname = $file;
261 $fullname = "$dir/$file" if ($fullname !~ '^\.?\.?/');
262 scanfile($fullname);
263 }
264 $file = shift @ARGV;
265
266 } while($file);
267
268 sub accept_violations {
269 for my $r (@alist) {
270 if(!$warnings{$r}) {
271 print "'$r' is not a warning to accept!\n";
272 exit;
273 }
274 $ignore{$r}=999999;
275 $ignore_used{$r}=0;
276 }
277 }
278
279 sub checksrc_clear {
280 undef %ignore;
281 undef %ignore_set;
282 undef @ignore_line;
283 }
284
285 sub checksrc_endoffile {
286 my ($file) = @_;
287 for(keys %ignore_set) {
288 if($ignore_set{$_} && !$ignore_used{$_}) {
289 checkwarn("UNUSEDIGNORE", $ignore_set{$_},
290 length($_)+11, $file,
291 $ignore_line[$ignore_set{$_}],
292 "Unused ignore: $_");
293 }
294 }
295 }
296
297 sub enable_warn {
298 my ($what, $line, $file, $l) = @_;
299
300 # switch it back on, but warn if not triggered!
301 if(!$ignore_used{$what}) {
302 checkwarn("UNUSEDIGNORE",
303 $line, length($what) + 11, $file, $l,
304 "No warning was inhibited!");
305 }
306 $ignore_set{$what}=0;
307 $ignore_used{$what}=0;
308 $ignore{$what}=0;
309 }
310 sub checksrc {
311 my ($cmd, $line, $file, $l) = @_;
312 if($cmd =~ / *([^ ]*) *(.*)/) {
313 my ($enable, $what) = ($1, $2);
314 $what =~ s: *\*/$::; # cut off end of C comment
315 # print "ENABLE $enable WHAT $what\n";
316 if($enable eq "disable") {
317 my ($warn, $scope)=($1, $2);
318 if($what =~ /([^ ]*) +(.*)/) {
319 ($warn, $scope)=($1, $2);
320 }
321 else {
322 $warn = $what;
323 $scope = 1;
324 }
325 # print "IGNORE $warn for SCOPE $scope\n";
326 if($scope eq "all") {
327 $scope=999999;
328 }
329
330 # Comparing for a literal zero rather than the scalar value zero
331 # covers the case where $scope contains the ending '*' from the
332 # comment. If we use a scalar comparison (==) we induce warnings
333 # on non-scalar contents.
334 if($scope eq "0") {
335 checkwarn("BADCOMMAND",
336 $line, 0, $file, $l,
337 "Disable zero not supported, did you mean to enable?");
338 }
339 elsif($ignore_set{$warn}) {
340 checkwarn("BADCOMMAND",
341 $line, 0, $file, $l,
342 "$warn already disabled from line $ignore_set{$warn}");
343 }
344 else {
345 $ignore{$warn}=$scope;
346 $ignore_set{$warn}=$line;
347 $ignore_line[$line]=$l;
348 }
349 }
350 elsif($enable eq "enable") {
351 enable_warn($what, $line, $file, $l);
352 }
353 else {
354 checkwarn("BADCOMMAND",
355 $line, 0, $file, $l,
356 "Illegal !checksrc! command");
357 }
358 }
359 }
360
361 sub nostrings {
362 my ($str) = @_;
363 $str =~ s/\".*\"//g;
364 return $str;
365 }
366
367 sub scanfile {
368 my ($file) = @_;
369
370 my $line = 1;
371 my $prevl="";
372 my $prevpl="";
373 my $l = "";
374 my $prep = 0;
375 my $prevp = 0;
376 open(R, "<$file") || die "failed to open $file";
377
378 my $incomment=0;
379 my @copyright=();
380 checksrc_clear(); # for file based ignores
381 accept_violations();
382
383 while(<R>) {
384 $windows_os ? $_ =~ s/\r?\n$// : chomp;
385 my $l = $_;
386 my $ol = $l; # keep the unmodified line for error reporting
387 my $column = 0;
388
389 # check for !checksrc! commands
390 if($l =~ /\!checksrc\! (.*)/) {
391 my $cmd = $1;
392 checksrc($cmd, $line, $file, $l)
393 }
394
395 # check for a copyright statement and save the years
396 if($l =~ /\* +copyright .* \d\d\d\d/i) {
397 while($l =~ /([\d]{4})/g) {
398 push @copyright, {
399 year => $1,
400 line => $line,
401 col => index($l, $1),
402 code => $l
403 };
404 }
405 }
406
407 # detect long lines
408 if(length($l) > $max_column) {
409 checkwarn("LONGLINE", $line, length($l), $file, $l,
410 "Longer than $max_column columns");
411 }
412 # detect TAB characters
413 if($l =~ /^(.*)\t/) {
414 checkwarn("TABS",
415 $line, length($1), $file, $l, "Contains TAB character", 1);
416 }
417 # detect trailing whitespace
418 if($l =~ /^(.*)[ \t]+\z/) {
419 checkwarn("TRAILINGSPACE",
420 $line, length($1), $file, $l, "Trailing whitespace");
421 }
422
423 # ------------------------------------------------------------
424 # Above this marker, the checks were done on lines *including*
425 # comments
426 # ------------------------------------------------------------
427
428 # strip off C89 comments
429
430 comment:
431 if(!$incomment) {
432 if($l =~ s/\/\*.*\*\// /g) {
433 # full /* comments */ were removed!
434 }
435 if($l =~ s/\/\*.*//) {
436 # start of /* comment was removed
437 $incomment = 1;
438 }
439 }
440 else {
441 if($l =~ s/.*\*\///) {
442 # end of comment */ was removed
443 $incomment = 0;
444 goto comment;
445 }
446 else {
447 # still within a comment
448 $l="";
449 }
450 }
451
452 # ------------------------------------------------------------
453 # Below this marker, the checks were done on lines *without*
454 # comments
455 # ------------------------------------------------------------
456
457 # prev line was a preprocessor **and** ended with a backslash
458 if($prep && ($prevpl =~ /\\ *\z/)) {
459 # this is still a preprocessor line
460 $prep = 1;
461 goto preproc;
462 }
463 $prep = 0;
464
465 # crude attempt to detect // comments without too many false
466 # positives
467 if($l =~ /^(([^"\*]*)[^:"]|)\/\//) {
468 checkwarn("CPPCOMMENTS",
469 $line, length($1), $file, $l, "\/\/ comment");
470 }
471
472 # detect and strip preprocessor directives
473 if($l =~ /^[ \t]*\#/) {
474 # preprocessor line
475 $prep = 1;
476 goto preproc;
477 }
478
479 my $nostr = nostrings($l);
480 # check spaces after for/if/while/function call
481 if($nostr =~ /^(.*)(for|if|while| ([a-zA-Z0-9_]+)) \((.)/) {
482 if($1 =~ / *\#/) {
483 # this is a #if, treat it differently
484 }
485 elsif(defined $3 && $3 eq "return") {
486 # return must have a space
487 }
488 elsif(defined $3 && $3 eq "case") {
489 # case must have a space
490 }
491 elsif($4 eq "*") {
492 # (* beginning makes the space OK!
493 }
494 elsif($1 =~ / *typedef/) {
495 # typedefs can use space-paren
496 }
497 else {
498 checkwarn("SPACEBEFOREPAREN", $line, length($1)+length($2), $file, $l,
499 "$2 with space");
500 }
501 }
502 # check for '== NULL' in if/while conditions but not if the thing on
503 # the left of it is a function call
504 if($nostr =~ /^(.*)(if|while)(\(.*?)([!=]= NULL|NULL [!=]=)/) {
505 checkwarn("EQUALSNULL", $line,
506 length($1) + length($2) + length($3),
507 $file, $l, "we prefer !variable instead of \"== NULL\" comparisons");
508 }
509
510 # check for '!= 0' in if/while conditions but not if the thing on
511 # the left of it is a function call
512 if($nostr =~ /^(.*)(if|while)(\(.*[^)]) != 0[^x]/) {
513 checkwarn("NOTEQUALSZERO", $line,
514 length($1) + length($2) + length($3),
515 $file, $l, "we prefer if(rc) instead of \"rc != 0\" comparisons");
516 }
517
518 # check spaces in 'do {'
519 if($nostr =~ /^( *)do( *)\{/ && length($2) != 1) {
520 checkwarn("DOBRACE", $line, length($1) + 2, $file, $l, "one space after do before brace");
521 }
522 # check spaces in 'do {'
523 elsif($nostr =~ /^( *)\}( *)while/ && length($2) != 1) {
524 checkwarn("BRACEWHILE", $line, length($1) + 2, $file, $l, "one space between brace and while");
525 }
526 if($nostr =~ /^((.*\s)(if) *\()(.*)\)(.*)/) {
527 my $pos = length($1);
528 my $postparen = $5;
529 my $cond = $4;
530 if($cond =~ / = /) {
531 checkwarn("ASSIGNWITHINCONDITION",
532 $line, $pos+1, $file, $l,
533 "assignment within conditional expression");
534 }
535 my $temp = $cond;
536 $temp =~ s/\(//g; # remove open parens
537 my $openc = length($cond) - length($temp);
538
539 $temp = $cond;
540 $temp =~ s/\)//g; # remove close parens
541 my $closec = length($cond) - length($temp);
542 my $even = $openc == $closec;
543
544 if($l =~ / *\#/) {
545 # this is a #if, treat it differently
546 }
547 elsif($even && $postparen &&
548 ($postparen !~ /^ *$/) && ($postparen !~ /^ *[,{&|\\]+/)) {
549 checkwarn("ONELINECONDITION",
550 $line, length($l)-length($postparen), $file, $l,
551 "conditional block on the same line");
552 }
553 }
554 # check spaces after open parentheses
555 if($l =~ /^(.*[a-z])\( /i) {
556 checkwarn("SPACEAFTERPAREN",
557 $line, length($1)+1, $file, $l,
558 "space after open parenthesis");
559 }
560
561 # check spaces before close parentheses, unless it was a space or a
562 # close parenthesis!
563 if($l =~ /(.*[^\) ]) \)/) {
564 checkwarn("SPACEBEFORECLOSE",
565 $line, length($1)+1, $file, $l,
566 "space before close parenthesis");
567 }
568
569 # check spaces before comma!
570 if($l =~ /(.*[^ ]) ,/) {
571 checkwarn("SPACEBEFORECOMMA",
572 $line, length($1)+1, $file, $l,
573 "space before comma");
574 }
575
576 # check for "return(" without space
577 if($l =~ /^(.*)return\(/) {
578 if($1 =~ / *\#/) {
579 # this is a #if, treat it differently
580 }
581 else {
582 checkwarn("RETURNNOSPACE", $line, length($1)+6, $file, $l,
583 "return without space before paren");
584 }
585 }
586
587 # check for "sizeof" without parenthesis
588 if(($l =~ /^(.*)sizeof *([ (])/) && ($2 ne "(")) {
589 if($1 =~ / *\#/) {
590 # this is a #if, treat it differently
591 }
592 else {
593 checkwarn("SIZEOFNOPAREN", $line, length($1)+6, $file, $l,
594 "sizeof without parenthesis");
595 }
596 }
597
598 # check for comma without space
599 if($l =~ /^(.*),[^ \n]/) {
600 my $pref=$1;
601 my $ign=0;
602 if($pref =~ / *\#/) {
603 # this is a #if, treat it differently
604 $ign=1;
605 }
606 elsif($pref =~ /\/\*/) {
607 # this is a comment
608 $ign=1;
609 }
610 elsif($pref =~ /[\"\']/) {
611 $ign = 1;
612 # There is a quote here, figure out whether the comma is
613 # within a string or '' or not.
614 if($pref =~ /\"/) {
615 # within a string
616 }
617 elsif($pref =~ /\'$/) {
618 # a single letter
619 }
620 else {
621 $ign = 0;
622 }
623 }
624 if(!$ign) {
625 checkwarn("COMMANOSPACE", $line, length($pref)+1, $file, $l,
626 "comma without following space");
627 }
628 }
629
630 # check for "} else"
631 if($l =~ /^(.*)\} *else/) {
632 checkwarn("BRACEELSE",
633 $line, length($1), $file, $l, "else after closing brace on same line");
634 }
635 # check for "){"
636 if($l =~ /^(.*)\)\{/) {
637 checkwarn("PARENBRACE",
638 $line, length($1)+1, $file, $l, "missing space after close paren");
639 }
640 # check for "^{" with an empty line before it
641 if(($l =~ /^\{/) && ($prevl =~ /^[ \t]*\z/)) {
642 checkwarn("EMPTYLINEBRACE",
643 $line, 0, $file, $l, "empty line before open brace");
644 }
645
646 # check for space before the semicolon last in a line
647 if($l =~ /^(.*[^ ].*) ;$/) {
648 checkwarn("SPACESEMICOLON",
649 $line, length($1), $file, $ol, "no space before semicolon");
650 }
651
652 # scan for use of banned functions
653 if($l =~ /^(.*\W)
654 (gmtime|localtime|
655 gets|
656 strtok|
657 v?sprintf|
658 (str|_mbs|_tcs|_wcs)n?cat|
659 LoadLibrary(Ex)?(A|W)?)
660 \s*\(
661 /x) {
662 checkwarn("BANNEDFUNC",
663 $line, length($1), $file, $ol,
664 "use of $2 is banned");
665 }
666 if($warnings{"STRERROR"}) {
667 # scan for use of banned strerror. This is not a BANNEDFUNC to
668 # allow for individual enable/disable of this warning.
669 if($l =~ /^(.*\W)(strerror)\s*\(/x) {
670 if($1 !~ /^ *\#/) {
671 # skip preprocessor lines
672 checkwarn("STRERROR",
673 $line, length($1), $file, $ol,
674 "use of $2 is banned");
675 }
676 }
677 }
678 # scan for use of snprintf for curl-internals reasons
679 if($l =~ /^(.*\W)(v?snprintf)\s*\(/x) {
680 checkwarn("SNPRINTF",
681 $line, length($1), $file, $ol,
682 "use of $2 is banned");
683 }
684
685 # scan for use of non-binary fopen without the macro
686 if($l =~ /^(.*\W)fopen\s*\([^,]*, *\"([^"]*)/) {
687 my $mode = $2;
688 if($mode !~ /b/) {
689 checkwarn("FOPENMODE",
690 $line, length($1), $file, $ol,
691 "use of non-binary fopen without FOPEN_* macro: $mode");
692 }
693 }
694
695 # check for open brace first on line but not first column only alert
696 # if previous line ended with a close paren and it wasn't a cpp line
697 if(($prevl =~ /\)\z/) && ($l =~ /^( +)\{/) && !$prevp) {
698 checkwarn("BRACEPOS",
699 $line, length($1), $file, $ol, "badly placed open brace");
700 }
701
702 # if the previous line starts with if/while/for AND ends with an open
703 # brace, or an else statement, check that this line is indented $indent
704 # more steps, if not a cpp line
705 if(!$prevp && ($prevl =~ /^( *)((if|while|for)\(.*\{|else)\z/)) {
706 my $first = length($1);
707 # this line has some character besides spaces
708 if($l =~ /^( *)[^ ]/) {
709 my $second = length($1);
710 my $expect = $first+$indent;
711 if($expect != $second) {
712 my $diff = $second - $first;
713 checkwarn("INDENTATION", $line, length($1), $file, $ol,
714 "not indented $indent steps (uses $diff)");
715
716 }
717 }
718 }
719
720 # check for 'char * name'
721 if(($l =~ /(^.*(char|int|long|void|CURL|CURLM|CURLMsg|[cC]url_[A-Za-z_]+|struct [a-zA-Z_]+) *(\*+)) (\w+)/) && ($4 !~ /^(const|volatile)$/)) {
722 checkwarn("ASTERISKSPACE",
723 $line, length($1), $file, $ol,
724 "space after declarative asterisk");
725 }
726 # check for 'char*'
727 if(($l =~ /(^.*(char|int|long|void|curl_slist|CURL|CURLM|CURLMsg|curl_httppost|sockaddr_in|FILE)\*)/)) {
728 checkwarn("ASTERISKNOSPACE",
729 $line, length($1)-1, $file, $ol,
730 "no space before asterisk");
731 }
732
733 # check for 'void func() {', but avoid false positives by requiring
734 # both an open and closed parentheses before the open brace
735 if($l =~ /^((\w).*)\{\z/) {
736 my $k = $1;
737 $k =~ s/const *//;
738 $k =~ s/static *//;
739 if($k =~ /\(.*\)/) {
740 checkwarn("BRACEPOS",
741 $line, length($l)-1, $file, $ol,
742 "wrongly placed open brace");
743 }
744 }
745
746 # check for equals sign without spaces next to it
747 if($nostr =~ /(.*)\=[a-z0-9]/i) {
748 checkwarn("EQUALSNOSPACE",
749 $line, length($1)+1, $file, $ol,
750 "no space after equals sign");
751 }
752 # check for equals sign without spaces before it
753 elsif($nostr =~ /(.*)[a-z0-9]\=/i) {
754 checkwarn("NOSPACEEQUALS",
755 $line, length($1)+1, $file, $ol,
756 "no space before equals sign");
757 }
758
759 # check for plus signs without spaces next to it
760 if($nostr =~ /(.*)[^+]\+[a-z0-9]/i) {
761 checkwarn("PLUSNOSPACE",
762 $line, length($1)+1, $file, $ol,
763 "no space after plus sign");
764 }
765 # check for plus sign without spaces before it
766 elsif($nostr =~ /(.*)[a-z0-9]\+[^+]/i) {
767 checkwarn("NOSPACEPLUS",
768 $line, length($1)+1, $file, $ol,
769 "no space before plus sign");
770 }
771
772 # check for semicolons without space next to it
773 if($nostr =~ /(.*)\;[a-z0-9]/i) {
774 checkwarn("SEMINOSPACE",
775 $line, length($1)+1, $file, $ol,
776 "no space after semicolon");
777 }
778
779 # typedef struct ... {
780 if($nostr =~ /^(.*)typedef struct.*{/) {
781 checkwarn("TYPEDEFSTRUCT",
782 $line, length($1)+1, $file, $ol,
783 "typedef'ed struct");
784 }
785
786 if($nostr =~ /(.*)! +(\w|\()/) {
787 checkwarn("EXCLAMATIONSPACE",
788 $line, length($1)+1, $file, $ol,
789 "space after exclamation mark");
790 }
791
792 # check for more than one consecutive space before open brace or
793 # question mark. Skip lines containing strings since they make it hard
794 # due to artificially getting multiple spaces
795 if(($l eq $nostr) &&
796 $nostr =~ /^(.*(\S)) + [{?]/i) {
797 checkwarn("MULTISPACE",
798 $line, length($1)+1, $file, $ol,
799 "multiple spaces");
800 }
801 preproc:
802 $line++;
803 $prevp = $prep;
804 $prevl = $ol if(!$prep);
805 $prevpl = $ol if($prep);
806 }
807
808 if(!scalar(@copyright)) {
809 checkwarn("COPYRIGHT", 1, 0, $file, "", "Missing copyright statement", 1);
810 }
811
812 # COPYRIGHTYEAR is a extended warning so we must first see if it has been
813 # enabled in .checksrc
814 if(defined($warnings{"COPYRIGHTYEAR"})) {
815 # The check for updated copyrightyear is overly complicated in order to
816 # not punish current hacking for past sins. The copyright years are
817 # right now a bit behind, so enforcing copyright year checking on all
818 # files would cause hundreds of errors. Instead we only look at files
819 # which are tracked in the Git repo and edited in the workdir, or
820 # committed locally on the branch without being in upstream master.
821 #
822 # The simple and naive test is to simply check for the current year,
823 # but updating the year even without an edit is against project policy
824 # (and it would fail every file on January 1st).
825 #
826 # A rather more interesting, and correct, check would be to not test
827 # only locally committed files but inspect all files wrt the year of
828 # their last commit. Removing the `git rev-list origin/master..HEAD`
829 # condition below will enforce copyright year checks against the year
830 # the file was last committed (and thus edited to some degree).
831 my $commityear = undef;
832 @copyright = sort {$$b{year} cmp $$a{year}} @copyright;
833
834 # if the file is modified, assume commit year this year
835 if(`git status -s -- $file` =~ /^ [MARCU]/) {
836 $commityear = (localtime(time))[5] + 1900;
837 }
838 else {
839 # min-parents=1 to ignore wrong initial commit in truncated repos
840 my $grl = `git rev-list --max-count=1 --min-parents=1 --timestamp HEAD -- $file`;
841 if($grl) {
842 chomp $grl;
843 $commityear = (localtime((split(/ /, $grl))[0]))[5] + 1900;
844 }
845 }
846
847 if(defined($commityear) && scalar(@copyright) &&
848 $copyright[0]{year} != $commityear) {
849 checkwarn("COPYRIGHTYEAR", $copyright[0]{line}, $copyright[0]{col},
850 $file, $copyright[0]{code},
851 "Copyright year out of date, should be $commityear, " .
852 "is $copyright[0]{year}", 1);
853 }
854 }
855
856 if($incomment) {
857 checkwarn("OPENCOMMENT", 1, 0, $file, "", "Missing closing comment", 1);
858 }
859
860 checksrc_endoffile($file);
861
862 close(R);
863
864 }
865
866
867 if($errors || $warnings || $verbose) {
868 printf "checksrc: %d errors and %d warnings\n", $errors, $warnings;
869 if($suppressed) {
870 printf "checksrc: %d errors and %d warnings suppressed\n",
871 $serrors,
872 $swarnings;
873 }
874 exit 5; # return failure
875 }
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
370370 /* Define if you can safely include both <sys/time.h> and <time.h>. */
371371 #define TIME_WITH_SYS_TIME
372372
373 /* Define to enable HTTP3 support (experimental, requires NGTCP2 or QUICHE) */
373 /* Define to enable HTTP3 support (experimental, requires NGTCP2, QUICHE or
374 MSH3) */
374375 #undef ENABLE_QUIC
375376
376377 /* Version number of package */
131131 }
132132
133133 /* creates a key to find a bundle for this connection */
134 static void hashkey(struct connectdata *conn, char *buf,
135 size_t len, /* something like 128 is fine */
136 const char **hostp)
134 static void hashkey(struct connectdata *conn, char *buf, size_t len)
137135 {
138136 const char *hostname;
139137 long port = conn->remote_port;
140
138 DEBUGASSERT(len >= HASHKEY_SIZE);
141139 #ifndef CURL_DISABLE_PROXY
142140 if(conn->bits.httpproxy && !conn->bits.tunnel_proxy) {
143141 hostname = conn->http_proxy.host.name;
150148 else
151149 hostname = conn->host.name;
152150
153 if(hostp)
154 /* report back which name we used */
155 *hostp = hostname;
156
157 /* put the number first so that the hostname gets cut off if too long */
158 msnprintf(buf, len, "%ld%s", port, hostname);
151 /* put the numbers first so that the hostname gets cut off if too long */
152 #ifdef ENABLE_IPV6
153 msnprintf(buf, len, "%u/%ld/%s", conn->scope_id, port, hostname);
154 #else
155 msnprintf(buf, len, "%ld/%s", port, hostname);
156 #endif
159157 Curl_strntolower(buf, buf, len);
160158 }
161159
178176 struct connectbundle *
179177 Curl_conncache_find_bundle(struct Curl_easy *data,
180178 struct connectdata *conn,
181 struct conncache *connc,
182 const char **hostp)
179 struct conncache *connc)
183180 {
184181 struct connectbundle *bundle = NULL;
185182 CONNCACHE_LOCK(data);
186183 if(connc) {
187184 char key[HASHKEY_SIZE];
188 hashkey(conn, key, sizeof(key), hostp);
185 hashkey(conn, key, sizeof(key));
189186 bundle = Curl_hash_pick(&connc->hash, key, strlen(key));
190187 }
191188
232229 DEBUGASSERT(conn);
233230
234231 /* *find_bundle() locks the connection cache */
235 bundle = Curl_conncache_find_bundle(data, conn, data->state.conn_cache,
236 NULL);
232 bundle = Curl_conncache_find_bundle(data, conn, data->state.conn_cache);
237233 if(!bundle) {
238234 char key[HASHKEY_SIZE];
239235
242238 goto unlock;
243239 }
244240
245 hashkey(conn, key, sizeof(key), NULL);
241 hashkey(conn, key, sizeof(key));
246242
247243 if(!conncache_add_bundle(data->state.conn_cache, key, bundle)) {
248244 bundle_destroy(bundle);
530526 {
531527 struct connectdata *conn;
532528 char buffer[READBUFFER_MIN + 1];
529 SIGPIPE_VARIABLE(pipe_st);
533530 if(!connc->closure_handle)
534531 return;
535532 connc->closure_handle->state.buffer = buffer;
537534
538535 conn = conncache_find_first_connection(connc);
539536 while(conn) {
540 SIGPIPE_VARIABLE(pipe_st);
541537 sigpipe_ignore(connc->closure_handle, &pipe_st);
542538 /* This will remove the connection from the cache */
543539 connclose(conn, "kill all");
549545 }
550546
551547 connc->closure_handle->state.buffer = NULL;
552 if(connc->closure_handle) {
553 SIGPIPE_VARIABLE(pipe_st);
554 sigpipe_ignore(connc->closure_handle, &pipe_st);
555
556 Curl_hostcache_clean(connc->closure_handle,
557 connc->closure_handle->dns.hostcache);
558 Curl_close(&connc->closure_handle);
559 sigpipe_restore(&pipe_st);
560 }
548 sigpipe_ignore(connc->closure_handle, &pipe_st);
549
550 Curl_hostcache_clean(connc->closure_handle,
551 connc->closure_handle->dns.hostcache);
552 Curl_close(&connc->closure_handle);
553 sigpipe_restore(&pipe_st);
561554 }
562555
563556 #if 0
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 2015 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 2015 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 * Copyright (C) 2012 - 2014, Linus Nielsen Feltzing, <linus@haxx.se>
1111 *
1212 * This software is licensed as described in the file COPYING, which
8686 /* return the correct bundle, to a host or a proxy */
8787 struct connectbundle *Curl_conncache_find_bundle(struct Curl_easy *data,
8888 struct connectdata *conn,
89 struct conncache *connc,
90 const char **hostp);
89 struct conncache *connc);
9190 /* returns number of connections currently held in the connection cache */
9291 size_t Curl_conncache_size(struct Curl_easy *data);
9392
7373 #include "warnless.h"
7474 #include "conncache.h"
7575 #include "multihandle.h"
76 #include "share.h"
7677 #include "version_win32.h"
7778 #include "quic.h"
7879 #include "socks.h"
136137 (void *)&optval, sizeof(optval)) < 0) {
137138 infof(data, "Failed to set TCP_KEEPIDLE on fd %d", sockfd);
138139 }
140 #elif defined(TCP_KEEPALIVE)
141 /* Mac OS X style */
142 optval = curlx_sltosi(data->set.tcp_keepidle);
143 KEEPALIVE_FACTOR(optval);
144 if(setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPALIVE,
145 (void *)&optval, sizeof(optval)) < 0) {
146 infof(data, "Failed to set TCP_KEEPALIVE on fd %d", sockfd);
147 }
139148 #endif
140149 #ifdef TCP_KEEPINTVL
141150 optval = curlx_sltosi(data->set.tcp_keepintvl);
143152 if(setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPINTVL,
144153 (void *)&optval, sizeof(optval)) < 0) {
145154 infof(data, "Failed to set TCP_KEEPINTVL on fd %d", sockfd);
146 }
147 #endif
148 #ifdef TCP_KEEPALIVE
149 /* Mac OS X style */
150 optval = curlx_sltosi(data->set.tcp_keepidle);
151 KEEPALIVE_FACTOR(optval);
152 if(setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPALIVE,
153 (void *)&optval, sizeof(optval)) < 0) {
154 infof(data, "Failed to set TCP_KEEPALIVE on fd %d", sockfd);
155155 }
156156 #endif
157157 #endif
622622 data->info.conn_scheme = conn->handler->scheme;
623623 data->info.conn_protocol = conn->handler->protocol;
624624 data->info.conn_primary_port = conn->port;
625 data->info.conn_remote_port = conn->remote_port;
625626 data->info.conn_local_port = local_port;
626627 }
627628
14861487 find.id_tofind = data->state.lastconnect_id;
14871488 find.found = NULL;
14881489
1489 Curl_conncache_foreach(data, data->multi_easy?
1490 Curl_conncache_foreach(data,
1491 data->share && (data->share->specifier
1492 & (1<< CURL_LOCK_DATA_CONNECT))?
1493 &data->share->conn_cache:
1494 data->multi_easy?
14901495 &data->multi_easy->conn_cache:
14911496 &data->multi->conn_cache, &find, conn_is_conn);
14921497
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
11871187 fp = stdin;
11881188 fromfile = FALSE;
11891189 }
1190 else if(file && !*file) {
1191 /* points to a "" string */
1190 else if(!file || !*file) {
1191 /* points to an empty string or NULL */
11921192 fp = NULL;
11931193 }
1194 else
1195 fp = file?fopen(file, FOPEN_READTEXT):NULL;
1194 else {
1195 fp = fopen(file, FOPEN_READTEXT);
1196 if(!fp)
1197 infof(data, "WARNING: failed to open cookie file \"%s\"", file);
1198 }
11961199
11971200 c->newsession = newsession; /* new session? */
11981201
12261229 */
12271230 remove_expired(c);
12281231
1229 if(fromfile)
1232 if(fromfile && fp)
12301233 fclose(fp);
12311234 }
12321235
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
948948 /* Define to 1 if you have the quiche_conn_set_qlog_fd function. */
949949 #cmakedefine HAVE_QUICHE_CONN_SET_QLOG_FD 1
950950
951 /* to enable msh3 */
952 #cmakedefine USE_MSH3 1
953
951954 /* if Unix domain sockets are enabled */
952955 #cmakedefine USE_UNIX_SOCKETS
953956
444444
445445 /* Define to 1 if you have the MSG_NOSIGNAL flag. */
446446 #undef HAVE_MSG_NOSIGNAL
447
448 /* Define to 1 if you have the <msh3.h> header file. */
449 #undef HAVE_MSH3_H
447450
448451 /* Define to 1 if you have the <netdb.h> header file. */
449452 #undef HAVE_NETDB_H
938941 /* GSASL support enabled */
939942 #undef USE_GSASL
940943
944 /* enable headers-api */
945 #undef USE_HEADERS_API
946
941947 /* if hyper is in use */
942948 #undef USE_HYPER
943949
958964
959965 /* if mbedTLS is enabled */
960966 #undef USE_MBEDTLS
967
968 /* if msh3 is in use */
969 #undef USE_MSH3
961970
962971 /* if nghttp2 is in use */
963972 #undef USE_NGHTTP2
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 2011 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 2011 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
5959 #ifdef GSS_C_DELEG_POLICY_FLAG
6060 req_flags |= GSS_C_DELEG_POLICY_FLAG;
6161 #else
62 infof(data, "warning: support for CURLGSSAPI_DELEGATION_POLICY_FLAG not "
62 infof(data, "WARNING: support for CURLGSSAPI_DELEGATION_POLICY_FLAG not "
6363 "compiled in");
6464 #endif
6565 }
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
103103 #ifdef _UNICODE
104104 if(filename_w) {
105105 result = _wopen(filename_w, oflag, pmode);
106 free(filename_w);
106 curlx_unicodefree(filename_w);
107107 }
108108 else
109109 errno = EINVAL;
123123 result = _wfopen(filename_w, mode_w);
124124 else
125125 errno = EINVAL;
126 free(filename_w);
127 free(mode_w);
126 curlx_unicodefree(filename_w);
127 curlx_unicodefree(mode_w);
128128 return result;
129129 #else
130130 return (fopen)(filename, mode);
142142 #else
143143 result = _wstati64(path_w, buffer);
144144 #endif
145 free(path_w);
145 curlx_unicodefree(path_w);
146146 }
147147 else
148148 errno = EINVAL;
163163 wchar_t *path_w = curlx_convert_UTF8_to_wchar(path);
164164 if(path_w) {
165165 result = _waccess(path_w, mode);
166 free(path_w);
166 curlx_unicodefree(path_w);
167167 }
168168 else
169169 errno = EINVAL;
669669 #endif
670670
671671 case SASL_OAUTH2:
672 /* Create the authorisation message */
672 /* Create the authorization message */
673673 if(sasl->authused == SASL_MECH_OAUTHBEARER) {
674674 result = Curl_auth_create_oauth_bearer_message(conn->user,
675675 hostname,
793793 #define USE_HTTP2
794794 #endif
795795
796 #if defined(USE_NGTCP2) || defined(USE_QUICHE)
796 #if defined(USE_NGTCP2) || defined(USE_QUICHE) || defined(USE_MSH3)
797797 #define ENABLE_QUIC
798798 #endif
799799
251251 ERROR_CHECK_SETOPT(CURLOPT_POSTFIELDS, p->dohbuffer);
252252 ERROR_CHECK_SETOPT(CURLOPT_POSTFIELDSIZE, (long)p->dohlen);
253253 ERROR_CHECK_SETOPT(CURLOPT_HTTPHEADER, headers);
254 #ifdef USE_NGHTTP2
254 #ifdef USE_HTTP2
255255 ERROR_CHECK_SETOPT(CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2TLS);
256256 #endif
257257 #ifndef CURLDEBUG
11011101
11021102 /* only allow these to be called on handles with CURLOPT_CONNECT_ONLY */
11031103 if(!data->set.connect_only) {
1104 failf(data, "CONNECT_ONLY is required!");
1104 failf(data, "CONNECT_ONLY is required");
11051105 return CURLE_UNSUPPORTED_PROTOCOL;
11061106 }
11071107
+0
-53
lib/firefox-db2pem.sh less more
0 #!/bin/sh
1 # ***************************************************************************
2 # * _ _ ____ _
3 # * Project ___| | | | _ \| |
4 # * / __| | | | |_) | |
5 # * | (__| |_| | _ <| |___
6 # * \___|\___/|_| \_\_____|
7 # *
8 # * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
9 # *
10 # * This software is licensed as described in the file COPYING, which
11 # * you should have received as part of this distribution. The terms
12 # * are also available at https://curl.se/docs/copyright.html.
13 # *
14 # * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # * copies of the Software, and permit persons to whom the Software is
16 # * furnished to do so, under the terms of the COPYING file.
17 # *
18 # * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # * KIND, either express or implied.
20 # *
21 # ***************************************************************************
22 # This shell script creates a fresh ca-bundle.crt file for use with libcurl.
23 # It extracts all ca certs it finds in the local Firefox database and converts
24 # them all into PEM format.
25 #
26 db=`ls -1d $HOME/.mozilla/firefox/*default*`
27 out=$1
28
29 if test -z "$out"; then
30 out="ca-bundle.crt" # use a sensible default
31 fi
32
33 currentdate=`date`
34
35 cat >$out <<EOF
36 ##
37 ## Bundle of CA Root Certificates
38 ##
39 ## Converted at: ${currentdate}
40 ## These were converted from the local Firefox directory by the db2pem script.
41 ##
42 EOF
43
44
45 certutil -L -h 'Builtin Object Token' -d $db | \
46 grep ' *[CcGTPpu]*,[CcGTPpu]*,[CcGTPpu]* *$' | \
47 sed -e 's/ *[CcGTPpu]*,[CcGTPpu]*,[CcGTPpu]* *$//' -e 's/\(.*\)/"\1"/' | \
48 sort | \
49 while read nickname; \
50 do echo $nickname | sed -e "s/Builtin Object Token://g"; \
51 eval certutil -d $db -L -n "$nickname" -a ; \
52 done >> $out
590590 * This response code can come at any point so having it treated
591591 * generically is a good idea.
592592 */
593 infof(data, "We got a 421 - timeout!");
593 infof(data, "We got a 421 - timeout");
594594 state(data, FTP_STOP);
595595 return CURLE_OPERATION_TIMEDOUT;
596596 }
11641164
11651165 /* maybe all ports were in use already*/
11661166 if(port > port_max) {
1167 failf(data, "bind() failed, we ran out of ports!");
1167 failf(data, "bind() failed, we ran out of ports");
11681168 Curl_closesocket(data, conn, portsock);
11691169 return CURLE_FTP_PORT_FAILED;
11701170 }
27012701 Curl_sec_request_prot(conn, data->set.str[STRING_KRB_LEVEL]);
27022702
27032703 if(Curl_sec_login(data, conn))
2704 infof(data, "Logging in with password in cleartext!");
2704 infof(data, "Logging in with password in cleartext");
27052705 else
27062706 infof(data, "Authentication successful");
27072707 }
33803380 (ftp->transfer == PPTRANSFER_BODY)) {
33813381 failf(data, "Uploaded unaligned file size (%" CURL_FORMAT_CURL_OFF_T
33823382 " out of %" CURL_FORMAT_CURL_OFF_T " bytes)",
3383 data->req.bytecount, data->state.infilesize);
3383 data->req.writebytecount, data->state.infilesize);
33843384 result = CURLE_PARTIAL_FILE;
33853385 }
33863386 }
34033403 else if(!ftpc->dont_check &&
34043404 !data->req.bytecount &&
34053405 (data->req.size>0)) {
3406 failf(data, "No data was received!");
3406 failf(data, "No data was received");
34073407 result = CURLE_FTP_COULDNT_RETR_FILE;
34083408 }
34093409 }
42344234
42354235 if(data->set.upload && !ftpc->file && (ftp->transfer == PPTRANSFER_BODY)) {
42364236 /* We need a file name when uploading. Return error! */
4237 failf(data, "Uploading to a URL without a file name!");
4237 failf(data, "Uploading to a URL without a file name");
42384238 free(rawPath);
42394239 return CURLE_URL_MALFORMAT;
42404240 }
113113 }
114114
115115 CURLcode Curl_pseudo_headers(struct Curl_easy *data,
116 const char *mem, /* the requeset */
116 const char *mem, /* the request */
117117 const size_t len /* size of request */,
118118 struct h2h3req **hp)
119119 {
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21
22 #include "curl_setup.h"
23
24 #include "urldata.h"
25 #include "strdup.h"
26 #include "strcase.h"
27 #include "headers.h"
28
29 /* The last 3 #include files should be in this order */
30 #include "curl_printf.h"
31 #include "curl_memory.h"
32 #include "memdebug.h"
33
34 #if !defined(CURL_DISABLE_HTTP) && defined(USE_HEADERS_API)
35
36 /* Generate the curl_header struct for the user. This function MUST assign all
37 struct fields in the output struct. */
38 static void copy_header_external(struct Curl_easy *data,
39 struct Curl_header_store *hs,
40 size_t index,
41 size_t amount,
42 struct Curl_llist_element *e,
43 struct curl_header **hout)
44 {
45 struct curl_header *h = *hout = &data->state.headerout;
46 h->name = hs->name;
47 h->value = hs->value;
48 h->amount = amount;
49 h->index = index;
50 /* this will randomly OR a reserved bit for the sole purpose of making it
51 impossible for applications to do == comparisons, as that would otherwise
52 be very tempting and then lead to the reserved bits not being reserved
53 anymore. */
54 h->origin = hs->type | (1<<27);
55 h->anchor = e;
56 }
57
58 /* public API */
59 CURLHcode curl_easy_header(CURL *easy,
60 const char *name,
61 size_t nameindex,
62 unsigned int type,
63 int request,
64 struct curl_header **hout)
65 {
66 struct Curl_llist_element *e;
67 struct Curl_llist_element *e_pick = NULL;
68 struct Curl_easy *data = easy;
69 size_t match = 0;
70 size_t amount = 0;
71 struct Curl_header_store *hs = NULL;
72 struct Curl_header_store *pick = NULL;
73 if(!name || !hout || !data ||
74 (type > (CURLH_HEADER|CURLH_TRAILER|CURLH_CONNECT|CURLH_1XX)) ||
75 !type || (request < -1))
76 return CURLHE_BAD_ARGUMENT;
77 if(!Curl_llist_count(&data->state.httphdrs))
78 return CURLHE_NOHEADERS; /* no headers available */
79 if(request > data->state.requests)
80 return CURLHE_NOREQUEST;
81 if(request == -1)
82 request = data->state.requests;
83
84 /* we need a first round to count amount of this header */
85 for(e = data->state.httphdrs.head; e; e = e->next) {
86 hs = e->ptr;
87 if(strcasecompare(hs->name, name) &&
88 (hs->type & type) &&
89 (hs->request == request)) {
90 amount++;
91 pick = hs;
92 e_pick = e;
93 }
94 }
95 if(!amount)
96 return CURLHE_MISSING;
97 else if(nameindex >= amount)
98 return CURLHE_BADINDEX;
99
100 if(nameindex == amount - 1)
101 /* if the last or only occurrence is what's asked for, then we know it */
102 hs = pick;
103 else {
104 for(e = data->state.httphdrs.head; e; e = e->next) {
105 hs = e->ptr;
106 if(strcasecompare(hs->name, name) &&
107 (hs->type & type) &&
108 (hs->request == request) &&
109 (match++ == nameindex)) {
110 e_pick = e;
111 break;
112 }
113 }
114 if(!e) /* this shouldn't happen */
115 return CURLHE_MISSING;
116 }
117 /* this is the name we want */
118 copy_header_external(data, hs, nameindex, amount, e_pick, hout);
119 return CURLHE_OK;
120 }
121
122 /* public API */
123 struct curl_header *curl_easy_nextheader(CURL *easy,
124 unsigned int type,
125 int request,
126 struct curl_header *prev)
127 {
128 struct Curl_easy *data = easy;
129 struct Curl_llist_element *pick;
130 struct Curl_llist_element *e;
131 struct Curl_header_store *hs;
132 struct curl_header *hout;
133 size_t amount = 0;
134 size_t index = 0;
135
136 if(request > data->state.requests)
137 return NULL;
138 if(request == -1)
139 request = data->state.requests;
140
141 if(prev) {
142 pick = prev->anchor;
143 if(!pick)
144 /* something is wrong */
145 return NULL;
146 pick = pick->next;
147 }
148 else
149 pick = data->state.httphdrs.head;
150
151 if(pick) {
152 /* make sure it is the next header of the desired type */
153 do {
154 hs = pick->ptr;
155 if((hs->type & type) && (hs->request == request))
156 break;
157 pick = pick->next;
158 } while(pick);
159 }
160
161 if(!pick)
162 /* no more headers available */
163 return NULL;
164
165 hs = pick->ptr;
166
167 /* count number of occurrences of this name within the mask and figure out
168 the index for the currently selected entry */
169 for(e = data->state.httphdrs.head; e; e = e->next) {
170 struct Curl_header_store *check = e->ptr;
171 if(strcasecompare(hs->name, check->name) &&
172 (check->request == request) &&
173 (check->type & type))
174 amount++;
175 if(e == pick)
176 index = amount - 1;
177 }
178
179 copy_header_external(data, hs, index, amount, pick, &hout);
180 return hout;
181 }
182
183 static CURLcode namevalue(char *header, size_t hlen, unsigned int type,
184 char **name, char **value)
185 {
186 char *end = header + hlen - 1; /* point to the last byte */
187 DEBUGASSERT(hlen);
188 *name = header;
189
190 if(type == CURLH_PSEUDO) {
191 if(*header != ':')
192 return CURLE_BAD_FUNCTION_ARGUMENT;
193 header++;
194 }
195
196 /* Find the end of the header name */
197 while(*header && (*header != ':'))
198 ++header;
199
200 if(*header)
201 /* Skip over colon, null it */
202 *header++ = 0;
203 else
204 return CURLE_BAD_FUNCTION_ARGUMENT;
205
206 /* skip all leading space letters */
207 while(*header && ISSPACE(*header))
208 header++;
209
210 *value = header;
211
212 /* skip all trailing space letters */
213 while((end > header) && ISSPACE(*end))
214 *end-- = 0; /* nul terminate */
215 return CURLE_OK;
216 }
217
218 /*
219 * Curl_headers_push() gets passed a full HTTP header to store. It gets called
220 * immediately before the header callback. The header is CRLF terminated.
221 */
222 CURLcode Curl_headers_push(struct Curl_easy *data, const char *header,
223 unsigned char type)
224 {
225 char *value = NULL;
226 char *name = NULL;
227 char *end;
228 size_t hlen; /* length of the incoming header */
229 struct Curl_header_store *hs;
230 CURLcode result = CURLE_OUT_OF_MEMORY;
231
232 if((header[0] == '\r') || (header[0] == '\n'))
233 /* ignore the body separator */
234 return CURLE_OK;
235
236 end = strchr(header, '\r');
237 if(!end) {
238 end = strchr(header, '\n');
239 if(!end)
240 return CURLE_BAD_FUNCTION_ARGUMENT;
241 }
242 hlen = end - header + 1;
243
244 hs = calloc(1, sizeof(*hs) + hlen);
245 if(!hs)
246 return CURLE_OUT_OF_MEMORY;
247 memcpy(hs->buffer, header, hlen);
248 hs->buffer[hlen] = 0; /* nul terminate */
249
250 result = namevalue(hs->buffer, hlen, type, &name, &value);
251 if(result)
252 goto fail;
253
254 hs->name = name;
255 hs->value = value;
256 hs->type = type;
257 hs->request = data->state.requests;
258
259 /* insert this node into the list of headers */
260 Curl_llist_insert_next(&data->state.httphdrs, data->state.httphdrs.tail,
261 hs, &hs->node);
262
263 return CURLE_OK;
264 fail:
265 free(hs);
266 return result;
267 }
268
269 /*
270 * Curl_headers_init(). Init the headers subsystem.
271 */
272 static void headers_init(struct Curl_easy *data)
273 {
274 Curl_llist_init(&data->state.httphdrs, NULL);
275 }
276
277 /*
278 * Curl_headers_cleanup(). Free all stored headers and associated memory.
279 */
280 CURLcode Curl_headers_cleanup(struct Curl_easy *data)
281 {
282 struct Curl_llist_element *e;
283 struct Curl_llist_element *n;
284
285 for(e = data->state.httphdrs.head; e; e = n) {
286 struct Curl_header_store *hs = e->ptr;
287 n = e->next;
288 free(hs);
289 }
290 headers_init(data);
291 return CURLE_OK;
292 }
293
294 #else /* HTTP-disabled builds below */
295
296 CURLHcode curl_easy_header(CURL *easy,
297 const char *name,
298 size_t index,
299 unsigned int origin,
300 int request,
301 struct curl_header **hout)
302 {
303 (void)easy;
304 (void)name;
305 (void)index;
306 (void)origin;
307 (void)request;
308 (void)hout;
309 return CURLHE_NOT_BUILT_IN;
310 }
311
312 struct curl_header *curl_easy_nextheader(CURL *easy,
313 unsigned int type,
314 int request,
315 struct curl_header *prev)
316 {
317 (void)easy;
318 (void)type;
319 (void)request;
320 (void)prev;
321 return NULL;
322 }
323 #endif
0 #ifndef HEADER_CURL_HEADER_H
1 #define HEADER_CURL_HEADER_H
2 /***************************************************************************
3 * _ _ ____ _
4 * Project ___| | | | _ \| |
5 * / __| | | | |_) | |
6 * | (__| |_| | _ <| |___
7 * \___|\___/|_| \_\_____|
8 *
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
10 *
11 * This software is licensed as described in the file COPYING, which
12 * you should have received as part of this distribution. The terms
13 * are also available at https://curl.se/docs/copyright.html.
14 *
15 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 * copies of the Software, and permit persons to whom the Software is
17 * furnished to do so, under the terms of the COPYING file.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ***************************************************************************/
23 #include "curl_setup.h"
24
25 #if !defined(CURL_DISABLE_HTTP) && defined(USE_HEADERS_API)
26
27 struct Curl_header_store {
28 struct Curl_llist_element node;
29 char *name; /* points into 'buffer' */
30 char *value; /* points into 'buffer */
31 int request; /* 0 is the first request, then 1.. 2.. */
32 unsigned char type; /* CURLH_* defines */
33 char buffer[1]; /* this is the raw header blob */
34 };
35
36 /*
37 * Curl_headers_push() gets passed a full header to store.
38 */
39 CURLcode Curl_headers_push(struct Curl_easy *data, const char *header,
40 unsigned char type);
41
42 /*
43 * Curl_headers_cleanup(). Free all stored headers and associated memory.
44 */
45 CURLcode Curl_headers_cleanup(struct Curl_easy *data);
46
47 #else
48 #define Curl_headers_push(x,y,z) CURLE_OK
49 #define Curl_headers_cleanup(x) Curl_nop_stmt
50 #endif
51
52 #endif /* HEADER_CURL_HEADER_H */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
3838 * Generic HMAC algorithm.
3939 *
4040 * This module computes HMAC digests based on any hash function. Parameters
41 * and computing procedures are set-up dynamically at HMAC computation
42 * context initialisation.
41 * and computing procedures are set-up dynamically at HMAC computation context
42 * initialization.
4343 */
4444
4545 static const unsigned char hmac_ipad = 0x36;
944944 less than 1! */
945945 alarm(1);
946946 rc = CURLRESOLV_TIMEDOUT;
947 failf(data, "Previous alarm fired off!");
947 failf(data, "Previous alarm fired off");
948948 }
949949 else
950950 alarm((unsigned int)alarm_set);
11301130
11311131 ai = Curl_str2addr(address, port);
11321132 if(!ai) {
1133 infof(data, "Resolve address '%s' found illegal!", address);
1133 infof(data, "Resolve address '%s' found illegal", address);
11341134 goto err;
11351135 }
11361136
11491149 error = false;
11501150 err:
11511151 if(error) {
1152 failf(data, "Couldn't parse CURLOPT_RESOLVE entry '%s'!",
1152 failf(data, "Couldn't parse CURLOPT_RESOLVE entry '%s'",
11531153 hostp->data);
11541154 Curl_freeaddrinfo(head);
11551155 return CURLE_SETOPT_OPTION_SYNTAX;
11661166 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1);
11671167
11681168 if(dns) {
1169 infof(data, "RESOLVE %s:%d is - old addresses discarded!",
1170 hostname, port);
1169 infof(data, "RESOLVE %s:%d is - old addresses discarded",
1170 hostname, port);
11711171 /* delete old entry, there are two reasons for this
11721172 1. old entry may have different addresses.
11731173 2. even if entry with correct addresses is already in the cache,
774774 return CURLE_OK;
775775 }
776776
777 /*
778 * Curl_allow_auth_to_host() tells if authentication, cookies or other
779 * "sensitive data" can (still) be sent to this host.
780 */
781 bool Curl_allow_auth_to_host(struct Curl_easy *data)
782 {
783 struct connectdata *conn = data->conn;
784 return (!data->state.this_is_a_follow ||
785 data->set.allow_auth_to_other_hosts ||
786 (data->state.first_host &&
787 strcasecompare(data->state.first_host, conn->host.name) &&
788 (data->state.first_remote_port == conn->remote_port) &&
789 (data->state.first_remote_protocol == conn->handler->protocol)));
790 }
791
777792 /**
778793 * Curl_http_output_auth() setups the authentication headers for the
779794 * host/proxy and the correct authentication
846861 with it */
847862 authproxy->done = TRUE;
848863
849 /* To prevent the user+password to get sent to other than the original
850 host due to a location-follow, we do some weirdo checks here */
851 if(!data->state.this_is_a_follow ||
864 /* To prevent the user+password to get sent to other than the original host
865 due to a location-follow */
866 if(Curl_allow_auth_to_host(data)
852867 #ifndef CURL_DISABLE_NETRC
853 conn->bits.netrc ||
854 #endif
855 !data->state.first_host ||
856 data->set.allow_auth_to_other_hosts ||
857 strcasecompare(data->state.first_host, conn->host.name)) {
868 || conn->bits.netrc
869 #endif
870 )
858871 result = output_auth_headers(data, conn, authhost, request, path, FALSE);
859 }
860872 else
861873 authhost->done = TRUE;
862874
17661778 return result;
17671779 }
17681780 else
1769 infof(handle, "Malformatted trailing header ! Skipping trailer.");
1781 infof(handle, "Malformatted trailing header, skipping trailer");
17701782 trailers = trailers->next;
17711783 }
17721784 result = Curl_dyn_add(b, endofline_network);
19041916 checkprefix("Cookie:", compare)) &&
19051917 /* be careful of sending this potentially sensitive header to
19061918 other hosts */
1907 (data->state.this_is_a_follow &&
1908 data->state.first_host &&
1909 !data->set.allow_auth_to_other_hosts &&
1910 !strcasecompare(data->state.first_host, conn->host.name)))
1919 !Curl_allow_auth_to_host(data))
19111920 ;
19121921 else {
19131922 #ifdef USE_HYPER
20832092 return CURLE_OUT_OF_MEMORY;
20842093
20852094 data->state.first_remote_port = conn->remote_port;
2095 data->state.first_remote_protocol = conn->handler->protocol;
20862096 }
20872097 Curl_safefree(data->state.aptr.host);
20882098
29262936 /* The resume point is at the end of file, consider this fine even if it
29272937 doesn't allow resume from here. */
29282938 infof(data, "The entire document is already downloaded");
2929 connclose(conn, "already downloaded");
2939 streamclose(conn, "already downloaded");
29302940 /* Abort download */
29312941 k->keepon &= ~KEEP_RECV;
29322942 *done = TRUE;
29512961 /* We're simulating a http 304 from server so we return
29522962 what should have been returned from the server */
29532963 data->info.httpcode = 304;
2954 infof(data, "Simulate a HTTP 304 response!");
2964 infof(data, "Simulate a HTTP 304 response");
29552965 /* we abort the transfer before it is completed == we ruin the
29562966 re-use ability. Close the connection */
2957 connclose(conn, "Simulated 304 handling");
2967 streamclose(conn, "Simulated 304 handling");
29582968 return CURLE_OK;
29592969 }
29602970 } /* we have a time condition */
33843394 return CURLE_FILESIZE_EXCEEDED;
33853395 }
33863396 streamclose(conn, "overflow content-length");
3387 infof(data, "Overflow Content-Length: value!");
3397 infof(data, "Overflow Content-Length: value");
33883398 }
33893399 else {
33903400 /* negative or just rubbish - bad HTTP */
34183428 * Default action for 1.0 is to close.
34193429 */
34203430 connkeep(conn, "Proxy-Connection keep-alive"); /* don't close */
3421 infof(data, "HTTP/1.0 proxy connection set to keep alive!");
3431 infof(data, "HTTP/1.0 proxy connection set to keep alive");
34223432 }
34233433 else if((conn->httpversion == 11) &&
34243434 conn->bits.httpproxy &&
34303440 * close down after this transfer.
34313441 */
34323442 connclose(conn, "Proxy-Connection: asked to close after done");
3433 infof(data, "HTTP/1.1 proxy connection set close!");
3443 infof(data, "HTTP/1.1 proxy connection set close");
34343444 }
34353445 #endif
34363446 else if((conn->httpversion == 10) &&
34443454 *
34453455 * [RFC2068, section 19.7.1] */
34463456 connkeep(conn, "Connection keep-alive");
3447 infof(data, "HTTP/1.0 connection set to keep alive!");
3457 infof(data, "HTTP/1.0 connection set to keep alive");
34483458 }
34493459 else if(Curl_compareheader(headp,
34503460 STRCONST("Connection:"), STRCONST("close"))) {
37703780 }
37713781 Curl_pgrsSetDownloadSize(data, k->size);
37723782 k->maxdownload = k->size;
3783 }
3784 return CURLE_OK;
3785 }
3786
3787 static CURLcode verify_header(struct Curl_easy *data)
3788 {
3789 struct SingleRequest *k = &data->req;
3790 const char *header = Curl_dyn_ptr(&data->state.headerb);
3791 size_t hlen = Curl_dyn_len(&data->state.headerb);
3792 char *ptr = memchr(header, 0x00, hlen);
3793 if(ptr) {
3794 /* this is bad, bail out */
3795 failf(data, "Nul byte in header");
3796 return CURLE_WEIRD_SERVER_REPLY;
3797 }
3798 if(k->headerline < 2)
3799 /* the first "header" is the status-line and it has no colon */
3800 return CURLE_OK;
3801 ptr = memchr(header, ':', hlen);
3802 if(!ptr) {
3803 /* this is bad, bail out */
3804 failf(data, "Header without colon");
3805 return CURLE_WEIRD_SERVER_REPLY;
37733806 }
37743807 return CURLE_OK;
37753808 }
39964029
39974030 /* now, only output this if the header AND body are requested:
39984031 */
3999 writetype = CLIENTWRITE_HEADER;
4000 if(data->set.include_header)
4001 writetype |= CLIENTWRITE_BODY;
4032 writetype = CLIENTWRITE_HEADER |
4033 (data->set.include_header ? CLIENTWRITE_BODY : 0) |
4034 ((k->httpcode/100 == 1) ? CLIENTWRITE_1XX : 0);
40024035
40034036 headerlen = Curl_dyn_len(&data->state.headerb);
40044037 result = Curl_client_write(data, writetype,
40954128 if(conn->bits.rewindaftersend) {
40964129 /* We rewind after a complete send, so thus we continue
40974130 sending now */
4098 infof(data, "Keep sending data to get tossed away!");
4131 infof(data, "Keep sending data to get tossed away");
40994132 k->keepon |= KEEP_SEND;
41004133 }
41014134 }
41514184 * Checks for special headers coming up.
41524185 */
41534186
4187 writetype = CLIENTWRITE_HEADER;
41544188 if(!k->headerline++) {
41554189 /* This is the first header, it MUST be the error code line
41564190 or else we consider this to be the body right away! */
42034237 switch(httpversion) {
42044238 case 10:
42054239 case 11:
4206 #if defined(USE_NGHTTP2) || defined(USE_HYPER)
4240 #ifdef USE_HTTP2
42074241 case 20:
42084242 #endif
4209 #if defined(ENABLE_QUIC)
4243 #ifdef ENABLE_QUIC
42104244 case 30:
42114245 #endif
42124246 conn->httpversion = (unsigned char)httpversion;
42754309 result = Curl_http_statusline(data, conn);
42764310 if(result)
42774311 return result;
4312 writetype |= CLIENTWRITE_STATUS;
42784313 }
42794314 else {
42804315 k->header = FALSE; /* this is not a header line */
42824317 }
42834318 }
42844319
4320 result = verify_header(data);
4321 if(result)
4322 return result;
4323
42854324 result = Curl_http_header(data, conn, headp);
42864325 if(result)
42874326 return result;
42894328 /*
42904329 * End of header-checks. Write them to the client.
42914330 */
4292
4293 writetype = CLIENTWRITE_HEADER;
42944331 if(data->set.include_header)
42954332 writetype |= CLIENTWRITE_BODY;
4333 if(k->httpcode/100 == 1)
4334 writetype |= CLIENTWRITE_1XX;
42964335
42974336 Curl_debug(data, CURLINFO_HEADER_IN, headp,
42984337 Curl_dyn_len(&data->state.headerb));
3535
3636 #ifdef USE_NGHTTP2
3737 #include <nghttp2/nghttp2.h>
38 #endif
39
40 #if defined(_WIN32) && defined(ENABLE_QUIC)
41 #include <stdint.h>
3842 #endif
3943
4044 extern const struct Curl_handler Curl_handler_http;
162166 struct h3out; /* see ngtcp2 */
163167 #endif
164168
169 #ifdef USE_MSH3
170 #ifdef _WIN32
171 #define msh3_lock CRITICAL_SECTION
172 #define msh3_lock_initialize(lock) InitializeCriticalSection(lock)
173 #define msh3_lock_uninitialize(lock) DeleteCriticalSection(lock)
174 #define msh3_lock_acquire(lock) EnterCriticalSection(lock)
175 #define msh3_lock_release(lock) LeaveCriticalSection(lock)
176 #else /* !_WIN32 */
177 #include <pthread.h>
178 #define msh3_lock pthread_mutex_t
179 #define msh3_lock_initialize(lock) { \
180 pthread_mutexattr_t attr; \
181 pthread_mutexattr_init(&attr); \
182 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); \
183 pthread_mutex_init(lock, &attr); \
184 pthread_mutexattr_destroy(&attr); \
185 }
186 #define msh3_lock_uninitialize(lock) pthread_mutex_destroy(lock)
187 #define msh3_lock_acquire(lock) pthread_mutex_lock(lock)
188 #define msh3_lock_release(lock) pthread_mutex_unlock(lock)
189 #endif /* _WIN32 */
190 #endif /* USE_MSH3 */
191
165192 /****************************************************************************
166193 * HTTP unique setup
167194 ***************************************************************************/
227254 #endif
228255
229256 #ifdef ENABLE_QUIC
257 #ifndef USE_MSH3
230258 /*********** for HTTP/3 we store stream-local data here *************/
231259 int64_t stream3_id; /* stream we are interested in */
232260 bool firstheader; /* FALSE until headers arrive */
233261 bool firstbody; /* FALSE until body arrives */
234262 bool h3req; /* FALSE until request is issued */
263 #endif
235264 bool upload_done;
236265 #endif
237266 #ifdef USE_NGHTTP3
238267 size_t unacked_window;
239268 struct h3out *h3out; /* per-stream buffers for upload */
240269 struct dynbuf overflow; /* excess data received during a single Curl_read */
270 #endif
271 #ifdef USE_MSH3
272 struct MSH3_REQUEST *req;
273 msh3_lock recv_lock;
274 /* Receive Buffer (Headers and Data) */
275 uint8_t* recv_buf;
276 size_t recv_buf_alloc;
277 /* Receive Headers */
278 size_t recv_header_len;
279 bool recv_header_complete;
280 /* Receive Data */
281 size_t recv_data_len;
282 bool recv_data_complete;
283 /* General Receive Error */
284 CURLcode recv_error;
241285 #endif
242286 };
243287
319363 bool proxytunnel); /* TRUE if this is the request setting
320364 up the proxy tunnel */
321365
366 /*
367 * Curl_allow_auth_to_host() tells if authentication, cookies or other
368 * "sensitive data" can (still) be sent to this host.
369 */
370 bool Curl_allow_auth_to_host(struct Curl_easy *data);
371
322372 #endif /* HEADER_CURL_HTTP_H */
3838 #include "transfer.h"
3939 #include "dynbuf.h"
4040 #include "h2h3.h"
41 #include "headers.h"
4142 /* The last 3 #include files should be in this order */
4243 #include "curl_printf.h"
4344 #include "curl_memory.h"
560561 const nghttp2_push_promise *frame)
561562 {
562563 int rv; /* one of the CURL_PUSH_* defines */
563 H2BUGF(infof(data, "PUSH_PROMISE received, stream %u!",
564 H2BUGF(infof(data, "PUSH_PROMISE received, stream %u",
564565 frame->promised_stream_id));
565566 if(data->multi->push_cb) {
566567 struct HTTP *stream;
580581 heads.data = data;
581582 heads.frame = frame;
582583 /* ask the application */
583 H2BUGF(infof(data, "Got PUSH_PROMISE, ask application!"));
584 H2BUGF(infof(data, "Got PUSH_PROMISE, ask application"));
584585
585586 stream = data->req.p.http;
586587 if(!stream) {
587 failf(data, "Internal NULL stream!");
588 failf(data, "Internal NULL stream");
588589 (void)Curl_close(&newhandle);
589590 rv = CURL_PUSH_DENY;
590591 goto fail;
651652 Curl_dyn_init(&newstream->trailer_recvbuf, DYN_H2_TRAILERS);
652653 }
653654 else {
654 H2BUGF(infof(data, "Got PUSH_PROMISE, ignore it!"));
655 H2BUGF(infof(data, "Got PUSH_PROMISE, ignore it"));
655656 rv = CURL_PUSH_DENY;
656657 }
657658 fail:
800801 }
801802 break;
802803 default:
803 H2BUGF(infof(data_s, "Got frame type %x for stream %u!",
804 H2BUGF(infof(data_s, "Got frame type %x for stream %u",
804805 frame->hd.type, stream_id));
805806 break;
806807 }
823824
824825 /* get the stream from the hash based on Stream ID */
825826 data_s = nghttp2_session_get_stream_user_data(session, stream_id);
826 if(!data_s)
827 /* Receiving a Stream ID not in the hash should not happen, this is an
828 internal error more than anything else! */
829 return NGHTTP2_ERR_CALLBACK_FAILURE;
827 if(!data_s) {
828 /* Receiving a Stream ID not in the hash should not happen - unless
829 we have aborted a transfer artificially and there were more data
830 in the pipeline. Silently ignore. */
831 H2BUGF(fprintf(stderr, "Data for stream %u but it doesn't exist\n",
832 stream_id));
833 return 0;
834 }
830835
831836 stream = data_s->req.p.http;
832837 if(!stream)
907912 /* remove the entry from the hash as the stream is now gone */
908913 rv = nghttp2_session_set_stream_user_data(session, stream_id, 0);
909914 if(rv) {
910 infof(data_s, "http/2: failed to clear user_data for stream %d!",
915 infof(data_s, "http/2: failed to clear user_data for stream %d",
911916 stream_id);
912917 DEBUGASSERT(0);
913918 }
914919 if(stream_id == httpc->pause_stream_id) {
915 H2BUGF(infof(data_s, "Stopped the pause stream!"));
920 H2BUGF(infof(data_s, "Stopped the pause stream"));
916921 httpc->pause_stream_id = 0;
917922 }
918 H2BUGF(infof(data_s, "Removed stream %u hash!", stream_id));
923 H2BUGF(infof(data_s, "Removed stream %u hash", stream_id));
919924 stream->stream_id = 0; /* cleared */
920925 }
921926 return 0;
10001005
10011006 stream = data_s->req.p.http;
10021007 if(!stream) {
1003 failf(data_s, "Internal NULL stream!");
1008 failf(data_s, "Internal NULL stream");
10041009 return NGHTTP2_ERR_CALLBACK_FAILURE;
10051010 }
10061011
10771082 /* nghttp2 guarantees :status is received first and only once, and
10781083 value is 3 digits status code, and decode_status_code always
10791084 succeeds. */
1085 char buffer[32];
10801086 stream->status_code = decode_status_code(value, valuelen);
10811087 DEBUGASSERT(stream->status_code != -1);
1082
1088 msnprintf(buffer, sizeof(buffer), H2H3_PSEUDO_STATUS ":%u\r",
1089 stream->status_code);
1090 result = Curl_headers_push(data_s, buffer, CURLH_PSEUDO);
1091 if(result)
1092 return NGHTTP2_ERR_CALLBACK_FAILURE;
10831093 result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST("HTTP/2 "));
10841094 if(result)
10851095 return NGHTTP2_ERR_CALLBACK_FAILURE;
12271237 !httpc->h2) /* not HTTP/2 ? */
12281238 return;
12291239
1230 if(premature) {
1240 /* do this before the reset handling, as that might clear ->stream_id */
1241 if(http->stream_id == httpc->pause_stream_id) {
1242 H2BUGF(infof(data, "DONE the pause stream (%x)", http->stream_id));
1243 httpc->pause_stream_id = 0;
1244 }
1245 if(premature || (!http->closed && http->stream_id)) {
12311246 /* RST_STREAM */
12321247 set_transfer(httpc, data); /* set the transfer */
1248 H2BUGF(infof(data, "RST stream %x", http->stream_id));
12331249 if(!nghttp2_submit_rst_stream(httpc->h2, NGHTTP2_FLAG_NONE,
12341250 http->stream_id, NGHTTP2_STREAM_CLOSED))
12351251 (void)nghttp2_session_send(httpc->h2);
1236
1237 if(http->stream_id == httpc->pause_stream_id) {
1238 H2BUGF(infof(data, "stopped the pause stream!"));
1239 httpc->pause_stream_id = 0;
1240 }
12411252 }
12421253
12431254 if(data->state.drain)
12481259 int rv = nghttp2_session_set_stream_user_data(httpc->h2,
12491260 http->stream_id, 0);
12501261 if(rv) {
1251 infof(data, "http/2: failed to clear user_data for stream %d!",
1262 infof(data, "http/2: failed to clear user_data for stream %d",
12521263 http->stream_id);
12531264 DEBUGASSERT(0);
12541265 }
12731284 rc = nghttp2_session_callbacks_new(&callbacks);
12741285
12751286 if(rc) {
1276 failf(data, "Couldn't initialize nghttp2 callbacks!");
1287 failf(data, "Couldn't initialize nghttp2 callbacks");
12771288 return CURLE_OUT_OF_MEMORY; /* most likely at least */
12781289 }
12791290
13021313 nghttp2_session_callbacks_del(callbacks);
13031314
13041315 if(rc) {
1305 failf(data, "Couldn't initialize nghttp2!");
1316 failf(data, "Couldn't initialize nghttp2");
13061317 return CURLE_OUT_OF_MEMORY; /* most likely at least */
13071318 }
13081319 }
15071518 /* Reset to FALSE to prevent infinite loop in readwrite_data function. */
15081519 stream->closed = FALSE;
15091520 if(stream->error == NGHTTP2_REFUSED_STREAM) {
1510 H2BUGF(infof(data, "REFUSED_STREAM (%d), try again on a new connection!",
1521 H2BUGF(infof(data, "REFUSED_STREAM (%d), try again on a new connection",
15111522 stream->stream_id));
15121523 connclose(conn, "REFUSED_STREAM"); /* don't use this anymore */
15131524 data->state.refused_stream = TRUE;
16661677 ));
16671678
16681679 if((data->state.drain) && stream->memlen) {
1669 H2BUGF(infof(data, "http2_recv: DRAIN %zu bytes stream %u!! (%p => %p)",
1680 H2BUGF(infof(data, "http2_recv: DRAIN %zu bytes stream %u (%p => %p)",
16701681 stream->memlen, stream->stream_id,
16711682 stream->mem, mem));
16721683 if(mem != stream->mem) {
20822093 stream->stream_id,
20832094 data);
20842095 if(rv) {
2085 infof(data, "http/2: failed to set user_data for stream %d!",
2096 infof(data, "http/2: failed to set user_data for stream %d",
20862097 stream->stream_id);
20872098 DEBUGASSERT(0);
20882099 }
220220 tr = Curl_dyn_ptr(&conn->trailer);
221221 trlen = Curl_dyn_len(&conn->trailer);
222222 if(!data->set.http_te_skip) {
223 result = Curl_client_write(data, CLIENTWRITE_HEADER, tr, trlen);
223 result = Curl_client_write(data,
224 CLIENTWRITE_HEADER|CLIENTWRITE_TRAILER,
225 tr, trlen);
224226 if(result) {
225227 *extrap = result;
226228 return CHUNKE_PASSTHRU_ERROR;
171171 s = calloc(1, sizeof(struct http_connect_state));
172172 if(!s)
173173 return CURLE_OUT_OF_MEMORY;
174 infof(data, "allocate connect buffer!");
174 infof(data, "allocate connect buffer");
175175 conn->connect_state = s;
176176 Curl_dyn_init(&s->rcvbuf, DYN_PROXY_CONNECT_HEADERS);
177177
219219 #ifdef USE_HYPER
220220 data->state.hconnect = FALSE;
221221 #endif
222 infof(data, "CONNECT phase completed!");
222 infof(data, "CONNECT phase completed");
223223 }
224224 }
225225
344344 /* Send the connect request to the proxy */
345345 result = Curl_buffer_send(req, data, &data->info.request_size, 0,
346346 sockindex);
347 s->headerlines = 0;
347348 }
348349 if(result)
349350 failf(data, "Failed sending CONNECT to proxy");
471472 }
472473
473474 if(Curl_dyn_addn(&s->rcvbuf, &byte, 1)) {
474 failf(data, "CONNECT response too large!");
475 failf(data, "CONNECT response too large");
475476 return CURLE_RECV_ERROR;
476477 }
477478
479480 if(byte != 0x0a)
480481 continue;
481482
483 s->headerlines++;
482484 linep = Curl_dyn_ptr(&s->rcvbuf);
483485 perline = Curl_dyn_len(&s->rcvbuf); /* amount of bytes in this line */
484486
487489
488490 if(!data->set.suppress_connect_headers) {
489491 /* send the header to the callback */
490 int writetype = CLIENTWRITE_HEADER;
491 if(data->set.include_header)
492 writetype |= CLIENTWRITE_BODY;
492 int writetype = CLIENTWRITE_HEADER | CLIENTWRITE_CONNECT |
493 (data->set.include_header ? CLIENTWRITE_BODY : 0) |
494 (s->headerlines == 1 ? CLIENTWRITE_STATUS : 0);
493495
494496 result = Curl_client_write(data, writetype, linep, perline);
495497 if(result)
764766 }
765767
766768 options = hyper_clientconn_options_new();
769 hyper_clientconn_options_set_preserve_header_case(options, 1);
770 hyper_clientconn_options_set_preserve_header_order(options, 1);
771
767772 if(!options) {
768773 failf(data, "Couldn't create hyper client options");
769774 result = CURLE_OUT_OF_MEMORY;
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
5858 struct dynbuf rcvbuf;
5959 struct dynbuf req;
6060 size_t nsend;
61 size_t headerlines;
6162 enum keeponval {
6263 KEEPON_DONE,
6364 KEEPON_CONNECT,
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
7575 if(in_w) {
7676 wchar_t punycode[IDN_MAX_LENGTH];
7777 int chars = IdnToAscii(0, in_w, -1, punycode, IDN_MAX_LENGTH);
78 free(in_w);
78 curlx_unicodefree(in_w);
7979 if(chars) {
80 *out = curlx_convert_wchar_to_UTF8(punycode);
81 if(*out)
82 success = TRUE;
80 char *mstr = curlx_convert_wchar_to_UTF8(punycode);
81 if(mstr) {
82 *out = strdup(mstr);
83 curlx_unicodefree(mstr);
84 if(*out)
85 success = TRUE;
86 }
8387 }
8488 }
8589
96100 wchar_t unicode[IDN_MAX_LENGTH];
97101 int chars = IdnToUnicode(0, in_w, curlx_uztosi(in_len),
98102 unicode, IDN_MAX_LENGTH);
99 free(in_w);
103 curlx_unicodefree(in_w);
100104 if(chars) {
101 *out = curlx_convert_wchar_to_UTF8(unicode);
102 if(*out)
103 success = TRUE;
105 char *mstr = curlx_convert_wchar_to_UTF8(unicode);
106 if(mstr) {
107 *out = strdup(mstr);
108 curlx_unicodefree(mstr);
109 if(*out)
110 success = TRUE;
111 }
104112 }
105113 }
106114
623623 result = imap_perform_login(data, conn);
624624 else {
625625 /* Other mechanisms not supported */
626 infof(data, "No known authentication mechanisms supported!");
626 infof(data, "No known authentication mechanisms supported");
627627 result = CURLE_LOGIN_DENIED;
628628 }
629629 }
873873 /* PREAUTH */
874874 struct imap_conn *imapc = &conn->proto.imapc;
875875 imapc->preauth = TRUE;
876 infof(data, "PREAUTH connection, already authenticated!");
876 infof(data, "PREAUTH connection, already authenticated");
877877 }
878878 else if(imapcode != IMAP_RESP_OK) {
879879 failf(data, "Got unexpected imap-server response");
360360 (strcasecompare(data->set.ssl.cert_type, "DER")))
361361 cert_type = LDAPSSL_CERT_FILETYPE_DER;
362362 if(!ldap_ca) {
363 failf(data, "LDAP local: ERROR %s CA cert not set!",
363 failf(data, "LDAP local: ERROR %s CA cert not set",
364364 (cert_type == LDAPSSL_CERT_FILETYPE_DER ? "DER" : "PEM"));
365365 result = CURLE_SSL_CERTPROBLEM;
366366 goto quit;
399399 /* OpenLDAP SDK supports BASE64 files. */
400400 if((data->set.ssl.cert_type) &&
401401 (!strcasecompare(data->set.ssl.cert_type, "PEM"))) {
402 failf(data, "LDAP local: ERROR OpenLDAP only supports PEM cert-type!");
402 failf(data, "LDAP local: ERROR OpenLDAP only supports PEM cert-type");
403403 result = CURLE_SSL_CERTPROBLEM;
404404 goto quit;
405405 }
406406 if(!ldap_ca) {
407 failf(data, "LDAP local: ERROR PEM CA cert not set!");
407 failf(data, "LDAP local: ERROR PEM CA cert not set");
408408 result = CURLE_SSL_CERTPROBLEM;
409409 goto quit;
410410 }
1414 <string>se.curl.libcurl</string>
1515
1616 <key>CFBundleVersion</key>
17 <string>7.82.0</string>
17 <string>7.83.0-DEV</string>
1818
1919 <key>CFBundleName</key>
2020 <string>libcurl</string>
2626 <string>????</string>
2727
2828 <key>CFBundleShortVersionString</key>
29 <string>libcurl 7.82.0</string>
29 <string>libcurl 7.83.0-DEV</string>
3030
3131 <key>CFBundleGetInfoString</key>
32 <string>libcurl.plist 7.82.0</string>
32 <string>libcurl.plist 7.83.0-DEV</string>
3333 </dict>
3434 </plist>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
2 <plist version="0.9">
3 <dict>
4 <key>CFBundleInfoDictionaryVersion</key>
5 <string>6.0</string>
6
7 <key>CFBundleDevelopmentRegion</key>
8 <string>English</string>
9
10 <key>CFBundleExecutable</key>
11 <string>curl</string>
12
13 <key>CFBundleIdentifier</key>
14 <string>se.curl.libcurl</string>
15
16 <key>CFBundleVersion</key>
17 <string>@CURL_PLIST_VERSION@</string>
18
19 <key>CFBundleName</key>
20 <string>libcurl</string>
21
22 <key>CFBundlePackageType</key>
23 <string>FMWK</string>
24
25 <key>CFBundleSignature</key>
26 <string>????</string>
27
28 <key>CFBundleShortVersionString</key>
29 <string>libcurl @CURL_PLIST_VERSION@</string>
30
31 <key>CFBundleGetInfoString</key>
32 <string>libcurl.plist @CURL_PLIST_VERSION@</string>
33 </dict>
34 </plist>
15621562 root = root->parent->parent;
15631563 if(subparts == root) {
15641564 if(part->easy)
1565 failf(part->easy, "Can't add itself as a subpart!");
1565 failf(part->easy, "Can't add itself as a subpart");
15661566 return CURLE_BAD_FUNCTION_ARGUMENT;
15671567 }
15681568 }
+0
-625
lib/mk-ca-bundle.pl less more
0 #!/usr/bin/env perl
1 # ***************************************************************************
2 # * _ _ ____ _
3 # * Project ___| | | | _ \| |
4 # * / __| | | | |_) | |
5 # * | (__| |_| | _ <| |___
6 # * \___|\___/|_| \_\_____|
7 # *
8 # * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 # *
10 # * This software is licensed as described in the file COPYING, which
11 # * you should have received as part of this distribution. The terms
12 # * are also available at https://curl.se/docs/copyright.html.
13 # *
14 # * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # * copies of the Software, and permit persons to whom the Software is
16 # * furnished to do so, under the terms of the COPYING file.
17 # *
18 # * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # * KIND, either express or implied.
20 # *
21 # ***************************************************************************
22 # This Perl script creates a fresh ca-bundle.crt file for use with libcurl.
23 # It downloads certdata.txt from Mozilla's source tree (see URL below),
24 # then parses certdata.txt and extracts CA Root Certificates into PEM format.
25 # These are then processed with the OpenSSL commandline tool to produce the
26 # final ca-bundle.crt file.
27 # The script is based on the parse-certs script written by Roland Krikava.
28 # This Perl script works on almost any platform since its only external
29 # dependency is the OpenSSL commandline tool for optional text listing.
30 # Hacked by Guenter Knauf.
31 #
32 use Encode;
33 use Getopt::Std;
34 use MIME::Base64;
35 use strict;
36 use warnings;
37 use vars qw($opt_b $opt_d $opt_f $opt_h $opt_i $opt_k $opt_l $opt_m $opt_n $opt_p $opt_q $opt_s $opt_t $opt_u $opt_v $opt_w);
38 use List::Util;
39 use Text::Wrap;
40 use Time::Local;
41 my $MOD_SHA = "Digest::SHA";
42 eval "require $MOD_SHA";
43 if ($@) {
44 $MOD_SHA = "Digest::SHA::PurePerl";
45 eval "require $MOD_SHA";
46 }
47 eval "require LWP::UserAgent";
48
49 my %urls = (
50 'nss' =>
51 'https://hg.mozilla.org/projects/nss/raw-file/default/lib/ckfw/builtins/certdata.txt',
52 'central' =>
53 'https://hg.mozilla.org/mozilla-central/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
54 'beta' =>
55 'https://hg.mozilla.org/releases/mozilla-beta/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
56 'release' =>
57 'https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
58 );
59
60 $opt_d = 'release';
61
62 # If the OpenSSL commandline is not in search path you can configure it here!
63 my $openssl = 'openssl';
64
65 my $version = '1.28';
66
67 $opt_w = 76; # default base64 encoded lines length
68
69 # default cert types to include in the output (default is to include CAs which may issue SSL server certs)
70 my $default_mozilla_trust_purposes = "SERVER_AUTH";
71 my $default_mozilla_trust_levels = "TRUSTED_DELEGATOR";
72 $opt_p = $default_mozilla_trust_purposes . ":" . $default_mozilla_trust_levels;
73
74 my @valid_mozilla_trust_purposes = (
75 "DIGITAL_SIGNATURE",
76 "NON_REPUDIATION",
77 "KEY_ENCIPHERMENT",
78 "DATA_ENCIPHERMENT",
79 "KEY_AGREEMENT",
80 "KEY_CERT_SIGN",
81 "CRL_SIGN",
82 "SERVER_AUTH",
83 "CLIENT_AUTH",
84 "CODE_SIGNING",
85 "EMAIL_PROTECTION",
86 "IPSEC_END_SYSTEM",
87 "IPSEC_TUNNEL",
88 "IPSEC_USER",
89 "TIME_STAMPING",
90 "STEP_UP_APPROVED"
91 );
92
93 my @valid_mozilla_trust_levels = (
94 "TRUSTED_DELEGATOR", # CAs
95 "NOT_TRUSTED", # Don't trust these certs.
96 "MUST_VERIFY_TRUST", # This explicitly tells us that it ISN'T a CA but is otherwise ok. In other words, this should tell the app to ignore any other sources that claim this is a CA.
97 "TRUSTED" # This cert is trusted, but only for itself and not for delegates (i.e. it is not a CA).
98 );
99
100 my $default_signature_algorithms = $opt_s = "MD5";
101
102 my @valid_signature_algorithms = (
103 "MD5",
104 "SHA1",
105 "SHA256",
106 "SHA384",
107 "SHA512"
108 );
109
110 $0 =~ s@.*(/|\\)@@;
111 $Getopt::Std::STANDARD_HELP_VERSION = 1;
112 getopts('bd:fhiklmnp:qs:tuvw:');
113
114 if(!defined($opt_d)) {
115 # to make plain "-d" use not cause warnings, and actually still work
116 $opt_d = 'release';
117 }
118
119 # Use predefined URL or else custom URL specified on command line.
120 my $url;
121 if(defined($urls{$opt_d})) {
122 $url = $urls{$opt_d};
123 if(!$opt_k && $url !~ /^https:\/\//i) {
124 die "The URL for '$opt_d' is not HTTPS. Use -k to override (insecure).\n";
125 }
126 }
127 else {
128 $url = $opt_d;
129 }
130
131 my $curl = `curl -V`;
132
133 if ($opt_i) {
134 print ("=" x 78 . "\n");
135 print "Script Version : $version\n";
136 print "Perl Version : $]\n";
137 print "Operating System Name : $^O\n";
138 print "Getopt::Std.pm Version : ${Getopt::Std::VERSION}\n";
139 print "Encode::Encoding.pm Version : ${Encode::Encoding::VERSION}\n";
140 print "MIME::Base64.pm Version : ${MIME::Base64::VERSION}\n";
141 print "LWP::UserAgent.pm Version : ${LWP::UserAgent::VERSION}\n" if($LWP::UserAgent::VERSION);
142 print "LWP.pm Version : ${LWP::VERSION}\n" if($LWP::VERSION);
143 print "Digest::SHA.pm Version : ${Digest::SHA::VERSION}\n" if ($Digest::SHA::VERSION);
144 print "Digest::SHA::PurePerl.pm Version : ${Digest::SHA::PurePerl::VERSION}\n" if ($Digest::SHA::PurePerl::VERSION);
145 print ("=" x 78 . "\n");
146 }
147
148 sub warning_message() {
149 if ( $opt_d =~ m/^risk$/i ) { # Long Form Warning and Exit
150 print "Warning: Use of this script may pose some risk:\n";
151 print "\n";
152 print " 1) If you use HTTP URLs they are subject to a man in the middle attack\n";
153 print " 2) Default to 'release', but more recent updates may be found in other trees\n";
154 print " 3) certdata.txt file format may change, lag time to update this script\n";
155 print " 4) Generally unwise to blindly trust CAs without manual review & verification\n";
156 print " 5) Mozilla apps use additional security checks aren't represented in certdata\n";
157 print " 6) Use of this script will make a security engineer grind his teeth and\n";
158 print " swear at you. ;)\n";
159 exit;
160 } else { # Short Form Warning
161 print "Warning: Use of this script may pose some risk, -d risk for more details.\n";
162 }
163 }
164
165 sub HELP_MESSAGE() {
166 print "Usage:\t${0} [-b] [-d<certdata>] [-f] [-i] [-k] [-l] [-n] [-p<purposes:levels>] [-q] [-s<algorithms>] [-t] [-u] [-v] [-w<l>] [<outputfile>]\n";
167 print "\t-b\tbackup an existing version of ca-bundle.crt\n";
168 print "\t-d\tspecify Mozilla tree to pull certdata.txt or custom URL\n";
169 print "\t\t Valid names are:\n";
170 print "\t\t ", join( ", ", map { ( $_ =~ m/$opt_d/ ) ? "$_ (default)" : "$_" } sort keys %urls ), "\n";
171 print "\t-f\tforce rebuild even if certdata.txt is current\n";
172 print "\t-i\tprint version info about used modules\n";
173 print "\t-k\tallow URLs other than HTTPS, enable HTTP fallback (insecure)\n";
174 print "\t-l\tprint license info about certdata.txt\n";
175 print "\t-m\tinclude meta data in output\n";
176 print "\t-n\tno download of certdata.txt (to use existing)\n";
177 print wrap("\t","\t\t", "-p\tlist of Mozilla trust purposes and levels for certificates to include in output. Takes the form of a comma separated list of purposes, a colon, and a comma separated list of levels. (default: $default_mozilla_trust_purposes:$default_mozilla_trust_levels)"), "\n";
178 print "\t\t Valid purposes are:\n";
179 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_mozilla_trust_purposes ) ), "\n";
180 print "\t\t Valid levels are:\n";
181 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_mozilla_trust_levels ) ), "\n";
182 print "\t-q\tbe really quiet (no progress output at all)\n";
183 print wrap("\t","\t\t", "-s\tcomma separated list of certificate signatures/hashes to output in plain text mode. (default: $default_signature_algorithms)\n");
184 print "\t\t Valid signature algorithms are:\n";
185 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_signature_algorithms ) ), "\n";
186 print "\t-t\tinclude plain text listing of certificates\n";
187 print "\t-u\tunlink (remove) certdata.txt after processing\n";
188 print "\t-v\tbe verbose and print out processed CAs\n";
189 print "\t-w <l>\twrap base64 output lines after <l> chars (default: ${opt_w})\n";
190 exit;
191 }
192
193 sub VERSION_MESSAGE() {
194 print "${0} version ${version} running Perl ${]} on ${^O}\n";
195 }
196
197 warning_message() unless ($opt_q || $url =~ m/^(ht|f)tps:/i );
198 HELP_MESSAGE() if ($opt_h);
199
200 sub report($@) {
201 my $output = shift;
202
203 print STDERR $output . "\n" unless $opt_q;
204 }
205
206 sub is_in_list($@) {
207 my $target = shift;
208
209 return defined(List::Util::first { $target eq $_ } @_);
210 }
211
212 # Parses $param_string as a case insensitive comma separated list with optional whitespace
213 # validates that only allowed parameters are supplied
214 sub parse_csv_param($$@) {
215 my $description = shift;
216 my $param_string = shift;
217 my @valid_values = @_;
218
219 my @values = map {
220 s/^\s+//; # strip leading spaces
221 s/\s+$//; # strip trailing spaces
222 uc $_ # return the modified string as upper case
223 } split( ',', $param_string );
224
225 # Find all values which are not in the list of valid values or "ALL"
226 my @invalid = grep { !is_in_list($_,"ALL",@valid_values) } @values;
227
228 if ( scalar(@invalid) > 0 ) {
229 # Tell the user which parameters were invalid and print the standard help message which will exit
230 print "Error: Invalid ", $description, scalar(@invalid) == 1 ? ": " : "s: ", join( ", ", map { "\"$_\"" } @invalid ), "\n";
231 HELP_MESSAGE();
232 }
233
234 @values = @valid_values if ( is_in_list("ALL",@values) );
235
236 return @values;
237 }
238
239 sub sha256 {
240 my $result;
241 if ($Digest::SHA::VERSION || $Digest::SHA::PurePerl::VERSION) {
242 open(FILE, $_[0]) or die "Can't open '$_[0]': $!";
243 binmode(FILE);
244 $result = $MOD_SHA->new(256)->addfile(*FILE)->hexdigest;
245 close(FILE);
246 } else {
247 # Use OpenSSL command if Perl Digest::SHA modules not available
248 $result = `"$openssl" dgst -r -sha256 "$_[0]"`;
249 $result =~ s/^([0-9a-f]{64}) .+/$1/is;
250 }
251 return $result;
252 }
253
254
255 sub oldhash {
256 my $hash = "";
257 open(C, "<$_[0]") || return 0;
258 while(<C>) {
259 chomp;
260 if($_ =~ /^\#\# SHA256: (.*)/) {
261 $hash = $1;
262 last;
263 }
264 }
265 close(C);
266 return $hash;
267 }
268
269 if ( $opt_p !~ m/:/ ) {
270 print "Error: Mozilla trust identifier list must include both purposes and levels\n";
271 HELP_MESSAGE();
272 }
273
274 (my $included_mozilla_trust_purposes_string, my $included_mozilla_trust_levels_string) = split( ':', $opt_p );
275 my @included_mozilla_trust_purposes = parse_csv_param( "trust purpose", $included_mozilla_trust_purposes_string, @valid_mozilla_trust_purposes );
276 my @included_mozilla_trust_levels = parse_csv_param( "trust level", $included_mozilla_trust_levels_string, @valid_mozilla_trust_levels );
277
278 my @included_signature_algorithms = parse_csv_param( "signature algorithm", $opt_s, @valid_signature_algorithms );
279
280 sub should_output_cert(%) {
281 my %trust_purposes_by_level = @_;
282
283 foreach my $level (@included_mozilla_trust_levels) {
284 # for each level we want to output, see if any of our desired purposes are included
285 return 1 if ( defined( List::Util::first { is_in_list( $_, @included_mozilla_trust_purposes ) } @{$trust_purposes_by_level{$level}} ) );
286 }
287
288 return 0;
289 }
290
291 my $crt = $ARGV[0] || 'ca-bundle.crt';
292 (my $txt = $url) =~ s@(.*/|\?.*)@@g;
293
294 my $stdout = $crt eq '-';
295 my $resp;
296 my $fetched;
297
298 my $oldhash = oldhash($crt);
299
300 report "SHA256 of old file: $oldhash";
301
302 if(!$opt_n) {
303 report "Downloading $txt ...";
304
305 # If we have an HTTPS URL then use curl
306 if($url =~ /^https:\/\//i) {
307 if($curl) {
308 if($curl =~ /^Protocols:.* https( |$)/m) {
309 report "Get certdata with curl!";
310 my $proto = !$opt_k ? "--proto =https" : "";
311 my $quiet = $opt_q ? "-s" : "";
312 my @out = `curl -w %{response_code} $proto $quiet -o "$txt" "$url"`;
313 if(!$? && @out && $out[0] == 200) {
314 $fetched = 1;
315 report "Downloaded $txt";
316 }
317 else {
318 report "Failed downloading via HTTPS with curl";
319 if(-e $txt && !unlink($txt)) {
320 report "Failed to remove '$txt': $!";
321 }
322 }
323 }
324 else {
325 report "curl lacks https support";
326 }
327 }
328 else {
329 report "curl not found";
330 }
331 }
332
333 # If nothing was fetched then use LWP
334 if(!$fetched) {
335 if($url =~ /^https:\/\//i) {
336 report "Falling back to HTTP";
337 $url =~ s/^https:\/\//http:\/\//i;
338 }
339 if(!$opt_k) {
340 report "URLs other than HTTPS are disabled by default, to enable use -k";
341 exit 1;
342 }
343 report "Get certdata with LWP!";
344 if(!defined(${LWP::UserAgent::VERSION})) {
345 report "LWP is not available (LWP::UserAgent not found)";
346 exit 1;
347 }
348 my $ua = new LWP::UserAgent(agent => "$0/$version");
349 $ua->env_proxy();
350 $resp = $ua->mirror($url, $txt);
351 if($resp && $resp->code eq '304') {
352 report "Not modified";
353 exit 0 if -e $crt && !$opt_f;
354 }
355 else {
356 $fetched = 1;
357 report "Downloaded $txt";
358 }
359 if(!$resp || $resp->code !~ /^(?:200|304)$/) {
360 report "Unable to download latest data: "
361 . ($resp? $resp->code . ' - ' . $resp->message : "LWP failed");
362 exit 1 if -e $crt || ! -r $txt;
363 }
364 }
365 }
366
367 my $filedate = $resp ? $resp->last_modified : (stat($txt))[9];
368 my $datesrc = "as of";
369 if(!$filedate) {
370 # mxr.mozilla.org gave us a time, hg.mozilla.org does not!
371 $filedate = time();
372 $datesrc="downloaded on";
373 }
374
375 # get the hash from the download file
376 my $newhash= sha256($txt);
377
378 if(!$opt_f && $oldhash eq $newhash) {
379 report "Downloaded file identical to previous run\'s source file. Exiting";
380 if($opt_u && -e $txt && !unlink($txt)) {
381 report "Failed to remove $txt: $!\n";
382 }
383 exit;
384 }
385
386 report "SHA256 of new file: $newhash";
387
388 my $currentdate = scalar gmtime($filedate);
389
390 my $format = $opt_t ? "plain text and " : "";
391 if( $stdout ) {
392 open(CRT, '> -') or die "Couldn't open STDOUT: $!\n";
393 } else {
394 open(CRT,">$crt.~") or die "Couldn't open $crt.~: $!\n";
395 }
396 print CRT <<EOT;
397 ##
398 ## Bundle of CA Root Certificates
399 ##
400 ## Certificate data from Mozilla ${datesrc}: ${currentdate} GMT
401 ##
402 ## This is a bundle of X.509 certificates of public Certificate Authorities
403 ## (CA). These were automatically extracted from Mozilla's root certificates
404 ## file (certdata.txt). This file can be found in the mozilla source tree:
405 ## ${url}
406 ##
407 ## It contains the certificates in ${format}PEM format and therefore
408 ## can be directly used with curl / libcurl / php_curl, or with
409 ## an Apache+mod_ssl webserver for SSL client authentication.
410 ## Just configure this file as the SSLCACertificateFile.
411 ##
412 ## Conversion done with mk-ca-bundle.pl version $version.
413 ## SHA256: $newhash
414 ##
415
416 EOT
417
418 report "Processing '$txt' ...";
419 my $caname;
420 my $certnum = 0;
421 my $skipnum = 0;
422 my $start_of_cert = 0;
423 my @precert;
424 my $cka_value;
425 my $valid = 1;
426
427 open(TXT,"$txt") or die "Couldn't open $txt: $!\n";
428 while (<TXT>) {
429 if (/\*\*\*\*\* BEGIN LICENSE BLOCK \*\*\*\*\*/) {
430 print CRT;
431 print if ($opt_l);
432 while (<TXT>) {
433 print CRT;
434 print if ($opt_l);
435 last if (/\*\*\*\*\* END LICENSE BLOCK \*\*\*\*\*/);
436 }
437 }
438 # Not Valid After : Thu Sep 30 14:01:15 2021
439 elsif(/^# Not Valid After : (.*)/) {
440 my $stamp = $1;
441 use Time::Piece;
442 my $t = Time::Piece->strptime
443 ($stamp, "%a %b %d %H:%M:%S %Y");
444 my $delta = ($t->epoch - time()); # negative means no longer valid
445 if($delta < 0) {
446 $skipnum++;
447 report "Skipping: $caname is not valid anymore" if ($opt_v);
448 $valid = 0;
449 }
450 else {
451 $valid = 1;
452 }
453 next;
454 }
455 elsif(/^# (Issuer|Serial Number|Subject|Not Valid Before|Fingerprint \(MD5\)|Fingerprint \(SHA1\)):/) {
456 push @precert, $_;
457 next;
458 }
459 elsif(/^#|^\s*$/) {
460 undef @precert;
461 next;
462 }
463 chomp;
464
465 # Example:
466 # CKA_NSS_SERVER_DISTRUST_AFTER MULTILINE_OCTAL
467 # \062\060\060\066\061\067\060\060\060\060\060\060\132
468 # END
469
470 if (/^CKA_NSS_SERVER_DISTRUST_AFTER (CK_BBOOL CK_FALSE|MULTILINE_OCTAL)/) {
471 if($1 eq "MULTILINE_OCTAL") {
472 my @timestamp;
473 while (<TXT>) {
474 last if (/^END/);
475 chomp;
476 my @octets = split(/\\/);
477 shift @octets;
478 for (@octets) {
479 push @timestamp, chr(oct);
480 }
481 }
482 # A trailing Z in the timestamp signifies UTC
483 if($timestamp[12] ne "Z") {
484 report "distrust date stamp is not using UTC";
485 }
486 # Example date: 200617000000Z
487 # Means 2020-06-17 00:00:00 UTC
488 my $distrustat =
489 timegm($timestamp[10] . $timestamp[11], # second
490 $timestamp[8] . $timestamp[9], # minute
491 $timestamp[6] . $timestamp[7], # hour
492 $timestamp[4] . $timestamp[5], # day
493 ($timestamp[2] . $timestamp[3]) - 1, # month
494 "20" . $timestamp[0] . $timestamp[1]); # year
495 if(time >= $distrustat) {
496 # not trusted anymore
497 $skipnum++;
498 report "Skipping: $caname is not trusted anymore" if ($opt_v);
499 $valid = 0;
500 }
501 else {
502 # still trusted
503 }
504 }
505 next;
506 }
507
508 # this is a match for the start of a certificate
509 if (/^CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE/) {
510 $start_of_cert = 1
511 }
512 if ($start_of_cert && /^CKA_LABEL UTF8 \"(.*)\"/) {
513 $caname = $1;
514 }
515 my %trust_purposes_by_level;
516 if ($start_of_cert && /^CKA_VALUE MULTILINE_OCTAL/) {
517 $cka_value="";
518 while (<TXT>) {
519 last if (/^END/);
520 chomp;
521 my @octets = split(/\\/);
522 shift @octets;
523 for (@octets) {
524 $cka_value .= chr(oct);
525 }
526 }
527 }
528 if(/^CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST/ && $valid) {
529 # now scan the trust part to determine how we should trust this cert
530 while (<TXT>) {
531 last if (/^#/);
532 if (/^CKA_TRUST_([A-Z_]+)\s+CK_TRUST\s+CKT_NSS_([A-Z_]+)\s*$/) {
533 if ( !is_in_list($1,@valid_mozilla_trust_purposes) ) {
534 report "Warning: Unrecognized trust purpose for cert: $caname. Trust purpose: $1. Trust Level: $2";
535 } elsif ( !is_in_list($2,@valid_mozilla_trust_levels) ) {
536 report "Warning: Unrecognized trust level for cert: $caname. Trust purpose: $1. Trust Level: $2";
537 } else {
538 push @{$trust_purposes_by_level{$2}}, $1;
539 }
540 }
541 }
542
543 if ( !should_output_cert(%trust_purposes_by_level) ) {
544 $skipnum ++;
545 report "Skipping: $caname" if ($opt_v);
546 } else {
547 my $data = $cka_value;
548 $cka_value = "";
549
550 if(!length($data)) {
551 # if empty, skip
552 next;
553 }
554 my $encoded = MIME::Base64::encode_base64($data, '');
555 $encoded =~ s/(.{1,${opt_w}})/$1\n/g;
556 my $pem = "-----BEGIN CERTIFICATE-----\n"
557 . $encoded
558 . "-----END CERTIFICATE-----\n";
559 print CRT "\n$caname\n";
560 print CRT @precert if($opt_m);
561 my $maxStringLength = length(decode('UTF-8', $caname, Encode::FB_CROAK | Encode::LEAVE_SRC));
562 if ($opt_t) {
563 foreach my $key (sort keys %trust_purposes_by_level) {
564 my $string = $key . ": " . join(", ", @{$trust_purposes_by_level{$key}});
565 $maxStringLength = List::Util::max( length($string), $maxStringLength );
566 print CRT $string . "\n";
567 }
568 }
569 print CRT ("=" x $maxStringLength . "\n");
570 if (!$opt_t) {
571 print CRT $pem;
572 } else {
573 my $pipe = "";
574 foreach my $hash (@included_signature_algorithms) {
575 $pipe = "|$openssl x509 -" . $hash . " -fingerprint -noout -inform PEM";
576 if (!$stdout) {
577 $pipe .= " >> $crt.~";
578 close(CRT) or die "Couldn't close $crt.~: $!";
579 }
580 open(TMP, $pipe) or die "Couldn't open openssl pipe: $!";
581 print TMP $pem;
582 close(TMP) or die "Couldn't close openssl pipe: $!";
583 if (!$stdout) {
584 open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!";
585 }
586 }
587 $pipe = "|$openssl x509 -text -inform PEM";
588 if (!$stdout) {
589 $pipe .= " >> $crt.~";
590 close(CRT) or die "Couldn't close $crt.~: $!";
591 }
592 open(TMP, $pipe) or die "Couldn't open openssl pipe: $!";
593 print TMP $pem;
594 close(TMP) or die "Couldn't close openssl pipe: $!";
595 if (!$stdout) {
596 open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!";
597 }
598 }
599 report "Parsing: $caname" if ($opt_v);
600 $certnum ++;
601 $start_of_cert = 0;
602 }
603 undef @precert;
604 }
605
606 }
607 close(TXT) or die "Couldn't close $txt: $!\n";
608 close(CRT) or die "Couldn't close $crt.~: $!\n";
609 unless( $stdout ) {
610 if ($opt_b && -e $crt) {
611 my $bk = 1;
612 while (-e "$crt.~${bk}~") {
613 $bk++;
614 }
615 rename $crt, "$crt.~${bk}~" or die "Failed to create backup $crt.~$bk}~: $!\n";
616 } elsif( -e $crt ) {
617 unlink( $crt ) or die "Failed to remove $crt: $!\n";
618 }
619 rename "$crt.~", $crt or die "Failed to rename $crt.~ to $crt: $!\n";
620 }
621 if($opt_u && -e $txt && !unlink($txt)) {
622 report "Failed to remove $txt: $!\n";
623 }
624 report "Done ($certnum CA certs processed, $skipnum skipped).";
+0
-431
lib/mk-ca-bundle.vbs less more
0 '***************************************************************************
1 '* _ _ ____ _
2 '* Project ___| | | | _ \| |
3 '* / __| | | | |_) | |
4 '* | (__| |_| | _ <| |___
5 '* \___|\___/|_| \_\_____|
6 '*
7 '* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
8 '*
9 '* This software is licensed as described in the file COPYING, which
10 '* you should have received as part of this distribution. The terms
11 '* are also available at https://curl.se/docs/copyright.html.
12 '*
13 '* You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 '* copies of the Software, and permit persons to whom the Software is
15 '* furnished to do so, under the terms of the COPYING file.
16 '*
17 '* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 '* KIND, either express or implied.
19 '*
20 '***************************************************************************
21 '* Script to fetch certdata.txt from Mozilla.org site and create a
22 '* ca-bundle.crt for use with OpenSSL / libcurl / libcurl bindings
23 '* Requires WinHttp.WinHttpRequest.5.1 and ADODB.Stream which are part of
24 '* W2000 SP3 or later, WXP SP1 or later, W2003 Server SP1 or later.
25 '* Hacked by Guenter Knauf
26 '***************************************************************************
27 Option Explicit
28 Const myVersion = "0.4.0"
29
30 Const myUrl = "https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt"
31
32 Const myOpenSSL = "openssl.exe"
33 Dim myUseOpenSSL
34 myUseOpenSSL = TRUE ' Flag: TRUE to use OpenSSL. If TRUE and is not
35 ' found then a warning is shown before continuing.
36
37 Const myCdSavF = TRUE ' Flag: save downloaded data to file certdata.txt
38 Const myCaBakF = TRUE ' Flag: backup existing ca-bundle certificate
39 Const myAskLiF = TRUE ' Flag: display certdata.txt license agreement
40 Const myWrapLe = 76 ' Default length of base64 output lines
41
42 ' cert info code doesn't work properly with any recent openssl, leave disabled.
43 ' Also: we want our certificate output by default to be as similar as possible
44 ' to mk-ca-bundle.pl and setting this TRUE changes the base64 width to
45 ' OpenSSL's built-in default width, which is not the same as mk-ca-bundle.pl.
46 Const myAskTiF = FALSE ' Flag: ask to include certificate text info
47
48 '
49 '******************* Nothing to configure below! *******************
50 '
51 Const adTypeBinary = 1
52 Const adTypeText = 2
53 Const adSaveCreateNotExist = 1
54 Const adSaveCreateOverWrite = 2
55 Dim objShell, objNetwork, objFSO, objHttp
56 Dim myBase, mySelf, myStream, myTmpFh, myCdData, myCdFile
57 Dim myCaFile, myTmpName, myBakNum, myOptTxt, i
58 Set objNetwork = WScript.CreateObject("WScript.Network")
59 Set objShell = WScript.CreateObject("WScript.Shell")
60 Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
61 Set objHttp = WScript.CreateObject("WinHttp.WinHttpRequest.5.1")
62 If objHttp Is Nothing Then Set objHttp = WScript.CreateObject("WinHttp.WinHttpRequest")
63 myBase = Left(WScript.ScriptFullName, InstrRev(WScript.ScriptFullName, "\"))
64 mySelf = Left(WScript.ScriptName, InstrRev(WScript.ScriptName, ".") - 1) & " " & myVersion
65
66 myCdFile = Mid(myUrl, InstrRev(myUrl, "/") + 1)
67 myCaFile = "ca-bundle.crt"
68 myTmpName = InputBox("It will take a minute to download and parse the " & _
69 "certificate data." & _
70 vbLf & vbLf & _
71 "Please enter the output filename:", mySelf, myCaFile)
72 If (myTmpName = "") Then
73 WScript.Quit 1
74 End If
75 myCaFile = myTmpName
76 If (myCdFile = "") Then
77 MsgBox("URL does not contain filename!"), vbCritical, mySelf
78 WScript.Quit 1
79 End If
80
81 ' Don't use OpenSSL if it's not present.
82 If (myUseOpenSSL = TRUE) Then
83 Dim errnum
84
85 On Error Resume Next
86 Call objShell.Run("""" & myOpenSSL & """ version", 0, TRUE)
87 errnum = Err.Number
88 On Error GoTo 0
89
90 If Not (errnum = 0) Then
91 myUseOpenSSL = FALSE
92 MsgBox("OpenSSL was not found so the certificate bundle will not " & _
93 "include the SHA256 hash of the raw certificate data file " & _
94 "that was used to generate the certificates in the bundle. " & _
95 vbLf & vbLf & _
96 "This does not have any effect on the certificate output, " & _
97 "so this script will continue." & _
98 vbLf & vbLf & _
99 "If you want to set a custom location for OpenSSL or disable " & _
100 "this message then edit the variables at the start of the " & _
101 "script."), vbInformation, mySelf
102 End If
103 End If
104
105 If (myAskTiF = TRUE) And (myUseOpenSSL = TRUE) Then
106 If (6 = objShell.PopUp("Do you want to include text information about " & _
107 "each certificate?" & vbLf & _
108 "(Requires OpenSSL.exe in the current directory " & _
109 "or search path)",, _
110 mySelf, vbQuestion + vbYesNo + vbDefaultButton2)) Then
111 myOptTxt = TRUE
112 Else
113 myOptTxt = FALSE
114 End If
115 End If
116
117 ' Uncomment the line below to ignore SSL invalid cert errors
118 ' objHttp.Option(4) = 256 + 512 + 4096 + 8192
119 objHttp.SetTimeouts 0, 5000, 10000, 10000
120 objHttp.Open "GET", myUrl, FALSE
121 objHttp.setRequestHeader "User-Agent", WScript.ScriptName & "/" & myVersion
122 objHttp.Send ""
123 If Not (objHttp.Status = 200) Then
124 MsgBox("Failed to download '" & myCdFile & "': " & objHttp.Status & " - " & objHttp.StatusText), vbCritical, mySelf
125 WScript.Quit 1
126 End If
127 ' Write received data to file if enabled
128 If (myCdSavF = TRUE) Then
129 Call SaveBinaryData(myCdFile, objHttp.ResponseBody)
130 End If
131 ' Convert data from ResponseBody instead of using ResponseText because of UTF-8
132 myCdData = ConvertBinaryToUTF8(objHttp.ResponseBody)
133 Set objHttp = Nothing
134 ' Backup exitsing ca-bundle certificate file
135 If (myCaBakF = TRUE) Then
136 If objFSO.FileExists(myCaFile) Then
137 Dim myBakFile, b
138 b = 1
139 myBakFile = myCaFile & ".~" & b & "~"
140 While objFSO.FileExists(myBakFile)
141 b = b + 1
142 myBakFile = myCaFile & ".~" & b & "~"
143 Wend
144 Set myTmpFh = objFSO.GetFile(myCaFile)
145 myTmpFh.Move myBakFile
146 End If
147 End If
148
149 ' Process the received data
150 Dim myLines, myPattern, myInsideCert, myInsideLicense, myLicenseText, myNumCerts, myNumSkipped
151 Dim myLabel, myOctets, myData, myPem, myRev, myUntrusted, j
152 myNumSkipped = 0
153 myNumCerts = 0
154 myData = ""
155 myLines = Split(myCdData, vbLf, -1)
156 Set myStream = CreateObject("ADODB.Stream")
157 myStream.Open
158 myStream.Type = adTypeText
159 myStream.Charset = "utf-8"
160 myStream.WriteText "##" & vbLf & _
161 "## Bundle of CA Root Certificates" & vbLf & _
162 "##" & vbLf & _
163 "## Certificate data from Mozilla as of: " & _
164 ConvertDateToString(LocalDateToUTC(Now)) & " GMT" & vbLf & _
165 "##" & vbLf & _
166 "## This is a bundle of X.509 certificates of public Certificate Authorities" & vbLf & _
167 "## (CA). These were automatically extracted from Mozilla's root certificates" & vbLf & _
168 "## file (certdata.txt). This file can be found in the mozilla source tree:" & vbLf & _
169 "## " & myUrl & vbLf & _
170 "##" & vbLf & _
171 "## It contains the certificates in PEM format and therefore" & vbLf & _
172 "## can be directly used with curl / libcurl / php_curl, or with" & vbLf & _
173 "## an Apache+mod_ssl webserver for SSL client authentication." & vbLf & _
174 "## Just configure this file as the SSLCACertificateFile." & vbLf & _
175 "##" & vbLf & _
176 "## Conversion done with mk-ca-bundle.vbs version " & myVersion & "." & vbLf
177 If (myCdSavF = TRUE) And (myUseOpenSSL = TRUE) Then
178 myStream.WriteText "## SHA256: " & FileSHA256(myCdFile) & vbLf
179 End If
180 myStream.WriteText "##" & vbLf & vbLf
181
182 myStream.WriteText vbLf
183 For i = 0 To UBound(myLines)
184 If InstrRev(myLines(i), "CKA_LABEL ") Then
185 myPattern = "^CKA_LABEL\s+[A-Z0-9]+\s+""(.+?)"""
186 myLabel = RegExprFirst(myPattern, myLines(i))
187 End If
188 If (myInsideCert = TRUE) Then
189 If InstrRev(myLines(i), "END") Then
190 myInsideCert = FALSE
191 While (i < UBound(myLines)) And Not (myLines(i) = "#")
192 i = i + 1
193 If InstrRev(myLines(i), "CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR") Then
194 myUntrusted = FALSE
195 End If
196 Wend
197 If (myUntrusted = TRUE) Then
198 myNumSkipped = myNumSkipped + 1
199 Else
200 myStream.WriteText myLabel & vbLf
201 myStream.WriteText String(Len(myLabel), "=") & vbLf
202 myPem = "-----BEGIN CERTIFICATE-----" & vbLf & _
203 Base64Encode(myData) & vbLf & _
204 "-----END CERTIFICATE-----" & vbLf
205 If (myOptTxt = FALSE) Then
206 myStream.WriteText myPem & vbLf
207 Else
208 Dim myCmd, myRval, myTmpIn, myTmpOut
209 myTmpIn = objFSO.GetSpecialFolder(2).Path & "\" & objFSO.GetTempName
210 myTmpOut = objFSO.GetSpecialFolder(2).Path & "\" & objFSO.GetTempName
211 Set myTmpFh = objFSO.OpenTextFile(myTmpIn, 2, TRUE)
212 myTmpFh.Write myPem
213 myTmpFh.Close
214 myCmd = """" & myOpenSSL & """ x509 -md5 -fingerprint -text " & _
215 "-inform PEM -in " & myTmpIn & " -out " & myTmpOut
216 myRval = objShell.Run (myCmd, 0, TRUE)
217 objFSO.DeleteFile myTmpIn, TRUE
218 If Not (myRval = 0) Then
219 MsgBox("Failed to process PEM cert with OpenSSL commandline!"), vbCritical, mySelf
220 objFSO.DeleteFile myTmpOut, TRUE
221 WScript.Quit 3
222 End If
223 Set myTmpFh = objFSO.OpenTextFile(myTmpOut, 1)
224 myStream.WriteText myTmpFh.ReadAll & vbLf
225 myTmpFh.Close
226 objFSO.DeleteFile myTmpOut, TRUE
227 End If
228 myNumCerts = myNumCerts + 1
229 End If
230 Else
231 myOctets = Split(myLines(i), "\")
232 For j = 1 To UBound(myOctets)
233 myData = myData & Chr(CByte("&o" & myOctets(j)))
234 Next
235 End If
236 End If
237 If InstrRev(myLines(i), "CVS_ID ") Then
238 myPattern = "^CVS_ID\s+""(.+?)"""
239 myRev = RegExprFirst(myPattern, myLines(i))
240 myStream.WriteText "# " & myRev & vbLf & vbLf
241 End If
242 If InstrRev(myLines(i), "CKA_VALUE MULTILINE_OCTAL") Then
243 myInsideCert = TRUE
244 myUntrusted = TRUE
245 myData = ""
246 End If
247 If InstrRev(myLines(i), "***** BEGIN LICENSE BLOCK *****") Then
248 myInsideLicense = TRUE
249 End If
250 If (myInsideLicense = TRUE) Then
251 myStream.WriteText myLines(i) & vbLf
252 myLicenseText = myLicenseText & Mid(myLines(i), 2) & vbLf
253 End If
254 If InstrRev(myLines(i), "***** END LICENSE BLOCK *****") Then
255 myInsideLicense = FALSE
256 If (myAskLiF = TRUE) Then
257 If Not (6 = objShell.PopUp(myLicenseText & vbLf & _
258 "Do you agree to the license shown above (required to proceed) ?",, _
259 mySelf, vbQuestion + vbYesNo + vbDefaultButton1)) Then
260 myStream.Close
261 objFSO.DeleteFile myCaFile, TRUE
262 WScript.Quit 2
263 End If
264 End If
265 End If
266 Next
267
268 ' To stop the UTF-8 BOM from being written the stream has to be copied and
269 ' then saved as binary.
270 Dim myCopy
271 Set myCopy = CreateObject("ADODB.Stream")
272 myCopy.Type = adTypeBinary
273 myCopy.Open
274 myStream.Position = 3 ' Skip UTF-8 BOM
275 myStream.CopyTo myCopy
276 myCopy.SaveToFile myCaFile, adSaveCreateOverWrite
277 myCopy.Close
278 myStream.Close
279 Set myCopy = Nothing
280 Set myStream = Nothing
281
282 ' Done
283 objShell.PopUp "Done (" & myNumCerts & " CA certs processed, " & myNumSkipped & _
284 " untrusted skipped).", 20, mySelf, vbInformation
285 WScript.Quit 0
286
287 Function ConvertBinaryToUTF8(arrBytes)
288 Dim objStream
289 Set objStream = CreateObject("ADODB.Stream")
290 objStream.Open
291 objStream.Type = adTypeBinary
292 objStream.Write arrBytes
293 objStream.Position = 0
294 objStream.Type = adTypeText
295 objStream.Charset = "utf-8"
296 ConvertBinaryToUTF8 = objStream.ReadText
297 Set objStream = Nothing
298 End Function
299
300 Function SaveBinaryData(filename, data)
301 Dim objStream
302 Set objStream = CreateObject("ADODB.Stream")
303 objStream.Type = adTypeBinary
304 objStream.Open
305 objStream.Write data
306 objStream.SaveToFile filename, adSaveCreateOverWrite
307 objStream.Close
308 Set objStream = Nothing
309 End Function
310
311 Function RegExprFirst(SearchPattern, TheString)
312 Dim objRegExp, Matches ' create variables.
313 Set objRegExp = New RegExp ' create a regular expression.
314 objRegExp.Pattern = SearchPattern ' sets the search pattern.
315 objRegExp.IgnoreCase = TRUE ' set to ignores case.
316 objRegExp.Global = TRUE ' set to global search.
317 Set Matches = objRegExp.Execute(TheString) ' do the search.
318 If (Matches.Count) Then
319 RegExprFirst = Matches(0).SubMatches(0) ' return first match.
320 Else
321 RegExprFirst = ""
322 End If
323 Set objRegExp = Nothing
324 End Function
325
326 Function Base64Encode(inData)
327 Const Base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
328 Dim cOut, sOut, lWrap, I
329 lWrap = Int(myWrapLe * 3 / 4)
330
331 'For each group of 3 bytes
332 For I = 1 To Len(inData) Step 3
333 Dim nGroup, pOut, sGroup
334
335 'Create one long from this 3 bytes.
336 nGroup = &H10000 * Asc(Mid(inData, I, 1)) + _
337 &H100 * MyASC(Mid(inData, I + 1, 1)) + _
338 MyASC(Mid(inData, I + 2, 1))
339
340 'Oct splits the long To 8 groups with 3 bits
341 nGroup = Oct(nGroup)
342
343 'Add leading zeros
344 nGroup = String(8 - Len(nGroup), "0") & nGroup
345
346 'Convert To base64
347 pOut = Mid(Base64, CLng("&o" & Mid(nGroup, 1, 2)) + 1, 1) & _
348 Mid(Base64, CLng("&o" & Mid(nGroup, 3, 2)) + 1, 1) & _
349 Mid(Base64, CLng("&o" & Mid(nGroup, 5, 2)) + 1, 1) & _
350 Mid(Base64, CLng("&o" & Mid(nGroup, 7, 2)) + 1, 1)
351
352 'Add the part To OutPut string
353 sOut = sOut + pOut
354
355 'Add a new line For Each myWrapLe chars In dest
356 If (I < Len(inData) - 2) Then
357 If (I + 2) Mod lWrap = 0 Then sOut = sOut & vbLf
358 End If
359 Next
360 Select Case Len(inData) Mod 3
361 Case 1: '8 bit final
362 sOut = Left(sOut, Len(sOut) - 2) & "=="
363 Case 2: '16 bit final
364 sOut = Left(sOut, Len(sOut) - 1) & "="
365 End Select
366 Base64Encode = sOut
367 End Function
368
369 Function MyASC(OneChar)
370 If OneChar = "" Then MyASC = 0 Else MyASC = Asc(OneChar)
371 End Function
372
373 ' Return the date in the same format as perl to match mk-ca-bundle.pl output:
374 ' Wed Sep 7 03:12:05 2016
375 Function ConvertDateToString(input)
376 Dim output
377 output = WeekDayName(WeekDay(input), TRUE) & " " & _
378 MonthName(Month(input), TRUE) & " "
379 If (Len(Day(input)) = 1) Then
380 output = output & " "
381 End If
382 output = output & _
383 Day(input) & " " & _
384 FormatDateTime(input, vbShortTime) & ":"
385 If (Len(Second(input)) = 1) Then
386 output = output & "0"
387 End If
388 output = output & _
389 Second(input) & " " & _
390 Year(input)
391 ConvertDateToString = output
392 End Function
393
394 ' Convert local Date to UTC. Microsoft says:
395 ' Use Win32_ComputerSystem CurrentTimeZone property, because it automatically
396 ' adjusts the Time Zone bias for daylight saving time; Win32_Time Zone Bias
397 ' property does not.
398 ' https://msdn.microsoft.com/en-us/library/windows/desktop/ms696015.aspx
399 Function LocalDateToUTC(localdate)
400 Dim item, offset
401 For Each item In GetObject("winmgmts:").InstancesOf("Win32_ComputerSystem")
402 offset = item.CurrentTimeZone ' the offset in minutes
403 Next
404 If (offset < 0) Then
405 LocalDateToUTC = DateAdd("n", ABS(offset), localdate)
406 Else
407 LocalDateToUTC = DateAdd("n", -ABS(offset), localdate)
408 End If
409 'objShell.PopUp LocalDateToUTC
410 End Function
411
412 Function FileSHA256(filename)
413 Dim cmd, rval, tmpOut, tmpFh
414 if (myUseOpenSSL = TRUE) Then
415 tmpOut = objFSO.GetSpecialFolder(2).Path & "\" & objFSO.GetTempName
416 cmd = """" & myOpenSSL & """ dgst -r -sha256 -out """ & tmpOut & """ """ & filename & """"
417 rval = objShell.Run(cmd, 0, TRUE)
418 If Not (rval = 0) Then
419 MsgBox("Failed to get sha256 of """ & filename & """ with OpenSSL commandline!"), vbCritical, mySelf
420 objFSO.DeleteFile tmpOut, TRUE
421 WScript.Quit 3
422 End If
423 Set tmpFh = objFSO.OpenTextFile(tmpOut, 1)
424 FileSHA256 = RegExprFirst("^([0-9a-f]{64}) .+", tmpFh.ReadAll)
425 tmpFh.Close
426 objFSO.DeleteFile tmpOut, TRUE
427 Else
428 FileSHA256 = ""
429 End If
430 End Function
731731 case MQTT_FIRST:
732732 /* Read the initial byte only */
733733 result = Curl_read(data, sockfd, (char *)&mq->firstbyte, 1, &nread);
734 if(!nread)
734 if(result)
735735 break;
736 else if(!nread) {
737 failf(data, "Connection disconnected");
738 *done = TRUE;
739 result = CURLE_RECV_ERROR;
740 break;
741 }
736742 Curl_debug(data, CURLINFO_HEADER_IN, (char *)&mq->firstbyte, 1);
737743 /* remember the first byte */
738744 mq->npacket = 0;
718718 }
719719
720720 Curl_safefree(data->state.buffer);
721 Curl_free_request_state(data);
722721 return result;
723722 }
724723
17931792 rc = CURLM_OK;
17941793
17951794 if(multi_ischanged(multi, TRUE)) {
1796 DEBUGF(infof(data, "multi changed, check CONNECT_PEND queue!"));
1795 DEBUGF(infof(data, "multi changed, check CONNECT_PEND queue"));
17971796 process_pending_handles(multi); /* multiplexed */
17981797 }
17991798
23802379 CURLcode ret = Curl_retry_request(data, &newurl);
23812380
23822381 if(!ret) {
2383 infof(data, "Downgrades to HTTP/1.1!");
2382 infof(data, "Downgrades to HTTP/1.1");
23842383 streamclose(data->conn, "Disconnect HTTP/2 for HTTP/1");
23852384 data->state.httpwant = CURL_HTTP_VERSION_1_1;
23862385 /* clear the error message bit too as we ignore the one we got */
7272 long flags = nonblock ? 1L : 0L;
7373 return IoctlSocket(sockfd, FIONBIO, (char *)&flags);
7474
75 #elif defined(HAVE_SETSOCKOPT_SO_NONBLOCK)
76
77 /* Orbis OS */
78 long b = nonblock ? 1L : 0L;
79 return setsockopt(sockfd, SOL_SOCKET, SO_NONBLOCK, &b, sizeof(b));
80
7581 #else
7682 # error "no non-blocking method was found/used/set"
7783 #endif
292292 */
293293 if((ptr + pp->cache_size) > (buf + data->set.buffer_size + 1)) {
294294 failf(data, "cached response data too big to handle");
295 return CURLE_RECV_ERROR;
295 return CURLE_WEIRD_SERVER_REPLY;
296296 }
297297 memcpy(ptr, pp->cache, pp->cache_size);
298298 gotbytes = (ssize_t)pp->cache_size;
570570 result = pop3_perform_user(data, conn);
571571 else {
572572 /* Other mechanisms not supported */
573 infof(data, "No known authentication mechanisms supported!");
573 infof(data, "No known authentication mechanisms supported");
574574 result = CURLE_LOGIN_DENIED;
575575 }
576576 }
923923
924924 if(pop3code != '+') {
925925 state(data, POP3_STOP);
926 return CURLE_RECV_ERROR;
926 return CURLE_WEIRD_SERVER_REPLY;
927927 }
928928
929929 /* This 'OK' line ends with a CR LF pair which is the two first bytes of the
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
2929 #endif
3030 #ifdef USE_QUICHE
3131 #include "vquic/quiche.h"
32 #endif
33 #ifdef USE_MSH3
34 #include "vquic/msh3.h"
3235 #endif
3336
3437 #include "urldata.h"
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
8686
8787 if(!seeded) {
8888 struct curltime now = Curl_now();
89 infof(data, "WARNING: Using weak random seed");
89 infof(data, "WARNING: using weak random seed");
9090 randseed += (unsigned int)now.tv_usec + (unsigned int)now.tv_sec;
9191 randseed = randseed * 1103515245 + 12345;
9292 randseed = randseed * 1103515245 + 12345;
218218
219219 httpStatus = Curl_http_done(data, status, premature);
220220
221 if(rtsp) {
221 if(rtsp && !status && !httpStatus) {
222222 /* Check the sequence numbers */
223223 long CSeq_sent = rtsp->CSeq_sent;
224224 long CSeq_recv = rtsp->CSeq_recv;
4242 #include "urldata.h"
4343 #include "connect.h"
4444 #include "select.h"
45 #include "timeval.h"
45 #include "timediff.h"
4646 #include "warnless.h"
4747
4848 /*
9292 #else
9393 {
9494 struct timeval pending_tv;
95 timediff_t tv_sec = timeout_ms / 1000;
96 timediff_t tv_usec = (timeout_ms % 1000) * 1000; /* max=999999 */
97 #ifdef HAVE_SUSECONDS_T
98 #if TIMEDIFF_T_MAX > TIME_T_MAX
99 /* tv_sec overflow check in case time_t is signed */
100 if(tv_sec > TIME_T_MAX)
101 tv_sec = TIME_T_MAX;
102 #endif
103 pending_tv.tv_sec = (time_t)tv_sec;
104 pending_tv.tv_usec = (suseconds_t)tv_usec;
105 #else
106 #if TIMEDIFF_T_MAX > INT_MAX
107 /* tv_sec overflow check in case time_t is signed */
108 if(tv_sec > INT_MAX)
109 tv_sec = INT_MAX;
110 #endif
111 pending_tv.tv_sec = (int)tv_sec;
112 pending_tv.tv_usec = (int)tv_usec;
113 #endif
114 r = select(0, NULL, NULL, NULL, &pending_tv);
95 r = select(0, NULL, NULL, NULL, curlx_mstotv(&pending_tv, timeout_ms));
11596 }
11697 #endif /* HAVE_POLL_FINE */
11798 #endif /* USE_WINSOCK */
151132 }
152133 #endif
153134
154 ptimeout = &pending_tv;
155 if(timeout_ms < 0) {
156 ptimeout = NULL;
157 }
158 else if(timeout_ms > 0) {
159 timediff_t tv_sec = timeout_ms / 1000;
160 timediff_t tv_usec = (timeout_ms % 1000) * 1000; /* max=999999 */
161 #ifdef HAVE_SUSECONDS_T
162 #if TIMEDIFF_T_MAX > TIME_T_MAX
163 /* tv_sec overflow check in case time_t is signed */
164 if(tv_sec > TIME_T_MAX)
165 tv_sec = TIME_T_MAX;
166 #endif
167 pending_tv.tv_sec = (time_t)tv_sec;
168 pending_tv.tv_usec = (suseconds_t)tv_usec;
169 #elif defined(WIN32) /* maybe also others in the future */
170 #if TIMEDIFF_T_MAX > LONG_MAX
171 /* tv_sec overflow check on Windows there we know it is long */
172 if(tv_sec > LONG_MAX)
173 tv_sec = LONG_MAX;
174 #endif
175 pending_tv.tv_sec = (long)tv_sec;
176 pending_tv.tv_usec = (long)tv_usec;
177 #else
178 #if TIMEDIFF_T_MAX > INT_MAX
179 /* tv_sec overflow check in case time_t is signed */
180 if(tv_sec > INT_MAX)
181 tv_sec = INT_MAX;
182 #endif
183 pending_tv.tv_sec = (int)tv_sec;
184 pending_tv.tv_usec = (int)tv_usec;
185 #endif
186 }
187 else {
188 pending_tv.tv_sec = 0;
189 pending_tv.tv_usec = 0;
190 }
135 ptimeout = curlx_mstotv(&pending_tv, timeout_ms);
191136
192137 #ifdef USE_WINSOCK
193138 /* WinSock select() must not be called with an fd_set that contains zero
4444 #include "select.h"
4545 #include "strdup.h"
4646 #include "http2.h"
47 #include "headers.h"
4748
4849 /* The last 3 #include files should be in this order */
4950 #include "curl_printf.h"
564565 /* Protocols that work without network cannot be paused. This is
565566 actually only FILE:// just now, and it can't pause since the
566567 transfer isn't done using the "normal" procedure. */
567 failf(data, "Write callback asked for PAUSE when not supported!");
568 failf(data, "Write callback asked for PAUSE when not supported");
568569 return CURLE_WRITE_ERROR;
569570 }
570571 return pausewrite(data, type, ptr, len);
579580 len -= chunklen;
580581 }
581582
583 /* HTTP header, but not status-line */
584 if((conn->handler->protocol & PROTO_FAMILY_HTTP) &&
585 (type & CLIENTWRITE_HEADER) && !(type & CLIENTWRITE_STATUS) ) {
586 CURLcode result =
587 Curl_headers_push(data, optr,
588 type & CLIENTWRITE_CONNECT ? CURLH_CONNECT :
589 (type & CLIENTWRITE_1XX ? CURLH_1XX :
590 (type & CLIENTWRITE_TRAILER ? CURLH_TRAILER :
591 CURLH_HEADER)));
592 if(result)
593 return result;
594 }
595
582596 if(writeheader) {
583597 size_t wrote;
584 ptr = optr;
585 len = olen;
598
586599 Curl_set_in_callback(data, true);
587 wrote = writeheader(ptr, 1, len, data->set.writeheader);
600 wrote = writeheader(optr, 1, olen, data->set.writeheader);
588601 Curl_set_in_callback(data, false);
589602
590603 if(CURL_WRITEFUNC_PAUSE == wrote)
591604 /* here we pass in the HEADER bit only since if this was body as well
592605 then it was passed already and clearly that didn't trigger the
593606 pause, so this is saved for later with the HEADER bit only */
594 return pausewrite(data, CLIENTWRITE_HEADER, ptr, len);
595
596 if(wrote != len) {
607 return pausewrite(data, CLIENTWRITE_HEADER, optr, olen);
608
609 if(wrote != olen) {
597610 failf(data, "Failed writing header");
598611 return CURLE_WRITE_ERROR;
599612 }
618631 size_t len)
619632 {
620633 struct connectdata *conn = data->conn;
621
622 DEBUGASSERT(!(type & ~CLIENTWRITE_BOTH));
623634
624635 if(!len)
625636 return CURLE_OK;
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
4444
4545 #define failf Curl_failf
4646
47 #define CLIENTWRITE_BODY (1<<0)
48 #define CLIENTWRITE_HEADER (1<<1)
47 #define CLIENTWRITE_BODY (1<<0)
48 #define CLIENTWRITE_HEADER (1<<1)
49 #define CLIENTWRITE_STATUS (1<<2) /* the first "header" is the status line */
50 #define CLIENTWRITE_CONNECT (1<<3) /* a CONNECT response */
51 #define CLIENTWRITE_1XX (1<<4) /* a 1xx response */
52 #define CLIENTWRITE_TRAILER (1<<5) /* a trailer header */
4953 #define CLIENTWRITE_BOTH (CLIENTWRITE_BODY|CLIENTWRITE_HEADER)
5054
5155 CURLcode Curl_client_write(struct Curl_easy *data, int type, char *ptr,
889889 ;
890890 else
891891 #endif
892 #if !defined(USE_NGHTTP2) && !defined(USE_HYPER)
892 #ifndef USE_HTTP2
893893 if(arg >= CURL_HTTP_VERSION_2)
894894 return CURLE_UNSUPPORTED_PROTOCOL;
895895 #else
26012601 #endif
26022602
26032603 case CURLOPT_SASL_AUTHZID:
2604 /* Authorisation identity (identity to act as) */
2604 /* Authorization identity (identity to act as) */
26052605 result = Curl_setstropt(&data->set.str[STRING_SASL_AUTHZID],
26062606 va_arg(param, char *));
26072607 break;
504504 state(data, SMTP_AUTH);
505505 else {
506506 /* Other mechanisms not supported */
507 infof(data, "No known authentication mechanisms supported!");
507 infof(data, "No known authentication mechanisms supported");
508508 result = CURLE_LOGIN_DENIED;
509509 }
510510 }
10361036 if((smtp->rcpt && smtpcode/100 != 2 && smtpcode != 553 && smtpcode != 1) ||
10371037 (!smtp->rcpt && smtpcode/100 != 2 && smtpcode != 1)) {
10381038 failf(data, "Command failed: %d", smtpcode);
1039 result = CURLE_RECV_ERROR;
1039 result = CURLE_WEIRD_SERVER_REPLY;
10401040 }
10411041 else {
10421042 /* Temporarily add the LF character back and send as body to the client */
11811181 (void)instate; /* no use for this yet */
11821182
11831183 if(smtpcode != 250)
1184 result = CURLE_RECV_ERROR;
1184 result = CURLE_WEIRD_SERVER_REPLY;
11851185
11861186 /* End of DONE phase */
11871187 state(data, SMTP_STOP);
18391839
18401840 scratch = newscratch = malloc(2 * data->set.upload_buffer_size);
18411841 if(!newscratch) {
1842 failf(data, "Failed to alloc scratch buffer!");
1842 failf(data, "Failed to alloc scratch buffer");
18431843
18441844 return CURLE_OUT_OF_MEMORY;
18451845 }
325325 if(proxy_user) {
326326 size_t plen = strlen(proxy_user);
327327 if(plen >= (size_t)data->set.buffer_size - 8) {
328 failf(data, "Too long SOCKS proxy user name, can't use!");
328 failf(data, "Too long SOCKS proxy user name, can't use");
329329 return CURLPX_LONG_USER;
330330 }
331331 /* copy the proxy name WITH trailing zero */
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
6868
6969 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
7070 /*
71 * This function handles the SOCKS5 GSS-API negotiation and initialisation
71 * This function handles the SOCKS5 GSS-API negotiation and initialization
7272 */
7373 CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
7474 struct Curl_easy *data);
130130 } while(*src++ && --n);
131131 }
132132
133 /* Compare case-sensitive NUL-terminated strings, taking care of possible
134 * null pointers. Return true if arguments match.
135 */
136 bool Curl_safecmp(char *a, char *b)
137 {
138 if(a && b)
139 return !strcmp(a, b);
140 return !a && !b;
141 }
142
133143 /* --- public functions --- */
134144
135145 int curl_strequal(const char *first, const char *second)
2828 * and only compare strings we know are safe for this.
2929 *
3030 * The function is capable of comparing a-z case insensitively.
31 *
32 * Result is 1 if text matches and 0 if not.
3133 */
3234
3335 #define strcasecompare(a,b) Curl_strcasecompare(a,b)
4648 void Curl_strntoupper(char *dest, const char *src, size_t n);
4749 void Curl_strntolower(char *dest, const char *src, size_t n);
4850
51 bool Curl_safecmp(char *a, char *b);
52
4953 #endif /* HEADER_CURL_STRCASE_H */
686686 infof(data, "%s", CURL_TELCMD(j));
687687 else
688688 infof(data, "%d", j);
689 infof(data, ", not IAC SE!) ");
689 infof(data, ", not IAC SE) ");
690690 }
691691 }
692692 length -= 2;
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21
22 #include "timediff.h"
23
24 /*
25 * Converts number of milliseconds into a timeval structure.
26 *
27 * Return values:
28 * NULL IF tv is NULL or ms < 0 (eg. no timeout -> blocking select)
29 * tv with 0 in both fields IF ms == 0 (eg. 0ms timeout -> polling select)
30 * tv with converted fields IF ms > 0 (eg. >0ms timeout -> waiting select)
31 */
32 struct timeval *curlx_mstotv(struct timeval *tv, timediff_t ms)
33 {
34 if(!tv)
35 return NULL;
36
37 if(ms < 0)
38 return NULL;
39
40 if(ms > 0) {
41 timediff_t tv_sec = ms / 1000;
42 timediff_t tv_usec = (ms % 1000) * 1000; /* max=999999 */
43 #ifdef HAVE_SUSECONDS_T
44 #if TIMEDIFF_T_MAX > TIME_T_MAX
45 /* tv_sec overflow check in case time_t is signed */
46 if(tv_sec > TIME_T_MAX)
47 tv_sec = TIME_T_MAX;
48 #endif
49 tv->tv_sec = (time_t)tv_sec;
50 tv->tv_usec = (suseconds_t)tv_usec;
51 #elif defined(WIN32) /* maybe also others in the future */
52 #if TIMEDIFF_T_MAX > LONG_MAX
53 /* tv_sec overflow check on Windows there we know it is long */
54 if(tv_sec > LONG_MAX)
55 tv_sec = LONG_MAX;
56 #endif
57 tv->tv_sec = (long)tv_sec;
58 tv->tv_usec = (long)tv_usec;
59 #else
60 #if TIMEDIFF_T_MAX > INT_MAX
61 /* tv_sec overflow check in case time_t is signed */
62 if(tv_sec > INT_MAX)
63 tv_sec = INT_MAX;
64 #endif
65 tv->tv_sec = (int)tv_sec;
66 tv->tv_usec = (int)tv_usec;
67 #endif
68 }
69 else {
70 tv->tv_sec = 0;
71 tv->tv_usec = 0;
72 }
73
74 return tv;
75 }
76
77 /*
78 * Converts a timeval structure into number of milliseconds.
79 */
80 timediff_t curlx_tvtoms(struct timeval *tv)
81 {
82 return (tv->tv_sec*1000) + (timediff_t)(((double)tv->tv_usec)/1000.0);
83 }
0 #ifndef HEADER_CURL_TIMEDIFF_H
1 #define HEADER_CURL_TIMEDIFF_H
2 /***************************************************************************
3 * _ _ ____ _
4 * Project ___| | | | _ \| |
5 * / __| | | | |_) | |
6 * | (__| |_| | _ <| |___
7 * \___|\___/|_| \_\_____|
8 *
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
10 *
11 * This software is licensed as described in the file COPYING, which
12 * you should have received as part of this distribution. The terms
13 * are also available at https://curl.se/docs/copyright.html.
14 *
15 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 * copies of the Software, and permit persons to whom the Software is
17 * furnished to do so, under the terms of the COPYING file.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ***************************************************************************/
23
24 #include "curl_setup.h"
25
26 /* Use a larger type even for 32 bit time_t systems so that we can keep
27 microsecond accuracy in it */
28 typedef curl_off_t timediff_t;
29 #define CURL_FORMAT_TIMEDIFF_T CURL_FORMAT_CURL_OFF_T
30
31 #define TIMEDIFF_T_MAX CURL_OFF_T_MAX
32 #define TIMEDIFF_T_MIN CURL_OFF_T_MIN
33
34 /*
35 * Converts number of milliseconds into a timeval structure.
36 *
37 * Return values:
38 * NULL IF tv is NULL or ms < 0 (eg. no timeout -> blocking select)
39 * tv with 0 in both fields IF ms == 0 (eg. 0ms timeout -> polling select)
40 * tv with converted fields IF ms > 0 (eg. >0ms timeout -> waiting select)
41 */
42 struct timeval *curlx_mstotv(struct timeval *tv, timediff_t ms);
43
44 /*
45 * Converts a timeval structure into number of milliseconds.
46 */
47 timediff_t curlx_tvtoms(struct timeval *tv);
48
49 #endif /* HEADER_CURL_TIMEDIFF_H */
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
2323
2424 #include "curl_setup.h"
2525
26 /* Use a larger type even for 32 bit time_t systems so that we can keep
27 microsecond accuracy in it */
28 typedef curl_off_t timediff_t;
29 #define CURL_FORMAT_TIMEDIFF_T CURL_FORMAT_CURL_OFF_T
30
31 #define TIMEDIFF_T_MAX CURL_OFF_T_MAX
32 #define TIMEDIFF_T_MIN CURL_OFF_T_MIN
26 #include "timediff.h"
3327
3428 struct curltime {
3529 time_t tv_sec; /* seconds */
7878 #include "urlapi-int.h"
7979 #include "hsts.h"
8080 #include "setopt.h"
81 #include "headers.h"
8182
8283 /* The last 3 #include files should be in this order */
8384 #include "curl_printf.h"
244245 /* protocols that work without network cannot be paused. This is
245246 actually only FILE:// just now, and it can't pause since the transfer
246247 isn't done using the "normal" procedure. */
247 failf(data, "Read callback asked for PAUSE when not supported!");
248 failf(data, "Read callback asked for PAUSE when not supported");
248249 return CURLE_READ_ERROR;
249250 }
250251
458459 /* in the case of libssh2, we can never be really sure that we have emptied
459460 its internal buffers so we MUST always try until we get EAGAIN back */
460461 return conn->handler->protocol&(CURLPROTO_SCP|CURLPROTO_SFTP) ||
461 #if defined(USE_NGHTTP2)
462 #ifdef USE_NGHTTP2
462463 /* For HTTP/2, we may read up everything including response body
463464 with header fields in Curl_http_readwrite_headers. If no
464465 content-length is provided, curl waits for the connection
541542
542543 if(
543544 #ifdef USE_NGHTTP2
544 /* For HTTP/2, read data without caring about the content
545 length. This is safe because body in HTTP/2 is always
546 segmented thanks to its framing layer. Meanwhile, we have to
547 call Curl_read to ensure that http2_handle_stream_close is
548 called when we read all incoming bytes for a particular
549 stream. */
550 !is_http2 &&
551 #endif
552 k->size != -1 && !k->header) {
545 /* For HTTP/2, read data without caring about the content length. This
546 is safe because body in HTTP/2 is always segmented thanks to its
547 framing layer. Meanwhile, we have to call Curl_read to ensure that
548 http2_handle_stream_close is called when we read all incoming bytes
549 for a particular stream. */
550 !is_http2 &&
551 #endif
552 k->size != -1 && !k->header) {
553553 /* make sure we don't read too much */
554554 curl_off_t totalleft = k->size - k->bytecount;
555555 if(totalleft < (curl_off_t)bytestoread)
570570 else {
571571 /* read nothing but since we wanted nothing we consider this an OK
572572 situation to proceed from */
573 DEBUGF(infof(data, "readwrite_data: we're done!"));
573 DEBUGF(infof(data, "readwrite_data: we're done"));
574574 nread = 0;
575575 }
576576
994994 if(!data->state.scratch) {
995995 data->state.scratch = malloc(2 * data->set.upload_buffer_size);
996996 if(!data->state.scratch) {
997 failf(data, "Failed to alloc scratch buffer!");
997 failf(data, "Failed to alloc scratch buffer");
998998
999999 return CURLE_OUT_OF_MEMORY;
10001000 }
13591359
13601360 if(!data->state.url && !data->set.uh) {
13611361 /* we can't do anything without URL */
1362 failf(data, "No URL set!");
1362 failf(data, "No URL set");
13631363 return CURLE_URL_MALFORMAT;
13641364 }
13651365
13761376 uc = curl_url_get(data->set.uh,
13771377 CURLUPART_URL, &data->set.str[STRING_SET_URL], 0);
13781378 if(uc) {
1379 failf(data, "No URL set!");
1379 failf(data, "No URL set");
13801380 return CURLE_URL_MALFORMAT;
13811381 }
13821382 }
14881488 data->set.str[STRING_PROXYPASSWORD]);
14891489
14901490 data->req.headerbytecount = 0;
1491 Curl_headers_cleanup(data);
14911492 return result;
14921493 }
14931494
15321533
15331534 DEBUGASSERT(type != FOLLOW_NONE);
15341535
1536 if(type != FOLLOW_FAKE)
1537 data->state.requests++; /* count all real follows */
15351538 if(type == FOLLOW_REDIR) {
15361539 if((data->set.maxredirs != -1) &&
15371540 (data->state.followlocation >= data->set.maxredirs)) {
16071610 return CURLE_OUT_OF_MEMORY;
16081611 }
16091612 else {
1610
16111613 uc = curl_url_get(data->state.uh, CURLUPART_URL, &newurl, 0);
16121614 if(uc)
16131615 return Curl_uc_to_curlcode(uc);
1616
1617 /* Clear auth if this redirects to a different port number or protocol,
1618 unless permitted */
1619 if(!data->set.allow_auth_to_other_hosts && (type != FOLLOW_FAKE)) {
1620 char *portnum;
1621 int port;
1622 bool clear = FALSE;
1623
1624 if(data->set.use_port && data->state.allow_port)
1625 /* a custom port is used */
1626 port = (int)data->set.use_port;
1627 else {
1628 uc = curl_url_get(data->state.uh, CURLUPART_PORT, &portnum,
1629 CURLU_DEFAULT_PORT);
1630 if(uc) {
1631 free(newurl);
1632 return Curl_uc_to_curlcode(uc);
1633 }
1634 port = atoi(portnum);
1635 free(portnum);
1636 }
1637 if(port != data->info.conn_remote_port) {
1638 infof(data, "Clear auth, redirects to port from %u to %u",
1639 data->info.conn_remote_port, port);
1640 clear = TRUE;
1641 }
1642 else {
1643 char *scheme;
1644 const struct Curl_handler *p;
1645 uc = curl_url_get(data->state.uh, CURLUPART_SCHEME, &scheme, 0);
1646 if(uc) {
1647 free(newurl);
1648 return Curl_uc_to_curlcode(uc);
1649 }
1650
1651 p = Curl_builtin_scheme(scheme);
1652 if(p && (p->protocol != data->info.conn_protocol)) {
1653 infof(data, "Clear auth, redirects scheme from %s to %s",
1654 data->info.conn_scheme, scheme);
1655 clear = TRUE;
1656 }
1657 free(scheme);
1658 }
1659 if(clear) {
1660 Curl_safefree(data->state.aptr.user);
1661 Curl_safefree(data->state.aptr.passwd);
1662 }
1663 }
16141664 }
16151665
16161666 if(type == FOLLOW_FAKE) {
129129 #include "setopt.h"
130130 #include "altsvc.h"
131131 #include "dynbuf.h"
132 #include "headers.h"
132133
133134 /* The last 3 #include files should be in this order */
134135 #include "curl_printf.h"
469470 /* destruct wildcard structures if it is needed */
470471 Curl_wildcard_dtor(&data->wildcard);
471472 Curl_freeset(data);
473 Curl_headers_cleanup(data);
472474 free(data);
473475 return CURLE_OK;
474476 }
617619 set->maxlifetime_conn = 0;
618620 set->http09_allowed = FALSE;
619621 set->httpwant =
620 #ifdef USE_NGHTTP2
622 #ifdef USE_HTTP2
621623 CURL_HTTP_VERSION_2TLS
622624 #else
623625 CURL_HTTP_VERSION_1_1
778780 Curl_safefree(conn->passwd);
779781 Curl_safefree(conn->sasl_authzid);
780782 Curl_safefree(conn->options);
783 Curl_safefree(conn->oauth_bearer);
781784 Curl_dyn_free(&conn->trailer);
782785 Curl_safefree(conn->host.rawalloc); /* host name buffer */
783786 Curl_safefree(conn->conn_to_host.rawalloc); /* host name buffer */
10301033 }
10311034
10321035 if(dead) {
1033 infof(data, "Connection %ld seems to be dead!", conn->connection_id);
1036 infof(data, "Connection %ld seems to be dead", conn->connection_id);
10341037 Curl_conncache_remove_conn(data, conn, FALSE);
10351038 return TRUE;
10361039 }
11191122 bool foundPendingCandidate = FALSE;
11201123 bool canmultiplex = IsMultiplexingPossible(data, needle);
11211124 struct connectbundle *bundle;
1122 const char *hostbundle;
11231125
11241126 #ifdef USE_NTLM
11251127 bool wantNTLMhttp = ((data->state.authhost.want &
11401142
11411143 /* Look up the bundle with all the connections to this particular host.
11421144 Locks the connection cache, beware of early returns! */
1143 bundle = Curl_conncache_find_bundle(data, needle, data->state.conn_cache,
1144 &hostbundle);
1145 bundle = Curl_conncache_find_bundle(data, needle, data->state.conn_cache);
11451146 if(bundle) {
11461147 /* Max pipe length is zero (unlimited) for multiplexed connections */
11471148 struct Curl_llist_element *curr;
11481149
1149 infof(data, "Found bundle for host %s: %p [%s]",
1150 hostbundle, (void *)bundle, (bundle->multiuse == BUNDLE_MULTIPLEX ?
1151 "can multiplex" : "serially"));
1150 infof(data, "Found bundle for host: %p [%s]",
1151 (void *)bundle, (bundle->multiuse == BUNDLE_MULTIPLEX ?
1152 "can multiplex" : "serially"));
11521153
11531154 /* We can't multiplex if we don't know anything about the server */
11541155 if(canmultiplex) {
11651166 }
11661167 if((bundle->multiuse == BUNDLE_MULTIPLEX) &&
11671168 !Curl_multiplex_wanted(data->multi)) {
1168 infof(data, "Could multiplex, but not asked to!");
1169 infof(data, "Could multiplex, but not asked to");
11691170 canmultiplex = FALSE;
11701171 }
11711172 if(bundle->multiuse == BUNDLE_NO_MULTIUSE) {
1172 infof(data, "Can not multiplex, even if we wanted to!");
1173 infof(data, "Can not multiplex, even if we wanted to");
11731174 canmultiplex = FALSE;
11741175 }
11751176 }
13391340 /* This protocol requires credentials per connection,
13401341 so verify that we're using the same name and password as well */
13411342 if(strcmp(needle->user, check->user) ||
1342 strcmp(needle->passwd, check->passwd)) {
1343 strcmp(needle->passwd, check->passwd) ||
1344 !Curl_safecmp(needle->sasl_authzid, check->sasl_authzid) ||
1345 !Curl_safecmp(needle->oauth_bearer, check->oauth_bearer)) {
13431346 /* one of them was different */
13441347 continue;
13451348 }
14901493 #endif
14911494 /* When not multiplexed, we have a match here! */
14921495 chosen = check;
1493 infof(data, "Multiplexed connection found!");
1496 infof(data, "Multiplexed connection found");
14941497 break;
14951498 }
14961499 else {
31073110 * name nor a numeric can legally start with a bracket.
31083111 */
31093112 #else
3110 failf(data, "Use of IPv6 in *_CONNECT_TO without IPv6 support built-in!");
3113 failf(data, "Use of IPv6 in *_CONNECT_TO without IPv6 support built-in");
31113114 result = CURLE_NOT_BUILT_IN;
31123115 goto error;
31133116 #endif
32783281 bool hit;
32793282 struct altsvc *as;
32803283 const int allowed_versions = ( ALPN_h1
3281 #ifdef USE_NGHTTP2
3282 | ALPN_h2
3284 #ifdef USE_HTTP2
3285 | ALPN_h2
32833286 #endif
32843287 #ifdef ENABLE_QUIC
3285 | ALPN_h3
3288 | ALPN_h3
32863289 #endif
32873290 ) & data->asi->flags;
32883291
32893292 host = conn->host.rawalloc;
3290 #ifdef USE_NGHTTP2
3293 #ifdef USE_HTTP2
32913294 /* with h2 support, check that first */
32923295 srcalpnid = ALPN_h2;
32933296 hit = Curl_altsvc_lookup(data->asi,
36343637 }
36353638 }
36363639
3640 if(data->set.str[STRING_BEARER]) {
3641 conn->oauth_bearer = strdup(data->set.str[STRING_BEARER]);
3642 if(!conn->oauth_bearer) {
3643 result = CURLE_OUT_OF_MEMORY;
3644 goto out;
3645 }
3646 }
3647
36373648 #ifdef USE_UNIX_SOCKETS
36383649 if(data->set.str[STRING_UNIX_SOCKET_PATH]) {
36393650 conn->unix_domain_socket = strdup(data->set.str[STRING_UNIX_SOCKET_PATH]);
39103921 *in_connect = conn;
39113922
39123923 #ifndef CURL_DISABLE_PROXY
3913 infof(data, "Re-using existing connection! (#%ld) with %s %s",
3924 infof(data, "Re-using existing connection #%ld with %s %s",
39143925 conn->connection_id,
39153926 conn->bits.proxy?"proxy":"host",
39163927 conn->socks_proxy.host.name ? conn->socks_proxy.host.dispname :
39173928 conn->http_proxy.host.name ? conn->http_proxy.host.dispname :
39183929 conn->host.dispname);
39193930 #else
3920 infof(data, "Re-using existing connection! (#%ld) with host %s",
3931 infof(data, "Re-using existing connection #%ld with host %s",
39213932 conn->connection_id, conn->host.dispname);
39223933 #endif
39233934 }
39413952 connections_available = FALSE;
39423953 else {
39433954 /* this gets a lock on the conncache */
3944 const char *bundlehost;
39453955 struct connectbundle *bundle =
3946 Curl_conncache_find_bundle(data, conn, data->state.conn_cache,
3947 &bundlehost);
3956 Curl_conncache_find_bundle(data, conn, data->state.conn_cache);
39483957
39493958 if(max_host_connections > 0 && bundle &&
39503959 (bundle->num_connections >= max_host_connections)) {
39573966 if(conn_candidate)
39583967 Curl_disconnect(data, conn_candidate, FALSE);
39593968 else {
3960 infof(data, "No more connections allowed to host %s: %zu",
3961 bundlehost, max_host_connections);
3969 infof(data, "No more connections allowed to host: %zu",
3970 max_host_connections);
39623971 connections_available = FALSE;
39633972 }
39643973 }
40084017 connection based. */
40094018 if((data->state.authhost.picked & (CURLAUTH_NTLM | CURLAUTH_NTLM_WB)) &&
40104019 data->state.authhost.done) {
4011 infof(data, "NTLM picked AND auth done set, clear picked!");
4020 infof(data, "NTLM picked AND auth done set, clear picked");
40124021 data->state.authhost.picked = CURLAUTH_NONE;
40134022 data->state.authhost.done = FALSE;
40144023 }
40154024
40164025 if((data->state.authproxy.picked & (CURLAUTH_NTLM | CURLAUTH_NTLM_WB)) &&
40174026 data->state.authproxy.done) {
4018 infof(data, "NTLM-proxy picked AND auth done set, clear picked!");
4027 infof(data, "NTLM-proxy picked AND auth done set, clear picked");
40194028 data->state.authproxy.picked = CURLAUTH_NONE;
40204029 data->state.authproxy.done = FALSE;
40214030 }
11431143 }
11441144
11451145 /*
1146 * Parse the URL and, if successful, replace everyting in the Curl_URL struct.
1146 * Parse the URL and, if successful, replace everything in the Curl_URL struct.
11471147 */
11481148 static CURLUcode parseurl_and_replace(const char *url, CURLU *u,
11491149 unsigned int flags)
982982 char *user; /* user name string, allocated */
983983 char *passwd; /* password string, allocated */
984984 char *options; /* options string, allocated */
985 char *sasl_authzid; /* authorisation identity string, allocated */
985 char *sasl_authzid; /* authorization identity string, allocated */
986 char *oauth_bearer; /* OAUTH2 bearer, allocated */
986987 unsigned char httpversion; /* the HTTP version*10 reported by the server */
987988 struct curltime now; /* "current" time */
988989 struct curltime created; /* creation time */
11581159 reused, in the connection cache. */
11591160
11601161 char conn_primary_ip[MAX_IPADR_LEN];
1161 int conn_primary_port;
1162 int conn_primary_port; /* this is the destination port to the connection,
1163 which might have been a proxy */
1164 int conn_remote_port; /* this is the "remote port", which is the port
1165 number of the used URL, independent of proxy or
1166 not */
11621167 char conn_local_ip[MAX_IPADR_LEN];
11631168 int conn_local_port;
11641169 const char *conn_scheme;
13271332 char *ulbuf; /* allocated upload buffer or NULL */
13281333 curl_off_t current_speed; /* the ProgressShow() function sets this,
13291334 bytes / second */
1330 char *first_host; /* host name of the first (not followed) request.
1331 if set, this should be the host name that we will
1332 sent authorization to, no else. Used to make Location:
1333 following not keep sending user+password... This is
1334 strdup() data.
1335 */
1335
1336 /* host name, port number and protocol of the first (not followed) request.
1337 if set, this should be the host name that we will sent authorization to,
1338 no else. Used to make Location: following not keep sending user+password.
1339 This is strdup()ed data. */
1340 char *first_host;
1341 int first_remote_port;
1342 unsigned int first_remote_protocol;
1343
13361344 int retrycount; /* number of retries on a new connection */
1337 int first_remote_port; /* remote port of the first (not followed) request */
13381345 struct Curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
13391346 long sessionage; /* number of the most recent session */
13401347 struct tempbuf tempwrite[3]; /* BOTH, HEADER, BODY */
13421349 int os_errno; /* filled in with errno whenever an error occurs */
13431350 char *scratch; /* huge buffer[set.buffer_size*2] for upload CRLF replacing */
13441351 long followlocation; /* redirect counter */
1352 int requests; /* request counter: redirects + authentication retakes */
13451353 #ifdef HAVE_SIGNAL
13461354 /* storage for the previous bag^H^H^HSIGPIPE signal handler :-) */
13471355 void (*prev_signal)(int sig);
14131421 size_t trailers_bytes_sent;
14141422 struct dynbuf trailers_buf; /* a buffer containing the compiled trailing
14151423 headers */
1424 struct Curl_llist httphdrs; /* received headers */
1425 struct curl_header headerout; /* for external purposes */
14161426 #endif
14171427 trailers_state trailers_state; /* whether we are sending trailers
14181428 and what stage are we at */
523523 /* Get the machine's un-qualified host name as NTLM doesn't like the fully
524524 qualified domain name */
525525 if(Curl_gethostname(host, sizeof(host))) {
526 infof(data, "gethostname() failed, continuing without!");
526 infof(data, "gethostname() failed, continuing without");
527527 hostlen = 0;
528528 }
529529 else {
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21
22 #include "curl_setup.h"
23
24 #ifdef USE_MSH3
25
26 #include "urldata.h"
27 #include "curl_printf.h"
28 #include "timeval.h"
29 #include "multiif.h"
30 #include "sendf.h"
31 #include "connect.h"
32 #include "h2h3.h"
33 #include "msh3.h"
34
35 /* #define DEBUG_HTTP3 1 */
36 #ifdef DEBUG_HTTP3
37 #define H3BUGF(x) x
38 #else
39 #define H3BUGF(x) do { } while(0)
40 #endif
41
42 #define MSH3_REQ_INIT_BUF_LEN 8192
43
44 static CURLcode msh3_do_it(struct Curl_easy *data, bool *done);
45 static int msh3_getsock(struct Curl_easy *data,
46 struct connectdata *conn, curl_socket_t *socks);
47 static CURLcode msh3_disconnect(struct Curl_easy *data,
48 struct connectdata *conn,
49 bool dead_connection);
50 static unsigned int msh3_conncheck(struct Curl_easy *data,
51 struct connectdata *conn,
52 unsigned int checks_to_perform);
53 static Curl_recv msh3_stream_recv;
54 static Curl_send msh3_stream_send;
55 static void MSH3_CALL msh3_header_received(MSH3_REQUEST *Request,
56 void *IfContext,
57 const MSH3_HEADER *Header);
58 static void MSH3_CALL msh3_data_received(MSH3_REQUEST *Request,
59 void *IfContext, uint32_t Length,
60 const uint8_t *Data);
61 static void MSH3_CALL msh3_complete(MSH3_REQUEST *Request, void *IfContext,
62 bool Aborted, uint64_t AbortError);
63 static void MSH3_CALL msh3_shutdown(MSH3_REQUEST *Request, void *IfContext);
64
65 static const struct Curl_handler msh3_curl_handler_http3 = {
66 "HTTPS", /* scheme */
67 ZERO_NULL, /* setup_connection */
68 msh3_do_it, /* do_it */
69 Curl_http_done, /* done */
70 ZERO_NULL, /* do_more */
71 ZERO_NULL, /* connect_it */
72 ZERO_NULL, /* connecting */
73 ZERO_NULL, /* doing */
74 msh3_getsock, /* proto_getsock */
75 msh3_getsock, /* doing_getsock */
76 ZERO_NULL, /* domore_getsock */
77 msh3_getsock, /* perform_getsock */
78 msh3_disconnect, /* disconnect */
79 ZERO_NULL, /* readwrite */
80 msh3_conncheck, /* connection_check */
81 ZERO_NULL, /* attach connection */
82 PORT_HTTP, /* defport */
83 CURLPROTO_HTTPS, /* protocol */
84 CURLPROTO_HTTP, /* family */
85 PROTOPT_SSL | PROTOPT_STREAM /* flags */
86 };
87
88 static const MSH3_REQUEST_IF msh3_request_if = {
89 msh3_header_received,
90 msh3_data_received,
91 msh3_complete,
92 msh3_shutdown
93 };
94
95 void Curl_quic_ver(char *p, size_t len)
96 {
97 (void)msnprintf(p, len, "msh3/%s", "0.0.1");
98 }
99
100 CURLcode Curl_quic_connect(struct Curl_easy *data,
101 struct connectdata *conn,
102 curl_socket_t sockfd,
103 int sockindex,
104 const struct sockaddr *addr,
105 socklen_t addrlen)
106 {
107 struct quicsocket *qs = &conn->hequic[sockindex];
108 bool unsecure = !conn->ssl_config.verifypeer;
109 memset(qs, 0, sizeof(*qs));
110
111 (void)sockfd;
112 (void)addr; /* TODO - Pass address along */
113 (void)addrlen;
114
115 H3BUGF(infof(data, "creating new api/connection"));
116
117 qs->api = MsH3ApiOpen();
118 if(!qs->api) {
119 failf(data, "can't create msh3 api");
120 return CURLE_FAILED_INIT;
121 }
122
123 qs->conn = MsH3ConnectionOpen(qs->api, conn->host.name, unsecure);
124 if(!qs->conn) {
125 failf(data, "can't create msh3 connection");
126 if(qs->api) {
127 MsH3ApiClose(qs->api);
128 }
129 return CURLE_FAILED_INIT;
130 }
131
132 return CURLE_OK;
133 }
134
135 CURLcode Curl_quic_is_connected(struct Curl_easy *data,
136 struct connectdata *conn,
137 int sockindex,
138 bool *connected)
139 {
140 struct quicsocket *qs = &conn->hequic[sockindex];
141 MSH3_CONNECTION_STATE state;
142
143 state = MsH3ConnectionGetState(qs->conn, false);
144 if(state == MSH3_CONN_HANDSHAKE_FAILED || state == MSH3_CONN_DISCONNECTED) {
145 failf(data, "failed to connect, state=%u", (uint32_t)state);
146 return CURLE_COULDNT_CONNECT;
147 }
148
149 if(state == MSH3_CONN_CONNECTED) {
150 H3BUGF(infof(data, "connection connected"));
151 *connected = true;
152 conn->quic = qs;
153 conn->recv[sockindex] = msh3_stream_recv;
154 conn->send[sockindex] = msh3_stream_send;
155 conn->handler = &msh3_curl_handler_http3;
156 conn->bits.multiplex = TRUE; /* at least potentially multiplexed */
157 conn->httpversion = 30;
158 conn->bundle->multiuse = BUNDLE_MULTIPLEX;
159 /* TODO - Clean up other happy-eyeballs connection(s)? */
160 }
161
162 return CURLE_OK;
163 }
164
165 static int msh3_getsock(struct Curl_easy *data,
166 struct connectdata *conn, curl_socket_t *socks)
167 {
168 struct HTTP *stream = data->req.p.http;
169 int bitmap = GETSOCK_BLANK;
170
171 socks[0] = conn->sock[FIRSTSOCKET];
172
173 if(stream->recv_error) {
174 bitmap |= GETSOCK_READSOCK(FIRSTSOCKET);
175 data->state.drain++;
176 }
177 else if(stream->recv_header_len || stream->recv_data_len) {
178 bitmap |= GETSOCK_READSOCK(FIRSTSOCKET);
179 data->state.drain++;
180 }
181
182 H3BUGF(infof(data, "msh3_getsock %u", (uint32_t)data->state.drain));
183
184 return bitmap;
185 }
186
187 static CURLcode msh3_do_it(struct Curl_easy *data, bool *done)
188 {
189 struct HTTP *stream = data->req.p.http;
190 H3BUGF(infof(data, "msh3_do_it"));
191 stream->recv_buf = malloc(MSH3_REQ_INIT_BUF_LEN);
192 if(!stream->recv_buf) {
193 return CURLE_OUT_OF_MEMORY;
194 }
195 stream->req = ZERO_NULL;
196 msh3_lock_initialize(&stream->recv_lock);
197 stream->recv_buf_alloc = MSH3_REQ_INIT_BUF_LEN;
198 stream->recv_header_len = 0;
199 stream->recv_header_complete = false;
200 stream->recv_data_len = 0;
201 stream->recv_data_complete = false;
202 stream->recv_error = CURLE_OK;
203 return Curl_http(data, done);
204 }
205
206 static unsigned int msh3_conncheck(struct Curl_easy *data,
207 struct connectdata *conn,
208 unsigned int checks_to_perform)
209 {
210 (void)data;
211 (void)conn;
212 (void)checks_to_perform;
213 H3BUGF(infof(data, "msh3_conncheck"));
214 return CONNRESULT_NONE;
215 }
216
217 static void msh3_cleanup(struct quicsocket *qs, struct HTTP *stream)
218 {
219 if(stream && stream->recv_buf) {
220 free(stream->recv_buf);
221 stream->recv_buf = ZERO_NULL;
222 msh3_lock_uninitialize(&stream->recv_lock);
223 }
224 if(qs->conn) {
225 MsH3ConnectionClose(qs->conn);
226 qs->conn = ZERO_NULL;
227 }
228 if(qs->api) {
229 MsH3ApiClose(qs->api);
230 qs->api = ZERO_NULL;
231 }
232 }
233
234 static CURLcode msh3_disconnect(struct Curl_easy *data,
235 struct connectdata *conn, bool dead_connection)
236 {
237 (void)dead_connection;
238 H3BUGF(infof(data, "disconnecting (msh3)"));
239 msh3_cleanup(conn->quic, data->req.p.http);
240 return CURLE_OK;
241 }
242
243 void Curl_quic_disconnect(struct Curl_easy *data, struct connectdata *conn,
244 int tempindex)
245 {
246 if(conn->transport == TRNSPRT_QUIC) {
247 H3BUGF(infof(data, "disconnecting (curl)"));
248 msh3_cleanup(&conn->hequic[tempindex], data->req.p.http);
249 }
250 }
251
252 /* Requires stream->recv_lock to be held */
253 static bool msh3request_ensure_room(struct HTTP *stream, size_t len)
254 {
255 uint8_t *new_recv_buf;
256 const size_t cur_recv_len = stream->recv_header_len + stream->recv_data_len;
257 if(cur_recv_len + len > stream->recv_buf_alloc) {
258 size_t new_recv_buf_alloc_len = stream->recv_buf_alloc;
259 do {
260 new_recv_buf_alloc_len <<= 1; /* TODO - handle overflow */
261 } while(cur_recv_len + len > new_recv_buf_alloc_len);
262 new_recv_buf = malloc(new_recv_buf_alloc_len);
263 if(!new_recv_buf) {
264 return false;
265 }
266 if(cur_recv_len) {
267 memcpy(new_recv_buf, stream->recv_buf, cur_recv_len);
268 }
269 stream->recv_buf_alloc = new_recv_buf_alloc_len;
270 free(stream->recv_buf);
271 stream->recv_buf = new_recv_buf;
272 }
273 return true;
274 }
275
276 static void MSH3_CALL msh3_header_received(MSH3_REQUEST *Request,
277 void *IfContext,
278 const MSH3_HEADER *Header)
279 {
280 struct HTTP *stream = IfContext;
281 size_t total_len;
282 (void)Request;
283 H3BUGF(printf("* msh3_header_received\n"));
284
285 if(stream->recv_header_complete) {
286 H3BUGF(printf("* ignoring header after data\n"));
287 return;
288 }
289
290 msh3_lock_acquire(&stream->recv_lock);
291
292 if((Header->NameLength == 7) &&
293 !strncmp(H2H3_PSEUDO_STATUS, (char *)Header->Name, 7)) {
294 total_len = 9 + Header->ValueLength;
295 if(!msh3request_ensure_room(stream, total_len)) {
296 /* TODO - handle error */
297 goto release_lock;
298 }
299 msnprintf((char *)stream->recv_buf + stream->recv_header_len,
300 stream->recv_buf_alloc - stream->recv_header_len,
301 "HTTP/3 %.*s\n", (int)Header->ValueLength, Header->Value);
302 }
303 else {
304 total_len = Header->NameLength + 4 + Header->ValueLength;
305 if(!msh3request_ensure_room(stream, total_len)) {
306 /* TODO - handle error */
307 goto release_lock;
308 }
309 msnprintf((char *)stream->recv_buf + stream->recv_header_len,
310 stream->recv_buf_alloc - stream->recv_header_len,
311 "%.*s: %.*s\n",
312 (int)Header->NameLength, Header->Name,
313 (int)Header->ValueLength, Header->Value);
314 }
315
316 stream->recv_header_len += total_len - 1; /* don't include null-terminator */
317
318 release_lock:
319 msh3_lock_release(&stream->recv_lock);
320 }
321
322 static void MSH3_CALL msh3_data_received(MSH3_REQUEST *Request,
323 void *IfContext, uint32_t Length,
324 const uint8_t *Data)
325 {
326 struct HTTP *stream = IfContext;
327 size_t cur_recv_len = stream->recv_header_len + stream->recv_data_len;
328 (void)Request;
329 H3BUGF(printf("* msh3_data_received %u. %zu buffered, %zu allocated\n",
330 Length, cur_recv_len, stream->recv_buf_alloc));
331 msh3_lock_acquire(&stream->recv_lock);
332 if(!stream->recv_header_complete) {
333 H3BUGF(printf("* Headers complete!\n"));
334 if(!msh3request_ensure_room(stream, 2)) {
335 /* TODO - handle error */
336 goto release_lock;
337 }
338 stream->recv_buf[stream->recv_header_len++] = '\r';
339 stream->recv_buf[stream->recv_header_len++] = '\n';
340 stream->recv_header_complete = true;
341 cur_recv_len += 2;
342 }
343 if(!msh3request_ensure_room(stream, Length)) {
344 /* TODO - handle error */
345 goto release_lock;
346 }
347 memcpy(stream->recv_buf + cur_recv_len, Data, Length);
348 stream->recv_data_len += (size_t)Length;
349 release_lock:
350 msh3_lock_release(&stream->recv_lock);
351 }
352
353 static void MSH3_CALL msh3_complete(MSH3_REQUEST *Request, void *IfContext,
354 bool Aborted, uint64_t AbortError)
355 {
356 struct HTTP *stream = IfContext;
357 (void)Request;
358 (void)AbortError;
359 H3BUGF(printf("* msh3_complete, aborted=%hhu\n", Aborted));
360 msh3_lock_acquire(&stream->recv_lock);
361 if(Aborted) {
362 stream->recv_error = CURLE_HTTP3; /* TODO - how do we pass AbortError? */
363 }
364 stream->recv_header_complete = true;
365 stream->recv_data_complete = true;
366 msh3_lock_release(&stream->recv_lock);
367 }
368
369 static void MSH3_CALL msh3_shutdown(MSH3_REQUEST *Request, void *IfContext)
370 {
371 struct HTTP *stream = IfContext;
372 (void)Request;
373 (void)stream;
374 }
375
376 static_assert(sizeof(MSH3_HEADER) == sizeof(struct h2h3pseudo),
377 "Sizes must match for cast below to work");
378
379 static ssize_t msh3_stream_send(struct Curl_easy *data,
380 int sockindex,
381 const void *mem,
382 size_t len,
383 CURLcode *curlcode)
384 {
385 struct connectdata *conn = data->conn;
386 struct HTTP *stream = data->req.p.http;
387 struct quicsocket *qs = conn->quic;
388 struct h2h3req *hreq;
389
390 (void)sockindex;
391 H3BUGF(infof(data, "msh3_stream_send %zu", len));
392
393 if(!stream->req) {
394 *curlcode = Curl_pseudo_headers(data, mem, len, &hreq);
395 if(*curlcode) {
396 failf(data, "Curl_pseudo_headers failed");
397 return -1;
398 }
399 H3BUGF(infof(data, "starting request with %zu headers", hreq->entries));
400 stream->req = MsH3RequestOpen(qs->conn, &msh3_request_if, stream,
401 (MSH3_HEADER*)hreq->header, hreq->entries);
402 Curl_pseudo_free(hreq);
403 if(!stream->req) {
404 failf(data, "request open failed");
405 *curlcode = CURLE_SEND_ERROR;
406 return -1;
407 }
408 *curlcode = CURLE_OK;
409 return len;
410 }
411 H3BUGF(infof(data, "send %zd body bytes on request %p", len,
412 (void *)stream->req));
413 *curlcode = CURLE_SEND_ERROR;
414 return -1;
415 }
416
417 static ssize_t msh3_stream_recv(struct Curl_easy *data,
418 int sockindex,
419 char *buf,
420 size_t buffersize,
421 CURLcode *curlcode)
422 {
423 struct HTTP *stream = data->req.p.http;
424 size_t outsize = 0;
425 (void)sockindex;
426 H3BUGF(infof(data, "msh3_stream_recv %zu", buffersize));
427
428 if(stream->recv_error) {
429 failf(data, "request aborted");
430 *curlcode = stream->recv_error;
431 return -1;
432 }
433
434 msh3_lock_acquire(&stream->recv_lock);
435
436 if(stream->recv_header_len) {
437 outsize = buffersize;
438 if(stream->recv_header_len < outsize) {
439 outsize = stream->recv_header_len;
440 }
441 memcpy(buf, stream->recv_buf, outsize);
442 if(outsize < stream->recv_header_len + stream->recv_data_len) {
443 memmove(stream->recv_buf, stream->recv_buf + outsize,
444 stream->recv_header_len + stream->recv_data_len - outsize);
445 }
446 stream->recv_header_len -= outsize;
447 H3BUGF(infof(data, "returned %zu bytes of headers", outsize));
448 }
449 else if(stream->recv_data_len) {
450 outsize = buffersize;
451 if(stream->recv_data_len < outsize) {
452 outsize = stream->recv_data_len;
453 }
454 memcpy(buf, stream->recv_buf, outsize);
455 if(outsize < stream->recv_data_len) {
456 memmove(stream->recv_buf, stream->recv_buf + outsize,
457 stream->recv_data_len - outsize);
458 }
459 stream->recv_data_len -= outsize;
460 H3BUGF(infof(data, "returned %zu bytes of data", outsize));
461 }
462 else if(stream->recv_data_complete) {
463 H3BUGF(infof(data, "receive complete"));
464 }
465
466 msh3_lock_release(&stream->recv_lock);
467
468 return (ssize_t)outsize;
469 }
470
471 CURLcode Curl_quic_done_sending(struct Curl_easy *data)
472 {
473 struct connectdata *conn = data->conn;
474 H3BUGF(infof(data, "Curl_quic_done_sending"));
475 if(conn->handler == &msh3_curl_handler_http3) {
476 struct HTTP *stream = data->req.p.http;
477 stream->upload_done = TRUE;
478 }
479
480 return CURLE_OK;
481 }
482
483 void Curl_quic_done(struct Curl_easy *data, bool premature)
484 {
485 (void)data;
486 (void)premature;
487 H3BUGF(infof(data, "Curl_quic_done"));
488 }
489
490 bool Curl_quic_data_pending(const struct Curl_easy *data)
491 {
492 struct HTTP *stream = data->req.p.http;
493 H3BUGF(infof((struct Curl_easy *)data, "Curl_quic_data_pending"));
494 return stream->recv_header_len || stream->recv_data_len;
495 }
496
497 #endif /* USE_MSH3 */
0 #ifndef HEADER_CURL_VQUIC_MSH3_H
1 #define HEADER_CURL_VQUIC_MSH3_H
2 /***************************************************************************
3 * _ _ ____ _
4 * Project ___| | | | _ \| |
5 * / __| | | | |_) | |
6 * | (__| |_| | _ <| |___
7 * \___|\___/|_| \_\_____|
8 *
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
10 *
11 * This software is licensed as described in the file COPYING, which
12 * you should have received as part of this distribution. The terms
13 * are also available at https://curl.se/docs/copyright.html.
14 *
15 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 * copies of the Software, and permit persons to whom the Software is
17 * furnished to do so, under the terms of the COPYING file.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ***************************************************************************/
23
24 #include "curl_setup.h"
25
26 #ifdef USE_MSH3
27
28 #include <msh3.h>
29
30 struct quicsocket {
31 MSH3_API* api;
32 MSH3_CONNECTION* conn;
33 };
34
35 #endif /* USE_MSQUIC */
36
37 #endif /* HEADER_CURL_VQUIC_MSH3_H */
4646 #include "vquic.h"
4747 #include "h2h3.h"
4848 #include "vtls/keylog.h"
49 #include "vtls/vtls.h"
4950
5051 /* The last 3 #include files should be in this order */
5152 #include "curl_printf.h"
7172 * the far end, then start over at index 0 again.
7273 */
7374
74 #define H3_SEND_SIZE (20*1024)
75 #define H3_SEND_SIZE (256*1024)
7576 struct h3out {
7677 uint8_t buf[H3_SEND_SIZE];
7778 size_t used; /* number of bytes used in the buffer */
8182
8283 #define QUIC_MAX_STREAMS (256*1024)
8384 #define QUIC_MAX_DATA (1*1024*1024)
84 #define QUIC_IDLE_TIMEOUT 60000 /* milliseconds */
85 #define QUIC_IDLE_TIMEOUT (60*NGTCP2_SECONDS)
8586
8687 #ifdef USE_OPENSSL
8788 #define QUIC_CIPHERS \
311312 }
312313 }
313314 return ssl_ctx;
315 }
316
317 static CURLcode quic_set_client_cert(struct Curl_easy *data,
318 struct quicsocket *qs)
319 {
320 struct connectdata *conn = data->conn;
321 SSL_CTX *ssl_ctx = qs->sslctx;
322 char *const ssl_cert = SSL_SET_OPTION(primary.clientcert);
323 const struct curl_blob *ssl_cert_blob = SSL_SET_OPTION(primary.cert_blob);
324 const char *const ssl_cert_type = SSL_SET_OPTION(cert_type);
325
326 if(ssl_cert || ssl_cert_blob || ssl_cert_type) {
327 return Curl_ossl_set_client_cert(
328 data, ssl_ctx, ssl_cert, ssl_cert_blob, ssl_cert_type,
329 SSL_SET_OPTION(key), SSL_SET_OPTION(key_blob),
330 SSL_SET_OPTION(key_type), SSL_SET_OPTION(key_passwd));
331 }
332
333 return CURLE_OK;
314334 }
315335
316336 /** SSL callbacks ***/
743763 NULL, /* ack_datagram */
744764 NULL, /* lost_datagram */
745765 ngtcp2_crypto_get_path_challenge_data_cb,
746 cb_stream_stop_sending
766 cb_stream_stop_sending,
767 NULL, /* version_negotiation */
747768 };
748769
749770 /*
785806 qs->sslctx = quic_ssl_ctx(data);
786807 if(!qs->sslctx)
787808 return CURLE_QUIC_CONNECT_ERROR;
809
810 result = quic_set_client_cert(data, qs);
811 if(result)
812 return result;
788813 #endif
789814
790815 if(quic_init_ssl(qs))
841866 {
842867 struct SingleRequest *k = &data->req;
843868 int bitmap = GETSOCK_BLANK;
869 struct HTTP *stream = data->req.p.http;
870 struct quicsocket *qs = conn->quic;
844871
845872 socks[0] = conn->sock[FIRSTSOCKET];
846873
849876 bitmap |= GETSOCK_READSOCK(FIRSTSOCKET);
850877
851878 /* we're still uploading or the HTTP/2 layer wants to send data */
852 if((k->keepon & (KEEP_SEND|KEEP_SEND_PAUSE)) == KEEP_SEND)
879 if((k->keepon & (KEEP_SEND|KEEP_SEND_PAUSE)) == KEEP_SEND &&
880 (!stream->h3out || stream->h3out->used < H3_SEND_SIZE) &&
881 ngtcp2_conn_get_cwnd_left(qs->qconn) &&
882 ngtcp2_conn_get_max_data_left(qs->qconn) &&
883 nghttp3_conn_is_stream_writable(qs->h3conn, stream->stream3_id))
853884 bitmap |= GETSOCK_WRITESOCK(FIRSTSOCKET);
854885
855886 return bitmap;
857888
858889 static void qs_disconnect(struct quicsocket *qs)
859890 {
891 char buffer[NGTCP2_MAX_UDP_PAYLOAD_SIZE];
892 ngtcp2_tstamp ts;
893 ngtcp2_ssize rc;
894 ngtcp2_connection_close_error errorcode;
895
860896 if(!qs->conn) /* already closed */
861897 return;
898 ngtcp2_connection_close_error_set_application_error(&errorcode,
899 NGHTTP3_H3_NO_ERROR,
900 NULL, 0);
901 ts = timestamp();
902 rc = ngtcp2_conn_write_connection_close(qs->qconn, NULL, /* path */
903 NULL, /* pkt_info */
904 (uint8_t *)buffer, sizeof(buffer),
905 &errorcode, ts);
906 if(rc > 0) {
907 while((send(qs->conn->sock[FIRSTSOCKET], buffer, rc, 0) == -1) &&
908 SOCKERRNO == EINTR);
909 }
910
862911 qs->conn = NULL;
863912 if(qs->qlogfd != -1) {
864913 close(qs->qlogfd);
10791128 (void)flags;
10801129 (void)user_data;
10811130
1082 if(h3name.len == sizeof(H2H3_PSEUDO_STATUS) - 1 &&
1083 !memcmp(H2H3_PSEUDO_STATUS, h3name.base, h3name.len)) {
1131 if(token == NGHTTP3_QPACK_TOKEN__STATUS) {
10841132 char line[14]; /* status line is always 13 characters long */
10851133 size_t ncopy;
10861134 int status = decode_status_code(h3val.base, h3val.len);
13321380 return 1;
13331381 }
13341382
1383 if(stream->upload_len && H3_SEND_SIZE <= stream->h3out->used) {
1384 return NGHTTP3_ERR_WOULDBLOCK;
1385 }
1386
13351387 nread = CURLMIN(stream->upload_len, H3_SEND_SIZE - stream->h3out->used);
13361388 if(nread > 0) {
13371389 /* nghttp3 wants us to hold on to the data until it tells us it is okay to
13661418 }
13671419 if(stream->upload_done && !stream->upload_len &&
13681420 (stream->upload_left <= 0)) {
1369 H3BUGF(infof(data, "!!!!!!!!! cb_h3_readfunction sets EOF"));
1421 H3BUGF(infof(data, "cb_h3_readfunction sets EOF"));
13701422 *pflags = NGHTTP3_DATA_FLAG_EOF;
13711423 return nread ? 1 : 0;
13721424 }
14841536 size_t len,
14851537 CURLcode *curlcode)
14861538 {
1487 ssize_t sent;
1539 ssize_t sent = 0;
14881540 struct connectdata *conn = data->conn;
14891541 struct quicsocket *qs = conn->quic;
14901542 curl_socket_t sockfd = conn->sock[sockindex];
14961548 *curlcode = CURLE_SEND_ERROR;
14971549 return -1;
14981550 }
1551 /* Assume that mem of length len only includes HTTP/1.1 style
1552 header fields. In other words, it does not contain request
1553 body. */
14991554 sent = len;
15001555 }
15011556 else {
15051560 stream->upload_mem = mem;
15061561 stream->upload_len = len;
15071562 (void)nghttp3_conn_resume_stream(qs->h3conn, stream->stream3_id);
1508 sent = len;
15091563 }
15101564 else {
15111565 *curlcode = CURLE_AGAIN;
15201574
15211575 /* Reset post upload buffer after resumed. */
15221576 if(stream->upload_mem) {
1577 if(data->set.postfields) {
1578 sent = len;
1579 }
1580 else {
1581 sent = len - stream->upload_len;
1582 }
1583
15231584 stream->upload_mem = NULL;
15241585 stream->upload_len = 0;
1586
1587 if(sent == 0) {
1588 *curlcode = CURLE_AGAIN;
1589 return -1;
1590 }
15251591 }
15261592
15271593 *curlcode = CURLE_OK;
16521718 uint8_t out[NGTCP2_MAX_UDP_PAYLOAD_SIZE];
16531719 ngtcp2_path_storage ps;
16541720 ngtcp2_tstamp ts = timestamp();
1655 struct sockaddr_storage remote_addr;
16561721 ngtcp2_tstamp expiry;
16571722 ngtcp2_duration timeout;
16581723 int64_t stream_id;
17411806 }
17421807 }
17431808
1744 memcpy(&remote_addr, ps.path.remote.addr, ps.path.remote.addrlen);
17451809 while((sent = send(sockfd, (const char *)out, outlen, 0)) == -1 &&
17461810 SOCKERRNO == EINTR)
17471811 ;
17621826 expiry = ngtcp2_conn_get_expiry(qs->qconn);
17631827 if(expiry != UINT64_MAX) {
17641828 if(expiry <= ts) {
1765 timeout = NGTCP2_MILLISECONDS;
1829 timeout = 0;
17661830 }
17671831 else {
17681832 timeout = expiry - ts;
1833 if(timeout % NGTCP2_MILLISECONDS) {
1834 timeout += NGTCP2_MILLISECONDS;
1835 }
17691836 }
17701837 Curl_expire(data, timeout / NGTCP2_MILLISECONDS, EXPIRE_QUIC);
17711838 }
18011868 /* only for HTTP/3 transfers */
18021869 struct HTTP *stream = data->req.p.http;
18031870 Curl_dyn_free(&stream->overflow);
1871 free(stream->h3out);
18041872 }
18051873 }
18061874
426426 if(quiche_conn_is_established(qs->conn)) {
427427 *done = TRUE;
428428 result = quiche_has_connected(data, conn, 0, sockindex);
429 DEBUGF(infof(data, "quiche established connection!"));
429 DEBUGF(infof(data, "quiche established connection"));
430430 }
431431
432432 return result;
780780 (uint8_t *)data->set.postfields,
781781 stream->upload_left, TRUE);
782782 if(sent <= 0) {
783 failf(data, "quiche_h3_send_body failed!");
783 failf(data, "quiche_h3_send_body failed");
784784 result = CURLE_SEND_ERROR;
785785 }
786786 stream->upload_left = 0; /* nothing left to send */
102102 x = NULL; \
103103 } \
104104 } while(0)
105 #endif
106
107 /* These stat values may not be the same as the user's S_IFMT / S_IFLNK */
108 #ifndef SSH_S_IFMT
109 #define SSH_S_IFMT 00170000
110 #endif
111 #ifndef SSH_S_IFLNK
112 #define SSH_S_IFLNK 0120000
105113 #endif
106114
107115 /* Local functions: */
19611969 }
19621970
19631971 ssh_disconnect(sshc->ssh_session);
1972 /* conn->sock[FIRSTSOCKET] is closed by ssh_disconnect behind our back,
1973 explicitly mark it as closed with the memdebug macro: */
1974 fake_sclose(conn->sock[FIRSTSOCKET]);
1975 conn->sock[FIRSTSOCKET] = CURL_SOCKET_BAD;
19641976
19651977 SSH_STRING_FREE_CHAR(sshc->homedir);
19661978 data->state.most_recent_ftp_entrypath = NULL;
20522064 bitmap |= GETSOCK_READSOCK(FIRSTSOCKET);
20532065
20542066 if(conn->waitfor & KEEP_SEND)
2067 bitmap |= GETSOCK_WRITESOCK(FIRSTSOCKET);
2068
2069 if(!conn->waitfor)
20552070 bitmap |= GETSOCK_WRITESOCK(FIRSTSOCKET);
20562071
20572072 return bitmap;
26862701 */
26872702 cp = strchr(cmd, ' ');
26882703 if(!cp) {
2689 failf(data, "Syntax error in SFTP command. Supply parameter(s)!");
2704 failf(data, "Syntax error in SFTP command. Supply parameter(s)");
26902705 state(data, SSH_SFTP_CLOSE);
26912706 sshc->nextstate = SSH_NO_STATE;
26922707 sshc->actualcode = CURLE_QUOTE_ERROR;
496496 break;
497497 #endif
498498 default:
499 infof(data, "unsupported key type, can't check knownhosts!");
499 infof(data, "unsupported key type, can't check knownhosts");
500500 keybit = 0;
501501 break;
502502 }
591591 LIBSSH2_KNOWNHOST_KEYENC_RAW|
592592 keybit, NULL);
593593 if(addrc)
594 infof(data, "Warning adding the known host %s failed!",
594 infof(data, "WARNING: adding the known host %s failed",
595595 conn->host.name);
596596 else if(rc == CURLKHSTAT_FINE_ADD_TO_FILE ||
597597 rc == CURLKHSTAT_FINE_REPLACE) {
602602 data->set.str[STRING_SSH_KNOWNHOSTS],
603603 LIBSSH2_KNOWNHOST_FILE_OPENSSH);
604604 if(wrc) {
605 infof(data, "Warning, writing %s failed!",
605 infof(data, "WARNING: writing %s failed",
606606 data->set.str[STRING_SSH_KNOWNHOSTS]);
607607 }
608608 }
693693 * against a known fingerprint, if available.
694694 */
695695 if((pub_pos != b64_pos) ||
696 Curl_strncasecompare(fingerprint_b64, pubkey_sha256, pub_pos) != 1) {
696 strncmp(fingerprint_b64, pubkey_sha256, pub_pos)) {
697697 free(fingerprint_b64);
698698
699699 failf(data,
700 "Denied establishing ssh session: mismatch sha256 fingerprint. "
701 "Remote %s is not equal to %s", fingerprint_b64, pubkey_sha256);
700 "Denied establishing ssh session: mismatch sha256 fingerprint. "
701 "Remote %s is not equal to %s", fingerprint_b64, pubkey_sha256);
702702 state(data, SSH_SESSION_FREE);
703703 sshc->actualcode = CURLE_PEER_FAILED_VERIFICATION;
704704 return sshc->actualcode;
706706
707707 free(fingerprint_b64);
708708
709 infof(data, "SHA256 checksum match!");
709 infof(data, "SHA256 checksum match");
710710 }
711711
712712 if(pubkey_md5) {
726726 infof(data, "SSH MD5 fingerprint: %s", md5buffer);
727727 }
728728
729 /* Before we authenticate we check the hostkey's MD5 fingerprint
730 * against a known fingerprint, if available.
731 */
732 if(pubkey_md5 && strlen(pubkey_md5) == 32) {
733 if(!fingerprint || !strcasecompare(md5buffer, pubkey_md5)) {
734 if(fingerprint) {
735 failf(data,
729 /* This does NOT verify the length of 'pubkey_md5' separately, which will
730 make the comparison below fail unless it is exactly 32 characters */
731 if(!fingerprint || !strcasecompare(md5buffer, pubkey_md5)) {
732 if(fingerprint) {
733 failf(data,
736734 "Denied establishing ssh session: mismatch md5 fingerprint. "
737735 "Remote %s is not equal to %s", md5buffer, pubkey_md5);
738 }
739 else {
740 failf(data,
736 }
737 else {
738 failf(data,
741739 "Denied establishing ssh session: md5 fingerprint "
742740 "not available");
743 }
744 state(data, SSH_SESSION_FREE);
745 sshc->actualcode = CURLE_PEER_FAILED_VERIFICATION;
746 return sshc->actualcode;
747 }
748 infof(data, "MD5 checksum match!");
741 }
742 state(data, SSH_SESSION_FREE);
743 sshc->actualcode = CURLE_PEER_FAILED_VERIFICATION;
744 return sshc->actualcode;
749745 }
746 infof(data, "MD5 checksum match");
750747 }
751748
752749 if(!pubkey_md5 && !pubkey_sha256) {
14691466 */
14701467 cp = strchr(cmd, ' ');
14711468 if(!cp) {
1472 failf(data, "Syntax error command '%s'. Missing parameter!",
1469 failf(data, "Syntax error command '%s', missing parameter",
14731470 cmd);
14741471 state(data, SSH_SFTP_CLOSE);
14751472 sshc->nextstate = SSH_NO_STATE;
32283225 sshrecv.recvptr = ssh_tls_recv;
32293226 sshsend.sendptr = ssh_tls_send;
32303227
3231 infof(data, "Uses HTTPS proxy!");
3228 infof(data, "Uses HTTPS proxy");
32323229 /*
32333230 Setup libssh2 callbacks to make it read/write TLS from the socket.
32343231
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 2019 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 2019 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
468468 state(data, SSH_STOP);
469469 return CURLE_SSH;
470470 }
471 infof(data, "wolfssh connected!");
471 infof(data, "wolfssh connected");
472472 state(data, SSH_STOP);
473473 break;
474474 case SSH_STOP:
489489 return CURLE_OK;
490490 }
491491 else if(rc == WS_SUCCESS) {
492 infof(data, "wolfssh SFTP connected!");
492 infof(data, "wolfssh SFTP connected");
493493 state(data, SSH_SFTP_REALPATH);
494494 }
495495 else {
518518 else {
519519 memcpy(sshc->homedir, name->fName, name->fSz);
520520 sshc->homedir[name->fSz] = 0;
521 infof(data, "wolfssh SFTP realpath succeeded!");
521 infof(data, "wolfssh SFTP realpath succeeded");
522522 }
523523 wolfSSH_SFTPNAME_list_free(name);
524524 state(data, SSH_STOP);
616616 return CURLE_OK;
617617 }
618618 else if(rc == WS_SUCCESS) {
619 infof(data, "wolfssh SFTP open succeeded!");
619 infof(data, "wolfssh SFTP open succeeded");
620620 }
621621 else {
622622 failf(data, "wolfssh SFTP upload open failed: %d", rc);
727727 return CURLE_OK;
728728 }
729729 else if(rc == WS_SUCCESS) {
730 infof(data, "wolfssh SFTP open succeeded!");
730 infof(data, "wolfssh SFTP open succeeded");
731731 state(data, SSH_SFTP_DOWNLOAD_STAT);
732732 return CURLE_OK;
733733 }
753753 return CURLE_OK;
754754 }
755755 else if(rc == WS_SUCCESS) {
756 infof(data, "wolfssh STAT succeeded!");
756 infof(data, "wolfssh STAT succeeded");
757757 }
758758 else {
759759 failf(data, "wolfssh SFTP open failed: %d", rc);
3434 #include "multiif.h"
3535 #include "curl_printf.h"
3636 #include "curl_memory.h"
37 #include "strcase.h"
3738
3839 struct x509_context {
3940 const br_x509_class *vtable;
352353 x509_get_pkey
353354 };
354355
356 struct st_cipher {
357 const char *name; /* Cipher suite IANA name. It starts with "TLS_" prefix */
358 const char *alias_name; /* Alias name is the same as OpenSSL cipher name */
359 uint16_t num; /* BearSSL cipher suite */
360 };
361
362 /* Macro to initialize st_cipher data structure */
363 #define CIPHER_DEF(num, alias) { #num, alias, BR_##num }
364
365 static const struct st_cipher ciphertable[] = {
366 /* RFC 2246 TLS 1.0 */
367 CIPHER_DEF(TLS_RSA_WITH_3DES_EDE_CBC_SHA, /* 0x000A */
368 "DES-CBC3-SHA"),
369
370 /* RFC 3268 TLS 1.0 AES */
371 CIPHER_DEF(TLS_RSA_WITH_AES_128_CBC_SHA, /* 0x002F */
372 "AES128-SHA"),
373 CIPHER_DEF(TLS_RSA_WITH_AES_256_CBC_SHA, /* 0x0035 */
374 "AES256-SHA"),
375
376 /* RFC 5246 TLS 1.2 */
377 CIPHER_DEF(TLS_RSA_WITH_AES_128_CBC_SHA256, /* 0x003C */
378 "AES128-SHA256"),
379 CIPHER_DEF(TLS_RSA_WITH_AES_256_CBC_SHA256, /* 0x003D */
380 "AES256-SHA256"),
381
382 /* RFC 5288 TLS 1.2 AES GCM */
383 CIPHER_DEF(TLS_RSA_WITH_AES_128_GCM_SHA256, /* 0x009C */
384 "AES128-GCM-SHA256"),
385 CIPHER_DEF(TLS_RSA_WITH_AES_256_GCM_SHA384, /* 0x009D */
386 "AES256-GCM-SHA384"),
387
388 /* RFC 4492 TLS 1.0 ECC */
389 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA, /* 0xC003 */
390 "ECDH-ECDSA-DES-CBC3-SHA"),
391 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, /* 0xC004 */
392 "ECDH-ECDSA-AES128-SHA"),
393 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, /* 0xC005 */
394 "ECDH-ECDSA-AES256-SHA"),
395 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, /* 0xC008 */
396 "ECDHE-ECDSA-DES-CBC3-SHA"),
397 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, /* 0xC009 */
398 "ECDHE-ECDSA-AES128-SHA"),
399 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, /* 0xC00A */
400 "ECDHE-ECDSA-AES256-SHA"),
401 CIPHER_DEF(TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, /* 0xC00D */
402 "ECDH-RSA-DES-CBC3-SHA"),
403 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, /* 0xC00E */
404 "ECDH-RSA-AES128-SHA"),
405 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, /* 0xC00F */
406 "ECDH-RSA-AES256-SHA"),
407 CIPHER_DEF(TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, /* 0xC012 */
408 "ECDHE-RSA-DES-CBC3-SHA"),
409 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, /* 0xC013 */
410 "ECDHE-RSA-AES128-SHA"),
411 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, /* 0xC014 */
412 "ECDHE-RSA-AES256-SHA"),
413
414 /* RFC 5289 TLS 1.2 ECC HMAC SHA256/384 */
415 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, /* 0xC023 */
416 "ECDHE-ECDSA-AES128-SHA256"),
417 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, /* 0xC024 */
418 "ECDHE-ECDSA-AES256-SHA384"),
419 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, /* 0xC025 */
420 "ECDH-ECDSA-AES128-SHA256"),
421 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, /* 0xC026 */
422 "ECDH-ECDSA-AES256-SHA384"),
423 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, /* 0xC027 */
424 "ECDHE-RSA-AES128-SHA256"),
425 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, /* 0xC028 */
426 "ECDHE-RSA-AES256-SHA384"),
427 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, /* 0xC029 */
428 "ECDH-RSA-AES128-SHA256"),
429 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, /* 0xC02A */
430 "ECDH-RSA-AES256-SHA384"),
431
432 /* RFC 5289 TLS 1.2 GCM */
433 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, /* 0xC02B */
434 "ECDHE-ECDSA-AES128-GCM-SHA256"),
435 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, /* 0xC02C */
436 "ECDHE-ECDSA-AES256-GCM-SHA384"),
437 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, /* 0xC02D */
438 "ECDH-ECDSA-AES128-GCM-SHA256"),
439 CIPHER_DEF(TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, /* 0xC02E */
440 "ECDH-ECDSA-AES256-GCM-SHA384"),
441 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, /* 0xC02F */
442 "ECDHE-RSA-AES128-GCM-SHA256"),
443 CIPHER_DEF(TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, /* 0xC030 */
444 "ECDHE-RSA-AES256-GCM-SHA384"),
445 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, /* 0xC031 */
446 "ECDH-RSA-AES128-GCM-SHA256"),
447 CIPHER_DEF(TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, /* 0xC032 */
448 "ECDH-RSA-AES256-GCM-SHA384"),
449 #ifdef BR_TLS_RSA_WITH_AES_128_CCM
450
451 /* RFC 6655 TLS 1.2 CCM
452 Supported since BearSSL 0.6 */
453 CIPHER_DEF(TLS_RSA_WITH_AES_128_CCM, /* 0xC09C */
454 "AES128-CCM"),
455 CIPHER_DEF(TLS_RSA_WITH_AES_256_CCM, /* 0xC09D */
456 "AES256-CCM"),
457 CIPHER_DEF(TLS_RSA_WITH_AES_128_CCM_8, /* 0xC0A0 */
458 "AES128-CCM8"),
459 CIPHER_DEF(TLS_RSA_WITH_AES_256_CCM_8, /* 0xC0A1 */
460 "AES256-CCM8"),
461
462 /* RFC 7251 TLS 1.2 ECC CCM
463 Supported since BearSSL 0.6 */
464 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_128_CCM, /* 0xC0AC */
465 "ECDHE-ECDSA-AES128-CCM"),
466 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_256_CCM, /* 0xC0AD */
467 "ECDHE-ECDSA-AES256-CCM"),
468 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8, /* 0xC0AE */
469 "ECDHE-ECDSA-AES128-CCM8"),
470 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8, /* 0xC0AF */
471 "ECDHE-ECDSA-AES256-CCM8"),
472 #endif
473
474 /* RFC 7905 TLS 1.2 ChaCha20-Poly1305
475 Supported since BearSSL 0.2 */
476 CIPHER_DEF(TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, /* 0xCCA8 */
477 "ECDHE-RSA-CHACHA20-POLY1305"),
478 CIPHER_DEF(TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, /* 0xCCA9 */
479 "ECDHE-ECDSA-CHACHA20-POLY1305"),
480 };
481
482 #define NUM_OF_CIPHERS (sizeof(ciphertable) / sizeof(ciphertable[0]))
483 #define CIPHER_NAME_BUF_LEN 64
484
485 static bool is_separator(char c)
486 {
487 /* Return whether character is a cipher list separator. */
488 switch(c) {
489 case ' ':
490 case '\t':
491 case ':':
492 case ',':
493 case ';':
494 return true;
495 }
496 return false;
497 }
498
499 static CURLcode bearssl_set_selected_ciphers(struct Curl_easy *data,
500 br_ssl_engine_context *ssl_eng,
501 const char *ciphers)
502 {
503 uint16_t selected_ciphers[NUM_OF_CIPHERS];
504 size_t selected_count = 0;
505 char cipher_name[CIPHER_NAME_BUF_LEN];
506 const char *cipher_start = ciphers;
507 const char *cipher_end;
508 size_t i, j;
509
510 if(!cipher_start)
511 return CURLE_SSL_CIPHER;
512
513 while(true) {
514 /* Extract the next cipher name from the ciphers string */
515 while(is_separator(*cipher_start))
516 ++cipher_start;
517 if(*cipher_start == '\0')
518 break;
519 cipher_end = cipher_start;
520 while(*cipher_end != '\0' && !is_separator(*cipher_end))
521 ++cipher_end;
522 j = cipher_end - cipher_start < CIPHER_NAME_BUF_LEN - 1 ?
523 cipher_end - cipher_start : CIPHER_NAME_BUF_LEN - 1;
524 strncpy(cipher_name, cipher_start, j);
525 cipher_name[j] = '\0';
526 cipher_start = cipher_end;
527
528 /* Lookup the cipher name in the table of available ciphers. If the cipher
529 name starts with "TLS_" we do the lookup by IANA name. Otherwise, we try
530 to match cipher name by an (OpenSSL) alias. */
531 if(strncasecompare(cipher_name, "TLS_", 4)) {
532 for(i = 0; i < NUM_OF_CIPHERS &&
533 !strcasecompare(cipher_name, ciphertable[i].name); ++i);
534 }
535 else {
536 for(i = 0; i < NUM_OF_CIPHERS &&
537 !strcasecompare(cipher_name, ciphertable[i].alias_name); ++i);
538 }
539 if(i == NUM_OF_CIPHERS) {
540 infof(data, "BearSSL: unknown cipher in list: %s", cipher_name);
541 continue;
542 }
543
544 /* No duplicates allowed */
545 for(j = 0; j < selected_count &&
546 selected_ciphers[j] != ciphertable[i].num; j++);
547 if(j < selected_count) {
548 infof(data, "BearSSL: duplicate cipher in list: %s", cipher_name);
549 continue;
550 }
551
552 DEBUGASSERT(selected_count < NUM_OF_CIPHERS);
553 selected_ciphers[selected_count] = ciphertable[i].num;
554 ++selected_count;
555 }
556
557 if(selected_count == 0) {
558 failf(data, "BearSSL: no supported cipher in list");
559 return CURLE_SSL_CIPHER;
560 }
561
562 br_ssl_engine_set_suites(ssl_eng, selected_ciphers, selected_count);
563 return CURLE_OK;
564 }
565
355566 static CURLcode bearssl_connect_step1(struct Curl_easy *data,
356567 struct connectdata *conn, int sockindex)
357568 {
445656 br_ssl_engine_set_buffer(&backend->ctx.eng, backend->buf,
446657 sizeof(backend->buf), 1);
447658
659 if(SSL_CONN_CONFIG(cipher_list)) {
660 /* Override the ciphers as specified. For the default cipher list see the
661 BearSSL source code of br_ssl_client_init_full() */
662 ret = bearssl_set_selected_ciphers(data, &backend->ctx.eng,
663 SSL_CONN_CONFIG(cipher_list));
664 if(ret)
665 return ret;
666 }
667
448668 /* initialize X.509 context */
449669 backend->x509.vtable = &x509_vtable;
450670 backend->x509.verifypeer = verifypeer;
477697 #endif
478698 ) {
479699 backend->protocols[cur++] = ALPN_H2;
480 infof(data, "ALPN, offering %s", ALPN_H2);
700 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
481701 }
482702 #endif
483703
484704 backend->protocols[cur++] = ALPN_HTTP_1_1;
485 infof(data, "ALPN, offering %s", ALPN_HTTP_1_1);
705 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
486706
487707 br_ssl_engine_set_protocol_names(&backend->ctx.eng,
488708 backend->protocols, cur);
507727 return CURLE_SSL_CONNECT_ERROR;
508728 }
509729 hostname = snihost;
730 }
731
732 /* give application a chance to interfere with SSL set up. */
733 if(data->set.ssl.fsslctx) {
734 Curl_set_in_callback(data, true);
735 ret = (*data->set.ssl.fsslctx)(data, &backend->ctx,
736 data->set.ssl.fsslctxp);
737 Curl_set_in_callback(data, false);
738 if(ret) {
739 failf(data, "BearSSL: error signaled by ssl ctx callback");
740 return ret;
741 }
510742 }
511743
512744 if(!br_ssl_client_reset(&backend->ctx, hostname, 1))
636868
637869 protocol = br_ssl_engine_get_selected_protocol(&backend->ctx.eng);
638870 if(protocol) {
639 infof(data, "ALPN, server accepted to use %s", protocol);
871 infof(data, VTLS_INFOF_ALPN_ACCEPTED_1STR, protocol);
640872
641873 #ifdef USE_HTTP2
642874 if(!strcmp(protocol, ALPN_H2))
651883 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
652884 }
653885 else
654 infof(data, "ALPN, server did not agree to a protocol");
886 infof(data, VTLS_INFOF_NO_ALPN);
655887 }
656888
657889 if(SSL_SET_OPTION(primary.sessionid)) {
9491181
9501182 const struct Curl_ssl Curl_ssl_bearssl = {
9511183 { CURLSSLBACKEND_BEARSSL, "bearssl" }, /* info */
952 SSLSUPP_CAINFO_BLOB,
1184 SSLSUPP_CAINFO_BLOB | SSLSUPP_SSL_CTX,
9531185 sizeof(struct ssl_backend_data),
9541186
9551187 Curl_none_init, /* init */
7373 #include "connect.h" /* for the connect timeout */
7474 #include "select.h"
7575 #include "strcase.h"
76 #include "timediff.h"
7677 #include "x509asn1.h"
7778 #include "curl_printf.h"
7879
448449
449450 static int gskit_init(void)
450451 {
451 /* No initialisation needed. */
452
452 /* No initialization needed. */
453453 return 1;
454454 }
455455
975975
976976 for(;;) {
977977 timediff_t timeout_ms = nonblocking? 0: Curl_timeleft(data, NULL, TRUE);
978 stmv.tv_sec = 0;
979 stmv.tv_usec = 0;
978980 if(timeout_ms < 0)
979981 timeout_ms = 0;
980 stmv.tv_sec = timeout_ms / 1000;
981 stmv.tv_usec = (timeout_ms - stmv.tv_sec * 1000) * 1000;
982 switch(QsoWaitForIOCompletion(BACKEND->iocport, &cstat, &stmv)) {
982 switch(QsoWaitForIOCompletion(BACKEND->iocport, &cstat,
983 curlx_mstotv(&stmv, timeout_ms))) {
983984 case 1: /* Operation complete. */
984985 break;
985986 case -1: /* An error occurred: handshake still in progress. */
10941095 p = &x509.subjectPublicKeyInfo;
10951096 result = Curl_pin_peer_pubkey(data, ptr, p->header, p->end - p->header);
10961097 if(result) {
1097 failf(data, "SSL: public key does not match pinned public key!");
1098 failf(data, "SSL: public key does not match pinned public key");
10981099 return result;
10991100 }
11001101 }
5454 /* The last #include file should be: */
5555 #include "memdebug.h"
5656
57 #ifdef HAVE_GNUTLS_SRP
58 /* the function exists */
59 #ifdef USE_TLS_SRP
60 /* the functionality is not disabled */
61 #define USE_GNUTLS_SRP
62 #endif
63 #endif
64
5765 /* Enable GnuTLS debugging by defining GTLSDEBUG */
5866 /*#define GTLSDEBUG */
5967
7482 struct ssl_backend_data {
7583 gnutls_session_t session;
7684 gnutls_certificate_credentials_t cred;
77 #ifdef HAVE_GNUTLS_SRP
85 #ifdef USE_GNUTLS_SRP
7886 gnutls_srp_client_credentials_t srp_client_cred;
7987 #endif
8088 };
435443 return CURLE_SSL_CONNECT_ERROR;
436444 }
437445
438 #ifdef HAVE_GNUTLS_SRP
439 if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) {
446 #ifdef USE_GNUTLS_SRP
447 if((SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) &&
448 Curl_allow_auth_to_host(data)) {
440449 infof(data, "Using TLS-SRP username: %s", SSL_SET_OPTION(username));
441450
442 rc = gnutls_srp_allocate_client_credentials(
443 &backend->srp_client_cred);
451 rc = gnutls_srp_allocate_client_credentials(&backend->srp_client_cred);
444452 if(rc != GNUTLS_E_SUCCESS) {
445453 failf(data, "gnutls_srp_allocate_client_cred() failed: %s",
446454 gnutls_strerror(rc));
586594 if(result)
587595 return result;
588596
589 #ifdef HAVE_GNUTLS_SRP
597 #ifdef USE_GNUTLS_SRP
590598 /* Only add SRP to the cipher list if SRP is requested. Otherwise
591599 * GnuTLS will disable TLS 1.3 support. */
592600 if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) {
608616 #endif
609617 infof(data, "GnuTLS ciphers: %s", prioritylist);
610618 rc = gnutls_priority_set_direct(session, prioritylist, &err);
611 #ifdef HAVE_GNUTLS_SRP
619 #ifdef USE_GNUTLS_SRP
612620 }
613621 #endif
614622
631639 protocols[cur].data = (unsigned char *)ALPN_H2;
632640 protocols[cur].size = ALPN_H2_LENGTH;
633641 cur++;
634 infof(data, "ALPN, offering %.*s", ALPN_H2_LENGTH, ALPN_H2);
642 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
635643 }
636644 #endif
637645
638646 protocols[cur].data = (unsigned char *)ALPN_HTTP_1_1;
639647 protocols[cur].size = ALPN_HTTP_1_1_LENGTH;
640648 cur++;
641 infof(data, "ALPN, offering %s", ALPN_HTTP_1_1);
649 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
642650
643651 if(gnutls_alpn_set_protocols(session, protocols, cur, 0)) {
644652 failf(data, "failed setting ALPN");
682690 }
683691 }
684692
685 #ifdef HAVE_GNUTLS_SRP
693 #ifdef USE_GNUTLS_SRP
686694 /* put the credentials to the current session */
687695 if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP) {
688696 rc = gnutls_credentials_set(session, GNUTLS_CRD_SRP,
865873 if(SSL_CONN_CONFIG(verifypeer) ||
866874 SSL_CONN_CONFIG(verifyhost) ||
867875 SSL_CONN_CONFIG(issuercert)) {
868 #ifdef HAVE_GNUTLS_SRP
876 #ifdef USE_GNUTLS_SRP
869877 if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP
870878 && SSL_SET_OPTION(username) != NULL
871879 && !SSL_CONN_CONFIG(verifypeer)
878886 failf(data, "failed to get server cert");
879887 *certverifyresult = GNUTLS_E_NO_CERTIFICATE_FOUND;
880888 return CURLE_PEER_FAILED_VERIFICATION;
881 #ifdef HAVE_GNUTLS_SRP
889 #ifdef USE_GNUTLS_SRP
882890 }
883891 #endif
884892 }
11971205 if(ptr) {
11981206 result = pkp_pin_peer_pubkey(data, x509_cert, ptr);
11991207 if(result != CURLE_OK) {
1200 failf(data, "SSL: public key does not match pinned public key!");
1208 failf(data, "SSL: public key does not match pinned public key");
12011209 gnutls_x509_crt_deinit(x509_cert);
12021210 return result;
12031211 }
12541262 if(conn->bits.tls_enable_alpn) {
12551263 rc = gnutls_alpn_get_selected_protocol(session, &proto);
12561264 if(rc == 0) {
1257 infof(data, "ALPN, server accepted to use %.*s", proto.size,
1258 proto.data);
1265 infof(data, VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR, proto.size,
1266 proto.data);
12591267
12601268 #ifdef USE_HTTP2
12611269 if(proto.size == ALPN_H2_LENGTH &&
12711279 }
12721280 }
12731281 else
1274 infof(data, "ALPN, server did not agree to a protocol");
1282 infof(data, VTLS_INFOF_NO_ALPN);
12751283
12761284 Curl_multiuse_state(data, conn->negnpn == CURL_HTTP_VERSION_2 ?
12771285 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
14681476 gnutls_certificate_free_credentials(backend->cred);
14691477 backend->cred = NULL;
14701478 }
1471 #ifdef HAVE_GNUTLS_SRP
1479 #ifdef USE_GNUTLS_SRP
14721480 if(backend->srp_client_cred) {
14731481 gnutls_srp_free_client_credentials(backend->srp_client_cred);
14741482 backend->srp_client_cred = NULL;
15541562 }
15551563 gnutls_certificate_free_credentials(backend->cred);
15561564
1557 #ifdef HAVE_GNUTLS_SRP
1565 #ifdef USE_GNUTLS_SRP
15581566 if(SSL_SET_OPTION(authtype) == CURL_TLSAUTH_SRP
15591567 && SSL_SET_OPTION(username) != NULL)
15601568 gnutls_srp_free_client_credentials(backend->srp_client_cred);
6969 #include "curl_memory.h"
7070 #include "memdebug.h"
7171
72 /* ALPN for http2 */
73 #ifdef USE_HTTP2
74 # undef HAS_ALPN
75 # ifdef MBEDTLS_SSL_ALPN
76 # define HAS_ALPN
77 # endif
78 #endif
79
7280 struct ssl_backend_data {
7381 mbedtls_ctr_drbg_context ctr_drbg;
7482 mbedtls_entropy_context entropy;
7583 mbedtls_ssl_context ssl;
76 int server_fd;
7784 mbedtls_x509_crt cacert;
7885 mbedtls_x509_crt clicert;
7986 #ifdef MBEDTLS_X509_CRL_PARSE_C
8188 #endif
8289 mbedtls_pk_context pk;
8390 mbedtls_ssl_config config;
91 #ifdef HAS_ALPN
8492 const char *protocols[3];
93 #endif
8594 };
8695
8796 /* apply threading? */
142151 }
143152 #else
144153 #endif
145
146 /* ALPN for http2? */
147 #ifdef USE_NGHTTP2
148 # undef HAS_ALPN
149 # ifdef MBEDTLS_SSL_ALPN
150 # define HAS_ALPN
151 # endif
152 #endif
153
154154
155155 /*
156156 * profile
613613 #ifdef HAS_ALPN
614614 if(conn->bits.tls_enable_alpn) {
615615 const char **p = &backend->protocols[0];
616 #ifdef USE_NGHTTP2
616 #ifdef USE_HTTP2
617617 if(data->state.httpwant >= CURL_HTTP_VERSION_2)
618 *p++ = NGHTTP2_PROTO_VERSION_ID;
618 *p++ = ALPN_H2;
619619 #endif
620620 *p++ = ALPN_HTTP_1_1;
621621 *p = NULL;
627627 return CURLE_SSL_CONNECT_ERROR;
628628 }
629629 for(p = &backend->protocols[0]; *p; ++p)
630 infof(data, "ALPN, offering %s", *p);
630 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, *p);
631631 }
632632 #endif
633633
812812 const char *next_protocol = mbedtls_ssl_get_alpn_protocol(&backend->ssl);
813813
814814 if(next_protocol) {
815 infof(data, "ALPN, server accepted to use %s", next_protocol);
816 #ifdef USE_NGHTTP2
817 if(!strncmp(next_protocol, NGHTTP2_PROTO_VERSION_ID,
818 NGHTTP2_PROTO_VERSION_ID_LEN) &&
819 !next_protocol[NGHTTP2_PROTO_VERSION_ID_LEN]) {
815 infof(data, VTLS_INFOF_ALPN_ACCEPTED_1STR, next_protocol);
816 #ifdef USE_HTTP2
817 if(!strncmp(next_protocol, ALPN_H2, ALPN_H2_LEN) &&
818 !next_protocol[ALPN_H2_LEN]) {
820819 conn->negnpn = CURL_HTTP_VERSION_2;
821820 }
822821 else
827826 }
828827 }
829828 else {
830 infof(data, "ALPN, server did not agree to a protocol");
829 infof(data, VTLS_INFOF_NO_ALPN);
831830 }
832831 Curl_multiuse_state(data, conn->negnpn == CURL_HTTP_VERSION_2 ?
833832 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
433433 /* search the first slash; we require at least one slash in a file name */
434434 n = strchr(str, '/');
435435 if(!n) {
436 infof(data, "warning: certificate file name \"%s\" handled as nickname; "
436 infof(data, "WARNING: certificate file name \"%s\" handled as nickname; "
437437 "please use \"./%s\" to force file name", str, str);
438438 return strdup(str);
439439 }
861861 #endif
862862 case SSL_NEXT_PROTO_NO_SUPPORT:
863863 case SSL_NEXT_PROTO_NO_OVERLAP:
864 infof(data, "ALPN/NPN, server did not agree to a protocol");
864 infof(data, VTLS_INFOF_NO_ALPN);
865865 return;
866866 #ifdef SSL_ENABLE_ALPN
867867 case SSL_NEXT_PROTO_SELECTED:
868 infof(data, "ALPN, server accepted to use %.*s", buflen, buf);
868 infof(data, VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR, buflen, buf);
869869 break;
870870 #endif
871871 case SSL_NEXT_PROTO_NEGOTIATED:
873873 break;
874874 }
875875
876 #ifdef USE_NGHTTP2
876 #ifdef USE_HTTP2
877877 if(buflen == ALPN_H2_LENGTH &&
878878 !memcmp(ALPN_H2, buf, ALPN_H2_LENGTH)) {
879879 conn->negnpn = CURL_HTTP_VERSION_2;
11451145 /* report the resulting status */
11461146 switch(result) {
11471147 case CURLE_OK:
1148 infof(data, "pinned public key verified successfully!");
1148 infof(data, "pinned public key verified successfully");
11491149 break;
11501150 case CURLE_SSL_PINNEDPUBKEYNOTMATCH:
11511151 failf(data, "failed to verify pinned public key");
17471747 PR_CloseDir(dir);
17481748 }
17491749 else
1750 infof(data, "warning: CURLOPT_CAPATH not a directory (%s)", capath);
1750 infof(data, "WARNING: CURLOPT_CAPATH not a directory (%s)", capath);
17511751 }
17521752
17531753 return CURLE_OK;
19841984 /* unless the user explicitly asks to allow the protocol vulnerability, we
19851985 use the work-around */
19861986 if(SSL_OptionSet(model, SSL_CBC_RANDOM_IV, ssl_cbc_random_iv) != SECSuccess)
1987 infof(data, "warning: failed to set SSL_CBC_RANDOM_IV = %d",
1987 infof(data, "WARNING: failed to set SSL_CBC_RANDOM_IV = %d",
19881988 ssl_cbc_random_iv);
19891989 #else
19901990 if(ssl_cbc_random_iv)
1991 infof(data, "warning: support for SSL_CBC_RANDOM_IV not compiled in");
1991 infof(data, "WARNING: support for SSL_CBC_RANDOM_IV not compiled in");
19921992 #endif
19931993
19941994 if(SSL_CONN_CONFIG(cipher_list)) {
19991999 }
20002000
20012001 if(!SSL_CONN_CONFIG(verifypeer) && SSL_CONN_CONFIG(verifyhost))
2002 infof(data, "warning: ignoring value of ssl.verifyhost");
2002 infof(data, "WARNING: ignoring value of ssl.verifyhost");
20032003
20042004 /* bypass the default SSL_AuthCertificate() hook in case we do not want to
20052005 * verify peer */
20192019 const CURLcode rv = nss_load_ca_certificates(data, conn, sockindex);
20202020 if((rv == CURLE_SSL_CACERT_BADFILE) && !SSL_CONN_CONFIG(verifypeer))
20212021 /* not a fatal error because we are not going to verify the peer */
2022 infof(data, "warning: CA certificates failed to load");
2022 infof(data, "WARNING: CA certificates failed to load");
20232023 else if(rv) {
20242024 result = rv;
20252025 goto error;
207207 !defined(OPENSSL_IS_BORINGSSL))
208208 #define HAVE_SSL_CTX_SET_CIPHERSUITES
209209 #define HAVE_SSL_CTX_SET_POST_HANDSHAKE_AUTH
210 /* SET_EC_CURVES is available under the same preconditions: see
211 * https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set1_groups.html
210 #endif
211
212 /*
213 * Whether SSL_CTX_set1_curves_list is available.
214 * OpenSSL: supported since 1.0.2, see
215 * https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set1_groups.html
216 * BoringSSL: supported since 5fd1807d95f7 (committed 2016-09-30)
217 * LibreSSL: not tested.
212218 */
219 #if ((OPENSSL_VERSION_NUMBER >= 0x10002000L) && \
220 !defined(LIBRESSL_VERSION_NUMBER)) || \
221 defined(OPENSSL_IS_BORINGSSL)
213222 #define HAVE_SSL_CTX_SET_EC_CURVES
214223 #endif
215224
547556 }
548557 }
549558
550 infof(data, "libcurl is now using a weak random seed!");
559 infof(data, "libcurl is now using a weak random seed");
551560 return (rand_enough() ? CURLE_OK :
552561 CURLE_SSL_CONNECT_ERROR /* confusing error code */);
553562 #endif
11571166 return 1;
11581167 }
11591168
1169 CURLcode Curl_ossl_set_client_cert(struct Curl_easy *data, SSL_CTX *ctx,
1170 char *cert_file,
1171 const struct curl_blob *cert_blob,
1172 const char *cert_type, char *key_file,
1173 const struct curl_blob *key_blob,
1174 const char *key_type, char *key_passwd)
1175 {
1176 int rv = cert_stuff(data, ctx, cert_file, cert_blob, cert_type, key_file,
1177 key_blob, key_type, key_passwd);
1178 if(rv != 1) {
1179 return CURLE_SSL_CERTPROBLEM;
1180 }
1181
1182 return CURLE_OK;
1183 }
1184
11601185 /* returns non-zero on failure */
11611186 static int x509_name_oneline(X509_NAME *a, char *buf, size_t size)
11621187 {
18071832 memcpy(peer_CN, ASN1_STRING_get0_data(tmp), peerlen);
18081833 peer_CN[peerlen] = '\0';
18091834 }
1810 result = CURLE_OUT_OF_MEMORY;
1835 else
1836 result = CURLE_OUT_OF_MEMORY;
18111837 }
18121838 }
18131839 else /* not a UTF8 name */
19001926 }
19011927
19021928 ch = SSL_get_peer_cert_chain(backend->handle);
1929 if(!ch) {
1930 failf(data, "Could not get peer certificate chain");
1931 result = CURLE_SSL_INVALIDCERTSTATUS;
1932 goto end;
1933 }
19031934 st = SSL_CTX_get_cert_store(backend->ctx);
19041935
19051936 #if ((OPENSSL_VERSION_NUMBER <= 0x1000201fL) /* Fixed after 1.0.2a */ || \
28192850
28202851 memcpy(&protocols[cur], ALPN_H2, ALPN_H2_LENGTH);
28212852 cur += ALPN_H2_LENGTH;
2822 infof(data, "ALPN, offering %s", ALPN_H2);
2853 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
28232854 }
28242855 #endif
28252856
28262857 protocols[cur++] = ALPN_HTTP_1_1_LENGTH;
28272858 memcpy(&protocols[cur], ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH);
28282859 cur += ALPN_HTTP_1_1_LENGTH;
2829 infof(data, "ALPN, offering %s", ALPN_HTTP_1_1);
2860 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
28302861
28312862 /* expects length prefixed preference ordered list of protocols in wire
28322863 * format
28922923 #endif
28932924
28942925 #ifdef USE_OPENSSL_SRP
2895 if(ssl_authtype == CURL_TLSAUTH_SRP) {
2926 if((ssl_authtype == CURL_TLSAUTH_SRP) &&
2927 Curl_allow_auth_to_host(data)) {
28962928 char * const ssl_username = SSL_SET_OPTION(username);
28972929
28982930 infof(data, "Using TLS-SRP username: %s", ssl_username);
31993231 SSL_free(backend->handle);
32003232 backend->handle = SSL_new(backend->ctx);
32013233 if(!backend->handle) {
3202 failf(data, "SSL: couldn't create a context (handle)!");
3234 failf(data, "SSL: couldn't create a context (handle)");
32033235 return CURLE_OUT_OF_MEMORY;
32043236 }
32053237
34253457 unsigned int len;
34263458 SSL_get0_alpn_selected(backend->handle, &neg_protocol, &len);
34273459 if(len) {
3428 infof(data, "ALPN, server accepted to use %.*s", len, neg_protocol);
3460 infof(data, VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR, len, neg_protocol);
34293461
34303462 #ifdef USE_HTTP2
34313463 if(len == ALPN_H2_LENGTH &&
34403472 }
34413473 }
34423474 else
3443 infof(data, "ALPN, server did not agree to a protocol");
3475 infof(data, VTLS_INFOF_NO_ALPN);
34443476
34453477 Curl_multiuse_state(data, conn->negnpn == CURL_HTTP_VERSION_2 ?
34463478 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
38903922 if(!strict)
38913923 return CURLE_OK;
38923924
3893 failf(data, "SSL: couldn't get peer certificate!");
3925 failf(data, "SSL: couldn't get peer certificate");
38943926 return CURLE_PEER_FAILED_VERIFICATION;
38953927 }
38963928
39303962 buffer, sizeof(buffer));
39313963 if(rc) {
39323964 if(strict)
3933 failf(data, "SSL: couldn't get X509-issuer name!");
3965 failf(data, "SSL: couldn't get X509-issuer name");
39343966 result = CURLE_PEER_FAILED_VERIFICATION;
39353967 }
39363968 else {
40484080 if(!result && ptr) {
40494081 result = pkp_pin_peer_pubkey(data, backend->server_cert, ptr);
40504082 if(result)
4051 failf(data, "SSL: public key does not match pinned public key!");
4083 failf(data, "SSL: public key does not match pinned public key");
40524084 }
40534085
40544086 X509_free(backend->server_cert);
4242 struct x509_st *server_cert);
4343 extern const struct Curl_ssl Curl_ssl_openssl;
4444
45 struct ssl_ctx_st;
46 CURLcode Curl_ossl_set_client_cert(struct Curl_easy *data,
47 struct ssl_ctx_st *ctx, char *cert_file,
48 const struct curl_blob *cert_blob,
49 const char *cert_type, char *key_file,
50 const struct curl_blob *key_blob,
51 const char *key_type, char *key_passwd);
52
4553 #endif /* USE_OPENSSL */
4654 #endif /* HEADER_CURL_SSLUSE_H */
324324
325325 config_builder = rustls_client_config_builder_new();
326326 #ifdef USE_HTTP2
327 infof(data, "offering ALPN for HTTP/1.1 and HTTP/2");
327 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
328328 rustls_client_config_builder_set_alpn_protocols(config_builder, alpn, 2);
329329 #else
330 infof(data, "offering ALPN for HTTP/1.1 only");
331330 rustls_client_config_builder_set_alpn_protocols(config_builder, alpn, 1);
332331 #endif
332 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
333333 if(!verifypeer) {
334334 rustls_client_config_builder_dangerous_set_certificate_verifier(
335335 config_builder, cr_verify_none);
405405
406406 rustls_connection_get_alpn_protocol(rconn, &protocol, &len);
407407 if(!protocol) {
408 infof(data, "ALPN, server did not agree to a protocol");
408 infof(data, VTLS_INFOF_NO_ALPN);
409409 return;
410410 }
411411
412412 #ifdef USE_HTTP2
413413 if(len == ALPN_H2_LENGTH && 0 == memcmp(ALPN_H2, protocol, len)) {
414 infof(data, "ALPN, negotiated h2");
414 infof(data, VTLS_INFOF_ALPN_ACCEPTED_1STR, ALPN_H2);
415415 conn->negnpn = CURL_HTTP_VERSION_2;
416416 }
417417 else
418418 #endif
419419 if(len == ALPN_HTTP_1_1_LENGTH &&
420420 0 == memcmp(ALPN_HTTP_1_1, protocol, len)) {
421 infof(data, "ALPN, negotiated http/1.1");
421 infof(data, VTLS_INFOF_ALPN_ACCEPTED_1STR, ALPN_HTTP_1_1);
422422 conn->negnpn = CURL_HTTP_VERSION_1_1;
423423 }
424424 else {
907907 alpn_buffer[cur++] = ALPN_H2_LENGTH;
908908 memcpy(&alpn_buffer[cur], ALPN_H2, ALPN_H2_LENGTH);
909909 cur += ALPN_H2_LENGTH;
910 infof(data, "schannel: ALPN, offering %s", ALPN_H2);
910 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
911911 }
912912 #endif
913913
914914 alpn_buffer[cur++] = ALPN_HTTP_1_1_LENGTH;
915915 memcpy(&alpn_buffer[cur], ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH);
916916 cur += ALPN_HTTP_1_1_LENGTH;
917 infof(data, "schannel: ALPN, offering %s", ALPN_HTTP_1_1);
917 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
918918
919919 *list_len = curlx_uitous(cur - list_start_index);
920920 *extension_len = *list_len + sizeof(unsigned int) + sizeof(unsigned short);
12851285 if(pubkey_ptr) {
12861286 result = pkp_pin_peer_pubkey(data, conn, sockindex, pubkey_ptr);
12871287 if(result) {
1288 failf(data, "SSL: public key does not match pinned public key!");
1288 failf(data, "SSL: public key does not match pinned public key");
12891289 return result;
12901290 }
12911291 }
14151415 if(alpn_result.ProtoNegoStatus ==
14161416 SecApplicationProtocolNegotiationStatus_Success) {
14171417
1418 infof(data, "schannel: ALPN, server accepted to use %.*s",
1418 infof(data, VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR,
14191419 alpn_result.ProtocolIdSize, alpn_result.ProtocolId);
14201420
14211421 #ifdef USE_HTTP2
14321432 }
14331433 }
14341434 else
1435 infof(data, "ALPN, server did not agree to a protocol");
1435 infof(data, VTLS_INFOF_NO_ALPN);
14361436 Curl_multiuse_state(data, conn->negnpn == CURL_HTTP_VERSION_2 ?
14371437 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
14381438 }
23702370 (const unsigned char *)pubkey->header,
23712371 (size_t)(pubkey->end - pubkey->header));
23722372 if(result) {
2373 failf(data, "SSL: public key does not match pinned public key!");
2373 failf(data, "SSL: public key does not match pinned public key");
23742374 }
23752375 } while(0);
23762376
285285 goto cleanup;
286286 }
287287
288 result = CURLE_OK;
289288 while(total_bytes_read < ca_file_bufsize) {
290289 DWORD bytes_to_read = (DWORD)(ca_file_bufsize - total_bytes_read);
291290 DWORD bytes_read = 0;
312311 /* Null terminate the buffer */
313312 ca_file_buffer[ca_file_bufsize] = '\0';
314313
315 if(result != CURLE_OK) {
316 goto cleanup;
317 }
318314 result = add_certs_data_to_store(trust_store,
319315 ca_file_buffer, ca_file_bufsize,
320316 ca_file,
937937 #ifndef CURL_DISABLE_VERBOSE_STRINGS
938938 CF_INLINE const char *TLSCipherNameForNumber(SSLCipherSuite cipher)
939939 {
940 /* The first ciphers in the ciphertable are continuos. Here we do small
940 /* The first ciphers in the ciphertable are continuous. Here we do small
941941 optimization and instead of loop directly get SSL name by cipher number.
942 */
942 */
943943 if(cipher <= SSL_FORTEZZA_DMS_WITH_FORTEZZA_CBC_SHA) {
944944 return ciphertable[cipher].name;
945945 }
17001700 CFRelease(backend->ssl_ctx);
17011701 backend->ssl_ctx = SSLCreateContext(NULL, kSSLClientSide, kSSLStreamType);
17021702 if(!backend->ssl_ctx) {
1703 failf(data, "SSL: couldn't create a context!");
1703 failf(data, "SSL: couldn't create a context");
17041704 return CURLE_OUT_OF_MEMORY;
17051705 }
17061706 }
18501850 #endif
18511851 ) {
18521852 CFArrayAppendValue(alpnArr, CFSTR(ALPN_H2));
1853 infof(data, "ALPN, offering %s", ALPN_H2);
1853 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
18541854 }
18551855 #endif
18561856
18571857 CFArrayAppendValue(alpnArr, CFSTR(ALPN_HTTP_1_1));
1858 infof(data, "ALPN, offering %s", ALPN_HTTP_1_1);
1858 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
18591859
18601860 /* expects length prefixed preference ordered list of protocols in wire
18611861 * format
27872787 pkp_pin_peer_pubkey(data, backend->ssl_ctx,
27882788 data->set.str[STRING_SSL_PINNEDPUBLICKEY]);
27892789 if(result) {
2790 failf(data, "SSL: public key does not match pinned public key!");
2790 failf(data, "SSL: public key does not match pinned public key");
27912791 return result;
27922792 }
27932793 }
28522852 conn->negnpn = CURL_HTTP_VERSION_1_1;
28532853 }
28542854 else
2855 infof(data, "ALPN, server did not agree to a protocol");
2855 infof(data, VTLS_INFOF_NO_ALPN);
28562856
28572857 Curl_multiuse_state(data, conn->negnpn == CURL_HTTP_VERSION_2 ?
28582858 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
124124 return !memcmp(first->data, second->data, first->len); /* same data */
125125 }
126126
127 static bool safecmp(char *a, char *b)
128 {
129 if(a && b)
130 return !strcmp(a, b);
131 else if(!a && !b)
132 return TRUE; /* match */
133 return FALSE; /* no match */
134 }
135
136127
137128 bool
138129 Curl_ssl_config_matches(struct ssl_primary_config *data,
146137 blobcmp(data->cert_blob, needle->cert_blob) &&
147138 blobcmp(data->ca_info_blob, needle->ca_info_blob) &&
148139 blobcmp(data->issuercert_blob, needle->issuercert_blob) &&
149 safecmp(data->CApath, needle->CApath) &&
150 safecmp(data->CAfile, needle->CAfile) &&
151 safecmp(data->issuercert, needle->issuercert) &&
152 safecmp(data->clientcert, needle->clientcert) &&
153 safecmp(data->random_file, needle->random_file) &&
154 safecmp(data->egdsocket, needle->egdsocket) &&
140 Curl_safecmp(data->CApath, needle->CApath) &&
141 Curl_safecmp(data->CAfile, needle->CAfile) &&
142 Curl_safecmp(data->issuercert, needle->issuercert) &&
143 Curl_safecmp(data->clientcert, needle->clientcert) &&
144 Curl_safecmp(data->random_file, needle->random_file) &&
145 Curl_safecmp(data->egdsocket, needle->egdsocket) &&
155146 Curl_safe_strcasecompare(data->cipher_list, needle->cipher_list) &&
156147 Curl_safe_strcasecompare(data->cipher_list13, needle->cipher_list13) &&
157148 Curl_safe_strcasecompare(data->curves, needle->curves) &&
3232 #define SSLSUPP_HTTPS_PROXY (1<<4) /* supports access via HTTPS proxies */
3333 #define SSLSUPP_TLS13_CIPHERSUITES (1<<5) /* supports TLS 1.3 ciphersuites */
3434 #define SSLSUPP_CAINFO_BLOB (1<<6)
35
36 #define ALPN_ACCEPTED "ALPN: server accepted "
37
38 #define VTLS_INFOF_NO_ALPN \
39 "ALPN: server did not agree on a protocol. Uses default."
40 #define VTLS_INFOF_ALPN_OFFER_1STR \
41 "ALPN: offers %s"
42 #define VTLS_INFOF_ALPN_ACCEPTED_1STR \
43 ALPN_ACCEPTED "%s"
44 #define VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR \
45 ALPN_ACCEPTED "%.*s"
3546
3647 struct Curl_ssl {
3748 /*
323323 }
324324
325325 if(!req_method) {
326 failf(data, "SSL: couldn't create a method!");
326 failf(data, "SSL: couldn't create a method");
327327 return CURLE_OUT_OF_MEMORY;
328328 }
329329
332332 backend->ctx = SSL_CTX_new(req_method);
333333
334334 if(!backend->ctx) {
335 failf(data, "SSL: couldn't create a context!");
335 failf(data, "SSL: couldn't create a context");
336336 return CURLE_OUT_OF_MEMORY;
337337 }
338338
461461 const char * const hostname = SSL_HOST_NAME();
462462 size_t hostname_len = strlen(hostname);
463463 if((hostname_len < USHRT_MAX) &&
464 (0 == Curl_inet_pton(AF_INET, hostname, &addr4)) &&
464 !Curl_inet_pton(AF_INET, hostname, &addr4)
465465 #ifdef ENABLE_IPV6
466 (0 == Curl_inet_pton(AF_INET6, hostname, &addr6))
466 && !Curl_inet_pton(AF_INET6, hostname, &addr6)
467467 #endif
468468 ) {
469469 size_t snilen;
502502 SSL_free(backend->handle);
503503 backend->handle = SSL_new(backend->ctx);
504504 if(!backend->handle) {
505 failf(data, "SSL: couldn't create a context (handle)!");
505 failf(data, "SSL: couldn't create a context");
506506 return CURLE_OUT_OF_MEMORY;
507507 }
508508
525525 #ifdef USE_HTTP2
526526 if(data->state.httpwant >= CURL_HTTP_VERSION_2) {
527527 strcpy(protocols + strlen(protocols), ALPN_H2 ",");
528 infof(data, "ALPN, offering %s", ALPN_H2);
528 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_H2);
529529 }
530530 #endif
531531
532532 strcpy(protocols + strlen(protocols), ALPN_HTTP_1_1);
533 infof(data, "ALPN, offering %s", ALPN_HTTP_1_1);
533 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, ALPN_HTTP_1_1);
534534
535535 if(wolfSSL_UseALPN(backend->handle, protocols,
536536 (unsigned)strlen(protocols),
738738 (const unsigned char *)pubkey->header,
739739 (size_t)(pubkey->end - pubkey->header));
740740 if(result) {
741 failf(data, "SSL: public key does not match pinned public key!");
741 failf(data, "SSL: public key does not match pinned public key");
742742 return result;
743743 }
744744 #else
756756 rc = wolfSSL_ALPN_GetProtocol(backend->handle, &protocol, &protocol_len);
757757
758758 if(rc == SSL_SUCCESS) {
759 infof(data, "ALPN, server accepted to use %.*s", protocol_len,
760 protocol);
759 infof(data, VTLS_INFOF_ALPN_ACCEPTED_LEN_1STR, protocol_len, protocol);
761760
762761 if(protocol_len == ALPN_HTTP_1_1_LENGTH &&
763762 !memcmp(protocol, ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH))
775774 BUNDLE_MULTIPLEX : BUNDLE_NO_MULTIUSE);
776775 }
777776 else if(rc == SSL_ALPN_NOT_FOUND)
778 infof(data, "ALPN, server did not agree to a protocol");
777 infof(data, VTLS_INFOF_NO_ALPN);
779778 else {
780779 failf(data, "ALPN, failure getting protocol, error %d", rc);
781780 return CURLE_SSL_CONNECT_ERROR;
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
359359
360360 #endif /* USE_WINSOCK */
361361
362 #if defined(WIN32) || defined(_WIN32)
362 #if defined(WIN32)
363363
364364 ssize_t curlx_read(int fd, void *buf, size_t count)
365365 {
371371 return (ssize_t)write(fd, buf, curlx_uztoui(count));
372372 }
373373
374 #endif /* WIN32 || _WIN32 */
374 #endif /* WIN32 */
375375
376376 #if defined(__INTEL_COMPILER) && defined(__unix__)
377377
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
2020 * KIND, either express or implied.
2121 *
2222 ***************************************************************************/
23
24 #include "curl_setup.h"
2325
2426 #ifdef USE_WINSOCK
2527 #include <curl/curl.h> /* for curl_socket_t */
6466
6567 #endif /* USE_WINSOCK */
6668
67 #if defined(WIN32) || defined(_WIN32)
69 #if defined(WIN32)
6870
6971 ssize_t curlx_read(int fd, void *buf, size_t count);
7072
7779 # define write(fd, buf, count) curlx_write(fd, buf, count)
7880 #endif
7981
80 #endif /* WIN32 || _WIN32 */
82 #endif /* WIN32 */
8183
8284 #if defined(__INTEL_COMPILER) && defined(__unix__)
8385
0 #! /bin/sh
0 #! /usr/bin/env sh
11 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
2 ## by inline-source v2014-01-03.01
2 ## by inline-source v2019-02-19.15
33
44 # libtool (GNU libtool) 2.4.6
55 # Provide generalized library-building support services.
66 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
77
8 # Copyright (C) 1996-2015 Free Software Foundation, Inc.
8 # Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc.
99 # This is free software; see the source for copying conditions. There is NO
1010 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1111
3030
3131 PROGRAM=libtool
3232 PACKAGE=libtool
33 VERSION="2.4.6 Debian-2.4.6-15"
33 VERSION="2.4.6 Debian-2.4.7-3"
3434 package_revision=2.4.6
3535
3636
6363 # libraries, which are installed to $pkgauxdir.
6464
6565 # Set a version string for this script.
66 scriptversion=2015-01-20.17; # UTC
66 scriptversion=2019-02-19.15; # UTC
6767
6868 # General shell script boiler plate, and helper functions.
6969 # Written by Gary V. Vaughan, 2004
7070
71 # Copyright (C) 2004-2015 Free Software Foundation, Inc.
72 # This is free software; see the source for copying conditions. There is NO
73 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
74
75 # This program is free software; you can redistribute it and/or modify
76 # it under the terms of the GNU General Public License as published by
77 # the Free Software Foundation; either version 3 of the License, or
78 # (at your option) any later version.
79
80 # As a special exception to the GNU General Public License, if you distribute
81 # this file as part of a program or library that is built using GNU Libtool,
82 # you may include this file under the same distribution terms that you use
83 # for the rest of that program.
84
85 # This program is distributed in the hope that it will be useful,
86 # but WITHOUT ANY WARRANTY; without even the implied warranty of
87 # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU
88 # General Public License for more details.
89
90 # You should have received a copy of the GNU General Public License
91 # along with this program. If not, see <http://www.gnu.org/licenses/>.
92
93 # Please report bugs or propose patches to gary@gnu.org.
71 # This is free software. There is NO warranty; not even for
72 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
73 #
74 # Copyright (C) 2004-2019, 2021 Bootstrap Authors
75 #
76 # This file is dual licensed under the terms of the MIT license
77 # <https://opensource.org/license/MIT>, and GPL version 2 or later
78 # <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of
79 # these licenses when using or redistributing this software or any of
80 # the files within it. See the URLs above, or the file `LICENSE`
81 # included in the Bootstrap distribution for the full license texts.
82
83 # Please report bugs or propose patches to:
84 # <https://github.com/gnulib-modules/bootstrap/issues>
9485
9586
9687 ## ------ ##
138129 _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\"
139130 fi"
140131 done
141
142 # CDPATH.
143 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
132 # These NLS vars are set unconditionally (bootstrap issue #24). Unset those
133 # in case the environment reset is needed later and the $save_* variant is not
134 # defined (see the code above).
135 LC_ALL=C
136 LANGUAGE=C
137 export LANGUAGE LC_ALL
144138
145139 # Make sure IFS has a sensible default
146140 sp=' '
157151 }
158152 fi
159153
154
155 # func_unset VAR
156 # --------------
157 # Portably unset VAR.
158 # In some shells, an 'unset VAR' statement leaves a non-zero return
159 # status if VAR is already unset, which might be problematic if the
160 # statement is used at the end of a function (thus poisoning its return
161 # value) or when 'set -e' is active (causing even a spurious abort of
162 # the script in this case).
163 func_unset ()
164 {
165 { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; }
166 }
167
168
169 # Make sure CDPATH doesn't cause `cd` commands to output the target dir.
170 func_unset CDPATH
171
172 # Make sure ${,E,F}GREP behave sanely.
173 func_unset GREP_OPTIONS
160174
161175
162176 ## ------------------------- ##
258272 rm -f conftest.in conftest.tmp conftest.nl conftest.out
259273 }
260274
261 func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin
275 func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin"
262276 rm -f conftest.sed
263277 SED=$func_path_progs_result
264278 }
294308 rm -f conftest.in conftest.tmp conftest.nl conftest.out
295309 }
296310
297 func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin
311 func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin"
298312 GREP=$func_path_progs_result
299313 }
300314
358372 s/^$_G_bs2$_G_dollar/$_G_bs&/
359373 s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g
360374 s/\n//g"
375
376 # require_check_ifs_backslash
377 # ---------------------------
378 # Check if we can use backslash as IFS='\' separator, and set
379 # $check_ifs_backshlash_broken to ':' or 'false'.
380 require_check_ifs_backslash=func_require_check_ifs_backslash
381 func_require_check_ifs_backslash ()
382 {
383 _G_save_IFS=$IFS
384 IFS='\'
385 _G_check_ifs_backshlash='a\\b'
386 for _G_i in $_G_check_ifs_backshlash
387 do
388 case $_G_i in
389 a)
390 check_ifs_backshlash_broken=false
391 ;;
392 '')
393 break
394 ;;
395 *)
396 check_ifs_backshlash_broken=:
397 break
398 ;;
399 esac
400 done
401 IFS=$_G_save_IFS
402 require_check_ifs_backslash=:
403 }
361404
362405
363406 ## ----------------- ##
579622 {
580623 $debug_cmd
581624
582 func_quote_for_eval "$2"
583 eval "$1+=\\ \$func_quote_for_eval_result"
625 func_quote_arg pretty "$2"
626 eval "$1+=\\ \$func_quote_arg_result"
584627 }'
585628 else
586629 func_append_quoted ()
587630 {
588631 $debug_cmd
589632
590 func_quote_for_eval "$2"
591 eval "$1=\$$1\\ \$func_quote_for_eval_result"
633 func_quote_arg pretty "$2"
634 eval "$1=\$$1\\ \$func_quote_arg_result"
592635 }
593636 fi
594637
10901133 }
10911134
10921135
1093 # func_quote_for_eval ARG...
1094 # --------------------------
1095 # Aesthetically quote ARGs to be evaled later.
1096 # This function returns two values:
1097 # i) func_quote_for_eval_result
1098 # double-quoted, suitable for a subsequent eval
1099 # ii) func_quote_for_eval_unquoted_result
1100 # has all characters that are still active within double
1101 # quotes backslashified.
1102 func_quote_for_eval ()
1136 # func_quote_portable EVAL ARG
1137 # ----------------------------
1138 # Internal function to portably implement func_quote_arg. Note that we still
1139 # keep attention to performance here so we as much as possible try to avoid
1140 # calling sed binary (so far O(N) complexity as long as func_append is O(1)).
1141 func_quote_portable ()
11031142 {
11041143 $debug_cmd
11051144
1106 func_quote_for_eval_unquoted_result=
1107 func_quote_for_eval_result=
1108 while test 0 -lt $#; do
1145 $require_check_ifs_backslash
1146
1147 func_quote_portable_result=$2
1148
1149 # one-time-loop (easy break)
1150 while true
1151 do
1152 if $1; then
1153 func_quote_portable_result=`$ECHO "$2" | $SED \
1154 -e "$sed_double_quote_subst" -e "$sed_double_backslash"`
1155 break
1156 fi
1157
1158 # Quote for eval.
1159 case $func_quote_portable_result in
1160 *[\\\`\"\$]*)
1161 # Fallback to sed for $func_check_bs_ifs_broken=:, or when the string
1162 # contains the shell wildcard characters.
1163 case $check_ifs_backshlash_broken$func_quote_portable_result in
1164 :*|*[\[\*\?]*)
1165 func_quote_portable_result=`$ECHO "$func_quote_portable_result" \
1166 | $SED "$sed_quote_subst"`
1167 break
1168 ;;
1169 esac
1170
1171 func_quote_portable_old_IFS=$IFS
1172 for _G_char in '\' '`' '"' '$'
1173 do
1174 # STATE($1) PREV($2) SEPARATOR($3)
1175 set start "" ""
1176 func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy
1177 IFS=$_G_char
1178 for _G_part in $func_quote_portable_result
1179 do
1180 case $1 in
1181 quote)
1182 func_append func_quote_portable_result "$3$2"
1183 set quote "$_G_part" "\\$_G_char"
1184 ;;
1185 start)
1186 set first "" ""
1187 func_quote_portable_result=
1188 ;;
1189 first)
1190 set quote "$_G_part" ""
1191 ;;
1192 esac
1193 done
1194 done
1195 IFS=$func_quote_portable_old_IFS
1196 ;;
1197 *) ;;
1198 esac
1199 break
1200 done
1201
1202 func_quote_portable_unquoted_result=$func_quote_portable_result
1203 case $func_quote_portable_result in
1204 # double-quote args containing shell metacharacters to delay
1205 # word splitting, command substitution and variable expansion
1206 # for a subsequent eval.
1207 # many bourne shells cannot handle close brackets correctly
1208 # in scan sets, so we specify it separately.
1209 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
1210 func_quote_portable_result=\"$func_quote_portable_result\"
1211 ;;
1212 esac
1213 }
1214
1215
1216 # func_quotefast_eval ARG
1217 # -----------------------
1218 # Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG',
1219 # but optimized for speed. Result is stored in $func_quotefast_eval.
1220 if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then
1221 printf -v _GL_test_printf_tilde %q '~'
1222 if test '\~' = "$_GL_test_printf_tilde"; then
1223 func_quotefast_eval ()
1224 {
1225 printf -v func_quotefast_eval_result %q "$1"
1226 }
1227 else
1228 # Broken older Bash implementations. Make those faster too if possible.
1229 func_quotefast_eval ()
1230 {
11091231 case $1 in
1110 *[\\\`\"\$]*)
1111 _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;;
1112 *)
1113 _G_unquoted_arg=$1 ;;
1114 esac
1115 if test -n "$func_quote_for_eval_unquoted_result"; then
1116 func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg"
1117 else
1118 func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg"
1119 fi
1120
1121 case $_G_unquoted_arg in
1122 # Double-quote args containing shell metacharacters to delay
1123 # word splitting, command substitution and variable expansion
1124 # for a subsequent eval.
1125 # Many Bourne shells cannot handle close brackets correctly
1126 # in scan sets, so we specify it separately.
1127 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
1128 _G_quoted_arg=\"$_G_unquoted_arg\"
1232 '~'*)
1233 func_quote_portable false "$1"
1234 func_quotefast_eval_result=$func_quote_portable_result
11291235 ;;
11301236 *)
1131 _G_quoted_arg=$_G_unquoted_arg
1132 ;;
1237 printf -v func_quotefast_eval_result %q "$1"
1238 ;;
11331239 esac
1134
1135 if test -n "$func_quote_for_eval_result"; then
1136 func_append func_quote_for_eval_result " $_G_quoted_arg"
1240 }
1241 fi
1242 else
1243 func_quotefast_eval ()
1244 {
1245 func_quote_portable false "$1"
1246 func_quotefast_eval_result=$func_quote_portable_result
1247 }
1248 fi
1249
1250
1251 # func_quote_arg MODEs ARG
1252 # ------------------------
1253 # Quote one ARG to be evaled later. MODEs argument may contain zero or more
1254 # specifiers listed below separated by ',' character. This function returns two
1255 # values:
1256 # i) func_quote_arg_result
1257 # double-quoted (when needed), suitable for a subsequent eval
1258 # ii) func_quote_arg_unquoted_result
1259 # has all characters that are still active within double
1260 # quotes backslashified. Available only if 'unquoted' is specified.
1261 #
1262 # Available modes:
1263 # ----------------
1264 # 'eval' (default)
1265 # - escape shell special characters
1266 # 'expand'
1267 # - the same as 'eval'; but do not quote variable references
1268 # 'pretty'
1269 # - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might
1270 # be used later in func_quote to get output like: 'echo "a b"' instead
1271 # of 'echo a\ b'. This is slower than default on some shells.
1272 # 'unquoted'
1273 # - produce also $func_quote_arg_unquoted_result which does not contain
1274 # wrapping double-quotes.
1275 #
1276 # Examples for 'func_quote_arg pretty,unquoted string':
1277 #
1278 # string | *_result | *_unquoted_result
1279 # ------------+-----------------------+-------------------
1280 # " | \" | \"
1281 # a b | "a b" | a b
1282 # "a b" | "\"a b\"" | \"a b\"
1283 # * | "*" | *
1284 # z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\"
1285 #
1286 # Examples for 'func_quote_arg pretty,unquoted,expand string':
1287 #
1288 # string | *_result | *_unquoted_result
1289 # --------------+---------------------+--------------------
1290 # z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\"
1291 func_quote_arg ()
1292 {
1293 _G_quote_expand=false
1294 case ,$1, in
1295 *,expand,*)
1296 _G_quote_expand=:
1297 ;;
1298 esac
1299
1300 case ,$1, in
1301 *,pretty,*|*,expand,*|*,unquoted,*)
1302 func_quote_portable $_G_quote_expand "$2"
1303 func_quote_arg_result=$func_quote_portable_result
1304 func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result
1305 ;;
1306 *)
1307 # Faster quote-for-eval for some shells.
1308 func_quotefast_eval "$2"
1309 func_quote_arg_result=$func_quotefast_eval_result
1310 ;;
1311 esac
1312 }
1313
1314
1315 # func_quote MODEs ARGs...
1316 # ------------------------
1317 # Quote all ARGs to be evaled later and join them into single command. See
1318 # func_quote_arg's description for more info.
1319 func_quote ()
1320 {
1321 $debug_cmd
1322 _G_func_quote_mode=$1 ; shift
1323 func_quote_result=
1324 while test 0 -lt $#; do
1325 func_quote_arg "$_G_func_quote_mode" "$1"
1326 if test -n "$func_quote_result"; then
1327 func_append func_quote_result " $func_quote_arg_result"
11371328 else
1138 func_append func_quote_for_eval_result "$_G_quoted_arg"
1329 func_append func_quote_result "$func_quote_arg_result"
11391330 fi
11401331 shift
11411332 done
1142 }
1143
1144
1145 # func_quote_for_expand ARG
1146 # -------------------------
1147 # Aesthetically quote ARG to be evaled later; same as above,
1148 # but do not quote variable references.
1149 func_quote_for_expand ()
1150 {
1151 $debug_cmd
1152
1153 case $1 in
1154 *[\\\`\"]*)
1155 _G_arg=`$ECHO "$1" | $SED \
1156 -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;;
1157 *)
1158 _G_arg=$1 ;;
1159 esac
1160
1161 case $_G_arg in
1162 # Double-quote args containing shell metacharacters to delay
1163 # word splitting and command substitution for a subsequent eval.
1164 # Many Bourne shells cannot handle close brackets correctly
1165 # in scan sets, so we specify it separately.
1166 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
1167 _G_arg=\"$_G_arg\"
1168 ;;
1169 esac
1170
1171 func_quote_for_expand_result=$_G_arg
11721333 }
11731334
11741335
12141375 _G_cmd=$1
12151376 _G_fail_exp=${2-':'}
12161377
1217 func_quote_for_expand "$_G_cmd"
1218 eval "func_notquiet $func_quote_for_expand_result"
1378 func_quote_arg pretty,expand "$_G_cmd"
1379 eval "func_notquiet $func_quote_arg_result"
12191380
12201381 $opt_dry_run || {
12211382 eval "$_G_cmd"
12401401 _G_fail_exp=${2-':'}
12411402
12421403 $opt_quiet || {
1243 func_quote_for_expand "$_G_cmd"
1244 eval "func_echo $func_quote_for_expand_result"
1404 func_quote_arg expand,pretty "$_G_cmd"
1405 eval "func_echo $func_quote_arg_result"
12451406 }
12461407
12471408 $opt_dry_run || {
13681529 # End:
13691530 #! /bin/sh
13701531
1371 # Set a version string for this script.
1372 scriptversion=2015-10-07.11; # UTC
1373
13741532 # A portable, pluggable option parser for Bourne shell.
13751533 # Written by Gary V. Vaughan, 2010
13761534
1377 # Copyright (C) 2010-2015 Free Software Foundation, Inc.
1378 # This is free software; see the source for copying conditions. There is NO
1379 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1380
1381 # This program is free software: you can redistribute it and/or modify
1382 # it under the terms of the GNU General Public License as published by
1383 # the Free Software Foundation, either version 3 of the License, or
1384 # (at your option) any later version.
1385
1386 # This program is distributed in the hope that it will be useful,
1387 # but WITHOUT ANY WARRANTY; without even the implied warranty of
1388 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1389 # GNU General Public License for more details.
1390
1391 # You should have received a copy of the GNU General Public License
1392 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1393
1394 # Please report bugs or propose patches to gary@gnu.org.
1535 # This is free software. There is NO warranty; not even for
1536 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1537 #
1538 # Copyright (C) 2010-2019, 2021 Bootstrap Authors
1539 #
1540 # This file is dual licensed under the terms of the MIT license
1541 # <https://opensource.org/license/MIT>, and GPL version 2 or later
1542 # <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of
1543 # these licenses when using or redistributing this software or any of
1544 # the files within it. See the URLs above, or the file `LICENSE`
1545 # included in the Bootstrap distribution for the full license texts.
1546
1547 # Please report bugs or propose patches to:
1548 # <https://github.com/gnulib-modules/bootstrap/issues>
1549
1550 # Set a version string for this script.
1551 scriptversion=2019-02-19.15; # UTC
13951552
13961553
13971554 ## ------ ##
14141571 #
14151572 # In order for the '--version' option to work, you will need to have a
14161573 # suitably formatted comment like the one at the top of this file
1417 # starting with '# Written by ' and ending with '# warranty; '.
1574 # starting with '# Written by ' and ending with '# Copyright'.
14181575 #
14191576 # For '-h' and '--help' to work, you will also need a one line
14201577 # description of your script's purpose in a comment directly above the
14261583 # to display verbose messages only when your user has specified
14271584 # '--verbose'.
14281585 #
1429 # After sourcing this file, you can plug processing for additional
1586 # After sourcing this file, you can plug in processing for additional
14301587 # options by amending the variables from the 'Configuration' section
14311588 # below, and following the instructions in the 'Option parsing'
14321589 # section further down.
14751632 ## ------------------------- ##
14761633
14771634 # This section contains functions for adding, removing, and running hooks
1478 # to the main code. A hook is just a named list of of function, that can
1479 # be run in order later on.
1635 # in the main code. A hook is just a list of function names that can be
1636 # run in order later on.
14801637
14811638 # func_hookable FUNC_NAME
14821639 # -----------------------
15091666
15101667 # func_remove_hook FUNC_NAME HOOK_FUNC
15111668 # ------------------------------------
1512 # Remove HOOK_FUNC from the list of functions called by FUNC_NAME.
1669 # Remove HOOK_FUNC from the list of hook functions to be called by
1670 # FUNC_NAME.
15131671 func_remove_hook ()
15141672 {
15151673 $debug_cmd
15161674
15171675 eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`'
1676 }
1677
1678
1679 # func_propagate_result FUNC_NAME_A FUNC_NAME_B
1680 # ---------------------------------------------
1681 # If the *_result variable of FUNC_NAME_A _is set_, assign its value to
1682 # *_result variable of FUNC_NAME_B.
1683 func_propagate_result ()
1684 {
1685 $debug_cmd
1686
1687 func_propagate_result_result=:
1688 if eval "test \"\${${1}_result+set}\" = set"
1689 then
1690 eval "${2}_result=\$${1}_result"
1691 else
1692 func_propagate_result_result=false
1693 fi
15181694 }
15191695
15201696
15211697 # func_run_hooks FUNC_NAME [ARG]...
15221698 # ---------------------------------
15231699 # Run all hook functions registered to FUNC_NAME.
1524 # It is assumed that the list of hook functions contains nothing more
1700 # It's assumed that the list of hook functions contains nothing more
15251701 # than a whitespace-delimited list of legal shell function names, and
15261702 # no effort is wasted trying to catch shell meta-characters or preserve
15271703 # whitespace.
15331709
15341710 case " $hookable_fns " in
15351711 *" $1 "*) ;;
1536 *) func_fatal_error "'$1' does not support hook funcions.n" ;;
1712 *) func_fatal_error "'$1' does not support hook functions." ;;
15371713 esac
15381714
15391715 eval _G_hook_fns=\$$1_hooks; shift
15401716
15411717 for _G_hook in $_G_hook_fns; do
1542 if eval $_G_hook '"$@"'; then
1543 # store returned options list back into positional
1544 # parameters for next 'cmd' execution.
1545 eval _G_hook_result=\$${_G_hook}_result
1546 eval set dummy "$_G_hook_result"; shift
1547 _G_rc_run_hooks=:
1718 func_unset "${_G_hook}_result"
1719 eval $_G_hook '${1+"$@"}'
1720 func_propagate_result $_G_hook func_run_hooks
1721 if $func_propagate_result_result; then
1722 eval set dummy "$func_run_hooks_result"; shift
15481723 fi
15491724 done
1550
1551 $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
15521725 }
15531726
15541727
15581731 ## --------------- ##
15591732
15601733 # In order to add your own option parsing hooks, you must accept the
1561 # full positional parameter list in your hook function, you may remove/edit
1562 # any options that you action, and then pass back the remaining unprocessed
1563 # options in '<hooked_function_name>_result', escaped suitably for
1564 # 'eval'. In this case you also must return $EXIT_SUCCESS to let the
1565 # hook's caller know that it should pay attention to
1566 # '<hooked_function_name>_result'. Returning $EXIT_FAILURE signalizes that
1567 # arguments are left untouched by the hook and therefore caller will ignore the
1568 # result variable.
1734 # full positional parameter list from your hook function. You may remove
1735 # or edit any options that you action, and then pass back the remaining
1736 # unprocessed options in '<hooked_function_name>_result', escaped
1737 # suitably for 'eval'.
1738 #
1739 # The '<hooked_function_name>_result' variable is automatically unset
1740 # before your hook gets called; for best performance, only set the
1741 # *_result variable when necessary (i.e. don't call the 'func_quote'
1742 # function unnecessarily because it can be an expensive operation on some
1743 # machines).
15691744 #
15701745 # Like this:
15711746 #
15771752 # usage_message=$usage_message'
15781753 # -s, --silent don'\''t print informational messages
15791754 # '
1580 # # No change in '$@' (ignored completely by this hook). There is
1581 # # no need to do the equivalent (but slower) action:
1582 # # func_quote_for_eval ${1+"$@"}
1583 # # my_options_prep_result=$func_quote_for_eval_result
1584 # false
1755 # # No change in '$@' (ignored completely by this hook). Leave
1756 # # my_options_prep_result variable intact.
15851757 # }
15861758 # func_add_hook func_options_prep my_options_prep
15871759 #
15921764 #
15931765 # args_changed=false
15941766 #
1595 # # Note that for efficiency, we parse as many options as we can
1767 # # Note that, for efficiency, we parse as many options as we can
15961768 # # recognise in a loop before passing the remainder back to the
15971769 # # caller on the first unrecognised argument we encounter.
15981770 # while test $# -gt 0; do
16091781 # args_changed=:
16101782 # ;;
16111783 # *) # Make sure the first unrecognised option "$_G_opt"
1612 # # is added back to "$@", we could need that later
1613 # # if $args_changed is true.
1784 # # is added back to "$@" in case we need it later,
1785 # # if $args_changed was set to 'true'.
16141786 # set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
16151787 # esac
16161788 # done
16171789 #
1790 # # Only call 'func_quote' here if we processed at least one argument.
16181791 # if $args_changed; then
1619 # func_quote_for_eval ${1+"$@"}
1620 # my_silent_option_result=$func_quote_for_eval_result
1792 # func_quote eval ${1+"$@"}
1793 # my_silent_option_result=$func_quote_result
16211794 # fi
1622 #
1623 # $args_changed
16241795 # }
16251796 # func_add_hook func_parse_options my_silent_option
16261797 #
16311802 #
16321803 # $opt_silent && $opt_verbose && func_fatal_help "\
16331804 # '--silent' and '--verbose' options are mutually exclusive."
1634 #
1635 # false
16361805 # }
16371806 # func_add_hook func_validate_options my_option_validation
16381807 #
16481817 {
16491818 $debug_cmd
16501819
1651 _G_func_options_finish_exit=false
1652 if func_run_hooks func_options ${1+"$@"}; then
1653 func_options_finish_result=$func_run_hooks_result
1654 _G_func_options_finish_exit=:
1655 fi
1656
1657 $_G_func_options_finish_exit
1820 func_run_hooks func_options ${1+"$@"}
1821 func_propagate_result func_run_hooks func_options_finish
16581822 }
16591823
16601824
16671831 {
16681832 $debug_cmd
16691833
1670 _G_rc_options=false
1834 _G_options_quoted=false
16711835
16721836 for my_func in options_prep parse_options validate_options options_finish
16731837 do
1674 if eval func_$my_func '${1+"$@"}'; then
1675 eval _G_res_var='$'"func_${my_func}_result"
1676 eval set dummy "$_G_res_var" ; shift
1677 _G_rc_options=:
1838 func_unset func_${my_func}_result
1839 func_unset func_run_hooks_result
1840 eval func_$my_func '${1+"$@"}'
1841 func_propagate_result func_$my_func func_options
1842 if $func_propagate_result_result; then
1843 eval set dummy "$func_options_result"; shift
1844 _G_options_quoted=:
16781845 fi
16791846 done
16801847
1681 # Save modified positional parameters for caller. As a top-level
1682 # options-parser function we always need to set the 'func_options_result'
1683 # variable (regardless the $_G_rc_options value).
1684 if $_G_rc_options; then
1685 func_options_result=$_G_res_var
1686 else
1687 func_quote_for_eval ${1+"$@"}
1688 func_options_result=$func_quote_for_eval_result
1689 fi
1690
1691 $_G_rc_options
1848 $_G_options_quoted || {
1849 # As we (func_options) are top-level options-parser function and
1850 # nobody quoted "$@" for us yet, we need to do it explicitly for
1851 # caller.
1852 func_quote eval ${1+"$@"}
1853 func_options_result=$func_quote_result
1854 }
16921855 }
16931856
16941857
16981861 # Note that when calling hook functions, we pass through the list of
16991862 # positional parameters. If a hook function modifies that list, and
17001863 # needs to propagate that back to rest of this script, then the complete
1701 # modified list must be put in 'func_run_hooks_result' before
1702 # returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
1864 # modified list must be put in 'func_run_hooks_result' before returning.
17031865 func_hookable func_options_prep
17041866 func_options_prep ()
17051867 {
17091871 opt_verbose=false
17101872 opt_warning_types=
17111873
1712 _G_rc_options_prep=false
1713 if func_run_hooks func_options_prep ${1+"$@"}; then
1714 _G_rc_options_prep=:
1715 # save modified positional parameters for caller
1716 func_options_prep_result=$func_run_hooks_result
1717 fi
1718
1719 $_G_rc_options_prep
1874 func_run_hooks func_options_prep ${1+"$@"}
1875 func_propagate_result func_run_hooks func_options_prep
17201876 }
17211877
17221878
17281884 {
17291885 $debug_cmd
17301886
1731 func_parse_options_result=
1732
1733 _G_rc_parse_options=false
1887 _G_parse_options_requote=false
17341888 # this just eases exit handling
17351889 while test $# -gt 0; do
17361890 # Defer to hook functions for initial option parsing, so they
17371891 # get priority in the event of reusing an option name.
1738 if func_run_hooks func_parse_options ${1+"$@"}; then
1739 eval set dummy "$func_run_hooks_result"; shift
1740 _G_rc_parse_options=:
1892 func_run_hooks func_parse_options ${1+"$@"}
1893 func_propagate_result func_run_hooks func_parse_options
1894 if $func_propagate_result_result; then
1895 eval set dummy "$func_parse_options_result"; shift
1896 # Even though we may have changed "$@", we passed the "$@" array
1897 # down into the hook and it quoted it for us (because we are in
1898 # this if-branch). No need to quote it again.
1899 _G_parse_options_requote=false
17411900 fi
17421901
17431902 # Break out of the loop if we already parsed every option.
17441903 test $# -gt 0 || break
17451904
1905 # We expect that one of the options parsed in this function matches
1906 # and thus we remove _G_opt from "$@" and need to re-quote.
17461907 _G_match_parse_options=:
17471908 _G_opt=$1
17481909 shift
17491910 case $_G_opt in
17501911 --debug|-x) debug_cmd='set -x'
1751 func_echo "enabling shell trace mode"
1912 func_echo "enabling shell trace mode" >&2
17521913 $debug_cmd
17531914 ;;
17541915
17591920
17601921 --warnings|--warning|-W)
17611922 if test $# = 0 && func_missing_arg $_G_opt; then
1762 _G_rc_parse_options=:
1923 _G_parse_options_requote=:
17631924 break
17641925 fi
17651926 case " $warning_categories $1" in
18141975 shift
18151976 ;;
18161977
1817 --) _G_rc_parse_options=: ; break ;;
1978 --) _G_parse_options_requote=: ; break ;;
18181979 -*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
18191980 *) set dummy "$_G_opt" ${1+"$@"}; shift
18201981 _G_match_parse_options=false
18221983 ;;
18231984 esac
18241985
1825 $_G_match_parse_options && _G_rc_parse_options=:
1986 if $_G_match_parse_options; then
1987 _G_parse_options_requote=:
1988 fi
18261989 done
18271990
1828
1829 if $_G_rc_parse_options; then
1991 if $_G_parse_options_requote; then
18301992 # save modified positional parameters for caller
1831 func_quote_for_eval ${1+"$@"}
1832 func_parse_options_result=$func_quote_for_eval_result
1993 func_quote eval ${1+"$@"}
1994 func_parse_options_result=$func_quote_result
18331995 fi
1834
1835 $_G_rc_parse_options
18361996 }
18371997
18381998
18452005 {
18462006 $debug_cmd
18472007
1848 _G_rc_validate_options=false
1849
18502008 # Display all warnings if -W was not given.
18512009 test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
18522010
1853 if func_run_hooks func_validate_options ${1+"$@"}; then
1854 # save modified positional parameters for caller
1855 func_validate_options_result=$func_run_hooks_result
1856 _G_rc_validate_options=:
1857 fi
2011 func_run_hooks func_validate_options ${1+"$@"}
2012 func_propagate_result func_run_hooks func_validate_options
18582013
18592014 # Bail if the options were screwed!
18602015 $exit_cmd $EXIT_FAILURE
1861
1862 $_G_rc_validate_options
18632016 }
18642017
18652018
19152068
19162069 # func_split_equals STRING
19172070 # ------------------------
1918 # Set func_split_equals_lhs and func_split_equals_rhs shell variables after
1919 # splitting STRING at the '=' sign.
2071 # Set func_split_equals_lhs and func_split_equals_rhs shell variables
2072 # after splitting STRING at the '=' sign.
19202073 test -z "$_G_HAVE_XSI_OPS" \
19212074 && (eval 'x=a/b/c;
19222075 test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
19312084
19322085 func_split_equals_lhs=${1%%=*}
19332086 func_split_equals_rhs=${1#*=}
1934 test "x$func_split_equals_lhs" = "x$1" \
1935 && func_split_equals_rhs=
2087 if test "x$func_split_equals_lhs" = "x$1"; then
2088 func_split_equals_rhs=
2089 fi
19362090 }'
19372091 else
19382092 # ...otherwise fall back to using expr, which is often a shell builtin.
19422096
19432097 func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'`
19442098 func_split_equals_rhs=
1945 test "x$func_split_equals_lhs" = "x$1" \
2099 test "x$func_split_equals_lhs=" = "x$1" \
19462100 || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'`
19472101 }
19482102 fi #func_split_equals
19682122 {
19692123 $debug_cmd
19702124
1971 func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'`
2125 func_split_short_opt_name=`expr "x$1" : 'x\(-.\)'`
19722126 func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'`
19732127 }
19742128 fi #func_split_short_opt
20102164 # func_version
20112165 # ------------
20122166 # Echo version message to standard output and exit.
2167 # The version message is extracted from the calling file's header
2168 # comments, with leading '# ' stripped:
2169 # 1. First display the progname and version
2170 # 2. Followed by the header comment line matching /^# Written by /
2171 # 3. Then a blank line followed by the first following line matching
2172 # /^# Copyright /
2173 # 4. Immediately followed by any lines between the previous matches,
2174 # except lines preceding the intervening completely blank line.
2175 # For example, see the header comments of this file.
20132176 func_version ()
20142177 {
20152178 $debug_cmd
20162179
20172180 printf '%s\n' "$progname $scriptversion"
20182181 $SED -n '
2019 /(C)/!b go
2020 :more
2021 /\./!{
2022 N
2023 s|\n# | |
2024 b more
2182 /^# Written by /!b
2183 s|^# ||; p; n
2184
2185 :fwd2blnk
2186 /./ {
2187 n
2188 b fwd2blnk
20252189 }
2026 :go
2027 /^# Written by /,/# warranty; / {
2028 s|^# ||
2029 s|^# *$||
2030 s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2|
2031 p
2190 p; n
2191
2192 :holdwrnt
2193 s|^# ||
2194 s|^# *$||
2195 /^Copyright /!{
2196 /./H
2197 n
2198 b holdwrnt
20322199 }
2033 /^# Written by / {
2034 s|^# ||
2035 p
2036 }
2037 /^warranty; /q' < "$progpath"
2200
2201 s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2|
2202 G
2203 s|\(\n\)\n*|\1|g
2204 p; q' < "$progpath"
20382205
20392206 exit $?
20402207 }
20442211 # mode: shell-script
20452212 # sh-indentation: 2
20462213 # eval: (add-hook 'before-save-hook 'time-stamp)
2047 # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC"
2214 # time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC"
20482215 # time-stamp-time-zone: "UTC"
20492216 # End:
20502217
21402307 compiler: $LTCC
21412308 compiler flags: $LTCFLAGS
21422309 linker: $LD (gnu? $with_gnu_ld)
2143 version: $progname $scriptversion Debian-2.4.6-15
2310 version: $progname $scriptversion Debian-2.4.7-3
21442311 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
21452312 autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
21462313
21962363 # a configuration failure hint, and exit.
21972364 func_fatal_configuration ()
21982365 {
2199 func__fatal_error ${1+"$@"} \
2366 func_fatal_error ${1+"$@"} \
22002367 "See the $PACKAGE documentation for more information." \
22012368 "Fatal configuration error."
22022369 }
23412508
23422509 nonopt=
23432510 preserve_args=
2511
2512 _G_rc_lt_options_prep=:
23442513
23452514 _G_rc_lt_options_prep=:
23462515
23742543
23752544 if $_G_rc_lt_options_prep; then
23762545 # Pass back the list of options.
2377 func_quote_for_eval ${1+"$@"}
2378 libtool_options_prep_result=$func_quote_for_eval_result
2546 func_quote eval ${1+"$@"}
2547 libtool_options_prep_result=$func_quote_result
23792548 fi
2380
2381 $_G_rc_lt_options_prep
23822549 }
23832550 func_add_hook func_options_prep libtool_options_prep
23842551
24812648
24822649 if $_G_rc_lt_parse_options; then
24832650 # save modified positional parameters for caller
2484 func_quote_for_eval ${1+"$@"}
2485 libtool_parse_options_result=$func_quote_for_eval_result
2651 func_quote eval ${1+"$@"}
2652 libtool_parse_options_result=$func_quote_result
24862653 fi
2487
2488 $_G_rc_lt_parse_options
24892654 }
24902655 func_add_hook func_parse_options libtool_parse_options
24912656
25422707 }
25432708
25442709 # Pass back the unparsed argument list
2545 func_quote_for_eval ${1+"$@"}
2546 libtool_validate_options_result=$func_quote_for_eval_result
2710 func_quote eval ${1+"$@"}
2711 libtool_validate_options_result=$func_quote_result
25472712 }
25482713 func_add_hook func_validate_options libtool_validate_options
25492714
35093674 esac
35103675 done
35113676
3512 func_quote_for_eval "$libobj"
3513 test "X$libobj" != "X$func_quote_for_eval_result" \
3677 func_quote_arg pretty "$libobj"
3678 test "X$libobj" != "X$func_quote_arg_result" \
35143679 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
35153680 && func_warning "libobj name '$libobj' may not contain shell special characters."
35163681 func_dirname_and_basename "$obj" "/" ""
35833748
35843749 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
35853750 srcfile=$func_to_tool_file_result
3586 func_quote_for_eval "$srcfile"
3587 qsrcfile=$func_quote_for_eval_result
3751 func_quote_arg pretty "$srcfile"
3752 qsrcfile=$func_quote_arg_result
35883753
35893754 # Only build a PIC object if we are building libtool libraries.
35903755 if test yes = "$build_libtool_libs"; then
37393904 -prefer-non-pic try to build non-PIC objects only
37403905 -shared do not build a '.o' file suitable for static linking
37413906 -static only build a '.o' file suitable for static linking
3742 -Wc,FLAG pass FLAG directly to the compiler
3907 -Wc,FLAG
3908 -Xcompiler FLAG pass FLAG directly to the compiler
37433909
37443910 COMPILE-COMMAND is a command to be used in creating a 'standard' object file
37453911 from the given SOURCEFILE.
38454011 -weak LIBNAME declare that the target provides the LIBNAME interface
38464012 -Wc,FLAG
38474013 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
4014 -Wa,FLAG
4015 -Xassembler FLAG pass linker-specific FLAG directly to the assembler
38484016 -Wl,FLAG
38494017 -Xlinker FLAG pass linker-specific FLAG directly to the linker
38504018 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
41874355 case $nonopt in *shtool*) :;; *) false;; esac
41884356 then
41894357 # Aesthetically quote it.
4190 func_quote_for_eval "$nonopt"
4191 install_prog="$func_quote_for_eval_result "
4358 func_quote_arg pretty "$nonopt"
4359 install_prog="$func_quote_arg_result "
41924360 arg=$1
41934361 shift
41944362 else
41984366
41994367 # The real first argument should be the name of the installation program.
42004368 # Aesthetically quote it.
4201 func_quote_for_eval "$arg"
4202 func_append install_prog "$func_quote_for_eval_result"
4369 func_quote_arg pretty "$arg"
4370 func_append install_prog "$func_quote_arg_result"
42034371 install_shared_prog=$install_prog
42044372 case " $install_prog " in
42054373 *[\\\ /]cp\ *) install_cp=: ;;
42564424 esac
42574425
42584426 # Aesthetically quote the argument.
4259 func_quote_for_eval "$arg"
4260 func_append install_prog " $func_quote_for_eval_result"
4427 func_quote_arg pretty "$arg"
4428 func_append install_prog " $func_quote_arg_result"
42614429 if test -n "$arg2"; then
4262 func_quote_for_eval "$arg2"
4430 func_quote_arg pretty "$arg2"
42634431 fi
4264 func_append install_shared_prog " $func_quote_for_eval_result"
4432 func_append install_shared_prog " $func_quote_arg_result"
42654433 done
42664434
42674435 test -z "$install_prog" && \
42724440
42734441 if test -n "$install_override_mode" && $no_mode; then
42744442 if $install_cp; then :; else
4275 func_quote_for_eval "$install_override_mode"
4276 func_append install_shared_prog " -m $func_quote_for_eval_result"
4443 func_quote_arg pretty "$install_override_mode"
4444 func_append install_shared_prog " -m $func_quote_arg_result"
42774445 fi
42784446 fi
42794447
45694737 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
45704738
45714739 $opt_quiet || {
4572 func_quote_for_expand "$relink_command"
4573 eval "func_echo $func_quote_for_expand_result"
4740 func_quote_arg expand,pretty "$relink_command"
4741 eval "func_echo $func_quote_arg_result"
45744742 }
45754743 if eval "$relink_command"; then :
45764744 else
53495517 if test \"\$libtool_execute_magic\" != \"$magic\"; then
53505518 file=\"\$0\""
53515519
5352 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
5520 func_quote_arg pretty "$ECHO"
5521 qECHO=$func_quote_arg_result
53535522 $ECHO "\
53545523
53555524 # A function that is used when there is no print builtin or printf.
53595528 \$1
53605529 _LTECHO_EOF'
53615530 }
5362 ECHO=\"$qECHO\"
5531 ECHO=$qECHO
53635532 fi
53645533
53655534 # Very basic option parsing. These options are (a) specific to
67026871 while test "$#" -gt 0; do
67036872 arg=$1
67046873 shift
6705 func_quote_for_eval "$arg"
6706 qarg=$func_quote_for_eval_unquoted_result
6707 func_append libtool_args " $func_quote_for_eval_result"
6874 func_quote_arg pretty,unquoted "$arg"
6875 qarg=$func_quote_arg_unquoted_result
6876 func_append libtool_args " $func_quote_arg_result"
67086877
67096878 # If the previous option needs an argument, assign it.
67106879 if test -n "$prev"; then
69407109 prev=
69417110 continue
69427111 ;;
7112 xassembler)
7113 func_append compiler_flags " -Xassembler $qarg"
7114 prev=
7115 func_append compile_command " -Xassembler $qarg"
7116 func_append finalize_command " -Xassembler $qarg"
7117 continue
7118 ;;
69437119 xcclinker)
69447120 func_append linker_flags " $qarg"
69457121 func_append compiler_flags " $qarg"
71107286 # These systems don't actually have a C library (as such)
71117287 test X-lc = "X$arg" && continue
71127288 ;;
7113 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)
7289 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig* | *-*-midnightbsd*)
71147290 # Do not include libc due to us having libc/libc_r.
71157291 test X-lc = "X$arg" && continue
71167292 ;;
71307306 esac
71317307 elif test X-lc_r = "X$arg"; then
71327308 case $host in
7133 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)
7309 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig* | *-*-midnightbsd*)
71347310 # Do not include libc_r directly, use -pthread flag.
71357311 continue
71367312 ;;
71607336 prev=xcompiler
71617337 continue
71627338 ;;
7163
7164 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
7339 # Solaris ld rejects as of 11.4. Refer to Oracle bug 22985199.
7340 -pthread)
7341 case $host in
7342 *solaris2*) ;;
7343 *)
7344 case "$new_inherited_linker_flags " in
7345 *" $arg "*) ;;
7346 * ) func_append new_inherited_linker_flags " $arg" ;;
7347 esac
7348 ;;
7349 esac
7350 continue
7351 ;;
7352 -mt|-mthreads|-kthread|-Kthread|-pthreads|--thread-safe \
71657353 |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
71667354 func_append compiler_flags " $arg"
71677355 func_append compile_command " $arg"
73027490 save_ifs=$IFS; IFS=,
73037491 for flag in $args; do
73047492 IFS=$save_ifs
7305 func_quote_for_eval "$flag"
7306 func_append arg " $func_quote_for_eval_result"
7307 func_append compiler_flags " $func_quote_for_eval_result"
7493 func_quote_arg pretty "$flag"
7494 func_append arg " $func_quote_arg_result"
7495 func_append compiler_flags " $func_quote_arg_result"
73087496 done
73097497 IFS=$save_ifs
73107498 func_stripname ' ' '' "$arg"
73187506 save_ifs=$IFS; IFS=,
73197507 for flag in $args; do
73207508 IFS=$save_ifs
7321 func_quote_for_eval "$flag"
7322 func_append arg " $wl$func_quote_for_eval_result"
7323 func_append compiler_flags " $wl$func_quote_for_eval_result"
7324 func_append linker_flags " $func_quote_for_eval_result"
7509 func_quote_arg pretty "$flag"
7510 func_append arg " $wl$func_quote_arg_result"
7511 func_append compiler_flags " $wl$func_quote_arg_result"
7512 func_append linker_flags " $func_quote_arg_result"
73257513 done
73267514 IFS=$save_ifs
73277515 func_stripname ' ' '' "$arg"
73287516 arg=$func_stripname_result
73297517 ;;
73307518
7519 -Xassembler)
7520 prev=xassembler
7521 continue
7522 ;;
7523
73317524 -Xcompiler)
73327525 prev=xcompiler
73337526 continue
73457538
73467539 # -msg_* for osf cc
73477540 -msg_*)
7348 func_quote_for_eval "$arg"
7349 arg=$func_quote_for_eval_result
7541 func_quote_arg pretty "$arg"
7542 arg=$func_quote_arg_result
73507543 ;;
73517544
73527545 # Flags to be passed through unchanged, with rationale:
73697562 # -fuse-ld=* Linker select flags for GCC
73707563 # -static-* direct GCC to link specific libraries statically
73717564 # -fcilkplus Cilk Plus language extension features for C/C++
7565 # -Wa,* Pass flags directly to the assembler
73727566 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
73737567 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
73747568 -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
7375 -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus)
7376 func_quote_for_eval "$arg"
7377 arg=$func_quote_for_eval_result
7569 -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus|-Wa,*)
7570 func_quote_arg pretty "$arg"
7571 arg=$func_quote_arg_result
73787572 func_append compile_command " $arg"
73797573 func_append finalize_command " $arg"
73807574 func_append compiler_flags " $arg"
73957589 continue
73967590 else
73977591 # Otherwise treat like 'Some other compiler flag' below
7398 func_quote_for_eval "$arg"
7399 arg=$func_quote_for_eval_result
7592 func_quote_arg pretty "$arg"
7593 arg=$func_quote_arg_result
74007594 fi
74017595 ;;
74027596
74037597 # Some other compiler flag.
74047598 -* | +*)
7405 func_quote_for_eval "$arg"
7406 arg=$func_quote_for_eval_result
7599 func_quote_arg pretty "$arg"
7600 arg=$func_quote_arg_result
74077601 ;;
74087602
74097603 *.$objext)
75237717 *)
75247718 # Unknown arguments in both finalize_command and compile_command need
75257719 # to be aesthetically quoted because they are evaled later.
7526 func_quote_for_eval "$arg"
7527 arg=$func_quote_for_eval_result
7720 func_quote_arg pretty "$arg"
7721 arg=$func_quote_arg_result
75287722 ;;
75297723 esac # arg
75307724
87328926 test CXX = "$tagname" && {
87338927 case $host_os in
87348928 linux*)
8735 case `$CC -V 2>&1 | sed 5q` in
8929 case `$CC -V 2>&1 | $SED 5q` in
87368930 *Sun\ C*) # Sun C++ 5.9
87378931 func_suncc_cstd_abi
87388932
89059099 #
89069100 case $version_type in
89079101 # correct linux to gnu/linux during the next big refactor
8908 darwin|freebsd-elf|linux|osf|windows|none)
9102 darwin|freebsd-elf|linux|midnightbsd-elf|osf|windows|none)
89099103 func_arith $number_major + $number_minor
89109104 current=$func_arith_result
89119105 age=$number_minor
89999193 versuffix=.$current.$revision
90009194 ;;
90019195
9002 freebsd-elf)
9196 freebsd-elf | midnightbsd-elf)
90039197 func_arith $current - $age
90049198 major=.$func_arith_result
90059199 versuffix=$major.$age.$revision
92259419 *-*-netbsd*)
92269420 # Don't link with libc until the a.out ld.so is fixed.
92279421 ;;
9228 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
9422 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-midnightbsd*)
92299423 # Do not include libc due to us having libc/libc_r.
92309424 ;;
92319425 *-*-sco3.2v5* | *-*-sco5v6*)
1003610230 for cmd in $concat_cmds; do
1003710231 IFS=$save_ifs
1003810232 $opt_quiet || {
10039 func_quote_for_expand "$cmd"
10040 eval "func_echo $func_quote_for_expand_result"
10233 func_quote_arg expand,pretty "$cmd"
10234 eval "func_echo $func_quote_arg_result"
1004110235 }
1004210236 $opt_dry_run || eval "$cmd" || {
1004310237 lt_exit=$?
1013010324 eval cmd=\"$cmd\"
1013110325 IFS=$save_ifs
1013210326 $opt_quiet || {
10133 func_quote_for_expand "$cmd"
10134 eval "func_echo $func_quote_for_expand_result"
10327 func_quote_arg expand,pretty "$cmd"
10328 eval "func_echo $func_quote_arg_result"
1013510329 }
1013610330 $opt_dry_run || eval "$cmd" || {
1013710331 lt_exit=$?
1060510799 elif eval var_value=\$$var; test -z "$var_value"; then
1060610800 relink_command="$var=; export $var; $relink_command"
1060710801 else
10608 func_quote_for_eval "$var_value"
10609 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
10802 func_quote_arg pretty "$var_value"
10803 relink_command="$var=$func_quote_arg_result; export $var; $relink_command"
1061010804 fi
1061110805 done
10612 relink_command="(cd `pwd`; $relink_command)"
10613 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
10806 func_quote eval cd "`pwd`"
10807 func_quote_arg pretty,unquoted "($func_quote_result; $relink_command)"
10808 relink_command=$func_quote_arg_unquoted_result
1061410809 fi
1061510810
1061610811 # Only actually do things if not in dry run mode.
1085011045 elif eval var_value=\$$var; test -z "$var_value"; then
1085111046 relink_command="$var=; export $var; $relink_command"
1085211047 else
10853 func_quote_for_eval "$var_value"
10854 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
11048 func_quote_arg pretty,unquoted "$var_value"
11049 relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command"
1085511050 fi
1085611051 done
1085711052 # Quote the link command for shipping.
10858 relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
10859 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
11053 func_quote eval cd "`pwd`"
11054 relink_command="($func_quote_result; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
11055 func_quote_arg pretty,unquoted "$relink_command"
11056 relink_command=$func_quote_arg_unquoted_result
1086011057 if test yes = "$hardcode_automatic"; then
1086111058 relink_command=
1086211059 fi
00 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
11 #
2 # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.
2 # Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software
3 # Foundation, Inc.
34 # Written by Gordon Matzigkeit, 1996
45 #
56 # This file is free software; the Free Software Foundation gives
3031 # along with this program. If not, see <http://www.gnu.org/licenses/>.
3132 ])
3233
33 # serial 58 LT_INIT
34 # serial 59 LT_INIT
3435
3536
3637 # LT_PREREQ(VERSION)
180181 m4_require([_LT_CHECK_SHELL_FEATURES])dnl
181182 m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
182183 m4_require([_LT_CMD_RELOAD])dnl
184 m4_require([_LT_DECL_FILECMD])dnl
183185 m4_require([_LT_CHECK_MAGIC_METHOD])dnl
184186 m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
185187 m4_require([_LT_CMD_OLD_ARCHIVE])dnl
218220 ofile=libtool
219221 can_build_shared=yes
220222
221 # All known linkers require a '.a' archive for static linking (except MSVC,
222 # which needs '.lib').
223 # All known linkers require a '.a' archive for static linking (except MSVC and
224 # ICC, which need '.lib').
223225 libext=a
224226
225227 with_gnu_ld=$lt_cv_prog_gnu_ld
776778 # if finds mixed CR/LF and LF-only lines. Since sed operates in
777779 # text mode, it properly converts lines to CR/LF. This bash problem
778780 # is reportedly fixed, but why not run on old versions too?
779 sed '$q' "$ltmain" >> "$cfgfile" \
781 $SED '$q' "$ltmain" >> "$cfgfile" \
780782 || (rm -f "$cfgfile"; exit 1)
781783
782784 mv -f "$cfgfile" "$ofile" ||
10401042 _LT_EOF
10411043 echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
10421044 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
1043 echo "$AR cr libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
1044 $AR cr libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
1045 echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
1046 $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
10451047 echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
10461048 $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
10471049 cat > conftest.c << _LT_EOF
10651067 _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;
10661068 darwin1.*)
10671069 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
1068 darwin*) # darwin 5.x on
1069 # if running on 10.5 or later, the deployment target defaults
1070 # to the OS version, if on x86, and 10.4, the deployment
1071 # target defaults to 10.4. Don't you love it?
1072 case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
1073 10.0,*86*-darwin8*|10.0,*-darwin[[912]]*)
1074 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
1075 10.[[012]][[,.]]*)
1076 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
1077 10.*|11.*)
1078 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
1070 darwin*)
1071 case $MACOSX_DEPLOYMENT_TARGET,$host in
1072 10.[[012]],*|,*powerpc*-darwin[[5-8]]*)
1073 _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
1074 *)
1075 _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
10791076 esac
10801077 ;;
10811078 esac
11241121 output_verbose_link_cmd=func_echo_all
11251122 _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil"
11261123 _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil"
1127 _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
1128 _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
1124 _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil"
1125 _LT_TAGVAR(module_expsym_cmds, $1)="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil"
11291126 m4_if([$1], [CXX],
11301127 [ if test yes != "$lt_cv_apple_cc_single_mod"; then
11311128 _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil"
1132 _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil"
1129 _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil"
11331130 fi
11341131 ],[])
11351132 else
12431240 # _LT_WITH_SYSROOT
12441241 # ----------------
12451242 AC_DEFUN([_LT_WITH_SYSROOT],
1246 [AC_MSG_CHECKING([for sysroot])
1243 [m4_require([_LT_DECL_SED])dnl
1244 AC_MSG_CHECKING([for sysroot])
12471245 AC_ARG_WITH([sysroot],
12481246 [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
12491247 [Search for dependent libraries within DIR (or the compiler's sysroot
12601258 fi
12611259 ;; #(
12621260 /*)
1263 lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
1261 lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"`
12641262 ;; #(
12651263 no|'')
12661264 ;; #(
12901288 # options accordingly.
12911289 echo 'int i;' > conftest.$ac_ext
12921290 if AC_TRY_EVAL(ac_compile); then
1293 case `/usr/bin/file conftest.$ac_objext` in
1291 case `$FILECMD conftest.$ac_objext` in
12941292 *ELF-32*)
12951293 HPUX_IA64_MODE=32
12961294 ;;
13071305 echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
13081306 if AC_TRY_EVAL(ac_compile); then
13091307 if test yes = "$lt_cv_prog_gnu_ld"; then
1310 case `/usr/bin/file conftest.$ac_objext` in
1308 case `$FILECMD conftest.$ac_objext` in
13111309 *32-bit*)
13121310 LD="${LD-ld} -melf32bsmip"
13131311 ;;
13191317 ;;
13201318 esac
13211319 else
1322 case `/usr/bin/file conftest.$ac_objext` in
1320 case `$FILECMD conftest.$ac_objext` in
13231321 *32-bit*)
13241322 LD="${LD-ld} -32"
13251323 ;;
13411339 echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
13421340 if AC_TRY_EVAL(ac_compile); then
13431341 emul=elf
1344 case `/usr/bin/file conftest.$ac_objext` in
1342 case `$FILECMD conftest.$ac_objext` in
13451343 *32-bit*)
13461344 emul="${emul}32"
13471345 ;;
13491347 emul="${emul}64"
13501348 ;;
13511349 esac
1352 case `/usr/bin/file conftest.$ac_objext` in
1350 case `$FILECMD conftest.$ac_objext` in
13531351 *MSB*)
13541352 emul="${emul}btsmip"
13551353 ;;
13571355 emul="${emul}ltsmip"
13581356 ;;
13591357 esac
1360 case `/usr/bin/file conftest.$ac_objext` in
1358 case `$FILECMD conftest.$ac_objext` in
13611359 *N32*)
13621360 emul="${emul}n32"
13631361 ;;
13771375 # not appear in the list.
13781376 echo 'int i;' > conftest.$ac_ext
13791377 if AC_TRY_EVAL(ac_compile); then
1380 case `/usr/bin/file conftest.o` in
1378 case `$FILECMD conftest.o` in
13811379 *32-bit*)
13821380 case $host in
13831381 x86_64-*kfreebsd*-gnu)
13841382 LD="${LD-ld} -m elf_i386_fbsd"
13851383 ;;
13861384 x86_64-*linux*)
1387 case `/usr/bin/file conftest.o` in
1385 case `$FILECMD conftest.o` in
13881386 *x86-64*)
13891387 LD="${LD-ld} -m elf32_x86_64"
13901388 ;;
14521450 # options accordingly.
14531451 echo 'int i;' > conftest.$ac_ext
14541452 if AC_TRY_EVAL(ac_compile); then
1455 case `/usr/bin/file conftest.o` in
1453 case `$FILECMD conftest.o` in
14561454 *64-bit*)
14571455 case $lt_cv_prog_gnu_ld in
14581456 yes*)
14911489 m4_defun([_LT_PROG_AR],
14921490 [AC_CHECK_TOOLS(AR, [ar], false)
14931491 : ${AR=ar}
1494 : ${AR_FLAGS=cr}
14951492 _LT_DECL([], [AR], [1], [The archiver])
1496 _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
1493
1494 # Use ARFLAGS variable as AR's operation code to sync the variable naming with
1495 # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have
1496 # higher priority because thats what people were doing historically (setting
1497 # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS
1498 # variable obsoleted/removed.
1499
1500 test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr}
1501 lt_ar_flags=$AR_FLAGS
1502 _LT_DECL([], [lt_ar_flags], [0], [Flags to create an archive (by configure)])
1503
1504 # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override
1505 # by AR_FLAGS because that was never working and AR_FLAGS is about to die.
1506 _LT_DECL([], [AR_FLAGS], [\@S|@{ARFLAGS-"\@S|@lt_ar_flags"}],
1507 [Flags to create an archive])
14971508
14981509 AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
14991510 [lt_cv_ar_at_file=no
17121723 lt_cv_sys_max_cmd_len=8192;
17131724 ;;
17141725
1715 bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
1726 bitrig* | darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*)
17161727 # This has been around since 386BSD, at least. Likely further.
17171728 if test -x /sbin/sysctl; then
17181729 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
17551766 sysv5* | sco5v6* | sysv4.2uw2*)
17561767 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
17571768 if test -n "$kargmax"; then
1758 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
1769 lt_cv_sys_max_cmd_len=`echo $kargmax | $SED 's/.*[[ ]]//'`
17591770 else
17601771 lt_cv_sys_max_cmd_len=32768
17611772 fi
22052216 striplib=
22062217 old_striplib=
22072218 AC_MSG_CHECKING([whether stripping libraries is possible])
2208 if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
2209 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
2210 test -z "$striplib" && striplib="$STRIP --strip-unneeded"
2211 AC_MSG_RESULT([yes])
2219 if test -z "$STRIP"; then
2220 AC_MSG_RESULT([no])
22122221 else
2213 # FIXME - insert some real tests, host_os isn't really good enough
2214 case $host_os in
2215 darwin*)
2216 if test -n "$STRIP"; then
2222 if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
2223 old_striplib="$STRIP --strip-debug"
2224 striplib="$STRIP --strip-unneeded"
2225 AC_MSG_RESULT([yes])
2226 else
2227 case $host_os in
2228 darwin*)
2229 # FIXME - insert some real tests, host_os isn't really good enough
22172230 striplib="$STRIP -x"
22182231 old_striplib="$STRIP -S"
22192232 AC_MSG_RESULT([yes])
2220 else
2233 ;;
2234 freebsd*)
2235 if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then
2236 old_striplib="$STRIP --strip-debug"
2237 striplib="$STRIP --strip-unneeded"
2238 AC_MSG_RESULT([yes])
2239 else
2240 AC_MSG_RESULT([no])
2241 fi
2242 ;;
2243 *)
22212244 AC_MSG_RESULT([no])
2222 fi
2223 ;;
2224 *)
2225 AC_MSG_RESULT([no])
2226 ;;
2227 esac
2245 ;;
2246 esac
2247 fi
22282248 fi
22292249 _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
22302250 _LT_DECL([], [striplib], [1])
25472567 case $host_os in
25482568 cygwin*)
25492569 # Cygwin DLLs use 'cyg' prefix rather than 'lib'
2550 soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2570 soname_spec='`echo $libname | $SED -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
25512571 m4_if([$1], [],[
25522572 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
25532573 ;;
25572577 ;;
25582578 pw32*)
25592579 # pw32 DLLs use 'pw' prefix rather than 'lib'
2560 library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2580 library_names_spec='`echo $libname | $SED -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
25612581 ;;
25622582 esac
25632583 dynamic_linker='Win32 ld.exe'
25642584 ;;
25652585
2566 *,cl*)
2567 # Native MSVC
2586 *,cl* | *,icl*)
2587 # Native MSVC or ICC
25682588 libname_spec='$name'
25692589 soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
25702590 library_names_spec='$libname.dll.lib'
25832603 done
25842604 IFS=$lt_save_ifs
25852605 # Convert to MSYS style.
2586 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
2606 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
25872607 ;;
25882608 cygwin*)
25892609 # Convert to unix form, then to dos form, then back to unix form
26202640 ;;
26212641
26222642 *)
2623 # Assume MSVC wrapper
2643 # Assume MSVC and ICC wrapper
26242644 library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'
26252645 dynamic_linker='Win32 ld.exe'
26262646 ;;
26532673 shlibpath_var=LD_LIBRARY_PATH
26542674 ;;
26552675
2656 freebsd* | dragonfly*)
2676 freebsd* | dragonfly* | midnightbsd*)
26572677 # DragonFly does not have aout. When/if they implement a new
26582678 # versioning mechanism, adjust this.
26592679 if test -x /usr/bin/objformat; then
34643484
34653485 bsdi[[45]]*)
34663486 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
3467 lt_cv_file_magic_cmd='/usr/bin/file -L'
3487 lt_cv_file_magic_cmd='$FILECMD -L'
34683488 lt_cv_file_magic_test_file=/shlib/libc.so
34693489 ;;
34703490
34983518 lt_cv_deplibs_check_method=pass_all
34993519 ;;
35003520
3501 freebsd* | dragonfly*)
3521 freebsd* | dragonfly* | midnightbsd*)
35023522 if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
35033523 case $host_cpu in
35043524 i*86 )
35053525 # Not sure whether the presence of OpenBSD here was a mistake.
35063526 # Let's accept both of them until this is cleared up.
35073527 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
3508 lt_cv_file_magic_cmd=/usr/bin/file
3528 lt_cv_file_magic_cmd=$FILECMD
35093529 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
35103530 ;;
35113531 esac
35193539 ;;
35203540
35213541 hpux10.20* | hpux11*)
3522 lt_cv_file_magic_cmd=/usr/bin/file
3542 lt_cv_file_magic_cmd=$FILECMD
35233543 case $host_cpu in
35243544 ia64*)
35253545 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
35663586
35673587 newos6*)
35683588 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
3569 lt_cv_file_magic_cmd=/usr/bin/file
3589 lt_cv_file_magic_cmd=$FILECMD
35703590 lt_cv_file_magic_test_file=/usr/lib/libnls.so
35713591 ;;
35723592
36933713 mingw*) lt_bad_file=conftest.nm/nofile ;;
36943714 *) lt_bad_file=/dev/null ;;
36953715 esac
3696 case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
3716 case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in
36973717 *$lt_bad_file* | *'Invalid file or object type'*)
36983718 lt_cv_path_NM="$tmp_nm -B"
36993719 break 2
37003720 ;;
37013721 *)
3702 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
3722 case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in
37033723 */dev/null*)
37043724 lt_cv_path_NM="$tmp_nm -p"
37053725 break 2
37253745 # Let the user override the test.
37263746 else
37273747 AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
3728 case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
3748 case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in
37293749 *COFF*)
37303750 DUMPBIN="$DUMPBIN -symbols -headers"
37313751 ;;
39653985
39663986 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
39673987 # Gets list of data symbols to import.
3968 lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'"
3988 lt_cv_sys_global_symbol_to_import="$SED -n -e 's/^I .* \(.*\)$/\1/p'"
39693989 # Adjust the below global symbol transforms to fixup imported variables.
39703990 lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'"
39713991 lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'"
39834003 # Transform an extracted symbol line into a proper C declaration.
39844004 # Some systems (esp. on ia64) link data and code symbols differently,
39854005 # so use this general approach.
3986 lt_cv_sys_global_symbol_to_cdecl="sed -n"\
4006 lt_cv_sys_global_symbol_to_cdecl="$SED -n"\
39874007 $lt_cdecl_hook\
39884008 " -e 's/^T .* \(.*\)$/extern int \1();/p'"\
39894009 " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'"
39904010
39914011 # Transform an extracted symbol line into symbol name and symbol address
3992 lt_cv_sys_global_symbol_to_c_name_address="sed -n"\
4012 lt_cv_sys_global_symbol_to_c_name_address="$SED -n"\
39934013 $lt_c_name_hook\
39944014 " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\
39954015 " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'"
39964016
39974017 # Transform an extracted symbol line into symbol name with lib prefix and
39984018 # symbol address.
3999 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\
4019 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="$SED -n"\
40004020 $lt_c_name_lib_hook\
40014021 " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\
40024022 " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\
40204040 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
40214041 # Fake it for dumpbin and say T for any non-static function,
40224042 # D for any global variable and I for any imported variable.
4023 # Also find C++ and __fastcall symbols from MSVC++,
4043 # Also find C++ and __fastcall symbols from MSVC++ or ICC,
40244044 # which start with @ or ?.
40254045 lt_cv_sys_global_symbol_pipe="$AWK ['"\
40264046 " {last_section=section; section=\$ 3};"\
40384058 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\
40394059 " ' prfx=^$ac_symprfx]"
40404060 else
4041 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4061 lt_cv_sys_global_symbol_pipe="$SED -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
40424062 fi
4043 lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
4063 lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | $SED '/ __gnu_lto/d'"
40444064
40454065 # Check to see that the pipe works correctly.
40464066 pipe_works=no
43284348 ;;
43294349 esac
43304350 ;;
4331 freebsd* | dragonfly*)
4351 freebsd* | dragonfly* | midnightbsd*)
43324352 # FreeBSD uses GNU C++
43334353 ;;
43344354 hpux9* | hpux10* | hpux11*)
44114431 _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
44124432 ;;
44134433 *)
4414 case `$CC -V 2>&1 | sed 5q` in
4434 case `$CC -V 2>&1 | $SED 5q` in
44154435 *Sun\ C*)
44164436 # Sun C++ 5.9
44174437 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
47534773 _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
47544774 ;;
47554775 *)
4756 case `$CC -V 2>&1 | sed 5q` in
4776 case `$CC -V 2>&1 | $SED 5q` in
47574777 *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
47584778 # Sun Fortran 8.3 passes all unrecognized flags to the linker
47594779 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
49364956 if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
49374957 _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
49384958 else
4939 _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
4959 _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
49404960 fi
49414961 ;;
49424962 pw32*)
49444964 ;;
49454965 cygwin* | mingw* | cegcc*)
49464966 case $cc_basename in
4947 cl*)
4967 cl* | icl*)
49484968 _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
49494969 ;;
49504970 *)
50045024
50055025 case $host_os in
50065026 cygwin* | mingw* | pw32* | cegcc*)
5007 # FIXME: the MSVC++ port hasn't been tested in a loooong time
5027 # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time
50085028 # When not using gcc, we currently assume that we are using
5009 # Microsoft Visual C++.
5029 # Microsoft Visual C++ or Intel C++ Compiler.
50105030 if test yes != "$GCC"; then
50115031 with_gnu_ld=no
50125032 fi
50135033 ;;
50145034 interix*)
5015 # we just hope/assume this is gcc and not c89 (= MSVC++)
5035 # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC)
50165036 with_gnu_ld=yes
50175037 ;;
50185038 openbsd* | bitrig*)
50675087 _LT_TAGVAR(whole_archive_flag_spec, $1)=
50685088 fi
50695089 supports_anon_versioning=no
5070 case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in
5090 case `$LD -v | $SED -e 's/([[^)]]\+)\s\+//' 2>&1` in
50715091 *GNU\ gold*) supports_anon_versioning=yes ;;
50725092 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
50735093 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
51795199 emximp -o $lib $output_objdir/$libname.def'
51805200 _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
51815201 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5202 _LT_TAGVAR(file_list_spec, $1)='@'
51825203 ;;
51835204
51845205 interix[[3-9]]*)
51935214 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
51945215 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
51955216 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5196 _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5217 _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
51975218 ;;
51985219
51995220 gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
52365257 _LT_TAGVAR(compiler_needs_object, $1)=yes
52375258 ;;
52385259 esac
5239 case `$CC -V 2>&1 | sed 5q` in
5260 case `$CC -V 2>&1 | $SED 5q` in
52405261 *Sun\ C*) # Sun C 5.9
52415262 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
52425263 _LT_TAGVAR(compiler_needs_object, $1)=yes
52485269
52495270 if test yes = "$supports_anon_versioning"; then
52505271 _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
5251 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5272 cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
52525273 echo "local: *; };" >> $output_objdir/$libname.ver~
52535274 $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
52545275 fi
52555276
52565277 case $cc_basename in
52575278 tcc*)
5279 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
52585280 _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic'
52595281 ;;
52605282 xlf* | bgf* | bgxlf* | mpixlf*)
52645286 _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
52655287 if test yes = "$supports_anon_versioning"; then
52665288 _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
5267 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5289 cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
52685290 echo "local: *; };" >> $output_objdir/$libname.ver~
52695291 $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
52705292 fi
53965418 if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
53975419 _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
53985420 else
5399 _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
5421 _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
54005422 fi
54015423 aix_use_runtimelinking=no
54025424
55795601
55805602 cygwin* | mingw* | pw32* | cegcc*)
55815603 # When not using gcc, we currently assume that we are using
5582 # Microsoft Visual C++.
5604 # Microsoft Visual C++ or Intel C++ Compiler.
55835605 # hardcode_libdir_flag_spec is actually meaningless, as there is
55845606 # no search path for DLLs.
55855607 case $cc_basename in
5586 cl*)
5587 # Native MSVC
5608 cl* | icl*)
5609 # Native MSVC or ICC
55885610 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
55895611 _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
55905612 _LT_TAGVAR(always_export_symbols, $1)=yes
56255647 fi'
56265648 ;;
56275649 *)
5628 # Assume MSVC wrapper
5650 # Assume MSVC and ICC wrapper
56295651 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
56305652 _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
56315653 # Tell ltmain to make .lib files, not .a files.
56735695 ;;
56745696
56755697 # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
5676 freebsd* | dragonfly*)
5698 freebsd* | dragonfly* | midnightbsd*)
56775699 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
56785700 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
56795701 _LT_TAGVAR(hardcode_direct, $1)=yes
58145836 # Fabrice Bellard et al's Tiny C Compiler
58155837 _LT_TAGVAR(ld_shlibs, $1)=yes
58165838 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5839 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
58175840 ;;
58185841 esac
58195842 ;;
58855908 emximp -o $lib $output_objdir/$libname.def'
58865909 _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
58875910 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5911 _LT_TAGVAR(file_list_spec, $1)='@'
58885912 ;;
58895913
58905914 osf3*)
66556679
66566680 cygwin* | mingw* | pw32* | cegcc*)
66576681 case $GXX,$cc_basename in
6658 ,cl* | no,cl*)
6659 # Native MSVC
6682 ,cl* | no,cl* | ,icl* | no,icl*)
6683 # Native MSVC or ICC
66606684 # hardcode_libdir_flag_spec is actually meaningless, as there is
66616685 # no search path for DLLs.
66626686 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
67546778 emximp -o $lib $output_objdir/$libname.def'
67556779 _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
67566780 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6781 _LT_TAGVAR(file_list_spec, $1)='@'
67576782 ;;
67586783
67596784 dgux*)
67846809 _LT_TAGVAR(archive_cmds_need_lc, $1)=no
67856810 ;;
67866811
6787 freebsd* | dragonfly*)
6812 freebsd* | dragonfly* | midnightbsd*)
67886813 # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
67896814 # conventions
67906815 _LT_TAGVAR(ld_shlibs, $1)=yes
69216946 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
69226947 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
69236948 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
6924 _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
6949 _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
69256950 ;;
69266951 irix5* | irix6*)
69276952 case $cc_basename in
70617086 _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
70627087 if test yes = "$supports_anon_versioning"; then
70637088 _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
7064 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
7089 cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
70657090 echo "local: *; };" >> $output_objdir/$libname.ver~
70667091 $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
70677092 fi
70687093 ;;
70697094 *)
7070 case `$CC -V 2>&1 | sed 5q` in
7095 case `$CC -V 2>&1 | $SED 5q` in
70717096 *Sun\ C*)
70727097 # Sun C++ 5.9
70737098 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
82128237 _LT_DECL([], [DLLTOOL], [1], [DLL creation program])
82138238 AC_SUBST([DLLTOOL])
82148239 ])
8240
8241 # _LT_DECL_FILECMD
8242 # ----------------
8243 # Check for a file(cmd) program that can be used to detect file type and magic
8244 m4_defun([_LT_DECL_FILECMD],
8245 [AC_CHECK_TOOL([FILECMD], [file], [:])
8246 _LT_DECL([], [FILECMD], [1], [A file(cmd) program that detects file types])
8247 ])# _LD_DECL_FILECMD
82158248
82168249 # _LT_DECL_SED
82178250 # ------------
00 # Helper functions for option handling. -*- Autoconf -*-
11 #
2 # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software
3 # Foundation, Inc.
2 # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free
3 # Software Foundation, Inc.
44 # Written by Gary V. Vaughan, 2004
55 #
66 # This file is free software; the Free Software Foundation gives
00 # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
11 #
2 # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software
2 # Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2022 Free Software
33 # Foundation, Inc.
44 # Written by Gary V. Vaughan, 2004
55 #
00 # ltversion.m4 -- version numbers -*- Autoconf -*-
11 #
2 # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.
2 # Copyright (C) 2004, 2011-2019, 2021-2022 Free Software Foundation,
3 # Inc.
34 # Written by Scott James Remnant, 2004
45 #
56 # This file is free software; the Free Software Foundation gives
00 # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
11 #
2 # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software
3 # Foundation, Inc.
2 # Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2022 Free
3 # Software Foundation, Inc.
44 # Written by Scott James Remnant, 2004.
55 #
66 # This file is free software; the Free Software Foundation gives
9191 sed -i.bak 's/#define CURL_VERSION .*/#define CURL_VERSION "'$curlversion'"/g' $CHEADER
9292 rm -f "$CHEADER.bak"
9393
94 # Replace version number in plist file:
95 sed -i.bak "s/7\.12\.3/$libversion/g" $PLIST
96 rm -f "$PLIST.bak"
97
9894 if test -n "$only"; then
9995 # done!
10096 exit;
4444 CS_ = $(CS_0)
4545
4646 checksrc:
47 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/OS400/*.[ch])
47 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/OS400/*.[ch])
245245 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
246246 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
247247 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
248 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
248249 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
249250 CYGPATH_W = @CYGPATH_W@
250251 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
262263 ETAGS = @ETAGS@
263264 EXEEXT = @EXEEXT@
264265 FGREP = @FGREP@
266 FILECMD = @FILECMD@
265267 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
266268 GCOV = @GCOV@
267269 GREP = @GREP@
337339 USE_LIBSSH = @USE_LIBSSH@
338340 USE_LIBSSH2 = @USE_LIBSSH2@
339341 USE_MBEDTLS = @USE_MBEDTLS@
342 USE_MSH3 = @USE_MSH3@
340343 USE_NGHTTP2 = @USE_NGHTTP2@
341344 USE_NGHTTP3 = @USE_NGHTTP3@
342345 USE_NGTCP2 = @USE_NGTCP2@
773776
774777
775778 checksrc:
776 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/OS400/*.[ch])
779 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/OS400/*.[ch])
777780
778781 # Tell versions [3.59,3.63) of GNU make to not export all variables.
779782 # Otherwise a system limit (for SysV at least) may be exceeded.
263263 _ Change current directory to the curl installation directory
264264 _ Change current directory to ./packages/OS400
265265 _ Edit file iniscript.sh. You may want to change tunable configuration
266 parameters, like debug info generation, optimisation level, listing option,
266 parameters, like debug info generation, optimization level, listing option,
267267 target library, ZLIB/LIBSSH2 availability and location, etc.
268268 _ Copy any file in the current directory to makelog (i.e.:
269269 cp initscript.sh makelog): this is intended to create the makelog file with
7272 setenv SRVPGM "CURL.${SONAME}" # Service program.
7373 setenv TGTCCSID '500' # Target CCSID of objects.
7474 setenv DEBUG '*ALL' # Debug level.
75 setenv OPTIMIZE '10' # Optimisation level
75 setenv OPTIMIZE '10' # Optimization level
7676 setenv OUTPUT '*NONE' # Compilation output option.
7777 setenv TGTRLS '*CURRENT' # Target OS release.
7878 setenv IFSDIR '/curl' # Installation IFS directory.
187187 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
188188 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
189189 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
190 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
190191 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
191192 CYGPATH_W = @CYGPATH_W@
192193 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
204205 ETAGS = @ETAGS@
205206 EXEEXT = @EXEEXT@
206207 FGREP = @FGREP@
208 FILECMD = @FILECMD@
207209 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
208210 GCOV = @GCOV@
209211 GREP = @GREP@
279281 USE_LIBSSH = @USE_LIBSSH@
280282 USE_LIBSSH2 = @USE_LIBSSH2@
281283 USE_MBEDTLS = @USE_MBEDTLS@
284 USE_MSH3 = @USE_MSH3@
282285 USE_NGHTTP2 = @USE_NGHTTP2@
283286 USE_NGHTTP3 = @USE_NGHTTP3@
284287 USE_NGTCP2 = @USE_NGTCP2@
1414 $! This removes all build products and brings the environment back to
1515 $! the point where the gnv_curl_configure.sh procedure needs to be run again.
1616 $!
17 $! Copyright 2009 - 2020, John Malmberg
17 $! Copyright 2009 - 2022, John Malmberg
1818 $!
1919 $! Permission to use, copy, modify, and/or distribute this software for any
2020 $! purpose with or without fee is hereby granted, provided that the above
180180 $ file = "lcl_root:[.lib]libcurl.vers"
181181 $ if f$search(file) .nes. "" then delete 'file';*
182182 $!
183 $ file = "lcl_root:[.lib]libcurl.plist"
184 $ if f$search(file) .nes. "" then delete 'file';*
185 $!
183186 $ file = "lcl_root:[]ca-bundle.h"
184187 $ if f$search(file) .nes. "" then delete 'file';*
185188 $!
+0
-155
projects/README less more
0 Building via IDE Project Files
1 ==============================
2
3 This document describes how to compile, build and install curl and libcurl
4 from sources using an IDE based development tool such as Visual Studio.
5
6 Project files are available for several different Visual C++ versions. The
7 following directory structure has been used to cater for this:
8
9 somedirectory\
10 |_curl
11 |_projects
12 |_<platform>
13 |_<ide>
14 |_lib
15 |_src
16
17 This structure allows for side-by-side compilation of curl on the same
18 machine using different versions of a given compiler (for example VC10 and
19 VC12) and allows for your own application or product to be compiled against
20 those variants of libcurl for example.
21
22 Note: Typically this side-by-side compilation is generally only required
23 when a library is being compiled against dynamic runtime libraries.
24
25 Dependencies
26 ============
27
28 The projects files also support build configurations that require third
29 party dependencies such as OpenSSL, wolfSSL and libssh2. If you wish to
30 support these, you will also need to download and compile those libraries
31 as well.
32
33 To support compilation of these libraries using different versions of
34 compilers, the following directory structure has been used for both the
35 output of curl and libcurl as well as these dependencies.
36
37 somedirectory\
38 |_curl
39 | |_ build
40 | |_<architecture>
41 | |_<ide>
42 | |_<configuration>
43 | |_lib
44 | |_src
45 |
46 |_openssl
47 | |_ build
48 | |_<architecture>
49 | |_VC <version>
50 | |_<configuration>
51 |
52 |_libssh2
53 |_ build
54 |_<architecture>
55 |_VC <version>
56 |_<configuration>
57
58 As OpenSSL and wolfSSL don't support side-by-side compilation when using
59 different versions of Visual Studio, build helper batch files have been
60 provided to assist with this. Please run "build-openssl -help" and/or
61 "build-wolfssl -help" for usage details.
62
63 Building with Visual C++
64 ========================
65
66 To build with VC++, you will of course have to first install VC++ which is
67 part of Visual Studio.
68
69 If you require support for Internationalized Domain Names via Windows IDN
70 then you will need either:
71
72 * Microsoft Windows SDK Update for Windows Vista:
73 https://www.microsoft.com/en-us/download/details.aspx?id=23719
74
75 * Microsoft Visual Studio 2010 or above
76
77 Once you have VC++ installed you should launch the application and open one
78 of the solution or workspace files.
79
80 Whilst files are provided for both libcurl and the curl command line tool as
81 well as a configuration that includes both, it is recommend that you use the
82 all-in-one configuration.
83
84 Running DLL based configurations
85 ================================
86
87 If you are a developer and plan to run the curl tool from Visual Studio (eg
88 you are debugging) with any third-party libraries (such as OpenSSL, wolfSSL
89 or LibSSH2) then you will need to add the search path of these DLLs to the
90 configuration's PATH environment. To do that:
91
92 * Open the 'curl-all.sln' or 'curl.sln' solutions
93
94 * Right-click on the 'curl' project and select Properties
95
96 * Navigate to 'Configuration Properties > Debugging > Environment'
97
98 * Add PATH='Path to DLL';C:\Windows\system32;C:\Windows;
99 C:\Windows\System32\Wbem
100
101 ... where 'Path to DLL` is the configuration specific path. For example the
102 following configurations in Visual Studio 2010 might be:
103
104 DLL Debug - DLL OpenSSL (Win32):
105 PATH=..\..\..\..\..\openssl\build\Win32\VC10\DLL Debug;C:\Windows\system32;
106 C:\Windows;C:\Windows\System32\Wbem
107
108 DLL Debug - DLL OpenSSL (x64):
109 PATH=..\..\..\..\..\openssl\build\Win64\VC10\DLL Debug;C:\Windows\system32;
110 C:\Windows;C:\Windows\System32\Wbem
111
112 DLL Debug - DLL wolfSSL (Win32):
113 PATH=..\..\..\..\..\wolfssl\build\Win32\VC10\DLL Debug;C:\Windows\system32;
114 C:\Windows;C:\Windows\System32\Wbem
115
116 DLL Debug - DLL wolfSSL (x64):
117 PATH=..\..\..\..\..\wolfssl\build\Win64\VC10\DLL Debug;C:\Windows\system32;
118 C:\Windows;C:\Windows\System32\Wbem
119
120 If you are using a configuration that uses multiple third-party library DLLs
121 (such as DLL Debug - DLL OpenSSL - DLL LibSSH2) then 'Path to DLL' will need
122 to contain the path to both of these.
123
124 Notes
125 =====
126
127 The following keywords have been used in the directory hierarchy:
128
129 <platform> - The platform (For example: Windows)
130 <ide> - The IDE (For example: VC10)
131 <architecture> - The platform architecture (For example: Win32, Win64)
132 <configuration> - The target configuration (For example: DLL Debug,
133 LIB Release - LIB OpenSSL)
134
135 If you are using the source code from the git repository, rather than a
136 release archive or nightly build, you will need to generate the project
137 files. Please run "generate -help" for usage details.
138
139 Should you wish to help out with some of the items on the TODO list, or
140 find bugs in the project files that need correcting, and would like to
141 submit updated files back then please note that, whilst the solution files
142 can be edited directly, the templates for the project files (which are
143 stored in the git repository) will need to be modified rather than the
144 generated project files that Visual Studio uses.
145
146 Legacy Windows and SSL
147 ======================
148
149 Some of the project configurations allow the use of Schannel, the native
150 SSL library in Windows which forms part of Windows SSPI. However, Schannel
151 in Windows <= XP is unable to connect to servers that no longer support the
152 legacy handshakes and algorithms used by those versions. If you will be
153 using curl in one of those earlier versions of Windows you should choose
154 another SSL backend such as OpenSSL.
0 Building via IDE Project Files
1 ==============================
2
3 This document describes how to compile, build and install curl and libcurl
4 from sources using an IDE based development tool such as Visual Studio.
5
6 Project files are available for several different Visual C++ versions. The
7 following directory structure has been used to cater for this:
8
9 somedirectory\
10 |_curl
11 |_projects
12 |_<platform>
13 |_<ide>
14 |_lib
15 |_src
16
17 This structure allows for side-by-side compilation of curl on the same machine
18 using different versions of a given compiler (for example VC10 and VC12) and
19 allows for your own application or product to be compiled against those
20 variants of libcurl for example.
21
22 Note: Typically this side-by-side compilation is generally only required when
23 a library is being compiled against dynamic runtime libraries.
24
25 ## Dependencies
26
27 The projects files also support build configurations that require third party
28 dependencies such as OpenSSL, wolfSSL and libssh2. If you wish to support
29 these, you will also need to download and compile those libraries as well.
30
31 To support compilation of these libraries using different versions of
32 compilers, the following directory structure has been used for both the output
33 of curl and libcurl as well as these dependencies.
34
35 somedirectory\
36 |_curl
37 | |_ build
38 | |_<architecture>
39 | |_<ide>
40 | |_<configuration>
41 | |_lib
42 | |_src
43 |
44 |_openssl
45 | |_ build
46 | |_<architecture>
47 | |_VC <version>
48 | |_<configuration>
49 |
50 |_libssh2
51 |_ build
52 |_<architecture>
53 |_VC <version>
54 |_<configuration>
55
56 As OpenSSL and wolfSSL don't support side-by-side compilation when using
57 different versions of Visual Studio, build helper batch files have been
58 provided to assist with this. Please run `build-openssl -help` and/or
59 `build-wolfssl -help` for usage details.
60
61 ## Building with Visual C++
62
63 To build with VC++, you will of course have to first install VC++ which is
64 part of Visual Studio.
65
66 Once you have VC++ installed you should launch the application and open one of
67 the solution or workspace files. The VC directory names are based on the
68 version of Visual C++ that you will be using. Each version of Visual Studio
69 has a default version of Visual C++. We offer these versions:
70
71 - VC10 (Visual Studio 2010 Version 10.0)
72 - VC11 (Visual Studio 2012 Version 11.0)
73 - VC12 (Visual Studio 2013 Version 12.0)
74 - VC14 (Visual Studio 2015 Version 14.0)
75 - VC14.10 (Visual Studio 2017 Version 15.0)
76 - VC14.30 (Visual Studio 2022 Version 17.0)
77
78 Separate solutions are provided for both libcurl and the curl command line
79 tool as well as a solution that includes both projects. libcurl.sln, curl.sln
80 and curl-all.sln, respectively. We recommend using curl-all.sln to build both
81 projects.
82
83 For example, if you are using Visual Studio 2022 then you should be able to
84 use `VC14.30\curl-all.sln` to build curl and libcurl.
85
86 ## Running DLL based configurations
87
88 If you are a developer and plan to run the curl tool from Visual Studio (eg
89 you are debugging) with any third-party libraries (such as OpenSSL, wolfSSL or
90 LibSSH2) then you will need to add the search path of these DLLs to the
91 configuration's PATH environment. To do that:
92
93 1. Open the 'curl-all.sln' or 'curl.sln' solutions
94 2. Right-click on the 'curl' project and select Properties
95 3. Navigate to 'Configuration Properties > Debugging > Environment'
96 4. Add `PATH='Path to DLL';C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem`
97
98 ... where 'Path to DLL` is the configuration specific path. For example the
99 following configurations in Visual Studio 2010 might be:
100
101 DLL Debug - DLL OpenSSL (Win32):
102
103 PATH=..\..\..\..\..\openssl\build\Win32\VC10\DLL Debug;C:\Windows\system32;
104 C:\Windows;C:\Windows\System32\Wbem
105
106 DLL Debug - DLL OpenSSL (x64):
107
108 PATH=..\..\..\..\..\openssl\build\Win64\VC10\DLL Debug;C:\Windows\system32;
109 C:\Windows;C:\Windows\System32\Wbem
110
111 DLL Debug - DLL wolfSSL (Win32):
112
113 PATH=..\..\..\..\..\wolfssl\build\Win32\VC10\DLL Debug;C:\Windows\system32;
114 C:\Windows;C:\Windows\System32\Wbem
115
116 DLL Debug - DLL wolfSSL (x64):
117
118 PATH=..\..\..\..\..\wolfssl\build\Win64\VC10\DLL Debug;C:\Windows\system32;
119 C:\Windows;C:\Windows\System32\Wbem
120
121 If you are using a configuration that uses multiple third-party library DLLs
122 (such as DLL Debug - DLL OpenSSL - DLL LibSSH2) then 'Path to DLL' will need
123 to contain the path to both of these.
124
125 ## Notes
126
127 The following keywords have been used in the directory hierarchy:
128
129 - `<platform>` - The platform (For example: Windows)
130 - `<ide>` - The IDE (For example: VC10)
131 - `<architecture>` - The platform architecture (For example: Win32, Win64)
132 - `<configuration>` - The target configuration (For example: DLL Debug, LIB
133 Release - LIB OpenSSL)
134
135 If you are using the source code from the git repository, rather than a
136 release archive or nightly build, you will need to generate the project
137 files. Please run "generate -help" for usage details.
138
139 Should you wish to help out with some of the items on the TODO list, or find
140 bugs in the project files that need correcting, and would like to submit
141 updated files back then please note that, whilst the solution files can be
142 edited directly, the templates for the project files (which are stored in the
143 git repository) will need to be modified rather than the generated project
144 files that Visual Studio uses.
145
146 ## Legacy Windows and SSL
147
148 Some of the project configurations allow the use of Schannel, the native SSL
149 library in Windows which forms part of Windows SSPI. However, Schannel in
150 Windows <= XP is unable to connect to servers that no longer support the
151 legacy handshakes and algorithms used by those versions. If you will be using
152 curl in one of those earlier versions of Windows you should choose another SSL
153 backend such as OpenSSL.
23772377 <ClCompile Include="..\..\..\..\lib\gopher.c" />
23782378 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
23792379 <ClCompile Include="..\..\..\..\lib\hash.c" />
2380 <ClCompile Include="..\..\..\..\lib\headers.c" />
23802381 <ClCompile Include="..\..\..\..\lib\hmac.c" />
23812382 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
23822383 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
24402441 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
24412442 <ClCompile Include="..\..\..\..\lib\telnet.c" />
24422443 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2444 <ClCompile Include="..\..\..\..\lib\timediff.c" />
24432445 <ClCompile Include="..\..\..\..\lib\timeval.c" />
24442446 <ClCompile Include="..\..\..\..\lib\transfer.c" />
24452447 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
24612463 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
24622464 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
24632465 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2466 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
24642467 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
24652468 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
24662469 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
25422545 <ClInclude Include="..\..\..\..\lib\gopher.h" />
25432546 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
25442547 <ClInclude Include="..\..\..\..\lib\hash.h" />
2548 <ClInclude Include="..\..\..\..\lib\headers.h" />
25452549 <ClInclude Include="..\..\..\..\lib\hostip.h" />
25462550 <ClInclude Include="..\..\..\..\lib\hsts.h" />
25472551 <ClInclude Include="..\..\..\..\lib\http2.h" />
25952599 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
25962600 <ClInclude Include="..\..\..\..\lib\telnet.h" />
25972601 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2602 <ClInclude Include="..\..\..\..\lib\timediff.h" />
25982603 <ClInclude Include="..\..\..\..\lib\timeval.h" />
25992604 <ClInclude Include="..\..\..\..\lib\transfer.h" />
26002605 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
26062611 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
26072612 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
26082613 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2614 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
26092615 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
26102616 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
26112617 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
26312631 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
26322632 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
26332633 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2634 <ClCompile Include="..\..\..\..\lib\timediff.c" />
26342635 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
26352636 <ClCompile Include="..\..\..\..\lib\warnless.c" />
26362637 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
26822683 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
26832684 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
26842685 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2686 <ClInclude Include="..\..\..\..\lib\timediff.h" />
26852687 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
26862688 <ClInclude Include="..\..\..\..\lib\warnless.h" />
26872689 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
24332433 <ClCompile Include="..\..\..\..\lib\gopher.c" />
24342434 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
24352435 <ClCompile Include="..\..\..\..\lib\hash.c" />
2436 <ClCompile Include="..\..\..\..\lib\headers.c" />
24362437 <ClCompile Include="..\..\..\..\lib\hmac.c" />
24372438 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
24382439 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
24962497 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
24972498 <ClCompile Include="..\..\..\..\lib\telnet.c" />
24982499 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2500 <ClCompile Include="..\..\..\..\lib\timediff.c" />
24992501 <ClCompile Include="..\..\..\..\lib\timeval.c" />
25002502 <ClCompile Include="..\..\..\..\lib\transfer.c" />
25012503 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
25172519 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
25182520 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
25192521 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2522 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
25202523 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
25212524 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
25222525 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
25982601 <ClInclude Include="..\..\..\..\lib\gopher.h" />
25992602 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
26002603 <ClInclude Include="..\..\..\..\lib\hash.h" />
2604 <ClInclude Include="..\..\..\..\lib\headers.h" />
26012605 <ClInclude Include="..\..\..\..\lib\hostip.h" />
26022606 <ClInclude Include="..\..\..\..\lib\hsts.h" />
26032607 <ClInclude Include="..\..\..\..\lib\http2.h" />
26512655 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
26522656 <ClInclude Include="..\..\..\..\lib\telnet.h" />
26532657 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2658 <ClInclude Include="..\..\..\..\lib\timediff.h" />
26542659 <ClInclude Include="..\..\..\..\lib\timeval.h" />
26552660 <ClInclude Include="..\..\..\..\lib\transfer.h" />
26562661 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
26622667 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
26632668 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
26642669 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2670 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
26652671 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
26662672 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
26672673 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
26872687 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
26882688 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
26892689 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2690 <ClCompile Include="..\..\..\..\lib\timediff.c" />
26902691 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
26912692 <ClCompile Include="..\..\..\..\lib\warnless.c" />
26922693 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
27382739 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
27392740 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
27402741 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2742 <ClInclude Include="..\..\..\..\lib\timediff.h" />
27412743 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
27422744 <ClInclude Include="..\..\..\..\lib\warnless.h" />
27432745 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
24332433 <ClCompile Include="..\..\..\..\lib\gopher.c" />
24342434 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
24352435 <ClCompile Include="..\..\..\..\lib\hash.c" />
2436 <ClCompile Include="..\..\..\..\lib\headers.c" />
24362437 <ClCompile Include="..\..\..\..\lib\hmac.c" />
24372438 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
24382439 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
24962497 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
24972498 <ClCompile Include="..\..\..\..\lib\telnet.c" />
24982499 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2500 <ClCompile Include="..\..\..\..\lib\timediff.c" />
24992501 <ClCompile Include="..\..\..\..\lib\timeval.c" />
25002502 <ClCompile Include="..\..\..\..\lib\transfer.c" />
25012503 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
25172519 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
25182520 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
25192521 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2522 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
25202523 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
25212524 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
25222525 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
25982601 <ClInclude Include="..\..\..\..\lib\gopher.h" />
25992602 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
26002603 <ClInclude Include="..\..\..\..\lib\hash.h" />
2604 <ClInclude Include="..\..\..\..\lib\headers.h" />
26012605 <ClInclude Include="..\..\..\..\lib\hostip.h" />
26022606 <ClInclude Include="..\..\..\..\lib\hsts.h" />
26032607 <ClInclude Include="..\..\..\..\lib\http2.h" />
26512655 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
26522656 <ClInclude Include="..\..\..\..\lib\telnet.h" />
26532657 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2658 <ClInclude Include="..\..\..\..\lib\timediff.h" />
26542659 <ClInclude Include="..\..\..\..\lib\timeval.h" />
26552660 <ClInclude Include="..\..\..\..\lib\transfer.h" />
26562661 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
26622667 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
26632668 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
26642669 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2670 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
26652671 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
26662672 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
26672673 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
26872687 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
26882688 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
26892689 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2690 <ClCompile Include="..\..\..\..\lib\timediff.c" />
26902691 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
26912692 <ClCompile Include="..\..\..\..\lib\warnless.c" />
26922693 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
27382739 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
27392740 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
27402741 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2742 <ClInclude Include="..\..\..\..\lib\timediff.h" />
27412743 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
27422744 <ClInclude Include="..\..\..\..\lib\warnless.h" />
27432745 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
24332433 <ClCompile Include="..\..\..\..\lib\gopher.c" />
24342434 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
24352435 <ClCompile Include="..\..\..\..\lib\hash.c" />
2436 <ClCompile Include="..\..\..\..\lib\headers.c" />
24362437 <ClCompile Include="..\..\..\..\lib\hmac.c" />
24372438 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
24382439 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
24962497 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
24972498 <ClCompile Include="..\..\..\..\lib\telnet.c" />
24982499 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2500 <ClCompile Include="..\..\..\..\lib\timediff.c" />
24992501 <ClCompile Include="..\..\..\..\lib\timeval.c" />
25002502 <ClCompile Include="..\..\..\..\lib\transfer.c" />
25012503 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
25172519 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
25182520 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
25192521 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2522 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
25202523 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
25212524 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
25222525 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
25982601 <ClInclude Include="..\..\..\..\lib\gopher.h" />
25992602 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
26002603 <ClInclude Include="..\..\..\..\lib\hash.h" />
2604 <ClInclude Include="..\..\..\..\lib\headers.h" />
26012605 <ClInclude Include="..\..\..\..\lib\hostip.h" />
26022606 <ClInclude Include="..\..\..\..\lib\hsts.h" />
26032607 <ClInclude Include="..\..\..\..\lib\http2.h" />
26512655 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
26522656 <ClInclude Include="..\..\..\..\lib\telnet.h" />
26532657 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2658 <ClInclude Include="..\..\..\..\lib\timediff.h" />
26542659 <ClInclude Include="..\..\..\..\lib\timeval.h" />
26552660 <ClInclude Include="..\..\..\..\lib\transfer.h" />
26562661 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
26622667 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
26632668 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
26642669 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2670 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
26652671 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
26662672 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
26672673 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
26872687 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
26882688 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
26892689 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2690 <ClCompile Include="..\..\..\..\lib\timediff.c" />
26902691 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
26912692 <ClCompile Include="..\..\..\..\lib\warnless.c" />
26922693 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
27382739 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
27392740 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
27402741 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2742 <ClInclude Include="..\..\..\..\lib\timediff.h" />
27412743 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
27422744 <ClInclude Include="..\..\..\..\lib\warnless.h" />
27432745 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "src\curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 ProjectSection(ProjectDependencies) = postProject
4 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB} = {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}
5 EndProjectSection
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "lib\libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
8 EndProject
9 Global
10 GlobalSection(SolutionConfigurationPlatforms) = preSolution
11 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
12 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
13 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
14 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
15 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
16 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
17 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
18 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
19 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
20 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
21 DLL Debug|Win32 = DLL Debug|Win32
22 DLL Debug|x64 = DLL Debug|x64
23 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
24 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
25 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
26 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
27 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
28 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
29 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
30 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
31 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
32 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
33 DLL Release|Win32 = DLL Release|Win32
34 DLL Release|x64 = DLL Release|x64
35 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
36 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
37 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
38 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
39 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
40 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
41 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
42 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
43 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
44 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
45 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
46 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
47 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
48 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
49 LIB Debug|Win32 = LIB Debug|Win32
50 LIB Debug|x64 = LIB Debug|x64
51 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
52 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
53 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
54 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
55 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
56 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
57 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
58 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
59 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
60 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
61 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
62 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
63 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
64 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
65 LIB Release|Win32 = LIB Release|Win32
66 LIB Release|x64 = LIB Release|x64
67 EndGlobalSection
68 GlobalSection(ProjectConfigurationPlatforms) = postSolution
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
176 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
177 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
178 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
179 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
180 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
181 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
182 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
183 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
184 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
185 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
186 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
187 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
188 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
189 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
190 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
191 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
192 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
193 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
194 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
195 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
196 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
197 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
198 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
199 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
200 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
201 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
202 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
203 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
204 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
205 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
206 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
207 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
208 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
209 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
210 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
211 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
212 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
213 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
214 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
215 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
216 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
217 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
218 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
219 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
220 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
221 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
222 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
223 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
224 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
225 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
226 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
227 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
228 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
229 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
230 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
231 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
232 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
233 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
234 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
235 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
236 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
237 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
238 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
239 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
240 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
241 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
242 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
243 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
244 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
245 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
246 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
247 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
248 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
249 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
250 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
251 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
252 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
253 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
254 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
255 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
256 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
257 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
258 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
259 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
260 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
261 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
262 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
263 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
264 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
265 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
266 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
267 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
268 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
269 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
270 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
271 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
272 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
273 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
274 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
275 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
276 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
277 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
278 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
279 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
280 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
281 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
282 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
283 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
284 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
285 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
286 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
287 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
288 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
289 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
290 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
291 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
292 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
293 EndGlobalSection
294 GlobalSection(SolutionProperties) = preSolution
295 HideSolutionNode = FALSE
296 EndGlobalSection
297 EndGlobal
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
112 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}</ProjectGuid>
230 <RootNamespace>libcurl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
234 <ConfigurationType>StaticLibrary</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v141</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
240 <ConfigurationType>StaticLibrary</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v141</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>StaticLibrary</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v141</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>StaticLibrary</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v141</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>StaticLibrary</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v141</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
264 <ConfigurationType>StaticLibrary</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v141</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
270 <ConfigurationType>StaticLibrary</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v141</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>StaticLibrary</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v141</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
282 <ConfigurationType>StaticLibrary</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v141</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
288 <ConfigurationType>StaticLibrary</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v141</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
294 <ConfigurationType>StaticLibrary</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v141</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>StaticLibrary</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v141</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>DynamicLibrary</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v141</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>DynamicLibrary</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v141</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>DynamicLibrary</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v141</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>DynamicLibrary</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v141</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
330 <ConfigurationType>DynamicLibrary</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v141</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
336 <ConfigurationType>DynamicLibrary</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v141</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
342 <ConfigurationType>DynamicLibrary</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v141</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>DynamicLibrary</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v141</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
354 <ConfigurationType>StaticLibrary</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v141</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>StaticLibrary</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v141</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>StaticLibrary</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v141</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>StaticLibrary</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v141</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
378 <ConfigurationType>DynamicLibrary</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v141</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>DynamicLibrary</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v141</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
390 <ConfigurationType>DynamicLibrary</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v141</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>DynamicLibrary</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v141</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
402 <ConfigurationType>StaticLibrary</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v141</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
408 <ConfigurationType>StaticLibrary</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v141</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>StaticLibrary</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v141</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>StaticLibrary</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v141</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>StaticLibrary</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v141</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
432 <ConfigurationType>StaticLibrary</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v141</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
438 <ConfigurationType>StaticLibrary</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v141</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>StaticLibrary</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v141</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
450 <ConfigurationType>StaticLibrary</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v141</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
456 <ConfigurationType>StaticLibrary</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v141</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
462 <ConfigurationType>StaticLibrary</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v141</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>StaticLibrary</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v141</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>DynamicLibrary</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v141</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>DynamicLibrary</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v141</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>DynamicLibrary</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v141</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>DynamicLibrary</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v141</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
498 <ConfigurationType>DynamicLibrary</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v141</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
504 <ConfigurationType>DynamicLibrary</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v141</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
510 <ConfigurationType>DynamicLibrary</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v141</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>DynamicLibrary</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v141</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
522 <ConfigurationType>StaticLibrary</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v141</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>StaticLibrary</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v141</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>StaticLibrary</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v141</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>StaticLibrary</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v141</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
546 <ConfigurationType>DynamicLibrary</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v141</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>DynamicLibrary</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v141</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
558 <ConfigurationType>DynamicLibrary</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v141</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>DynamicLibrary</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v141</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)lib\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)lib\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)lib\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)lib\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)lib\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
771 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
772 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
773 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)lib\</IntDir>
774 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
775 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
776 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
777 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)lib\</IntDir>
778 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)lib\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
783 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
784 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
785 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
788 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
789 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
790 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
791 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
792 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
793 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
794 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
795 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
796 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
797 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
798 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
799 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
800 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
801 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
802 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
803 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
804 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
805 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
806 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
807 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
808 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
809 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
812 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
813 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
814 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
815 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
816 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
817 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
818 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
819 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
820 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
821 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
824 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
825 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
826 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
827 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
828 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
829 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
830 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
831 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
832 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
835 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
836 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
837 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
838 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
840 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
841 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
842 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
843 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
844 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
845 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
847 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
848 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
849 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
850 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
853 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
854 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
855 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
856 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
859 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
860 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
861 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
862 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
864 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
865 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
866 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
867 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
868 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
869 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
871 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
872 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
873 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
874 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
877 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
878 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
879 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
880 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
881 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
882 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
883 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
884 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
885 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
886 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
887 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
888 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
889 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
890 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
891 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
892 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
893 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
894 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
895 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
896 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
897 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
898 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
899 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
900 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
901 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
902 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
903 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
904 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
905 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
906 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
907 </PropertyGroup>
908 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
909 <Midl>
910 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
911 <MkTypLibCompatible>true</MkTypLibCompatible>
912 <TargetEnvironment>Win32</TargetEnvironment>
913 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
914 <HeaderFileName>
915 </HeaderFileName>
916 </Midl>
917 <ClCompile>
918 <Optimization>Disabled</Optimization>
919 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
920 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
921 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
922 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
923 <WarningLevel>Level4</WarningLevel>
924 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
925 </ClCompile>
926 <ResourceCompile>
927 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
928 <Culture>0x0409</Culture>
929 </ResourceCompile>
930 <Link>
931 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
932 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
933 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
934 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
935 <GenerateDebugInformation>true</GenerateDebugInformation>
936 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
937 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
938 <TargetMachine>MachineX86</TargetMachine>
939 </Link>
940 </ItemDefinitionGroup>
941 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
942 <Midl>
943 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
944 <MkTypLibCompatible>true</MkTypLibCompatible>
945 <TargetEnvironment>Win32</TargetEnvironment>
946 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
947 <HeaderFileName>
948 </HeaderFileName>
949 </Midl>
950 <ClCompile>
951 <Optimization>Disabled</Optimization>
952 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
953 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
954 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
955 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
956 <WarningLevel>Level4</WarningLevel>
957 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
958 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
959 </ClCompile>
960 <ResourceCompile>
961 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
962 <Culture>0x0409</Culture>
963 </ResourceCompile>
964 <Link>
965 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
966 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
967 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
968 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
969 <GenerateDebugInformation>true</GenerateDebugInformation>
970 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
971 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
972 <TargetMachine>MachineX86</TargetMachine>
973 </Link>
974 </ItemDefinitionGroup>
975 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
976 <Midl>
977 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
978 <MkTypLibCompatible>true</MkTypLibCompatible>
979 <TargetEnvironment>X64</TargetEnvironment>
980 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
981 <HeaderFileName>
982 </HeaderFileName>
983 </Midl>
984 <ClCompile>
985 <Optimization>Disabled</Optimization>
986 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
987 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
988 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
989 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
990 <WarningLevel>Level4</WarningLevel>
991 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
992 </ClCompile>
993 <ResourceCompile>
994 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
995 <Culture>0x0409</Culture>
996 </ResourceCompile>
997 <Link>
998 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
999 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1000 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1001 <GenerateDebugInformation>true</GenerateDebugInformation>
1002 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1003 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1004 <TargetMachine>MachineX64</TargetMachine>
1005 </Link>
1006 </ItemDefinitionGroup>
1007 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1008 <Midl>
1009 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1010 <MkTypLibCompatible>true</MkTypLibCompatible>
1011 <TargetEnvironment>X64</TargetEnvironment>
1012 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1013 <HeaderFileName>
1014 </HeaderFileName>
1015 </Midl>
1016 <ClCompile>
1017 <Optimization>Disabled</Optimization>
1018 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1019 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1020 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1021 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1022 <WarningLevel>Level4</WarningLevel>
1023 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1024 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1025 </ClCompile>
1026 <ResourceCompile>
1027 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1028 <Culture>0x0409</Culture>
1029 </ResourceCompile>
1030 <Link>
1031 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1032 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1033 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1034 <GenerateDebugInformation>true</GenerateDebugInformation>
1035 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1036 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1037 <TargetMachine>MachineX64</TargetMachine>
1038 </Link>
1039 </ItemDefinitionGroup>
1040 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
1041 <Midl>
1042 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1043 <MkTypLibCompatible>true</MkTypLibCompatible>
1044 <TargetEnvironment>Win32</TargetEnvironment>
1045 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1046 <HeaderFileName>
1047 </HeaderFileName>
1048 </Midl>
1049 <ClCompile>
1050 <Optimization>MaxSpeed</Optimization>
1051 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1052 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1053 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1054 <StringPooling>true</StringPooling>
1055 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1056 <FunctionLevelLinking>true</FunctionLevelLinking>
1057 <WarningLevel>Level4</WarningLevel>
1058 </ClCompile>
1059 <ResourceCompile>
1060 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1061 <Culture>0x0409</Culture>
1062 </ResourceCompile>
1063 <Link>
1064 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1065 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1066 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1067 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1068 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1069 <TargetMachine>MachineX86</TargetMachine>
1070 </Link>
1071 </ItemDefinitionGroup>
1072 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
1073 <Midl>
1074 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1075 <MkTypLibCompatible>true</MkTypLibCompatible>
1076 <TargetEnvironment>Win32</TargetEnvironment>
1077 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1078 <HeaderFileName>
1079 </HeaderFileName>
1080 </Midl>
1081 <ClCompile>
1082 <Optimization>MaxSpeed</Optimization>
1083 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1084 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1085 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1086 <StringPooling>true</StringPooling>
1087 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1088 <FunctionLevelLinking>true</FunctionLevelLinking>
1089 <WarningLevel>Level4</WarningLevel>
1090 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1091 </ClCompile>
1092 <ResourceCompile>
1093 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1094 <Culture>0x0409</Culture>
1095 </ResourceCompile>
1096 <Link>
1097 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1099 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1100 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1101 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1102 <TargetMachine>MachineX86</TargetMachine>
1103 <GenerateDebugInformation>true</GenerateDebugInformation>
1104 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1105 </Link>
1106 </ItemDefinitionGroup>
1107 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1108 <Midl>
1109 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1110 <MkTypLibCompatible>true</MkTypLibCompatible>
1111 <TargetEnvironment>X64</TargetEnvironment>
1112 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1113 <HeaderFileName>
1114 </HeaderFileName>
1115 </Midl>
1116 <ClCompile>
1117 <Optimization>MaxSpeed</Optimization>
1118 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1119 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1120 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1121 <StringPooling>true</StringPooling>
1122 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1123 <FunctionLevelLinking>true</FunctionLevelLinking>
1124 <WarningLevel>Level4</WarningLevel>
1125 </ClCompile>
1126 <ResourceCompile>
1127 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1128 <Culture>0x0409</Culture>
1129 </ResourceCompile>
1130 <Link>
1131 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1132 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1133 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1134 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1135 <TargetMachine>MachineX64</TargetMachine>
1136 </Link>
1137 </ItemDefinitionGroup>
1138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1139 <Midl>
1140 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1141 <MkTypLibCompatible>true</MkTypLibCompatible>
1142 <TargetEnvironment>X64</TargetEnvironment>
1143 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1144 <HeaderFileName>
1145 </HeaderFileName>
1146 </Midl>
1147 <ClCompile>
1148 <Optimization>MaxSpeed</Optimization>
1149 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1150 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1151 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1152 <StringPooling>true</StringPooling>
1153 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1154 <FunctionLevelLinking>true</FunctionLevelLinking>
1155 <WarningLevel>Level4</WarningLevel>
1156 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1157 </ClCompile>
1158 <ResourceCompile>
1159 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1160 <Culture>0x0409</Culture>
1161 </ResourceCompile>
1162 <Link>
1163 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1164 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1165 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1166 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1167 <TargetMachine>MachineX64</TargetMachine>
1168 <GenerateDebugInformation>true</GenerateDebugInformation>
1169 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1170 </Link>
1171 </ItemDefinitionGroup>
1172 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1173 <ClCompile>
1174 <Optimization>Disabled</Optimization>
1175 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1176 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1177 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1178 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1179 <WarningLevel>Level4</WarningLevel>
1180 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1181 </ClCompile>
1182 <ResourceCompile>
1183 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1184 <Culture>0x0409</Culture>
1185 </ResourceCompile>
1186 <Lib>
1187 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1188 <TargetMachine>MachineX86</TargetMachine>
1189 </Lib>
1190 </ItemDefinitionGroup>
1191 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1192 <ClCompile>
1193 <Optimization>Disabled</Optimization>
1194 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1195 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1196 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1197 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1198 <WarningLevel>Level4</WarningLevel>
1199 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1200 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1201 </ClCompile>
1202 <ResourceCompile>
1203 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1204 <Culture>0x0409</Culture>
1205 </ResourceCompile>
1206 <Lib>
1207 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1208 <TargetMachine>MachineX86</TargetMachine>
1209 </Lib>
1210 </ItemDefinitionGroup>
1211 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1212 <Midl>
1213 <TargetEnvironment>X64</TargetEnvironment>
1214 </Midl>
1215 <ClCompile>
1216 <Optimization>Disabled</Optimization>
1217 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1218 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1219 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1220 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1221 <WarningLevel>Level4</WarningLevel>
1222 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1223 </ClCompile>
1224 <ResourceCompile>
1225 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1226 <Culture>0x0409</Culture>
1227 </ResourceCompile>
1228 <Lib>
1229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1230 <TargetMachine>MachineX64</TargetMachine>
1231 </Lib>
1232 </ItemDefinitionGroup>
1233 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1234 <Midl>
1235 <TargetEnvironment>X64</TargetEnvironment>
1236 </Midl>
1237 <ClCompile>
1238 <Optimization>Disabled</Optimization>
1239 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1240 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1241 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1242 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1243 <WarningLevel>Level4</WarningLevel>
1244 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1245 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1246 </ClCompile>
1247 <ResourceCompile>
1248 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1249 <Culture>0x0409</Culture>
1250 </ResourceCompile>
1251 <Lib>
1252 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1253 <TargetMachine>MachineX64</TargetMachine>
1254 </Lib>
1255 </ItemDefinitionGroup>
1256 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1257 <ClCompile>
1258 <Optimization>MaxSpeed</Optimization>
1259 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1262 <StringPooling>true</StringPooling>
1263 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1264 <FunctionLevelLinking>true</FunctionLevelLinking>
1265 <WarningLevel>Level4</WarningLevel>
1266 </ClCompile>
1267 <ResourceCompile>
1268 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1269 <Culture>0x0409</Culture>
1270 </ResourceCompile>
1271 <Lib>
1272 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1273 <TargetMachine>MachineX86</TargetMachine>
1274 </Lib>
1275 </ItemDefinitionGroup>
1276 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1277 <ClCompile>
1278 <Optimization>MaxSpeed</Optimization>
1279 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1280 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1281 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1282 <StringPooling>true</StringPooling>
1283 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1284 <FunctionLevelLinking>true</FunctionLevelLinking>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 </ResourceCompile>
1292 <Lib>
1293 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1294 <TargetMachine>MachineX86</TargetMachine>
1295 </Lib>
1296 </ItemDefinitionGroup>
1297 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1298 <Midl>
1299 <TargetEnvironment>X64</TargetEnvironment>
1300 </Midl>
1301 <ClCompile>
1302 <Optimization>MaxSpeed</Optimization>
1303 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1305 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1306 <StringPooling>true</StringPooling>
1307 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1308 <FunctionLevelLinking>true</FunctionLevelLinking>
1309 <WarningLevel>Level4</WarningLevel>
1310 </ClCompile>
1311 <ResourceCompile>
1312 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1313 <Culture>0x0409</Culture>
1314 </ResourceCompile>
1315 <Lib>
1316 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1317 <TargetMachine>MachineX64</TargetMachine>
1318 </Lib>
1319 </ItemDefinitionGroup>
1320 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1321 <Midl>
1322 <TargetEnvironment>X64</TargetEnvironment>
1323 </Midl>
1324 <ClCompile>
1325 <Optimization>MaxSpeed</Optimization>
1326 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1327 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1328 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1329 <StringPooling>true</StringPooling>
1330 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1331 <FunctionLevelLinking>true</FunctionLevelLinking>
1332 <WarningLevel>Level4</WarningLevel>
1333 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1334 </ClCompile>
1335 <ResourceCompile>
1336 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1337 <Culture>0x0409</Culture>
1338 </ResourceCompile>
1339 <Lib>
1340 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1341 <TargetMachine>MachineX64</TargetMachine>
1342 </Lib>
1343 </ItemDefinitionGroup>
1344 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1345 <Midl>
1346 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1347 <MkTypLibCompatible>true</MkTypLibCompatible>
1348 <TargetEnvironment>Win32</TargetEnvironment>
1349 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1350 <HeaderFileName>
1351 </HeaderFileName>
1352 </Midl>
1353 <ClCompile>
1354 <Optimization>Disabled</Optimization>
1355 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1356 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1357 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1358 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1359 <WarningLevel>Level4</WarningLevel>
1360 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1361 </ClCompile>
1362 <ResourceCompile>
1363 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1364 <Culture>0x0409</Culture>
1365 </ResourceCompile>
1366 <Link>
1367 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1368 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1369 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1370 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1371 <GenerateDebugInformation>true</GenerateDebugInformation>
1372 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1373 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1374 <TargetMachine>MachineX86</TargetMachine>
1375 </Link>
1376 </ItemDefinitionGroup>
1377 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1378 <Midl>
1379 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1380 <MkTypLibCompatible>true</MkTypLibCompatible>
1381 <TargetEnvironment>X64</TargetEnvironment>
1382 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1383 <HeaderFileName>
1384 </HeaderFileName>
1385 </Midl>
1386 <ClCompile>
1387 <Optimization>Disabled</Optimization>
1388 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1389 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1390 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1391 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1392 <WarningLevel>Level4</WarningLevel>
1393 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1394 </ClCompile>
1395 <ResourceCompile>
1396 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1397 <Culture>0x0409</Culture>
1398 </ResourceCompile>
1399 <Link>
1400 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1401 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1402 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1403 <GenerateDebugInformation>true</GenerateDebugInformation>
1404 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1405 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1406 <TargetMachine>MachineX64</TargetMachine>
1407 </Link>
1408 </ItemDefinitionGroup>
1409 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1410 <Midl>
1411 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <MkTypLibCompatible>true</MkTypLibCompatible>
1413 <TargetEnvironment>Win32</TargetEnvironment>
1414 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1415 <HeaderFileName>
1416 </HeaderFileName>
1417 </Midl>
1418 <ClCompile>
1419 <Optimization>MaxSpeed</Optimization>
1420 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1421 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1422 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1423 <StringPooling>true</StringPooling>
1424 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1425 <FunctionLevelLinking>true</FunctionLevelLinking>
1426 <WarningLevel>Level4</WarningLevel>
1427 </ClCompile>
1428 <ResourceCompile>
1429 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1430 <Culture>0x0409</Culture>
1431 </ResourceCompile>
1432 <Link>
1433 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1434 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1435 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1436 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1437 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1438 <TargetMachine>MachineX86</TargetMachine>
1439 </Link>
1440 </ItemDefinitionGroup>
1441 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1442 <Midl>
1443 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1444 <MkTypLibCompatible>true</MkTypLibCompatible>
1445 <TargetEnvironment>X64</TargetEnvironment>
1446 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1447 <HeaderFileName>
1448 </HeaderFileName>
1449 </Midl>
1450 <ClCompile>
1451 <Optimization>MaxSpeed</Optimization>
1452 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1453 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1454 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1455 <StringPooling>true</StringPooling>
1456 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1457 <FunctionLevelLinking>true</FunctionLevelLinking>
1458 <WarningLevel>Level4</WarningLevel>
1459 </ClCompile>
1460 <ResourceCompile>
1461 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1462 <Culture>0x0409</Culture>
1463 </ResourceCompile>
1464 <Link>
1465 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1466 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1467 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1468 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1469 <TargetMachine>MachineX64</TargetMachine>
1470 </Link>
1471 </ItemDefinitionGroup>
1472 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1473 <Midl>
1474 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1475 <MkTypLibCompatible>true</MkTypLibCompatible>
1476 <TargetEnvironment>Win32</TargetEnvironment>
1477 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1478 <HeaderFileName>
1479 </HeaderFileName>
1480 </Midl>
1481 <ClCompile>
1482 <Optimization>Disabled</Optimization>
1483 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1484 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1485 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1486 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1487 <WarningLevel>Level4</WarningLevel>
1488 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1489 </ClCompile>
1490 <ResourceCompile>
1491 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1492 <Culture>0x0409</Culture>
1493 </ResourceCompile>
1494 <Link>
1495 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1496 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1497 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1498 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1499 <GenerateDebugInformation>true</GenerateDebugInformation>
1500 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1501 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1502 <TargetMachine>MachineX86</TargetMachine>
1503 </Link>
1504 </ItemDefinitionGroup>
1505 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1506 <Midl>
1507 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1508 <MkTypLibCompatible>true</MkTypLibCompatible>
1509 <TargetEnvironment>Win32</TargetEnvironment>
1510 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1511 <HeaderFileName>
1512 </HeaderFileName>
1513 </Midl>
1514 <ClCompile>
1515 <Optimization>Disabled</Optimization>
1516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1517 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1520 <WarningLevel>Level4</WarningLevel>
1521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1522 </ClCompile>
1523 <ResourceCompile>
1524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1525 <Culture>0x0409</Culture>
1526 </ResourceCompile>
1527 <Link>
1528 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1529 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1530 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1531 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1532 <GenerateDebugInformation>true</GenerateDebugInformation>
1533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1534 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1535 <TargetMachine>MachineX86</TargetMachine>
1536 </Link>
1537 </ItemDefinitionGroup>
1538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1539 <Midl>
1540 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1541 <MkTypLibCompatible>true</MkTypLibCompatible>
1542 <TargetEnvironment>X64</TargetEnvironment>
1543 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1544 <HeaderFileName>
1545 </HeaderFileName>
1546 </Midl>
1547 <ClCompile>
1548 <Optimization>Disabled</Optimization>
1549 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1550 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1551 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1552 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1553 <WarningLevel>Level4</WarningLevel>
1554 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1555 </ClCompile>
1556 <ResourceCompile>
1557 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1558 <Culture>0x0409</Culture>
1559 </ResourceCompile>
1560 <Link>
1561 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1562 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1563 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1564 <GenerateDebugInformation>true</GenerateDebugInformation>
1565 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1566 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1567 <TargetMachine>MachineX64</TargetMachine>
1568 </Link>
1569 </ItemDefinitionGroup>
1570 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1571 <Midl>
1572 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1573 <MkTypLibCompatible>true</MkTypLibCompatible>
1574 <TargetEnvironment>X64</TargetEnvironment>
1575 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1576 <HeaderFileName>
1577 </HeaderFileName>
1578 </Midl>
1579 <ClCompile>
1580 <Optimization>Disabled</Optimization>
1581 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1582 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1583 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1584 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1585 <WarningLevel>Level4</WarningLevel>
1586 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1587 </ClCompile>
1588 <ResourceCompile>
1589 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1590 <Culture>0x0409</Culture>
1591 </ResourceCompile>
1592 <Link>
1593 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1594 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1595 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1596 <GenerateDebugInformation>true</GenerateDebugInformation>
1597 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1598 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1599 <TargetMachine>MachineX64</TargetMachine>
1600 </Link>
1601 </ItemDefinitionGroup>
1602 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1603 <Midl>
1604 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1605 <MkTypLibCompatible>true</MkTypLibCompatible>
1606 <TargetEnvironment>Win32</TargetEnvironment>
1607 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1608 <HeaderFileName>
1609 </HeaderFileName>
1610 </Midl>
1611 <ClCompile>
1612 <Optimization>MaxSpeed</Optimization>
1613 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1614 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1615 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1616 <StringPooling>true</StringPooling>
1617 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1618 <FunctionLevelLinking>true</FunctionLevelLinking>
1619 <WarningLevel>Level4</WarningLevel>
1620 </ClCompile>
1621 <ResourceCompile>
1622 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1623 <Culture>0x0409</Culture>
1624 </ResourceCompile>
1625 <Link>
1626 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1627 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1628 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1629 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1630 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1631 <TargetMachine>MachineX86</TargetMachine>
1632 </Link>
1633 </ItemDefinitionGroup>
1634 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1635 <Midl>
1636 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1637 <MkTypLibCompatible>true</MkTypLibCompatible>
1638 <TargetEnvironment>Win32</TargetEnvironment>
1639 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1640 <HeaderFileName>
1641 </HeaderFileName>
1642 </Midl>
1643 <ClCompile>
1644 <Optimization>MaxSpeed</Optimization>
1645 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1646 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1647 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1648 <StringPooling>true</StringPooling>
1649 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1650 <FunctionLevelLinking>true</FunctionLevelLinking>
1651 <WarningLevel>Level4</WarningLevel>
1652 </ClCompile>
1653 <ResourceCompile>
1654 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1655 <Culture>0x0409</Culture>
1656 </ResourceCompile>
1657 <Link>
1658 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1659 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1660 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1661 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1662 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1663 <TargetMachine>MachineX86</TargetMachine>
1664 </Link>
1665 </ItemDefinitionGroup>
1666 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1667 <Midl>
1668 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1669 <MkTypLibCompatible>true</MkTypLibCompatible>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 </ResourceCompile>
1689 <Link>
1690 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1691 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1692 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1693 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1694 <TargetMachine>MachineX64</TargetMachine>
1695 </Link>
1696 </ItemDefinitionGroup>
1697 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1698 <Midl>
1699 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1700 <MkTypLibCompatible>true</MkTypLibCompatible>
1701 <TargetEnvironment>X64</TargetEnvironment>
1702 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1703 <HeaderFileName>
1704 </HeaderFileName>
1705 </Midl>
1706 <ClCompile>
1707 <Optimization>MaxSpeed</Optimization>
1708 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1709 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1710 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1711 <StringPooling>true</StringPooling>
1712 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1713 <FunctionLevelLinking>true</FunctionLevelLinking>
1714 <WarningLevel>Level4</WarningLevel>
1715 </ClCompile>
1716 <ResourceCompile>
1717 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1718 <Culture>0x0409</Culture>
1719 </ResourceCompile>
1720 <Link>
1721 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1722 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1723 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1724 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1725 <TargetMachine>MachineX64</TargetMachine>
1726 </Link>
1727 </ItemDefinitionGroup>
1728 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1729 <Midl>
1730 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1731 <MkTypLibCompatible>true</MkTypLibCompatible>
1732 <TargetEnvironment>Win32</TargetEnvironment>
1733 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1734 <HeaderFileName>
1735 </HeaderFileName>
1736 </Midl>
1737 <ClCompile>
1738 <Optimization>Disabled</Optimization>
1739 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1740 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1741 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1742 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1743 <WarningLevel>Level4</WarningLevel>
1744 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1745 </ClCompile>
1746 <ResourceCompile>
1747 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1748 <Culture>0x0409</Culture>
1749 </ResourceCompile>
1750 <Link>
1751 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1752 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1753 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1754 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1755 <GenerateDebugInformation>true</GenerateDebugInformation>
1756 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1757 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1758 <TargetMachine>MachineX86</TargetMachine>
1759 </Link>
1760 </ItemDefinitionGroup>
1761 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1762 <Midl>
1763 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1764 <MkTypLibCompatible>true</MkTypLibCompatible>
1765 <TargetEnvironment>X64</TargetEnvironment>
1766 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1767 <HeaderFileName>
1768 </HeaderFileName>
1769 </Midl>
1770 <ClCompile>
1771 <Optimization>Disabled</Optimization>
1772 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1773 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1774 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1775 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1776 <WarningLevel>Level4</WarningLevel>
1777 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1778 </ClCompile>
1779 <ResourceCompile>
1780 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1781 <Culture>0x0409</Culture>
1782 </ResourceCompile>
1783 <Link>
1784 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1785 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1786 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1787 <GenerateDebugInformation>true</GenerateDebugInformation>
1788 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1789 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1790 <TargetMachine>MachineX64</TargetMachine>
1791 </Link>
1792 </ItemDefinitionGroup>
1793 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1794 <Midl>
1795 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1796 <MkTypLibCompatible>true</MkTypLibCompatible>
1797 <TargetEnvironment>Win32</TargetEnvironment>
1798 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1799 <HeaderFileName>
1800 </HeaderFileName>
1801 </Midl>
1802 <ClCompile>
1803 <Optimization>MaxSpeed</Optimization>
1804 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1805 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1806 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1807 <StringPooling>true</StringPooling>
1808 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1809 <FunctionLevelLinking>true</FunctionLevelLinking>
1810 <WarningLevel>Level4</WarningLevel>
1811 </ClCompile>
1812 <ResourceCompile>
1813 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1814 <Culture>0x0409</Culture>
1815 </ResourceCompile>
1816 <Link>
1817 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1818 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1819 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1820 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1821 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1822 <TargetMachine>MachineX86</TargetMachine>
1823 </Link>
1824 </ItemDefinitionGroup>
1825 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1826 <Midl>
1827 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1828 <MkTypLibCompatible>true</MkTypLibCompatible>
1829 <TargetEnvironment>X64</TargetEnvironment>
1830 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1831 <HeaderFileName>
1832 </HeaderFileName>
1833 </Midl>
1834 <ClCompile>
1835 <Optimization>MaxSpeed</Optimization>
1836 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1837 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1838 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1839 <StringPooling>true</StringPooling>
1840 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1841 <FunctionLevelLinking>true</FunctionLevelLinking>
1842 <WarningLevel>Level4</WarningLevel>
1843 </ClCompile>
1844 <ResourceCompile>
1845 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1846 <Culture>0x0409</Culture>
1847 </ResourceCompile>
1848 <Link>
1849 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1850 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1851 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1852 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1853 <TargetMachine>MachineX64</TargetMachine>
1854 </Link>
1855 </ItemDefinitionGroup>
1856 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
1857 <ClCompile>
1858 <Optimization>Disabled</Optimization>
1859 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1860 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1861 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1862 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1863 <WarningLevel>Level4</WarningLevel>
1864 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1865 </ClCompile>
1866 <ResourceCompile>
1867 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1868 <Culture>0x0409</Culture>
1869 </ResourceCompile>
1870 <Lib>
1871 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1872 <TargetMachine>MachineX86</TargetMachine>
1873 </Lib>
1874 </ItemDefinitionGroup>
1875 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
1876 <Midl>
1877 <TargetEnvironment>X64</TargetEnvironment>
1878 </Midl>
1879 <ClCompile>
1880 <Optimization>Disabled</Optimization>
1881 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1882 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1883 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1884 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1885 <WarningLevel>Level4</WarningLevel>
1886 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1887 </ClCompile>
1888 <ResourceCompile>
1889 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1890 <Culture>0x0409</Culture>
1891 </ResourceCompile>
1892 <Lib>
1893 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1894 <TargetMachine>MachineX64</TargetMachine>
1895 </Lib>
1896 </ItemDefinitionGroup>
1897 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1898 <ClCompile>
1899 <Optimization>Disabled</Optimization>
1900 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1901 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1902 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1903 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1904 <WarningLevel>Level4</WarningLevel>
1905 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1906 </ClCompile>
1907 <ResourceCompile>
1908 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1909 <Culture>0x0409</Culture>
1910 </ResourceCompile>
1911 <Lib>
1912 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1913 <TargetMachine>MachineX86</TargetMachine>
1914 </Lib>
1915 </ItemDefinitionGroup>
1916 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1917 <Midl>
1918 <TargetEnvironment>X64</TargetEnvironment>
1919 </Midl>
1920 <ClCompile>
1921 <Optimization>Disabled</Optimization>
1922 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1923 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1924 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1925 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1926 <WarningLevel>Level4</WarningLevel>
1927 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1928 </ClCompile>
1929 <ResourceCompile>
1930 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1931 <Culture>0x0409</Culture>
1932 </ResourceCompile>
1933 <Lib>
1934 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1935 <TargetMachine>MachineX64</TargetMachine>
1936 </Lib>
1937 </ItemDefinitionGroup>
1938 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
1939 <ClCompile>
1940 <Optimization>Disabled</Optimization>
1941 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1942 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1943 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1944 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1945 <WarningLevel>Level4</WarningLevel>
1946 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1947 </ClCompile>
1948 <ResourceCompile>
1949 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1950 <Culture>0x0409</Culture>
1951 </ResourceCompile>
1952 <Lib>
1953 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1954 <TargetMachine>MachineX86</TargetMachine>
1955 </Lib>
1956 </ItemDefinitionGroup>
1957 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1958 <ClCompile>
1959 <Optimization>Disabled</Optimization>
1960 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1961 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1962 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1963 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1964 <WarningLevel>Level4</WarningLevel>
1965 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1966 </ClCompile>
1967 <ResourceCompile>
1968 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1969 <Culture>0x0409</Culture>
1970 </ResourceCompile>
1971 <Lib>
1972 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1973 <TargetMachine>MachineX86</TargetMachine>
1974 </Lib>
1975 </ItemDefinitionGroup>
1976 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
1977 <Midl>
1978 <TargetEnvironment>X64</TargetEnvironment>
1979 </Midl>
1980 <ClCompile>
1981 <Optimization>Disabled</Optimization>
1982 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1983 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1985 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1986 <WarningLevel>Level4</WarningLevel>
1987 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1988 </ClCompile>
1989 <ResourceCompile>
1990 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1991 <Culture>0x0409</Culture>
1992 </ResourceCompile>
1993 <Lib>
1994 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1995 <TargetMachine>MachineX64</TargetMachine>
1996 </Lib>
1997 </ItemDefinitionGroup>
1998 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1999 <Midl>
2000 <TargetEnvironment>X64</TargetEnvironment>
2001 </Midl>
2002 <ClCompile>
2003 <Optimization>Disabled</Optimization>
2004 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2005 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2006 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2007 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2008 <WarningLevel>Level4</WarningLevel>
2009 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2010 </ClCompile>
2011 <ResourceCompile>
2012 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2013 <Culture>0x0409</Culture>
2014 </ResourceCompile>
2015 <Lib>
2016 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2017 <TargetMachine>MachineX64</TargetMachine>
2018 </Lib>
2019 </ItemDefinitionGroup>
2020 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
2021 <ClCompile>
2022 <Optimization>Disabled</Optimization>
2023 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2024 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2025 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2026 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2027 <WarningLevel>Level4</WarningLevel>
2028 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2029 </ClCompile>
2030 <ResourceCompile>
2031 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2032 <Culture>0x0409</Culture>
2033 </ResourceCompile>
2034 <Lib>
2035 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2036 <TargetMachine>MachineX86</TargetMachine>
2037 </Lib>
2038 </ItemDefinitionGroup>
2039 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
2040 <Midl>
2041 <TargetEnvironment>X64</TargetEnvironment>
2042 </Midl>
2043 <ClCompile>
2044 <Optimization>Disabled</Optimization>
2045 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2046 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2047 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2048 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2049 <WarningLevel>Level4</WarningLevel>
2050 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2051 </ClCompile>
2052 <ResourceCompile>
2053 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2054 <Culture>0x0409</Culture>
2055 </ResourceCompile>
2056 <Lib>
2057 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2058 <TargetMachine>MachineX64</TargetMachine>
2059 </Lib>
2060 </ItemDefinitionGroup>
2061 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 </ResourceCompile>
2075 <Lib>
2076 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2077 <TargetMachine>MachineX86</TargetMachine>
2078 </Lib>
2079 </ItemDefinitionGroup>
2080 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2081 <Midl>
2082 <TargetEnvironment>X64</TargetEnvironment>
2083 </Midl>
2084 <ClCompile>
2085 <Optimization>Disabled</Optimization>
2086 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2087 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2088 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2089 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2090 <WarningLevel>Level4</WarningLevel>
2091 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2092 </ClCompile>
2093 <ResourceCompile>
2094 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2095 <Culture>0x0409</Culture>
2096 </ResourceCompile>
2097 <Lib>
2098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2099 <TargetMachine>MachineX64</TargetMachine>
2100 </Lib>
2101 </ItemDefinitionGroup>
2102 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2103 <ClCompile>
2104 <Optimization>MaxSpeed</Optimization>
2105 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2106 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2107 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2108 <StringPooling>true</StringPooling>
2109 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2110 <FunctionLevelLinking>true</FunctionLevelLinking>
2111 <WarningLevel>Level4</WarningLevel>
2112 </ClCompile>
2113 <ResourceCompile>
2114 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2115 <Culture>0x0409</Culture>
2116 </ResourceCompile>
2117 <Lib>
2118 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2119 <TargetMachine>MachineX86</TargetMachine>
2120 </Lib>
2121 </ItemDefinitionGroup>
2122 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2123 <Midl>
2124 <TargetEnvironment>X64</TargetEnvironment>
2125 </Midl>
2126 <ClCompile>
2127 <Optimization>MaxSpeed</Optimization>
2128 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2129 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2130 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2131 <StringPooling>true</StringPooling>
2132 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2133 <FunctionLevelLinking>true</FunctionLevelLinking>
2134 <WarningLevel>Level4</WarningLevel>
2135 </ClCompile>
2136 <ResourceCompile>
2137 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2138 <Culture>0x0409</Culture>
2139 </ResourceCompile>
2140 <Lib>
2141 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2142 <TargetMachine>MachineX64</TargetMachine>
2143 </Lib>
2144 </ItemDefinitionGroup>
2145 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2146 <ClCompile>
2147 <Optimization>MaxSpeed</Optimization>
2148 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2149 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2150 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2151 <StringPooling>true</StringPooling>
2152 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2153 <FunctionLevelLinking>true</FunctionLevelLinking>
2154 <WarningLevel>Level4</WarningLevel>
2155 </ClCompile>
2156 <ResourceCompile>
2157 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <Culture>0x0409</Culture>
2159 </ResourceCompile>
2160 <Lib>
2161 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2162 <TargetMachine>MachineX86</TargetMachine>
2163 </Lib>
2164 </ItemDefinitionGroup>
2165 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2166 <Midl>
2167 <TargetEnvironment>X64</TargetEnvironment>
2168 </Midl>
2169 <ClCompile>
2170 <Optimization>MaxSpeed</Optimization>
2171 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2172 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2173 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2174 <StringPooling>true</StringPooling>
2175 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2176 <FunctionLevelLinking>true</FunctionLevelLinking>
2177 <WarningLevel>Level4</WarningLevel>
2178 </ClCompile>
2179 <ResourceCompile>
2180 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2181 <Culture>0x0409</Culture>
2182 </ResourceCompile>
2183 <Lib>
2184 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2185 <TargetMachine>MachineX64</TargetMachine>
2186 </Lib>
2187 </ItemDefinitionGroup>
2188 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2189 <ClCompile>
2190 <Optimization>MaxSpeed</Optimization>
2191 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2192 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2193 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2194 <StringPooling>true</StringPooling>
2195 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2196 <FunctionLevelLinking>true</FunctionLevelLinking>
2197 <WarningLevel>Level4</WarningLevel>
2198 </ClCompile>
2199 <ResourceCompile>
2200 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2201 <Culture>0x0409</Culture>
2202 </ResourceCompile>
2203 <Lib>
2204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2205 <TargetMachine>MachineX86</TargetMachine>
2206 </Lib>
2207 </ItemDefinitionGroup>
2208 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2209 <ClCompile>
2210 <Optimization>MaxSpeed</Optimization>
2211 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2212 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2213 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2214 <StringPooling>true</StringPooling>
2215 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2216 <FunctionLevelLinking>true</FunctionLevelLinking>
2217 <WarningLevel>Level4</WarningLevel>
2218 </ClCompile>
2219 <ResourceCompile>
2220 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2221 <Culture>0x0409</Culture>
2222 </ResourceCompile>
2223 <Lib>
2224 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2225 <TargetMachine>MachineX86</TargetMachine>
2226 </Lib>
2227 </ItemDefinitionGroup>
2228 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2229 <Midl>
2230 <TargetEnvironment>X64</TargetEnvironment>
2231 </Midl>
2232 <ClCompile>
2233 <Optimization>MaxSpeed</Optimization>
2234 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2235 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2236 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2237 <StringPooling>true</StringPooling>
2238 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2239 <FunctionLevelLinking>true</FunctionLevelLinking>
2240 <WarningLevel>Level4</WarningLevel>
2241 </ClCompile>
2242 <ResourceCompile>
2243 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2244 <Culture>0x0409</Culture>
2245 </ResourceCompile>
2246 <Lib>
2247 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2248 <TargetMachine>MachineX64</TargetMachine>
2249 </Lib>
2250 </ItemDefinitionGroup>
2251 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2252 <Midl>
2253 <TargetEnvironment>X64</TargetEnvironment>
2254 </Midl>
2255 <ClCompile>
2256 <Optimization>MaxSpeed</Optimization>
2257 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2258 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2259 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2260 <StringPooling>true</StringPooling>
2261 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2262 <FunctionLevelLinking>true</FunctionLevelLinking>
2263 <WarningLevel>Level4</WarningLevel>
2264 </ClCompile>
2265 <ResourceCompile>
2266 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2267 <Culture>0x0409</Culture>
2268 </ResourceCompile>
2269 <Lib>
2270 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2271 <TargetMachine>MachineX64</TargetMachine>
2272 </Lib>
2273 </ItemDefinitionGroup>
2274 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
2275 <ClCompile>
2276 <Optimization>MaxSpeed</Optimization>
2277 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2278 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2279 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2280 <StringPooling>true</StringPooling>
2281 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2282 <FunctionLevelLinking>true</FunctionLevelLinking>
2283 <WarningLevel>Level4</WarningLevel>
2284 </ClCompile>
2285 <ResourceCompile>
2286 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2287 <Culture>0x0409</Culture>
2288 </ResourceCompile>
2289 <Lib>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <TargetMachine>MachineX86</TargetMachine>
2292 </Lib>
2293 </ItemDefinitionGroup>
2294 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2295 <Midl>
2296 <TargetEnvironment>X64</TargetEnvironment>
2297 </Midl>
2298 <ClCompile>
2299 <Optimization>MaxSpeed</Optimization>
2300 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2301 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2302 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2303 <StringPooling>true</StringPooling>
2304 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2305 <FunctionLevelLinking>true</FunctionLevelLinking>
2306 <WarningLevel>Level4</WarningLevel>
2307 </ClCompile>
2308 <ResourceCompile>
2309 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2310 <Culture>0x0409</Culture>
2311 </ResourceCompile>
2312 <Lib>
2313 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2314 <TargetMachine>MachineX64</TargetMachine>
2315 </Lib>
2316 </ItemDefinitionGroup>
2317 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2318 <ClCompile>
2319 <Optimization>MaxSpeed</Optimization>
2320 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2321 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.10\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2322 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2323 <StringPooling>true</StringPooling>
2324 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2325 <FunctionLevelLinking>true</FunctionLevelLinking>
2326 <WarningLevel>Level4</WarningLevel>
2327 </ClCompile>
2328 <ResourceCompile>
2329 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2330 <Culture>0x0409</Culture>
2331 </ResourceCompile>
2332 <Lib>
2333 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2334 <TargetMachine>MachineX86</TargetMachine>
2335 </Lib>
2336 </ItemDefinitionGroup>
2337 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2338 <Midl>
2339 <TargetEnvironment>X64</TargetEnvironment>
2340 </Midl>
2341 <ClCompile>
2342 <Optimization>MaxSpeed</Optimization>
2343 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2344 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.10\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2345 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2346 <StringPooling>true</StringPooling>
2347 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2348 <FunctionLevelLinking>true</FunctionLevelLinking>
2349 <WarningLevel>Level4</WarningLevel>
2350 </ClCompile>
2351 <ResourceCompile>
2352 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2353 <Culture>0x0409</Culture>
2354 </ResourceCompile>
2355 <Lib>
2356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2357 <TargetMachine>MachineX64</TargetMachine>
2358 </Lib>
2359 </ItemDefinitionGroup>
2360 <ItemGroup>
2361 <ClCompile Include="..\..\..\..\lib\altsvc.c" />
2362 <ClCompile Include="..\..\..\..\lib\amigaos.c" />
2363 <ClCompile Include="..\..\..\..\lib\asyn-ares.c" />
2364 <ClCompile Include="..\..\..\..\lib\asyn-thread.c" />
2365 <ClCompile Include="..\..\..\..\lib\base64.c" />
2366 <ClCompile Include="..\..\..\..\lib\bufref.c" />
2367 <ClCompile Include="..\..\..\..\lib\c-hyper.c" />
2368 <ClCompile Include="..\..\..\..\lib\conncache.c" />
2369 <ClCompile Include="..\..\..\..\lib\connect.c" />
2370 <ClCompile Include="..\..\..\..\lib\content_encoding.c" />
2371 <ClCompile Include="..\..\..\..\lib\cookie.c" />
2372 <ClCompile Include="..\..\..\..\lib\curl_addrinfo.c" />
2373 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2374 <ClCompile Include="..\..\..\..\lib\curl_des.c" />
2375 <ClCompile Include="..\..\..\..\lib\curl_endian.c" />
2376 <ClCompile Include="..\..\..\..\lib\curl_fnmatch.c" />
2377 <ClCompile Include="..\..\..\..\lib\curl_gethostname.c" />
2378 <ClCompile Include="..\..\..\..\lib\curl_get_line.c" />
2379 <ClCompile Include="..\..\..\..\lib\curl_gssapi.c" />
2380 <ClCompile Include="..\..\..\..\lib\curl_memrchr.c" />
2381 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2382 <ClCompile Include="..\..\..\..\lib\curl_ntlm_core.c" />
2383 <ClCompile Include="..\..\..\..\lib\curl_ntlm_wb.c" />
2384 <ClCompile Include="..\..\..\..\lib\curl_path.c" />
2385 <ClCompile Include="..\..\..\..\lib\curl_range.c" />
2386 <ClCompile Include="..\..\..\..\lib\curl_rtmp.c" />
2387 <ClCompile Include="..\..\..\..\lib\curl_sasl.c" />
2388 <ClCompile Include="..\..\..\..\lib\curl_sspi.c" />
2389 <ClCompile Include="..\..\..\..\lib\curl_threads.c" />
2390 <ClCompile Include="..\..\..\..\lib\dict.c" />
2391 <ClCompile Include="..\..\..\..\lib\doh.c" />
2392 <ClCompile Include="..\..\..\..\lib\dotdot.c" />
2393 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2394 <ClCompile Include="..\..\..\..\lib\easy.c" />
2395 <ClCompile Include="..\..\..\..\lib\easygetopt.c" />
2396 <ClCompile Include="..\..\..\..\lib\easyoptions.c" />
2397 <ClCompile Include="..\..\..\..\lib\escape.c" />
2398 <ClCompile Include="..\..\..\..\lib\file.c" />
2399 <ClCompile Include="..\..\..\..\lib\fileinfo.c" />
2400 <ClCompile Include="..\..\..\..\lib\formdata.c" />
2401 <ClCompile Include="..\..\..\..\lib\ftp.c" />
2402 <ClCompile Include="..\..\..\..\lib\ftplistparser.c" />
2403 <ClCompile Include="..\..\..\..\lib\getenv.c" />
2404 <ClCompile Include="..\..\..\..\lib\getinfo.c" />
2405 <ClCompile Include="..\..\..\..\lib\gopher.c" />
2406 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
2407 <ClCompile Include="..\..\..\..\lib\hash.c" />
2408 <ClCompile Include="..\..\..\..\lib\headers.c" />
2409 <ClCompile Include="..\..\..\..\lib\hmac.c" />
2410 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
2411 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
2412 <ClCompile Include="..\..\..\..\lib\hostip6.c" />
2413 <ClCompile Include="..\..\..\..\lib\hostip.c" />
2414 <ClCompile Include="..\..\..\..\lib\hostsyn.c" />
2415 <ClCompile Include="..\..\..\..\lib\hsts.c" />
2416 <ClCompile Include="..\..\..\..\lib\http2.c" />
2417 <ClCompile Include="..\..\..\..\lib\http_aws_sigv4.c" />
2418 <ClCompile Include="..\..\..\..\lib\http.c" />
2419 <ClCompile Include="..\..\..\..\lib\http_chunks.c" />
2420 <ClCompile Include="..\..\..\..\lib\http_digest.c" />
2421 <ClCompile Include="..\..\..\..\lib\http_negotiate.c" />
2422 <ClCompile Include="..\..\..\..\lib\http_ntlm.c" />
2423 <ClCompile Include="..\..\..\..\lib\http_proxy.c" />
2424 <ClCompile Include="..\..\..\..\lib\idn_win32.c" />
2425 <ClCompile Include="..\..\..\..\lib\if2ip.c" />
2426 <ClCompile Include="..\..\..\..\lib\imap.c" />
2427 <ClCompile Include="..\..\..\..\lib\inet_ntop.c" />
2428 <ClCompile Include="..\..\..\..\lib\inet_pton.c" />
2429 <ClCompile Include="..\..\..\..\lib\krb5.c" />
2430 <ClCompile Include="..\..\..\..\lib\ldap.c" />
2431 <ClCompile Include="..\..\..\..\lib\llist.c" />
2432 <ClCompile Include="..\..\..\..\lib\md4.c" />
2433 <ClCompile Include="..\..\..\..\lib\md5.c" />
2434 <ClCompile Include="..\..\..\..\lib\memdebug.c" />
2435 <ClCompile Include="..\..\..\..\lib\mime.c" />
2436 <ClCompile Include="..\..\..\..\lib\mprintf.c" />
2437 <ClCompile Include="..\..\..\..\lib\mqtt.c" />
2438 <ClCompile Include="..\..\..\..\lib\multi.c" />
2439 <ClCompile Include="..\..\..\..\lib\netrc.c" />
2440 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2441 <ClCompile Include="..\..\..\..\lib\openldap.c" />
2442 <ClCompile Include="..\..\..\..\lib\parsedate.c" />
2443 <ClCompile Include="..\..\..\..\lib\pingpong.c" />
2444 <ClCompile Include="..\..\..\..\lib\pop3.c" />
2445 <ClCompile Include="..\..\..\..\lib\progress.c" />
2446 <ClCompile Include="..\..\..\..\lib\psl.c" />
2447 <ClCompile Include="..\..\..\..\lib\rand.c" />
2448 <ClCompile Include="..\..\..\..\lib\rename.c" />
2449 <ClCompile Include="..\..\..\..\lib\rtsp.c" />
2450 <ClCompile Include="..\..\..\..\lib\select.c" />
2451 <ClCompile Include="..\..\..\..\lib\sendf.c" />
2452 <ClCompile Include="..\..\..\..\lib\setopt.c" />
2453 <ClCompile Include="..\..\..\..\lib\sha256.c" />
2454 <ClCompile Include="..\..\..\..\lib\share.c" />
2455 <ClCompile Include="..\..\..\..\lib\slist.c" />
2456 <ClCompile Include="..\..\..\..\lib\smb.c" />
2457 <ClCompile Include="..\..\..\..\lib\smtp.c" />
2458 <ClCompile Include="..\..\..\..\lib\socketpair.c" />
2459 <ClCompile Include="..\..\..\..\lib\socks.c" />
2460 <ClCompile Include="..\..\..\..\lib\socks_gssapi.c" />
2461 <ClCompile Include="..\..\..\..\lib\socks_sspi.c" />
2462 <ClCompile Include="..\..\..\..\lib\speedcheck.c" />
2463 <ClCompile Include="..\..\..\..\lib\splay.c" />
2464 <ClCompile Include="..\..\..\..\lib\strcase.c" />
2465 <ClCompile Include="..\..\..\..\lib\strdup.c" />
2466 <ClCompile Include="..\..\..\..\lib\strerror.c" />
2467 <ClCompile Include="..\..\..\..\lib\strtok.c" />
2468 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2469 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
2470 <ClCompile Include="..\..\..\..\lib\telnet.c" />
2471 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2472 <ClCompile Include="..\..\..\..\lib\timediff.c" />
2473 <ClCompile Include="..\..\..\..\lib\timeval.c" />
2474 <ClCompile Include="..\..\..\..\lib\transfer.c" />
2475 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
2476 <ClCompile Include="..\..\..\..\lib\url.c" />
2477 <ClCompile Include="..\..\..\..\lib\version.c" />
2478 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2479 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2480 <ClCompile Include="..\..\..\..\lib\wildcard.c" />
2481 <ClCompile Include="..\..\..\..\lib\vauth\cleartext.c" />
2482 <ClCompile Include="..\..\..\..\lib\vauth\cram.c" />
2483 <ClCompile Include="..\..\..\..\lib\vauth\digest.c" />
2484 <ClCompile Include="..\..\..\..\lib\vauth\digest_sspi.c" />
2485 <ClCompile Include="..\..\..\..\lib\vauth\gsasl.c" />
2486 <ClCompile Include="..\..\..\..\lib\vauth\krb5_gssapi.c" />
2487 <ClCompile Include="..\..\..\..\lib\vauth\krb5_sspi.c" />
2488 <ClCompile Include="..\..\..\..\lib\vauth\ntlm.c" />
2489 <ClCompile Include="..\..\..\..\lib\vauth\ntlm_sspi.c" />
2490 <ClCompile Include="..\..\..\..\lib\vauth\oauth2.c" />
2491 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
2492 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
2493 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2494 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
2495 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
2496 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
2497 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
2498 <ClCompile Include="..\..\..\..\lib\vssh\libssh2.c" />
2499 <ClCompile Include="..\..\..\..\lib\vssh\libssh.c" />
2500 <ClCompile Include="..\..\..\..\lib\vssh\wolfssh.c" />
2501 <ClCompile Include="..\..\..\..\lib\vtls\bearssl.c" />
2502 <ClCompile Include="..\..\..\..\lib\vtls\gskit.c" />
2503 <ClCompile Include="..\..\..\..\lib\vtls\gtls.c" />
2504 <ClCompile Include="..\..\..\..\lib\vtls\hostcheck.c" />
2505 <ClCompile Include="..\..\..\..\lib\vtls\keylog.c" />
2506 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls.c" />
2507 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls_threadlock.c" />
2508 <ClCompile Include="..\..\..\..\lib\vtls\nss.c" />
2509 <ClCompile Include="..\..\..\..\lib\vtls\openssl.c" />
2510 <ClCompile Include="..\..\..\..\lib\vtls\rustls.c" />
2511 <ClCompile Include="..\..\..\..\lib\vtls\schannel.c" />
2512 <ClCompile Include="..\..\..\..\lib\vtls\schannel_verify.c" />
2513 <ClCompile Include="..\..\..\..\lib\vtls\sectransp.c" />
2514 <ClCompile Include="..\..\..\..\lib\vtls\vtls.c" />
2515 <ClCompile Include="..\..\..\..\lib\vtls\wolfssl.c" />
2516 <ClCompile Include="..\..\..\..\lib\vtls\x509asn1.c" />
2517 </ItemGroup>
2518 <ItemGroup>
2519 <ClInclude Include="..\..\..\..\lib\altsvc.h" />
2520 <ClInclude Include="..\..\..\..\lib\amigaos.h" />
2521 <ClInclude Include="..\..\..\..\lib\arpa_telnet.h" />
2522 <ClInclude Include="..\..\..\..\lib\asyn.h" />
2523 <ClInclude Include="..\..\..\..\lib\bufref.h" />
2524 <ClInclude Include="..\..\..\..\lib\c-hyper.h" />
2525 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2526 <ClInclude Include="..\..\..\..\lib\conncache.h" />
2527 <ClInclude Include="..\..\..\..\lib\connect.h" />
2528 <ClInclude Include="..\..\..\..\lib\content_encoding.h" />
2529 <ClInclude Include="..\..\..\..\lib\cookie.h" />
2530 <ClInclude Include="..\..\..\..\lib\curl_addrinfo.h" />
2531 <ClInclude Include="..\..\..\..\lib\curl_base64.h" />
2532 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2533 <ClInclude Include="..\..\..\..\lib\curl_des.h" />
2534 <ClInclude Include="..\..\..\..\lib\curl_endian.h" />
2535 <ClInclude Include="..\..\..\..\lib\curl_fnmatch.h" />
2536 <ClInclude Include="..\..\..\..\lib\curl_gethostname.h" />
2537 <ClInclude Include="..\..\..\..\lib\curl_get_line.h" />
2538 <ClInclude Include="..\..\..\..\lib\curl_gssapi.h" />
2539 <ClInclude Include="..\..\..\..\lib\curl_hmac.h" />
2540 <ClInclude Include="..\..\..\..\lib\curl_krb5.h" />
2541 <ClInclude Include="..\..\..\..\lib\curl_ldap.h" />
2542 <ClInclude Include="..\..\..\..\lib\curl_md4.h" />
2543 <ClInclude Include="..\..\..\..\lib\curl_md5.h" />
2544 <ClInclude Include="..\..\..\..\lib\curl_memory.h" />
2545 <ClInclude Include="..\..\..\..\lib\curl_memrchr.h" />
2546 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2547 <ClInclude Include="..\..\..\..\lib\curl_ntlm_core.h" />
2548 <ClInclude Include="..\..\..\..\lib\curl_ntlm_wb.h" />
2549 <ClInclude Include="..\..\..\..\lib\curl_path.h" />
2550 <ClInclude Include="..\..\..\..\lib\curl_printf.h" />
2551 <ClInclude Include="..\..\..\..\lib\curl_range.h" />
2552 <ClInclude Include="..\..\..\..\lib\curl_rtmp.h" />
2553 <ClInclude Include="..\..\..\..\lib\curl_sasl.h" />
2554 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2555 <ClInclude Include="..\..\..\..\lib\curl_setup_once.h" />
2556 <ClInclude Include="..\..\..\..\lib\curl_sha256.h" />
2557 <ClInclude Include="..\..\..\..\lib\curl_sspi.h" />
2558 <ClInclude Include="..\..\..\..\lib\curl_threads.h" />
2559 <ClInclude Include="..\..\..\..\lib\curlx.h" />
2560 <ClInclude Include="..\..\..\..\lib\dict.h" />
2561 <ClInclude Include="..\..\..\..\lib\doh.h" />
2562 <ClInclude Include="..\..\..\..\lib\dotdot.h" />
2563 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2564 <ClInclude Include="..\..\..\..\lib\easyif.h" />
2565 <ClInclude Include="..\..\..\..\lib\easyoptions.h" />
2566 <ClInclude Include="..\..\..\..\lib\escape.h" />
2567 <ClInclude Include="..\..\..\..\lib\file.h" />
2568 <ClInclude Include="..\..\..\..\lib\fileinfo.h" />
2569 <ClInclude Include="..\..\..\..\lib\formdata.h" />
2570 <ClInclude Include="..\..\..\..\lib\ftp.h" />
2571 <ClInclude Include="..\..\..\..\lib\ftplistparser.h" />
2572 <ClInclude Include="..\..\..\..\lib\getinfo.h" />
2573 <ClInclude Include="..\..\..\..\lib\gopher.h" />
2574 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
2575 <ClInclude Include="..\..\..\..\lib\hash.h" />
2576 <ClInclude Include="..\..\..\..\lib\headers.h" />
2577 <ClInclude Include="..\..\..\..\lib\hostip.h" />
2578 <ClInclude Include="..\..\..\..\lib\hsts.h" />
2579 <ClInclude Include="..\..\..\..\lib\http2.h" />
2580 <ClInclude Include="..\..\..\..\lib\http_aws_sigv4.h" />
2581 <ClInclude Include="..\..\..\..\lib\http_chunks.h" />
2582 <ClInclude Include="..\..\..\..\lib\http_digest.h" />
2583 <ClInclude Include="..\..\..\..\lib\http.h" />
2584 <ClInclude Include="..\..\..\..\lib\http_negotiate.h" />
2585 <ClInclude Include="..\..\..\..\lib\http_ntlm.h" />
2586 <ClInclude Include="..\..\..\..\lib\http_proxy.h" />
2587 <ClInclude Include="..\..\..\..\lib\if2ip.h" />
2588 <ClInclude Include="..\..\..\..\lib\imap.h" />
2589 <ClInclude Include="..\..\..\..\lib\inet_ntop.h" />
2590 <ClInclude Include="..\..\..\..\lib\inet_pton.h" />
2591 <ClInclude Include="..\..\..\..\lib\llist.h" />
2592 <ClInclude Include="..\..\..\..\lib\memdebug.h" />
2593 <ClInclude Include="..\..\..\..\lib\mime.h" />
2594 <ClInclude Include="..\..\..\..\lib\mqtt.h" />
2595 <ClInclude Include="..\..\..\..\lib\multihandle.h" />
2596 <ClInclude Include="..\..\..\..\lib\multiif.h" />
2597 <ClInclude Include="..\..\..\..\lib\netrc.h" />
2598 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2599 <ClInclude Include="..\..\..\..\lib\parsedate.h" />
2600 <ClInclude Include="..\..\..\..\lib\pingpong.h" />
2601 <ClInclude Include="..\..\..\..\lib\pop3.h" />
2602 <ClInclude Include="..\..\..\..\lib\progress.h" />
2603 <ClInclude Include="..\..\..\..\lib\psl.h" />
2604 <ClInclude Include="..\..\..\..\lib\quic.h" />
2605 <ClInclude Include="..\..\..\..\lib\rand.h" />
2606 <ClInclude Include="..\..\..\..\lib\rename.h" />
2607 <ClInclude Include="..\..\..\..\lib\rtsp.h" />
2608 <ClInclude Include="..\..\..\..\lib\select.h" />
2609 <ClInclude Include="..\..\..\..\lib\sendf.h" />
2610 <ClInclude Include="..\..\..\..\lib\setopt.h" />
2611 <ClInclude Include="..\..\..\..\lib\setup-vms.h" />
2612 <ClInclude Include="..\..\..\..\lib\share.h" />
2613 <ClInclude Include="..\..\..\..\lib\sigpipe.h" />
2614 <ClInclude Include="..\..\..\..\lib\slist.h" />
2615 <ClInclude Include="..\..\..\..\lib\smb.h" />
2616 <ClInclude Include="..\..\..\..\lib\smtp.h" />
2617 <ClInclude Include="..\..\..\..\lib\sockaddr.h" />
2618 <ClInclude Include="..\..\..\..\lib\socketpair.h" />
2619 <ClInclude Include="..\..\..\..\lib\socks.h" />
2620 <ClInclude Include="..\..\..\..\lib\speedcheck.h" />
2621 <ClInclude Include="..\..\..\..\lib\splay.h" />
2622 <ClInclude Include="..\..\..\..\lib\strcase.h" />
2623 <ClInclude Include="..\..\..\..\lib\strdup.h" />
2624 <ClInclude Include="..\..\..\..\lib\strerror.h" />
2625 <ClInclude Include="..\..\..\..\lib\strtok.h" />
2626 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2627 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
2628 <ClInclude Include="..\..\..\..\lib\telnet.h" />
2629 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2630 <ClInclude Include="..\..\..\..\lib\timediff.h" />
2631 <ClInclude Include="..\..\..\..\lib\timeval.h" />
2632 <ClInclude Include="..\..\..\..\lib\transfer.h" />
2633 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
2634 <ClInclude Include="..\..\..\..\lib\urldata.h" />
2635 <ClInclude Include="..\..\..\..\lib\url.h" />
2636 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2637 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2638 <ClInclude Include="..\..\..\..\lib\wildcard.h" />
2639 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
2640 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
2641 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2642 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
2643 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
2644 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
2645 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
2646 <ClInclude Include="..\..\..\..\lib\vssh\ssh.h" />
2647 <ClInclude Include="..\..\..\..\lib\vtls\bearssl.h" />
2648 <ClInclude Include="..\..\..\..\lib\vtls\gskit.h" />
2649 <ClInclude Include="..\..\..\..\lib\vtls\gtls.h" />
2650 <ClInclude Include="..\..\..\..\lib\vtls\hostcheck.h" />
2651 <ClInclude Include="..\..\..\..\lib\vtls\keylog.h" />
2652 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls.h" />
2653 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls_threadlock.h" />
2654 <ClInclude Include="..\..\..\..\lib\vtls\nssg.h" />
2655 <ClInclude Include="..\..\..\..\lib\vtls\openssl.h" />
2656 <ClInclude Include="..\..\..\..\lib\vtls\rustls.h" />
2657 <ClInclude Include="..\..\..\..\lib\vtls\schannel.h" />
2658 <ClInclude Include="..\..\..\..\lib\vtls\sectransp.h" />
2659 <ClInclude Include="..\..\..\..\lib\vtls\vtls.h" />
2660 <ClInclude Include="..\..\..\..\lib\vtls\wolfssl.h" />
2661 <ClInclude Include="..\..\..\..\lib\vtls\x509asn1.h" />
2662 </ItemGroup>
2663 <ItemGroup>
2664 <ResourceCompile Include="..\..\..\..\lib\libcurl.rc" />
2665 </ItemGroup>
2666 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2667 <ImportGroup Label="ExtensionTargets">
2668 </ImportGroup>
2669 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{5228E9CE-A216-422F-A5E6-58E95E2DD71D}</ProjectGuid>
230 <RootNamespace>curl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
234 <ConfigurationType>Application</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v141</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
240 <ConfigurationType>Application</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v141</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>Application</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v141</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>Application</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v141</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>Application</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v141</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
264 <ConfigurationType>Application</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v141</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
270 <ConfigurationType>Application</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v141</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>Application</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v141</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
282 <ConfigurationType>Application</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v141</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
288 <ConfigurationType>Application</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v141</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
294 <ConfigurationType>Application</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v141</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>Application</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v141</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>Application</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v141</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>Application</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v141</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>Application</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v141</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>Application</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v141</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
330 <ConfigurationType>Application</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v141</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
336 <ConfigurationType>Application</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v141</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
342 <ConfigurationType>Application</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v141</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>Application</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v141</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
354 <ConfigurationType>Application</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v141</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>Application</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v141</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>Application</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v141</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>Application</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v141</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
378 <ConfigurationType>Application</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v141</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>Application</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v141</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
390 <ConfigurationType>Application</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v141</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>Application</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v141</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
402 <ConfigurationType>Application</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v141</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
408 <ConfigurationType>Application</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v141</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>Application</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v141</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>Application</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v141</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>Application</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v141</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
432 <ConfigurationType>Application</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v141</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
438 <ConfigurationType>Application</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v141</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>Application</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v141</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
450 <ConfigurationType>Application</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v141</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
456 <ConfigurationType>Application</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v141</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
462 <ConfigurationType>Application</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v141</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>Application</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v141</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>Application</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v141</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>Application</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v141</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>Application</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v141</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>Application</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v141</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
498 <ConfigurationType>Application</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v141</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
504 <ConfigurationType>Application</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v141</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
510 <ConfigurationType>Application</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v141</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>Application</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v141</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
522 <ConfigurationType>Application</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v141</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>Application</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v141</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>Application</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v141</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>Application</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v141</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
546 <ConfigurationType>Application</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v141</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>Application</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v141</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
558 <ConfigurationType>Application</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v141</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>Application</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v141</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)src\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)src\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)src\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)src\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)src\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
771 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">false</LinkIncremental>
772 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">false</LinkIncremental>
773 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
774 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
775 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)src\</IntDir>
776 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
777 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">false</LinkIncremental>
778 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">false</LinkIncremental>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)src\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
783 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
784 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
785 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)src\</IntDir>
788 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
789 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
790 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
791 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
792 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
793 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
794 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
795 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
796 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
797 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
798 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
799 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
800 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
801 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
802 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
803 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
804 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
805 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
806 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
807 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
808 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
809 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
812 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
813 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
814 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
815 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
816 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
817 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
818 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
819 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
820 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
821 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
824 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
825 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
826 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
827 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
828 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
829 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
830 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
831 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
832 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
835 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
836 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
837 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
838 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
840 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
841 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">false</LinkIncremental>
842 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
843 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
844 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">false</LinkIncremental>
845 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
847 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">false</LinkIncremental>
848 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
849 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
850 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">false</LinkIncremental>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
853 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
854 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
855 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
856 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
859 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
860 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
861 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
862 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
864 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
865 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
866 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
867 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
868 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">false</LinkIncremental>
869 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
871 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">false</LinkIncremental>
872 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
873 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
874 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">false</LinkIncremental>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
877 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
878 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
879 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
880 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
881 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
882 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
883 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
884 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
885 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
886 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
887 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
888 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
889 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
890 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
891 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
892 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
893 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
894 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
895 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
896 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
897 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
898 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
899 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
900 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.10\$(Configuration)\</OutDir>
901 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
902 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
903 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
904 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
905 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
906 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.10\$(Configuration)\</OutDir>
907 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
908 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
909 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">false</LinkIncremental>
910 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
911 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
912 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
913 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
914 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
915 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
916 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
917 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
918 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
919 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
920 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
921 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
922 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
923 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
924 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
925 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
926 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
927 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
928 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
929 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
930 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
931 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
932 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
933 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
934 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
935 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
936 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
937 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
938 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
939 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
940 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
941 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
942 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
943 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(ProjectName)</TargetName>
944 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(ProjectName)</TargetName>
945 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
946 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
947 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
948 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
949 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)</TargetName>
950 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(ProjectName)</TargetName>
951 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(ProjectName)</TargetName>
952 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(ProjectName)</TargetName>
953 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
954 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
955 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
956 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
957 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(ProjectName)</TargetName>
958 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(ProjectName)</TargetName>
959 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
960 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
961 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
962 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
963 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)</TargetName>
964 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(ProjectName)</TargetName>
965 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(ProjectName)</TargetName>
966 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(ProjectName)</TargetName>
967 </PropertyGroup>
968 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
969 <Midl>
970 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
971 <HeaderFileName>
972 </HeaderFileName>
973 </Midl>
974 <ClCompile>
975 <Optimization>MaxSpeed</Optimization>
976 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
977 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
978 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
979 <StringPooling>true</StringPooling>
980 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
981 <FunctionLevelLinking>true</FunctionLevelLinking>
982 <WarningLevel>Level4</WarningLevel>
983 </ClCompile>
984 <ResourceCompile>
985 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
986 <Culture>0x0409</Culture>
987 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
988 </ResourceCompile>
989 <Link>
990 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
991 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
992 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
993 <SubSystem>Console</SubSystem>
994 <TargetMachine>MachineX86</TargetMachine>
995 </Link>
996 </ItemDefinitionGroup>
997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
998 <Midl>
999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1000 <HeaderFileName>
1001 </HeaderFileName>
1002 </Midl>
1003 <ClCompile>
1004 <Optimization>MaxSpeed</Optimization>
1005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1008 <StringPooling>true</StringPooling>
1009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1010 <FunctionLevelLinking>true</FunctionLevelLinking>
1011 <WarningLevel>Level4</WarningLevel>
1012 </ClCompile>
1013 <ResourceCompile>
1014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1015 <Culture>0x0409</Culture>
1016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1017 </ResourceCompile>
1018 <Link>
1019 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1022 <SubSystem>Console</SubSystem>
1023 <TargetMachine>MachineX86</TargetMachine>
1024 <GenerateDebugInformation>true</GenerateDebugInformation>
1025 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1026 </Link>
1027 </ItemDefinitionGroup>
1028 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1029 <Midl>
1030 <TargetEnvironment>X64</TargetEnvironment>
1031 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1032 <HeaderFileName>
1033 </HeaderFileName>
1034 </Midl>
1035 <ClCompile>
1036 <Optimization>MaxSpeed</Optimization>
1037 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1038 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1039 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1040 <StringPooling>true</StringPooling>
1041 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1042 <FunctionLevelLinking>true</FunctionLevelLinking>
1043 <WarningLevel>Level4</WarningLevel>
1044 </ClCompile>
1045 <ResourceCompile>
1046 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1047 <Culture>0x0409</Culture>
1048 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1049 </ResourceCompile>
1050 <Link>
1051 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1052 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1053 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1054 <SubSystem>Console</SubSystem>
1055 <TargetMachine>MachineX64</TargetMachine>
1056 </Link>
1057 </ItemDefinitionGroup>
1058 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1059 <Midl>
1060 <TargetEnvironment>X64</TargetEnvironment>
1061 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1062 <HeaderFileName>
1063 </HeaderFileName>
1064 </Midl>
1065 <ClCompile>
1066 <Optimization>MaxSpeed</Optimization>
1067 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1068 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1069 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1070 <StringPooling>true</StringPooling>
1071 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1072 <FunctionLevelLinking>true</FunctionLevelLinking>
1073 <WarningLevel>Level4</WarningLevel>
1074 </ClCompile>
1075 <ResourceCompile>
1076 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1077 <Culture>0x0409</Culture>
1078 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1079 </ResourceCompile>
1080 <Link>
1081 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1082 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1083 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1084 <SubSystem>Console</SubSystem>
1085 <TargetMachine>MachineX64</TargetMachine>
1086 <GenerateDebugInformation>true</GenerateDebugInformation>
1087 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1088 </Link>
1089 </ItemDefinitionGroup>
1090 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1091 <Midl>
1092 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1093 <HeaderFileName>
1094 </HeaderFileName>
1095 </Midl>
1096 <ClCompile>
1097 <Optimization>MaxSpeed</Optimization>
1098 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1099 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1100 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1101 <StringPooling>true</StringPooling>
1102 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1103 <FunctionLevelLinking>true</FunctionLevelLinking>
1104 <WarningLevel>Level4</WarningLevel>
1105 </ClCompile>
1106 <ResourceCompile>
1107 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1108 <Culture>0x0409</Culture>
1109 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1110 </ResourceCompile>
1111 <Link>
1112 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1113 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1114 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1115 <SubSystem>Console</SubSystem>
1116 <TargetMachine>MachineX86</TargetMachine>
1117 </Link>
1118 </ItemDefinitionGroup>
1119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1120 <Midl>
1121 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1122 <HeaderFileName>
1123 </HeaderFileName>
1124 </Midl>
1125 <ClCompile>
1126 <Optimization>MaxSpeed</Optimization>
1127 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1128 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1129 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1130 <StringPooling>true</StringPooling>
1131 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1132 <FunctionLevelLinking>true</FunctionLevelLinking>
1133 <WarningLevel>Level4</WarningLevel>
1134 </ClCompile>
1135 <ResourceCompile>
1136 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1137 <Culture>0x0409</Culture>
1138 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1139 </ResourceCompile>
1140 <Link>
1141 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1142 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1143 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1144 <SubSystem>Console</SubSystem>
1145 <TargetMachine>MachineX86</TargetMachine>
1146 <GenerateDebugInformation>true</GenerateDebugInformation>
1147 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1148 </Link>
1149 </ItemDefinitionGroup>
1150 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1151 <Midl>
1152 <TargetEnvironment>X64</TargetEnvironment>
1153 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1154 <HeaderFileName>
1155 </HeaderFileName>
1156 </Midl>
1157 <ClCompile>
1158 <Optimization>MaxSpeed</Optimization>
1159 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1160 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1161 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1162 <StringPooling>true</StringPooling>
1163 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1164 <FunctionLevelLinking>true</FunctionLevelLinking>
1165 <WarningLevel>Level4</WarningLevel>
1166 </ClCompile>
1167 <ResourceCompile>
1168 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1169 <Culture>0x0409</Culture>
1170 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1171 </ResourceCompile>
1172 <Link>
1173 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1174 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1175 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1176 <SubSystem>Console</SubSystem>
1177 <TargetMachine>MachineX64</TargetMachine>
1178 </Link>
1179 </ItemDefinitionGroup>
1180 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1181 <Midl>
1182 <TargetEnvironment>X64</TargetEnvironment>
1183 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1184 <HeaderFileName>
1185 </HeaderFileName>
1186 </Midl>
1187 <ClCompile>
1188 <Optimization>MaxSpeed</Optimization>
1189 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1190 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1191 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1192 <StringPooling>true</StringPooling>
1193 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1194 <FunctionLevelLinking>true</FunctionLevelLinking>
1195 <WarningLevel>Level4</WarningLevel>
1196 </ClCompile>
1197 <ResourceCompile>
1198 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1199 <Culture>0x0409</Culture>
1200 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1201 </ResourceCompile>
1202 <Link>
1203 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1205 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1206 <SubSystem>Console</SubSystem>
1207 <TargetMachine>MachineX64</TargetMachine>
1208 <GenerateDebugInformation>true</GenerateDebugInformation>
1209 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1210 </Link>
1211 </ItemDefinitionGroup>
1212 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1213 <Midl>
1214 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1215 <HeaderFileName>
1216 </HeaderFileName>
1217 </Midl>
1218 <ClCompile>
1219 <Optimization>Disabled</Optimization>
1220 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1221 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1222 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1223 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1224 <WarningLevel>Level4</WarningLevel>
1225 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1226 </ClCompile>
1227 <ResourceCompile>
1228 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1229 <Culture>0x0409</Culture>
1230 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1231 </ResourceCompile>
1232 <Link>
1233 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1234 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1235 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1236 <GenerateDebugInformation>true</GenerateDebugInformation>
1237 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1238 <SubSystem>Console</SubSystem>
1239 <TargetMachine>MachineX86</TargetMachine>
1240 </Link>
1241 </ItemDefinitionGroup>
1242 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1243 <Midl>
1244 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1245 <HeaderFileName>
1246 </HeaderFileName>
1247 </Midl>
1248 <ClCompile>
1249 <Optimization>Disabled</Optimization>
1250 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1251 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1252 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1253 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1254 <WarningLevel>Level4</WarningLevel>
1255 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1256 </ClCompile>
1257 <ResourceCompile>
1258 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1259 <Culture>0x0409</Culture>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 </ResourceCompile>
1262 <Link>
1263 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1264 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1265 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1266 <GenerateDebugInformation>true</GenerateDebugInformation>
1267 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1268 <SubSystem>Console</SubSystem>
1269 <TargetMachine>MachineX86</TargetMachine>
1270 </Link>
1271 </ItemDefinitionGroup>
1272 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1273 <Midl>
1274 <TargetEnvironment>X64</TargetEnvironment>
1275 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1276 <HeaderFileName>
1277 </HeaderFileName>
1278 </Midl>
1279 <ClCompile>
1280 <Optimization>Disabled</Optimization>
1281 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1282 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1283 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1284 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1292 </ResourceCompile>
1293 <Link>
1294 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1295 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1296 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1297 <GenerateDebugInformation>true</GenerateDebugInformation>
1298 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1299 <SubSystem>Console</SubSystem>
1300 <TargetMachine>MachineX64</TargetMachine>
1301 </Link>
1302 </ItemDefinitionGroup>
1303 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1304 <Midl>
1305 <TargetEnvironment>X64</TargetEnvironment>
1306 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1307 <HeaderFileName>
1308 </HeaderFileName>
1309 </Midl>
1310 <ClCompile>
1311 <Optimization>Disabled</Optimization>
1312 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1313 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1314 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1315 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1316 <WarningLevel>Level4</WarningLevel>
1317 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1318 </ClCompile>
1319 <ResourceCompile>
1320 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1321 <Culture>0x0409</Culture>
1322 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1323 </ResourceCompile>
1324 <Link>
1325 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1326 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1327 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1328 <GenerateDebugInformation>true</GenerateDebugInformation>
1329 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1330 <SubSystem>Console</SubSystem>
1331 <TargetMachine>MachineX64</TargetMachine>
1332 </Link>
1333 </ItemDefinitionGroup>
1334 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
1335 <Midl>
1336 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1337 <HeaderFileName>
1338 </HeaderFileName>
1339 </Midl>
1340 <ClCompile>
1341 <Optimization>Disabled</Optimization>
1342 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1343 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1344 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1345 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1346 <WarningLevel>Level4</WarningLevel>
1347 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1348 </ClCompile>
1349 <ResourceCompile>
1350 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1351 <Culture>0x0409</Culture>
1352 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1353 </ResourceCompile>
1354 <Link>
1355 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1357 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1358 <GenerateDebugInformation>true</GenerateDebugInformation>
1359 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1360 <SubSystem>Console</SubSystem>
1361 <TargetMachine>MachineX86</TargetMachine>
1362 </Link>
1363 </ItemDefinitionGroup>
1364 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
1365 <Midl>
1366 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1367 <HeaderFileName>
1368 </HeaderFileName>
1369 </Midl>
1370 <ClCompile>
1371 <Optimization>Disabled</Optimization>
1372 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1373 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1374 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1375 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1376 <WarningLevel>Level4</WarningLevel>
1377 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1378 </ClCompile>
1379 <ResourceCompile>
1380 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1381 <Culture>0x0409</Culture>
1382 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1383 </ResourceCompile>
1384 <Link>
1385 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1386 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1387 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1388 <GenerateDebugInformation>true</GenerateDebugInformation>
1389 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1390 <SubSystem>Console</SubSystem>
1391 <TargetMachine>MachineX86</TargetMachine>
1392 </Link>
1393 </ItemDefinitionGroup>
1394 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
1395 <Midl>
1396 <TargetEnvironment>X64</TargetEnvironment>
1397 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1398 <HeaderFileName>
1399 </HeaderFileName>
1400 </Midl>
1401 <ClCompile>
1402 <Optimization>Disabled</Optimization>
1403 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1404 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1405 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1406 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1407 <WarningLevel>Level4</WarningLevel>
1408 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1409 </ClCompile>
1410 <ResourceCompile>
1411 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <Culture>0x0409</Culture>
1413 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1414 </ResourceCompile>
1415 <Link>
1416 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1417 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1418 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1419 <GenerateDebugInformation>true</GenerateDebugInformation>
1420 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1421 <SubSystem>Console</SubSystem>
1422 <TargetMachine>MachineX64</TargetMachine>
1423 </Link>
1424 </ItemDefinitionGroup>
1425 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1426 <Midl>
1427 <TargetEnvironment>X64</TargetEnvironment>
1428 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1429 <HeaderFileName>
1430 </HeaderFileName>
1431 </Midl>
1432 <ClCompile>
1433 <Optimization>Disabled</Optimization>
1434 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1435 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1436 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1437 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1438 <WarningLevel>Level4</WarningLevel>
1439 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1440 </ClCompile>
1441 <ResourceCompile>
1442 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1443 <Culture>0x0409</Culture>
1444 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1445 </ResourceCompile>
1446 <Link>
1447 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1449 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1450 <GenerateDebugInformation>true</GenerateDebugInformation>
1451 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1452 <SubSystem>Console</SubSystem>
1453 <TargetMachine>MachineX64</TargetMachine>
1454 </Link>
1455 </ItemDefinitionGroup>
1456 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1457 <Midl>
1458 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1459 <HeaderFileName>
1460 </HeaderFileName>
1461 </Midl>
1462 <ClCompile>
1463 <Optimization>Disabled</Optimization>
1464 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1465 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1466 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1467 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1468 <WarningLevel>Level4</WarningLevel>
1469 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1470 </ClCompile>
1471 <ResourceCompile>
1472 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1473 <Culture>0x0409</Culture>
1474 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1475 </ResourceCompile>
1476 <Link>
1477 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1478 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1479 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1480 <GenerateDebugInformation>true</GenerateDebugInformation>
1481 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1482 <SubSystem>Console</SubSystem>
1483 <TargetMachine>MachineX86</TargetMachine>
1484 </Link>
1485 </ItemDefinitionGroup>
1486 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1487 <Midl>
1488 <TargetEnvironment>X64</TargetEnvironment>
1489 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1490 <HeaderFileName>
1491 </HeaderFileName>
1492 </Midl>
1493 <ClCompile>
1494 <Optimization>Disabled</Optimization>
1495 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1496 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1497 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1498 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1499 <WarningLevel>Level4</WarningLevel>
1500 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1501 </ClCompile>
1502 <ResourceCompile>
1503 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1504 <Culture>0x0409</Culture>
1505 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1506 </ResourceCompile>
1507 <Link>
1508 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1509 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1510 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1511 <GenerateDebugInformation>true</GenerateDebugInformation>
1512 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1513 <SubSystem>Console</SubSystem>
1514 <TargetMachine>MachineX64</TargetMachine>
1515 </Link>
1516 </ItemDefinitionGroup>
1517 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1518 <Midl>
1519 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1520 <HeaderFileName>
1521 </HeaderFileName>
1522 </Midl>
1523 <ClCompile>
1524 <Optimization>Disabled</Optimization>
1525 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1526 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1527 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1528 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1529 <WarningLevel>Level4</WarningLevel>
1530 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1531 </ClCompile>
1532 <ResourceCompile>
1533 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1534 <Culture>0x0409</Culture>
1535 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1536 </ResourceCompile>
1537 <Link>
1538 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1539 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1540 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1541 <GenerateDebugInformation>true</GenerateDebugInformation>
1542 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1543 <SubSystem>Console</SubSystem>
1544 <TargetMachine>MachineX86</TargetMachine>
1545 </Link>
1546 </ItemDefinitionGroup>
1547 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1548 <Midl>
1549 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1550 <HeaderFileName>
1551 </HeaderFileName>
1552 </Midl>
1553 <ClCompile>
1554 <Optimization>Disabled</Optimization>
1555 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1556 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1557 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1558 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1559 <WarningLevel>Level4</WarningLevel>
1560 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1561 </ClCompile>
1562 <ResourceCompile>
1563 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1564 <Culture>0x0409</Culture>
1565 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1566 </ResourceCompile>
1567 <Link>
1568 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1569 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1570 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1571 <GenerateDebugInformation>true</GenerateDebugInformation>
1572 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1573 <SubSystem>Console</SubSystem>
1574 <TargetMachine>MachineX86</TargetMachine>
1575 </Link>
1576 </ItemDefinitionGroup>
1577 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1578 <Midl>
1579 <TargetEnvironment>X64</TargetEnvironment>
1580 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1581 <HeaderFileName>
1582 </HeaderFileName>
1583 </Midl>
1584 <ClCompile>
1585 <Optimization>Disabled</Optimization>
1586 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1587 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1588 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1589 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1590 <WarningLevel>Level4</WarningLevel>
1591 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1592 </ClCompile>
1593 <ResourceCompile>
1594 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1595 <Culture>0x0409</Culture>
1596 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1597 </ResourceCompile>
1598 <Link>
1599 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1600 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1601 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1602 <GenerateDebugInformation>true</GenerateDebugInformation>
1603 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1604 <SubSystem>Console</SubSystem>
1605 <TargetMachine>MachineX64</TargetMachine>
1606 </Link>
1607 </ItemDefinitionGroup>
1608 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1609 <Midl>
1610 <TargetEnvironment>X64</TargetEnvironment>
1611 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1612 <HeaderFileName>
1613 </HeaderFileName>
1614 </Midl>
1615 <ClCompile>
1616 <Optimization>Disabled</Optimization>
1617 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1618 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1619 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1620 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1621 <WarningLevel>Level4</WarningLevel>
1622 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1623 </ClCompile>
1624 <ResourceCompile>
1625 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1626 <Culture>0x0409</Culture>
1627 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1628 </ResourceCompile>
1629 <Link>
1630 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1631 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1632 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1633 <GenerateDebugInformation>true</GenerateDebugInformation>
1634 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1635 <SubSystem>Console</SubSystem>
1636 <TargetMachine>MachineX64</TargetMachine>
1637 </Link>
1638 </ItemDefinitionGroup>
1639 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1640 <Midl>
1641 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1642 <HeaderFileName>
1643 </HeaderFileName>
1644 </Midl>
1645 <ClCompile>
1646 <Optimization>MaxSpeed</Optimization>
1647 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1648 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1649 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1650 <StringPooling>true</StringPooling>
1651 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1652 <FunctionLevelLinking>true</FunctionLevelLinking>
1653 <WarningLevel>Level4</WarningLevel>
1654 </ClCompile>
1655 <ResourceCompile>
1656 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1657 <Culture>0x0409</Culture>
1658 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1659 </ResourceCompile>
1660 <Link>
1661 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1662 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1663 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1664 <SubSystem>Console</SubSystem>
1665 <TargetMachine>MachineX86</TargetMachine>
1666 </Link>
1667 </ItemDefinitionGroup>
1668 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1669 <Midl>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1689 </ResourceCompile>
1690 <Link>
1691 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1692 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1693 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1694 <SubSystem>Console</SubSystem>
1695 <TargetMachine>MachineX64</TargetMachine>
1696 </Link>
1697 </ItemDefinitionGroup>
1698 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1699 <Midl>
1700 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1701 <HeaderFileName>
1702 </HeaderFileName>
1703 </Midl>
1704 <ClCompile>
1705 <Optimization>MaxSpeed</Optimization>
1706 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1707 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1708 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1709 <StringPooling>true</StringPooling>
1710 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1711 <FunctionLevelLinking>true</FunctionLevelLinking>
1712 <WarningLevel>Level4</WarningLevel>
1713 </ClCompile>
1714 <ResourceCompile>
1715 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1716 <Culture>0x0409</Culture>
1717 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1718 </ResourceCompile>
1719 <Link>
1720 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1721 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1722 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1723 <SubSystem>Console</SubSystem>
1724 <TargetMachine>MachineX86</TargetMachine>
1725 </Link>
1726 </ItemDefinitionGroup>
1727 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1728 <Midl>
1729 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1730 <HeaderFileName>
1731 </HeaderFileName>
1732 </Midl>
1733 <ClCompile>
1734 <Optimization>MaxSpeed</Optimization>
1735 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1736 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1737 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1738 <StringPooling>true</StringPooling>
1739 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1740 <FunctionLevelLinking>true</FunctionLevelLinking>
1741 <WarningLevel>Level4</WarningLevel>
1742 </ClCompile>
1743 <ResourceCompile>
1744 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1745 <Culture>0x0409</Culture>
1746 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1747 </ResourceCompile>
1748 <Link>
1749 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1750 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1751 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1752 <SubSystem>Console</SubSystem>
1753 <TargetMachine>MachineX86</TargetMachine>
1754 </Link>
1755 </ItemDefinitionGroup>
1756 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1757 <Midl>
1758 <TargetEnvironment>X64</TargetEnvironment>
1759 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1760 <HeaderFileName>
1761 </HeaderFileName>
1762 </Midl>
1763 <ClCompile>
1764 <Optimization>MaxSpeed</Optimization>
1765 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1766 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1767 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1768 <StringPooling>true</StringPooling>
1769 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1770 <FunctionLevelLinking>true</FunctionLevelLinking>
1771 <WarningLevel>Level4</WarningLevel>
1772 </ClCompile>
1773 <ResourceCompile>
1774 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1775 <Culture>0x0409</Culture>
1776 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1777 </ResourceCompile>
1778 <Link>
1779 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1780 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1781 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1782 <SubSystem>Console</SubSystem>
1783 <TargetMachine>MachineX64</TargetMachine>
1784 </Link>
1785 </ItemDefinitionGroup>
1786 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1787 <Midl>
1788 <TargetEnvironment>X64</TargetEnvironment>
1789 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1790 <HeaderFileName>
1791 </HeaderFileName>
1792 </Midl>
1793 <ClCompile>
1794 <Optimization>MaxSpeed</Optimization>
1795 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1796 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1797 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1798 <StringPooling>true</StringPooling>
1799 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1800 <FunctionLevelLinking>true</FunctionLevelLinking>
1801 <WarningLevel>Level4</WarningLevel>
1802 </ClCompile>
1803 <ResourceCompile>
1804 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1805 <Culture>0x0409</Culture>
1806 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1807 </ResourceCompile>
1808 <Link>
1809 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1810 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1811 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1812 <SubSystem>Console</SubSystem>
1813 <TargetMachine>MachineX64</TargetMachine>
1814 </Link>
1815 </ItemDefinitionGroup>
1816 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1817 <Midl>
1818 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1819 <HeaderFileName>
1820 </HeaderFileName>
1821 </Midl>
1822 <ClCompile>
1823 <Optimization>Disabled</Optimization>
1824 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1825 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1826 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1827 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1828 <WarningLevel>Level4</WarningLevel>
1829 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1830 </ClCompile>
1831 <ResourceCompile>
1832 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1833 <Culture>0x0409</Culture>
1834 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1835 </ResourceCompile>
1836 <Link>
1837 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1838 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1839 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1840 <GenerateDebugInformation>true</GenerateDebugInformation>
1841 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1842 <SubSystem>Console</SubSystem>
1843 <TargetMachine>MachineX86</TargetMachine>
1844 </Link>
1845 </ItemDefinitionGroup>
1846 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1847 <Midl>
1848 <TargetEnvironment>X64</TargetEnvironment>
1849 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1850 <HeaderFileName>
1851 </HeaderFileName>
1852 </Midl>
1853 <ClCompile>
1854 <Optimization>Disabled</Optimization>
1855 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1856 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1857 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1858 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1859 <WarningLevel>Level4</WarningLevel>
1860 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1861 </ClCompile>
1862 <ResourceCompile>
1863 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1864 <Culture>0x0409</Culture>
1865 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1866 </ResourceCompile>
1867 <Link>
1868 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1869 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1870 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1871 <GenerateDebugInformation>true</GenerateDebugInformation>
1872 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1873 <SubSystem>Console</SubSystem>
1874 <TargetMachine>MachineX64</TargetMachine>
1875 </Link>
1876 </ItemDefinitionGroup>
1877 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1878 <Midl>
1879 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1880 <HeaderFileName>
1881 </HeaderFileName>
1882 </Midl>
1883 <ClCompile>
1884 <Optimization>MaxSpeed</Optimization>
1885 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1886 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1887 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1888 <StringPooling>true</StringPooling>
1889 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1890 <FunctionLevelLinking>true</FunctionLevelLinking>
1891 <WarningLevel>Level4</WarningLevel>
1892 </ClCompile>
1893 <ResourceCompile>
1894 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1895 <Culture>0x0409</Culture>
1896 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1897 </ResourceCompile>
1898 <Link>
1899 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1900 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1901 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1902 <SubSystem>Console</SubSystem>
1903 <TargetMachine>MachineX86</TargetMachine>
1904 </Link>
1905 </ItemDefinitionGroup>
1906 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1907 <Midl>
1908 <TargetEnvironment>X64</TargetEnvironment>
1909 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1910 <HeaderFileName>
1911 </HeaderFileName>
1912 </Midl>
1913 <ClCompile>
1914 <Optimization>MaxSpeed</Optimization>
1915 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1916 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1917 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1918 <StringPooling>true</StringPooling>
1919 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1920 <FunctionLevelLinking>true</FunctionLevelLinking>
1921 <WarningLevel>Level4</WarningLevel>
1922 </ClCompile>
1923 <ResourceCompile>
1924 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1925 <Culture>0x0409</Culture>
1926 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1927 </ResourceCompile>
1928 <Link>
1929 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1930 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1931 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1932 <SubSystem>Console</SubSystem>
1933 <TargetMachine>MachineX64</TargetMachine>
1934 </Link>
1935 </ItemDefinitionGroup>
1936 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
1937 <Midl>
1938 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1939 <HeaderFileName>
1940 </HeaderFileName>
1941 </Midl>
1942 <ClCompile>
1943 <Optimization>Disabled</Optimization>
1944 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1945 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1946 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1947 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1948 <WarningLevel>Level4</WarningLevel>
1949 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1950 </ClCompile>
1951 <ResourceCompile>
1952 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1953 <Culture>0x0409</Culture>
1954 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1955 </ResourceCompile>
1956 <Link>
1957 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1958 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1959 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1960 <GenerateDebugInformation>true</GenerateDebugInformation>
1961 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1962 <SubSystem>Console</SubSystem>
1963 <TargetMachine>MachineX86</TargetMachine>
1964 </Link>
1965 </ItemDefinitionGroup>
1966 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
1967 <Midl>
1968 <TargetEnvironment>X64</TargetEnvironment>
1969 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1970 <HeaderFileName>
1971 </HeaderFileName>
1972 </Midl>
1973 <ClCompile>
1974 <Optimization>Disabled</Optimization>
1975 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1976 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1977 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1978 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1979 <WarningLevel>Level4</WarningLevel>
1980 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1981 </ClCompile>
1982 <ResourceCompile>
1983 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <Culture>0x0409</Culture>
1985 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1986 </ResourceCompile>
1987 <Link>
1988 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1989 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1990 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1991 <GenerateDebugInformation>true</GenerateDebugInformation>
1992 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1993 <SubSystem>Console</SubSystem>
1994 <TargetMachine>MachineX64</TargetMachine>
1995 </Link>
1996 </ItemDefinitionGroup>
1997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
1998 <Midl>
1999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2000 <HeaderFileName>
2001 </HeaderFileName>
2002 </Midl>
2003 <ClCompile>
2004 <Optimization>MaxSpeed</Optimization>
2005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2008 <StringPooling>true</StringPooling>
2009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2010 <FunctionLevelLinking>true</FunctionLevelLinking>
2011 <WarningLevel>Level4</WarningLevel>
2012 </ClCompile>
2013 <ResourceCompile>
2014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2015 <Culture>0x0409</Culture>
2016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2017 </ResourceCompile>
2018 <Link>
2019 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2022 <SubSystem>Console</SubSystem>
2023 <TargetMachine>MachineX86</TargetMachine>
2024 </Link>
2025 </ItemDefinitionGroup>
2026 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2027 <Midl>
2028 <TargetEnvironment>X64</TargetEnvironment>
2029 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2030 <HeaderFileName>
2031 </HeaderFileName>
2032 </Midl>
2033 <ClCompile>
2034 <Optimization>MaxSpeed</Optimization>
2035 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2036 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2037 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2038 <StringPooling>true</StringPooling>
2039 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2040 <FunctionLevelLinking>true</FunctionLevelLinking>
2041 <WarningLevel>Level4</WarningLevel>
2042 </ClCompile>
2043 <ResourceCompile>
2044 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2045 <Culture>0x0409</Culture>
2046 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2047 </ResourceCompile>
2048 <Link>
2049 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2050 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2051 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2052 <SubSystem>Console</SubSystem>
2053 <TargetMachine>MachineX64</TargetMachine>
2054 </Link>
2055 </ItemDefinitionGroup>
2056 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2057 <Midl>
2058 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2059 <HeaderFileName>
2060 </HeaderFileName>
2061 </Midl>
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2075 </ResourceCompile>
2076 <Link>
2077 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2078 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2079 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\LIB Debug;..\..\..\..\..\libssh2\build\Win32\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2080 <GenerateDebugInformation>true</GenerateDebugInformation>
2081 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2082 <SubSystem>Console</SubSystem>
2083 <TargetMachine>MachineX86</TargetMachine>
2084 </Link>
2085 </ItemDefinitionGroup>
2086 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2087 <Midl>
2088 <TargetEnvironment>X64</TargetEnvironment>
2089 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2090 <HeaderFileName>
2091 </HeaderFileName>
2092 </Midl>
2093 <ClCompile>
2094 <Optimization>Disabled</Optimization>
2095 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2096 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2097 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2098 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2099 <WarningLevel>Level4</WarningLevel>
2100 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2101 </ClCompile>
2102 <ResourceCompile>
2103 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2104 <Culture>0x0409</Culture>
2105 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2106 </ResourceCompile>
2107 <Link>
2108 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2109 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2110 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\LIB Debug;..\..\..\..\..\libssh2\build\Win64\VC14.10\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2111 <GenerateDebugInformation>true</GenerateDebugInformation>
2112 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2113 <SubSystem>Console</SubSystem>
2114 <TargetMachine>MachineX64</TargetMachine>
2115 </Link>
2116 </ItemDefinitionGroup>
2117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2118 <Midl>
2119 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2120 <HeaderFileName>
2121 </HeaderFileName>
2122 </Midl>
2123 <ClCompile>
2124 <Optimization>MaxSpeed</Optimization>
2125 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2126 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2127 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2128 <StringPooling>true</StringPooling>
2129 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2130 <FunctionLevelLinking>true</FunctionLevelLinking>
2131 <WarningLevel>Level4</WarningLevel>
2132 </ClCompile>
2133 <ResourceCompile>
2134 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2135 <Culture>0x0409</Culture>
2136 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2137 </ResourceCompile>
2138 <Link>
2139 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2140 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2141 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\LIB Release;..\..\..\..\..\libssh2\build\Win32\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2142 <SubSystem>Console</SubSystem>
2143 <TargetMachine>MachineX86</TargetMachine>
2144 </Link>
2145 </ItemDefinitionGroup>
2146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2147 <Midl>
2148 <TargetEnvironment>X64</TargetEnvironment>
2149 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2150 <HeaderFileName>
2151 </HeaderFileName>
2152 </Midl>
2153 <ClCompile>
2154 <Optimization>MaxSpeed</Optimization>
2155 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2156 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2157 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <StringPooling>true</StringPooling>
2159 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2160 <FunctionLevelLinking>true</FunctionLevelLinking>
2161 <WarningLevel>Level4</WarningLevel>
2162 </ClCompile>
2163 <ResourceCompile>
2164 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2165 <Culture>0x0409</Culture>
2166 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2167 </ResourceCompile>
2168 <Link>
2169 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2170 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2171 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\LIB Release;..\..\..\..\..\libssh2\build\Win64\VC14.10\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2172 <SubSystem>Console</SubSystem>
2173 <TargetMachine>MachineX64</TargetMachine>
2174 </Link>
2175 </ItemDefinitionGroup>
2176 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
2177 <Midl>
2178 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2179 <HeaderFileName>
2180 </HeaderFileName>
2181 </Midl>
2182 <ClCompile>
2183 <Optimization>Disabled</Optimization>
2184 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2185 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2186 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2187 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2188 <WarningLevel>Level4</WarningLevel>
2189 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2190 </ClCompile>
2191 <ResourceCompile>
2192 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2193 <Culture>0x0409</Culture>
2194 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2195 </ResourceCompile>
2196 <Link>
2197 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2198 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2199 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2200 <GenerateDebugInformation>true</GenerateDebugInformation>
2201 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2202 <SubSystem>Console</SubSystem>
2203 <TargetMachine>MachineX86</TargetMachine>
2204 </Link>
2205 </ItemDefinitionGroup>
2206 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
2207 <Midl>
2208 <TargetEnvironment>X64</TargetEnvironment>
2209 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2210 <HeaderFileName>
2211 </HeaderFileName>
2212 </Midl>
2213 <ClCompile>
2214 <Optimization>Disabled</Optimization>
2215 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2216 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2217 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2218 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2219 <WarningLevel>Level4</WarningLevel>
2220 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2221 </ClCompile>
2222 <ResourceCompile>
2223 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2224 <Culture>0x0409</Culture>
2225 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2226 </ResourceCompile>
2227 <Link>
2228 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2230 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2231 <GenerateDebugInformation>true</GenerateDebugInformation>
2232 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2233 <SubSystem>Console</SubSystem>
2234 <TargetMachine>MachineX64</TargetMachine>
2235 </Link>
2236 </ItemDefinitionGroup>
2237 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2238 <Midl>
2239 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2240 <HeaderFileName>
2241 </HeaderFileName>
2242 </Midl>
2243 <ClCompile>
2244 <Optimization>MaxSpeed</Optimization>
2245 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2246 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2247 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2248 <StringPooling>true</StringPooling>
2249 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2250 <FunctionLevelLinking>true</FunctionLevelLinking>
2251 <WarningLevel>Level4</WarningLevel>
2252 </ClCompile>
2253 <ResourceCompile>
2254 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2255 <Culture>0x0409</Culture>
2256 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2257 </ResourceCompile>
2258 <Link>
2259 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2260 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2261 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2262 <SubSystem>Console</SubSystem>
2263 <TargetMachine>MachineX86</TargetMachine>
2264 </Link>
2265 </ItemDefinitionGroup>
2266 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2267 <Midl>
2268 <TargetEnvironment>X64</TargetEnvironment>
2269 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2270 <HeaderFileName>
2271 </HeaderFileName>
2272 </Midl>
2273 <ClCompile>
2274 <Optimization>MaxSpeed</Optimization>
2275 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2276 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2277 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2278 <StringPooling>true</StringPooling>
2279 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2280 <FunctionLevelLinking>true</FunctionLevelLinking>
2281 <WarningLevel>Level4</WarningLevel>
2282 </ClCompile>
2283 <ResourceCompile>
2284 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2285 <Culture>0x0409</Culture>
2286 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2287 </ResourceCompile>
2288 <Link>
2289 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2292 <SubSystem>Console</SubSystem>
2293 <TargetMachine>MachineX64</TargetMachine>
2294 </Link>
2295 </ItemDefinitionGroup>
2296 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
2297 <Midl>
2298 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2299 <HeaderFileName>
2300 </HeaderFileName>
2301 </Midl>
2302 <ClCompile>
2303 <Optimization>Disabled</Optimization>
2304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2305 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2306 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2307 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2308 <WarningLevel>Level4</WarningLevel>
2309 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2310 </ClCompile>
2311 <ResourceCompile>
2312 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2313 <Culture>0x0409</Culture>
2314 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2315 </ResourceCompile>
2316 <Link>
2317 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2318 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2319 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2320 <GenerateDebugInformation>true</GenerateDebugInformation>
2321 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2322 <SubSystem>Console</SubSystem>
2323 <TargetMachine>MachineX86</TargetMachine>
2324 </Link>
2325 </ItemDefinitionGroup>
2326 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
2327 <Midl>
2328 <TargetEnvironment>X64</TargetEnvironment>
2329 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2330 <HeaderFileName>
2331 </HeaderFileName>
2332 </Midl>
2333 <ClCompile>
2334 <Optimization>Disabled</Optimization>
2335 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2336 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2337 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2338 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2339 <WarningLevel>Level4</WarningLevel>
2340 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2341 </ClCompile>
2342 <ResourceCompile>
2343 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2344 <Culture>0x0409</Culture>
2345 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2346 </ResourceCompile>
2347 <Link>
2348 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2349 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2350 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC14.10\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2351 <GenerateDebugInformation>true</GenerateDebugInformation>
2352 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2353 <SubSystem>Console</SubSystem>
2354 <TargetMachine>MachineX64</TargetMachine>
2355 </Link>
2356 </ItemDefinitionGroup>
2357 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2358 <Midl>
2359 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2360 <HeaderFileName>
2361 </HeaderFileName>
2362 </Midl>
2363 <ClCompile>
2364 <Optimization>MaxSpeed</Optimization>
2365 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2366 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2367 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2368 <StringPooling>true</StringPooling>
2369 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2370 <FunctionLevelLinking>true</FunctionLevelLinking>
2371 <WarningLevel>Level4</WarningLevel>
2372 </ClCompile>
2373 <ResourceCompile>
2374 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2375 <Culture>0x0409</Culture>
2376 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2377 </ResourceCompile>
2378 <Link>
2379 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2380 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2381 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.10\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2382 <SubSystem>Console</SubSystem>
2383 <TargetMachine>MachineX86</TargetMachine>
2384 </Link>
2385 </ItemDefinitionGroup>
2386 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2387 <Midl>
2388 <TargetEnvironment>X64</TargetEnvironment>
2389 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2390 <HeaderFileName>
2391 </HeaderFileName>
2392 </Midl>
2393 <ClCompile>
2394 <Optimization>MaxSpeed</Optimization>
2395 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2396 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2397 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2398 <StringPooling>true</StringPooling>
2399 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2400 <FunctionLevelLinking>true</FunctionLevelLinking>
2401 <WarningLevel>Level4</WarningLevel>
2402 </ClCompile>
2403 <ResourceCompile>
2404 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2405 <Culture>0x0409</Culture>
2406 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2407 </ResourceCompile>
2408 <Link>
2409 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libssh2.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2410 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2411 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.10\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC14.10\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2412 <SubSystem>Console</SubSystem>
2413 <TargetMachine>MachineX64</TargetMachine>
2414 </Link>
2415 </ItemDefinitionGroup>
2416 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
2417 <Midl>
2418 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2419 <HeaderFileName>
2420 </HeaderFileName>
2421 </Midl>
2422 <ClCompile>
2423 <Optimization>Disabled</Optimization>
2424 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2425 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2426 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2427 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2428 <WarningLevel>Level4</WarningLevel>
2429 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2430 </ClCompile>
2431 <ResourceCompile>
2432 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2433 <Culture>0x0409</Culture>
2434 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2435 </ResourceCompile>
2436 <Link>
2437 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2438 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2439 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2440 <GenerateDebugInformation>true</GenerateDebugInformation>
2441 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2442 <SubSystem>Console</SubSystem>
2443 <TargetMachine>MachineX86</TargetMachine>
2444 </Link>
2445 </ItemDefinitionGroup>
2446 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
2447 <Midl>
2448 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2449 <HeaderFileName>
2450 </HeaderFileName>
2451 </Midl>
2452 <ClCompile>
2453 <Optimization>Disabled</Optimization>
2454 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2455 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2456 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2457 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2458 <WarningLevel>Level4</WarningLevel>
2459 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2460 </ClCompile>
2461 <ResourceCompile>
2462 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2463 <Culture>0x0409</Culture>
2464 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2465 </ResourceCompile>
2466 <Link>
2467 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2468 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2469 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2470 <GenerateDebugInformation>true</GenerateDebugInformation>
2471 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2472 <SubSystem>Console</SubSystem>
2473 <TargetMachine>MachineX86</TargetMachine>
2474 </Link>
2475 </ItemDefinitionGroup>
2476 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
2477 <Midl>
2478 <TargetEnvironment>X64</TargetEnvironment>
2479 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2480 <HeaderFileName>
2481 </HeaderFileName>
2482 </Midl>
2483 <ClCompile>
2484 <Optimization>Disabled</Optimization>
2485 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2486 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2487 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2488 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2489 <WarningLevel>Level4</WarningLevel>
2490 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2491 </ClCompile>
2492 <ResourceCompile>
2493 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2494 <Culture>0x0409</Culture>
2495 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2496 </ResourceCompile>
2497 <Link>
2498 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2499 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2500 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2501 <GenerateDebugInformation>true</GenerateDebugInformation>
2502 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2503 <SubSystem>Console</SubSystem>
2504 <TargetMachine>MachineX64</TargetMachine>
2505 </Link>
2506 </ItemDefinitionGroup>
2507 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
2508 <Midl>
2509 <TargetEnvironment>X64</TargetEnvironment>
2510 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2511 <HeaderFileName>
2512 </HeaderFileName>
2513 </Midl>
2514 <ClCompile>
2515 <Optimization>Disabled</Optimization>
2516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2517 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2520 <WarningLevel>Level4</WarningLevel>
2521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2522 </ClCompile>
2523 <ResourceCompile>
2524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2525 <Culture>0x0409</Culture>
2526 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2527 </ResourceCompile>
2528 <Link>
2529 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2530 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2531 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2532 <GenerateDebugInformation>true</GenerateDebugInformation>
2533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2534 <SubSystem>Console</SubSystem>
2535 <TargetMachine>MachineX64</TargetMachine>
2536 </Link>
2537 </ItemDefinitionGroup>
2538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2539 <Midl>
2540 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2541 <HeaderFileName>
2542 </HeaderFileName>
2543 </Midl>
2544 <ClCompile>
2545 <Optimization>MaxSpeed</Optimization>
2546 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2547 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2548 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2549 <StringPooling>true</StringPooling>
2550 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2551 <FunctionLevelLinking>true</FunctionLevelLinking>
2552 <WarningLevel>Level4</WarningLevel>
2553 </ClCompile>
2554 <ResourceCompile>
2555 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2556 <Culture>0x0409</Culture>
2557 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2558 </ResourceCompile>
2559 <Link>
2560 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2561 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2562 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2563 <SubSystem>Console</SubSystem>
2564 <TargetMachine>MachineX86</TargetMachine>
2565 </Link>
2566 </ItemDefinitionGroup>
2567 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2568 <Midl>
2569 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2570 <HeaderFileName>
2571 </HeaderFileName>
2572 </Midl>
2573 <ClCompile>
2574 <Optimization>MaxSpeed</Optimization>
2575 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2576 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2577 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2578 <StringPooling>true</StringPooling>
2579 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2580 <FunctionLevelLinking>true</FunctionLevelLinking>
2581 <WarningLevel>Level4</WarningLevel>
2582 </ClCompile>
2583 <ResourceCompile>
2584 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2585 <Culture>0x0409</Culture>
2586 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2587 </ResourceCompile>
2588 <Link>
2589 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2590 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2591 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2592 <SubSystem>Console</SubSystem>
2593 <TargetMachine>MachineX86</TargetMachine>
2594 </Link>
2595 </ItemDefinitionGroup>
2596 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2597 <Midl>
2598 <TargetEnvironment>X64</TargetEnvironment>
2599 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2600 <HeaderFileName>
2601 </HeaderFileName>
2602 </Midl>
2603 <ClCompile>
2604 <Optimization>MaxSpeed</Optimization>
2605 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2606 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2607 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2608 <StringPooling>true</StringPooling>
2609 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2610 <FunctionLevelLinking>true</FunctionLevelLinking>
2611 <WarningLevel>Level4</WarningLevel>
2612 </ClCompile>
2613 <ResourceCompile>
2614 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2615 <Culture>0x0409</Culture>
2616 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2617 </ResourceCompile>
2618 <Link>
2619 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2620 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2621 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2622 <SubSystem>Console</SubSystem>
2623 <TargetMachine>MachineX64</TargetMachine>
2624 </Link>
2625 </ItemDefinitionGroup>
2626 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2627 <Midl>
2628 <TargetEnvironment>X64</TargetEnvironment>
2629 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2630 <HeaderFileName>
2631 </HeaderFileName>
2632 </Midl>
2633 <ClCompile>
2634 <Optimization>MaxSpeed</Optimization>
2635 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2636 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2637 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2638 <StringPooling>true</StringPooling>
2639 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2640 <FunctionLevelLinking>true</FunctionLevelLinking>
2641 <WarningLevel>Level4</WarningLevel>
2642 </ClCompile>
2643 <ResourceCompile>
2644 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2645 <Culture>0x0409</Culture>
2646 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2647 </ResourceCompile>
2648 <Link>
2649 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2650 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2651 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.10\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2652 <SubSystem>Console</SubSystem>
2653 <TargetMachine>MachineX64</TargetMachine>
2654 </Link>
2655 </ItemDefinitionGroup>
2656 <ItemGroup>
2657 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2658 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2659 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2660 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2661 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2662 <ClCompile Include="..\..\..\..\lib\timediff.c" />
2663 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2664 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2665 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
2666 <ClCompile Include="..\..\..\..\src\tool_binmode.c" />
2667 <ClCompile Include="..\..\..\..\src\tool_bname.c" />
2668 <ClCompile Include="..\..\..\..\src\tool_cb_dbg.c" />
2669 <ClCompile Include="..\..\..\..\src\tool_cb_hdr.c" />
2670 <ClCompile Include="..\..\..\..\src\tool_cb_prg.c" />
2671 <ClCompile Include="..\..\..\..\src\tool_cb_rea.c" />
2672 <ClCompile Include="..\..\..\..\src\tool_cb_see.c" />
2673 <ClCompile Include="..\..\..\..\src\tool_cb_wrt.c" />
2674 <ClCompile Include="..\..\..\..\src\tool_cfgable.c" />
2675 <ClCompile Include="..\..\..\..\src\tool_dirhie.c" />
2676 <ClCompile Include="..\..\..\..\src\tool_doswin.c" />
2677 <ClCompile Include="..\..\..\..\src\tool_easysrc.c" />
2678 <ClCompile Include="..\..\..\..\src\tool_filetime.c" />
2679 <ClCompile Include="..\..\..\..\src\tool_findfile.c" />
2680 <ClCompile Include="..\..\..\..\src\tool_formparse.c" />
2681 <ClCompile Include="..\..\..\..\src\tool_getparam.c" />
2682 <ClCompile Include="..\..\..\..\src\tool_getpass.c" />
2683 <ClCompile Include="..\..\..\..\src\tool_help.c" />
2684 <ClCompile Include="..\..\..\..\src\tool_helpers.c" />
2685 <ClCompile Include="..\..\..\..\src\tool_hugehelp.c" />
2686 <ClCompile Include="..\..\..\..\src\tool_libinfo.c" />
2687 <ClCompile Include="..\..\..\..\src\tool_listhelp.c" />
2688 <ClCompile Include="..\..\..\..\src\tool_main.c" />
2689 <ClCompile Include="..\..\..\..\src\tool_msgs.c" />
2690 <ClCompile Include="..\..\..\..\src\tool_operate.c" />
2691 <ClCompile Include="..\..\..\..\src\tool_operhlp.c" />
2692 <ClCompile Include="..\..\..\..\src\tool_panykey.c" />
2693 <ClCompile Include="..\..\..\..\src\tool_paramhlp.c" />
2694 <ClCompile Include="..\..\..\..\src\tool_parsecfg.c" />
2695 <ClCompile Include="..\..\..\..\src\tool_progress.c" />
2696 <ClCompile Include="..\..\..\..\src\tool_setopt.c" />
2697 <ClCompile Include="..\..\..\..\src\tool_sleep.c" />
2698 <ClCompile Include="..\..\..\..\src\tool_strdup.c" />
2699 <ClCompile Include="..\..\..\..\src\tool_urlglob.c" />
2700 <ClCompile Include="..\..\..\..\src\tool_util.c" />
2701 <ClCompile Include="..\..\..\..\src\tool_vms.c" />
2702 <ClCompile Include="..\..\..\..\src\tool_writeout.c" />
2703 <ClCompile Include="..\..\..\..\src\tool_writeout_json.c" />
2704 <ClCompile Include="..\..\..\..\src\tool_xattr.c" />
2705 </ItemGroup>
2706 <ItemGroup>
2707 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2708 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2709 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2710 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2711 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2712 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2713 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2714 <ClInclude Include="..\..\..\..\lib\timediff.h" />
2715 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2716 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2717 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
2718 <ClInclude Include="..\..\..\..\src\tool_binmode.h" />
2719 <ClInclude Include="..\..\..\..\src\tool_bname.h" />
2720 <ClInclude Include="..\..\..\..\src\tool_cb_dbg.h" />
2721 <ClInclude Include="..\..\..\..\src\tool_cb_hdr.h" />
2722 <ClInclude Include="..\..\..\..\src\tool_cb_prg.h" />
2723 <ClInclude Include="..\..\..\..\src\tool_cb_rea.h" />
2724 <ClInclude Include="..\..\..\..\src\tool_cb_see.h" />
2725 <ClInclude Include="..\..\..\..\src\tool_cb_wrt.h" />
2726 <ClInclude Include="..\..\..\..\src\tool_cfgable.h" />
2727 <ClInclude Include="..\..\..\..\src\tool_dirhie.h" />
2728 <ClInclude Include="..\..\..\..\src\tool_doswin.h" />
2729 <ClInclude Include="..\..\..\..\src\tool_easysrc.h" />
2730 <ClInclude Include="..\..\..\..\src\tool_filetime.h" />
2731 <ClInclude Include="..\..\..\..\src\tool_findfile.h" />
2732 <ClInclude Include="..\..\..\..\src\tool_formparse.h" />
2733 <ClInclude Include="..\..\..\..\src\tool_getparam.h" />
2734 <ClInclude Include="..\..\..\..\src\tool_getpass.h" />
2735 <ClInclude Include="..\..\..\..\src\tool_helpers.h" />
2736 <ClInclude Include="..\..\..\..\src\tool_help.h" />
2737 <ClInclude Include="..\..\..\..\src\tool_hugehelp.h" />
2738 <ClInclude Include="..\..\..\..\src\tool_libinfo.h" />
2739 <ClInclude Include="..\..\..\..\src\tool_main.h" />
2740 <ClInclude Include="..\..\..\..\src\tool_msgs.h" />
2741 <ClInclude Include="..\..\..\..\src\tool_operate.h" />
2742 <ClInclude Include="..\..\..\..\src\tool_operhlp.h" />
2743 <ClInclude Include="..\..\..\..\src\tool_panykey.h" />
2744 <ClInclude Include="..\..\..\..\src\tool_paramhlp.h" />
2745 <ClInclude Include="..\..\..\..\src\tool_parsecfg.h" />
2746 <ClInclude Include="..\..\..\..\src\tool_progress.h" />
2747 <ClInclude Include="..\..\..\..\src\tool_sdecls.h" />
2748 <ClInclude Include="..\..\..\..\src\tool_setopt.h" />
2749 <ClInclude Include="..\..\..\..\src\tool_setup.h" />
2750 <ClInclude Include="..\..\..\..\src\tool_sleep.h" />
2751 <ClInclude Include="..\..\..\..\src\tool_strdup.h" />
2752 <ClInclude Include="..\..\..\..\src\tool_urlglob.h" />
2753 <ClInclude Include="..\..\..\..\src\tool_util.h" />
2754 <ClInclude Include="..\..\..\..\src\tool_version.h" />
2755 <ClInclude Include="..\..\..\..\src\tool_vms.h" />
2756 <ClInclude Include="..\..\..\..\src\tool_writeout.h" />
2757 <ClInclude Include="..\..\..\..\src\tool_writeout_json.h" />
2758 <ClInclude Include="..\..\..\..\src\tool_xattr.h" />
2759 </ItemGroup>
2760 <ItemGroup>
2761 <ResourceCompile Include="..\..\..\..\src\curl.rc" />
2762 </ItemGroup>
2763 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2764 <ImportGroup Label="ExtensionTargets">
2765 </ImportGroup>
2766 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 17
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "src\curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 ProjectSection(ProjectDependencies) = postProject
4 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB} = {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}
5 EndProjectSection
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "lib\libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
8 EndProject
9 Global
10 GlobalSection(SolutionConfigurationPlatforms) = preSolution
11 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
12 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
13 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
14 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
15 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
16 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
17 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
18 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
19 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
20 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
21 DLL Debug|Win32 = DLL Debug|Win32
22 DLL Debug|x64 = DLL Debug|x64
23 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
24 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
25 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
26 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
27 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
28 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
29 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
30 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
31 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
32 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
33 DLL Release|Win32 = DLL Release|Win32
34 DLL Release|x64 = DLL Release|x64
35 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
36 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
37 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
38 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
39 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
40 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
41 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
42 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
43 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
44 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
45 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
46 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
47 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
48 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
49 LIB Debug|Win32 = LIB Debug|Win32
50 LIB Debug|x64 = LIB Debug|x64
51 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
52 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
53 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
54 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
55 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
56 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
57 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
58 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
59 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
60 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
61 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
62 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
63 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
64 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
65 LIB Release|Win32 = LIB Release|Win32
66 LIB Release|x64 = LIB Release|x64
67 EndGlobalSection
68 GlobalSection(ProjectConfigurationPlatforms) = postSolution
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
176 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
177 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
178 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
179 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
180 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
181 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
182 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
183 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
184 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
185 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
186 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
187 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
188 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
189 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
190 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
191 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
192 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
193 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
194 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
195 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
196 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
197 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
198 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
199 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
200 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
201 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
202 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
203 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
204 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
205 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
206 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
207 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
208 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
209 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
210 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
211 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
212 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
213 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
214 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
215 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
216 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
217 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
218 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
219 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
220 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
221 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
222 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
223 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
224 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
225 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
226 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
227 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
228 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
229 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
230 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
231 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
232 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
233 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
234 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
235 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
236 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
237 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
238 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
239 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
240 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
241 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
242 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
243 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
244 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
245 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
246 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
247 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
248 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
249 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
250 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
251 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
252 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
253 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
254 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
255 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
256 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
257 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
258 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
259 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
260 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
261 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
262 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
263 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
264 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
265 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
266 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
267 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
268 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
269 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
270 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
271 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
272 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
273 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
274 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
275 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
276 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
277 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
278 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
279 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
280 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
281 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
282 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
283 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
284 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
285 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
286 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
287 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
288 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
289 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
290 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
291 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
292 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
293 EndGlobalSection
294 GlobalSection(SolutionProperties) = preSolution
295 HideSolutionNode = FALSE
296 EndGlobalSection
297 EndGlobal
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 17
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
112 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}</ProjectGuid>
230 <RootNamespace>libcurl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
234 <ConfigurationType>StaticLibrary</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v143</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
240 <ConfigurationType>StaticLibrary</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v143</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>StaticLibrary</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v143</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>StaticLibrary</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v143</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>StaticLibrary</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v143</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
264 <ConfigurationType>StaticLibrary</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v143</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
270 <ConfigurationType>StaticLibrary</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v143</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>StaticLibrary</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v143</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
282 <ConfigurationType>StaticLibrary</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v143</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
288 <ConfigurationType>StaticLibrary</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v143</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
294 <ConfigurationType>StaticLibrary</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v143</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>StaticLibrary</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v143</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>DynamicLibrary</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v143</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>DynamicLibrary</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v143</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>DynamicLibrary</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v143</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>DynamicLibrary</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v143</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
330 <ConfigurationType>DynamicLibrary</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v143</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
336 <ConfigurationType>DynamicLibrary</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v143</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
342 <ConfigurationType>DynamicLibrary</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v143</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>DynamicLibrary</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v143</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
354 <ConfigurationType>StaticLibrary</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v143</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>StaticLibrary</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v143</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>StaticLibrary</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v143</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>StaticLibrary</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v143</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
378 <ConfigurationType>DynamicLibrary</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v143</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>DynamicLibrary</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v143</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
390 <ConfigurationType>DynamicLibrary</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v143</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>DynamicLibrary</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v143</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
402 <ConfigurationType>StaticLibrary</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v143</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
408 <ConfigurationType>StaticLibrary</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v143</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>StaticLibrary</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v143</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>StaticLibrary</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v143</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>StaticLibrary</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v143</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
432 <ConfigurationType>StaticLibrary</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v143</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
438 <ConfigurationType>StaticLibrary</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v143</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>StaticLibrary</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v143</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
450 <ConfigurationType>StaticLibrary</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v143</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
456 <ConfigurationType>StaticLibrary</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v143</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
462 <ConfigurationType>StaticLibrary</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v143</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>StaticLibrary</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v143</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>DynamicLibrary</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v143</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>DynamicLibrary</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v143</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>DynamicLibrary</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v143</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>DynamicLibrary</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v143</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
498 <ConfigurationType>DynamicLibrary</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v143</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
504 <ConfigurationType>DynamicLibrary</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v143</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
510 <ConfigurationType>DynamicLibrary</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v143</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>DynamicLibrary</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v143</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
522 <ConfigurationType>StaticLibrary</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v143</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>StaticLibrary</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v143</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>StaticLibrary</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v143</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>StaticLibrary</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v143</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
546 <ConfigurationType>DynamicLibrary</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v143</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>DynamicLibrary</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v143</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
558 <ConfigurationType>DynamicLibrary</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v143</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>DynamicLibrary</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v143</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)lib\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)lib\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)lib\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)lib\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)lib\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
771 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
772 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
773 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)lib\</IntDir>
774 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
775 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
776 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
777 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)lib\</IntDir>
778 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)lib\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
783 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
784 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
785 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
788 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
789 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
790 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
791 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
792 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
793 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
794 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
795 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
796 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
797 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
798 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
799 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
800 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
801 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
802 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
803 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
804 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
805 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
806 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
807 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
808 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
809 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
812 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
813 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
814 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
815 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
816 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
817 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
818 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
819 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
820 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
821 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
824 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
825 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
826 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
827 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
828 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
829 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
830 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
831 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
832 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
835 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
836 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
837 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
838 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
840 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
841 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
842 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
843 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
844 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
845 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
847 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
848 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
849 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
850 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
853 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
854 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
855 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
856 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
859 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
860 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
861 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
862 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
864 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
865 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
866 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
867 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
868 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
869 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
871 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
872 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
873 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
874 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
877 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
878 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
879 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
880 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
881 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
882 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
883 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
884 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
885 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
886 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
887 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
888 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
889 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
890 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
891 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
892 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
893 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
894 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
895 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
896 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
897 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
898 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
899 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
900 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
901 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
902 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
903 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
904 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
905 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
906 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
907 </PropertyGroup>
908 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
909 <Midl>
910 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
911 <MkTypLibCompatible>true</MkTypLibCompatible>
912 <TargetEnvironment>Win32</TargetEnvironment>
913 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
914 <HeaderFileName>
915 </HeaderFileName>
916 </Midl>
917 <ClCompile>
918 <Optimization>Disabled</Optimization>
919 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
920 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
921 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
922 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
923 <WarningLevel>Level4</WarningLevel>
924 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
925 </ClCompile>
926 <ResourceCompile>
927 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
928 <Culture>0x0409</Culture>
929 </ResourceCompile>
930 <Link>
931 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
932 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
933 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
934 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
935 <GenerateDebugInformation>true</GenerateDebugInformation>
936 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
937 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
938 <TargetMachine>MachineX86</TargetMachine>
939 </Link>
940 </ItemDefinitionGroup>
941 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
942 <Midl>
943 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
944 <MkTypLibCompatible>true</MkTypLibCompatible>
945 <TargetEnvironment>Win32</TargetEnvironment>
946 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
947 <HeaderFileName>
948 </HeaderFileName>
949 </Midl>
950 <ClCompile>
951 <Optimization>Disabled</Optimization>
952 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
953 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
954 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
955 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
956 <WarningLevel>Level4</WarningLevel>
957 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
958 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
959 </ClCompile>
960 <ResourceCompile>
961 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
962 <Culture>0x0409</Culture>
963 </ResourceCompile>
964 <Link>
965 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
966 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
967 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
968 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
969 <GenerateDebugInformation>true</GenerateDebugInformation>
970 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
971 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
972 <TargetMachine>MachineX86</TargetMachine>
973 </Link>
974 </ItemDefinitionGroup>
975 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
976 <Midl>
977 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
978 <MkTypLibCompatible>true</MkTypLibCompatible>
979 <TargetEnvironment>X64</TargetEnvironment>
980 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
981 <HeaderFileName>
982 </HeaderFileName>
983 </Midl>
984 <ClCompile>
985 <Optimization>Disabled</Optimization>
986 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
987 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
988 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
989 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
990 <WarningLevel>Level4</WarningLevel>
991 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
992 </ClCompile>
993 <ResourceCompile>
994 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
995 <Culture>0x0409</Culture>
996 </ResourceCompile>
997 <Link>
998 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
999 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1000 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1001 <GenerateDebugInformation>true</GenerateDebugInformation>
1002 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1003 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1004 <TargetMachine>MachineX64</TargetMachine>
1005 </Link>
1006 </ItemDefinitionGroup>
1007 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1008 <Midl>
1009 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1010 <MkTypLibCompatible>true</MkTypLibCompatible>
1011 <TargetEnvironment>X64</TargetEnvironment>
1012 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1013 <HeaderFileName>
1014 </HeaderFileName>
1015 </Midl>
1016 <ClCompile>
1017 <Optimization>Disabled</Optimization>
1018 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1019 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1020 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1021 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1022 <WarningLevel>Level4</WarningLevel>
1023 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1024 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1025 </ClCompile>
1026 <ResourceCompile>
1027 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1028 <Culture>0x0409</Culture>
1029 </ResourceCompile>
1030 <Link>
1031 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1032 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1033 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1034 <GenerateDebugInformation>true</GenerateDebugInformation>
1035 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1036 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1037 <TargetMachine>MachineX64</TargetMachine>
1038 </Link>
1039 </ItemDefinitionGroup>
1040 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
1041 <Midl>
1042 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1043 <MkTypLibCompatible>true</MkTypLibCompatible>
1044 <TargetEnvironment>Win32</TargetEnvironment>
1045 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1046 <HeaderFileName>
1047 </HeaderFileName>
1048 </Midl>
1049 <ClCompile>
1050 <Optimization>MaxSpeed</Optimization>
1051 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1052 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1053 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1054 <StringPooling>true</StringPooling>
1055 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1056 <FunctionLevelLinking>true</FunctionLevelLinking>
1057 <WarningLevel>Level4</WarningLevel>
1058 </ClCompile>
1059 <ResourceCompile>
1060 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1061 <Culture>0x0409</Culture>
1062 </ResourceCompile>
1063 <Link>
1064 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1065 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1066 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1067 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1068 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1069 <TargetMachine>MachineX86</TargetMachine>
1070 </Link>
1071 </ItemDefinitionGroup>
1072 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
1073 <Midl>
1074 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1075 <MkTypLibCompatible>true</MkTypLibCompatible>
1076 <TargetEnvironment>Win32</TargetEnvironment>
1077 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1078 <HeaderFileName>
1079 </HeaderFileName>
1080 </Midl>
1081 <ClCompile>
1082 <Optimization>MaxSpeed</Optimization>
1083 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1084 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1085 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1086 <StringPooling>true</StringPooling>
1087 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1088 <FunctionLevelLinking>true</FunctionLevelLinking>
1089 <WarningLevel>Level4</WarningLevel>
1090 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1091 </ClCompile>
1092 <ResourceCompile>
1093 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1094 <Culture>0x0409</Culture>
1095 </ResourceCompile>
1096 <Link>
1097 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1099 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1100 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1101 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1102 <TargetMachine>MachineX86</TargetMachine>
1103 <GenerateDebugInformation>true</GenerateDebugInformation>
1104 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1105 </Link>
1106 </ItemDefinitionGroup>
1107 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1108 <Midl>
1109 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1110 <MkTypLibCompatible>true</MkTypLibCompatible>
1111 <TargetEnvironment>X64</TargetEnvironment>
1112 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1113 <HeaderFileName>
1114 </HeaderFileName>
1115 </Midl>
1116 <ClCompile>
1117 <Optimization>MaxSpeed</Optimization>
1118 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1119 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1120 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1121 <StringPooling>true</StringPooling>
1122 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1123 <FunctionLevelLinking>true</FunctionLevelLinking>
1124 <WarningLevel>Level4</WarningLevel>
1125 </ClCompile>
1126 <ResourceCompile>
1127 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1128 <Culture>0x0409</Culture>
1129 </ResourceCompile>
1130 <Link>
1131 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1132 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1133 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1134 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1135 <TargetMachine>MachineX64</TargetMachine>
1136 </Link>
1137 </ItemDefinitionGroup>
1138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1139 <Midl>
1140 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1141 <MkTypLibCompatible>true</MkTypLibCompatible>
1142 <TargetEnvironment>X64</TargetEnvironment>
1143 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1144 <HeaderFileName>
1145 </HeaderFileName>
1146 </Midl>
1147 <ClCompile>
1148 <Optimization>MaxSpeed</Optimization>
1149 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1150 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1151 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1152 <StringPooling>true</StringPooling>
1153 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1154 <FunctionLevelLinking>true</FunctionLevelLinking>
1155 <WarningLevel>Level4</WarningLevel>
1156 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1157 </ClCompile>
1158 <ResourceCompile>
1159 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1160 <Culture>0x0409</Culture>
1161 </ResourceCompile>
1162 <Link>
1163 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1164 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1165 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1166 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1167 <TargetMachine>MachineX64</TargetMachine>
1168 <GenerateDebugInformation>true</GenerateDebugInformation>
1169 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1170 </Link>
1171 </ItemDefinitionGroup>
1172 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1173 <ClCompile>
1174 <Optimization>Disabled</Optimization>
1175 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1176 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1177 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1178 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1179 <WarningLevel>Level4</WarningLevel>
1180 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1181 </ClCompile>
1182 <ResourceCompile>
1183 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1184 <Culture>0x0409</Culture>
1185 </ResourceCompile>
1186 <Lib>
1187 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1188 <TargetMachine>MachineX86</TargetMachine>
1189 </Lib>
1190 </ItemDefinitionGroup>
1191 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1192 <ClCompile>
1193 <Optimization>Disabled</Optimization>
1194 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1195 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1196 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1197 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1198 <WarningLevel>Level4</WarningLevel>
1199 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1200 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1201 </ClCompile>
1202 <ResourceCompile>
1203 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1204 <Culture>0x0409</Culture>
1205 </ResourceCompile>
1206 <Lib>
1207 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1208 <TargetMachine>MachineX86</TargetMachine>
1209 </Lib>
1210 </ItemDefinitionGroup>
1211 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1212 <Midl>
1213 <TargetEnvironment>X64</TargetEnvironment>
1214 </Midl>
1215 <ClCompile>
1216 <Optimization>Disabled</Optimization>
1217 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1218 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1219 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1220 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1221 <WarningLevel>Level4</WarningLevel>
1222 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1223 </ClCompile>
1224 <ResourceCompile>
1225 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1226 <Culture>0x0409</Culture>
1227 </ResourceCompile>
1228 <Lib>
1229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1230 <TargetMachine>MachineX64</TargetMachine>
1231 </Lib>
1232 </ItemDefinitionGroup>
1233 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1234 <Midl>
1235 <TargetEnvironment>X64</TargetEnvironment>
1236 </Midl>
1237 <ClCompile>
1238 <Optimization>Disabled</Optimization>
1239 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1240 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1241 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1242 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1243 <WarningLevel>Level4</WarningLevel>
1244 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1245 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1246 </ClCompile>
1247 <ResourceCompile>
1248 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1249 <Culture>0x0409</Culture>
1250 </ResourceCompile>
1251 <Lib>
1252 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1253 <TargetMachine>MachineX64</TargetMachine>
1254 </Lib>
1255 </ItemDefinitionGroup>
1256 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1257 <ClCompile>
1258 <Optimization>MaxSpeed</Optimization>
1259 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1262 <StringPooling>true</StringPooling>
1263 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1264 <FunctionLevelLinking>true</FunctionLevelLinking>
1265 <WarningLevel>Level4</WarningLevel>
1266 </ClCompile>
1267 <ResourceCompile>
1268 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1269 <Culture>0x0409</Culture>
1270 </ResourceCompile>
1271 <Lib>
1272 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1273 <TargetMachine>MachineX86</TargetMachine>
1274 </Lib>
1275 </ItemDefinitionGroup>
1276 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1277 <ClCompile>
1278 <Optimization>MaxSpeed</Optimization>
1279 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1280 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1281 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1282 <StringPooling>true</StringPooling>
1283 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1284 <FunctionLevelLinking>true</FunctionLevelLinking>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 </ResourceCompile>
1292 <Lib>
1293 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1294 <TargetMachine>MachineX86</TargetMachine>
1295 </Lib>
1296 </ItemDefinitionGroup>
1297 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1298 <Midl>
1299 <TargetEnvironment>X64</TargetEnvironment>
1300 </Midl>
1301 <ClCompile>
1302 <Optimization>MaxSpeed</Optimization>
1303 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1305 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1306 <StringPooling>true</StringPooling>
1307 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1308 <FunctionLevelLinking>true</FunctionLevelLinking>
1309 <WarningLevel>Level4</WarningLevel>
1310 </ClCompile>
1311 <ResourceCompile>
1312 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1313 <Culture>0x0409</Culture>
1314 </ResourceCompile>
1315 <Lib>
1316 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1317 <TargetMachine>MachineX64</TargetMachine>
1318 </Lib>
1319 </ItemDefinitionGroup>
1320 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1321 <Midl>
1322 <TargetEnvironment>X64</TargetEnvironment>
1323 </Midl>
1324 <ClCompile>
1325 <Optimization>MaxSpeed</Optimization>
1326 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1327 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1328 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1329 <StringPooling>true</StringPooling>
1330 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1331 <FunctionLevelLinking>true</FunctionLevelLinking>
1332 <WarningLevel>Level4</WarningLevel>
1333 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1334 </ClCompile>
1335 <ResourceCompile>
1336 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1337 <Culture>0x0409</Culture>
1338 </ResourceCompile>
1339 <Lib>
1340 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1341 <TargetMachine>MachineX64</TargetMachine>
1342 </Lib>
1343 </ItemDefinitionGroup>
1344 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1345 <Midl>
1346 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1347 <MkTypLibCompatible>true</MkTypLibCompatible>
1348 <TargetEnvironment>Win32</TargetEnvironment>
1349 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1350 <HeaderFileName>
1351 </HeaderFileName>
1352 </Midl>
1353 <ClCompile>
1354 <Optimization>Disabled</Optimization>
1355 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1356 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1357 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1358 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1359 <WarningLevel>Level4</WarningLevel>
1360 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1361 </ClCompile>
1362 <ResourceCompile>
1363 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1364 <Culture>0x0409</Culture>
1365 </ResourceCompile>
1366 <Link>
1367 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1368 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1369 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1370 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1371 <GenerateDebugInformation>true</GenerateDebugInformation>
1372 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1373 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1374 <TargetMachine>MachineX86</TargetMachine>
1375 </Link>
1376 </ItemDefinitionGroup>
1377 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1378 <Midl>
1379 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1380 <MkTypLibCompatible>true</MkTypLibCompatible>
1381 <TargetEnvironment>X64</TargetEnvironment>
1382 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1383 <HeaderFileName>
1384 </HeaderFileName>
1385 </Midl>
1386 <ClCompile>
1387 <Optimization>Disabled</Optimization>
1388 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1389 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1390 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1391 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1392 <WarningLevel>Level4</WarningLevel>
1393 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1394 </ClCompile>
1395 <ResourceCompile>
1396 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1397 <Culture>0x0409</Culture>
1398 </ResourceCompile>
1399 <Link>
1400 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1401 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1402 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1403 <GenerateDebugInformation>true</GenerateDebugInformation>
1404 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1405 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1406 <TargetMachine>MachineX64</TargetMachine>
1407 </Link>
1408 </ItemDefinitionGroup>
1409 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1410 <Midl>
1411 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <MkTypLibCompatible>true</MkTypLibCompatible>
1413 <TargetEnvironment>Win32</TargetEnvironment>
1414 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1415 <HeaderFileName>
1416 </HeaderFileName>
1417 </Midl>
1418 <ClCompile>
1419 <Optimization>MaxSpeed</Optimization>
1420 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1421 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1422 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1423 <StringPooling>true</StringPooling>
1424 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1425 <FunctionLevelLinking>true</FunctionLevelLinking>
1426 <WarningLevel>Level4</WarningLevel>
1427 </ClCompile>
1428 <ResourceCompile>
1429 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1430 <Culture>0x0409</Culture>
1431 </ResourceCompile>
1432 <Link>
1433 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1434 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1435 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1436 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1437 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1438 <TargetMachine>MachineX86</TargetMachine>
1439 </Link>
1440 </ItemDefinitionGroup>
1441 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1442 <Midl>
1443 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1444 <MkTypLibCompatible>true</MkTypLibCompatible>
1445 <TargetEnvironment>X64</TargetEnvironment>
1446 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1447 <HeaderFileName>
1448 </HeaderFileName>
1449 </Midl>
1450 <ClCompile>
1451 <Optimization>MaxSpeed</Optimization>
1452 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1453 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1454 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1455 <StringPooling>true</StringPooling>
1456 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1457 <FunctionLevelLinking>true</FunctionLevelLinking>
1458 <WarningLevel>Level4</WarningLevel>
1459 </ClCompile>
1460 <ResourceCompile>
1461 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1462 <Culture>0x0409</Culture>
1463 </ResourceCompile>
1464 <Link>
1465 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1466 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1467 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1468 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1469 <TargetMachine>MachineX64</TargetMachine>
1470 </Link>
1471 </ItemDefinitionGroup>
1472 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1473 <Midl>
1474 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1475 <MkTypLibCompatible>true</MkTypLibCompatible>
1476 <TargetEnvironment>Win32</TargetEnvironment>
1477 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1478 <HeaderFileName>
1479 </HeaderFileName>
1480 </Midl>
1481 <ClCompile>
1482 <Optimization>Disabled</Optimization>
1483 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1484 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1485 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1486 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1487 <WarningLevel>Level4</WarningLevel>
1488 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1489 </ClCompile>
1490 <ResourceCompile>
1491 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1492 <Culture>0x0409</Culture>
1493 </ResourceCompile>
1494 <Link>
1495 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1496 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1497 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1498 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1499 <GenerateDebugInformation>true</GenerateDebugInformation>
1500 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1501 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1502 <TargetMachine>MachineX86</TargetMachine>
1503 </Link>
1504 </ItemDefinitionGroup>
1505 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1506 <Midl>
1507 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1508 <MkTypLibCompatible>true</MkTypLibCompatible>
1509 <TargetEnvironment>Win32</TargetEnvironment>
1510 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1511 <HeaderFileName>
1512 </HeaderFileName>
1513 </Midl>
1514 <ClCompile>
1515 <Optimization>Disabled</Optimization>
1516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1517 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1520 <WarningLevel>Level4</WarningLevel>
1521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1522 </ClCompile>
1523 <ResourceCompile>
1524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1525 <Culture>0x0409</Culture>
1526 </ResourceCompile>
1527 <Link>
1528 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1529 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1530 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1531 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1532 <GenerateDebugInformation>true</GenerateDebugInformation>
1533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1534 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1535 <TargetMachine>MachineX86</TargetMachine>
1536 </Link>
1537 </ItemDefinitionGroup>
1538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1539 <Midl>
1540 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1541 <MkTypLibCompatible>true</MkTypLibCompatible>
1542 <TargetEnvironment>X64</TargetEnvironment>
1543 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1544 <HeaderFileName>
1545 </HeaderFileName>
1546 </Midl>
1547 <ClCompile>
1548 <Optimization>Disabled</Optimization>
1549 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1550 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1551 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1552 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1553 <WarningLevel>Level4</WarningLevel>
1554 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1555 </ClCompile>
1556 <ResourceCompile>
1557 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1558 <Culture>0x0409</Culture>
1559 </ResourceCompile>
1560 <Link>
1561 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1562 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1563 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1564 <GenerateDebugInformation>true</GenerateDebugInformation>
1565 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1566 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1567 <TargetMachine>MachineX64</TargetMachine>
1568 </Link>
1569 </ItemDefinitionGroup>
1570 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1571 <Midl>
1572 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1573 <MkTypLibCompatible>true</MkTypLibCompatible>
1574 <TargetEnvironment>X64</TargetEnvironment>
1575 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1576 <HeaderFileName>
1577 </HeaderFileName>
1578 </Midl>
1579 <ClCompile>
1580 <Optimization>Disabled</Optimization>
1581 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1582 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1583 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1584 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1585 <WarningLevel>Level4</WarningLevel>
1586 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1587 </ClCompile>
1588 <ResourceCompile>
1589 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1590 <Culture>0x0409</Culture>
1591 </ResourceCompile>
1592 <Link>
1593 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1594 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1595 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1596 <GenerateDebugInformation>true</GenerateDebugInformation>
1597 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1598 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1599 <TargetMachine>MachineX64</TargetMachine>
1600 </Link>
1601 </ItemDefinitionGroup>
1602 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1603 <Midl>
1604 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1605 <MkTypLibCompatible>true</MkTypLibCompatible>
1606 <TargetEnvironment>Win32</TargetEnvironment>
1607 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1608 <HeaderFileName>
1609 </HeaderFileName>
1610 </Midl>
1611 <ClCompile>
1612 <Optimization>MaxSpeed</Optimization>
1613 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1614 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1615 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1616 <StringPooling>true</StringPooling>
1617 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1618 <FunctionLevelLinking>true</FunctionLevelLinking>
1619 <WarningLevel>Level4</WarningLevel>
1620 </ClCompile>
1621 <ResourceCompile>
1622 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1623 <Culture>0x0409</Culture>
1624 </ResourceCompile>
1625 <Link>
1626 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1627 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1628 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1629 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1630 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1631 <TargetMachine>MachineX86</TargetMachine>
1632 </Link>
1633 </ItemDefinitionGroup>
1634 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1635 <Midl>
1636 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1637 <MkTypLibCompatible>true</MkTypLibCompatible>
1638 <TargetEnvironment>Win32</TargetEnvironment>
1639 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1640 <HeaderFileName>
1641 </HeaderFileName>
1642 </Midl>
1643 <ClCompile>
1644 <Optimization>MaxSpeed</Optimization>
1645 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1646 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1647 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1648 <StringPooling>true</StringPooling>
1649 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1650 <FunctionLevelLinking>true</FunctionLevelLinking>
1651 <WarningLevel>Level4</WarningLevel>
1652 </ClCompile>
1653 <ResourceCompile>
1654 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1655 <Culture>0x0409</Culture>
1656 </ResourceCompile>
1657 <Link>
1658 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1659 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1660 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1661 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1662 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1663 <TargetMachine>MachineX86</TargetMachine>
1664 </Link>
1665 </ItemDefinitionGroup>
1666 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1667 <Midl>
1668 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1669 <MkTypLibCompatible>true</MkTypLibCompatible>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 </ResourceCompile>
1689 <Link>
1690 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1691 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1692 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1693 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1694 <TargetMachine>MachineX64</TargetMachine>
1695 </Link>
1696 </ItemDefinitionGroup>
1697 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1698 <Midl>
1699 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1700 <MkTypLibCompatible>true</MkTypLibCompatible>
1701 <TargetEnvironment>X64</TargetEnvironment>
1702 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1703 <HeaderFileName>
1704 </HeaderFileName>
1705 </Midl>
1706 <ClCompile>
1707 <Optimization>MaxSpeed</Optimization>
1708 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1709 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1710 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1711 <StringPooling>true</StringPooling>
1712 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1713 <FunctionLevelLinking>true</FunctionLevelLinking>
1714 <WarningLevel>Level4</WarningLevel>
1715 </ClCompile>
1716 <ResourceCompile>
1717 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1718 <Culture>0x0409</Culture>
1719 </ResourceCompile>
1720 <Link>
1721 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1722 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1723 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1724 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1725 <TargetMachine>MachineX64</TargetMachine>
1726 </Link>
1727 </ItemDefinitionGroup>
1728 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1729 <Midl>
1730 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1731 <MkTypLibCompatible>true</MkTypLibCompatible>
1732 <TargetEnvironment>Win32</TargetEnvironment>
1733 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1734 <HeaderFileName>
1735 </HeaderFileName>
1736 </Midl>
1737 <ClCompile>
1738 <Optimization>Disabled</Optimization>
1739 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1740 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1741 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1742 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1743 <WarningLevel>Level4</WarningLevel>
1744 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1745 </ClCompile>
1746 <ResourceCompile>
1747 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1748 <Culture>0x0409</Culture>
1749 </ResourceCompile>
1750 <Link>
1751 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1752 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1753 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1754 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1755 <GenerateDebugInformation>true</GenerateDebugInformation>
1756 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1757 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1758 <TargetMachine>MachineX86</TargetMachine>
1759 </Link>
1760 </ItemDefinitionGroup>
1761 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1762 <Midl>
1763 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1764 <MkTypLibCompatible>true</MkTypLibCompatible>
1765 <TargetEnvironment>X64</TargetEnvironment>
1766 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1767 <HeaderFileName>
1768 </HeaderFileName>
1769 </Midl>
1770 <ClCompile>
1771 <Optimization>Disabled</Optimization>
1772 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1773 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1774 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1775 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1776 <WarningLevel>Level4</WarningLevel>
1777 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1778 </ClCompile>
1779 <ResourceCompile>
1780 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1781 <Culture>0x0409</Culture>
1782 </ResourceCompile>
1783 <Link>
1784 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1785 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1786 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1787 <GenerateDebugInformation>true</GenerateDebugInformation>
1788 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1789 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1790 <TargetMachine>MachineX64</TargetMachine>
1791 </Link>
1792 </ItemDefinitionGroup>
1793 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1794 <Midl>
1795 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1796 <MkTypLibCompatible>true</MkTypLibCompatible>
1797 <TargetEnvironment>Win32</TargetEnvironment>
1798 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1799 <HeaderFileName>
1800 </HeaderFileName>
1801 </Midl>
1802 <ClCompile>
1803 <Optimization>MaxSpeed</Optimization>
1804 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1805 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1806 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1807 <StringPooling>true</StringPooling>
1808 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1809 <FunctionLevelLinking>true</FunctionLevelLinking>
1810 <WarningLevel>Level4</WarningLevel>
1811 </ClCompile>
1812 <ResourceCompile>
1813 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1814 <Culture>0x0409</Culture>
1815 </ResourceCompile>
1816 <Link>
1817 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1818 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1819 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1820 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1821 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1822 <TargetMachine>MachineX86</TargetMachine>
1823 </Link>
1824 </ItemDefinitionGroup>
1825 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1826 <Midl>
1827 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1828 <MkTypLibCompatible>true</MkTypLibCompatible>
1829 <TargetEnvironment>X64</TargetEnvironment>
1830 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1831 <HeaderFileName>
1832 </HeaderFileName>
1833 </Midl>
1834 <ClCompile>
1835 <Optimization>MaxSpeed</Optimization>
1836 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1837 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1838 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1839 <StringPooling>true</StringPooling>
1840 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1841 <FunctionLevelLinking>true</FunctionLevelLinking>
1842 <WarningLevel>Level4</WarningLevel>
1843 </ClCompile>
1844 <ResourceCompile>
1845 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1846 <Culture>0x0409</Culture>
1847 </ResourceCompile>
1848 <Link>
1849 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1850 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1851 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1852 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1853 <TargetMachine>MachineX64</TargetMachine>
1854 </Link>
1855 </ItemDefinitionGroup>
1856 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
1857 <ClCompile>
1858 <Optimization>Disabled</Optimization>
1859 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1860 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1861 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1862 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1863 <WarningLevel>Level4</WarningLevel>
1864 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1865 </ClCompile>
1866 <ResourceCompile>
1867 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1868 <Culture>0x0409</Culture>
1869 </ResourceCompile>
1870 <Lib>
1871 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1872 <TargetMachine>MachineX86</TargetMachine>
1873 </Lib>
1874 </ItemDefinitionGroup>
1875 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
1876 <Midl>
1877 <TargetEnvironment>X64</TargetEnvironment>
1878 </Midl>
1879 <ClCompile>
1880 <Optimization>Disabled</Optimization>
1881 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1882 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1883 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1884 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1885 <WarningLevel>Level4</WarningLevel>
1886 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1887 </ClCompile>
1888 <ResourceCompile>
1889 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1890 <Culture>0x0409</Culture>
1891 </ResourceCompile>
1892 <Lib>
1893 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1894 <TargetMachine>MachineX64</TargetMachine>
1895 </Lib>
1896 </ItemDefinitionGroup>
1897 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1898 <ClCompile>
1899 <Optimization>Disabled</Optimization>
1900 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1901 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1902 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1903 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1904 <WarningLevel>Level4</WarningLevel>
1905 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1906 </ClCompile>
1907 <ResourceCompile>
1908 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1909 <Culture>0x0409</Culture>
1910 </ResourceCompile>
1911 <Lib>
1912 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1913 <TargetMachine>MachineX86</TargetMachine>
1914 </Lib>
1915 </ItemDefinitionGroup>
1916 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1917 <Midl>
1918 <TargetEnvironment>X64</TargetEnvironment>
1919 </Midl>
1920 <ClCompile>
1921 <Optimization>Disabled</Optimization>
1922 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1923 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1924 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1925 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1926 <WarningLevel>Level4</WarningLevel>
1927 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1928 </ClCompile>
1929 <ResourceCompile>
1930 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1931 <Culture>0x0409</Culture>
1932 </ResourceCompile>
1933 <Lib>
1934 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1935 <TargetMachine>MachineX64</TargetMachine>
1936 </Lib>
1937 </ItemDefinitionGroup>
1938 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
1939 <ClCompile>
1940 <Optimization>Disabled</Optimization>
1941 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1942 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1943 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1944 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1945 <WarningLevel>Level4</WarningLevel>
1946 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1947 </ClCompile>
1948 <ResourceCompile>
1949 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1950 <Culture>0x0409</Culture>
1951 </ResourceCompile>
1952 <Lib>
1953 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1954 <TargetMachine>MachineX86</TargetMachine>
1955 </Lib>
1956 </ItemDefinitionGroup>
1957 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1958 <ClCompile>
1959 <Optimization>Disabled</Optimization>
1960 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1961 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1962 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1963 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1964 <WarningLevel>Level4</WarningLevel>
1965 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1966 </ClCompile>
1967 <ResourceCompile>
1968 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1969 <Culture>0x0409</Culture>
1970 </ResourceCompile>
1971 <Lib>
1972 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1973 <TargetMachine>MachineX86</TargetMachine>
1974 </Lib>
1975 </ItemDefinitionGroup>
1976 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
1977 <Midl>
1978 <TargetEnvironment>X64</TargetEnvironment>
1979 </Midl>
1980 <ClCompile>
1981 <Optimization>Disabled</Optimization>
1982 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1983 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1985 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1986 <WarningLevel>Level4</WarningLevel>
1987 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1988 </ClCompile>
1989 <ResourceCompile>
1990 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1991 <Culture>0x0409</Culture>
1992 </ResourceCompile>
1993 <Lib>
1994 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1995 <TargetMachine>MachineX64</TargetMachine>
1996 </Lib>
1997 </ItemDefinitionGroup>
1998 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1999 <Midl>
2000 <TargetEnvironment>X64</TargetEnvironment>
2001 </Midl>
2002 <ClCompile>
2003 <Optimization>Disabled</Optimization>
2004 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2005 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2006 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2007 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2008 <WarningLevel>Level4</WarningLevel>
2009 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2010 </ClCompile>
2011 <ResourceCompile>
2012 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2013 <Culture>0x0409</Culture>
2014 </ResourceCompile>
2015 <Lib>
2016 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2017 <TargetMachine>MachineX64</TargetMachine>
2018 </Lib>
2019 </ItemDefinitionGroup>
2020 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
2021 <ClCompile>
2022 <Optimization>Disabled</Optimization>
2023 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2024 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2025 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2026 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2027 <WarningLevel>Level4</WarningLevel>
2028 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2029 </ClCompile>
2030 <ResourceCompile>
2031 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2032 <Culture>0x0409</Culture>
2033 </ResourceCompile>
2034 <Lib>
2035 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2036 <TargetMachine>MachineX86</TargetMachine>
2037 </Lib>
2038 </ItemDefinitionGroup>
2039 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
2040 <Midl>
2041 <TargetEnvironment>X64</TargetEnvironment>
2042 </Midl>
2043 <ClCompile>
2044 <Optimization>Disabled</Optimization>
2045 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2046 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2047 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2048 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2049 <WarningLevel>Level4</WarningLevel>
2050 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2051 </ClCompile>
2052 <ResourceCompile>
2053 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2054 <Culture>0x0409</Culture>
2055 </ResourceCompile>
2056 <Lib>
2057 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2058 <TargetMachine>MachineX64</TargetMachine>
2059 </Lib>
2060 </ItemDefinitionGroup>
2061 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 </ResourceCompile>
2075 <Lib>
2076 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2077 <TargetMachine>MachineX86</TargetMachine>
2078 </Lib>
2079 </ItemDefinitionGroup>
2080 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2081 <Midl>
2082 <TargetEnvironment>X64</TargetEnvironment>
2083 </Midl>
2084 <ClCompile>
2085 <Optimization>Disabled</Optimization>
2086 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2087 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2088 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2089 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2090 <WarningLevel>Level4</WarningLevel>
2091 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2092 </ClCompile>
2093 <ResourceCompile>
2094 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2095 <Culture>0x0409</Culture>
2096 </ResourceCompile>
2097 <Lib>
2098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2099 <TargetMachine>MachineX64</TargetMachine>
2100 </Lib>
2101 </ItemDefinitionGroup>
2102 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2103 <ClCompile>
2104 <Optimization>MaxSpeed</Optimization>
2105 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2106 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2107 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2108 <StringPooling>true</StringPooling>
2109 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2110 <FunctionLevelLinking>true</FunctionLevelLinking>
2111 <WarningLevel>Level4</WarningLevel>
2112 </ClCompile>
2113 <ResourceCompile>
2114 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2115 <Culture>0x0409</Culture>
2116 </ResourceCompile>
2117 <Lib>
2118 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2119 <TargetMachine>MachineX86</TargetMachine>
2120 </Lib>
2121 </ItemDefinitionGroup>
2122 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2123 <Midl>
2124 <TargetEnvironment>X64</TargetEnvironment>
2125 </Midl>
2126 <ClCompile>
2127 <Optimization>MaxSpeed</Optimization>
2128 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2129 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2130 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2131 <StringPooling>true</StringPooling>
2132 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2133 <FunctionLevelLinking>true</FunctionLevelLinking>
2134 <WarningLevel>Level4</WarningLevel>
2135 </ClCompile>
2136 <ResourceCompile>
2137 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2138 <Culture>0x0409</Culture>
2139 </ResourceCompile>
2140 <Lib>
2141 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2142 <TargetMachine>MachineX64</TargetMachine>
2143 </Lib>
2144 </ItemDefinitionGroup>
2145 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2146 <ClCompile>
2147 <Optimization>MaxSpeed</Optimization>
2148 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2149 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2150 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2151 <StringPooling>true</StringPooling>
2152 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2153 <FunctionLevelLinking>true</FunctionLevelLinking>
2154 <WarningLevel>Level4</WarningLevel>
2155 </ClCompile>
2156 <ResourceCompile>
2157 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <Culture>0x0409</Culture>
2159 </ResourceCompile>
2160 <Lib>
2161 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2162 <TargetMachine>MachineX86</TargetMachine>
2163 </Lib>
2164 </ItemDefinitionGroup>
2165 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2166 <Midl>
2167 <TargetEnvironment>X64</TargetEnvironment>
2168 </Midl>
2169 <ClCompile>
2170 <Optimization>MaxSpeed</Optimization>
2171 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2172 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2173 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2174 <StringPooling>true</StringPooling>
2175 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2176 <FunctionLevelLinking>true</FunctionLevelLinking>
2177 <WarningLevel>Level4</WarningLevel>
2178 </ClCompile>
2179 <ResourceCompile>
2180 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2181 <Culture>0x0409</Culture>
2182 </ResourceCompile>
2183 <Lib>
2184 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2185 <TargetMachine>MachineX64</TargetMachine>
2186 </Lib>
2187 </ItemDefinitionGroup>
2188 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2189 <ClCompile>
2190 <Optimization>MaxSpeed</Optimization>
2191 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2192 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2193 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2194 <StringPooling>true</StringPooling>
2195 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2196 <FunctionLevelLinking>true</FunctionLevelLinking>
2197 <WarningLevel>Level4</WarningLevel>
2198 </ClCompile>
2199 <ResourceCompile>
2200 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2201 <Culture>0x0409</Culture>
2202 </ResourceCompile>
2203 <Lib>
2204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2205 <TargetMachine>MachineX86</TargetMachine>
2206 </Lib>
2207 </ItemDefinitionGroup>
2208 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2209 <ClCompile>
2210 <Optimization>MaxSpeed</Optimization>
2211 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2212 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2213 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2214 <StringPooling>true</StringPooling>
2215 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2216 <FunctionLevelLinking>true</FunctionLevelLinking>
2217 <WarningLevel>Level4</WarningLevel>
2218 </ClCompile>
2219 <ResourceCompile>
2220 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2221 <Culture>0x0409</Culture>
2222 </ResourceCompile>
2223 <Lib>
2224 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2225 <TargetMachine>MachineX86</TargetMachine>
2226 </Lib>
2227 </ItemDefinitionGroup>
2228 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2229 <Midl>
2230 <TargetEnvironment>X64</TargetEnvironment>
2231 </Midl>
2232 <ClCompile>
2233 <Optimization>MaxSpeed</Optimization>
2234 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2235 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2236 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2237 <StringPooling>true</StringPooling>
2238 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2239 <FunctionLevelLinking>true</FunctionLevelLinking>
2240 <WarningLevel>Level4</WarningLevel>
2241 </ClCompile>
2242 <ResourceCompile>
2243 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2244 <Culture>0x0409</Culture>
2245 </ResourceCompile>
2246 <Lib>
2247 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2248 <TargetMachine>MachineX64</TargetMachine>
2249 </Lib>
2250 </ItemDefinitionGroup>
2251 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2252 <Midl>
2253 <TargetEnvironment>X64</TargetEnvironment>
2254 </Midl>
2255 <ClCompile>
2256 <Optimization>MaxSpeed</Optimization>
2257 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2258 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2259 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2260 <StringPooling>true</StringPooling>
2261 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2262 <FunctionLevelLinking>true</FunctionLevelLinking>
2263 <WarningLevel>Level4</WarningLevel>
2264 </ClCompile>
2265 <ResourceCompile>
2266 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2267 <Culture>0x0409</Culture>
2268 </ResourceCompile>
2269 <Lib>
2270 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2271 <TargetMachine>MachineX64</TargetMachine>
2272 </Lib>
2273 </ItemDefinitionGroup>
2274 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
2275 <ClCompile>
2276 <Optimization>MaxSpeed</Optimization>
2277 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2278 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2279 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2280 <StringPooling>true</StringPooling>
2281 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2282 <FunctionLevelLinking>true</FunctionLevelLinking>
2283 <WarningLevel>Level4</WarningLevel>
2284 </ClCompile>
2285 <ResourceCompile>
2286 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2287 <Culture>0x0409</Culture>
2288 </ResourceCompile>
2289 <Lib>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <TargetMachine>MachineX86</TargetMachine>
2292 </Lib>
2293 </ItemDefinitionGroup>
2294 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2295 <Midl>
2296 <TargetEnvironment>X64</TargetEnvironment>
2297 </Midl>
2298 <ClCompile>
2299 <Optimization>MaxSpeed</Optimization>
2300 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2301 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2302 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2303 <StringPooling>true</StringPooling>
2304 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2305 <FunctionLevelLinking>true</FunctionLevelLinking>
2306 <WarningLevel>Level4</WarningLevel>
2307 </ClCompile>
2308 <ResourceCompile>
2309 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2310 <Culture>0x0409</Culture>
2311 </ResourceCompile>
2312 <Lib>
2313 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2314 <TargetMachine>MachineX64</TargetMachine>
2315 </Lib>
2316 </ItemDefinitionGroup>
2317 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2318 <ClCompile>
2319 <Optimization>MaxSpeed</Optimization>
2320 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2321 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC14.30\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2322 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2323 <StringPooling>true</StringPooling>
2324 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2325 <FunctionLevelLinking>true</FunctionLevelLinking>
2326 <WarningLevel>Level4</WarningLevel>
2327 </ClCompile>
2328 <ResourceCompile>
2329 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2330 <Culture>0x0409</Culture>
2331 </ResourceCompile>
2332 <Lib>
2333 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2334 <TargetMachine>MachineX86</TargetMachine>
2335 </Lib>
2336 </ItemDefinitionGroup>
2337 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2338 <Midl>
2339 <TargetEnvironment>X64</TargetEnvironment>
2340 </Midl>
2341 <ClCompile>
2342 <Optimization>MaxSpeed</Optimization>
2343 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2344 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC14.30\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2345 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2346 <StringPooling>true</StringPooling>
2347 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2348 <FunctionLevelLinking>true</FunctionLevelLinking>
2349 <WarningLevel>Level4</WarningLevel>
2350 </ClCompile>
2351 <ResourceCompile>
2352 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2353 <Culture>0x0409</Culture>
2354 </ResourceCompile>
2355 <Lib>
2356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2357 <TargetMachine>MachineX64</TargetMachine>
2358 </Lib>
2359 </ItemDefinitionGroup>
2360 <ItemGroup>
2361 <ClCompile Include="..\..\..\..\lib\altsvc.c" />
2362 <ClCompile Include="..\..\..\..\lib\amigaos.c" />
2363 <ClCompile Include="..\..\..\..\lib\asyn-ares.c" />
2364 <ClCompile Include="..\..\..\..\lib\asyn-thread.c" />
2365 <ClCompile Include="..\..\..\..\lib\base64.c" />
2366 <ClCompile Include="..\..\..\..\lib\bufref.c" />
2367 <ClCompile Include="..\..\..\..\lib\c-hyper.c" />
2368 <ClCompile Include="..\..\..\..\lib\conncache.c" />
2369 <ClCompile Include="..\..\..\..\lib\connect.c" />
2370 <ClCompile Include="..\..\..\..\lib\content_encoding.c" />
2371 <ClCompile Include="..\..\..\..\lib\cookie.c" />
2372 <ClCompile Include="..\..\..\..\lib\curl_addrinfo.c" />
2373 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2374 <ClCompile Include="..\..\..\..\lib\curl_des.c" />
2375 <ClCompile Include="..\..\..\..\lib\curl_endian.c" />
2376 <ClCompile Include="..\..\..\..\lib\curl_fnmatch.c" />
2377 <ClCompile Include="..\..\..\..\lib\curl_gethostname.c" />
2378 <ClCompile Include="..\..\..\..\lib\curl_get_line.c" />
2379 <ClCompile Include="..\..\..\..\lib\curl_gssapi.c" />
2380 <ClCompile Include="..\..\..\..\lib\curl_memrchr.c" />
2381 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2382 <ClCompile Include="..\..\..\..\lib\curl_ntlm_core.c" />
2383 <ClCompile Include="..\..\..\..\lib\curl_ntlm_wb.c" />
2384 <ClCompile Include="..\..\..\..\lib\curl_path.c" />
2385 <ClCompile Include="..\..\..\..\lib\curl_range.c" />
2386 <ClCompile Include="..\..\..\..\lib\curl_rtmp.c" />
2387 <ClCompile Include="..\..\..\..\lib\curl_sasl.c" />
2388 <ClCompile Include="..\..\..\..\lib\curl_sspi.c" />
2389 <ClCompile Include="..\..\..\..\lib\curl_threads.c" />
2390 <ClCompile Include="..\..\..\..\lib\dict.c" />
2391 <ClCompile Include="..\..\..\..\lib\doh.c" />
2392 <ClCompile Include="..\..\..\..\lib\dotdot.c" />
2393 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2394 <ClCompile Include="..\..\..\..\lib\easy.c" />
2395 <ClCompile Include="..\..\..\..\lib\easygetopt.c" />
2396 <ClCompile Include="..\..\..\..\lib\easyoptions.c" />
2397 <ClCompile Include="..\..\..\..\lib\escape.c" />
2398 <ClCompile Include="..\..\..\..\lib\file.c" />
2399 <ClCompile Include="..\..\..\..\lib\fileinfo.c" />
2400 <ClCompile Include="..\..\..\..\lib\formdata.c" />
2401 <ClCompile Include="..\..\..\..\lib\ftp.c" />
2402 <ClCompile Include="..\..\..\..\lib\ftplistparser.c" />
2403 <ClCompile Include="..\..\..\..\lib\getenv.c" />
2404 <ClCompile Include="..\..\..\..\lib\getinfo.c" />
2405 <ClCompile Include="..\..\..\..\lib\gopher.c" />
2406 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
2407 <ClCompile Include="..\..\..\..\lib\hash.c" />
2408 <ClCompile Include="..\..\..\..\lib\headers.c" />
2409 <ClCompile Include="..\..\..\..\lib\hmac.c" />
2410 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
2411 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
2412 <ClCompile Include="..\..\..\..\lib\hostip6.c" />
2413 <ClCompile Include="..\..\..\..\lib\hostip.c" />
2414 <ClCompile Include="..\..\..\..\lib\hostsyn.c" />
2415 <ClCompile Include="..\..\..\..\lib\hsts.c" />
2416 <ClCompile Include="..\..\..\..\lib\http2.c" />
2417 <ClCompile Include="..\..\..\..\lib\http_aws_sigv4.c" />
2418 <ClCompile Include="..\..\..\..\lib\http.c" />
2419 <ClCompile Include="..\..\..\..\lib\http_chunks.c" />
2420 <ClCompile Include="..\..\..\..\lib\http_digest.c" />
2421 <ClCompile Include="..\..\..\..\lib\http_negotiate.c" />
2422 <ClCompile Include="..\..\..\..\lib\http_ntlm.c" />
2423 <ClCompile Include="..\..\..\..\lib\http_proxy.c" />
2424 <ClCompile Include="..\..\..\..\lib\idn_win32.c" />
2425 <ClCompile Include="..\..\..\..\lib\if2ip.c" />
2426 <ClCompile Include="..\..\..\..\lib\imap.c" />
2427 <ClCompile Include="..\..\..\..\lib\inet_ntop.c" />
2428 <ClCompile Include="..\..\..\..\lib\inet_pton.c" />
2429 <ClCompile Include="..\..\..\..\lib\krb5.c" />
2430 <ClCompile Include="..\..\..\..\lib\ldap.c" />
2431 <ClCompile Include="..\..\..\..\lib\llist.c" />
2432 <ClCompile Include="..\..\..\..\lib\md4.c" />
2433 <ClCompile Include="..\..\..\..\lib\md5.c" />
2434 <ClCompile Include="..\..\..\..\lib\memdebug.c" />
2435 <ClCompile Include="..\..\..\..\lib\mime.c" />
2436 <ClCompile Include="..\..\..\..\lib\mprintf.c" />
2437 <ClCompile Include="..\..\..\..\lib\mqtt.c" />
2438 <ClCompile Include="..\..\..\..\lib\multi.c" />
2439 <ClCompile Include="..\..\..\..\lib\netrc.c" />
2440 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2441 <ClCompile Include="..\..\..\..\lib\openldap.c" />
2442 <ClCompile Include="..\..\..\..\lib\parsedate.c" />
2443 <ClCompile Include="..\..\..\..\lib\pingpong.c" />
2444 <ClCompile Include="..\..\..\..\lib\pop3.c" />
2445 <ClCompile Include="..\..\..\..\lib\progress.c" />
2446 <ClCompile Include="..\..\..\..\lib\psl.c" />
2447 <ClCompile Include="..\..\..\..\lib\rand.c" />
2448 <ClCompile Include="..\..\..\..\lib\rename.c" />
2449 <ClCompile Include="..\..\..\..\lib\rtsp.c" />
2450 <ClCompile Include="..\..\..\..\lib\select.c" />
2451 <ClCompile Include="..\..\..\..\lib\sendf.c" />
2452 <ClCompile Include="..\..\..\..\lib\setopt.c" />
2453 <ClCompile Include="..\..\..\..\lib\sha256.c" />
2454 <ClCompile Include="..\..\..\..\lib\share.c" />
2455 <ClCompile Include="..\..\..\..\lib\slist.c" />
2456 <ClCompile Include="..\..\..\..\lib\smb.c" />
2457 <ClCompile Include="..\..\..\..\lib\smtp.c" />
2458 <ClCompile Include="..\..\..\..\lib\socketpair.c" />
2459 <ClCompile Include="..\..\..\..\lib\socks.c" />
2460 <ClCompile Include="..\..\..\..\lib\socks_gssapi.c" />
2461 <ClCompile Include="..\..\..\..\lib\socks_sspi.c" />
2462 <ClCompile Include="..\..\..\..\lib\speedcheck.c" />
2463 <ClCompile Include="..\..\..\..\lib\splay.c" />
2464 <ClCompile Include="..\..\..\..\lib\strcase.c" />
2465 <ClCompile Include="..\..\..\..\lib\strdup.c" />
2466 <ClCompile Include="..\..\..\..\lib\strerror.c" />
2467 <ClCompile Include="..\..\..\..\lib\strtok.c" />
2468 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2469 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
2470 <ClCompile Include="..\..\..\..\lib\telnet.c" />
2471 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2472 <ClCompile Include="..\..\..\..\lib\timediff.c" />
2473 <ClCompile Include="..\..\..\..\lib\timeval.c" />
2474 <ClCompile Include="..\..\..\..\lib\transfer.c" />
2475 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
2476 <ClCompile Include="..\..\..\..\lib\url.c" />
2477 <ClCompile Include="..\..\..\..\lib\version.c" />
2478 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2479 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2480 <ClCompile Include="..\..\..\..\lib\wildcard.c" />
2481 <ClCompile Include="..\..\..\..\lib\vauth\cleartext.c" />
2482 <ClCompile Include="..\..\..\..\lib\vauth\cram.c" />
2483 <ClCompile Include="..\..\..\..\lib\vauth\digest.c" />
2484 <ClCompile Include="..\..\..\..\lib\vauth\digest_sspi.c" />
2485 <ClCompile Include="..\..\..\..\lib\vauth\gsasl.c" />
2486 <ClCompile Include="..\..\..\..\lib\vauth\krb5_gssapi.c" />
2487 <ClCompile Include="..\..\..\..\lib\vauth\krb5_sspi.c" />
2488 <ClCompile Include="..\..\..\..\lib\vauth\ntlm.c" />
2489 <ClCompile Include="..\..\..\..\lib\vauth\ntlm_sspi.c" />
2490 <ClCompile Include="..\..\..\..\lib\vauth\oauth2.c" />
2491 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
2492 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
2493 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2494 <ClCompile Include="..\..\..\..\lib\vquic\msh3.c" />
2495 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
2496 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
2497 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
2498 <ClCompile Include="..\..\..\..\lib\vssh\libssh2.c" />
2499 <ClCompile Include="..\..\..\..\lib\vssh\libssh.c" />
2500 <ClCompile Include="..\..\..\..\lib\vssh\wolfssh.c" />
2501 <ClCompile Include="..\..\..\..\lib\vtls\bearssl.c" />
2502 <ClCompile Include="..\..\..\..\lib\vtls\gskit.c" />
2503 <ClCompile Include="..\..\..\..\lib\vtls\gtls.c" />
2504 <ClCompile Include="..\..\..\..\lib\vtls\hostcheck.c" />
2505 <ClCompile Include="..\..\..\..\lib\vtls\keylog.c" />
2506 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls.c" />
2507 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls_threadlock.c" />
2508 <ClCompile Include="..\..\..\..\lib\vtls\nss.c" />
2509 <ClCompile Include="..\..\..\..\lib\vtls\openssl.c" />
2510 <ClCompile Include="..\..\..\..\lib\vtls\rustls.c" />
2511 <ClCompile Include="..\..\..\..\lib\vtls\schannel.c" />
2512 <ClCompile Include="..\..\..\..\lib\vtls\schannel_verify.c" />
2513 <ClCompile Include="..\..\..\..\lib\vtls\sectransp.c" />
2514 <ClCompile Include="..\..\..\..\lib\vtls\vtls.c" />
2515 <ClCompile Include="..\..\..\..\lib\vtls\wolfssl.c" />
2516 <ClCompile Include="..\..\..\..\lib\vtls\x509asn1.c" />
2517 </ItemGroup>
2518 <ItemGroup>
2519 <ClInclude Include="..\..\..\..\lib\altsvc.h" />
2520 <ClInclude Include="..\..\..\..\lib\amigaos.h" />
2521 <ClInclude Include="..\..\..\..\lib\arpa_telnet.h" />
2522 <ClInclude Include="..\..\..\..\lib\asyn.h" />
2523 <ClInclude Include="..\..\..\..\lib\bufref.h" />
2524 <ClInclude Include="..\..\..\..\lib\c-hyper.h" />
2525 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2526 <ClInclude Include="..\..\..\..\lib\conncache.h" />
2527 <ClInclude Include="..\..\..\..\lib\connect.h" />
2528 <ClInclude Include="..\..\..\..\lib\content_encoding.h" />
2529 <ClInclude Include="..\..\..\..\lib\cookie.h" />
2530 <ClInclude Include="..\..\..\..\lib\curl_addrinfo.h" />
2531 <ClInclude Include="..\..\..\..\lib\curl_base64.h" />
2532 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2533 <ClInclude Include="..\..\..\..\lib\curl_des.h" />
2534 <ClInclude Include="..\..\..\..\lib\curl_endian.h" />
2535 <ClInclude Include="..\..\..\..\lib\curl_fnmatch.h" />
2536 <ClInclude Include="..\..\..\..\lib\curl_gethostname.h" />
2537 <ClInclude Include="..\..\..\..\lib\curl_get_line.h" />
2538 <ClInclude Include="..\..\..\..\lib\curl_gssapi.h" />
2539 <ClInclude Include="..\..\..\..\lib\curl_hmac.h" />
2540 <ClInclude Include="..\..\..\..\lib\curl_krb5.h" />
2541 <ClInclude Include="..\..\..\..\lib\curl_ldap.h" />
2542 <ClInclude Include="..\..\..\..\lib\curl_md4.h" />
2543 <ClInclude Include="..\..\..\..\lib\curl_md5.h" />
2544 <ClInclude Include="..\..\..\..\lib\curl_memory.h" />
2545 <ClInclude Include="..\..\..\..\lib\curl_memrchr.h" />
2546 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2547 <ClInclude Include="..\..\..\..\lib\curl_ntlm_core.h" />
2548 <ClInclude Include="..\..\..\..\lib\curl_ntlm_wb.h" />
2549 <ClInclude Include="..\..\..\..\lib\curl_path.h" />
2550 <ClInclude Include="..\..\..\..\lib\curl_printf.h" />
2551 <ClInclude Include="..\..\..\..\lib\curl_range.h" />
2552 <ClInclude Include="..\..\..\..\lib\curl_rtmp.h" />
2553 <ClInclude Include="..\..\..\..\lib\curl_sasl.h" />
2554 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2555 <ClInclude Include="..\..\..\..\lib\curl_setup_once.h" />
2556 <ClInclude Include="..\..\..\..\lib\curl_sha256.h" />
2557 <ClInclude Include="..\..\..\..\lib\curl_sspi.h" />
2558 <ClInclude Include="..\..\..\..\lib\curl_threads.h" />
2559 <ClInclude Include="..\..\..\..\lib\curlx.h" />
2560 <ClInclude Include="..\..\..\..\lib\dict.h" />
2561 <ClInclude Include="..\..\..\..\lib\doh.h" />
2562 <ClInclude Include="..\..\..\..\lib\dotdot.h" />
2563 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2564 <ClInclude Include="..\..\..\..\lib\easyif.h" />
2565 <ClInclude Include="..\..\..\..\lib\easyoptions.h" />
2566 <ClInclude Include="..\..\..\..\lib\escape.h" />
2567 <ClInclude Include="..\..\..\..\lib\file.h" />
2568 <ClInclude Include="..\..\..\..\lib\fileinfo.h" />
2569 <ClInclude Include="..\..\..\..\lib\formdata.h" />
2570 <ClInclude Include="..\..\..\..\lib\ftp.h" />
2571 <ClInclude Include="..\..\..\..\lib\ftplistparser.h" />
2572 <ClInclude Include="..\..\..\..\lib\getinfo.h" />
2573 <ClInclude Include="..\..\..\..\lib\gopher.h" />
2574 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
2575 <ClInclude Include="..\..\..\..\lib\hash.h" />
2576 <ClInclude Include="..\..\..\..\lib\headers.h" />
2577 <ClInclude Include="..\..\..\..\lib\hostip.h" />
2578 <ClInclude Include="..\..\..\..\lib\hsts.h" />
2579 <ClInclude Include="..\..\..\..\lib\http2.h" />
2580 <ClInclude Include="..\..\..\..\lib\http_aws_sigv4.h" />
2581 <ClInclude Include="..\..\..\..\lib\http_chunks.h" />
2582 <ClInclude Include="..\..\..\..\lib\http_digest.h" />
2583 <ClInclude Include="..\..\..\..\lib\http.h" />
2584 <ClInclude Include="..\..\..\..\lib\http_negotiate.h" />
2585 <ClInclude Include="..\..\..\..\lib\http_ntlm.h" />
2586 <ClInclude Include="..\..\..\..\lib\http_proxy.h" />
2587 <ClInclude Include="..\..\..\..\lib\if2ip.h" />
2588 <ClInclude Include="..\..\..\..\lib\imap.h" />
2589 <ClInclude Include="..\..\..\..\lib\inet_ntop.h" />
2590 <ClInclude Include="..\..\..\..\lib\inet_pton.h" />
2591 <ClInclude Include="..\..\..\..\lib\llist.h" />
2592 <ClInclude Include="..\..\..\..\lib\memdebug.h" />
2593 <ClInclude Include="..\..\..\..\lib\mime.h" />
2594 <ClInclude Include="..\..\..\..\lib\mqtt.h" />
2595 <ClInclude Include="..\..\..\..\lib\multihandle.h" />
2596 <ClInclude Include="..\..\..\..\lib\multiif.h" />
2597 <ClInclude Include="..\..\..\..\lib\netrc.h" />
2598 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2599 <ClInclude Include="..\..\..\..\lib\parsedate.h" />
2600 <ClInclude Include="..\..\..\..\lib\pingpong.h" />
2601 <ClInclude Include="..\..\..\..\lib\pop3.h" />
2602 <ClInclude Include="..\..\..\..\lib\progress.h" />
2603 <ClInclude Include="..\..\..\..\lib\psl.h" />
2604 <ClInclude Include="..\..\..\..\lib\quic.h" />
2605 <ClInclude Include="..\..\..\..\lib\rand.h" />
2606 <ClInclude Include="..\..\..\..\lib\rename.h" />
2607 <ClInclude Include="..\..\..\..\lib\rtsp.h" />
2608 <ClInclude Include="..\..\..\..\lib\select.h" />
2609 <ClInclude Include="..\..\..\..\lib\sendf.h" />
2610 <ClInclude Include="..\..\..\..\lib\setopt.h" />
2611 <ClInclude Include="..\..\..\..\lib\setup-vms.h" />
2612 <ClInclude Include="..\..\..\..\lib\share.h" />
2613 <ClInclude Include="..\..\..\..\lib\sigpipe.h" />
2614 <ClInclude Include="..\..\..\..\lib\slist.h" />
2615 <ClInclude Include="..\..\..\..\lib\smb.h" />
2616 <ClInclude Include="..\..\..\..\lib\smtp.h" />
2617 <ClInclude Include="..\..\..\..\lib\sockaddr.h" />
2618 <ClInclude Include="..\..\..\..\lib\socketpair.h" />
2619 <ClInclude Include="..\..\..\..\lib\socks.h" />
2620 <ClInclude Include="..\..\..\..\lib\speedcheck.h" />
2621 <ClInclude Include="..\..\..\..\lib\splay.h" />
2622 <ClInclude Include="..\..\..\..\lib\strcase.h" />
2623 <ClInclude Include="..\..\..\..\lib\strdup.h" />
2624 <ClInclude Include="..\..\..\..\lib\strerror.h" />
2625 <ClInclude Include="..\..\..\..\lib\strtok.h" />
2626 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2627 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
2628 <ClInclude Include="..\..\..\..\lib\telnet.h" />
2629 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2630 <ClInclude Include="..\..\..\..\lib\timediff.h" />
2631 <ClInclude Include="..\..\..\..\lib\timeval.h" />
2632 <ClInclude Include="..\..\..\..\lib\transfer.h" />
2633 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
2634 <ClInclude Include="..\..\..\..\lib\urldata.h" />
2635 <ClInclude Include="..\..\..\..\lib\url.h" />
2636 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2637 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2638 <ClInclude Include="..\..\..\..\lib\wildcard.h" />
2639 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
2640 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
2641 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2642 <ClInclude Include="..\..\..\..\lib\vquic\msh3.h" />
2643 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
2644 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
2645 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
2646 <ClInclude Include="..\..\..\..\lib\vssh\ssh.h" />
2647 <ClInclude Include="..\..\..\..\lib\vtls\bearssl.h" />
2648 <ClInclude Include="..\..\..\..\lib\vtls\gskit.h" />
2649 <ClInclude Include="..\..\..\..\lib\vtls\gtls.h" />
2650 <ClInclude Include="..\..\..\..\lib\vtls\hostcheck.h" />
2651 <ClInclude Include="..\..\..\..\lib\vtls\keylog.h" />
2652 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls.h" />
2653 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls_threadlock.h" />
2654 <ClInclude Include="..\..\..\..\lib\vtls\nssg.h" />
2655 <ClInclude Include="..\..\..\..\lib\vtls\openssl.h" />
2656 <ClInclude Include="..\..\..\..\lib\vtls\rustls.h" />
2657 <ClInclude Include="..\..\..\..\lib\vtls\schannel.h" />
2658 <ClInclude Include="..\..\..\..\lib\vtls\sectransp.h" />
2659 <ClInclude Include="..\..\..\..\lib\vtls\vtls.h" />
2660 <ClInclude Include="..\..\..\..\lib\vtls\wolfssl.h" />
2661 <ClInclude Include="..\..\..\..\lib\vtls\x509asn1.h" />
2662 </ItemGroup>
2663 <ItemGroup>
2664 <ResourceCompile Include="..\..\..\..\lib\libcurl.rc" />
2665 </ItemGroup>
2666 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2667 <ImportGroup Label="ExtensionTargets">
2668 </ImportGroup>
2669 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{5228E9CE-A216-422F-A5E6-58E95E2DD71D}</ProjectGuid>
230 <RootNamespace>curl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
234 <ConfigurationType>Application</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v143</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
240 <ConfigurationType>Application</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v143</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>Application</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v143</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>Application</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v143</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>Application</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v143</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
264 <ConfigurationType>Application</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v143</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
270 <ConfigurationType>Application</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v143</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>Application</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v143</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
282 <ConfigurationType>Application</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v143</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
288 <ConfigurationType>Application</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v143</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
294 <ConfigurationType>Application</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v143</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>Application</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v143</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>Application</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v143</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>Application</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v143</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>Application</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v143</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>Application</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v143</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
330 <ConfigurationType>Application</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v143</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
336 <ConfigurationType>Application</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v143</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
342 <ConfigurationType>Application</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v143</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>Application</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v143</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
354 <ConfigurationType>Application</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v143</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>Application</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v143</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>Application</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v143</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>Application</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v143</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
378 <ConfigurationType>Application</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v143</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>Application</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v143</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
390 <ConfigurationType>Application</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v143</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>Application</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v143</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
402 <ConfigurationType>Application</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v143</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
408 <ConfigurationType>Application</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v143</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>Application</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v143</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>Application</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v143</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>Application</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v143</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
432 <ConfigurationType>Application</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v143</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
438 <ConfigurationType>Application</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v143</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>Application</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v143</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
450 <ConfigurationType>Application</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v143</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
456 <ConfigurationType>Application</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v143</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
462 <ConfigurationType>Application</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v143</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>Application</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v143</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>Application</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v143</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>Application</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v143</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>Application</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v143</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>Application</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v143</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
498 <ConfigurationType>Application</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v143</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
504 <ConfigurationType>Application</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v143</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
510 <ConfigurationType>Application</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v143</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>Application</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v143</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
522 <ConfigurationType>Application</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v143</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>Application</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v143</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>Application</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v143</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>Application</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v143</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
546 <ConfigurationType>Application</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v143</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>Application</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v143</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
558 <ConfigurationType>Application</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v143</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>Application</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v143</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)src\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)src\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)src\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)src\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)src\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
771 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">false</LinkIncremental>
772 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">false</LinkIncremental>
773 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
774 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
775 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)src\</IntDir>
776 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
777 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">false</LinkIncremental>
778 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">false</LinkIncremental>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)src\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
783 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
784 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
785 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)src\</IntDir>
788 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
789 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
790 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
791 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
792 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
793 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
794 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
795 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
796 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
797 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
798 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
799 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
800 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
801 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
802 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
803 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
804 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
805 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
806 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
807 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
808 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
809 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
812 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
813 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
814 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
815 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
816 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
817 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
818 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
819 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
820 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
821 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
824 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
825 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
826 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
827 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
828 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
829 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
830 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
831 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
832 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
835 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
836 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
837 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
838 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
840 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
841 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">false</LinkIncremental>
842 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
843 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
844 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">false</LinkIncremental>
845 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
847 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">false</LinkIncremental>
848 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
849 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
850 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">false</LinkIncremental>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
853 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
854 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
855 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
856 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
859 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
860 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
861 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
862 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
864 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
865 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
866 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
867 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
868 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">false</LinkIncremental>
869 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
871 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">false</LinkIncremental>
872 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
873 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
874 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">false</LinkIncremental>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
877 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
878 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
879 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
880 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
881 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
882 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
883 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
884 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
885 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
886 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
887 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
888 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
889 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
890 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
891 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
892 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
893 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
894 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
895 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
896 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
897 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
898 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
899 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
900 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC14.30\$(Configuration)\</OutDir>
901 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
902 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
903 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
904 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
905 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
906 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC14.30\$(Configuration)\</OutDir>
907 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
908 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
909 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">false</LinkIncremental>
910 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
911 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
912 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
913 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
914 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
915 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
916 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
917 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
918 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
919 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
920 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
921 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
922 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
923 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
924 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
925 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
926 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
927 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
928 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
929 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
930 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
931 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
932 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
933 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
934 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
935 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
936 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
937 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
938 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
939 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
940 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
941 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
942 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
943 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(ProjectName)</TargetName>
944 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(ProjectName)</TargetName>
945 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
946 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
947 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
948 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
949 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)</TargetName>
950 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(ProjectName)</TargetName>
951 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(ProjectName)</TargetName>
952 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(ProjectName)</TargetName>
953 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
954 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
955 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
956 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
957 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(ProjectName)</TargetName>
958 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(ProjectName)</TargetName>
959 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
960 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
961 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
962 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
963 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)</TargetName>
964 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(ProjectName)</TargetName>
965 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(ProjectName)</TargetName>
966 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(ProjectName)</TargetName>
967 </PropertyGroup>
968 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
969 <Midl>
970 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
971 <HeaderFileName>
972 </HeaderFileName>
973 </Midl>
974 <ClCompile>
975 <Optimization>MaxSpeed</Optimization>
976 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
977 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
978 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
979 <StringPooling>true</StringPooling>
980 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
981 <FunctionLevelLinking>true</FunctionLevelLinking>
982 <WarningLevel>Level4</WarningLevel>
983 </ClCompile>
984 <ResourceCompile>
985 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
986 <Culture>0x0409</Culture>
987 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
988 </ResourceCompile>
989 <Link>
990 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
991 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
992 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
993 <SubSystem>Console</SubSystem>
994 <TargetMachine>MachineX86</TargetMachine>
995 </Link>
996 </ItemDefinitionGroup>
997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
998 <Midl>
999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1000 <HeaderFileName>
1001 </HeaderFileName>
1002 </Midl>
1003 <ClCompile>
1004 <Optimization>MaxSpeed</Optimization>
1005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1008 <StringPooling>true</StringPooling>
1009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1010 <FunctionLevelLinking>true</FunctionLevelLinking>
1011 <WarningLevel>Level4</WarningLevel>
1012 </ClCompile>
1013 <ResourceCompile>
1014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1015 <Culture>0x0409</Culture>
1016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1017 </ResourceCompile>
1018 <Link>
1019 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1022 <SubSystem>Console</SubSystem>
1023 <TargetMachine>MachineX86</TargetMachine>
1024 <GenerateDebugInformation>true</GenerateDebugInformation>
1025 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1026 </Link>
1027 </ItemDefinitionGroup>
1028 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1029 <Midl>
1030 <TargetEnvironment>X64</TargetEnvironment>
1031 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1032 <HeaderFileName>
1033 </HeaderFileName>
1034 </Midl>
1035 <ClCompile>
1036 <Optimization>MaxSpeed</Optimization>
1037 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1038 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1039 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1040 <StringPooling>true</StringPooling>
1041 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1042 <FunctionLevelLinking>true</FunctionLevelLinking>
1043 <WarningLevel>Level4</WarningLevel>
1044 </ClCompile>
1045 <ResourceCompile>
1046 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1047 <Culture>0x0409</Culture>
1048 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1049 </ResourceCompile>
1050 <Link>
1051 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1052 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1053 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1054 <SubSystem>Console</SubSystem>
1055 <TargetMachine>MachineX64</TargetMachine>
1056 </Link>
1057 </ItemDefinitionGroup>
1058 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1059 <Midl>
1060 <TargetEnvironment>X64</TargetEnvironment>
1061 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1062 <HeaderFileName>
1063 </HeaderFileName>
1064 </Midl>
1065 <ClCompile>
1066 <Optimization>MaxSpeed</Optimization>
1067 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1068 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1069 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1070 <StringPooling>true</StringPooling>
1071 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1072 <FunctionLevelLinking>true</FunctionLevelLinking>
1073 <WarningLevel>Level4</WarningLevel>
1074 </ClCompile>
1075 <ResourceCompile>
1076 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1077 <Culture>0x0409</Culture>
1078 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1079 </ResourceCompile>
1080 <Link>
1081 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1082 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1083 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1084 <SubSystem>Console</SubSystem>
1085 <TargetMachine>MachineX64</TargetMachine>
1086 <GenerateDebugInformation>true</GenerateDebugInformation>
1087 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1088 </Link>
1089 </ItemDefinitionGroup>
1090 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1091 <Midl>
1092 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1093 <HeaderFileName>
1094 </HeaderFileName>
1095 </Midl>
1096 <ClCompile>
1097 <Optimization>MaxSpeed</Optimization>
1098 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1099 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1100 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1101 <StringPooling>true</StringPooling>
1102 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1103 <FunctionLevelLinking>true</FunctionLevelLinking>
1104 <WarningLevel>Level4</WarningLevel>
1105 </ClCompile>
1106 <ResourceCompile>
1107 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1108 <Culture>0x0409</Culture>
1109 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1110 </ResourceCompile>
1111 <Link>
1112 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1113 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1114 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1115 <SubSystem>Console</SubSystem>
1116 <TargetMachine>MachineX86</TargetMachine>
1117 </Link>
1118 </ItemDefinitionGroup>
1119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1120 <Midl>
1121 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1122 <HeaderFileName>
1123 </HeaderFileName>
1124 </Midl>
1125 <ClCompile>
1126 <Optimization>MaxSpeed</Optimization>
1127 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1128 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1129 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1130 <StringPooling>true</StringPooling>
1131 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1132 <FunctionLevelLinking>true</FunctionLevelLinking>
1133 <WarningLevel>Level4</WarningLevel>
1134 </ClCompile>
1135 <ResourceCompile>
1136 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1137 <Culture>0x0409</Culture>
1138 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1139 </ResourceCompile>
1140 <Link>
1141 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1142 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1143 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1144 <SubSystem>Console</SubSystem>
1145 <TargetMachine>MachineX86</TargetMachine>
1146 <GenerateDebugInformation>true</GenerateDebugInformation>
1147 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1148 </Link>
1149 </ItemDefinitionGroup>
1150 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1151 <Midl>
1152 <TargetEnvironment>X64</TargetEnvironment>
1153 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1154 <HeaderFileName>
1155 </HeaderFileName>
1156 </Midl>
1157 <ClCompile>
1158 <Optimization>MaxSpeed</Optimization>
1159 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1160 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1161 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1162 <StringPooling>true</StringPooling>
1163 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1164 <FunctionLevelLinking>true</FunctionLevelLinking>
1165 <WarningLevel>Level4</WarningLevel>
1166 </ClCompile>
1167 <ResourceCompile>
1168 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1169 <Culture>0x0409</Culture>
1170 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1171 </ResourceCompile>
1172 <Link>
1173 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1174 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1175 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1176 <SubSystem>Console</SubSystem>
1177 <TargetMachine>MachineX64</TargetMachine>
1178 </Link>
1179 </ItemDefinitionGroup>
1180 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1181 <Midl>
1182 <TargetEnvironment>X64</TargetEnvironment>
1183 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1184 <HeaderFileName>
1185 </HeaderFileName>
1186 </Midl>
1187 <ClCompile>
1188 <Optimization>MaxSpeed</Optimization>
1189 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1190 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1191 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1192 <StringPooling>true</StringPooling>
1193 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1194 <FunctionLevelLinking>true</FunctionLevelLinking>
1195 <WarningLevel>Level4</WarningLevel>
1196 </ClCompile>
1197 <ResourceCompile>
1198 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1199 <Culture>0x0409</Culture>
1200 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1201 </ResourceCompile>
1202 <Link>
1203 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1205 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1206 <SubSystem>Console</SubSystem>
1207 <TargetMachine>MachineX64</TargetMachine>
1208 <GenerateDebugInformation>true</GenerateDebugInformation>
1209 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1210 </Link>
1211 </ItemDefinitionGroup>
1212 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1213 <Midl>
1214 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1215 <HeaderFileName>
1216 </HeaderFileName>
1217 </Midl>
1218 <ClCompile>
1219 <Optimization>Disabled</Optimization>
1220 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1221 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1222 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1223 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1224 <WarningLevel>Level4</WarningLevel>
1225 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1226 </ClCompile>
1227 <ResourceCompile>
1228 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1229 <Culture>0x0409</Culture>
1230 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1231 </ResourceCompile>
1232 <Link>
1233 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1234 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1235 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1236 <GenerateDebugInformation>true</GenerateDebugInformation>
1237 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1238 <SubSystem>Console</SubSystem>
1239 <TargetMachine>MachineX86</TargetMachine>
1240 </Link>
1241 </ItemDefinitionGroup>
1242 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1243 <Midl>
1244 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1245 <HeaderFileName>
1246 </HeaderFileName>
1247 </Midl>
1248 <ClCompile>
1249 <Optimization>Disabled</Optimization>
1250 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1251 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1252 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1253 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1254 <WarningLevel>Level4</WarningLevel>
1255 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1256 </ClCompile>
1257 <ResourceCompile>
1258 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1259 <Culture>0x0409</Culture>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 </ResourceCompile>
1262 <Link>
1263 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1264 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1265 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1266 <GenerateDebugInformation>true</GenerateDebugInformation>
1267 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1268 <SubSystem>Console</SubSystem>
1269 <TargetMachine>MachineX86</TargetMachine>
1270 </Link>
1271 </ItemDefinitionGroup>
1272 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1273 <Midl>
1274 <TargetEnvironment>X64</TargetEnvironment>
1275 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1276 <HeaderFileName>
1277 </HeaderFileName>
1278 </Midl>
1279 <ClCompile>
1280 <Optimization>Disabled</Optimization>
1281 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1282 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1283 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1284 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1292 </ResourceCompile>
1293 <Link>
1294 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1295 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1296 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1297 <GenerateDebugInformation>true</GenerateDebugInformation>
1298 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1299 <SubSystem>Console</SubSystem>
1300 <TargetMachine>MachineX64</TargetMachine>
1301 </Link>
1302 </ItemDefinitionGroup>
1303 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1304 <Midl>
1305 <TargetEnvironment>X64</TargetEnvironment>
1306 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1307 <HeaderFileName>
1308 </HeaderFileName>
1309 </Midl>
1310 <ClCompile>
1311 <Optimization>Disabled</Optimization>
1312 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1313 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1314 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1315 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1316 <WarningLevel>Level4</WarningLevel>
1317 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1318 </ClCompile>
1319 <ResourceCompile>
1320 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1321 <Culture>0x0409</Culture>
1322 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1323 </ResourceCompile>
1324 <Link>
1325 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1326 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1327 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1328 <GenerateDebugInformation>true</GenerateDebugInformation>
1329 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1330 <SubSystem>Console</SubSystem>
1331 <TargetMachine>MachineX64</TargetMachine>
1332 </Link>
1333 </ItemDefinitionGroup>
1334 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
1335 <Midl>
1336 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1337 <HeaderFileName>
1338 </HeaderFileName>
1339 </Midl>
1340 <ClCompile>
1341 <Optimization>Disabled</Optimization>
1342 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1343 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1344 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1345 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1346 <WarningLevel>Level4</WarningLevel>
1347 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1348 </ClCompile>
1349 <ResourceCompile>
1350 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1351 <Culture>0x0409</Culture>
1352 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1353 </ResourceCompile>
1354 <Link>
1355 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1357 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1358 <GenerateDebugInformation>true</GenerateDebugInformation>
1359 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1360 <SubSystem>Console</SubSystem>
1361 <TargetMachine>MachineX86</TargetMachine>
1362 </Link>
1363 </ItemDefinitionGroup>
1364 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
1365 <Midl>
1366 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1367 <HeaderFileName>
1368 </HeaderFileName>
1369 </Midl>
1370 <ClCompile>
1371 <Optimization>Disabled</Optimization>
1372 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1373 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1374 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1375 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1376 <WarningLevel>Level4</WarningLevel>
1377 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1378 </ClCompile>
1379 <ResourceCompile>
1380 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1381 <Culture>0x0409</Culture>
1382 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1383 </ResourceCompile>
1384 <Link>
1385 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1386 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1387 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1388 <GenerateDebugInformation>true</GenerateDebugInformation>
1389 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1390 <SubSystem>Console</SubSystem>
1391 <TargetMachine>MachineX86</TargetMachine>
1392 </Link>
1393 </ItemDefinitionGroup>
1394 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
1395 <Midl>
1396 <TargetEnvironment>X64</TargetEnvironment>
1397 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1398 <HeaderFileName>
1399 </HeaderFileName>
1400 </Midl>
1401 <ClCompile>
1402 <Optimization>Disabled</Optimization>
1403 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1404 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1405 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1406 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1407 <WarningLevel>Level4</WarningLevel>
1408 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1409 </ClCompile>
1410 <ResourceCompile>
1411 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <Culture>0x0409</Culture>
1413 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1414 </ResourceCompile>
1415 <Link>
1416 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1417 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1418 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1419 <GenerateDebugInformation>true</GenerateDebugInformation>
1420 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1421 <SubSystem>Console</SubSystem>
1422 <TargetMachine>MachineX64</TargetMachine>
1423 </Link>
1424 </ItemDefinitionGroup>
1425 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1426 <Midl>
1427 <TargetEnvironment>X64</TargetEnvironment>
1428 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1429 <HeaderFileName>
1430 </HeaderFileName>
1431 </Midl>
1432 <ClCompile>
1433 <Optimization>Disabled</Optimization>
1434 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1435 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1436 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1437 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1438 <WarningLevel>Level4</WarningLevel>
1439 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1440 </ClCompile>
1441 <ResourceCompile>
1442 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1443 <Culture>0x0409</Culture>
1444 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1445 </ResourceCompile>
1446 <Link>
1447 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1449 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1450 <GenerateDebugInformation>true</GenerateDebugInformation>
1451 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1452 <SubSystem>Console</SubSystem>
1453 <TargetMachine>MachineX64</TargetMachine>
1454 </Link>
1455 </ItemDefinitionGroup>
1456 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1457 <Midl>
1458 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1459 <HeaderFileName>
1460 </HeaderFileName>
1461 </Midl>
1462 <ClCompile>
1463 <Optimization>Disabled</Optimization>
1464 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1465 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1466 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1467 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1468 <WarningLevel>Level4</WarningLevel>
1469 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1470 </ClCompile>
1471 <ResourceCompile>
1472 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1473 <Culture>0x0409</Culture>
1474 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1475 </ResourceCompile>
1476 <Link>
1477 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1478 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1479 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1480 <GenerateDebugInformation>true</GenerateDebugInformation>
1481 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1482 <SubSystem>Console</SubSystem>
1483 <TargetMachine>MachineX86</TargetMachine>
1484 </Link>
1485 </ItemDefinitionGroup>
1486 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1487 <Midl>
1488 <TargetEnvironment>X64</TargetEnvironment>
1489 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1490 <HeaderFileName>
1491 </HeaderFileName>
1492 </Midl>
1493 <ClCompile>
1494 <Optimization>Disabled</Optimization>
1495 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1496 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1497 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1498 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1499 <WarningLevel>Level4</WarningLevel>
1500 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1501 </ClCompile>
1502 <ResourceCompile>
1503 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1504 <Culture>0x0409</Culture>
1505 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1506 </ResourceCompile>
1507 <Link>
1508 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1509 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1510 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1511 <GenerateDebugInformation>true</GenerateDebugInformation>
1512 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1513 <SubSystem>Console</SubSystem>
1514 <TargetMachine>MachineX64</TargetMachine>
1515 </Link>
1516 </ItemDefinitionGroup>
1517 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1518 <Midl>
1519 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1520 <HeaderFileName>
1521 </HeaderFileName>
1522 </Midl>
1523 <ClCompile>
1524 <Optimization>Disabled</Optimization>
1525 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1526 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1527 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1528 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1529 <WarningLevel>Level4</WarningLevel>
1530 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1531 </ClCompile>
1532 <ResourceCompile>
1533 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1534 <Culture>0x0409</Culture>
1535 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1536 </ResourceCompile>
1537 <Link>
1538 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1539 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1540 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1541 <GenerateDebugInformation>true</GenerateDebugInformation>
1542 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1543 <SubSystem>Console</SubSystem>
1544 <TargetMachine>MachineX86</TargetMachine>
1545 </Link>
1546 </ItemDefinitionGroup>
1547 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1548 <Midl>
1549 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1550 <HeaderFileName>
1551 </HeaderFileName>
1552 </Midl>
1553 <ClCompile>
1554 <Optimization>Disabled</Optimization>
1555 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1556 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1557 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1558 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1559 <WarningLevel>Level4</WarningLevel>
1560 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1561 </ClCompile>
1562 <ResourceCompile>
1563 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1564 <Culture>0x0409</Culture>
1565 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1566 </ResourceCompile>
1567 <Link>
1568 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1569 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1570 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1571 <GenerateDebugInformation>true</GenerateDebugInformation>
1572 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1573 <SubSystem>Console</SubSystem>
1574 <TargetMachine>MachineX86</TargetMachine>
1575 </Link>
1576 </ItemDefinitionGroup>
1577 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1578 <Midl>
1579 <TargetEnvironment>X64</TargetEnvironment>
1580 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1581 <HeaderFileName>
1582 </HeaderFileName>
1583 </Midl>
1584 <ClCompile>
1585 <Optimization>Disabled</Optimization>
1586 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1587 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1588 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1589 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1590 <WarningLevel>Level4</WarningLevel>
1591 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1592 </ClCompile>
1593 <ResourceCompile>
1594 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1595 <Culture>0x0409</Culture>
1596 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1597 </ResourceCompile>
1598 <Link>
1599 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1600 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1601 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1602 <GenerateDebugInformation>true</GenerateDebugInformation>
1603 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1604 <SubSystem>Console</SubSystem>
1605 <TargetMachine>MachineX64</TargetMachine>
1606 </Link>
1607 </ItemDefinitionGroup>
1608 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1609 <Midl>
1610 <TargetEnvironment>X64</TargetEnvironment>
1611 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1612 <HeaderFileName>
1613 </HeaderFileName>
1614 </Midl>
1615 <ClCompile>
1616 <Optimization>Disabled</Optimization>
1617 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1618 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1619 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1620 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1621 <WarningLevel>Level4</WarningLevel>
1622 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1623 </ClCompile>
1624 <ResourceCompile>
1625 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1626 <Culture>0x0409</Culture>
1627 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1628 </ResourceCompile>
1629 <Link>
1630 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1631 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1632 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1633 <GenerateDebugInformation>true</GenerateDebugInformation>
1634 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1635 <SubSystem>Console</SubSystem>
1636 <TargetMachine>MachineX64</TargetMachine>
1637 </Link>
1638 </ItemDefinitionGroup>
1639 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1640 <Midl>
1641 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1642 <HeaderFileName>
1643 </HeaderFileName>
1644 </Midl>
1645 <ClCompile>
1646 <Optimization>MaxSpeed</Optimization>
1647 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1648 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1649 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1650 <StringPooling>true</StringPooling>
1651 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1652 <FunctionLevelLinking>true</FunctionLevelLinking>
1653 <WarningLevel>Level4</WarningLevel>
1654 </ClCompile>
1655 <ResourceCompile>
1656 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1657 <Culture>0x0409</Culture>
1658 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1659 </ResourceCompile>
1660 <Link>
1661 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1662 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1663 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1664 <SubSystem>Console</SubSystem>
1665 <TargetMachine>MachineX86</TargetMachine>
1666 </Link>
1667 </ItemDefinitionGroup>
1668 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1669 <Midl>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1689 </ResourceCompile>
1690 <Link>
1691 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1692 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1693 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1694 <SubSystem>Console</SubSystem>
1695 <TargetMachine>MachineX64</TargetMachine>
1696 </Link>
1697 </ItemDefinitionGroup>
1698 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1699 <Midl>
1700 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1701 <HeaderFileName>
1702 </HeaderFileName>
1703 </Midl>
1704 <ClCompile>
1705 <Optimization>MaxSpeed</Optimization>
1706 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1707 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1708 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1709 <StringPooling>true</StringPooling>
1710 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1711 <FunctionLevelLinking>true</FunctionLevelLinking>
1712 <WarningLevel>Level4</WarningLevel>
1713 </ClCompile>
1714 <ResourceCompile>
1715 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1716 <Culture>0x0409</Culture>
1717 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1718 </ResourceCompile>
1719 <Link>
1720 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1721 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1722 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1723 <SubSystem>Console</SubSystem>
1724 <TargetMachine>MachineX86</TargetMachine>
1725 </Link>
1726 </ItemDefinitionGroup>
1727 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1728 <Midl>
1729 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1730 <HeaderFileName>
1731 </HeaderFileName>
1732 </Midl>
1733 <ClCompile>
1734 <Optimization>MaxSpeed</Optimization>
1735 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1736 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1737 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1738 <StringPooling>true</StringPooling>
1739 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1740 <FunctionLevelLinking>true</FunctionLevelLinking>
1741 <WarningLevel>Level4</WarningLevel>
1742 </ClCompile>
1743 <ResourceCompile>
1744 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1745 <Culture>0x0409</Culture>
1746 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1747 </ResourceCompile>
1748 <Link>
1749 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1750 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1751 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1752 <SubSystem>Console</SubSystem>
1753 <TargetMachine>MachineX86</TargetMachine>
1754 </Link>
1755 </ItemDefinitionGroup>
1756 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1757 <Midl>
1758 <TargetEnvironment>X64</TargetEnvironment>
1759 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1760 <HeaderFileName>
1761 </HeaderFileName>
1762 </Midl>
1763 <ClCompile>
1764 <Optimization>MaxSpeed</Optimization>
1765 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1766 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1767 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1768 <StringPooling>true</StringPooling>
1769 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1770 <FunctionLevelLinking>true</FunctionLevelLinking>
1771 <WarningLevel>Level4</WarningLevel>
1772 </ClCompile>
1773 <ResourceCompile>
1774 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1775 <Culture>0x0409</Culture>
1776 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1777 </ResourceCompile>
1778 <Link>
1779 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1780 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1781 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1782 <SubSystem>Console</SubSystem>
1783 <TargetMachine>MachineX64</TargetMachine>
1784 </Link>
1785 </ItemDefinitionGroup>
1786 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1787 <Midl>
1788 <TargetEnvironment>X64</TargetEnvironment>
1789 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1790 <HeaderFileName>
1791 </HeaderFileName>
1792 </Midl>
1793 <ClCompile>
1794 <Optimization>MaxSpeed</Optimization>
1795 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1796 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1797 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1798 <StringPooling>true</StringPooling>
1799 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1800 <FunctionLevelLinking>true</FunctionLevelLinking>
1801 <WarningLevel>Level4</WarningLevel>
1802 </ClCompile>
1803 <ResourceCompile>
1804 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1805 <Culture>0x0409</Culture>
1806 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1807 </ResourceCompile>
1808 <Link>
1809 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1810 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1811 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1812 <SubSystem>Console</SubSystem>
1813 <TargetMachine>MachineX64</TargetMachine>
1814 </Link>
1815 </ItemDefinitionGroup>
1816 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1817 <Midl>
1818 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1819 <HeaderFileName>
1820 </HeaderFileName>
1821 </Midl>
1822 <ClCompile>
1823 <Optimization>Disabled</Optimization>
1824 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1825 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1826 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1827 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1828 <WarningLevel>Level4</WarningLevel>
1829 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1830 </ClCompile>
1831 <ResourceCompile>
1832 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1833 <Culture>0x0409</Culture>
1834 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1835 </ResourceCompile>
1836 <Link>
1837 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1838 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1839 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1840 <GenerateDebugInformation>true</GenerateDebugInformation>
1841 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1842 <SubSystem>Console</SubSystem>
1843 <TargetMachine>MachineX86</TargetMachine>
1844 </Link>
1845 </ItemDefinitionGroup>
1846 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1847 <Midl>
1848 <TargetEnvironment>X64</TargetEnvironment>
1849 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1850 <HeaderFileName>
1851 </HeaderFileName>
1852 </Midl>
1853 <ClCompile>
1854 <Optimization>Disabled</Optimization>
1855 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1856 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1857 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1858 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1859 <WarningLevel>Level4</WarningLevel>
1860 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1861 </ClCompile>
1862 <ResourceCompile>
1863 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1864 <Culture>0x0409</Culture>
1865 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1866 </ResourceCompile>
1867 <Link>
1868 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1869 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1870 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1871 <GenerateDebugInformation>true</GenerateDebugInformation>
1872 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1873 <SubSystem>Console</SubSystem>
1874 <TargetMachine>MachineX64</TargetMachine>
1875 </Link>
1876 </ItemDefinitionGroup>
1877 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1878 <Midl>
1879 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1880 <HeaderFileName>
1881 </HeaderFileName>
1882 </Midl>
1883 <ClCompile>
1884 <Optimization>MaxSpeed</Optimization>
1885 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1886 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1887 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1888 <StringPooling>true</StringPooling>
1889 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1890 <FunctionLevelLinking>true</FunctionLevelLinking>
1891 <WarningLevel>Level4</WarningLevel>
1892 </ClCompile>
1893 <ResourceCompile>
1894 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1895 <Culture>0x0409</Culture>
1896 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1897 </ResourceCompile>
1898 <Link>
1899 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1900 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1901 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1902 <SubSystem>Console</SubSystem>
1903 <TargetMachine>MachineX86</TargetMachine>
1904 </Link>
1905 </ItemDefinitionGroup>
1906 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1907 <Midl>
1908 <TargetEnvironment>X64</TargetEnvironment>
1909 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1910 <HeaderFileName>
1911 </HeaderFileName>
1912 </Midl>
1913 <ClCompile>
1914 <Optimization>MaxSpeed</Optimization>
1915 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1916 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1917 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1918 <StringPooling>true</StringPooling>
1919 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1920 <FunctionLevelLinking>true</FunctionLevelLinking>
1921 <WarningLevel>Level4</WarningLevel>
1922 </ClCompile>
1923 <ResourceCompile>
1924 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1925 <Culture>0x0409</Culture>
1926 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1927 </ResourceCompile>
1928 <Link>
1929 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1930 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1931 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1932 <SubSystem>Console</SubSystem>
1933 <TargetMachine>MachineX64</TargetMachine>
1934 </Link>
1935 </ItemDefinitionGroup>
1936 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
1937 <Midl>
1938 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1939 <HeaderFileName>
1940 </HeaderFileName>
1941 </Midl>
1942 <ClCompile>
1943 <Optimization>Disabled</Optimization>
1944 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1945 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1946 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1947 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1948 <WarningLevel>Level4</WarningLevel>
1949 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1950 </ClCompile>
1951 <ResourceCompile>
1952 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1953 <Culture>0x0409</Culture>
1954 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1955 </ResourceCompile>
1956 <Link>
1957 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1958 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1959 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1960 <GenerateDebugInformation>true</GenerateDebugInformation>
1961 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1962 <SubSystem>Console</SubSystem>
1963 <TargetMachine>MachineX86</TargetMachine>
1964 </Link>
1965 </ItemDefinitionGroup>
1966 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
1967 <Midl>
1968 <TargetEnvironment>X64</TargetEnvironment>
1969 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1970 <HeaderFileName>
1971 </HeaderFileName>
1972 </Midl>
1973 <ClCompile>
1974 <Optimization>Disabled</Optimization>
1975 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1976 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1977 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1978 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1979 <WarningLevel>Level4</WarningLevel>
1980 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1981 </ClCompile>
1982 <ResourceCompile>
1983 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <Culture>0x0409</Culture>
1985 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1986 </ResourceCompile>
1987 <Link>
1988 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1989 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1990 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1991 <GenerateDebugInformation>true</GenerateDebugInformation>
1992 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1993 <SubSystem>Console</SubSystem>
1994 <TargetMachine>MachineX64</TargetMachine>
1995 </Link>
1996 </ItemDefinitionGroup>
1997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
1998 <Midl>
1999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2000 <HeaderFileName>
2001 </HeaderFileName>
2002 </Midl>
2003 <ClCompile>
2004 <Optimization>MaxSpeed</Optimization>
2005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2008 <StringPooling>true</StringPooling>
2009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2010 <FunctionLevelLinking>true</FunctionLevelLinking>
2011 <WarningLevel>Level4</WarningLevel>
2012 </ClCompile>
2013 <ResourceCompile>
2014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2015 <Culture>0x0409</Culture>
2016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2017 </ResourceCompile>
2018 <Link>
2019 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2022 <SubSystem>Console</SubSystem>
2023 <TargetMachine>MachineX86</TargetMachine>
2024 </Link>
2025 </ItemDefinitionGroup>
2026 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2027 <Midl>
2028 <TargetEnvironment>X64</TargetEnvironment>
2029 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2030 <HeaderFileName>
2031 </HeaderFileName>
2032 </Midl>
2033 <ClCompile>
2034 <Optimization>MaxSpeed</Optimization>
2035 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2036 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2037 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2038 <StringPooling>true</StringPooling>
2039 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2040 <FunctionLevelLinking>true</FunctionLevelLinking>
2041 <WarningLevel>Level4</WarningLevel>
2042 </ClCompile>
2043 <ResourceCompile>
2044 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2045 <Culture>0x0409</Culture>
2046 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2047 </ResourceCompile>
2048 <Link>
2049 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2050 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2051 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2052 <SubSystem>Console</SubSystem>
2053 <TargetMachine>MachineX64</TargetMachine>
2054 </Link>
2055 </ItemDefinitionGroup>
2056 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2057 <Midl>
2058 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2059 <HeaderFileName>
2060 </HeaderFileName>
2061 </Midl>
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2075 </ResourceCompile>
2076 <Link>
2077 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2078 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2079 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\LIB Debug;..\..\..\..\..\libssh2\build\Win32\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2080 <GenerateDebugInformation>true</GenerateDebugInformation>
2081 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2082 <SubSystem>Console</SubSystem>
2083 <TargetMachine>MachineX86</TargetMachine>
2084 </Link>
2085 </ItemDefinitionGroup>
2086 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2087 <Midl>
2088 <TargetEnvironment>X64</TargetEnvironment>
2089 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2090 <HeaderFileName>
2091 </HeaderFileName>
2092 </Midl>
2093 <ClCompile>
2094 <Optimization>Disabled</Optimization>
2095 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2096 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2097 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2098 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2099 <WarningLevel>Level4</WarningLevel>
2100 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2101 </ClCompile>
2102 <ResourceCompile>
2103 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2104 <Culture>0x0409</Culture>
2105 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2106 </ResourceCompile>
2107 <Link>
2108 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2109 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2110 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\LIB Debug;..\..\..\..\..\libssh2\build\Win64\VC14.30\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2111 <GenerateDebugInformation>true</GenerateDebugInformation>
2112 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2113 <SubSystem>Console</SubSystem>
2114 <TargetMachine>MachineX64</TargetMachine>
2115 </Link>
2116 </ItemDefinitionGroup>
2117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2118 <Midl>
2119 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2120 <HeaderFileName>
2121 </HeaderFileName>
2122 </Midl>
2123 <ClCompile>
2124 <Optimization>MaxSpeed</Optimization>
2125 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2126 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2127 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2128 <StringPooling>true</StringPooling>
2129 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2130 <FunctionLevelLinking>true</FunctionLevelLinking>
2131 <WarningLevel>Level4</WarningLevel>
2132 </ClCompile>
2133 <ResourceCompile>
2134 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2135 <Culture>0x0409</Culture>
2136 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2137 </ResourceCompile>
2138 <Link>
2139 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2140 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2141 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\LIB Release;..\..\..\..\..\libssh2\build\Win32\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2142 <SubSystem>Console</SubSystem>
2143 <TargetMachine>MachineX86</TargetMachine>
2144 </Link>
2145 </ItemDefinitionGroup>
2146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2147 <Midl>
2148 <TargetEnvironment>X64</TargetEnvironment>
2149 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2150 <HeaderFileName>
2151 </HeaderFileName>
2152 </Midl>
2153 <ClCompile>
2154 <Optimization>MaxSpeed</Optimization>
2155 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2156 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2157 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <StringPooling>true</StringPooling>
2159 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2160 <FunctionLevelLinking>true</FunctionLevelLinking>
2161 <WarningLevel>Level4</WarningLevel>
2162 </ClCompile>
2163 <ResourceCompile>
2164 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2165 <Culture>0x0409</Culture>
2166 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2167 </ResourceCompile>
2168 <Link>
2169 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2170 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2171 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\LIB Release;..\..\..\..\..\libssh2\build\Win64\VC14.30\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2172 <SubSystem>Console</SubSystem>
2173 <TargetMachine>MachineX64</TargetMachine>
2174 </Link>
2175 </ItemDefinitionGroup>
2176 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
2177 <Midl>
2178 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2179 <HeaderFileName>
2180 </HeaderFileName>
2181 </Midl>
2182 <ClCompile>
2183 <Optimization>Disabled</Optimization>
2184 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2185 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2186 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2187 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2188 <WarningLevel>Level4</WarningLevel>
2189 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2190 </ClCompile>
2191 <ResourceCompile>
2192 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2193 <Culture>0x0409</Culture>
2194 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2195 </ResourceCompile>
2196 <Link>
2197 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2198 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2199 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2200 <GenerateDebugInformation>true</GenerateDebugInformation>
2201 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2202 <SubSystem>Console</SubSystem>
2203 <TargetMachine>MachineX86</TargetMachine>
2204 </Link>
2205 </ItemDefinitionGroup>
2206 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
2207 <Midl>
2208 <TargetEnvironment>X64</TargetEnvironment>
2209 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2210 <HeaderFileName>
2211 </HeaderFileName>
2212 </Midl>
2213 <ClCompile>
2214 <Optimization>Disabled</Optimization>
2215 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2216 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2217 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2218 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2219 <WarningLevel>Level4</WarningLevel>
2220 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2221 </ClCompile>
2222 <ResourceCompile>
2223 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2224 <Culture>0x0409</Culture>
2225 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2226 </ResourceCompile>
2227 <Link>
2228 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2230 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2231 <GenerateDebugInformation>true</GenerateDebugInformation>
2232 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2233 <SubSystem>Console</SubSystem>
2234 <TargetMachine>MachineX64</TargetMachine>
2235 </Link>
2236 </ItemDefinitionGroup>
2237 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2238 <Midl>
2239 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2240 <HeaderFileName>
2241 </HeaderFileName>
2242 </Midl>
2243 <ClCompile>
2244 <Optimization>MaxSpeed</Optimization>
2245 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2246 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2247 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2248 <StringPooling>true</StringPooling>
2249 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2250 <FunctionLevelLinking>true</FunctionLevelLinking>
2251 <WarningLevel>Level4</WarningLevel>
2252 </ClCompile>
2253 <ResourceCompile>
2254 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2255 <Culture>0x0409</Culture>
2256 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2257 </ResourceCompile>
2258 <Link>
2259 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2260 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2261 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2262 <SubSystem>Console</SubSystem>
2263 <TargetMachine>MachineX86</TargetMachine>
2264 </Link>
2265 </ItemDefinitionGroup>
2266 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2267 <Midl>
2268 <TargetEnvironment>X64</TargetEnvironment>
2269 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2270 <HeaderFileName>
2271 </HeaderFileName>
2272 </Midl>
2273 <ClCompile>
2274 <Optimization>MaxSpeed</Optimization>
2275 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2276 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2277 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2278 <StringPooling>true</StringPooling>
2279 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2280 <FunctionLevelLinking>true</FunctionLevelLinking>
2281 <WarningLevel>Level4</WarningLevel>
2282 </ClCompile>
2283 <ResourceCompile>
2284 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2285 <Culture>0x0409</Culture>
2286 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2287 </ResourceCompile>
2288 <Link>
2289 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2292 <SubSystem>Console</SubSystem>
2293 <TargetMachine>MachineX64</TargetMachine>
2294 </Link>
2295 </ItemDefinitionGroup>
2296 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
2297 <Midl>
2298 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2299 <HeaderFileName>
2300 </HeaderFileName>
2301 </Midl>
2302 <ClCompile>
2303 <Optimization>Disabled</Optimization>
2304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2305 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2306 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2307 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2308 <WarningLevel>Level4</WarningLevel>
2309 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2310 </ClCompile>
2311 <ResourceCompile>
2312 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2313 <Culture>0x0409</Culture>
2314 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2315 </ResourceCompile>
2316 <Link>
2317 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2318 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2319 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2320 <GenerateDebugInformation>true</GenerateDebugInformation>
2321 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2322 <SubSystem>Console</SubSystem>
2323 <TargetMachine>MachineX86</TargetMachine>
2324 </Link>
2325 </ItemDefinitionGroup>
2326 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
2327 <Midl>
2328 <TargetEnvironment>X64</TargetEnvironment>
2329 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2330 <HeaderFileName>
2331 </HeaderFileName>
2332 </Midl>
2333 <ClCompile>
2334 <Optimization>Disabled</Optimization>
2335 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2336 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2337 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2338 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2339 <WarningLevel>Level4</WarningLevel>
2340 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2341 </ClCompile>
2342 <ResourceCompile>
2343 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2344 <Culture>0x0409</Culture>
2345 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2346 </ResourceCompile>
2347 <Link>
2348 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2349 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2350 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC14.30\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2351 <GenerateDebugInformation>true</GenerateDebugInformation>
2352 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2353 <SubSystem>Console</SubSystem>
2354 <TargetMachine>MachineX64</TargetMachine>
2355 </Link>
2356 </ItemDefinitionGroup>
2357 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2358 <Midl>
2359 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2360 <HeaderFileName>
2361 </HeaderFileName>
2362 </Midl>
2363 <ClCompile>
2364 <Optimization>MaxSpeed</Optimization>
2365 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2366 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2367 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2368 <StringPooling>true</StringPooling>
2369 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2370 <FunctionLevelLinking>true</FunctionLevelLinking>
2371 <WarningLevel>Level4</WarningLevel>
2372 </ClCompile>
2373 <ResourceCompile>
2374 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2375 <Culture>0x0409</Culture>
2376 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2377 </ResourceCompile>
2378 <Link>
2379 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2380 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2381 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC14.30\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2382 <SubSystem>Console</SubSystem>
2383 <TargetMachine>MachineX86</TargetMachine>
2384 </Link>
2385 </ItemDefinitionGroup>
2386 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2387 <Midl>
2388 <TargetEnvironment>X64</TargetEnvironment>
2389 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2390 <HeaderFileName>
2391 </HeaderFileName>
2392 </Midl>
2393 <ClCompile>
2394 <Optimization>MaxSpeed</Optimization>
2395 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2396 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2397 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2398 <StringPooling>true</StringPooling>
2399 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2400 <FunctionLevelLinking>true</FunctionLevelLinking>
2401 <WarningLevel>Level4</WarningLevel>
2402 </ClCompile>
2403 <ResourceCompile>
2404 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2405 <Culture>0x0409</Culture>
2406 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2407 </ResourceCompile>
2408 <Link>
2409 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libssh2.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2410 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2411 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC14.30\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC14.30\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2412 <SubSystem>Console</SubSystem>
2413 <TargetMachine>MachineX64</TargetMachine>
2414 </Link>
2415 </ItemDefinitionGroup>
2416 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
2417 <Midl>
2418 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2419 <HeaderFileName>
2420 </HeaderFileName>
2421 </Midl>
2422 <ClCompile>
2423 <Optimization>Disabled</Optimization>
2424 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2425 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2426 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2427 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2428 <WarningLevel>Level4</WarningLevel>
2429 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2430 </ClCompile>
2431 <ResourceCompile>
2432 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2433 <Culture>0x0409</Culture>
2434 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2435 </ResourceCompile>
2436 <Link>
2437 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2438 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2439 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2440 <GenerateDebugInformation>true</GenerateDebugInformation>
2441 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2442 <SubSystem>Console</SubSystem>
2443 <TargetMachine>MachineX86</TargetMachine>
2444 </Link>
2445 </ItemDefinitionGroup>
2446 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
2447 <Midl>
2448 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2449 <HeaderFileName>
2450 </HeaderFileName>
2451 </Midl>
2452 <ClCompile>
2453 <Optimization>Disabled</Optimization>
2454 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2455 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2456 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2457 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2458 <WarningLevel>Level4</WarningLevel>
2459 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2460 </ClCompile>
2461 <ResourceCompile>
2462 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2463 <Culture>0x0409</Culture>
2464 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2465 </ResourceCompile>
2466 <Link>
2467 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2468 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2469 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2470 <GenerateDebugInformation>true</GenerateDebugInformation>
2471 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2472 <SubSystem>Console</SubSystem>
2473 <TargetMachine>MachineX86</TargetMachine>
2474 </Link>
2475 </ItemDefinitionGroup>
2476 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
2477 <Midl>
2478 <TargetEnvironment>X64</TargetEnvironment>
2479 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2480 <HeaderFileName>
2481 </HeaderFileName>
2482 </Midl>
2483 <ClCompile>
2484 <Optimization>Disabled</Optimization>
2485 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2486 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2487 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2488 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2489 <WarningLevel>Level4</WarningLevel>
2490 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2491 </ClCompile>
2492 <ResourceCompile>
2493 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2494 <Culture>0x0409</Culture>
2495 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2496 </ResourceCompile>
2497 <Link>
2498 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2499 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2500 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2501 <GenerateDebugInformation>true</GenerateDebugInformation>
2502 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2503 <SubSystem>Console</SubSystem>
2504 <TargetMachine>MachineX64</TargetMachine>
2505 </Link>
2506 </ItemDefinitionGroup>
2507 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
2508 <Midl>
2509 <TargetEnvironment>X64</TargetEnvironment>
2510 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2511 <HeaderFileName>
2512 </HeaderFileName>
2513 </Midl>
2514 <ClCompile>
2515 <Optimization>Disabled</Optimization>
2516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2517 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2520 <WarningLevel>Level4</WarningLevel>
2521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2522 </ClCompile>
2523 <ResourceCompile>
2524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2525 <Culture>0x0409</Culture>
2526 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2527 </ResourceCompile>
2528 <Link>
2529 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2530 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2531 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2532 <GenerateDebugInformation>true</GenerateDebugInformation>
2533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2534 <SubSystem>Console</SubSystem>
2535 <TargetMachine>MachineX64</TargetMachine>
2536 </Link>
2537 </ItemDefinitionGroup>
2538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2539 <Midl>
2540 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2541 <HeaderFileName>
2542 </HeaderFileName>
2543 </Midl>
2544 <ClCompile>
2545 <Optimization>MaxSpeed</Optimization>
2546 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2547 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2548 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2549 <StringPooling>true</StringPooling>
2550 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2551 <FunctionLevelLinking>true</FunctionLevelLinking>
2552 <WarningLevel>Level4</WarningLevel>
2553 </ClCompile>
2554 <ResourceCompile>
2555 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2556 <Culture>0x0409</Culture>
2557 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2558 </ResourceCompile>
2559 <Link>
2560 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2561 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2562 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2563 <SubSystem>Console</SubSystem>
2564 <TargetMachine>MachineX86</TargetMachine>
2565 </Link>
2566 </ItemDefinitionGroup>
2567 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2568 <Midl>
2569 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2570 <HeaderFileName>
2571 </HeaderFileName>
2572 </Midl>
2573 <ClCompile>
2574 <Optimization>MaxSpeed</Optimization>
2575 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2576 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2577 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2578 <StringPooling>true</StringPooling>
2579 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2580 <FunctionLevelLinking>true</FunctionLevelLinking>
2581 <WarningLevel>Level4</WarningLevel>
2582 </ClCompile>
2583 <ResourceCompile>
2584 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2585 <Culture>0x0409</Culture>
2586 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2587 </ResourceCompile>
2588 <Link>
2589 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2590 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2591 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2592 <SubSystem>Console</SubSystem>
2593 <TargetMachine>MachineX86</TargetMachine>
2594 </Link>
2595 </ItemDefinitionGroup>
2596 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2597 <Midl>
2598 <TargetEnvironment>X64</TargetEnvironment>
2599 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2600 <HeaderFileName>
2601 </HeaderFileName>
2602 </Midl>
2603 <ClCompile>
2604 <Optimization>MaxSpeed</Optimization>
2605 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2606 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2607 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2608 <StringPooling>true</StringPooling>
2609 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2610 <FunctionLevelLinking>true</FunctionLevelLinking>
2611 <WarningLevel>Level4</WarningLevel>
2612 </ClCompile>
2613 <ResourceCompile>
2614 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2615 <Culture>0x0409</Culture>
2616 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2617 </ResourceCompile>
2618 <Link>
2619 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2620 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2621 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2622 <SubSystem>Console</SubSystem>
2623 <TargetMachine>MachineX64</TargetMachine>
2624 </Link>
2625 </ItemDefinitionGroup>
2626 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2627 <Midl>
2628 <TargetEnvironment>X64</TargetEnvironment>
2629 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2630 <HeaderFileName>
2631 </HeaderFileName>
2632 </Midl>
2633 <ClCompile>
2634 <Optimization>MaxSpeed</Optimization>
2635 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2636 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2637 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2638 <StringPooling>true</StringPooling>
2639 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2640 <FunctionLevelLinking>true</FunctionLevelLinking>
2641 <WarningLevel>Level4</WarningLevel>
2642 </ClCompile>
2643 <ResourceCompile>
2644 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2645 <Culture>0x0409</Culture>
2646 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2647 </ResourceCompile>
2648 <Link>
2649 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2650 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2651 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC14.30\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2652 <SubSystem>Console</SubSystem>
2653 <TargetMachine>MachineX64</TargetMachine>
2654 </Link>
2655 </ItemDefinitionGroup>
2656 <ItemGroup>
2657 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2658 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2659 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2660 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2661 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2662 <ClCompile Include="..\..\..\..\lib\timediff.c" />
2663 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2664 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2665 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
2666 <ClCompile Include="..\..\..\..\src\tool_binmode.c" />
2667 <ClCompile Include="..\..\..\..\src\tool_bname.c" />
2668 <ClCompile Include="..\..\..\..\src\tool_cb_dbg.c" />
2669 <ClCompile Include="..\..\..\..\src\tool_cb_hdr.c" />
2670 <ClCompile Include="..\..\..\..\src\tool_cb_prg.c" />
2671 <ClCompile Include="..\..\..\..\src\tool_cb_rea.c" />
2672 <ClCompile Include="..\..\..\..\src\tool_cb_see.c" />
2673 <ClCompile Include="..\..\..\..\src\tool_cb_wrt.c" />
2674 <ClCompile Include="..\..\..\..\src\tool_cfgable.c" />
2675 <ClCompile Include="..\..\..\..\src\tool_dirhie.c" />
2676 <ClCompile Include="..\..\..\..\src\tool_doswin.c" />
2677 <ClCompile Include="..\..\..\..\src\tool_easysrc.c" />
2678 <ClCompile Include="..\..\..\..\src\tool_filetime.c" />
2679 <ClCompile Include="..\..\..\..\src\tool_findfile.c" />
2680 <ClCompile Include="..\..\..\..\src\tool_formparse.c" />
2681 <ClCompile Include="..\..\..\..\src\tool_getparam.c" />
2682 <ClCompile Include="..\..\..\..\src\tool_getpass.c" />
2683 <ClCompile Include="..\..\..\..\src\tool_help.c" />
2684 <ClCompile Include="..\..\..\..\src\tool_helpers.c" />
2685 <ClCompile Include="..\..\..\..\src\tool_hugehelp.c" />
2686 <ClCompile Include="..\..\..\..\src\tool_libinfo.c" />
2687 <ClCompile Include="..\..\..\..\src\tool_listhelp.c" />
2688 <ClCompile Include="..\..\..\..\src\tool_main.c" />
2689 <ClCompile Include="..\..\..\..\src\tool_msgs.c" />
2690 <ClCompile Include="..\..\..\..\src\tool_operate.c" />
2691 <ClCompile Include="..\..\..\..\src\tool_operhlp.c" />
2692 <ClCompile Include="..\..\..\..\src\tool_panykey.c" />
2693 <ClCompile Include="..\..\..\..\src\tool_paramhlp.c" />
2694 <ClCompile Include="..\..\..\..\src\tool_parsecfg.c" />
2695 <ClCompile Include="..\..\..\..\src\tool_progress.c" />
2696 <ClCompile Include="..\..\..\..\src\tool_setopt.c" />
2697 <ClCompile Include="..\..\..\..\src\tool_sleep.c" />
2698 <ClCompile Include="..\..\..\..\src\tool_strdup.c" />
2699 <ClCompile Include="..\..\..\..\src\tool_urlglob.c" />
2700 <ClCompile Include="..\..\..\..\src\tool_util.c" />
2701 <ClCompile Include="..\..\..\..\src\tool_vms.c" />
2702 <ClCompile Include="..\..\..\..\src\tool_writeout.c" />
2703 <ClCompile Include="..\..\..\..\src\tool_writeout_json.c" />
2704 <ClCompile Include="..\..\..\..\src\tool_xattr.c" />
2705 </ItemGroup>
2706 <ItemGroup>
2707 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2708 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2709 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2710 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2711 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2712 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2713 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2714 <ClInclude Include="..\..\..\..\lib\timediff.h" />
2715 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2716 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2717 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
2718 <ClInclude Include="..\..\..\..\src\tool_binmode.h" />
2719 <ClInclude Include="..\..\..\..\src\tool_bname.h" />
2720 <ClInclude Include="..\..\..\..\src\tool_cb_dbg.h" />
2721 <ClInclude Include="..\..\..\..\src\tool_cb_hdr.h" />
2722 <ClInclude Include="..\..\..\..\src\tool_cb_prg.h" />
2723 <ClInclude Include="..\..\..\..\src\tool_cb_rea.h" />
2724 <ClInclude Include="..\..\..\..\src\tool_cb_see.h" />
2725 <ClInclude Include="..\..\..\..\src\tool_cb_wrt.h" />
2726 <ClInclude Include="..\..\..\..\src\tool_cfgable.h" />
2727 <ClInclude Include="..\..\..\..\src\tool_dirhie.h" />
2728 <ClInclude Include="..\..\..\..\src\tool_doswin.h" />
2729 <ClInclude Include="..\..\..\..\src\tool_easysrc.h" />
2730 <ClInclude Include="..\..\..\..\src\tool_filetime.h" />
2731 <ClInclude Include="..\..\..\..\src\tool_findfile.h" />
2732 <ClInclude Include="..\..\..\..\src\tool_formparse.h" />
2733 <ClInclude Include="..\..\..\..\src\tool_getparam.h" />
2734 <ClInclude Include="..\..\..\..\src\tool_getpass.h" />
2735 <ClInclude Include="..\..\..\..\src\tool_helpers.h" />
2736 <ClInclude Include="..\..\..\..\src\tool_help.h" />
2737 <ClInclude Include="..\..\..\..\src\tool_hugehelp.h" />
2738 <ClInclude Include="..\..\..\..\src\tool_libinfo.h" />
2739 <ClInclude Include="..\..\..\..\src\tool_main.h" />
2740 <ClInclude Include="..\..\..\..\src\tool_msgs.h" />
2741 <ClInclude Include="..\..\..\..\src\tool_operate.h" />
2742 <ClInclude Include="..\..\..\..\src\tool_operhlp.h" />
2743 <ClInclude Include="..\..\..\..\src\tool_panykey.h" />
2744 <ClInclude Include="..\..\..\..\src\tool_paramhlp.h" />
2745 <ClInclude Include="..\..\..\..\src\tool_parsecfg.h" />
2746 <ClInclude Include="..\..\..\..\src\tool_progress.h" />
2747 <ClInclude Include="..\..\..\..\src\tool_sdecls.h" />
2748 <ClInclude Include="..\..\..\..\src\tool_setopt.h" />
2749 <ClInclude Include="..\..\..\..\src\tool_setup.h" />
2750 <ClInclude Include="..\..\..\..\src\tool_sleep.h" />
2751 <ClInclude Include="..\..\..\..\src\tool_strdup.h" />
2752 <ClInclude Include="..\..\..\..\src\tool_urlglob.h" />
2753 <ClInclude Include="..\..\..\..\src\tool_util.h" />
2754 <ClInclude Include="..\..\..\..\src\tool_version.h" />
2755 <ClInclude Include="..\..\..\..\src\tool_vms.h" />
2756 <ClInclude Include="..\..\..\..\src\tool_writeout.h" />
2757 <ClInclude Include="..\..\..\..\src\tool_writeout_json.h" />
2758 <ClInclude Include="..\..\..\..\src\tool_xattr.h" />
2759 </ItemGroup>
2760 <ItemGroup>
2761 <ResourceCompile Include="..\..\..\..\src\curl.rc" />
2762 </ItemGroup>
2763 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2764 <ImportGroup Label="ExtensionTargets">
2765 </ImportGroup>
2766 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
+0
-298
projects/Windows/VC15/curl-all.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "src\curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 ProjectSection(ProjectDependencies) = postProject
4 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB} = {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}
5 EndProjectSection
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "lib\libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
8 EndProject
9 Global
10 GlobalSection(SolutionConfigurationPlatforms) = preSolution
11 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
12 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
13 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
14 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
15 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
16 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
17 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
18 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
19 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
20 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
21 DLL Debug|Win32 = DLL Debug|Win32
22 DLL Debug|x64 = DLL Debug|x64
23 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
24 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
25 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
26 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
27 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
28 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
29 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
30 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
31 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
32 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
33 DLL Release|Win32 = DLL Release|Win32
34 DLL Release|x64 = DLL Release|x64
35 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
36 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
37 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
38 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
39 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
40 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
41 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
42 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
43 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
44 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
45 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
46 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
47 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
48 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
49 LIB Debug|Win32 = LIB Debug|Win32
50 LIB Debug|x64 = LIB Debug|x64
51 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
52 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
53 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
54 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
55 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
56 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
57 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
58 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
59 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
60 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
61 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
62 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
63 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
64 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
65 LIB Release|Win32 = LIB Release|Win32
66 LIB Release|x64 = LIB Release|x64
67 EndGlobalSection
68 GlobalSection(ProjectConfigurationPlatforms) = postSolution
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
176 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
177 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
178 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
179 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
180 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
181 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
182 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
183 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
184 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
185 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
186 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
187 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
188 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
189 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
190 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
191 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
192 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
193 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
194 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
195 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
196 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
197 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
198 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
199 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
200 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
201 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
202 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
203 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
204 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
205 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
206 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
207 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
208 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
209 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
210 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
211 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
212 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
213 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
214 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
215 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
216 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
217 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
218 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
219 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
220 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
221 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
222 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
223 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
224 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
225 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
226 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
227 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
228 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
229 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
230 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
231 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
232 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
233 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
234 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
235 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
236 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
237 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
238 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
239 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
240 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
241 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
242 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
243 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
244 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
245 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
246 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
247 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
248 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
249 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
250 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
251 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
252 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
253 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
254 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
255 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
256 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
257 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
258 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
259 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
260 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
261 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
262 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
263 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
264 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
265 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
266 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
267 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
268 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
269 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
270 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
271 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
272 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
273 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
274 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
275 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
276 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
277 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
278 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
279 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
280 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
281 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
282 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
283 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
284 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
285 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
286 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
287 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
288 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
289 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
290 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
291 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
292 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
293 EndGlobalSection
294 GlobalSection(SolutionProperties) = preSolution
295 HideSolutionNode = FALSE
296 EndGlobalSection
297 EndGlobal
+0
-181
projects/Windows/VC15/lib/libcurl.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
112 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
+0
-2664
projects/Windows/VC15/lib/libcurl.vcxproj less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}</ProjectGuid>
230 <RootNamespace>libcurl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
234 <ConfigurationType>StaticLibrary</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v141</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
240 <ConfigurationType>StaticLibrary</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v141</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>StaticLibrary</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v141</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>StaticLibrary</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v141</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>StaticLibrary</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v141</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
264 <ConfigurationType>StaticLibrary</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v141</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
270 <ConfigurationType>StaticLibrary</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v141</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>StaticLibrary</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v141</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
282 <ConfigurationType>StaticLibrary</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v141</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
288 <ConfigurationType>StaticLibrary</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v141</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
294 <ConfigurationType>StaticLibrary</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v141</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>StaticLibrary</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v141</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>DynamicLibrary</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v141</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>DynamicLibrary</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v141</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>DynamicLibrary</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v141</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>DynamicLibrary</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v141</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
330 <ConfigurationType>DynamicLibrary</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v141</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
336 <ConfigurationType>DynamicLibrary</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v141</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
342 <ConfigurationType>DynamicLibrary</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v141</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>DynamicLibrary</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v141</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
354 <ConfigurationType>StaticLibrary</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v141</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>StaticLibrary</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v141</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>StaticLibrary</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v141</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>StaticLibrary</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v141</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
378 <ConfigurationType>DynamicLibrary</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v141</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>DynamicLibrary</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v141</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
390 <ConfigurationType>DynamicLibrary</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v141</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>DynamicLibrary</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v141</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
402 <ConfigurationType>StaticLibrary</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v141</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
408 <ConfigurationType>StaticLibrary</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v141</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>StaticLibrary</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v141</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>StaticLibrary</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v141</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>StaticLibrary</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v141</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
432 <ConfigurationType>StaticLibrary</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v141</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
438 <ConfigurationType>StaticLibrary</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v141</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>StaticLibrary</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v141</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
450 <ConfigurationType>StaticLibrary</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v141</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
456 <ConfigurationType>StaticLibrary</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v141</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
462 <ConfigurationType>StaticLibrary</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v141</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>StaticLibrary</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v141</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>DynamicLibrary</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v141</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>DynamicLibrary</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v141</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>DynamicLibrary</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v141</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>DynamicLibrary</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v141</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
498 <ConfigurationType>DynamicLibrary</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v141</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
504 <ConfigurationType>DynamicLibrary</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v141</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
510 <ConfigurationType>DynamicLibrary</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v141</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>DynamicLibrary</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v141</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
522 <ConfigurationType>StaticLibrary</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v141</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>StaticLibrary</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v141</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>StaticLibrary</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v141</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>StaticLibrary</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v141</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
546 <ConfigurationType>DynamicLibrary</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v141</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>DynamicLibrary</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v141</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
558 <ConfigurationType>DynamicLibrary</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v141</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>DynamicLibrary</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v141</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)lib\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)lib\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)lib\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)lib\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)lib\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
771 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
772 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
773 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)lib\</IntDir>
774 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
775 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
776 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
777 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)lib\</IntDir>
778 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)lib\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
783 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
784 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
785 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
788 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
789 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
790 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
791 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
792 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
793 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
794 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
795 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
796 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
797 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
798 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
799 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
800 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
801 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
802 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
803 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
804 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
805 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
806 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
807 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
808 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
809 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
812 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
813 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
814 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
815 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
816 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
817 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
818 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
819 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
820 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
821 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
824 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
825 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
826 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
827 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
828 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
829 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
830 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
831 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
832 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
835 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
836 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
837 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
838 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
840 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
841 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
842 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
843 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
844 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
845 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
847 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
848 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
849 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
850 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
853 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
854 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
855 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
856 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
859 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
860 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
861 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
862 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
864 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
865 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
866 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
867 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
868 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
869 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
871 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
872 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
873 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
874 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
877 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
878 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
879 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
880 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
881 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
882 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
883 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
884 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
885 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
886 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
887 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
888 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
889 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
890 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
891 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
892 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
893 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
894 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
895 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
896 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
897 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
898 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
899 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
900 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
901 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
902 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
903 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
904 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
905 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
906 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
907 </PropertyGroup>
908 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
909 <Midl>
910 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
911 <MkTypLibCompatible>true</MkTypLibCompatible>
912 <TargetEnvironment>Win32</TargetEnvironment>
913 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
914 <HeaderFileName>
915 </HeaderFileName>
916 </Midl>
917 <ClCompile>
918 <Optimization>Disabled</Optimization>
919 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
920 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
921 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
922 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
923 <WarningLevel>Level4</WarningLevel>
924 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
925 </ClCompile>
926 <ResourceCompile>
927 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
928 <Culture>0x0409</Culture>
929 </ResourceCompile>
930 <Link>
931 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
932 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
933 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
934 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
935 <GenerateDebugInformation>true</GenerateDebugInformation>
936 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
937 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
938 <TargetMachine>MachineX86</TargetMachine>
939 </Link>
940 </ItemDefinitionGroup>
941 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
942 <Midl>
943 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
944 <MkTypLibCompatible>true</MkTypLibCompatible>
945 <TargetEnvironment>Win32</TargetEnvironment>
946 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
947 <HeaderFileName>
948 </HeaderFileName>
949 </Midl>
950 <ClCompile>
951 <Optimization>Disabled</Optimization>
952 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
953 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
954 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
955 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
956 <WarningLevel>Level4</WarningLevel>
957 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
958 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
959 </ClCompile>
960 <ResourceCompile>
961 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
962 <Culture>0x0409</Culture>
963 </ResourceCompile>
964 <Link>
965 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
966 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
967 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
968 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
969 <GenerateDebugInformation>true</GenerateDebugInformation>
970 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
971 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
972 <TargetMachine>MachineX86</TargetMachine>
973 </Link>
974 </ItemDefinitionGroup>
975 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
976 <Midl>
977 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
978 <MkTypLibCompatible>true</MkTypLibCompatible>
979 <TargetEnvironment>X64</TargetEnvironment>
980 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
981 <HeaderFileName>
982 </HeaderFileName>
983 </Midl>
984 <ClCompile>
985 <Optimization>Disabled</Optimization>
986 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
987 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
988 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
989 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
990 <WarningLevel>Level4</WarningLevel>
991 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
992 </ClCompile>
993 <ResourceCompile>
994 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
995 <Culture>0x0409</Culture>
996 </ResourceCompile>
997 <Link>
998 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
999 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1000 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1001 <GenerateDebugInformation>true</GenerateDebugInformation>
1002 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1003 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1004 <TargetMachine>MachineX64</TargetMachine>
1005 </Link>
1006 </ItemDefinitionGroup>
1007 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1008 <Midl>
1009 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1010 <MkTypLibCompatible>true</MkTypLibCompatible>
1011 <TargetEnvironment>X64</TargetEnvironment>
1012 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1013 <HeaderFileName>
1014 </HeaderFileName>
1015 </Midl>
1016 <ClCompile>
1017 <Optimization>Disabled</Optimization>
1018 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1019 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1020 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1021 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1022 <WarningLevel>Level4</WarningLevel>
1023 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1024 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1025 </ClCompile>
1026 <ResourceCompile>
1027 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1028 <Culture>0x0409</Culture>
1029 </ResourceCompile>
1030 <Link>
1031 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1032 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1033 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1034 <GenerateDebugInformation>true</GenerateDebugInformation>
1035 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1036 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1037 <TargetMachine>MachineX64</TargetMachine>
1038 </Link>
1039 </ItemDefinitionGroup>
1040 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
1041 <Midl>
1042 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1043 <MkTypLibCompatible>true</MkTypLibCompatible>
1044 <TargetEnvironment>Win32</TargetEnvironment>
1045 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1046 <HeaderFileName>
1047 </HeaderFileName>
1048 </Midl>
1049 <ClCompile>
1050 <Optimization>MaxSpeed</Optimization>
1051 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1052 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1053 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1054 <StringPooling>true</StringPooling>
1055 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1056 <FunctionLevelLinking>true</FunctionLevelLinking>
1057 <WarningLevel>Level4</WarningLevel>
1058 </ClCompile>
1059 <ResourceCompile>
1060 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1061 <Culture>0x0409</Culture>
1062 </ResourceCompile>
1063 <Link>
1064 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1065 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1066 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1067 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1068 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1069 <TargetMachine>MachineX86</TargetMachine>
1070 </Link>
1071 </ItemDefinitionGroup>
1072 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
1073 <Midl>
1074 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1075 <MkTypLibCompatible>true</MkTypLibCompatible>
1076 <TargetEnvironment>Win32</TargetEnvironment>
1077 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1078 <HeaderFileName>
1079 </HeaderFileName>
1080 </Midl>
1081 <ClCompile>
1082 <Optimization>MaxSpeed</Optimization>
1083 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1084 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1085 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1086 <StringPooling>true</StringPooling>
1087 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1088 <FunctionLevelLinking>true</FunctionLevelLinking>
1089 <WarningLevel>Level4</WarningLevel>
1090 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1091 </ClCompile>
1092 <ResourceCompile>
1093 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1094 <Culture>0x0409</Culture>
1095 </ResourceCompile>
1096 <Link>
1097 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1099 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1100 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1101 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1102 <TargetMachine>MachineX86</TargetMachine>
1103 <GenerateDebugInformation>true</GenerateDebugInformation>
1104 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1105 </Link>
1106 </ItemDefinitionGroup>
1107 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1108 <Midl>
1109 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1110 <MkTypLibCompatible>true</MkTypLibCompatible>
1111 <TargetEnvironment>X64</TargetEnvironment>
1112 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1113 <HeaderFileName>
1114 </HeaderFileName>
1115 </Midl>
1116 <ClCompile>
1117 <Optimization>MaxSpeed</Optimization>
1118 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1119 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1120 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1121 <StringPooling>true</StringPooling>
1122 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1123 <FunctionLevelLinking>true</FunctionLevelLinking>
1124 <WarningLevel>Level4</WarningLevel>
1125 </ClCompile>
1126 <ResourceCompile>
1127 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1128 <Culture>0x0409</Culture>
1129 </ResourceCompile>
1130 <Link>
1131 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1132 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1133 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1134 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1135 <TargetMachine>MachineX64</TargetMachine>
1136 </Link>
1137 </ItemDefinitionGroup>
1138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1139 <Midl>
1140 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1141 <MkTypLibCompatible>true</MkTypLibCompatible>
1142 <TargetEnvironment>X64</TargetEnvironment>
1143 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1144 <HeaderFileName>
1145 </HeaderFileName>
1146 </Midl>
1147 <ClCompile>
1148 <Optimization>MaxSpeed</Optimization>
1149 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1150 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1151 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1152 <StringPooling>true</StringPooling>
1153 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1154 <FunctionLevelLinking>true</FunctionLevelLinking>
1155 <WarningLevel>Level4</WarningLevel>
1156 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1157 </ClCompile>
1158 <ResourceCompile>
1159 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1160 <Culture>0x0409</Culture>
1161 </ResourceCompile>
1162 <Link>
1163 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1164 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1165 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1166 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1167 <TargetMachine>MachineX64</TargetMachine>
1168 <GenerateDebugInformation>true</GenerateDebugInformation>
1169 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1170 </Link>
1171 </ItemDefinitionGroup>
1172 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1173 <ClCompile>
1174 <Optimization>Disabled</Optimization>
1175 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1176 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1177 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1178 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1179 <WarningLevel>Level4</WarningLevel>
1180 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1181 </ClCompile>
1182 <ResourceCompile>
1183 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1184 <Culture>0x0409</Culture>
1185 </ResourceCompile>
1186 <Lib>
1187 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1188 <TargetMachine>MachineX86</TargetMachine>
1189 </Lib>
1190 </ItemDefinitionGroup>
1191 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1192 <ClCompile>
1193 <Optimization>Disabled</Optimization>
1194 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1195 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1196 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1197 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1198 <WarningLevel>Level4</WarningLevel>
1199 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1200 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1201 </ClCompile>
1202 <ResourceCompile>
1203 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1204 <Culture>0x0409</Culture>
1205 </ResourceCompile>
1206 <Lib>
1207 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1208 <TargetMachine>MachineX86</TargetMachine>
1209 </Lib>
1210 </ItemDefinitionGroup>
1211 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1212 <Midl>
1213 <TargetEnvironment>X64</TargetEnvironment>
1214 </Midl>
1215 <ClCompile>
1216 <Optimization>Disabled</Optimization>
1217 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1218 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1219 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1220 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1221 <WarningLevel>Level4</WarningLevel>
1222 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1223 </ClCompile>
1224 <ResourceCompile>
1225 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1226 <Culture>0x0409</Culture>
1227 </ResourceCompile>
1228 <Lib>
1229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1230 <TargetMachine>MachineX64</TargetMachine>
1231 </Lib>
1232 </ItemDefinitionGroup>
1233 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1234 <Midl>
1235 <TargetEnvironment>X64</TargetEnvironment>
1236 </Midl>
1237 <ClCompile>
1238 <Optimization>Disabled</Optimization>
1239 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1240 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1241 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1242 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1243 <WarningLevel>Level4</WarningLevel>
1244 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1245 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1246 </ClCompile>
1247 <ResourceCompile>
1248 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1249 <Culture>0x0409</Culture>
1250 </ResourceCompile>
1251 <Lib>
1252 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1253 <TargetMachine>MachineX64</TargetMachine>
1254 </Lib>
1255 </ItemDefinitionGroup>
1256 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1257 <ClCompile>
1258 <Optimization>MaxSpeed</Optimization>
1259 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1262 <StringPooling>true</StringPooling>
1263 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1264 <FunctionLevelLinking>true</FunctionLevelLinking>
1265 <WarningLevel>Level4</WarningLevel>
1266 </ClCompile>
1267 <ResourceCompile>
1268 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1269 <Culture>0x0409</Culture>
1270 </ResourceCompile>
1271 <Lib>
1272 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1273 <TargetMachine>MachineX86</TargetMachine>
1274 </Lib>
1275 </ItemDefinitionGroup>
1276 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1277 <ClCompile>
1278 <Optimization>MaxSpeed</Optimization>
1279 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1280 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1281 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1282 <StringPooling>true</StringPooling>
1283 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1284 <FunctionLevelLinking>true</FunctionLevelLinking>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 </ResourceCompile>
1292 <Lib>
1293 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1294 <TargetMachine>MachineX86</TargetMachine>
1295 </Lib>
1296 </ItemDefinitionGroup>
1297 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1298 <Midl>
1299 <TargetEnvironment>X64</TargetEnvironment>
1300 </Midl>
1301 <ClCompile>
1302 <Optimization>MaxSpeed</Optimization>
1303 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1305 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1306 <StringPooling>true</StringPooling>
1307 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1308 <FunctionLevelLinking>true</FunctionLevelLinking>
1309 <WarningLevel>Level4</WarningLevel>
1310 </ClCompile>
1311 <ResourceCompile>
1312 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1313 <Culture>0x0409</Culture>
1314 </ResourceCompile>
1315 <Lib>
1316 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1317 <TargetMachine>MachineX64</TargetMachine>
1318 </Lib>
1319 </ItemDefinitionGroup>
1320 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1321 <Midl>
1322 <TargetEnvironment>X64</TargetEnvironment>
1323 </Midl>
1324 <ClCompile>
1325 <Optimization>MaxSpeed</Optimization>
1326 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1327 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1328 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1329 <StringPooling>true</StringPooling>
1330 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1331 <FunctionLevelLinking>true</FunctionLevelLinking>
1332 <WarningLevel>Level4</WarningLevel>
1333 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1334 </ClCompile>
1335 <ResourceCompile>
1336 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1337 <Culture>0x0409</Culture>
1338 </ResourceCompile>
1339 <Lib>
1340 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1341 <TargetMachine>MachineX64</TargetMachine>
1342 </Lib>
1343 </ItemDefinitionGroup>
1344 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1345 <Midl>
1346 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1347 <MkTypLibCompatible>true</MkTypLibCompatible>
1348 <TargetEnvironment>Win32</TargetEnvironment>
1349 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1350 <HeaderFileName>
1351 </HeaderFileName>
1352 </Midl>
1353 <ClCompile>
1354 <Optimization>Disabled</Optimization>
1355 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1356 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1357 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1358 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1359 <WarningLevel>Level4</WarningLevel>
1360 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1361 </ClCompile>
1362 <ResourceCompile>
1363 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1364 <Culture>0x0409</Culture>
1365 </ResourceCompile>
1366 <Link>
1367 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1368 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1369 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1370 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1371 <GenerateDebugInformation>true</GenerateDebugInformation>
1372 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1373 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1374 <TargetMachine>MachineX86</TargetMachine>
1375 </Link>
1376 </ItemDefinitionGroup>
1377 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1378 <Midl>
1379 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1380 <MkTypLibCompatible>true</MkTypLibCompatible>
1381 <TargetEnvironment>X64</TargetEnvironment>
1382 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1383 <HeaderFileName>
1384 </HeaderFileName>
1385 </Midl>
1386 <ClCompile>
1387 <Optimization>Disabled</Optimization>
1388 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1389 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1390 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1391 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1392 <WarningLevel>Level4</WarningLevel>
1393 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1394 </ClCompile>
1395 <ResourceCompile>
1396 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1397 <Culture>0x0409</Culture>
1398 </ResourceCompile>
1399 <Link>
1400 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1401 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1402 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1403 <GenerateDebugInformation>true</GenerateDebugInformation>
1404 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1405 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1406 <TargetMachine>MachineX64</TargetMachine>
1407 </Link>
1408 </ItemDefinitionGroup>
1409 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1410 <Midl>
1411 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <MkTypLibCompatible>true</MkTypLibCompatible>
1413 <TargetEnvironment>Win32</TargetEnvironment>
1414 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1415 <HeaderFileName>
1416 </HeaderFileName>
1417 </Midl>
1418 <ClCompile>
1419 <Optimization>MaxSpeed</Optimization>
1420 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1421 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1422 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1423 <StringPooling>true</StringPooling>
1424 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1425 <FunctionLevelLinking>true</FunctionLevelLinking>
1426 <WarningLevel>Level4</WarningLevel>
1427 </ClCompile>
1428 <ResourceCompile>
1429 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1430 <Culture>0x0409</Culture>
1431 </ResourceCompile>
1432 <Link>
1433 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1434 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1435 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1436 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1437 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1438 <TargetMachine>MachineX86</TargetMachine>
1439 </Link>
1440 </ItemDefinitionGroup>
1441 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1442 <Midl>
1443 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1444 <MkTypLibCompatible>true</MkTypLibCompatible>
1445 <TargetEnvironment>X64</TargetEnvironment>
1446 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1447 <HeaderFileName>
1448 </HeaderFileName>
1449 </Midl>
1450 <ClCompile>
1451 <Optimization>MaxSpeed</Optimization>
1452 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1453 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1454 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1455 <StringPooling>true</StringPooling>
1456 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1457 <FunctionLevelLinking>true</FunctionLevelLinking>
1458 <WarningLevel>Level4</WarningLevel>
1459 </ClCompile>
1460 <ResourceCompile>
1461 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1462 <Culture>0x0409</Culture>
1463 </ResourceCompile>
1464 <Link>
1465 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1466 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1467 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1468 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1469 <TargetMachine>MachineX64</TargetMachine>
1470 </Link>
1471 </ItemDefinitionGroup>
1472 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1473 <Midl>
1474 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1475 <MkTypLibCompatible>true</MkTypLibCompatible>
1476 <TargetEnvironment>Win32</TargetEnvironment>
1477 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1478 <HeaderFileName>
1479 </HeaderFileName>
1480 </Midl>
1481 <ClCompile>
1482 <Optimization>Disabled</Optimization>
1483 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1484 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1485 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1486 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1487 <WarningLevel>Level4</WarningLevel>
1488 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1489 </ClCompile>
1490 <ResourceCompile>
1491 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1492 <Culture>0x0409</Culture>
1493 </ResourceCompile>
1494 <Link>
1495 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1496 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1497 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1498 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1499 <GenerateDebugInformation>true</GenerateDebugInformation>
1500 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1501 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1502 <TargetMachine>MachineX86</TargetMachine>
1503 </Link>
1504 </ItemDefinitionGroup>
1505 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1506 <Midl>
1507 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1508 <MkTypLibCompatible>true</MkTypLibCompatible>
1509 <TargetEnvironment>Win32</TargetEnvironment>
1510 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1511 <HeaderFileName>
1512 </HeaderFileName>
1513 </Midl>
1514 <ClCompile>
1515 <Optimization>Disabled</Optimization>
1516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1517 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1520 <WarningLevel>Level4</WarningLevel>
1521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1522 </ClCompile>
1523 <ResourceCompile>
1524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1525 <Culture>0x0409</Culture>
1526 </ResourceCompile>
1527 <Link>
1528 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1529 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1530 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1531 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1532 <GenerateDebugInformation>true</GenerateDebugInformation>
1533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1534 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1535 <TargetMachine>MachineX86</TargetMachine>
1536 </Link>
1537 </ItemDefinitionGroup>
1538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1539 <Midl>
1540 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1541 <MkTypLibCompatible>true</MkTypLibCompatible>
1542 <TargetEnvironment>X64</TargetEnvironment>
1543 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1544 <HeaderFileName>
1545 </HeaderFileName>
1546 </Midl>
1547 <ClCompile>
1548 <Optimization>Disabled</Optimization>
1549 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1550 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1551 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1552 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1553 <WarningLevel>Level4</WarningLevel>
1554 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1555 </ClCompile>
1556 <ResourceCompile>
1557 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1558 <Culture>0x0409</Culture>
1559 </ResourceCompile>
1560 <Link>
1561 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1562 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1563 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1564 <GenerateDebugInformation>true</GenerateDebugInformation>
1565 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1566 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1567 <TargetMachine>MachineX64</TargetMachine>
1568 </Link>
1569 </ItemDefinitionGroup>
1570 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1571 <Midl>
1572 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1573 <MkTypLibCompatible>true</MkTypLibCompatible>
1574 <TargetEnvironment>X64</TargetEnvironment>
1575 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1576 <HeaderFileName>
1577 </HeaderFileName>
1578 </Midl>
1579 <ClCompile>
1580 <Optimization>Disabled</Optimization>
1581 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1582 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1583 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1584 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1585 <WarningLevel>Level4</WarningLevel>
1586 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1587 </ClCompile>
1588 <ResourceCompile>
1589 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1590 <Culture>0x0409</Culture>
1591 </ResourceCompile>
1592 <Link>
1593 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1594 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1595 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1596 <GenerateDebugInformation>true</GenerateDebugInformation>
1597 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1598 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1599 <TargetMachine>MachineX64</TargetMachine>
1600 </Link>
1601 </ItemDefinitionGroup>
1602 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1603 <Midl>
1604 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1605 <MkTypLibCompatible>true</MkTypLibCompatible>
1606 <TargetEnvironment>Win32</TargetEnvironment>
1607 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1608 <HeaderFileName>
1609 </HeaderFileName>
1610 </Midl>
1611 <ClCompile>
1612 <Optimization>MaxSpeed</Optimization>
1613 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1614 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1615 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1616 <StringPooling>true</StringPooling>
1617 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1618 <FunctionLevelLinking>true</FunctionLevelLinking>
1619 <WarningLevel>Level4</WarningLevel>
1620 </ClCompile>
1621 <ResourceCompile>
1622 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1623 <Culture>0x0409</Culture>
1624 </ResourceCompile>
1625 <Link>
1626 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1627 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1628 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1629 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1630 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1631 <TargetMachine>MachineX86</TargetMachine>
1632 </Link>
1633 </ItemDefinitionGroup>
1634 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1635 <Midl>
1636 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1637 <MkTypLibCompatible>true</MkTypLibCompatible>
1638 <TargetEnvironment>Win32</TargetEnvironment>
1639 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1640 <HeaderFileName>
1641 </HeaderFileName>
1642 </Midl>
1643 <ClCompile>
1644 <Optimization>MaxSpeed</Optimization>
1645 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1646 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1647 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1648 <StringPooling>true</StringPooling>
1649 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1650 <FunctionLevelLinking>true</FunctionLevelLinking>
1651 <WarningLevel>Level4</WarningLevel>
1652 </ClCompile>
1653 <ResourceCompile>
1654 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1655 <Culture>0x0409</Culture>
1656 </ResourceCompile>
1657 <Link>
1658 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1659 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1660 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1661 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1662 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1663 <TargetMachine>MachineX86</TargetMachine>
1664 </Link>
1665 </ItemDefinitionGroup>
1666 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1667 <Midl>
1668 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1669 <MkTypLibCompatible>true</MkTypLibCompatible>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 </ResourceCompile>
1689 <Link>
1690 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1691 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1692 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1693 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1694 <TargetMachine>MachineX64</TargetMachine>
1695 </Link>
1696 </ItemDefinitionGroup>
1697 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1698 <Midl>
1699 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1700 <MkTypLibCompatible>true</MkTypLibCompatible>
1701 <TargetEnvironment>X64</TargetEnvironment>
1702 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1703 <HeaderFileName>
1704 </HeaderFileName>
1705 </Midl>
1706 <ClCompile>
1707 <Optimization>MaxSpeed</Optimization>
1708 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1709 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1710 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1711 <StringPooling>true</StringPooling>
1712 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1713 <FunctionLevelLinking>true</FunctionLevelLinking>
1714 <WarningLevel>Level4</WarningLevel>
1715 </ClCompile>
1716 <ResourceCompile>
1717 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1718 <Culture>0x0409</Culture>
1719 </ResourceCompile>
1720 <Link>
1721 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1722 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1723 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1724 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1725 <TargetMachine>MachineX64</TargetMachine>
1726 </Link>
1727 </ItemDefinitionGroup>
1728 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1729 <Midl>
1730 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1731 <MkTypLibCompatible>true</MkTypLibCompatible>
1732 <TargetEnvironment>Win32</TargetEnvironment>
1733 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1734 <HeaderFileName>
1735 </HeaderFileName>
1736 </Midl>
1737 <ClCompile>
1738 <Optimization>Disabled</Optimization>
1739 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1740 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1741 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1742 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1743 <WarningLevel>Level4</WarningLevel>
1744 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1745 </ClCompile>
1746 <ResourceCompile>
1747 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1748 <Culture>0x0409</Culture>
1749 </ResourceCompile>
1750 <Link>
1751 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1752 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1753 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC15\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1754 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1755 <GenerateDebugInformation>true</GenerateDebugInformation>
1756 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1757 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1758 <TargetMachine>MachineX86</TargetMachine>
1759 </Link>
1760 </ItemDefinitionGroup>
1761 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1762 <Midl>
1763 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1764 <MkTypLibCompatible>true</MkTypLibCompatible>
1765 <TargetEnvironment>X64</TargetEnvironment>
1766 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1767 <HeaderFileName>
1768 </HeaderFileName>
1769 </Midl>
1770 <ClCompile>
1771 <Optimization>Disabled</Optimization>
1772 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1773 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1774 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1775 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1776 <WarningLevel>Level4</WarningLevel>
1777 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1778 </ClCompile>
1779 <ResourceCompile>
1780 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1781 <Culture>0x0409</Culture>
1782 </ResourceCompile>
1783 <Link>
1784 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1785 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1786 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC15\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1787 <GenerateDebugInformation>true</GenerateDebugInformation>
1788 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1789 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1790 <TargetMachine>MachineX64</TargetMachine>
1791 </Link>
1792 </ItemDefinitionGroup>
1793 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1794 <Midl>
1795 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1796 <MkTypLibCompatible>true</MkTypLibCompatible>
1797 <TargetEnvironment>Win32</TargetEnvironment>
1798 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1799 <HeaderFileName>
1800 </HeaderFileName>
1801 </Midl>
1802 <ClCompile>
1803 <Optimization>MaxSpeed</Optimization>
1804 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1805 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1806 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1807 <StringPooling>true</StringPooling>
1808 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1809 <FunctionLevelLinking>true</FunctionLevelLinking>
1810 <WarningLevel>Level4</WarningLevel>
1811 </ClCompile>
1812 <ResourceCompile>
1813 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1814 <Culture>0x0409</Culture>
1815 </ResourceCompile>
1816 <Link>
1817 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1818 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1819 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC15\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1820 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1821 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1822 <TargetMachine>MachineX86</TargetMachine>
1823 </Link>
1824 </ItemDefinitionGroup>
1825 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1826 <Midl>
1827 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1828 <MkTypLibCompatible>true</MkTypLibCompatible>
1829 <TargetEnvironment>X64</TargetEnvironment>
1830 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1831 <HeaderFileName>
1832 </HeaderFileName>
1833 </Midl>
1834 <ClCompile>
1835 <Optimization>MaxSpeed</Optimization>
1836 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1837 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1838 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1839 <StringPooling>true</StringPooling>
1840 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1841 <FunctionLevelLinking>true</FunctionLevelLinking>
1842 <WarningLevel>Level4</WarningLevel>
1843 </ClCompile>
1844 <ResourceCompile>
1845 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1846 <Culture>0x0409</Culture>
1847 </ResourceCompile>
1848 <Link>
1849 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1850 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1851 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC15\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1852 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1853 <TargetMachine>MachineX64</TargetMachine>
1854 </Link>
1855 </ItemDefinitionGroup>
1856 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
1857 <ClCompile>
1858 <Optimization>Disabled</Optimization>
1859 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1860 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1861 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1862 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1863 <WarningLevel>Level4</WarningLevel>
1864 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1865 </ClCompile>
1866 <ResourceCompile>
1867 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1868 <Culture>0x0409</Culture>
1869 </ResourceCompile>
1870 <Lib>
1871 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1872 <TargetMachine>MachineX86</TargetMachine>
1873 </Lib>
1874 </ItemDefinitionGroup>
1875 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
1876 <Midl>
1877 <TargetEnvironment>X64</TargetEnvironment>
1878 </Midl>
1879 <ClCompile>
1880 <Optimization>Disabled</Optimization>
1881 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1882 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1883 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1884 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1885 <WarningLevel>Level4</WarningLevel>
1886 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1887 </ClCompile>
1888 <ResourceCompile>
1889 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1890 <Culture>0x0409</Culture>
1891 </ResourceCompile>
1892 <Lib>
1893 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1894 <TargetMachine>MachineX64</TargetMachine>
1895 </Lib>
1896 </ItemDefinitionGroup>
1897 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1898 <ClCompile>
1899 <Optimization>Disabled</Optimization>
1900 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1901 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1902 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1903 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1904 <WarningLevel>Level4</WarningLevel>
1905 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1906 </ClCompile>
1907 <ResourceCompile>
1908 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1909 <Culture>0x0409</Culture>
1910 </ResourceCompile>
1911 <Lib>
1912 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1913 <TargetMachine>MachineX86</TargetMachine>
1914 </Lib>
1915 </ItemDefinitionGroup>
1916 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1917 <Midl>
1918 <TargetEnvironment>X64</TargetEnvironment>
1919 </Midl>
1920 <ClCompile>
1921 <Optimization>Disabled</Optimization>
1922 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1923 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1924 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1925 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1926 <WarningLevel>Level4</WarningLevel>
1927 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1928 </ClCompile>
1929 <ResourceCompile>
1930 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1931 <Culture>0x0409</Culture>
1932 </ResourceCompile>
1933 <Lib>
1934 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1935 <TargetMachine>MachineX64</TargetMachine>
1936 </Lib>
1937 </ItemDefinitionGroup>
1938 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
1939 <ClCompile>
1940 <Optimization>Disabled</Optimization>
1941 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1942 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1943 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1944 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1945 <WarningLevel>Level4</WarningLevel>
1946 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1947 </ClCompile>
1948 <ResourceCompile>
1949 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1950 <Culture>0x0409</Culture>
1951 </ResourceCompile>
1952 <Lib>
1953 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1954 <TargetMachine>MachineX86</TargetMachine>
1955 </Lib>
1956 </ItemDefinitionGroup>
1957 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1958 <ClCompile>
1959 <Optimization>Disabled</Optimization>
1960 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1961 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1962 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1963 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1964 <WarningLevel>Level4</WarningLevel>
1965 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1966 </ClCompile>
1967 <ResourceCompile>
1968 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1969 <Culture>0x0409</Culture>
1970 </ResourceCompile>
1971 <Lib>
1972 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1973 <TargetMachine>MachineX86</TargetMachine>
1974 </Lib>
1975 </ItemDefinitionGroup>
1976 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
1977 <Midl>
1978 <TargetEnvironment>X64</TargetEnvironment>
1979 </Midl>
1980 <ClCompile>
1981 <Optimization>Disabled</Optimization>
1982 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1983 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1985 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1986 <WarningLevel>Level4</WarningLevel>
1987 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1988 </ClCompile>
1989 <ResourceCompile>
1990 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1991 <Culture>0x0409</Culture>
1992 </ResourceCompile>
1993 <Lib>
1994 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1995 <TargetMachine>MachineX64</TargetMachine>
1996 </Lib>
1997 </ItemDefinitionGroup>
1998 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1999 <Midl>
2000 <TargetEnvironment>X64</TargetEnvironment>
2001 </Midl>
2002 <ClCompile>
2003 <Optimization>Disabled</Optimization>
2004 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2005 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2006 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2007 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2008 <WarningLevel>Level4</WarningLevel>
2009 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2010 </ClCompile>
2011 <ResourceCompile>
2012 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2013 <Culture>0x0409</Culture>
2014 </ResourceCompile>
2015 <Lib>
2016 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2017 <TargetMachine>MachineX64</TargetMachine>
2018 </Lib>
2019 </ItemDefinitionGroup>
2020 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
2021 <ClCompile>
2022 <Optimization>Disabled</Optimization>
2023 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2024 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2025 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2026 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2027 <WarningLevel>Level4</WarningLevel>
2028 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2029 </ClCompile>
2030 <ResourceCompile>
2031 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2032 <Culture>0x0409</Culture>
2033 </ResourceCompile>
2034 <Lib>
2035 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2036 <TargetMachine>MachineX86</TargetMachine>
2037 </Lib>
2038 </ItemDefinitionGroup>
2039 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
2040 <Midl>
2041 <TargetEnvironment>X64</TargetEnvironment>
2042 </Midl>
2043 <ClCompile>
2044 <Optimization>Disabled</Optimization>
2045 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2046 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2047 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2048 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2049 <WarningLevel>Level4</WarningLevel>
2050 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2051 </ClCompile>
2052 <ResourceCompile>
2053 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2054 <Culture>0x0409</Culture>
2055 </ResourceCompile>
2056 <Lib>
2057 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2058 <TargetMachine>MachineX64</TargetMachine>
2059 </Lib>
2060 </ItemDefinitionGroup>
2061 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 </ResourceCompile>
2075 <Lib>
2076 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2077 <TargetMachine>MachineX86</TargetMachine>
2078 </Lib>
2079 </ItemDefinitionGroup>
2080 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2081 <Midl>
2082 <TargetEnvironment>X64</TargetEnvironment>
2083 </Midl>
2084 <ClCompile>
2085 <Optimization>Disabled</Optimization>
2086 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2087 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2088 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2089 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2090 <WarningLevel>Level4</WarningLevel>
2091 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2092 </ClCompile>
2093 <ResourceCompile>
2094 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2095 <Culture>0x0409</Culture>
2096 </ResourceCompile>
2097 <Lib>
2098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2099 <TargetMachine>MachineX64</TargetMachine>
2100 </Lib>
2101 </ItemDefinitionGroup>
2102 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2103 <ClCompile>
2104 <Optimization>MaxSpeed</Optimization>
2105 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2106 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2107 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2108 <StringPooling>true</StringPooling>
2109 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2110 <FunctionLevelLinking>true</FunctionLevelLinking>
2111 <WarningLevel>Level4</WarningLevel>
2112 </ClCompile>
2113 <ResourceCompile>
2114 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2115 <Culture>0x0409</Culture>
2116 </ResourceCompile>
2117 <Lib>
2118 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2119 <TargetMachine>MachineX86</TargetMachine>
2120 </Lib>
2121 </ItemDefinitionGroup>
2122 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2123 <Midl>
2124 <TargetEnvironment>X64</TargetEnvironment>
2125 </Midl>
2126 <ClCompile>
2127 <Optimization>MaxSpeed</Optimization>
2128 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2129 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2130 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2131 <StringPooling>true</StringPooling>
2132 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2133 <FunctionLevelLinking>true</FunctionLevelLinking>
2134 <WarningLevel>Level4</WarningLevel>
2135 </ClCompile>
2136 <ResourceCompile>
2137 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2138 <Culture>0x0409</Culture>
2139 </ResourceCompile>
2140 <Lib>
2141 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2142 <TargetMachine>MachineX64</TargetMachine>
2143 </Lib>
2144 </ItemDefinitionGroup>
2145 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2146 <ClCompile>
2147 <Optimization>MaxSpeed</Optimization>
2148 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2149 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2150 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2151 <StringPooling>true</StringPooling>
2152 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2153 <FunctionLevelLinking>true</FunctionLevelLinking>
2154 <WarningLevel>Level4</WarningLevel>
2155 </ClCompile>
2156 <ResourceCompile>
2157 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <Culture>0x0409</Culture>
2159 </ResourceCompile>
2160 <Lib>
2161 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2162 <TargetMachine>MachineX86</TargetMachine>
2163 </Lib>
2164 </ItemDefinitionGroup>
2165 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2166 <Midl>
2167 <TargetEnvironment>X64</TargetEnvironment>
2168 </Midl>
2169 <ClCompile>
2170 <Optimization>MaxSpeed</Optimization>
2171 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2172 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2173 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2174 <StringPooling>true</StringPooling>
2175 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2176 <FunctionLevelLinking>true</FunctionLevelLinking>
2177 <WarningLevel>Level4</WarningLevel>
2178 </ClCompile>
2179 <ResourceCompile>
2180 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2181 <Culture>0x0409</Culture>
2182 </ResourceCompile>
2183 <Lib>
2184 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2185 <TargetMachine>MachineX64</TargetMachine>
2186 </Lib>
2187 </ItemDefinitionGroup>
2188 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2189 <ClCompile>
2190 <Optimization>MaxSpeed</Optimization>
2191 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2192 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2193 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2194 <StringPooling>true</StringPooling>
2195 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2196 <FunctionLevelLinking>true</FunctionLevelLinking>
2197 <WarningLevel>Level4</WarningLevel>
2198 </ClCompile>
2199 <ResourceCompile>
2200 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2201 <Culture>0x0409</Culture>
2202 </ResourceCompile>
2203 <Lib>
2204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2205 <TargetMachine>MachineX86</TargetMachine>
2206 </Lib>
2207 </ItemDefinitionGroup>
2208 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2209 <ClCompile>
2210 <Optimization>MaxSpeed</Optimization>
2211 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2212 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2213 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2214 <StringPooling>true</StringPooling>
2215 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2216 <FunctionLevelLinking>true</FunctionLevelLinking>
2217 <WarningLevel>Level4</WarningLevel>
2218 </ClCompile>
2219 <ResourceCompile>
2220 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2221 <Culture>0x0409</Culture>
2222 </ResourceCompile>
2223 <Lib>
2224 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2225 <TargetMachine>MachineX86</TargetMachine>
2226 </Lib>
2227 </ItemDefinitionGroup>
2228 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2229 <Midl>
2230 <TargetEnvironment>X64</TargetEnvironment>
2231 </Midl>
2232 <ClCompile>
2233 <Optimization>MaxSpeed</Optimization>
2234 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2235 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2236 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2237 <StringPooling>true</StringPooling>
2238 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2239 <FunctionLevelLinking>true</FunctionLevelLinking>
2240 <WarningLevel>Level4</WarningLevel>
2241 </ClCompile>
2242 <ResourceCompile>
2243 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2244 <Culture>0x0409</Culture>
2245 </ResourceCompile>
2246 <Lib>
2247 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2248 <TargetMachine>MachineX64</TargetMachine>
2249 </Lib>
2250 </ItemDefinitionGroup>
2251 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2252 <Midl>
2253 <TargetEnvironment>X64</TargetEnvironment>
2254 </Midl>
2255 <ClCompile>
2256 <Optimization>MaxSpeed</Optimization>
2257 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2258 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2259 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2260 <StringPooling>true</StringPooling>
2261 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2262 <FunctionLevelLinking>true</FunctionLevelLinking>
2263 <WarningLevel>Level4</WarningLevel>
2264 </ClCompile>
2265 <ResourceCompile>
2266 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2267 <Culture>0x0409</Culture>
2268 </ResourceCompile>
2269 <Lib>
2270 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2271 <TargetMachine>MachineX64</TargetMachine>
2272 </Lib>
2273 </ItemDefinitionGroup>
2274 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
2275 <ClCompile>
2276 <Optimization>MaxSpeed</Optimization>
2277 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2278 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2279 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2280 <StringPooling>true</StringPooling>
2281 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2282 <FunctionLevelLinking>true</FunctionLevelLinking>
2283 <WarningLevel>Level4</WarningLevel>
2284 </ClCompile>
2285 <ResourceCompile>
2286 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2287 <Culture>0x0409</Culture>
2288 </ResourceCompile>
2289 <Lib>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <TargetMachine>MachineX86</TargetMachine>
2292 </Lib>
2293 </ItemDefinitionGroup>
2294 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2295 <Midl>
2296 <TargetEnvironment>X64</TargetEnvironment>
2297 </Midl>
2298 <ClCompile>
2299 <Optimization>MaxSpeed</Optimization>
2300 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2301 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2302 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2303 <StringPooling>true</StringPooling>
2304 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2305 <FunctionLevelLinking>true</FunctionLevelLinking>
2306 <WarningLevel>Level4</WarningLevel>
2307 </ClCompile>
2308 <ResourceCompile>
2309 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2310 <Culture>0x0409</Culture>
2311 </ResourceCompile>
2312 <Lib>
2313 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2314 <TargetMachine>MachineX64</TargetMachine>
2315 </Lib>
2316 </ItemDefinitionGroup>
2317 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2318 <ClCompile>
2319 <Optimization>MaxSpeed</Optimization>
2320 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2321 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC15\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2322 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2323 <StringPooling>true</StringPooling>
2324 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2325 <FunctionLevelLinking>true</FunctionLevelLinking>
2326 <WarningLevel>Level4</WarningLevel>
2327 </ClCompile>
2328 <ResourceCompile>
2329 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2330 <Culture>0x0409</Culture>
2331 </ResourceCompile>
2332 <Lib>
2333 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2334 <TargetMachine>MachineX86</TargetMachine>
2335 </Lib>
2336 </ItemDefinitionGroup>
2337 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2338 <Midl>
2339 <TargetEnvironment>X64</TargetEnvironment>
2340 </Midl>
2341 <ClCompile>
2342 <Optimization>MaxSpeed</Optimization>
2343 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2344 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC15\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2345 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2346 <StringPooling>true</StringPooling>
2347 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2348 <FunctionLevelLinking>true</FunctionLevelLinking>
2349 <WarningLevel>Level4</WarningLevel>
2350 </ClCompile>
2351 <ResourceCompile>
2352 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2353 <Culture>0x0409</Culture>
2354 </ResourceCompile>
2355 <Lib>
2356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2357 <TargetMachine>MachineX64</TargetMachine>
2358 </Lib>
2359 </ItemDefinitionGroup>
2360 <ItemGroup>
2361 <ClCompile Include="..\..\..\..\lib\altsvc.c" />
2362 <ClCompile Include="..\..\..\..\lib\amigaos.c" />
2363 <ClCompile Include="..\..\..\..\lib\asyn-ares.c" />
2364 <ClCompile Include="..\..\..\..\lib\asyn-thread.c" />
2365 <ClCompile Include="..\..\..\..\lib\base64.c" />
2366 <ClCompile Include="..\..\..\..\lib\bufref.c" />
2367 <ClCompile Include="..\..\..\..\lib\c-hyper.c" />
2368 <ClCompile Include="..\..\..\..\lib\conncache.c" />
2369 <ClCompile Include="..\..\..\..\lib\connect.c" />
2370 <ClCompile Include="..\..\..\..\lib\content_encoding.c" />
2371 <ClCompile Include="..\..\..\..\lib\cookie.c" />
2372 <ClCompile Include="..\..\..\..\lib\curl_addrinfo.c" />
2373 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2374 <ClCompile Include="..\..\..\..\lib\curl_des.c" />
2375 <ClCompile Include="..\..\..\..\lib\curl_endian.c" />
2376 <ClCompile Include="..\..\..\..\lib\curl_fnmatch.c" />
2377 <ClCompile Include="..\..\..\..\lib\curl_gethostname.c" />
2378 <ClCompile Include="..\..\..\..\lib\curl_get_line.c" />
2379 <ClCompile Include="..\..\..\..\lib\curl_gssapi.c" />
2380 <ClCompile Include="..\..\..\..\lib\curl_memrchr.c" />
2381 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2382 <ClCompile Include="..\..\..\..\lib\curl_ntlm_core.c" />
2383 <ClCompile Include="..\..\..\..\lib\curl_ntlm_wb.c" />
2384 <ClCompile Include="..\..\..\..\lib\curl_path.c" />
2385 <ClCompile Include="..\..\..\..\lib\curl_range.c" />
2386 <ClCompile Include="..\..\..\..\lib\curl_rtmp.c" />
2387 <ClCompile Include="..\..\..\..\lib\curl_sasl.c" />
2388 <ClCompile Include="..\..\..\..\lib\curl_sspi.c" />
2389 <ClCompile Include="..\..\..\..\lib\curl_threads.c" />
2390 <ClCompile Include="..\..\..\..\lib\dict.c" />
2391 <ClCompile Include="..\..\..\..\lib\doh.c" />
2392 <ClCompile Include="..\..\..\..\lib\dotdot.c" />
2393 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2394 <ClCompile Include="..\..\..\..\lib\easy.c" />
2395 <ClCompile Include="..\..\..\..\lib\easygetopt.c" />
2396 <ClCompile Include="..\..\..\..\lib\easyoptions.c" />
2397 <ClCompile Include="..\..\..\..\lib\escape.c" />
2398 <ClCompile Include="..\..\..\..\lib\file.c" />
2399 <ClCompile Include="..\..\..\..\lib\fileinfo.c" />
2400 <ClCompile Include="..\..\..\..\lib\formdata.c" />
2401 <ClCompile Include="..\..\..\..\lib\ftp.c" />
2402 <ClCompile Include="..\..\..\..\lib\ftplistparser.c" />
2403 <ClCompile Include="..\..\..\..\lib\getenv.c" />
2404 <ClCompile Include="..\..\..\..\lib\getinfo.c" />
2405 <ClCompile Include="..\..\..\..\lib\gopher.c" />
2406 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
2407 <ClCompile Include="..\..\..\..\lib\hash.c" />
2408 <ClCompile Include="..\..\..\..\lib\hmac.c" />
2409 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
2410 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
2411 <ClCompile Include="..\..\..\..\lib\hostip6.c" />
2412 <ClCompile Include="..\..\..\..\lib\hostip.c" />
2413 <ClCompile Include="..\..\..\..\lib\hostsyn.c" />
2414 <ClCompile Include="..\..\..\..\lib\hsts.c" />
2415 <ClCompile Include="..\..\..\..\lib\http2.c" />
2416 <ClCompile Include="..\..\..\..\lib\http_aws_sigv4.c" />
2417 <ClCompile Include="..\..\..\..\lib\http.c" />
2418 <ClCompile Include="..\..\..\..\lib\http_chunks.c" />
2419 <ClCompile Include="..\..\..\..\lib\http_digest.c" />
2420 <ClCompile Include="..\..\..\..\lib\http_negotiate.c" />
2421 <ClCompile Include="..\..\..\..\lib\http_ntlm.c" />
2422 <ClCompile Include="..\..\..\..\lib\http_proxy.c" />
2423 <ClCompile Include="..\..\..\..\lib\idn_win32.c" />
2424 <ClCompile Include="..\..\..\..\lib\if2ip.c" />
2425 <ClCompile Include="..\..\..\..\lib\imap.c" />
2426 <ClCompile Include="..\..\..\..\lib\inet_ntop.c" />
2427 <ClCompile Include="..\..\..\..\lib\inet_pton.c" />
2428 <ClCompile Include="..\..\..\..\lib\krb5.c" />
2429 <ClCompile Include="..\..\..\..\lib\ldap.c" />
2430 <ClCompile Include="..\..\..\..\lib\llist.c" />
2431 <ClCompile Include="..\..\..\..\lib\md4.c" />
2432 <ClCompile Include="..\..\..\..\lib\md5.c" />
2433 <ClCompile Include="..\..\..\..\lib\memdebug.c" />
2434 <ClCompile Include="..\..\..\..\lib\mime.c" />
2435 <ClCompile Include="..\..\..\..\lib\mprintf.c" />
2436 <ClCompile Include="..\..\..\..\lib\mqtt.c" />
2437 <ClCompile Include="..\..\..\..\lib\multi.c" />
2438 <ClCompile Include="..\..\..\..\lib\netrc.c" />
2439 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2440 <ClCompile Include="..\..\..\..\lib\openldap.c" />
2441 <ClCompile Include="..\..\..\..\lib\parsedate.c" />
2442 <ClCompile Include="..\..\..\..\lib\pingpong.c" />
2443 <ClCompile Include="..\..\..\..\lib\pop3.c" />
2444 <ClCompile Include="..\..\..\..\lib\progress.c" />
2445 <ClCompile Include="..\..\..\..\lib\psl.c" />
2446 <ClCompile Include="..\..\..\..\lib\rand.c" />
2447 <ClCompile Include="..\..\..\..\lib\rename.c" />
2448 <ClCompile Include="..\..\..\..\lib\rtsp.c" />
2449 <ClCompile Include="..\..\..\..\lib\select.c" />
2450 <ClCompile Include="..\..\..\..\lib\sendf.c" />
2451 <ClCompile Include="..\..\..\..\lib\setopt.c" />
2452 <ClCompile Include="..\..\..\..\lib\sha256.c" />
2453 <ClCompile Include="..\..\..\..\lib\share.c" />
2454 <ClCompile Include="..\..\..\..\lib\slist.c" />
2455 <ClCompile Include="..\..\..\..\lib\smb.c" />
2456 <ClCompile Include="..\..\..\..\lib\smtp.c" />
2457 <ClCompile Include="..\..\..\..\lib\socketpair.c" />
2458 <ClCompile Include="..\..\..\..\lib\socks.c" />
2459 <ClCompile Include="..\..\..\..\lib\socks_gssapi.c" />
2460 <ClCompile Include="..\..\..\..\lib\socks_sspi.c" />
2461 <ClCompile Include="..\..\..\..\lib\speedcheck.c" />
2462 <ClCompile Include="..\..\..\..\lib\splay.c" />
2463 <ClCompile Include="..\..\..\..\lib\strcase.c" />
2464 <ClCompile Include="..\..\..\..\lib\strdup.c" />
2465 <ClCompile Include="..\..\..\..\lib\strerror.c" />
2466 <ClCompile Include="..\..\..\..\lib\strtok.c" />
2467 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2468 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
2469 <ClCompile Include="..\..\..\..\lib\telnet.c" />
2470 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2471 <ClCompile Include="..\..\..\..\lib\timeval.c" />
2472 <ClCompile Include="..\..\..\..\lib\transfer.c" />
2473 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
2474 <ClCompile Include="..\..\..\..\lib\url.c" />
2475 <ClCompile Include="..\..\..\..\lib\version.c" />
2476 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2477 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2478 <ClCompile Include="..\..\..\..\lib\wildcard.c" />
2479 <ClCompile Include="..\..\..\..\lib\vauth\cleartext.c" />
2480 <ClCompile Include="..\..\..\..\lib\vauth\cram.c" />
2481 <ClCompile Include="..\..\..\..\lib\vauth\digest.c" />
2482 <ClCompile Include="..\..\..\..\lib\vauth\digest_sspi.c" />
2483 <ClCompile Include="..\..\..\..\lib\vauth\gsasl.c" />
2484 <ClCompile Include="..\..\..\..\lib\vauth\krb5_gssapi.c" />
2485 <ClCompile Include="..\..\..\..\lib\vauth\krb5_sspi.c" />
2486 <ClCompile Include="..\..\..\..\lib\vauth\ntlm.c" />
2487 <ClCompile Include="..\..\..\..\lib\vauth\ntlm_sspi.c" />
2488 <ClCompile Include="..\..\..\..\lib\vauth\oauth2.c" />
2489 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
2490 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
2491 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2492 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
2493 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
2494 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
2495 <ClCompile Include="..\..\..\..\lib\vssh\libssh2.c" />
2496 <ClCompile Include="..\..\..\..\lib\vssh\libssh.c" />
2497 <ClCompile Include="..\..\..\..\lib\vssh\wolfssh.c" />
2498 <ClCompile Include="..\..\..\..\lib\vtls\bearssl.c" />
2499 <ClCompile Include="..\..\..\..\lib\vtls\gskit.c" />
2500 <ClCompile Include="..\..\..\..\lib\vtls\gtls.c" />
2501 <ClCompile Include="..\..\..\..\lib\vtls\hostcheck.c" />
2502 <ClCompile Include="..\..\..\..\lib\vtls\keylog.c" />
2503 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls.c" />
2504 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls_threadlock.c" />
2505 <ClCompile Include="..\..\..\..\lib\vtls\nss.c" />
2506 <ClCompile Include="..\..\..\..\lib\vtls\openssl.c" />
2507 <ClCompile Include="..\..\..\..\lib\vtls\rustls.c" />
2508 <ClCompile Include="..\..\..\..\lib\vtls\schannel.c" />
2509 <ClCompile Include="..\..\..\..\lib\vtls\schannel_verify.c" />
2510 <ClCompile Include="..\..\..\..\lib\vtls\sectransp.c" />
2511 <ClCompile Include="..\..\..\..\lib\vtls\vtls.c" />
2512 <ClCompile Include="..\..\..\..\lib\vtls\wolfssl.c" />
2513 <ClCompile Include="..\..\..\..\lib\vtls\x509asn1.c" />
2514 </ItemGroup>
2515 <ItemGroup>
2516 <ClInclude Include="..\..\..\..\lib\altsvc.h" />
2517 <ClInclude Include="..\..\..\..\lib\amigaos.h" />
2518 <ClInclude Include="..\..\..\..\lib\arpa_telnet.h" />
2519 <ClInclude Include="..\..\..\..\lib\asyn.h" />
2520 <ClInclude Include="..\..\..\..\lib\bufref.h" />
2521 <ClInclude Include="..\..\..\..\lib\c-hyper.h" />
2522 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2523 <ClInclude Include="..\..\..\..\lib\conncache.h" />
2524 <ClInclude Include="..\..\..\..\lib\connect.h" />
2525 <ClInclude Include="..\..\..\..\lib\content_encoding.h" />
2526 <ClInclude Include="..\..\..\..\lib\cookie.h" />
2527 <ClInclude Include="..\..\..\..\lib\curl_addrinfo.h" />
2528 <ClInclude Include="..\..\..\..\lib\curl_base64.h" />
2529 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2530 <ClInclude Include="..\..\..\..\lib\curl_des.h" />
2531 <ClInclude Include="..\..\..\..\lib\curl_endian.h" />
2532 <ClInclude Include="..\..\..\..\lib\curl_fnmatch.h" />
2533 <ClInclude Include="..\..\..\..\lib\curl_gethostname.h" />
2534 <ClInclude Include="..\..\..\..\lib\curl_get_line.h" />
2535 <ClInclude Include="..\..\..\..\lib\curl_gssapi.h" />
2536 <ClInclude Include="..\..\..\..\lib\curl_hmac.h" />
2537 <ClInclude Include="..\..\..\..\lib\curl_krb5.h" />
2538 <ClInclude Include="..\..\..\..\lib\curl_ldap.h" />
2539 <ClInclude Include="..\..\..\..\lib\curl_md4.h" />
2540 <ClInclude Include="..\..\..\..\lib\curl_md5.h" />
2541 <ClInclude Include="..\..\..\..\lib\curl_memory.h" />
2542 <ClInclude Include="..\..\..\..\lib\curl_memrchr.h" />
2543 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2544 <ClInclude Include="..\..\..\..\lib\curl_ntlm_core.h" />
2545 <ClInclude Include="..\..\..\..\lib\curl_ntlm_wb.h" />
2546 <ClInclude Include="..\..\..\..\lib\curl_path.h" />
2547 <ClInclude Include="..\..\..\..\lib\curl_printf.h" />
2548 <ClInclude Include="..\..\..\..\lib\curl_range.h" />
2549 <ClInclude Include="..\..\..\..\lib\curl_rtmp.h" />
2550 <ClInclude Include="..\..\..\..\lib\curl_sasl.h" />
2551 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2552 <ClInclude Include="..\..\..\..\lib\curl_setup_once.h" />
2553 <ClInclude Include="..\..\..\..\lib\curl_sha256.h" />
2554 <ClInclude Include="..\..\..\..\lib\curl_sspi.h" />
2555 <ClInclude Include="..\..\..\..\lib\curl_threads.h" />
2556 <ClInclude Include="..\..\..\..\lib\curlx.h" />
2557 <ClInclude Include="..\..\..\..\lib\dict.h" />
2558 <ClInclude Include="..\..\..\..\lib\doh.h" />
2559 <ClInclude Include="..\..\..\..\lib\dotdot.h" />
2560 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2561 <ClInclude Include="..\..\..\..\lib\easyif.h" />
2562 <ClInclude Include="..\..\..\..\lib\easyoptions.h" />
2563 <ClInclude Include="..\..\..\..\lib\escape.h" />
2564 <ClInclude Include="..\..\..\..\lib\file.h" />
2565 <ClInclude Include="..\..\..\..\lib\fileinfo.h" />
2566 <ClInclude Include="..\..\..\..\lib\formdata.h" />
2567 <ClInclude Include="..\..\..\..\lib\ftp.h" />
2568 <ClInclude Include="..\..\..\..\lib\ftplistparser.h" />
2569 <ClInclude Include="..\..\..\..\lib\getinfo.h" />
2570 <ClInclude Include="..\..\..\..\lib\gopher.h" />
2571 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
2572 <ClInclude Include="..\..\..\..\lib\hash.h" />
2573 <ClInclude Include="..\..\..\..\lib\hostip.h" />
2574 <ClInclude Include="..\..\..\..\lib\hsts.h" />
2575 <ClInclude Include="..\..\..\..\lib\http2.h" />
2576 <ClInclude Include="..\..\..\..\lib\http_aws_sigv4.h" />
2577 <ClInclude Include="..\..\..\..\lib\http_chunks.h" />
2578 <ClInclude Include="..\..\..\..\lib\http_digest.h" />
2579 <ClInclude Include="..\..\..\..\lib\http.h" />
2580 <ClInclude Include="..\..\..\..\lib\http_negotiate.h" />
2581 <ClInclude Include="..\..\..\..\lib\http_ntlm.h" />
2582 <ClInclude Include="..\..\..\..\lib\http_proxy.h" />
2583 <ClInclude Include="..\..\..\..\lib\if2ip.h" />
2584 <ClInclude Include="..\..\..\..\lib\imap.h" />
2585 <ClInclude Include="..\..\..\..\lib\inet_ntop.h" />
2586 <ClInclude Include="..\..\..\..\lib\inet_pton.h" />
2587 <ClInclude Include="..\..\..\..\lib\llist.h" />
2588 <ClInclude Include="..\..\..\..\lib\memdebug.h" />
2589 <ClInclude Include="..\..\..\..\lib\mime.h" />
2590 <ClInclude Include="..\..\..\..\lib\mqtt.h" />
2591 <ClInclude Include="..\..\..\..\lib\multihandle.h" />
2592 <ClInclude Include="..\..\..\..\lib\multiif.h" />
2593 <ClInclude Include="..\..\..\..\lib\netrc.h" />
2594 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2595 <ClInclude Include="..\..\..\..\lib\parsedate.h" />
2596 <ClInclude Include="..\..\..\..\lib\pingpong.h" />
2597 <ClInclude Include="..\..\..\..\lib\pop3.h" />
2598 <ClInclude Include="..\..\..\..\lib\progress.h" />
2599 <ClInclude Include="..\..\..\..\lib\psl.h" />
2600 <ClInclude Include="..\..\..\..\lib\quic.h" />
2601 <ClInclude Include="..\..\..\..\lib\rand.h" />
2602 <ClInclude Include="..\..\..\..\lib\rename.h" />
2603 <ClInclude Include="..\..\..\..\lib\rtsp.h" />
2604 <ClInclude Include="..\..\..\..\lib\select.h" />
2605 <ClInclude Include="..\..\..\..\lib\sendf.h" />
2606 <ClInclude Include="..\..\..\..\lib\setopt.h" />
2607 <ClInclude Include="..\..\..\..\lib\setup-vms.h" />
2608 <ClInclude Include="..\..\..\..\lib\share.h" />
2609 <ClInclude Include="..\..\..\..\lib\sigpipe.h" />
2610 <ClInclude Include="..\..\..\..\lib\slist.h" />
2611 <ClInclude Include="..\..\..\..\lib\smb.h" />
2612 <ClInclude Include="..\..\..\..\lib\smtp.h" />
2613 <ClInclude Include="..\..\..\..\lib\sockaddr.h" />
2614 <ClInclude Include="..\..\..\..\lib\socketpair.h" />
2615 <ClInclude Include="..\..\..\..\lib\socks.h" />
2616 <ClInclude Include="..\..\..\..\lib\speedcheck.h" />
2617 <ClInclude Include="..\..\..\..\lib\splay.h" />
2618 <ClInclude Include="..\..\..\..\lib\strcase.h" />
2619 <ClInclude Include="..\..\..\..\lib\strdup.h" />
2620 <ClInclude Include="..\..\..\..\lib\strerror.h" />
2621 <ClInclude Include="..\..\..\..\lib\strtok.h" />
2622 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2623 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
2624 <ClInclude Include="..\..\..\..\lib\telnet.h" />
2625 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2626 <ClInclude Include="..\..\..\..\lib\timeval.h" />
2627 <ClInclude Include="..\..\..\..\lib\transfer.h" />
2628 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
2629 <ClInclude Include="..\..\..\..\lib\urldata.h" />
2630 <ClInclude Include="..\..\..\..\lib\url.h" />
2631 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2632 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2633 <ClInclude Include="..\..\..\..\lib\wildcard.h" />
2634 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
2635 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
2636 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2637 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
2638 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
2639 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
2640 <ClInclude Include="..\..\..\..\lib\vssh\ssh.h" />
2641 <ClInclude Include="..\..\..\..\lib\vtls\bearssl.h" />
2642 <ClInclude Include="..\..\..\..\lib\vtls\gskit.h" />
2643 <ClInclude Include="..\..\..\..\lib\vtls\gtls.h" />
2644 <ClInclude Include="..\..\..\..\lib\vtls\hostcheck.h" />
2645 <ClInclude Include="..\..\..\..\lib\vtls\keylog.h" />
2646 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls.h" />
2647 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls_threadlock.h" />
2648 <ClInclude Include="..\..\..\..\lib\vtls\nssg.h" />
2649 <ClInclude Include="..\..\..\..\lib\vtls\openssl.h" />
2650 <ClInclude Include="..\..\..\..\lib\vtls\rustls.h" />
2651 <ClInclude Include="..\..\..\..\lib\vtls\schannel.h" />
2652 <ClInclude Include="..\..\..\..\lib\vtls\sectransp.h" />
2653 <ClInclude Include="..\..\..\..\lib\vtls\vtls.h" />
2654 <ClInclude Include="..\..\..\..\lib\vtls\wolfssl.h" />
2655 <ClInclude Include="..\..\..\..\lib\vtls\x509asn1.h" />
2656 </ItemGroup>
2657 <ItemGroup>
2658 <ResourceCompile Include="..\..\..\..\lib\libcurl.rc" />
2659 </ItemGroup>
2660 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2661 <ImportGroup Label="ExtensionTargets">
2662 </ImportGroup>
2663 </Project>
+0
-17
projects/Windows/VC15/lib/libcurl.vcxproj.filters less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
+0
-181
projects/Windows/VC15/src/curl.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
+0
-2765
projects/Windows/VC15/src/curl.vcxproj less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{5228E9CE-A216-422F-A5E6-58E95E2DD71D}</ProjectGuid>
230 <RootNamespace>curl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
234 <ConfigurationType>Application</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v141</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
240 <ConfigurationType>Application</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v141</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>Application</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v141</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>Application</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v141</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>Application</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v141</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
264 <ConfigurationType>Application</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v141</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
270 <ConfigurationType>Application</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v141</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>Application</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v141</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
282 <ConfigurationType>Application</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v141</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
288 <ConfigurationType>Application</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v141</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
294 <ConfigurationType>Application</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v141</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>Application</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v141</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>Application</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v141</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>Application</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v141</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>Application</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v141</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>Application</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v141</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
330 <ConfigurationType>Application</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v141</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
336 <ConfigurationType>Application</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v141</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
342 <ConfigurationType>Application</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v141</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>Application</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v141</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
354 <ConfigurationType>Application</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v141</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>Application</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v141</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>Application</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v141</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>Application</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v141</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
378 <ConfigurationType>Application</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v141</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>Application</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v141</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
390 <ConfigurationType>Application</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v141</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>Application</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v141</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
402 <ConfigurationType>Application</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v141</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
408 <ConfigurationType>Application</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v141</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>Application</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v141</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>Application</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v141</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>Application</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v141</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
432 <ConfigurationType>Application</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v141</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
438 <ConfigurationType>Application</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v141</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>Application</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v141</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
450 <ConfigurationType>Application</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v141</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
456 <ConfigurationType>Application</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v141</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
462 <ConfigurationType>Application</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v141</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>Application</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v141</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>Application</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v141</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>Application</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v141</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>Application</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v141</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>Application</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v141</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
498 <ConfigurationType>Application</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v141</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
504 <ConfigurationType>Application</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v141</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
510 <ConfigurationType>Application</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v141</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>Application</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v141</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
522 <ConfigurationType>Application</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v141</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>Application</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v141</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>Application</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v141</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>Application</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v141</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
546 <ConfigurationType>Application</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v141</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>Application</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v141</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
558 <ConfigurationType>Application</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v141</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>Application</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v141</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)src\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)src\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)src\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)src\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)src\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
771 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">false</LinkIncremental>
772 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">false</LinkIncremental>
773 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
774 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
775 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)src\</IntDir>
776 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
777 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">false</LinkIncremental>
778 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">false</LinkIncremental>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)src\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
783 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
784 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
785 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)src\</IntDir>
788 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
789 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
790 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
791 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
792 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
793 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
794 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
795 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
796 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
797 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
798 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
799 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
800 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
801 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
802 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
803 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
804 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
805 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
806 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
807 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
808 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
809 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
812 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
813 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
814 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
815 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
816 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
817 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
818 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
819 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
820 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
821 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
824 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
825 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
826 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
827 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
828 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
829 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
830 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
831 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
832 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
835 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
836 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
837 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
838 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
840 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
841 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">false</LinkIncremental>
842 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
843 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
844 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">false</LinkIncremental>
845 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
847 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">false</LinkIncremental>
848 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
849 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
850 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">false</LinkIncremental>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
853 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
854 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
855 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
856 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
859 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
860 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
861 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
862 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
864 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
865 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
866 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
867 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
868 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">false</LinkIncremental>
869 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
871 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">false</LinkIncremental>
872 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
873 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
874 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">false</LinkIncremental>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
877 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
878 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
879 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
880 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
881 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
882 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
883 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
884 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
885 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
886 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
887 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
888 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
889 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
890 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
891 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
892 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
893 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
894 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
895 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
896 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
897 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
898 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
899 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
900 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC15\$(Configuration)\</OutDir>
901 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
902 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
903 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
904 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
905 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
906 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC15\$(Configuration)\</OutDir>
907 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
908 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
909 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">false</LinkIncremental>
910 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
911 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
912 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
913 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
914 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
915 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
916 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
917 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
918 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
919 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
920 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
921 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
922 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
923 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
924 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
925 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
926 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
927 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
928 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
929 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
930 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
931 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
932 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
933 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
934 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
935 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
936 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
937 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
938 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
939 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
940 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
941 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
942 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
943 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(ProjectName)</TargetName>
944 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(ProjectName)</TargetName>
945 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
946 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
947 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
948 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
949 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)</TargetName>
950 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(ProjectName)</TargetName>
951 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(ProjectName)</TargetName>
952 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(ProjectName)</TargetName>
953 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
954 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
955 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
956 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
957 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(ProjectName)</TargetName>
958 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(ProjectName)</TargetName>
959 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
960 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
961 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
962 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
963 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)</TargetName>
964 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(ProjectName)</TargetName>
965 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(ProjectName)</TargetName>
966 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(ProjectName)</TargetName>
967 </PropertyGroup>
968 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
969 <Midl>
970 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
971 <HeaderFileName>
972 </HeaderFileName>
973 </Midl>
974 <ClCompile>
975 <Optimization>MaxSpeed</Optimization>
976 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
977 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
978 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
979 <StringPooling>true</StringPooling>
980 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
981 <FunctionLevelLinking>true</FunctionLevelLinking>
982 <WarningLevel>Level4</WarningLevel>
983 </ClCompile>
984 <ResourceCompile>
985 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
986 <Culture>0x0409</Culture>
987 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
988 </ResourceCompile>
989 <Link>
990 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
991 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
992 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
993 <SubSystem>Console</SubSystem>
994 <TargetMachine>MachineX86</TargetMachine>
995 </Link>
996 </ItemDefinitionGroup>
997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
998 <Midl>
999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1000 <HeaderFileName>
1001 </HeaderFileName>
1002 </Midl>
1003 <ClCompile>
1004 <Optimization>MaxSpeed</Optimization>
1005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1008 <StringPooling>true</StringPooling>
1009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1010 <FunctionLevelLinking>true</FunctionLevelLinking>
1011 <WarningLevel>Level4</WarningLevel>
1012 </ClCompile>
1013 <ResourceCompile>
1014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1015 <Culture>0x0409</Culture>
1016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1017 </ResourceCompile>
1018 <Link>
1019 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1022 <SubSystem>Console</SubSystem>
1023 <TargetMachine>MachineX86</TargetMachine>
1024 <GenerateDebugInformation>true</GenerateDebugInformation>
1025 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1026 </Link>
1027 </ItemDefinitionGroup>
1028 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1029 <Midl>
1030 <TargetEnvironment>X64</TargetEnvironment>
1031 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1032 <HeaderFileName>
1033 </HeaderFileName>
1034 </Midl>
1035 <ClCompile>
1036 <Optimization>MaxSpeed</Optimization>
1037 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1038 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1039 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1040 <StringPooling>true</StringPooling>
1041 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1042 <FunctionLevelLinking>true</FunctionLevelLinking>
1043 <WarningLevel>Level4</WarningLevel>
1044 </ClCompile>
1045 <ResourceCompile>
1046 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1047 <Culture>0x0409</Culture>
1048 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1049 </ResourceCompile>
1050 <Link>
1051 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1052 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1053 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1054 <SubSystem>Console</SubSystem>
1055 <TargetMachine>MachineX64</TargetMachine>
1056 </Link>
1057 </ItemDefinitionGroup>
1058 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1059 <Midl>
1060 <TargetEnvironment>X64</TargetEnvironment>
1061 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1062 <HeaderFileName>
1063 </HeaderFileName>
1064 </Midl>
1065 <ClCompile>
1066 <Optimization>MaxSpeed</Optimization>
1067 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1068 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1069 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1070 <StringPooling>true</StringPooling>
1071 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1072 <FunctionLevelLinking>true</FunctionLevelLinking>
1073 <WarningLevel>Level4</WarningLevel>
1074 </ClCompile>
1075 <ResourceCompile>
1076 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1077 <Culture>0x0409</Culture>
1078 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1079 </ResourceCompile>
1080 <Link>
1081 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1082 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1083 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1084 <SubSystem>Console</SubSystem>
1085 <TargetMachine>MachineX64</TargetMachine>
1086 <GenerateDebugInformation>true</GenerateDebugInformation>
1087 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1088 </Link>
1089 </ItemDefinitionGroup>
1090 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1091 <Midl>
1092 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1093 <HeaderFileName>
1094 </HeaderFileName>
1095 </Midl>
1096 <ClCompile>
1097 <Optimization>MaxSpeed</Optimization>
1098 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1099 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1100 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1101 <StringPooling>true</StringPooling>
1102 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1103 <FunctionLevelLinking>true</FunctionLevelLinking>
1104 <WarningLevel>Level4</WarningLevel>
1105 </ClCompile>
1106 <ResourceCompile>
1107 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1108 <Culture>0x0409</Culture>
1109 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1110 </ResourceCompile>
1111 <Link>
1112 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1113 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1114 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1115 <SubSystem>Console</SubSystem>
1116 <TargetMachine>MachineX86</TargetMachine>
1117 </Link>
1118 </ItemDefinitionGroup>
1119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1120 <Midl>
1121 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1122 <HeaderFileName>
1123 </HeaderFileName>
1124 </Midl>
1125 <ClCompile>
1126 <Optimization>MaxSpeed</Optimization>
1127 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1128 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1129 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1130 <StringPooling>true</StringPooling>
1131 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1132 <FunctionLevelLinking>true</FunctionLevelLinking>
1133 <WarningLevel>Level4</WarningLevel>
1134 </ClCompile>
1135 <ResourceCompile>
1136 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1137 <Culture>0x0409</Culture>
1138 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1139 </ResourceCompile>
1140 <Link>
1141 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1142 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1143 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1144 <SubSystem>Console</SubSystem>
1145 <TargetMachine>MachineX86</TargetMachine>
1146 <GenerateDebugInformation>true</GenerateDebugInformation>
1147 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1148 </Link>
1149 </ItemDefinitionGroup>
1150 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1151 <Midl>
1152 <TargetEnvironment>X64</TargetEnvironment>
1153 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1154 <HeaderFileName>
1155 </HeaderFileName>
1156 </Midl>
1157 <ClCompile>
1158 <Optimization>MaxSpeed</Optimization>
1159 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1160 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1161 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1162 <StringPooling>true</StringPooling>
1163 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1164 <FunctionLevelLinking>true</FunctionLevelLinking>
1165 <WarningLevel>Level4</WarningLevel>
1166 </ClCompile>
1167 <ResourceCompile>
1168 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1169 <Culture>0x0409</Culture>
1170 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1171 </ResourceCompile>
1172 <Link>
1173 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1174 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1175 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1176 <SubSystem>Console</SubSystem>
1177 <TargetMachine>MachineX64</TargetMachine>
1178 </Link>
1179 </ItemDefinitionGroup>
1180 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1181 <Midl>
1182 <TargetEnvironment>X64</TargetEnvironment>
1183 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1184 <HeaderFileName>
1185 </HeaderFileName>
1186 </Midl>
1187 <ClCompile>
1188 <Optimization>MaxSpeed</Optimization>
1189 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1190 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1191 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1192 <StringPooling>true</StringPooling>
1193 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1194 <FunctionLevelLinking>true</FunctionLevelLinking>
1195 <WarningLevel>Level4</WarningLevel>
1196 </ClCompile>
1197 <ResourceCompile>
1198 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1199 <Culture>0x0409</Culture>
1200 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1201 </ResourceCompile>
1202 <Link>
1203 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1205 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1206 <SubSystem>Console</SubSystem>
1207 <TargetMachine>MachineX64</TargetMachine>
1208 <GenerateDebugInformation>true</GenerateDebugInformation>
1209 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1210 </Link>
1211 </ItemDefinitionGroup>
1212 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1213 <Midl>
1214 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1215 <HeaderFileName>
1216 </HeaderFileName>
1217 </Midl>
1218 <ClCompile>
1219 <Optimization>Disabled</Optimization>
1220 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1221 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1222 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1223 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1224 <WarningLevel>Level4</WarningLevel>
1225 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1226 </ClCompile>
1227 <ResourceCompile>
1228 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1229 <Culture>0x0409</Culture>
1230 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1231 </ResourceCompile>
1232 <Link>
1233 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1234 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1235 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1236 <GenerateDebugInformation>true</GenerateDebugInformation>
1237 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1238 <SubSystem>Console</SubSystem>
1239 <TargetMachine>MachineX86</TargetMachine>
1240 </Link>
1241 </ItemDefinitionGroup>
1242 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1243 <Midl>
1244 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1245 <HeaderFileName>
1246 </HeaderFileName>
1247 </Midl>
1248 <ClCompile>
1249 <Optimization>Disabled</Optimization>
1250 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1251 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1252 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1253 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1254 <WarningLevel>Level4</WarningLevel>
1255 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1256 </ClCompile>
1257 <ResourceCompile>
1258 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1259 <Culture>0x0409</Culture>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 </ResourceCompile>
1262 <Link>
1263 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1264 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1265 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1266 <GenerateDebugInformation>true</GenerateDebugInformation>
1267 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1268 <SubSystem>Console</SubSystem>
1269 <TargetMachine>MachineX86</TargetMachine>
1270 </Link>
1271 </ItemDefinitionGroup>
1272 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1273 <Midl>
1274 <TargetEnvironment>X64</TargetEnvironment>
1275 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1276 <HeaderFileName>
1277 </HeaderFileName>
1278 </Midl>
1279 <ClCompile>
1280 <Optimization>Disabled</Optimization>
1281 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1282 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1283 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1284 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1292 </ResourceCompile>
1293 <Link>
1294 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1295 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1296 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1297 <GenerateDebugInformation>true</GenerateDebugInformation>
1298 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1299 <SubSystem>Console</SubSystem>
1300 <TargetMachine>MachineX64</TargetMachine>
1301 </Link>
1302 </ItemDefinitionGroup>
1303 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1304 <Midl>
1305 <TargetEnvironment>X64</TargetEnvironment>
1306 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1307 <HeaderFileName>
1308 </HeaderFileName>
1309 </Midl>
1310 <ClCompile>
1311 <Optimization>Disabled</Optimization>
1312 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1313 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1314 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1315 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1316 <WarningLevel>Level4</WarningLevel>
1317 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1318 </ClCompile>
1319 <ResourceCompile>
1320 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1321 <Culture>0x0409</Culture>
1322 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1323 </ResourceCompile>
1324 <Link>
1325 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1326 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1327 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1328 <GenerateDebugInformation>true</GenerateDebugInformation>
1329 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1330 <SubSystem>Console</SubSystem>
1331 <TargetMachine>MachineX64</TargetMachine>
1332 </Link>
1333 </ItemDefinitionGroup>
1334 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
1335 <Midl>
1336 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1337 <HeaderFileName>
1338 </HeaderFileName>
1339 </Midl>
1340 <ClCompile>
1341 <Optimization>Disabled</Optimization>
1342 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1343 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1344 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1345 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1346 <WarningLevel>Level4</WarningLevel>
1347 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1348 </ClCompile>
1349 <ResourceCompile>
1350 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1351 <Culture>0x0409</Culture>
1352 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1353 </ResourceCompile>
1354 <Link>
1355 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1357 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1358 <GenerateDebugInformation>true</GenerateDebugInformation>
1359 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1360 <SubSystem>Console</SubSystem>
1361 <TargetMachine>MachineX86</TargetMachine>
1362 </Link>
1363 </ItemDefinitionGroup>
1364 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
1365 <Midl>
1366 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1367 <HeaderFileName>
1368 </HeaderFileName>
1369 </Midl>
1370 <ClCompile>
1371 <Optimization>Disabled</Optimization>
1372 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1373 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1374 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1375 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1376 <WarningLevel>Level4</WarningLevel>
1377 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1378 </ClCompile>
1379 <ResourceCompile>
1380 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1381 <Culture>0x0409</Culture>
1382 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1383 </ResourceCompile>
1384 <Link>
1385 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1386 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1387 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1388 <GenerateDebugInformation>true</GenerateDebugInformation>
1389 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1390 <SubSystem>Console</SubSystem>
1391 <TargetMachine>MachineX86</TargetMachine>
1392 </Link>
1393 </ItemDefinitionGroup>
1394 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
1395 <Midl>
1396 <TargetEnvironment>X64</TargetEnvironment>
1397 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1398 <HeaderFileName>
1399 </HeaderFileName>
1400 </Midl>
1401 <ClCompile>
1402 <Optimization>Disabled</Optimization>
1403 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1404 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1405 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1406 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1407 <WarningLevel>Level4</WarningLevel>
1408 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1409 </ClCompile>
1410 <ResourceCompile>
1411 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <Culture>0x0409</Culture>
1413 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1414 </ResourceCompile>
1415 <Link>
1416 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1417 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1418 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1419 <GenerateDebugInformation>true</GenerateDebugInformation>
1420 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1421 <SubSystem>Console</SubSystem>
1422 <TargetMachine>MachineX64</TargetMachine>
1423 </Link>
1424 </ItemDefinitionGroup>
1425 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1426 <Midl>
1427 <TargetEnvironment>X64</TargetEnvironment>
1428 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1429 <HeaderFileName>
1430 </HeaderFileName>
1431 </Midl>
1432 <ClCompile>
1433 <Optimization>Disabled</Optimization>
1434 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1435 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1436 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1437 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1438 <WarningLevel>Level4</WarningLevel>
1439 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1440 </ClCompile>
1441 <ResourceCompile>
1442 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1443 <Culture>0x0409</Culture>
1444 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1445 </ResourceCompile>
1446 <Link>
1447 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1449 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1450 <GenerateDebugInformation>true</GenerateDebugInformation>
1451 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1452 <SubSystem>Console</SubSystem>
1453 <TargetMachine>MachineX64</TargetMachine>
1454 </Link>
1455 </ItemDefinitionGroup>
1456 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1457 <Midl>
1458 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1459 <HeaderFileName>
1460 </HeaderFileName>
1461 </Midl>
1462 <ClCompile>
1463 <Optimization>Disabled</Optimization>
1464 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1465 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1466 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1467 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1468 <WarningLevel>Level4</WarningLevel>
1469 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1470 </ClCompile>
1471 <ResourceCompile>
1472 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1473 <Culture>0x0409</Culture>
1474 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1475 </ResourceCompile>
1476 <Link>
1477 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1478 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1479 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1480 <GenerateDebugInformation>true</GenerateDebugInformation>
1481 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1482 <SubSystem>Console</SubSystem>
1483 <TargetMachine>MachineX86</TargetMachine>
1484 </Link>
1485 </ItemDefinitionGroup>
1486 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1487 <Midl>
1488 <TargetEnvironment>X64</TargetEnvironment>
1489 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1490 <HeaderFileName>
1491 </HeaderFileName>
1492 </Midl>
1493 <ClCompile>
1494 <Optimization>Disabled</Optimization>
1495 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1496 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1497 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1498 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1499 <WarningLevel>Level4</WarningLevel>
1500 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1501 </ClCompile>
1502 <ResourceCompile>
1503 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1504 <Culture>0x0409</Culture>
1505 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1506 </ResourceCompile>
1507 <Link>
1508 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1509 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1510 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1511 <GenerateDebugInformation>true</GenerateDebugInformation>
1512 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1513 <SubSystem>Console</SubSystem>
1514 <TargetMachine>MachineX64</TargetMachine>
1515 </Link>
1516 </ItemDefinitionGroup>
1517 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1518 <Midl>
1519 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1520 <HeaderFileName>
1521 </HeaderFileName>
1522 </Midl>
1523 <ClCompile>
1524 <Optimization>Disabled</Optimization>
1525 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1526 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1527 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1528 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1529 <WarningLevel>Level4</WarningLevel>
1530 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1531 </ClCompile>
1532 <ResourceCompile>
1533 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1534 <Culture>0x0409</Culture>
1535 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1536 </ResourceCompile>
1537 <Link>
1538 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1539 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1540 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1541 <GenerateDebugInformation>true</GenerateDebugInformation>
1542 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1543 <SubSystem>Console</SubSystem>
1544 <TargetMachine>MachineX86</TargetMachine>
1545 </Link>
1546 </ItemDefinitionGroup>
1547 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1548 <Midl>
1549 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1550 <HeaderFileName>
1551 </HeaderFileName>
1552 </Midl>
1553 <ClCompile>
1554 <Optimization>Disabled</Optimization>
1555 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1556 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1557 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1558 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1559 <WarningLevel>Level4</WarningLevel>
1560 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1561 </ClCompile>
1562 <ResourceCompile>
1563 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1564 <Culture>0x0409</Culture>
1565 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1566 </ResourceCompile>
1567 <Link>
1568 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1569 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1570 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1571 <GenerateDebugInformation>true</GenerateDebugInformation>
1572 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1573 <SubSystem>Console</SubSystem>
1574 <TargetMachine>MachineX86</TargetMachine>
1575 </Link>
1576 </ItemDefinitionGroup>
1577 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1578 <Midl>
1579 <TargetEnvironment>X64</TargetEnvironment>
1580 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1581 <HeaderFileName>
1582 </HeaderFileName>
1583 </Midl>
1584 <ClCompile>
1585 <Optimization>Disabled</Optimization>
1586 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1587 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1588 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1589 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1590 <WarningLevel>Level4</WarningLevel>
1591 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1592 </ClCompile>
1593 <ResourceCompile>
1594 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1595 <Culture>0x0409</Culture>
1596 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1597 </ResourceCompile>
1598 <Link>
1599 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1600 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1601 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1602 <GenerateDebugInformation>true</GenerateDebugInformation>
1603 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1604 <SubSystem>Console</SubSystem>
1605 <TargetMachine>MachineX64</TargetMachine>
1606 </Link>
1607 </ItemDefinitionGroup>
1608 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1609 <Midl>
1610 <TargetEnvironment>X64</TargetEnvironment>
1611 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1612 <HeaderFileName>
1613 </HeaderFileName>
1614 </Midl>
1615 <ClCompile>
1616 <Optimization>Disabled</Optimization>
1617 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1618 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1619 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1620 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1621 <WarningLevel>Level4</WarningLevel>
1622 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1623 </ClCompile>
1624 <ResourceCompile>
1625 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1626 <Culture>0x0409</Culture>
1627 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1628 </ResourceCompile>
1629 <Link>
1630 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1631 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1632 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1633 <GenerateDebugInformation>true</GenerateDebugInformation>
1634 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1635 <SubSystem>Console</SubSystem>
1636 <TargetMachine>MachineX64</TargetMachine>
1637 </Link>
1638 </ItemDefinitionGroup>
1639 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1640 <Midl>
1641 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1642 <HeaderFileName>
1643 </HeaderFileName>
1644 </Midl>
1645 <ClCompile>
1646 <Optimization>MaxSpeed</Optimization>
1647 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1648 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1649 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1650 <StringPooling>true</StringPooling>
1651 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1652 <FunctionLevelLinking>true</FunctionLevelLinking>
1653 <WarningLevel>Level4</WarningLevel>
1654 </ClCompile>
1655 <ResourceCompile>
1656 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1657 <Culture>0x0409</Culture>
1658 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1659 </ResourceCompile>
1660 <Link>
1661 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1662 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1663 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1664 <SubSystem>Console</SubSystem>
1665 <TargetMachine>MachineX86</TargetMachine>
1666 </Link>
1667 </ItemDefinitionGroup>
1668 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1669 <Midl>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1689 </ResourceCompile>
1690 <Link>
1691 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1692 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1693 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1694 <SubSystem>Console</SubSystem>
1695 <TargetMachine>MachineX64</TargetMachine>
1696 </Link>
1697 </ItemDefinitionGroup>
1698 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1699 <Midl>
1700 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1701 <HeaderFileName>
1702 </HeaderFileName>
1703 </Midl>
1704 <ClCompile>
1705 <Optimization>MaxSpeed</Optimization>
1706 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1707 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1708 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1709 <StringPooling>true</StringPooling>
1710 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1711 <FunctionLevelLinking>true</FunctionLevelLinking>
1712 <WarningLevel>Level4</WarningLevel>
1713 </ClCompile>
1714 <ResourceCompile>
1715 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1716 <Culture>0x0409</Culture>
1717 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1718 </ResourceCompile>
1719 <Link>
1720 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1721 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1722 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1723 <SubSystem>Console</SubSystem>
1724 <TargetMachine>MachineX86</TargetMachine>
1725 </Link>
1726 </ItemDefinitionGroup>
1727 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1728 <Midl>
1729 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1730 <HeaderFileName>
1731 </HeaderFileName>
1732 </Midl>
1733 <ClCompile>
1734 <Optimization>MaxSpeed</Optimization>
1735 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1736 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1737 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1738 <StringPooling>true</StringPooling>
1739 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1740 <FunctionLevelLinking>true</FunctionLevelLinking>
1741 <WarningLevel>Level4</WarningLevel>
1742 </ClCompile>
1743 <ResourceCompile>
1744 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1745 <Culture>0x0409</Culture>
1746 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1747 </ResourceCompile>
1748 <Link>
1749 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1750 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1751 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1752 <SubSystem>Console</SubSystem>
1753 <TargetMachine>MachineX86</TargetMachine>
1754 </Link>
1755 </ItemDefinitionGroup>
1756 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1757 <Midl>
1758 <TargetEnvironment>X64</TargetEnvironment>
1759 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1760 <HeaderFileName>
1761 </HeaderFileName>
1762 </Midl>
1763 <ClCompile>
1764 <Optimization>MaxSpeed</Optimization>
1765 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1766 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1767 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1768 <StringPooling>true</StringPooling>
1769 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1770 <FunctionLevelLinking>true</FunctionLevelLinking>
1771 <WarningLevel>Level4</WarningLevel>
1772 </ClCompile>
1773 <ResourceCompile>
1774 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1775 <Culture>0x0409</Culture>
1776 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1777 </ResourceCompile>
1778 <Link>
1779 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1780 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1781 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1782 <SubSystem>Console</SubSystem>
1783 <TargetMachine>MachineX64</TargetMachine>
1784 </Link>
1785 </ItemDefinitionGroup>
1786 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1787 <Midl>
1788 <TargetEnvironment>X64</TargetEnvironment>
1789 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1790 <HeaderFileName>
1791 </HeaderFileName>
1792 </Midl>
1793 <ClCompile>
1794 <Optimization>MaxSpeed</Optimization>
1795 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1796 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1797 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1798 <StringPooling>true</StringPooling>
1799 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1800 <FunctionLevelLinking>true</FunctionLevelLinking>
1801 <WarningLevel>Level4</WarningLevel>
1802 </ClCompile>
1803 <ResourceCompile>
1804 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1805 <Culture>0x0409</Culture>
1806 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1807 </ResourceCompile>
1808 <Link>
1809 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1810 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1811 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1812 <SubSystem>Console</SubSystem>
1813 <TargetMachine>MachineX64</TargetMachine>
1814 </Link>
1815 </ItemDefinitionGroup>
1816 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1817 <Midl>
1818 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1819 <HeaderFileName>
1820 </HeaderFileName>
1821 </Midl>
1822 <ClCompile>
1823 <Optimization>Disabled</Optimization>
1824 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1825 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1826 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1827 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1828 <WarningLevel>Level4</WarningLevel>
1829 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1830 </ClCompile>
1831 <ResourceCompile>
1832 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1833 <Culture>0x0409</Culture>
1834 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1835 </ResourceCompile>
1836 <Link>
1837 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1838 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1839 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1840 <GenerateDebugInformation>true</GenerateDebugInformation>
1841 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1842 <SubSystem>Console</SubSystem>
1843 <TargetMachine>MachineX86</TargetMachine>
1844 </Link>
1845 </ItemDefinitionGroup>
1846 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1847 <Midl>
1848 <TargetEnvironment>X64</TargetEnvironment>
1849 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1850 <HeaderFileName>
1851 </HeaderFileName>
1852 </Midl>
1853 <ClCompile>
1854 <Optimization>Disabled</Optimization>
1855 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1856 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1857 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1858 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1859 <WarningLevel>Level4</WarningLevel>
1860 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1861 </ClCompile>
1862 <ResourceCompile>
1863 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1864 <Culture>0x0409</Culture>
1865 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1866 </ResourceCompile>
1867 <Link>
1868 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1869 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1870 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1871 <GenerateDebugInformation>true</GenerateDebugInformation>
1872 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1873 <SubSystem>Console</SubSystem>
1874 <TargetMachine>MachineX64</TargetMachine>
1875 </Link>
1876 </ItemDefinitionGroup>
1877 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1878 <Midl>
1879 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1880 <HeaderFileName>
1881 </HeaderFileName>
1882 </Midl>
1883 <ClCompile>
1884 <Optimization>MaxSpeed</Optimization>
1885 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1886 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1887 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1888 <StringPooling>true</StringPooling>
1889 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1890 <FunctionLevelLinking>true</FunctionLevelLinking>
1891 <WarningLevel>Level4</WarningLevel>
1892 </ClCompile>
1893 <ResourceCompile>
1894 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1895 <Culture>0x0409</Culture>
1896 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1897 </ResourceCompile>
1898 <Link>
1899 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1900 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1901 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1902 <SubSystem>Console</SubSystem>
1903 <TargetMachine>MachineX86</TargetMachine>
1904 </Link>
1905 </ItemDefinitionGroup>
1906 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1907 <Midl>
1908 <TargetEnvironment>X64</TargetEnvironment>
1909 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1910 <HeaderFileName>
1911 </HeaderFileName>
1912 </Midl>
1913 <ClCompile>
1914 <Optimization>MaxSpeed</Optimization>
1915 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1916 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1917 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1918 <StringPooling>true</StringPooling>
1919 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1920 <FunctionLevelLinking>true</FunctionLevelLinking>
1921 <WarningLevel>Level4</WarningLevel>
1922 </ClCompile>
1923 <ResourceCompile>
1924 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1925 <Culture>0x0409</Culture>
1926 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1927 </ResourceCompile>
1928 <Link>
1929 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1930 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1931 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1932 <SubSystem>Console</SubSystem>
1933 <TargetMachine>MachineX64</TargetMachine>
1934 </Link>
1935 </ItemDefinitionGroup>
1936 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
1937 <Midl>
1938 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1939 <HeaderFileName>
1940 </HeaderFileName>
1941 </Midl>
1942 <ClCompile>
1943 <Optimization>Disabled</Optimization>
1944 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1945 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1946 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1947 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1948 <WarningLevel>Level4</WarningLevel>
1949 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1950 </ClCompile>
1951 <ResourceCompile>
1952 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1953 <Culture>0x0409</Culture>
1954 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1955 </ResourceCompile>
1956 <Link>
1957 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1958 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1959 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1960 <GenerateDebugInformation>true</GenerateDebugInformation>
1961 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1962 <SubSystem>Console</SubSystem>
1963 <TargetMachine>MachineX86</TargetMachine>
1964 </Link>
1965 </ItemDefinitionGroup>
1966 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
1967 <Midl>
1968 <TargetEnvironment>X64</TargetEnvironment>
1969 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1970 <HeaderFileName>
1971 </HeaderFileName>
1972 </Midl>
1973 <ClCompile>
1974 <Optimization>Disabled</Optimization>
1975 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1976 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1977 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1978 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1979 <WarningLevel>Level4</WarningLevel>
1980 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1981 </ClCompile>
1982 <ResourceCompile>
1983 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <Culture>0x0409</Culture>
1985 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1986 </ResourceCompile>
1987 <Link>
1988 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1989 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1990 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1991 <GenerateDebugInformation>true</GenerateDebugInformation>
1992 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1993 <SubSystem>Console</SubSystem>
1994 <TargetMachine>MachineX64</TargetMachine>
1995 </Link>
1996 </ItemDefinitionGroup>
1997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
1998 <Midl>
1999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2000 <HeaderFileName>
2001 </HeaderFileName>
2002 </Midl>
2003 <ClCompile>
2004 <Optimization>MaxSpeed</Optimization>
2005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2008 <StringPooling>true</StringPooling>
2009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2010 <FunctionLevelLinking>true</FunctionLevelLinking>
2011 <WarningLevel>Level4</WarningLevel>
2012 </ClCompile>
2013 <ResourceCompile>
2014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2015 <Culture>0x0409</Culture>
2016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2017 </ResourceCompile>
2018 <Link>
2019 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2022 <SubSystem>Console</SubSystem>
2023 <TargetMachine>MachineX86</TargetMachine>
2024 </Link>
2025 </ItemDefinitionGroup>
2026 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2027 <Midl>
2028 <TargetEnvironment>X64</TargetEnvironment>
2029 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2030 <HeaderFileName>
2031 </HeaderFileName>
2032 </Midl>
2033 <ClCompile>
2034 <Optimization>MaxSpeed</Optimization>
2035 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2036 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2037 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2038 <StringPooling>true</StringPooling>
2039 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2040 <FunctionLevelLinking>true</FunctionLevelLinking>
2041 <WarningLevel>Level4</WarningLevel>
2042 </ClCompile>
2043 <ResourceCompile>
2044 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2045 <Culture>0x0409</Culture>
2046 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2047 </ResourceCompile>
2048 <Link>
2049 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2050 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2051 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2052 <SubSystem>Console</SubSystem>
2053 <TargetMachine>MachineX64</TargetMachine>
2054 </Link>
2055 </ItemDefinitionGroup>
2056 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2057 <Midl>
2058 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2059 <HeaderFileName>
2060 </HeaderFileName>
2061 </Midl>
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2075 </ResourceCompile>
2076 <Link>
2077 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2078 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2079 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\LIB Debug;..\..\..\..\..\libssh2\build\Win32\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2080 <GenerateDebugInformation>true</GenerateDebugInformation>
2081 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2082 <SubSystem>Console</SubSystem>
2083 <TargetMachine>MachineX86</TargetMachine>
2084 </Link>
2085 </ItemDefinitionGroup>
2086 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2087 <Midl>
2088 <TargetEnvironment>X64</TargetEnvironment>
2089 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2090 <HeaderFileName>
2091 </HeaderFileName>
2092 </Midl>
2093 <ClCompile>
2094 <Optimization>Disabled</Optimization>
2095 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2096 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2097 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2098 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2099 <WarningLevel>Level4</WarningLevel>
2100 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2101 </ClCompile>
2102 <ResourceCompile>
2103 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2104 <Culture>0x0409</Culture>
2105 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2106 </ResourceCompile>
2107 <Link>
2108 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2109 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2110 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\LIB Debug;..\..\..\..\..\libssh2\build\Win64\VC15\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2111 <GenerateDebugInformation>true</GenerateDebugInformation>
2112 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2113 <SubSystem>Console</SubSystem>
2114 <TargetMachine>MachineX64</TargetMachine>
2115 </Link>
2116 </ItemDefinitionGroup>
2117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2118 <Midl>
2119 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2120 <HeaderFileName>
2121 </HeaderFileName>
2122 </Midl>
2123 <ClCompile>
2124 <Optimization>MaxSpeed</Optimization>
2125 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2126 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2127 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2128 <StringPooling>true</StringPooling>
2129 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2130 <FunctionLevelLinking>true</FunctionLevelLinking>
2131 <WarningLevel>Level4</WarningLevel>
2132 </ClCompile>
2133 <ResourceCompile>
2134 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2135 <Culture>0x0409</Culture>
2136 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2137 </ResourceCompile>
2138 <Link>
2139 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2140 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2141 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\LIB Release;..\..\..\..\..\libssh2\build\Win32\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2142 <SubSystem>Console</SubSystem>
2143 <TargetMachine>MachineX86</TargetMachine>
2144 </Link>
2145 </ItemDefinitionGroup>
2146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2147 <Midl>
2148 <TargetEnvironment>X64</TargetEnvironment>
2149 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2150 <HeaderFileName>
2151 </HeaderFileName>
2152 </Midl>
2153 <ClCompile>
2154 <Optimization>MaxSpeed</Optimization>
2155 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2156 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2157 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <StringPooling>true</StringPooling>
2159 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2160 <FunctionLevelLinking>true</FunctionLevelLinking>
2161 <WarningLevel>Level4</WarningLevel>
2162 </ClCompile>
2163 <ResourceCompile>
2164 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2165 <Culture>0x0409</Culture>
2166 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2167 </ResourceCompile>
2168 <Link>
2169 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2170 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2171 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\LIB Release;..\..\..\..\..\libssh2\build\Win64\VC15\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2172 <SubSystem>Console</SubSystem>
2173 <TargetMachine>MachineX64</TargetMachine>
2174 </Link>
2175 </ItemDefinitionGroup>
2176 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
2177 <Midl>
2178 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2179 <HeaderFileName>
2180 </HeaderFileName>
2181 </Midl>
2182 <ClCompile>
2183 <Optimization>Disabled</Optimization>
2184 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2185 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2186 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2187 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2188 <WarningLevel>Level4</WarningLevel>
2189 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2190 </ClCompile>
2191 <ResourceCompile>
2192 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2193 <Culture>0x0409</Culture>
2194 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2195 </ResourceCompile>
2196 <Link>
2197 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2198 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2199 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2200 <GenerateDebugInformation>true</GenerateDebugInformation>
2201 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2202 <SubSystem>Console</SubSystem>
2203 <TargetMachine>MachineX86</TargetMachine>
2204 </Link>
2205 </ItemDefinitionGroup>
2206 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
2207 <Midl>
2208 <TargetEnvironment>X64</TargetEnvironment>
2209 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2210 <HeaderFileName>
2211 </HeaderFileName>
2212 </Midl>
2213 <ClCompile>
2214 <Optimization>Disabled</Optimization>
2215 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2216 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2217 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2218 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2219 <WarningLevel>Level4</WarningLevel>
2220 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2221 </ClCompile>
2222 <ResourceCompile>
2223 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2224 <Culture>0x0409</Culture>
2225 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2226 </ResourceCompile>
2227 <Link>
2228 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2230 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2231 <GenerateDebugInformation>true</GenerateDebugInformation>
2232 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2233 <SubSystem>Console</SubSystem>
2234 <TargetMachine>MachineX64</TargetMachine>
2235 </Link>
2236 </ItemDefinitionGroup>
2237 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2238 <Midl>
2239 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2240 <HeaderFileName>
2241 </HeaderFileName>
2242 </Midl>
2243 <ClCompile>
2244 <Optimization>MaxSpeed</Optimization>
2245 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2246 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2247 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2248 <StringPooling>true</StringPooling>
2249 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2250 <FunctionLevelLinking>true</FunctionLevelLinking>
2251 <WarningLevel>Level4</WarningLevel>
2252 </ClCompile>
2253 <ResourceCompile>
2254 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2255 <Culture>0x0409</Culture>
2256 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2257 </ResourceCompile>
2258 <Link>
2259 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2260 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2261 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2262 <SubSystem>Console</SubSystem>
2263 <TargetMachine>MachineX86</TargetMachine>
2264 </Link>
2265 </ItemDefinitionGroup>
2266 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2267 <Midl>
2268 <TargetEnvironment>X64</TargetEnvironment>
2269 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2270 <HeaderFileName>
2271 </HeaderFileName>
2272 </Midl>
2273 <ClCompile>
2274 <Optimization>MaxSpeed</Optimization>
2275 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2276 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2277 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2278 <StringPooling>true</StringPooling>
2279 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2280 <FunctionLevelLinking>true</FunctionLevelLinking>
2281 <WarningLevel>Level4</WarningLevel>
2282 </ClCompile>
2283 <ResourceCompile>
2284 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2285 <Culture>0x0409</Culture>
2286 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2287 </ResourceCompile>
2288 <Link>
2289 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2292 <SubSystem>Console</SubSystem>
2293 <TargetMachine>MachineX64</TargetMachine>
2294 </Link>
2295 </ItemDefinitionGroup>
2296 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
2297 <Midl>
2298 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2299 <HeaderFileName>
2300 </HeaderFileName>
2301 </Midl>
2302 <ClCompile>
2303 <Optimization>Disabled</Optimization>
2304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2305 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2306 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2307 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2308 <WarningLevel>Level4</WarningLevel>
2309 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2310 </ClCompile>
2311 <ResourceCompile>
2312 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2313 <Culture>0x0409</Culture>
2314 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2315 </ResourceCompile>
2316 <Link>
2317 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2318 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2319 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2320 <GenerateDebugInformation>true</GenerateDebugInformation>
2321 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2322 <SubSystem>Console</SubSystem>
2323 <TargetMachine>MachineX86</TargetMachine>
2324 </Link>
2325 </ItemDefinitionGroup>
2326 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
2327 <Midl>
2328 <TargetEnvironment>X64</TargetEnvironment>
2329 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2330 <HeaderFileName>
2331 </HeaderFileName>
2332 </Midl>
2333 <ClCompile>
2334 <Optimization>Disabled</Optimization>
2335 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2336 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2337 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2338 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2339 <WarningLevel>Level4</WarningLevel>
2340 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2341 </ClCompile>
2342 <ResourceCompile>
2343 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2344 <Culture>0x0409</Culture>
2345 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2346 </ResourceCompile>
2347 <Link>
2348 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2349 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2350 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC15\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2351 <GenerateDebugInformation>true</GenerateDebugInformation>
2352 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2353 <SubSystem>Console</SubSystem>
2354 <TargetMachine>MachineX64</TargetMachine>
2355 </Link>
2356 </ItemDefinitionGroup>
2357 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2358 <Midl>
2359 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2360 <HeaderFileName>
2361 </HeaderFileName>
2362 </Midl>
2363 <ClCompile>
2364 <Optimization>MaxSpeed</Optimization>
2365 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2366 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2367 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2368 <StringPooling>true</StringPooling>
2369 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2370 <FunctionLevelLinking>true</FunctionLevelLinking>
2371 <WarningLevel>Level4</WarningLevel>
2372 </ClCompile>
2373 <ResourceCompile>
2374 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2375 <Culture>0x0409</Culture>
2376 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2377 </ResourceCompile>
2378 <Link>
2379 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2380 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2381 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC15\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2382 <SubSystem>Console</SubSystem>
2383 <TargetMachine>MachineX86</TargetMachine>
2384 </Link>
2385 </ItemDefinitionGroup>
2386 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2387 <Midl>
2388 <TargetEnvironment>X64</TargetEnvironment>
2389 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2390 <HeaderFileName>
2391 </HeaderFileName>
2392 </Midl>
2393 <ClCompile>
2394 <Optimization>MaxSpeed</Optimization>
2395 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2396 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2397 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2398 <StringPooling>true</StringPooling>
2399 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2400 <FunctionLevelLinking>true</FunctionLevelLinking>
2401 <WarningLevel>Level4</WarningLevel>
2402 </ClCompile>
2403 <ResourceCompile>
2404 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2405 <Culture>0x0409</Culture>
2406 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2407 </ResourceCompile>
2408 <Link>
2409 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libssh2.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2410 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2411 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC15\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC15\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2412 <SubSystem>Console</SubSystem>
2413 <TargetMachine>MachineX64</TargetMachine>
2414 </Link>
2415 </ItemDefinitionGroup>
2416 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
2417 <Midl>
2418 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2419 <HeaderFileName>
2420 </HeaderFileName>
2421 </Midl>
2422 <ClCompile>
2423 <Optimization>Disabled</Optimization>
2424 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2425 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2426 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2427 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2428 <WarningLevel>Level4</WarningLevel>
2429 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2430 </ClCompile>
2431 <ResourceCompile>
2432 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2433 <Culture>0x0409</Culture>
2434 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2435 </ResourceCompile>
2436 <Link>
2437 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2438 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2439 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2440 <GenerateDebugInformation>true</GenerateDebugInformation>
2441 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2442 <SubSystem>Console</SubSystem>
2443 <TargetMachine>MachineX86</TargetMachine>
2444 </Link>
2445 </ItemDefinitionGroup>
2446 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
2447 <Midl>
2448 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2449 <HeaderFileName>
2450 </HeaderFileName>
2451 </Midl>
2452 <ClCompile>
2453 <Optimization>Disabled</Optimization>
2454 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2455 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2456 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2457 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2458 <WarningLevel>Level4</WarningLevel>
2459 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2460 </ClCompile>
2461 <ResourceCompile>
2462 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2463 <Culture>0x0409</Culture>
2464 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2465 </ResourceCompile>
2466 <Link>
2467 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2468 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2469 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2470 <GenerateDebugInformation>true</GenerateDebugInformation>
2471 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2472 <SubSystem>Console</SubSystem>
2473 <TargetMachine>MachineX86</TargetMachine>
2474 </Link>
2475 </ItemDefinitionGroup>
2476 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
2477 <Midl>
2478 <TargetEnvironment>X64</TargetEnvironment>
2479 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2480 <HeaderFileName>
2481 </HeaderFileName>
2482 </Midl>
2483 <ClCompile>
2484 <Optimization>Disabled</Optimization>
2485 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2486 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2487 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2488 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2489 <WarningLevel>Level4</WarningLevel>
2490 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2491 </ClCompile>
2492 <ResourceCompile>
2493 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2494 <Culture>0x0409</Culture>
2495 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2496 </ResourceCompile>
2497 <Link>
2498 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2499 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2500 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2501 <GenerateDebugInformation>true</GenerateDebugInformation>
2502 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2503 <SubSystem>Console</SubSystem>
2504 <TargetMachine>MachineX64</TargetMachine>
2505 </Link>
2506 </ItemDefinitionGroup>
2507 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
2508 <Midl>
2509 <TargetEnvironment>X64</TargetEnvironment>
2510 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2511 <HeaderFileName>
2512 </HeaderFileName>
2513 </Midl>
2514 <ClCompile>
2515 <Optimization>Disabled</Optimization>
2516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2517 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2520 <WarningLevel>Level4</WarningLevel>
2521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2522 </ClCompile>
2523 <ResourceCompile>
2524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2525 <Culture>0x0409</Culture>
2526 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2527 </ResourceCompile>
2528 <Link>
2529 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2530 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2531 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2532 <GenerateDebugInformation>true</GenerateDebugInformation>
2533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2534 <SubSystem>Console</SubSystem>
2535 <TargetMachine>MachineX64</TargetMachine>
2536 </Link>
2537 </ItemDefinitionGroup>
2538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2539 <Midl>
2540 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2541 <HeaderFileName>
2542 </HeaderFileName>
2543 </Midl>
2544 <ClCompile>
2545 <Optimization>MaxSpeed</Optimization>
2546 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2547 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2548 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2549 <StringPooling>true</StringPooling>
2550 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2551 <FunctionLevelLinking>true</FunctionLevelLinking>
2552 <WarningLevel>Level4</WarningLevel>
2553 </ClCompile>
2554 <ResourceCompile>
2555 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2556 <Culture>0x0409</Culture>
2557 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2558 </ResourceCompile>
2559 <Link>
2560 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2561 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2562 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2563 <SubSystem>Console</SubSystem>
2564 <TargetMachine>MachineX86</TargetMachine>
2565 </Link>
2566 </ItemDefinitionGroup>
2567 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2568 <Midl>
2569 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2570 <HeaderFileName>
2571 </HeaderFileName>
2572 </Midl>
2573 <ClCompile>
2574 <Optimization>MaxSpeed</Optimization>
2575 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2576 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2577 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2578 <StringPooling>true</StringPooling>
2579 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2580 <FunctionLevelLinking>true</FunctionLevelLinking>
2581 <WarningLevel>Level4</WarningLevel>
2582 </ClCompile>
2583 <ResourceCompile>
2584 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2585 <Culture>0x0409</Culture>
2586 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2587 </ResourceCompile>
2588 <Link>
2589 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2590 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2591 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2592 <SubSystem>Console</SubSystem>
2593 <TargetMachine>MachineX86</TargetMachine>
2594 </Link>
2595 </ItemDefinitionGroup>
2596 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2597 <Midl>
2598 <TargetEnvironment>X64</TargetEnvironment>
2599 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2600 <HeaderFileName>
2601 </HeaderFileName>
2602 </Midl>
2603 <ClCompile>
2604 <Optimization>MaxSpeed</Optimization>
2605 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2606 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2607 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2608 <StringPooling>true</StringPooling>
2609 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2610 <FunctionLevelLinking>true</FunctionLevelLinking>
2611 <WarningLevel>Level4</WarningLevel>
2612 </ClCompile>
2613 <ResourceCompile>
2614 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2615 <Culture>0x0409</Culture>
2616 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2617 </ResourceCompile>
2618 <Link>
2619 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2620 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2621 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2622 <SubSystem>Console</SubSystem>
2623 <TargetMachine>MachineX64</TargetMachine>
2624 </Link>
2625 </ItemDefinitionGroup>
2626 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2627 <Midl>
2628 <TargetEnvironment>X64</TargetEnvironment>
2629 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2630 <HeaderFileName>
2631 </HeaderFileName>
2632 </Midl>
2633 <ClCompile>
2634 <Optimization>MaxSpeed</Optimization>
2635 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2636 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2637 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2638 <StringPooling>true</StringPooling>
2639 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2640 <FunctionLevelLinking>true</FunctionLevelLinking>
2641 <WarningLevel>Level4</WarningLevel>
2642 </ClCompile>
2643 <ResourceCompile>
2644 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2645 <Culture>0x0409</Culture>
2646 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2647 </ResourceCompile>
2648 <Link>
2649 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2650 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2651 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC15\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2652 <SubSystem>Console</SubSystem>
2653 <TargetMachine>MachineX64</TargetMachine>
2654 </Link>
2655 </ItemDefinitionGroup>
2656 <ItemGroup>
2657 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2658 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2659 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2660 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2661 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2662 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2663 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2664 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
2665 <ClCompile Include="..\..\..\..\src\tool_binmode.c" />
2666 <ClCompile Include="..\..\..\..\src\tool_bname.c" />
2667 <ClCompile Include="..\..\..\..\src\tool_cb_dbg.c" />
2668 <ClCompile Include="..\..\..\..\src\tool_cb_hdr.c" />
2669 <ClCompile Include="..\..\..\..\src\tool_cb_prg.c" />
2670 <ClCompile Include="..\..\..\..\src\tool_cb_rea.c" />
2671 <ClCompile Include="..\..\..\..\src\tool_cb_see.c" />
2672 <ClCompile Include="..\..\..\..\src\tool_cb_wrt.c" />
2673 <ClCompile Include="..\..\..\..\src\tool_cfgable.c" />
2674 <ClCompile Include="..\..\..\..\src\tool_dirhie.c" />
2675 <ClCompile Include="..\..\..\..\src\tool_doswin.c" />
2676 <ClCompile Include="..\..\..\..\src\tool_easysrc.c" />
2677 <ClCompile Include="..\..\..\..\src\tool_filetime.c" />
2678 <ClCompile Include="..\..\..\..\src\tool_findfile.c" />
2679 <ClCompile Include="..\..\..\..\src\tool_formparse.c" />
2680 <ClCompile Include="..\..\..\..\src\tool_getparam.c" />
2681 <ClCompile Include="..\..\..\..\src\tool_getpass.c" />
2682 <ClCompile Include="..\..\..\..\src\tool_help.c" />
2683 <ClCompile Include="..\..\..\..\src\tool_helpers.c" />
2684 <ClCompile Include="..\..\..\..\src\tool_hugehelp.c" />
2685 <ClCompile Include="..\..\..\..\src\tool_libinfo.c" />
2686 <ClCompile Include="..\..\..\..\src\tool_listhelp.c" />
2687 <ClCompile Include="..\..\..\..\src\tool_main.c" />
2688 <ClCompile Include="..\..\..\..\src\tool_msgs.c" />
2689 <ClCompile Include="..\..\..\..\src\tool_operate.c" />
2690 <ClCompile Include="..\..\..\..\src\tool_operhlp.c" />
2691 <ClCompile Include="..\..\..\..\src\tool_panykey.c" />
2692 <ClCompile Include="..\..\..\..\src\tool_paramhlp.c" />
2693 <ClCompile Include="..\..\..\..\src\tool_parsecfg.c" />
2694 <ClCompile Include="..\..\..\..\src\tool_progress.c" />
2695 <ClCompile Include="..\..\..\..\src\tool_setopt.c" />
2696 <ClCompile Include="..\..\..\..\src\tool_sleep.c" />
2697 <ClCompile Include="..\..\..\..\src\tool_strdup.c" />
2698 <ClCompile Include="..\..\..\..\src\tool_urlglob.c" />
2699 <ClCompile Include="..\..\..\..\src\tool_util.c" />
2700 <ClCompile Include="..\..\..\..\src\tool_vms.c" />
2701 <ClCompile Include="..\..\..\..\src\tool_writeout.c" />
2702 <ClCompile Include="..\..\..\..\src\tool_writeout_json.c" />
2703 <ClCompile Include="..\..\..\..\src\tool_xattr.c" />
2704 </ItemGroup>
2705 <ItemGroup>
2706 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2707 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2708 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2709 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2710 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2711 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2712 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2713 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2714 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2715 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
2716 <ClInclude Include="..\..\..\..\src\tool_binmode.h" />
2717 <ClInclude Include="..\..\..\..\src\tool_bname.h" />
2718 <ClInclude Include="..\..\..\..\src\tool_cb_dbg.h" />
2719 <ClInclude Include="..\..\..\..\src\tool_cb_hdr.h" />
2720 <ClInclude Include="..\..\..\..\src\tool_cb_prg.h" />
2721 <ClInclude Include="..\..\..\..\src\tool_cb_rea.h" />
2722 <ClInclude Include="..\..\..\..\src\tool_cb_see.h" />
2723 <ClInclude Include="..\..\..\..\src\tool_cb_wrt.h" />
2724 <ClInclude Include="..\..\..\..\src\tool_cfgable.h" />
2725 <ClInclude Include="..\..\..\..\src\tool_dirhie.h" />
2726 <ClInclude Include="..\..\..\..\src\tool_doswin.h" />
2727 <ClInclude Include="..\..\..\..\src\tool_easysrc.h" />
2728 <ClInclude Include="..\..\..\..\src\tool_filetime.h" />
2729 <ClInclude Include="..\..\..\..\src\tool_findfile.h" />
2730 <ClInclude Include="..\..\..\..\src\tool_formparse.h" />
2731 <ClInclude Include="..\..\..\..\src\tool_getparam.h" />
2732 <ClInclude Include="..\..\..\..\src\tool_getpass.h" />
2733 <ClInclude Include="..\..\..\..\src\tool_helpers.h" />
2734 <ClInclude Include="..\..\..\..\src\tool_help.h" />
2735 <ClInclude Include="..\..\..\..\src\tool_hugehelp.h" />
2736 <ClInclude Include="..\..\..\..\src\tool_libinfo.h" />
2737 <ClInclude Include="..\..\..\..\src\tool_main.h" />
2738 <ClInclude Include="..\..\..\..\src\tool_msgs.h" />
2739 <ClInclude Include="..\..\..\..\src\tool_operate.h" />
2740 <ClInclude Include="..\..\..\..\src\tool_operhlp.h" />
2741 <ClInclude Include="..\..\..\..\src\tool_panykey.h" />
2742 <ClInclude Include="..\..\..\..\src\tool_paramhlp.h" />
2743 <ClInclude Include="..\..\..\..\src\tool_parsecfg.h" />
2744 <ClInclude Include="..\..\..\..\src\tool_progress.h" />
2745 <ClInclude Include="..\..\..\..\src\tool_sdecls.h" />
2746 <ClInclude Include="..\..\..\..\src\tool_setopt.h" />
2747 <ClInclude Include="..\..\..\..\src\tool_setup.h" />
2748 <ClInclude Include="..\..\..\..\src\tool_sleep.h" />
2749 <ClInclude Include="..\..\..\..\src\tool_strdup.h" />
2750 <ClInclude Include="..\..\..\..\src\tool_urlglob.h" />
2751 <ClInclude Include="..\..\..\..\src\tool_util.h" />
2752 <ClInclude Include="..\..\..\..\src\tool_version.h" />
2753 <ClInclude Include="..\..\..\..\src\tool_vms.h" />
2754 <ClInclude Include="..\..\..\..\src\tool_writeout.h" />
2755 <ClInclude Include="..\..\..\..\src\tool_writeout_json.h" />
2756 <ClInclude Include="..\..\..\..\src\tool_xattr.h" />
2757 </ItemGroup>
2758 <ItemGroup>
2759 <ResourceCompile Include="..\..\..\..\src\curl.rc" />
2760 </ItemGroup>
2761 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2762 <ImportGroup Label="ExtensionTargets">
2763 </ImportGroup>
2764 </Project>
+0
-17
projects/Windows/VC15/src/curl.vcxproj.filters less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
+0
-298
projects/Windows/VC17/curl-all.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 17
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "src\curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 ProjectSection(ProjectDependencies) = postProject
4 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB} = {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}
5 EndProjectSection
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "lib\libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
8 EndProject
9 Global
10 GlobalSection(SolutionConfigurationPlatforms) = preSolution
11 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
12 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
13 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
14 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
15 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
16 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
17 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
18 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
19 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
20 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
21 DLL Debug|Win32 = DLL Debug|Win32
22 DLL Debug|x64 = DLL Debug|x64
23 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
24 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
25 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
26 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
27 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
28 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
29 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
30 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
31 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
32 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
33 DLL Release|Win32 = DLL Release|Win32
34 DLL Release|x64 = DLL Release|x64
35 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
36 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
37 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
38 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
39 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
40 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
41 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
42 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
43 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
44 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
45 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
46 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
47 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
48 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
49 LIB Debug|Win32 = LIB Debug|Win32
50 LIB Debug|x64 = LIB Debug|x64
51 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
52 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
53 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
54 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
55 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
56 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
57 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
58 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
59 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
60 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
61 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
62 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
63 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
64 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
65 LIB Release|Win32 = LIB Release|Win32
66 LIB Release|x64 = LIB Release|x64
67 EndGlobalSection
68 GlobalSection(ProjectConfigurationPlatforms) = postSolution
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
176 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
177 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
178 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
179 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
180 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
181 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
182 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
183 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
184 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
185 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
186 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
187 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
188 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
189 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
190 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
191 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
192 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
193 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
194 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
195 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
196 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
197 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
198 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
199 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
200 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
201 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
202 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
203 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
204 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
205 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
206 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
207 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
208 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
209 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
210 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
211 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
212 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
213 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
214 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
215 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
216 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
217 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
218 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
219 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
220 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
221 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
222 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
223 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
224 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
225 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
226 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
227 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
228 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
229 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
230 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
231 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
232 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
233 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
234 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
235 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
236 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
237 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
238 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
239 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
240 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
241 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
242 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
243 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
244 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
245 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
246 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
247 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
248 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
249 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
250 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
251 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
252 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
253 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
254 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
255 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
256 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
257 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
258 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
259 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
260 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
261 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
262 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
263 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
264 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
265 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
266 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
267 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
268 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
269 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
270 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
271 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
272 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
273 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
274 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
275 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
276 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
277 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
278 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
279 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
280 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
281 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
282 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
283 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
284 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
285 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
286 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
287 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
288 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
289 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
290 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
291 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
292 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
293 EndGlobalSection
294 GlobalSection(SolutionProperties) = preSolution
295 HideSolutionNode = FALSE
296 EndGlobalSection
297 EndGlobal
+0
-181
projects/Windows/VC17/lib/libcurl.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 17
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcurl", "libcurl.vcxproj", "{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.DLL Release|x64.Build.0 = DLL Release|x64
112 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
+0
-2664
projects/Windows/VC17/lib/libcurl.vcxproj less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{DA6F56B4-06A4-441D-AD70-AC5A7D51FADB}</ProjectGuid>
230 <RootNamespace>libcurl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
234 <ConfigurationType>StaticLibrary</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v143</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
240 <ConfigurationType>StaticLibrary</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v143</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>StaticLibrary</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v143</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>StaticLibrary</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v143</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>StaticLibrary</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v143</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
264 <ConfigurationType>StaticLibrary</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v143</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
270 <ConfigurationType>StaticLibrary</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v143</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>StaticLibrary</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v143</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
282 <ConfigurationType>StaticLibrary</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v143</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
288 <ConfigurationType>StaticLibrary</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v143</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
294 <ConfigurationType>StaticLibrary</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v143</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>StaticLibrary</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v143</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>DynamicLibrary</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v143</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>DynamicLibrary</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v143</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>DynamicLibrary</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v143</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>DynamicLibrary</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v143</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
330 <ConfigurationType>DynamicLibrary</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v143</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
336 <ConfigurationType>DynamicLibrary</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v143</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
342 <ConfigurationType>DynamicLibrary</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v143</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>DynamicLibrary</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v143</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
354 <ConfigurationType>StaticLibrary</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v143</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>StaticLibrary</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v143</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>StaticLibrary</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v143</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>StaticLibrary</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v143</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
378 <ConfigurationType>DynamicLibrary</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v143</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>DynamicLibrary</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v143</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
390 <ConfigurationType>DynamicLibrary</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v143</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>DynamicLibrary</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v143</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
402 <ConfigurationType>StaticLibrary</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v143</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
408 <ConfigurationType>StaticLibrary</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v143</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>StaticLibrary</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v143</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>StaticLibrary</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v143</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>StaticLibrary</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v143</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
432 <ConfigurationType>StaticLibrary</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v143</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
438 <ConfigurationType>StaticLibrary</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v143</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>StaticLibrary</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v143</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
450 <ConfigurationType>StaticLibrary</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v143</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
456 <ConfigurationType>StaticLibrary</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v143</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
462 <ConfigurationType>StaticLibrary</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v143</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>StaticLibrary</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v143</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>DynamicLibrary</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v143</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>DynamicLibrary</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v143</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>DynamicLibrary</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v143</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>DynamicLibrary</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v143</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
498 <ConfigurationType>DynamicLibrary</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v143</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
504 <ConfigurationType>DynamicLibrary</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v143</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
510 <ConfigurationType>DynamicLibrary</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v143</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>DynamicLibrary</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v143</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
522 <ConfigurationType>StaticLibrary</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v143</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>StaticLibrary</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v143</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>StaticLibrary</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v143</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>StaticLibrary</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v143</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
546 <ConfigurationType>DynamicLibrary</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v143</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>DynamicLibrary</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v143</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
558 <ConfigurationType>DynamicLibrary</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v143</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>DynamicLibrary</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v143</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)lib\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)lib\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)lib\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)lib\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)lib\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)lib\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)lib\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
771 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
772 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
773 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)lib\</IntDir>
774 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
775 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
776 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
777 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)lib\</IntDir>
778 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)lib\</IntDir>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)lib\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)lib\</IntDir>
783 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
784 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
785 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
788 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
789 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
790 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
791 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
792 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
793 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
794 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
795 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
796 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
797 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
798 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
799 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
800 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
801 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
802 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
803 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
804 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
805 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
806 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
807 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
808 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
809 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
812 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
813 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
814 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
815 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
816 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
817 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
818 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
819 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
820 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
821 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
824 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
825 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
826 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
827 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
828 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
829 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
830 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
831 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
832 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
835 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
836 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
837 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
838 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
840 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
841 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
842 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
843 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
844 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
845 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
847 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
848 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
849 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
850 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
853 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
854 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
855 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
856 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)lib\</IntDir>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)lib\</IntDir>
859 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
860 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)lib\</IntDir>
861 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
862 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)lib\</IntDir>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
864 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
865 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)lib\</IntDir>
866 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)lib\</IntDir>
867 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
868 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
869 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)lib\</IntDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)lib\</IntDir>
871 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
872 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)lib\</IntDir>
873 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
874 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)lib\</IntDir>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)lib\</IntDir>
877 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
878 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)lib\</IntDir>
879 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
880 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
881 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
882 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
883 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
884 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
885 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
886 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
887 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
888 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
889 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
890 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
891 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
892 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
893 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
894 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
895 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
896 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
897 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
898 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
899 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
900 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
901 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
902 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
903 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
904 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
905 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
906 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
907 </PropertyGroup>
908 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
909 <Midl>
910 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
911 <MkTypLibCompatible>true</MkTypLibCompatible>
912 <TargetEnvironment>Win32</TargetEnvironment>
913 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
914 <HeaderFileName>
915 </HeaderFileName>
916 </Midl>
917 <ClCompile>
918 <Optimization>Disabled</Optimization>
919 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
920 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
921 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
922 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
923 <WarningLevel>Level4</WarningLevel>
924 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
925 </ClCompile>
926 <ResourceCompile>
927 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
928 <Culture>0x0409</Culture>
929 </ResourceCompile>
930 <Link>
931 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
932 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
933 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
934 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
935 <GenerateDebugInformation>true</GenerateDebugInformation>
936 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
937 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
938 <TargetMachine>MachineX86</TargetMachine>
939 </Link>
940 </ItemDefinitionGroup>
941 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
942 <Midl>
943 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
944 <MkTypLibCompatible>true</MkTypLibCompatible>
945 <TargetEnvironment>Win32</TargetEnvironment>
946 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
947 <HeaderFileName>
948 </HeaderFileName>
949 </Midl>
950 <ClCompile>
951 <Optimization>Disabled</Optimization>
952 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
953 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
954 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
955 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
956 <WarningLevel>Level4</WarningLevel>
957 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
958 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
959 </ClCompile>
960 <ResourceCompile>
961 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
962 <Culture>0x0409</Culture>
963 </ResourceCompile>
964 <Link>
965 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
966 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
967 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
968 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
969 <GenerateDebugInformation>true</GenerateDebugInformation>
970 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
971 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
972 <TargetMachine>MachineX86</TargetMachine>
973 </Link>
974 </ItemDefinitionGroup>
975 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
976 <Midl>
977 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
978 <MkTypLibCompatible>true</MkTypLibCompatible>
979 <TargetEnvironment>X64</TargetEnvironment>
980 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
981 <HeaderFileName>
982 </HeaderFileName>
983 </Midl>
984 <ClCompile>
985 <Optimization>Disabled</Optimization>
986 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
987 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
988 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
989 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
990 <WarningLevel>Level4</WarningLevel>
991 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
992 </ClCompile>
993 <ResourceCompile>
994 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
995 <Culture>0x0409</Culture>
996 </ResourceCompile>
997 <Link>
998 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
999 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1000 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1001 <GenerateDebugInformation>true</GenerateDebugInformation>
1002 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1003 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1004 <TargetMachine>MachineX64</TargetMachine>
1005 </Link>
1006 </ItemDefinitionGroup>
1007 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1008 <Midl>
1009 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1010 <MkTypLibCompatible>true</MkTypLibCompatible>
1011 <TargetEnvironment>X64</TargetEnvironment>
1012 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1013 <HeaderFileName>
1014 </HeaderFileName>
1015 </Midl>
1016 <ClCompile>
1017 <Optimization>Disabled</Optimization>
1018 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1019 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1020 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1021 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1022 <WarningLevel>Level4</WarningLevel>
1023 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1024 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1025 </ClCompile>
1026 <ResourceCompile>
1027 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1028 <Culture>0x0409</Culture>
1029 </ResourceCompile>
1030 <Link>
1031 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1032 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1033 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1034 <GenerateDebugInformation>true</GenerateDebugInformation>
1035 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1036 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1037 <TargetMachine>MachineX64</TargetMachine>
1038 </Link>
1039 </ItemDefinitionGroup>
1040 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
1041 <Midl>
1042 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1043 <MkTypLibCompatible>true</MkTypLibCompatible>
1044 <TargetEnvironment>Win32</TargetEnvironment>
1045 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1046 <HeaderFileName>
1047 </HeaderFileName>
1048 </Midl>
1049 <ClCompile>
1050 <Optimization>MaxSpeed</Optimization>
1051 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1052 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1053 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1054 <StringPooling>true</StringPooling>
1055 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1056 <FunctionLevelLinking>true</FunctionLevelLinking>
1057 <WarningLevel>Level4</WarningLevel>
1058 </ClCompile>
1059 <ResourceCompile>
1060 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1061 <Culture>0x0409</Culture>
1062 </ResourceCompile>
1063 <Link>
1064 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1065 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1066 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1067 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1068 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1069 <TargetMachine>MachineX86</TargetMachine>
1070 </Link>
1071 </ItemDefinitionGroup>
1072 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
1073 <Midl>
1074 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1075 <MkTypLibCompatible>true</MkTypLibCompatible>
1076 <TargetEnvironment>Win32</TargetEnvironment>
1077 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1078 <HeaderFileName>
1079 </HeaderFileName>
1080 </Midl>
1081 <ClCompile>
1082 <Optimization>MaxSpeed</Optimization>
1083 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1084 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1085 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1086 <StringPooling>true</StringPooling>
1087 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1088 <FunctionLevelLinking>true</FunctionLevelLinking>
1089 <WarningLevel>Level4</WarningLevel>
1090 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1091 </ClCompile>
1092 <ResourceCompile>
1093 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1094 <Culture>0x0409</Culture>
1095 </ResourceCompile>
1096 <Link>
1097 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1099 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win32\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1100 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1101 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1102 <TargetMachine>MachineX86</TargetMachine>
1103 <GenerateDebugInformation>true</GenerateDebugInformation>
1104 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1105 </Link>
1106 </ItemDefinitionGroup>
1107 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1108 <Midl>
1109 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1110 <MkTypLibCompatible>true</MkTypLibCompatible>
1111 <TargetEnvironment>X64</TargetEnvironment>
1112 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1113 <HeaderFileName>
1114 </HeaderFileName>
1115 </Midl>
1116 <ClCompile>
1117 <Optimization>MaxSpeed</Optimization>
1118 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1119 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1120 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1121 <StringPooling>true</StringPooling>
1122 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1123 <FunctionLevelLinking>true</FunctionLevelLinking>
1124 <WarningLevel>Level4</WarningLevel>
1125 </ClCompile>
1126 <ResourceCompile>
1127 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1128 <Culture>0x0409</Culture>
1129 </ResourceCompile>
1130 <Link>
1131 <AdditionalDependencies>ws2_32.lib;wldap32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1132 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1133 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1134 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1135 <TargetMachine>MachineX64</TargetMachine>
1136 </Link>
1137 </ItemDefinitionGroup>
1138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1139 <Midl>
1140 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1141 <MkTypLibCompatible>true</MkTypLibCompatible>
1142 <TargetEnvironment>X64</TargetEnvironment>
1143 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1144 <HeaderFileName>
1145 </HeaderFileName>
1146 </Midl>
1147 <ClCompile>
1148 <Optimization>MaxSpeed</Optimization>
1149 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1150 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1151 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WOLFSSL;USE_IPV6;WOLFSSL_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1152 <StringPooling>true</StringPooling>
1153 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1154 <FunctionLevelLinking>true</FunctionLevelLinking>
1155 <WarningLevel>Level4</WarningLevel>
1156 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1157 </ClCompile>
1158 <ResourceCompile>
1159 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1160 <Culture>0x0409</Culture>
1161 </ResourceCompile>
1162 <Link>
1163 <AdditionalDependencies>ws2_32.lib;wldap32.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1164 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1165 <AdditionalLibraryDirectories>..\..\..\..\..\wolfssl\build\Win64\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1166 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1167 <TargetMachine>MachineX64</TargetMachine>
1168 <GenerateDebugInformation>true</GenerateDebugInformation>
1169 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1170 </Link>
1171 </ItemDefinitionGroup>
1172 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1173 <ClCompile>
1174 <Optimization>Disabled</Optimization>
1175 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1176 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1177 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1178 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1179 <WarningLevel>Level4</WarningLevel>
1180 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1181 </ClCompile>
1182 <ResourceCompile>
1183 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1184 <Culture>0x0409</Culture>
1185 </ResourceCompile>
1186 <Lib>
1187 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1188 <TargetMachine>MachineX86</TargetMachine>
1189 </Lib>
1190 </ItemDefinitionGroup>
1191 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1192 <ClCompile>
1193 <Optimization>Disabled</Optimization>
1194 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1195 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1196 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1197 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1198 <WarningLevel>Level4</WarningLevel>
1199 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1200 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1201 </ClCompile>
1202 <ResourceCompile>
1203 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1204 <Culture>0x0409</Culture>
1205 </ResourceCompile>
1206 <Lib>
1207 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1208 <TargetMachine>MachineX86</TargetMachine>
1209 </Lib>
1210 </ItemDefinitionGroup>
1211 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1212 <Midl>
1213 <TargetEnvironment>X64</TargetEnvironment>
1214 </Midl>
1215 <ClCompile>
1216 <Optimization>Disabled</Optimization>
1217 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1218 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1219 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1220 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1221 <WarningLevel>Level4</WarningLevel>
1222 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1223 </ClCompile>
1224 <ResourceCompile>
1225 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1226 <Culture>0x0409</Culture>
1227 </ResourceCompile>
1228 <Lib>
1229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1230 <TargetMachine>MachineX64</TargetMachine>
1231 </Lib>
1232 </ItemDefinitionGroup>
1233 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1234 <Midl>
1235 <TargetEnvironment>X64</TargetEnvironment>
1236 </Midl>
1237 <ClCompile>
1238 <Optimization>Disabled</Optimization>
1239 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1240 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1241 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1242 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1243 <WarningLevel>Level4</WarningLevel>
1244 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1245 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1246 </ClCompile>
1247 <ResourceCompile>
1248 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1249 <Culture>0x0409</Culture>
1250 </ResourceCompile>
1251 <Lib>
1252 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1253 <TargetMachine>MachineX64</TargetMachine>
1254 </Lib>
1255 </ItemDefinitionGroup>
1256 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1257 <ClCompile>
1258 <Optimization>MaxSpeed</Optimization>
1259 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1262 <StringPooling>true</StringPooling>
1263 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1264 <FunctionLevelLinking>true</FunctionLevelLinking>
1265 <WarningLevel>Level4</WarningLevel>
1266 </ClCompile>
1267 <ResourceCompile>
1268 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1269 <Culture>0x0409</Culture>
1270 </ResourceCompile>
1271 <Lib>
1272 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1273 <TargetMachine>MachineX86</TargetMachine>
1274 </Lib>
1275 </ItemDefinitionGroup>
1276 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1277 <ClCompile>
1278 <Optimization>MaxSpeed</Optimization>
1279 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1280 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1281 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1282 <StringPooling>true</StringPooling>
1283 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1284 <FunctionLevelLinking>true</FunctionLevelLinking>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 </ResourceCompile>
1292 <Lib>
1293 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1294 <TargetMachine>MachineX86</TargetMachine>
1295 </Lib>
1296 </ItemDefinitionGroup>
1297 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1298 <Midl>
1299 <TargetEnvironment>X64</TargetEnvironment>
1300 </Midl>
1301 <ClCompile>
1302 <Optimization>MaxSpeed</Optimization>
1303 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1305 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1306 <StringPooling>true</StringPooling>
1307 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1308 <FunctionLevelLinking>true</FunctionLevelLinking>
1309 <WarningLevel>Level4</WarningLevel>
1310 </ClCompile>
1311 <ResourceCompile>
1312 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1313 <Culture>0x0409</Culture>
1314 </ResourceCompile>
1315 <Lib>
1316 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1317 <TargetMachine>MachineX64</TargetMachine>
1318 </Lib>
1319 </ItemDefinitionGroup>
1320 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1321 <Midl>
1322 <TargetEnvironment>X64</TargetEnvironment>
1323 </Midl>
1324 <ClCompile>
1325 <Optimization>MaxSpeed</Optimization>
1326 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1327 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\wolfssl;..\..\..\..\..\wolfssl\wolfssl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1328 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WOLFSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1329 <StringPooling>true</StringPooling>
1330 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1331 <FunctionLevelLinking>true</FunctionLevelLinking>
1332 <WarningLevel>Level4</WarningLevel>
1333 <DisableSpecificWarnings>4214</DisableSpecificWarnings>
1334 </ClCompile>
1335 <ResourceCompile>
1336 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1337 <Culture>0x0409</Culture>
1338 </ResourceCompile>
1339 <Lib>
1340 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1341 <TargetMachine>MachineX64</TargetMachine>
1342 </Lib>
1343 </ItemDefinitionGroup>
1344 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1345 <Midl>
1346 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1347 <MkTypLibCompatible>true</MkTypLibCompatible>
1348 <TargetEnvironment>Win32</TargetEnvironment>
1349 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1350 <HeaderFileName>
1351 </HeaderFileName>
1352 </Midl>
1353 <ClCompile>
1354 <Optimization>Disabled</Optimization>
1355 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1356 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1357 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1358 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1359 <WarningLevel>Level4</WarningLevel>
1360 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1361 </ClCompile>
1362 <ResourceCompile>
1363 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1364 <Culture>0x0409</Culture>
1365 </ResourceCompile>
1366 <Link>
1367 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1368 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1369 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1370 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1371 <GenerateDebugInformation>true</GenerateDebugInformation>
1372 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1373 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1374 <TargetMachine>MachineX86</TargetMachine>
1375 </Link>
1376 </ItemDefinitionGroup>
1377 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1378 <Midl>
1379 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1380 <MkTypLibCompatible>true</MkTypLibCompatible>
1381 <TargetEnvironment>X64</TargetEnvironment>
1382 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1383 <HeaderFileName>
1384 </HeaderFileName>
1385 </Midl>
1386 <ClCompile>
1387 <Optimization>Disabled</Optimization>
1388 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1389 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1390 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1391 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1392 <WarningLevel>Level4</WarningLevel>
1393 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1394 </ClCompile>
1395 <ResourceCompile>
1396 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1397 <Culture>0x0409</Culture>
1398 </ResourceCompile>
1399 <Link>
1400 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1401 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1402 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1403 <GenerateDebugInformation>true</GenerateDebugInformation>
1404 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1405 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1406 <TargetMachine>MachineX64</TargetMachine>
1407 </Link>
1408 </ItemDefinitionGroup>
1409 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1410 <Midl>
1411 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <MkTypLibCompatible>true</MkTypLibCompatible>
1413 <TargetEnvironment>Win32</TargetEnvironment>
1414 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1415 <HeaderFileName>
1416 </HeaderFileName>
1417 </Midl>
1418 <ClCompile>
1419 <Optimization>MaxSpeed</Optimization>
1420 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1421 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1422 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1423 <StringPooling>true</StringPooling>
1424 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1425 <FunctionLevelLinking>true</FunctionLevelLinking>
1426 <WarningLevel>Level4</WarningLevel>
1427 </ClCompile>
1428 <ResourceCompile>
1429 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1430 <Culture>0x0409</Culture>
1431 </ResourceCompile>
1432 <Link>
1433 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1434 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1435 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1436 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1437 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1438 <TargetMachine>MachineX86</TargetMachine>
1439 </Link>
1440 </ItemDefinitionGroup>
1441 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1442 <Midl>
1443 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1444 <MkTypLibCompatible>true</MkTypLibCompatible>
1445 <TargetEnvironment>X64</TargetEnvironment>
1446 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1447 <HeaderFileName>
1448 </HeaderFileName>
1449 </Midl>
1450 <ClCompile>
1451 <Optimization>MaxSpeed</Optimization>
1452 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1453 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1454 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1455 <StringPooling>true</StringPooling>
1456 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1457 <FunctionLevelLinking>true</FunctionLevelLinking>
1458 <WarningLevel>Level4</WarningLevel>
1459 </ClCompile>
1460 <ResourceCompile>
1461 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1462 <Culture>0x0409</Culture>
1463 </ResourceCompile>
1464 <Link>
1465 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1466 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1467 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1468 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1469 <TargetMachine>MachineX64</TargetMachine>
1470 </Link>
1471 </ItemDefinitionGroup>
1472 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1473 <Midl>
1474 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1475 <MkTypLibCompatible>true</MkTypLibCompatible>
1476 <TargetEnvironment>Win32</TargetEnvironment>
1477 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1478 <HeaderFileName>
1479 </HeaderFileName>
1480 </Midl>
1481 <ClCompile>
1482 <Optimization>Disabled</Optimization>
1483 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1484 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1485 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1486 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1487 <WarningLevel>Level4</WarningLevel>
1488 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1489 </ClCompile>
1490 <ResourceCompile>
1491 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1492 <Culture>0x0409</Culture>
1493 </ResourceCompile>
1494 <Link>
1495 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1496 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1497 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1498 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1499 <GenerateDebugInformation>true</GenerateDebugInformation>
1500 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1501 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1502 <TargetMachine>MachineX86</TargetMachine>
1503 </Link>
1504 </ItemDefinitionGroup>
1505 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1506 <Midl>
1507 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1508 <MkTypLibCompatible>true</MkTypLibCompatible>
1509 <TargetEnvironment>Win32</TargetEnvironment>
1510 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1511 <HeaderFileName>
1512 </HeaderFileName>
1513 </Midl>
1514 <ClCompile>
1515 <Optimization>Disabled</Optimization>
1516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1517 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1520 <WarningLevel>Level4</WarningLevel>
1521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1522 </ClCompile>
1523 <ResourceCompile>
1524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1525 <Culture>0x0409</Culture>
1526 </ResourceCompile>
1527 <Link>
1528 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1529 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1530 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1531 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1532 <GenerateDebugInformation>true</GenerateDebugInformation>
1533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1534 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1535 <TargetMachine>MachineX86</TargetMachine>
1536 </Link>
1537 </ItemDefinitionGroup>
1538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1539 <Midl>
1540 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1541 <MkTypLibCompatible>true</MkTypLibCompatible>
1542 <TargetEnvironment>X64</TargetEnvironment>
1543 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1544 <HeaderFileName>
1545 </HeaderFileName>
1546 </Midl>
1547 <ClCompile>
1548 <Optimization>Disabled</Optimization>
1549 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1550 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1551 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1552 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1553 <WarningLevel>Level4</WarningLevel>
1554 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1555 </ClCompile>
1556 <ResourceCompile>
1557 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1558 <Culture>0x0409</Culture>
1559 </ResourceCompile>
1560 <Link>
1561 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1562 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1563 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1564 <GenerateDebugInformation>true</GenerateDebugInformation>
1565 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1566 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1567 <TargetMachine>MachineX64</TargetMachine>
1568 </Link>
1569 </ItemDefinitionGroup>
1570 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1571 <Midl>
1572 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1573 <MkTypLibCompatible>true</MkTypLibCompatible>
1574 <TargetEnvironment>X64</TargetEnvironment>
1575 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1576 <HeaderFileName>
1577 </HeaderFileName>
1578 </Midl>
1579 <ClCompile>
1580 <Optimization>Disabled</Optimization>
1581 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1582 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1583 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1584 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1585 <WarningLevel>Level4</WarningLevel>
1586 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1587 </ClCompile>
1588 <ResourceCompile>
1589 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1590 <Culture>0x0409</Culture>
1591 </ResourceCompile>
1592 <Link>
1593 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1594 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1595 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1596 <GenerateDebugInformation>true</GenerateDebugInformation>
1597 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1598 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1599 <TargetMachine>MachineX64</TargetMachine>
1600 </Link>
1601 </ItemDefinitionGroup>
1602 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1603 <Midl>
1604 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1605 <MkTypLibCompatible>true</MkTypLibCompatible>
1606 <TargetEnvironment>Win32</TargetEnvironment>
1607 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1608 <HeaderFileName>
1609 </HeaderFileName>
1610 </Midl>
1611 <ClCompile>
1612 <Optimization>MaxSpeed</Optimization>
1613 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1614 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1615 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1616 <StringPooling>true</StringPooling>
1617 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1618 <FunctionLevelLinking>true</FunctionLevelLinking>
1619 <WarningLevel>Level4</WarningLevel>
1620 </ClCompile>
1621 <ResourceCompile>
1622 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1623 <Culture>0x0409</Culture>
1624 </ResourceCompile>
1625 <Link>
1626 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1627 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1628 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1629 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1630 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1631 <TargetMachine>MachineX86</TargetMachine>
1632 </Link>
1633 </ItemDefinitionGroup>
1634 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1635 <Midl>
1636 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1637 <MkTypLibCompatible>true</MkTypLibCompatible>
1638 <TargetEnvironment>Win32</TargetEnvironment>
1639 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1640 <HeaderFileName>
1641 </HeaderFileName>
1642 </Midl>
1643 <ClCompile>
1644 <Optimization>MaxSpeed</Optimization>
1645 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1646 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1647 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1648 <StringPooling>true</StringPooling>
1649 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1650 <FunctionLevelLinking>true</FunctionLevelLinking>
1651 <WarningLevel>Level4</WarningLevel>
1652 </ClCompile>
1653 <ResourceCompile>
1654 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1655 <Culture>0x0409</Culture>
1656 </ResourceCompile>
1657 <Link>
1658 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1659 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1660 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1661 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1662 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1663 <TargetMachine>MachineX86</TargetMachine>
1664 </Link>
1665 </ItemDefinitionGroup>
1666 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1667 <Midl>
1668 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1669 <MkTypLibCompatible>true</MkTypLibCompatible>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 </ResourceCompile>
1689 <Link>
1690 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1691 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1692 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1693 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1694 <TargetMachine>MachineX64</TargetMachine>
1695 </Link>
1696 </ItemDefinitionGroup>
1697 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1698 <Midl>
1699 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1700 <MkTypLibCompatible>true</MkTypLibCompatible>
1701 <TargetEnvironment>X64</TargetEnvironment>
1702 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1703 <HeaderFileName>
1704 </HeaderFileName>
1705 </Midl>
1706 <ClCompile>
1707 <Optimization>MaxSpeed</Optimization>
1708 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1709 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1710 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1711 <StringPooling>true</StringPooling>
1712 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1713 <FunctionLevelLinking>true</FunctionLevelLinking>
1714 <WarningLevel>Level4</WarningLevel>
1715 </ClCompile>
1716 <ResourceCompile>
1717 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1718 <Culture>0x0409</Culture>
1719 </ResourceCompile>
1720 <Link>
1721 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;%(AdditionalDependencies)</AdditionalDependencies>
1722 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1723 <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1724 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1725 <TargetMachine>MachineX64</TargetMachine>
1726 </Link>
1727 </ItemDefinitionGroup>
1728 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1729 <Midl>
1730 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1731 <MkTypLibCompatible>true</MkTypLibCompatible>
1732 <TargetEnvironment>Win32</TargetEnvironment>
1733 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1734 <HeaderFileName>
1735 </HeaderFileName>
1736 </Midl>
1737 <ClCompile>
1738 <Optimization>Disabled</Optimization>
1739 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1740 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1741 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1742 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1743 <WarningLevel>Level4</WarningLevel>
1744 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1745 </ClCompile>
1746 <ResourceCompile>
1747 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1748 <Culture>0x0409</Culture>
1749 </ResourceCompile>
1750 <Link>
1751 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1752 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1753 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC17\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1754 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1755 <GenerateDebugInformation>true</GenerateDebugInformation>
1756 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1757 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1758 <TargetMachine>MachineX86</TargetMachine>
1759 </Link>
1760 </ItemDefinitionGroup>
1761 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1762 <Midl>
1763 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1764 <MkTypLibCompatible>true</MkTypLibCompatible>
1765 <TargetEnvironment>X64</TargetEnvironment>
1766 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1767 <HeaderFileName>
1768 </HeaderFileName>
1769 </Midl>
1770 <ClCompile>
1771 <Optimization>Disabled</Optimization>
1772 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1773 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1774 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1775 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1776 <WarningLevel>Level4</WarningLevel>
1777 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1778 </ClCompile>
1779 <ResourceCompile>
1780 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1781 <Culture>0x0409</Culture>
1782 </ResourceCompile>
1783 <Link>
1784 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
1785 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1786 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC17\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1787 <GenerateDebugInformation>true</GenerateDebugInformation>
1788 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1789 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1790 <TargetMachine>MachineX64</TargetMachine>
1791 </Link>
1792 </ItemDefinitionGroup>
1793 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1794 <Midl>
1795 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1796 <MkTypLibCompatible>true</MkTypLibCompatible>
1797 <TargetEnvironment>Win32</TargetEnvironment>
1798 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1799 <HeaderFileName>
1800 </HeaderFileName>
1801 </Midl>
1802 <ClCompile>
1803 <Optimization>MaxSpeed</Optimization>
1804 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1805 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1806 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1807 <StringPooling>true</StringPooling>
1808 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1809 <FunctionLevelLinking>true</FunctionLevelLinking>
1810 <WarningLevel>Level4</WarningLevel>
1811 </ClCompile>
1812 <ResourceCompile>
1813 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1814 <Culture>0x0409</Culture>
1815 </ResourceCompile>
1816 <Link>
1817 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1818 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1819 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win32\VC17\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1820 <ManifestFile>$(IntDir)$(TargetFileName).intermediate.manifest</ManifestFile>
1821 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1822 <TargetMachine>MachineX86</TargetMachine>
1823 </Link>
1824 </ItemDefinitionGroup>
1825 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1826 <Midl>
1827 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1828 <MkTypLibCompatible>true</MkTypLibCompatible>
1829 <TargetEnvironment>X64</TargetEnvironment>
1830 <TypeLibraryName>$(OutDir)$(ProjectName).tlb</TypeLibraryName>
1831 <HeaderFileName>
1832 </HeaderFileName>
1833 </Midl>
1834 <ClCompile>
1835 <Optimization>MaxSpeed</Optimization>
1836 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1837 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1838 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1839 <StringPooling>true</StringPooling>
1840 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1841 <FunctionLevelLinking>true</FunctionLevelLinking>
1842 <WarningLevel>Level4</WarningLevel>
1843 </ClCompile>
1844 <ResourceCompile>
1845 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1846 <Culture>0x0409</Culture>
1847 </ResourceCompile>
1848 <Link>
1849 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
1850 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1851 <AdditionalLibraryDirectories>..\..\..\..\..\openssl\build\Win64\VC17\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1852 <ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
1853 <TargetMachine>MachineX64</TargetMachine>
1854 </Link>
1855 </ItemDefinitionGroup>
1856 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
1857 <ClCompile>
1858 <Optimization>Disabled</Optimization>
1859 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1860 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1861 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1862 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1863 <WarningLevel>Level4</WarningLevel>
1864 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1865 </ClCompile>
1866 <ResourceCompile>
1867 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1868 <Culture>0x0409</Culture>
1869 </ResourceCompile>
1870 <Lib>
1871 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1872 <TargetMachine>MachineX86</TargetMachine>
1873 </Lib>
1874 </ItemDefinitionGroup>
1875 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
1876 <Midl>
1877 <TargetEnvironment>X64</TargetEnvironment>
1878 </Midl>
1879 <ClCompile>
1880 <Optimization>Disabled</Optimization>
1881 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1882 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1883 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1884 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1885 <WarningLevel>Level4</WarningLevel>
1886 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1887 </ClCompile>
1888 <ResourceCompile>
1889 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1890 <Culture>0x0409</Culture>
1891 </ResourceCompile>
1892 <Lib>
1893 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1894 <TargetMachine>MachineX64</TargetMachine>
1895 </Lib>
1896 </ItemDefinitionGroup>
1897 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1898 <ClCompile>
1899 <Optimization>Disabled</Optimization>
1900 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1901 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1902 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1903 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1904 <WarningLevel>Level4</WarningLevel>
1905 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1906 </ClCompile>
1907 <ResourceCompile>
1908 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1909 <Culture>0x0409</Culture>
1910 </ResourceCompile>
1911 <Lib>
1912 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1913 <TargetMachine>MachineX86</TargetMachine>
1914 </Lib>
1915 </ItemDefinitionGroup>
1916 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1917 <Midl>
1918 <TargetEnvironment>X64</TargetEnvironment>
1919 </Midl>
1920 <ClCompile>
1921 <Optimization>Disabled</Optimization>
1922 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1923 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1924 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1925 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1926 <WarningLevel>Level4</WarningLevel>
1927 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1928 </ClCompile>
1929 <ResourceCompile>
1930 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1931 <Culture>0x0409</Culture>
1932 </ResourceCompile>
1933 <Lib>
1934 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1935 <TargetMachine>MachineX64</TargetMachine>
1936 </Lib>
1937 </ItemDefinitionGroup>
1938 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
1939 <ClCompile>
1940 <Optimization>Disabled</Optimization>
1941 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1942 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1943 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1944 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1945 <WarningLevel>Level4</WarningLevel>
1946 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1947 </ClCompile>
1948 <ResourceCompile>
1949 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1950 <Culture>0x0409</Culture>
1951 </ResourceCompile>
1952 <Lib>
1953 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1954 <TargetMachine>MachineX86</TargetMachine>
1955 </Lib>
1956 </ItemDefinitionGroup>
1957 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1958 <ClCompile>
1959 <Optimization>Disabled</Optimization>
1960 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1961 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1962 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1963 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1964 <WarningLevel>Level4</WarningLevel>
1965 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1966 </ClCompile>
1967 <ResourceCompile>
1968 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1969 <Culture>0x0409</Culture>
1970 </ResourceCompile>
1971 <Lib>
1972 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1973 <TargetMachine>MachineX86</TargetMachine>
1974 </Lib>
1975 </ItemDefinitionGroup>
1976 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
1977 <Midl>
1978 <TargetEnvironment>X64</TargetEnvironment>
1979 </Midl>
1980 <ClCompile>
1981 <Optimization>Disabled</Optimization>
1982 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1983 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1985 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1986 <WarningLevel>Level4</WarningLevel>
1987 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1988 </ClCompile>
1989 <ResourceCompile>
1990 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1991 <Culture>0x0409</Culture>
1992 </ResourceCompile>
1993 <Lib>
1994 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1995 <TargetMachine>MachineX64</TargetMachine>
1996 </Lib>
1997 </ItemDefinitionGroup>
1998 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1999 <Midl>
2000 <TargetEnvironment>X64</TargetEnvironment>
2001 </Midl>
2002 <ClCompile>
2003 <Optimization>Disabled</Optimization>
2004 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2005 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2006 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2007 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2008 <WarningLevel>Level4</WarningLevel>
2009 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2010 </ClCompile>
2011 <ResourceCompile>
2012 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2013 <Culture>0x0409</Culture>
2014 </ResourceCompile>
2015 <Lib>
2016 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2017 <TargetMachine>MachineX64</TargetMachine>
2018 </Lib>
2019 </ItemDefinitionGroup>
2020 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
2021 <ClCompile>
2022 <Optimization>Disabled</Optimization>
2023 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2024 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2025 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2026 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2027 <WarningLevel>Level4</WarningLevel>
2028 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2029 </ClCompile>
2030 <ResourceCompile>
2031 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2032 <Culture>0x0409</Culture>
2033 </ResourceCompile>
2034 <Lib>
2035 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2036 <TargetMachine>MachineX86</TargetMachine>
2037 </Lib>
2038 </ItemDefinitionGroup>
2039 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
2040 <Midl>
2041 <TargetEnvironment>X64</TargetEnvironment>
2042 </Midl>
2043 <ClCompile>
2044 <Optimization>Disabled</Optimization>
2045 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\LIB Debug\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2046 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2047 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2048 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2049 <WarningLevel>Level4</WarningLevel>
2050 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2051 </ClCompile>
2052 <ResourceCompile>
2053 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2054 <Culture>0x0409</Culture>
2055 </ResourceCompile>
2056 <Lib>
2057 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2058 <TargetMachine>MachineX64</TargetMachine>
2059 </Lib>
2060 </ItemDefinitionGroup>
2061 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 </ResourceCompile>
2075 <Lib>
2076 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2077 <TargetMachine>MachineX86</TargetMachine>
2078 </Lib>
2079 </ItemDefinitionGroup>
2080 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2081 <Midl>
2082 <TargetEnvironment>X64</TargetEnvironment>
2083 </Midl>
2084 <ClCompile>
2085 <Optimization>Disabled</Optimization>
2086 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\LIB Debug\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2087 <PreprocessorDefinitions>_DEBUG;BUILDING_LIBCURL;DEBUGBUILD;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2088 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2089 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2090 <WarningLevel>Level4</WarningLevel>
2091 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2092 </ClCompile>
2093 <ResourceCompile>
2094 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2095 <Culture>0x0409</Culture>
2096 </ResourceCompile>
2097 <Lib>
2098 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2099 <TargetMachine>MachineX64</TargetMachine>
2100 </Lib>
2101 </ItemDefinitionGroup>
2102 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2103 <ClCompile>
2104 <Optimization>MaxSpeed</Optimization>
2105 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2106 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2107 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2108 <StringPooling>true</StringPooling>
2109 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2110 <FunctionLevelLinking>true</FunctionLevelLinking>
2111 <WarningLevel>Level4</WarningLevel>
2112 </ClCompile>
2113 <ResourceCompile>
2114 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2115 <Culture>0x0409</Culture>
2116 </ResourceCompile>
2117 <Lib>
2118 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2119 <TargetMachine>MachineX86</TargetMachine>
2120 </Lib>
2121 </ItemDefinitionGroup>
2122 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2123 <Midl>
2124 <TargetEnvironment>X64</TargetEnvironment>
2125 </Midl>
2126 <ClCompile>
2127 <Optimization>MaxSpeed</Optimization>
2128 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2129 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2130 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2131 <StringPooling>true</StringPooling>
2132 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2133 <FunctionLevelLinking>true</FunctionLevelLinking>
2134 <WarningLevel>Level4</WarningLevel>
2135 </ClCompile>
2136 <ResourceCompile>
2137 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2138 <Culture>0x0409</Culture>
2139 </ResourceCompile>
2140 <Lib>
2141 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2142 <TargetMachine>MachineX64</TargetMachine>
2143 </Lib>
2144 </ItemDefinitionGroup>
2145 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2146 <ClCompile>
2147 <Optimization>MaxSpeed</Optimization>
2148 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2149 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2150 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2151 <StringPooling>true</StringPooling>
2152 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2153 <FunctionLevelLinking>true</FunctionLevelLinking>
2154 <WarningLevel>Level4</WarningLevel>
2155 </ClCompile>
2156 <ResourceCompile>
2157 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <Culture>0x0409</Culture>
2159 </ResourceCompile>
2160 <Lib>
2161 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2162 <TargetMachine>MachineX86</TargetMachine>
2163 </Lib>
2164 </ItemDefinitionGroup>
2165 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2166 <Midl>
2167 <TargetEnvironment>X64</TargetEnvironment>
2168 </Midl>
2169 <ClCompile>
2170 <Optimization>MaxSpeed</Optimization>
2171 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2172 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\DLL Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2173 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2174 <StringPooling>true</StringPooling>
2175 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2176 <FunctionLevelLinking>true</FunctionLevelLinking>
2177 <WarningLevel>Level4</WarningLevel>
2178 </ClCompile>
2179 <ResourceCompile>
2180 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2181 <Culture>0x0409</Culture>
2182 </ResourceCompile>
2183 <Lib>
2184 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2185 <TargetMachine>MachineX64</TargetMachine>
2186 </Lib>
2187 </ItemDefinitionGroup>
2188 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2189 <ClCompile>
2190 <Optimization>MaxSpeed</Optimization>
2191 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2192 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2193 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2194 <StringPooling>true</StringPooling>
2195 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2196 <FunctionLevelLinking>true</FunctionLevelLinking>
2197 <WarningLevel>Level4</WarningLevel>
2198 </ClCompile>
2199 <ResourceCompile>
2200 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2201 <Culture>0x0409</Culture>
2202 </ResourceCompile>
2203 <Lib>
2204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2205 <TargetMachine>MachineX86</TargetMachine>
2206 </Lib>
2207 </ItemDefinitionGroup>
2208 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2209 <ClCompile>
2210 <Optimization>MaxSpeed</Optimization>
2211 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2212 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2213 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2214 <StringPooling>true</StringPooling>
2215 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2216 <FunctionLevelLinking>true</FunctionLevelLinking>
2217 <WarningLevel>Level4</WarningLevel>
2218 </ClCompile>
2219 <ResourceCompile>
2220 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2221 <Culture>0x0409</Culture>
2222 </ResourceCompile>
2223 <Lib>
2224 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2225 <TargetMachine>MachineX86</TargetMachine>
2226 </Lib>
2227 </ItemDefinitionGroup>
2228 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2229 <Midl>
2230 <TargetEnvironment>X64</TargetEnvironment>
2231 </Midl>
2232 <ClCompile>
2233 <Optimization>MaxSpeed</Optimization>
2234 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2235 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2236 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2237 <StringPooling>true</StringPooling>
2238 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2239 <FunctionLevelLinking>true</FunctionLevelLinking>
2240 <WarningLevel>Level4</WarningLevel>
2241 </ClCompile>
2242 <ResourceCompile>
2243 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2244 <Culture>0x0409</Culture>
2245 </ResourceCompile>
2246 <Lib>
2247 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2248 <TargetMachine>MachineX64</TargetMachine>
2249 </Lib>
2250 </ItemDefinitionGroup>
2251 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2252 <Midl>
2253 <TargetEnvironment>X64</TargetEnvironment>
2254 </Midl>
2255 <ClCompile>
2256 <Optimization>MaxSpeed</Optimization>
2257 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2258 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2259 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_WINDOWS_SSPI;USE_SCHANNEL;USE_WIN32_IDN;USE_IPV6;WANT_IDN_PROTOTYPES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2260 <StringPooling>true</StringPooling>
2261 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2262 <FunctionLevelLinking>true</FunctionLevelLinking>
2263 <WarningLevel>Level4</WarningLevel>
2264 </ClCompile>
2265 <ResourceCompile>
2266 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2267 <Culture>0x0409</Culture>
2268 </ResourceCompile>
2269 <Lib>
2270 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2271 <TargetMachine>MachineX64</TargetMachine>
2272 </Lib>
2273 </ItemDefinitionGroup>
2274 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
2275 <ClCompile>
2276 <Optimization>MaxSpeed</Optimization>
2277 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2278 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2279 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2280 <StringPooling>true</StringPooling>
2281 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2282 <FunctionLevelLinking>true</FunctionLevelLinking>
2283 <WarningLevel>Level4</WarningLevel>
2284 </ClCompile>
2285 <ResourceCompile>
2286 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2287 <Culture>0x0409</Culture>
2288 </ResourceCompile>
2289 <Lib>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <TargetMachine>MachineX86</TargetMachine>
2292 </Lib>
2293 </ItemDefinitionGroup>
2294 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2295 <Midl>
2296 <TargetEnvironment>X64</TargetEnvironment>
2297 </Midl>
2298 <ClCompile>
2299 <Optimization>MaxSpeed</Optimization>
2300 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2301 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\LIB Release\include;..\..\..\..\..\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2302 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_IPV6;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2303 <StringPooling>true</StringPooling>
2304 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2305 <FunctionLevelLinking>true</FunctionLevelLinking>
2306 <WarningLevel>Level4</WarningLevel>
2307 </ClCompile>
2308 <ResourceCompile>
2309 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2310 <Culture>0x0409</Culture>
2311 </ResourceCompile>
2312 <Lib>
2313 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2314 <TargetMachine>MachineX64</TargetMachine>
2315 </Lib>
2316 </ItemDefinitionGroup>
2317 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2318 <ClCompile>
2319 <Optimization>MaxSpeed</Optimization>
2320 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2321 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win32\VC17\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2322 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2323 <StringPooling>true</StringPooling>
2324 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2325 <FunctionLevelLinking>true</FunctionLevelLinking>
2326 <WarningLevel>Level4</WarningLevel>
2327 </ClCompile>
2328 <ResourceCompile>
2329 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2330 <Culture>0x0409</Culture>
2331 </ResourceCompile>
2332 <Lib>
2333 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2334 <TargetMachine>MachineX86</TargetMachine>
2335 </Lib>
2336 </ItemDefinitionGroup>
2337 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2338 <Midl>
2339 <TargetEnvironment>X64</TargetEnvironment>
2340 </Midl>
2341 <ClCompile>
2342 <Optimization>MaxSpeed</Optimization>
2343 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2344 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;..\..\..\..\..\openssl\include\..\build\Win64\VC17\LIB Release\include;..\..\..\..\..\openssl\include;..\..\..\..\..\libssh2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2345 <PreprocessorDefinitions>NDEBUG;BUILDING_LIBCURL;CURL_STATICLIB;USE_OPENSSL;USE_LIBSSH2;USE_IPV6;HAVE_LIBSSH2_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2346 <StringPooling>true</StringPooling>
2347 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2348 <FunctionLevelLinking>true</FunctionLevelLinking>
2349 <WarningLevel>Level4</WarningLevel>
2350 </ClCompile>
2351 <ResourceCompile>
2352 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2353 <Culture>0x0409</Culture>
2354 </ResourceCompile>
2355 <Lib>
2356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2357 <TargetMachine>MachineX64</TargetMachine>
2358 </Lib>
2359 </ItemDefinitionGroup>
2360 <ItemGroup>
2361 <ClCompile Include="..\..\..\..\lib\altsvc.c" />
2362 <ClCompile Include="..\..\..\..\lib\amigaos.c" />
2363 <ClCompile Include="..\..\..\..\lib\asyn-ares.c" />
2364 <ClCompile Include="..\..\..\..\lib\asyn-thread.c" />
2365 <ClCompile Include="..\..\..\..\lib\base64.c" />
2366 <ClCompile Include="..\..\..\..\lib\bufref.c" />
2367 <ClCompile Include="..\..\..\..\lib\c-hyper.c" />
2368 <ClCompile Include="..\..\..\..\lib\conncache.c" />
2369 <ClCompile Include="..\..\..\..\lib\connect.c" />
2370 <ClCompile Include="..\..\..\..\lib\content_encoding.c" />
2371 <ClCompile Include="..\..\..\..\lib\cookie.c" />
2372 <ClCompile Include="..\..\..\..\lib\curl_addrinfo.c" />
2373 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2374 <ClCompile Include="..\..\..\..\lib\curl_des.c" />
2375 <ClCompile Include="..\..\..\..\lib\curl_endian.c" />
2376 <ClCompile Include="..\..\..\..\lib\curl_fnmatch.c" />
2377 <ClCompile Include="..\..\..\..\lib\curl_gethostname.c" />
2378 <ClCompile Include="..\..\..\..\lib\curl_get_line.c" />
2379 <ClCompile Include="..\..\..\..\lib\curl_gssapi.c" />
2380 <ClCompile Include="..\..\..\..\lib\curl_memrchr.c" />
2381 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2382 <ClCompile Include="..\..\..\..\lib\curl_ntlm_core.c" />
2383 <ClCompile Include="..\..\..\..\lib\curl_ntlm_wb.c" />
2384 <ClCompile Include="..\..\..\..\lib\curl_path.c" />
2385 <ClCompile Include="..\..\..\..\lib\curl_range.c" />
2386 <ClCompile Include="..\..\..\..\lib\curl_rtmp.c" />
2387 <ClCompile Include="..\..\..\..\lib\curl_sasl.c" />
2388 <ClCompile Include="..\..\..\..\lib\curl_sspi.c" />
2389 <ClCompile Include="..\..\..\..\lib\curl_threads.c" />
2390 <ClCompile Include="..\..\..\..\lib\dict.c" />
2391 <ClCompile Include="..\..\..\..\lib\doh.c" />
2392 <ClCompile Include="..\..\..\..\lib\dotdot.c" />
2393 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2394 <ClCompile Include="..\..\..\..\lib\easy.c" />
2395 <ClCompile Include="..\..\..\..\lib\easygetopt.c" />
2396 <ClCompile Include="..\..\..\..\lib\easyoptions.c" />
2397 <ClCompile Include="..\..\..\..\lib\escape.c" />
2398 <ClCompile Include="..\..\..\..\lib\file.c" />
2399 <ClCompile Include="..\..\..\..\lib\fileinfo.c" />
2400 <ClCompile Include="..\..\..\..\lib\formdata.c" />
2401 <ClCompile Include="..\..\..\..\lib\ftp.c" />
2402 <ClCompile Include="..\..\..\..\lib\ftplistparser.c" />
2403 <ClCompile Include="..\..\..\..\lib\getenv.c" />
2404 <ClCompile Include="..\..\..\..\lib\getinfo.c" />
2405 <ClCompile Include="..\..\..\..\lib\gopher.c" />
2406 <ClCompile Include="..\..\..\..\lib\h2h3.c" />
2407 <ClCompile Include="..\..\..\..\lib\hash.c" />
2408 <ClCompile Include="..\..\..\..\lib\hmac.c" />
2409 <ClCompile Include="..\..\..\..\lib\hostasyn.c" />
2410 <ClCompile Include="..\..\..\..\lib\hostip4.c" />
2411 <ClCompile Include="..\..\..\..\lib\hostip6.c" />
2412 <ClCompile Include="..\..\..\..\lib\hostip.c" />
2413 <ClCompile Include="..\..\..\..\lib\hostsyn.c" />
2414 <ClCompile Include="..\..\..\..\lib\hsts.c" />
2415 <ClCompile Include="..\..\..\..\lib\http2.c" />
2416 <ClCompile Include="..\..\..\..\lib\http_aws_sigv4.c" />
2417 <ClCompile Include="..\..\..\..\lib\http.c" />
2418 <ClCompile Include="..\..\..\..\lib\http_chunks.c" />
2419 <ClCompile Include="..\..\..\..\lib\http_digest.c" />
2420 <ClCompile Include="..\..\..\..\lib\http_negotiate.c" />
2421 <ClCompile Include="..\..\..\..\lib\http_ntlm.c" />
2422 <ClCompile Include="..\..\..\..\lib\http_proxy.c" />
2423 <ClCompile Include="..\..\..\..\lib\idn_win32.c" />
2424 <ClCompile Include="..\..\..\..\lib\if2ip.c" />
2425 <ClCompile Include="..\..\..\..\lib\imap.c" />
2426 <ClCompile Include="..\..\..\..\lib\inet_ntop.c" />
2427 <ClCompile Include="..\..\..\..\lib\inet_pton.c" />
2428 <ClCompile Include="..\..\..\..\lib\krb5.c" />
2429 <ClCompile Include="..\..\..\..\lib\ldap.c" />
2430 <ClCompile Include="..\..\..\..\lib\llist.c" />
2431 <ClCompile Include="..\..\..\..\lib\md4.c" />
2432 <ClCompile Include="..\..\..\..\lib\md5.c" />
2433 <ClCompile Include="..\..\..\..\lib\memdebug.c" />
2434 <ClCompile Include="..\..\..\..\lib\mime.c" />
2435 <ClCompile Include="..\..\..\..\lib\mprintf.c" />
2436 <ClCompile Include="..\..\..\..\lib\mqtt.c" />
2437 <ClCompile Include="..\..\..\..\lib\multi.c" />
2438 <ClCompile Include="..\..\..\..\lib\netrc.c" />
2439 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2440 <ClCompile Include="..\..\..\..\lib\openldap.c" />
2441 <ClCompile Include="..\..\..\..\lib\parsedate.c" />
2442 <ClCompile Include="..\..\..\..\lib\pingpong.c" />
2443 <ClCompile Include="..\..\..\..\lib\pop3.c" />
2444 <ClCompile Include="..\..\..\..\lib\progress.c" />
2445 <ClCompile Include="..\..\..\..\lib\psl.c" />
2446 <ClCompile Include="..\..\..\..\lib\rand.c" />
2447 <ClCompile Include="..\..\..\..\lib\rename.c" />
2448 <ClCompile Include="..\..\..\..\lib\rtsp.c" />
2449 <ClCompile Include="..\..\..\..\lib\select.c" />
2450 <ClCompile Include="..\..\..\..\lib\sendf.c" />
2451 <ClCompile Include="..\..\..\..\lib\setopt.c" />
2452 <ClCompile Include="..\..\..\..\lib\sha256.c" />
2453 <ClCompile Include="..\..\..\..\lib\share.c" />
2454 <ClCompile Include="..\..\..\..\lib\slist.c" />
2455 <ClCompile Include="..\..\..\..\lib\smb.c" />
2456 <ClCompile Include="..\..\..\..\lib\smtp.c" />
2457 <ClCompile Include="..\..\..\..\lib\socketpair.c" />
2458 <ClCompile Include="..\..\..\..\lib\socks.c" />
2459 <ClCompile Include="..\..\..\..\lib\socks_gssapi.c" />
2460 <ClCompile Include="..\..\..\..\lib\socks_sspi.c" />
2461 <ClCompile Include="..\..\..\..\lib\speedcheck.c" />
2462 <ClCompile Include="..\..\..\..\lib\splay.c" />
2463 <ClCompile Include="..\..\..\..\lib\strcase.c" />
2464 <ClCompile Include="..\..\..\..\lib\strdup.c" />
2465 <ClCompile Include="..\..\..\..\lib\strerror.c" />
2466 <ClCompile Include="..\..\..\..\lib\strtok.c" />
2467 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2468 <ClCompile Include="..\..\..\..\lib\system_win32.c" />
2469 <ClCompile Include="..\..\..\..\lib\telnet.c" />
2470 <ClCompile Include="..\..\..\..\lib\tftp.c" />
2471 <ClCompile Include="..\..\..\..\lib\timeval.c" />
2472 <ClCompile Include="..\..\..\..\lib\transfer.c" />
2473 <ClCompile Include="..\..\..\..\lib\urlapi.c" />
2474 <ClCompile Include="..\..\..\..\lib\url.c" />
2475 <ClCompile Include="..\..\..\..\lib\version.c" />
2476 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2477 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2478 <ClCompile Include="..\..\..\..\lib\wildcard.c" />
2479 <ClCompile Include="..\..\..\..\lib\vauth\cleartext.c" />
2480 <ClCompile Include="..\..\..\..\lib\vauth\cram.c" />
2481 <ClCompile Include="..\..\..\..\lib\vauth\digest.c" />
2482 <ClCompile Include="..\..\..\..\lib\vauth\digest_sspi.c" />
2483 <ClCompile Include="..\..\..\..\lib\vauth\gsasl.c" />
2484 <ClCompile Include="..\..\..\..\lib\vauth\krb5_gssapi.c" />
2485 <ClCompile Include="..\..\..\..\lib\vauth\krb5_sspi.c" />
2486 <ClCompile Include="..\..\..\..\lib\vauth\ntlm.c" />
2487 <ClCompile Include="..\..\..\..\lib\vauth\ntlm_sspi.c" />
2488 <ClCompile Include="..\..\..\..\lib\vauth\oauth2.c" />
2489 <ClCompile Include="..\..\..\..\lib\vauth\spnego_gssapi.c" />
2490 <ClCompile Include="..\..\..\..\lib\vauth\spnego_sspi.c" />
2491 <ClCompile Include="..\..\..\..\lib\vauth\vauth.c" />
2492 <ClCompile Include="..\..\..\..\lib\vquic\ngtcp2.c" />
2493 <ClCompile Include="..\..\..\..\lib\vquic\quiche.c" />
2494 <ClCompile Include="..\..\..\..\lib\vquic\vquic.c" />
2495 <ClCompile Include="..\..\..\..\lib\vssh\libssh2.c" />
2496 <ClCompile Include="..\..\..\..\lib\vssh\libssh.c" />
2497 <ClCompile Include="..\..\..\..\lib\vssh\wolfssh.c" />
2498 <ClCompile Include="..\..\..\..\lib\vtls\bearssl.c" />
2499 <ClCompile Include="..\..\..\..\lib\vtls\gskit.c" />
2500 <ClCompile Include="..\..\..\..\lib\vtls\gtls.c" />
2501 <ClCompile Include="..\..\..\..\lib\vtls\hostcheck.c" />
2502 <ClCompile Include="..\..\..\..\lib\vtls\keylog.c" />
2503 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls.c" />
2504 <ClCompile Include="..\..\..\..\lib\vtls\mbedtls_threadlock.c" />
2505 <ClCompile Include="..\..\..\..\lib\vtls\nss.c" />
2506 <ClCompile Include="..\..\..\..\lib\vtls\openssl.c" />
2507 <ClCompile Include="..\..\..\..\lib\vtls\rustls.c" />
2508 <ClCompile Include="..\..\..\..\lib\vtls\schannel.c" />
2509 <ClCompile Include="..\..\..\..\lib\vtls\schannel_verify.c" />
2510 <ClCompile Include="..\..\..\..\lib\vtls\sectransp.c" />
2511 <ClCompile Include="..\..\..\..\lib\vtls\vtls.c" />
2512 <ClCompile Include="..\..\..\..\lib\vtls\wolfssl.c" />
2513 <ClCompile Include="..\..\..\..\lib\vtls\x509asn1.c" />
2514 </ItemGroup>
2515 <ItemGroup>
2516 <ClInclude Include="..\..\..\..\lib\altsvc.h" />
2517 <ClInclude Include="..\..\..\..\lib\amigaos.h" />
2518 <ClInclude Include="..\..\..\..\lib\arpa_telnet.h" />
2519 <ClInclude Include="..\..\..\..\lib\asyn.h" />
2520 <ClInclude Include="..\..\..\..\lib\bufref.h" />
2521 <ClInclude Include="..\..\..\..\lib\c-hyper.h" />
2522 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2523 <ClInclude Include="..\..\..\..\lib\conncache.h" />
2524 <ClInclude Include="..\..\..\..\lib\connect.h" />
2525 <ClInclude Include="..\..\..\..\lib\content_encoding.h" />
2526 <ClInclude Include="..\..\..\..\lib\cookie.h" />
2527 <ClInclude Include="..\..\..\..\lib\curl_addrinfo.h" />
2528 <ClInclude Include="..\..\..\..\lib\curl_base64.h" />
2529 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2530 <ClInclude Include="..\..\..\..\lib\curl_des.h" />
2531 <ClInclude Include="..\..\..\..\lib\curl_endian.h" />
2532 <ClInclude Include="..\..\..\..\lib\curl_fnmatch.h" />
2533 <ClInclude Include="..\..\..\..\lib\curl_gethostname.h" />
2534 <ClInclude Include="..\..\..\..\lib\curl_get_line.h" />
2535 <ClInclude Include="..\..\..\..\lib\curl_gssapi.h" />
2536 <ClInclude Include="..\..\..\..\lib\curl_hmac.h" />
2537 <ClInclude Include="..\..\..\..\lib\curl_krb5.h" />
2538 <ClInclude Include="..\..\..\..\lib\curl_ldap.h" />
2539 <ClInclude Include="..\..\..\..\lib\curl_md4.h" />
2540 <ClInclude Include="..\..\..\..\lib\curl_md5.h" />
2541 <ClInclude Include="..\..\..\..\lib\curl_memory.h" />
2542 <ClInclude Include="..\..\..\..\lib\curl_memrchr.h" />
2543 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2544 <ClInclude Include="..\..\..\..\lib\curl_ntlm_core.h" />
2545 <ClInclude Include="..\..\..\..\lib\curl_ntlm_wb.h" />
2546 <ClInclude Include="..\..\..\..\lib\curl_path.h" />
2547 <ClInclude Include="..\..\..\..\lib\curl_printf.h" />
2548 <ClInclude Include="..\..\..\..\lib\curl_range.h" />
2549 <ClInclude Include="..\..\..\..\lib\curl_rtmp.h" />
2550 <ClInclude Include="..\..\..\..\lib\curl_sasl.h" />
2551 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2552 <ClInclude Include="..\..\..\..\lib\curl_setup_once.h" />
2553 <ClInclude Include="..\..\..\..\lib\curl_sha256.h" />
2554 <ClInclude Include="..\..\..\..\lib\curl_sspi.h" />
2555 <ClInclude Include="..\..\..\..\lib\curl_threads.h" />
2556 <ClInclude Include="..\..\..\..\lib\curlx.h" />
2557 <ClInclude Include="..\..\..\..\lib\dict.h" />
2558 <ClInclude Include="..\..\..\..\lib\doh.h" />
2559 <ClInclude Include="..\..\..\..\lib\dotdot.h" />
2560 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2561 <ClInclude Include="..\..\..\..\lib\easyif.h" />
2562 <ClInclude Include="..\..\..\..\lib\easyoptions.h" />
2563 <ClInclude Include="..\..\..\..\lib\escape.h" />
2564 <ClInclude Include="..\..\..\..\lib\file.h" />
2565 <ClInclude Include="..\..\..\..\lib\fileinfo.h" />
2566 <ClInclude Include="..\..\..\..\lib\formdata.h" />
2567 <ClInclude Include="..\..\..\..\lib\ftp.h" />
2568 <ClInclude Include="..\..\..\..\lib\ftplistparser.h" />
2569 <ClInclude Include="..\..\..\..\lib\getinfo.h" />
2570 <ClInclude Include="..\..\..\..\lib\gopher.h" />
2571 <ClInclude Include="..\..\..\..\lib\h2h3.h" />
2572 <ClInclude Include="..\..\..\..\lib\hash.h" />
2573 <ClInclude Include="..\..\..\..\lib\hostip.h" />
2574 <ClInclude Include="..\..\..\..\lib\hsts.h" />
2575 <ClInclude Include="..\..\..\..\lib\http2.h" />
2576 <ClInclude Include="..\..\..\..\lib\http_aws_sigv4.h" />
2577 <ClInclude Include="..\..\..\..\lib\http_chunks.h" />
2578 <ClInclude Include="..\..\..\..\lib\http_digest.h" />
2579 <ClInclude Include="..\..\..\..\lib\http.h" />
2580 <ClInclude Include="..\..\..\..\lib\http_negotiate.h" />
2581 <ClInclude Include="..\..\..\..\lib\http_ntlm.h" />
2582 <ClInclude Include="..\..\..\..\lib\http_proxy.h" />
2583 <ClInclude Include="..\..\..\..\lib\if2ip.h" />
2584 <ClInclude Include="..\..\..\..\lib\imap.h" />
2585 <ClInclude Include="..\..\..\..\lib\inet_ntop.h" />
2586 <ClInclude Include="..\..\..\..\lib\inet_pton.h" />
2587 <ClInclude Include="..\..\..\..\lib\llist.h" />
2588 <ClInclude Include="..\..\..\..\lib\memdebug.h" />
2589 <ClInclude Include="..\..\..\..\lib\mime.h" />
2590 <ClInclude Include="..\..\..\..\lib\mqtt.h" />
2591 <ClInclude Include="..\..\..\..\lib\multihandle.h" />
2592 <ClInclude Include="..\..\..\..\lib\multiif.h" />
2593 <ClInclude Include="..\..\..\..\lib\netrc.h" />
2594 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2595 <ClInclude Include="..\..\..\..\lib\parsedate.h" />
2596 <ClInclude Include="..\..\..\..\lib\pingpong.h" />
2597 <ClInclude Include="..\..\..\..\lib\pop3.h" />
2598 <ClInclude Include="..\..\..\..\lib\progress.h" />
2599 <ClInclude Include="..\..\..\..\lib\psl.h" />
2600 <ClInclude Include="..\..\..\..\lib\quic.h" />
2601 <ClInclude Include="..\..\..\..\lib\rand.h" />
2602 <ClInclude Include="..\..\..\..\lib\rename.h" />
2603 <ClInclude Include="..\..\..\..\lib\rtsp.h" />
2604 <ClInclude Include="..\..\..\..\lib\select.h" />
2605 <ClInclude Include="..\..\..\..\lib\sendf.h" />
2606 <ClInclude Include="..\..\..\..\lib\setopt.h" />
2607 <ClInclude Include="..\..\..\..\lib\setup-vms.h" />
2608 <ClInclude Include="..\..\..\..\lib\share.h" />
2609 <ClInclude Include="..\..\..\..\lib\sigpipe.h" />
2610 <ClInclude Include="..\..\..\..\lib\slist.h" />
2611 <ClInclude Include="..\..\..\..\lib\smb.h" />
2612 <ClInclude Include="..\..\..\..\lib\smtp.h" />
2613 <ClInclude Include="..\..\..\..\lib\sockaddr.h" />
2614 <ClInclude Include="..\..\..\..\lib\socketpair.h" />
2615 <ClInclude Include="..\..\..\..\lib\socks.h" />
2616 <ClInclude Include="..\..\..\..\lib\speedcheck.h" />
2617 <ClInclude Include="..\..\..\..\lib\splay.h" />
2618 <ClInclude Include="..\..\..\..\lib\strcase.h" />
2619 <ClInclude Include="..\..\..\..\lib\strdup.h" />
2620 <ClInclude Include="..\..\..\..\lib\strerror.h" />
2621 <ClInclude Include="..\..\..\..\lib\strtok.h" />
2622 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2623 <ClInclude Include="..\..\..\..\lib\system_win32.h" />
2624 <ClInclude Include="..\..\..\..\lib\telnet.h" />
2625 <ClInclude Include="..\..\..\..\lib\tftp.h" />
2626 <ClInclude Include="..\..\..\..\lib\timeval.h" />
2627 <ClInclude Include="..\..\..\..\lib\transfer.h" />
2628 <ClInclude Include="..\..\..\..\lib\urlapi-int.h" />
2629 <ClInclude Include="..\..\..\..\lib\urldata.h" />
2630 <ClInclude Include="..\..\..\..\lib\url.h" />
2631 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2632 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2633 <ClInclude Include="..\..\..\..\lib\wildcard.h" />
2634 <ClInclude Include="..\..\..\..\lib\vauth\digest.h" />
2635 <ClInclude Include="..\..\..\..\lib\vauth\ntlm.h" />
2636 <ClInclude Include="..\..\..\..\lib\vauth\vauth.h" />
2637 <ClInclude Include="..\..\..\..\lib\vquic\ngtcp2.h" />
2638 <ClInclude Include="..\..\..\..\lib\vquic\quiche.h" />
2639 <ClInclude Include="..\..\..\..\lib\vquic\vquic.h" />
2640 <ClInclude Include="..\..\..\..\lib\vssh\ssh.h" />
2641 <ClInclude Include="..\..\..\..\lib\vtls\bearssl.h" />
2642 <ClInclude Include="..\..\..\..\lib\vtls\gskit.h" />
2643 <ClInclude Include="..\..\..\..\lib\vtls\gtls.h" />
2644 <ClInclude Include="..\..\..\..\lib\vtls\hostcheck.h" />
2645 <ClInclude Include="..\..\..\..\lib\vtls\keylog.h" />
2646 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls.h" />
2647 <ClInclude Include="..\..\..\..\lib\vtls\mbedtls_threadlock.h" />
2648 <ClInclude Include="..\..\..\..\lib\vtls\nssg.h" />
2649 <ClInclude Include="..\..\..\..\lib\vtls\openssl.h" />
2650 <ClInclude Include="..\..\..\..\lib\vtls\rustls.h" />
2651 <ClInclude Include="..\..\..\..\lib\vtls\schannel.h" />
2652 <ClInclude Include="..\..\..\..\lib\vtls\sectransp.h" />
2653 <ClInclude Include="..\..\..\..\lib\vtls\vtls.h" />
2654 <ClInclude Include="..\..\..\..\lib\vtls\wolfssl.h" />
2655 <ClInclude Include="..\..\..\..\lib\vtls\x509asn1.h" />
2656 </ItemGroup>
2657 <ItemGroup>
2658 <ResourceCompile Include="..\..\..\..\lib\libcurl.rc" />
2659 </ItemGroup>
2660 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2661 <ImportGroup Label="ExtensionTargets">
2662 </ImportGroup>
2663 </Project>
+0
-17
projects/Windows/VC17/lib/libcurl.vcxproj.filters less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
+0
-181
projects/Windows/VC17/src/curl.sln less more
0 Microsoft Visual Studio Solution File, Format Version 12.00
1 # Visual Studio 15
2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "curl.vcxproj", "{5228E9CE-A216-422F-A5E6-58E95E2DD71D}"
3 EndProject
4 Global
5 GlobalSection(SolutionConfigurationPlatforms) = preSolution
6 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
7 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
8 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32
9 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64
10 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
11 DLL Debug - DLL Windows SSPI - DLL WinIDN|x64 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
12 DLL Debug - DLL Windows SSPI|Win32 = DLL Debug - DLL Windows SSPI|Win32
13 DLL Debug - DLL Windows SSPI|x64 = DLL Debug - DLL Windows SSPI|x64
14 DLL Debug - DLL wolfSSL|Win32 = DLL Debug - DLL wolfSSL|Win32
15 DLL Debug - DLL wolfSSL|x64 = DLL Debug - DLL wolfSSL|x64
16 DLL Debug|Win32 = DLL Debug|Win32
17 DLL Debug|x64 = DLL Debug|x64
18 DLL Release - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
19 DLL Release - DLL OpenSSL - DLL LibSSH2|x64 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
20 DLL Release - DLL OpenSSL|Win32 = DLL Release - DLL OpenSSL|Win32
21 DLL Release - DLL OpenSSL|x64 = DLL Release - DLL OpenSSL|x64
22 DLL Release - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
23 DLL Release - DLL Windows SSPI - DLL WinIDN|x64 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
24 DLL Release - DLL Windows SSPI|Win32 = DLL Release - DLL Windows SSPI|Win32
25 DLL Release - DLL Windows SSPI|x64 = DLL Release - DLL Windows SSPI|x64
26 DLL Release - DLL wolfSSL|Win32 = DLL Release - DLL wolfSSL|Win32
27 DLL Release - DLL wolfSSL|x64 = DLL Release - DLL wolfSSL|x64
28 DLL Release|Win32 = DLL Release|Win32
29 DLL Release|x64 = DLL Release|x64
30 LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
31 LIB Debug - DLL OpenSSL - DLL LibSSH2|x64 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
32 LIB Debug - DLL OpenSSL|Win32 = LIB Debug - DLL OpenSSL|Win32
33 LIB Debug - DLL OpenSSL|x64 = LIB Debug - DLL OpenSSL|x64
34 LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
35 LIB Debug - DLL Windows SSPI - DLL WinIDN|x64 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
36 LIB Debug - DLL Windows SSPI|Win32 = LIB Debug - DLL Windows SSPI|Win32
37 LIB Debug - DLL Windows SSPI|x64 = LIB Debug - DLL Windows SSPI|x64
38 LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
39 LIB Debug - LIB OpenSSL - LIB LibSSH2|x64 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
40 LIB Debug - LIB OpenSSL|Win32 = LIB Debug - LIB OpenSSL|Win32
41 LIB Debug - LIB OpenSSL|x64 = LIB Debug - LIB OpenSSL|x64
42 LIB Debug - LIB wolfSSL|Win32 = LIB Debug - LIB wolfSSL|Win32
43 LIB Debug - LIB wolfSSL|x64 = LIB Debug - LIB wolfSSL|x64
44 LIB Debug|Win32 = LIB Debug|Win32
45 LIB Debug|x64 = LIB Debug|x64
46 LIB Release - DLL OpenSSL - DLL LibSSH2|Win32 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
47 LIB Release - DLL OpenSSL - DLL LibSSH2|x64 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
48 LIB Release - DLL OpenSSL|Win32 = LIB Release - DLL OpenSSL|Win32
49 LIB Release - DLL OpenSSL|x64 = LIB Release - DLL OpenSSL|x64
50 LIB Release - DLL Windows SSPI - DLL WinIDN|Win32 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
51 LIB Release - DLL Windows SSPI - DLL WinIDN|x64 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
52 LIB Release - DLL Windows SSPI|Win32 = LIB Release - DLL Windows SSPI|Win32
53 LIB Release - DLL Windows SSPI|x64 = LIB Release - DLL Windows SSPI|x64
54 LIB Release - LIB OpenSSL - LIB LibSSH2|Win32 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
55 LIB Release - LIB OpenSSL - LIB LibSSH2|x64 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
56 LIB Release - LIB OpenSSL|Win32 = LIB Release - LIB OpenSSL|Win32
57 LIB Release - LIB OpenSSL|x64 = LIB Release - LIB OpenSSL|x64
58 LIB Release - LIB wolfSSL|Win32 = LIB Release - LIB wolfSSL|Win32
59 LIB Release - LIB wolfSSL|x64 = LIB Release - LIB wolfSSL|x64
60 LIB Release|Win32 = LIB Release|Win32
61 LIB Release|x64 = LIB Release|x64
62 EndGlobalSection
63 GlobalSection(ProjectConfigurationPlatforms) = postSolution
64 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
65 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32
66 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
67 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64
68 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.ActiveCfg = DLL Debug - DLL OpenSSL|Win32
69 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|Win32.Build.0 = DLL Debug - DLL OpenSSL|Win32
70 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.ActiveCfg = DLL Debug - DLL OpenSSL|x64
71 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL OpenSSL|x64.Build.0 = DLL Debug - DLL OpenSSL|x64
72 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
73 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32
74 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
75 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Debug - DLL Windows SSPI - DLL WinIDN|x64
76 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.ActiveCfg = DLL Debug - DLL Windows SSPI|Win32
77 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|Win32.Build.0 = DLL Debug - DLL Windows SSPI|Win32
78 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.ActiveCfg = DLL Debug - DLL Windows SSPI|x64
79 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL Windows SSPI|x64.Build.0 = DLL Debug - DLL Windows SSPI|x64
80 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.ActiveCfg = DLL Debug - DLL wolfSSL|Win32
81 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|Win32.Build.0 = DLL Debug - DLL wolfSSL|Win32
82 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.ActiveCfg = DLL Debug - DLL wolfSSL|x64
83 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug - DLL wolfSSL|x64.Build.0 = DLL Debug - DLL wolfSSL|x64
84 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32
85 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32
86 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.ActiveCfg = DLL Debug|x64
87 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Debug|x64.Build.0 = DLL Debug|x64
88 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
89 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|Win32
90 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
91 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = DLL Release - DLL OpenSSL - DLL LibSSH2|x64
92 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.ActiveCfg = DLL Release - DLL OpenSSL|Win32
93 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|Win32.Build.0 = DLL Release - DLL OpenSSL|Win32
94 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.ActiveCfg = DLL Release - DLL OpenSSL|x64
95 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL OpenSSL|x64.Build.0 = DLL Release - DLL OpenSSL|x64
96 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
97 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|Win32
98 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
99 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = DLL Release - DLL Windows SSPI - DLL WinIDN|x64
100 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.ActiveCfg = DLL Release - DLL Windows SSPI|Win32
101 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|Win32.Build.0 = DLL Release - DLL Windows SSPI|Win32
102 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.ActiveCfg = DLL Release - DLL Windows SSPI|x64
103 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL Windows SSPI|x64.Build.0 = DLL Release - DLL Windows SSPI|x64
104 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.ActiveCfg = DLL Release - DLL wolfSSL|Win32
105 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|Win32.Build.0 = DLL Release - DLL wolfSSL|Win32
106 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.ActiveCfg = DLL Release - DLL wolfSSL|x64
107 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release - DLL wolfSSL|x64.Build.0 = DLL Release - DLL wolfSSL|x64
108 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32
109 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|Win32.Build.0 = DLL Release|Win32
110 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.ActiveCfg = DLL Release|x64
111 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.DLL Release|x64.Build.0 = DLL Release|x64
112 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
113 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32
114 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
115 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Debug - DLL OpenSSL - DLL LibSSH2|x64
116 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.ActiveCfg = LIB Debug - DLL OpenSSL|Win32
117 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|Win32.Build.0 = LIB Debug - DLL OpenSSL|Win32
118 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.ActiveCfg = LIB Debug - DLL OpenSSL|x64
119 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL OpenSSL|x64.Build.0 = LIB Debug - DLL OpenSSL|x64
120 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
121 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32
122 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
123 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Debug - DLL Windows SSPI - DLL WinIDN|x64
124 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.ActiveCfg = LIB Debug - DLL Windows SSPI|Win32
125 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|Win32.Build.0 = LIB Debug - DLL Windows SSPI|Win32
126 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.ActiveCfg = LIB Debug - DLL Windows SSPI|x64
127 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - DLL Windows SSPI|x64.Build.0 = LIB Debug - DLL Windows SSPI|x64
128 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
129 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32
130 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
131 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Debug - LIB OpenSSL - LIB LibSSH2|x64
132 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.ActiveCfg = LIB Debug - LIB OpenSSL|Win32
133 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|Win32.Build.0 = LIB Debug - LIB OpenSSL|Win32
134 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.ActiveCfg = LIB Debug - LIB OpenSSL|x64
135 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB OpenSSL|x64.Build.0 = LIB Debug - LIB OpenSSL|x64
136 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.ActiveCfg = LIB Debug - LIB wolfSSL|Win32
137 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|Win32.Build.0 = LIB Debug - LIB wolfSSL|Win32
138 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.ActiveCfg = LIB Debug - LIB wolfSSL|x64
139 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug - LIB wolfSSL|x64.Build.0 = LIB Debug - LIB wolfSSL|x64
140 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.ActiveCfg = LIB Debug|Win32
141 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|Win32.Build.0 = LIB Debug|Win32
142 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.ActiveCfg = LIB Debug|x64
143 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Debug|x64.Build.0 = LIB Debug|x64
144 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
145 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|Win32.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|Win32
146 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.ActiveCfg = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
147 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL - DLL LibSSH2|x64.Build.0 = LIB Release - DLL OpenSSL - DLL LibSSH2|x64
148 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.ActiveCfg = LIB Release - DLL OpenSSL|Win32
149 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|Win32.Build.0 = LIB Release - DLL OpenSSL|Win32
150 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.ActiveCfg = LIB Release - DLL OpenSSL|x64
151 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL OpenSSL|x64.Build.0 = LIB Release - DLL OpenSSL|x64
152 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
153 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|Win32.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|Win32
154 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.ActiveCfg = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
155 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI - DLL WinIDN|x64.Build.0 = LIB Release - DLL Windows SSPI - DLL WinIDN|x64
156 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.ActiveCfg = LIB Release - DLL Windows SSPI|Win32
157 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|Win32.Build.0 = LIB Release - DLL Windows SSPI|Win32
158 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.ActiveCfg = LIB Release - DLL Windows SSPI|x64
159 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - DLL Windows SSPI|x64.Build.0 = LIB Release - DLL Windows SSPI|x64
160 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
161 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|Win32.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|Win32
162 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.ActiveCfg = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
163 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL - LIB LibSSH2|x64.Build.0 = LIB Release - LIB OpenSSL - LIB LibSSH2|x64
164 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.ActiveCfg = LIB Release - LIB OpenSSL|Win32
165 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|Win32.Build.0 = LIB Release - LIB OpenSSL|Win32
166 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.ActiveCfg = LIB Release - LIB OpenSSL|x64
167 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB OpenSSL|x64.Build.0 = LIB Release - LIB OpenSSL|x64
168 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.ActiveCfg = LIB Release - LIB wolfSSL|Win32
169 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|Win32.Build.0 = LIB Release - LIB wolfSSL|Win32
170 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.ActiveCfg = LIB Release - LIB wolfSSL|x64
171 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release - LIB wolfSSL|x64.Build.0 = LIB Release - LIB wolfSSL|x64
172 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.ActiveCfg = LIB Release|Win32
173 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|Win32.Build.0 = LIB Release|Win32
174 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.ActiveCfg = LIB Release|x64
175 {5228E9CE-A216-422F-A5E6-58E95E2DD71D}.LIB Release|x64.Build.0 = LIB Release|x64
176 EndGlobalSection
177 GlobalSection(SolutionProperties) = preSolution
178 HideSolutionNode = FALSE
179 EndGlobalSection
180 EndGlobal
+0
-2765
projects/Windows/VC17/src/curl.vcxproj less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|Win32">
4 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="DLL Debug - DLL wolfSSL|x64">
8 <Configuration>DLL Debug - DLL wolfSSL</Configuration>
9 <Platform>x64</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32">
12 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL - DLL LibSSH2|x64">
16 <Configuration>DLL Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
17 <Platform>x64</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|Win32">
20 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="DLL Debug - DLL OpenSSL|x64">
24 <Configuration>DLL Debug - DLL OpenSSL</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32">
28 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
29 <Platform>Win32</Platform>
30 </ProjectConfiguration>
31 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI - DLL WinIDN|x64">
32 <Configuration>DLL Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
33 <Platform>x64</Platform>
34 </ProjectConfiguration>
35 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|Win32">
36 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
37 <Platform>Win32</Platform>
38 </ProjectConfiguration>
39 <ProjectConfiguration Include="DLL Debug - DLL Windows SSPI|x64">
40 <Configuration>DLL Debug - DLL Windows SSPI</Configuration>
41 <Platform>x64</Platform>
42 </ProjectConfiguration>
43 <ProjectConfiguration Include="DLL Debug|Win32">
44 <Configuration>DLL Debug</Configuration>
45 <Platform>Win32</Platform>
46 </ProjectConfiguration>
47 <ProjectConfiguration Include="DLL Debug|x64">
48 <Configuration>DLL Debug</Configuration>
49 <Platform>x64</Platform>
50 </ProjectConfiguration>
51 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|Win32">
52 <Configuration>DLL Release - DLL wolfSSL</Configuration>
53 <Platform>Win32</Platform>
54 </ProjectConfiguration>
55 <ProjectConfiguration Include="DLL Release - DLL wolfSSL|x64">
56 <Configuration>DLL Release - DLL wolfSSL</Configuration>
57 <Platform>x64</Platform>
58 </ProjectConfiguration>
59 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|Win32">
60 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
61 <Platform>Win32</Platform>
62 </ProjectConfiguration>
63 <ProjectConfiguration Include="DLL Release - DLL OpenSSL - DLL LibSSH2|x64">
64 <Configuration>DLL Release - DLL OpenSSL - DLL LibSSH2</Configuration>
65 <Platform>x64</Platform>
66 </ProjectConfiguration>
67 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|Win32">
68 <Configuration>DLL Release - DLL OpenSSL</Configuration>
69 <Platform>Win32</Platform>
70 </ProjectConfiguration>
71 <ProjectConfiguration Include="DLL Release - DLL OpenSSL|x64">
72 <Configuration>DLL Release - DLL OpenSSL</Configuration>
73 <Platform>x64</Platform>
74 </ProjectConfiguration>
75 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|Win32">
76 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
77 <Platform>Win32</Platform>
78 </ProjectConfiguration>
79 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI - DLL WinIDN|x64">
80 <Configuration>DLL Release - DLL Windows SSPI - DLL WinIDN</Configuration>
81 <Platform>x64</Platform>
82 </ProjectConfiguration>
83 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|Win32">
84 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
85 <Platform>Win32</Platform>
86 </ProjectConfiguration>
87 <ProjectConfiguration Include="DLL Release - DLL Windows SSPI|x64">
88 <Configuration>DLL Release - DLL Windows SSPI</Configuration>
89 <Platform>x64</Platform>
90 </ProjectConfiguration>
91 <ProjectConfiguration Include="DLL Release|Win32">
92 <Configuration>DLL Release</Configuration>
93 <Platform>Win32</Platform>
94 </ProjectConfiguration>
95 <ProjectConfiguration Include="DLL Release|x64">
96 <Configuration>DLL Release</Configuration>
97 <Platform>x64</Platform>
98 </ProjectConfiguration>
99 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32">
100 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
101 <Platform>Win32</Platform>
102 </ProjectConfiguration>
103 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL - DLL LibSSH2|x64">
104 <Configuration>LIB Debug - DLL OpenSSL - DLL LibSSH2</Configuration>
105 <Platform>x64</Platform>
106 </ProjectConfiguration>
107 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|Win32">
108 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
109 <Platform>Win32</Platform>
110 </ProjectConfiguration>
111 <ProjectConfiguration Include="LIB Debug - DLL OpenSSL|x64">
112 <Configuration>LIB Debug - DLL OpenSSL</Configuration>
113 <Platform>x64</Platform>
114 </ProjectConfiguration>
115 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32">
116 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
117 <Platform>Win32</Platform>
118 </ProjectConfiguration>
119 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI - DLL WinIDN|x64">
120 <Configuration>LIB Debug - DLL Windows SSPI - DLL WinIDN</Configuration>
121 <Platform>x64</Platform>
122 </ProjectConfiguration>
123 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|Win32">
124 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
125 <Platform>Win32</Platform>
126 </ProjectConfiguration>
127 <ProjectConfiguration Include="LIB Debug - DLL Windows SSPI|x64">
128 <Configuration>LIB Debug - DLL Windows SSPI</Configuration>
129 <Platform>x64</Platform>
130 </ProjectConfiguration>
131 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|Win32">
132 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
133 <Platform>Win32</Platform>
134 </ProjectConfiguration>
135 <ProjectConfiguration Include="LIB Debug - LIB wolfSSL|x64">
136 <Configuration>LIB Debug - LIB wolfSSL</Configuration>
137 <Platform>x64</Platform>
138 </ProjectConfiguration>
139 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32">
140 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
141 <Platform>Win32</Platform>
142 </ProjectConfiguration>
143 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL - LIB LibSSH2|x64">
144 <Configuration>LIB Debug - LIB OpenSSL - LIB LibSSH2</Configuration>
145 <Platform>x64</Platform>
146 </ProjectConfiguration>
147 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|Win32">
148 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
149 <Platform>Win32</Platform>
150 </ProjectConfiguration>
151 <ProjectConfiguration Include="LIB Debug - LIB OpenSSL|x64">
152 <Configuration>LIB Debug - LIB OpenSSL</Configuration>
153 <Platform>x64</Platform>
154 </ProjectConfiguration>
155 <ProjectConfiguration Include="LIB Debug|Win32">
156 <Configuration>LIB Debug</Configuration>
157 <Platform>Win32</Platform>
158 </ProjectConfiguration>
159 <ProjectConfiguration Include="LIB Debug|x64">
160 <Configuration>LIB Debug</Configuration>
161 <Platform>x64</Platform>
162 </ProjectConfiguration>
163 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|Win32">
164 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
165 <Platform>Win32</Platform>
166 </ProjectConfiguration>
167 <ProjectConfiguration Include="LIB Release - DLL OpenSSL - DLL LibSSH2|x64">
168 <Configuration>LIB Release - DLL OpenSSL - DLL LibSSH2</Configuration>
169 <Platform>x64</Platform>
170 </ProjectConfiguration>
171 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|Win32">
172 <Configuration>LIB Release - DLL OpenSSL</Configuration>
173 <Platform>Win32</Platform>
174 </ProjectConfiguration>
175 <ProjectConfiguration Include="LIB Release - DLL OpenSSL|x64">
176 <Configuration>LIB Release - DLL OpenSSL</Configuration>
177 <Platform>x64</Platform>
178 </ProjectConfiguration>
179 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|Win32">
180 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
181 <Platform>Win32</Platform>
182 </ProjectConfiguration>
183 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI - DLL WinIDN|x64">
184 <Configuration>LIB Release - DLL Windows SSPI - DLL WinIDN</Configuration>
185 <Platform>x64</Platform>
186 </ProjectConfiguration>
187 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|Win32">
188 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
189 <Platform>Win32</Platform>
190 </ProjectConfiguration>
191 <ProjectConfiguration Include="LIB Release - DLL Windows SSPI|x64">
192 <Configuration>LIB Release - DLL Windows SSPI</Configuration>
193 <Platform>x64</Platform>
194 </ProjectConfiguration>
195 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|Win32">
196 <Configuration>LIB Release - LIB wolfSSL</Configuration>
197 <Platform>Win32</Platform>
198 </ProjectConfiguration>
199 <ProjectConfiguration Include="LIB Release - LIB wolfSSL|x64">
200 <Configuration>LIB Release - LIB wolfSSL</Configuration>
201 <Platform>x64</Platform>
202 </ProjectConfiguration>
203 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|Win32">
204 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
205 <Platform>Win32</Platform>
206 </ProjectConfiguration>
207 <ProjectConfiguration Include="LIB Release - LIB OpenSSL - LIB LibSSH2|x64">
208 <Configuration>LIB Release - LIB OpenSSL - LIB LibSSH2</Configuration>
209 <Platform>x64</Platform>
210 </ProjectConfiguration>
211 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|Win32">
212 <Configuration>LIB Release - LIB OpenSSL</Configuration>
213 <Platform>Win32</Platform>
214 </ProjectConfiguration>
215 <ProjectConfiguration Include="LIB Release - LIB OpenSSL|x64">
216 <Configuration>LIB Release - LIB OpenSSL</Configuration>
217 <Platform>x64</Platform>
218 </ProjectConfiguration>
219 <ProjectConfiguration Include="LIB Release|Win32">
220 <Configuration>LIB Release</Configuration>
221 <Platform>Win32</Platform>
222 </ProjectConfiguration>
223 <ProjectConfiguration Include="LIB Release|x64">
224 <Configuration>LIB Release</Configuration>
225 <Platform>x64</Platform>
226 </ProjectConfiguration>
227 </ItemGroup>
228 <PropertyGroup Label="Globals">
229 <ProjectGuid>{5228E9CE-A216-422F-A5E6-58E95E2DD71D}</ProjectGuid>
230 <RootNamespace>curl</RootNamespace>
231 </PropertyGroup>
232 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
233 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="Configuration">
234 <ConfigurationType>Application</ConfigurationType>
235 <UseOfMfc>false</UseOfMfc>
236 <CharacterSet>Unicode</CharacterSet>
237 <PlatformToolset>v143</PlatformToolset>
238 </PropertyGroup>
239 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
240 <ConfigurationType>Application</ConfigurationType>
241 <UseOfMfc>false</UseOfMfc>
242 <CharacterSet>Unicode</CharacterSet>
243 <PlatformToolset>v143</PlatformToolset>
244 </PropertyGroup>
245 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="Configuration">
246 <ConfigurationType>Application</ConfigurationType>
247 <UseOfMfc>false</UseOfMfc>
248 <CharacterSet>Unicode</CharacterSet>
249 <PlatformToolset>v143</PlatformToolset>
250 </PropertyGroup>
251 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
252 <ConfigurationType>Application</ConfigurationType>
253 <UseOfMfc>false</UseOfMfc>
254 <CharacterSet>Unicode</CharacterSet>
255 <PlatformToolset>v143</PlatformToolset>
256 </PropertyGroup>
257 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
258 <ConfigurationType>Application</ConfigurationType>
259 <UseOfMfc>false</UseOfMfc>
260 <CharacterSet>Unicode</CharacterSet>
261 <PlatformToolset>v143</PlatformToolset>
262 </PropertyGroup>
263 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
264 <ConfigurationType>Application</ConfigurationType>
265 <UseOfMfc>false</UseOfMfc>
266 <CharacterSet>Unicode</CharacterSet>
267 <PlatformToolset>v143</PlatformToolset>
268 </PropertyGroup>
269 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="Configuration">
270 <ConfigurationType>Application</ConfigurationType>
271 <UseOfMfc>false</UseOfMfc>
272 <CharacterSet>Unicode</CharacterSet>
273 <PlatformToolset>v143</PlatformToolset>
274 </PropertyGroup>
275 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="Configuration">
276 <ConfigurationType>Application</ConfigurationType>
277 <UseOfMfc>false</UseOfMfc>
278 <CharacterSet>Unicode</CharacterSet>
279 <PlatformToolset>v143</PlatformToolset>
280 </PropertyGroup>
281 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
282 <ConfigurationType>Application</ConfigurationType>
283 <UseOfMfc>false</UseOfMfc>
284 <CharacterSet>Unicode</CharacterSet>
285 <PlatformToolset>v143</PlatformToolset>
286 </PropertyGroup>
287 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="Configuration">
288 <ConfigurationType>Application</ConfigurationType>
289 <UseOfMfc>false</UseOfMfc>
290 <CharacterSet>Unicode</CharacterSet>
291 <PlatformToolset>v143</PlatformToolset>
292 </PropertyGroup>
293 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="Configuration">
294 <ConfigurationType>Application</ConfigurationType>
295 <UseOfMfc>false</UseOfMfc>
296 <CharacterSet>Unicode</CharacterSet>
297 <PlatformToolset>v143</PlatformToolset>
298 </PropertyGroup>
299 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="Configuration">
300 <ConfigurationType>Application</ConfigurationType>
301 <UseOfMfc>false</UseOfMfc>
302 <CharacterSet>Unicode</CharacterSet>
303 <PlatformToolset>v143</PlatformToolset>
304 </PropertyGroup>
305 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
306 <ConfigurationType>Application</ConfigurationType>
307 <UseOfMfc>false</UseOfMfc>
308 <CharacterSet>Unicode</CharacterSet>
309 <PlatformToolset>v143</PlatformToolset>
310 </PropertyGroup>
311 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="Configuration">
312 <ConfigurationType>Application</ConfigurationType>
313 <UseOfMfc>false</UseOfMfc>
314 <CharacterSet>Unicode</CharacterSet>
315 <PlatformToolset>v143</PlatformToolset>
316 </PropertyGroup>
317 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="Configuration">
318 <ConfigurationType>Application</ConfigurationType>
319 <UseOfMfc>false</UseOfMfc>
320 <CharacterSet>Unicode</CharacterSet>
321 <PlatformToolset>v143</PlatformToolset>
322 </PropertyGroup>
323 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
324 <ConfigurationType>Application</ConfigurationType>
325 <UseOfMfc>false</UseOfMfc>
326 <CharacterSet>Unicode</CharacterSet>
327 <PlatformToolset>v143</PlatformToolset>
328 </PropertyGroup>
329 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="Configuration">
330 <ConfigurationType>Application</ConfigurationType>
331 <UseOfMfc>false</UseOfMfc>
332 <CharacterSet>Unicode</CharacterSet>
333 <PlatformToolset>v143</PlatformToolset>
334 </PropertyGroup>
335 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="Configuration">
336 <ConfigurationType>Application</ConfigurationType>
337 <UseOfMfc>false</UseOfMfc>
338 <CharacterSet>Unicode</CharacterSet>
339 <PlatformToolset>v143</PlatformToolset>
340 </PropertyGroup>
341 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="Configuration">
342 <ConfigurationType>Application</ConfigurationType>
343 <UseOfMfc>false</UseOfMfc>
344 <CharacterSet>Unicode</CharacterSet>
345 <PlatformToolset>v143</PlatformToolset>
346 </PropertyGroup>
347 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="Configuration">
348 <ConfigurationType>Application</ConfigurationType>
349 <UseOfMfc>false</UseOfMfc>
350 <CharacterSet>Unicode</CharacterSet>
351 <PlatformToolset>v143</PlatformToolset>
352 </PropertyGroup>
353 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="Configuration">
354 <ConfigurationType>Application</ConfigurationType>
355 <UseOfMfc>false</UseOfMfc>
356 <CharacterSet>Unicode</CharacterSet>
357 <PlatformToolset>v143</PlatformToolset>
358 </PropertyGroup>
359 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="Configuration">
360 <ConfigurationType>Application</ConfigurationType>
361 <UseOfMfc>false</UseOfMfc>
362 <CharacterSet>Unicode</CharacterSet>
363 <PlatformToolset>v143</PlatformToolset>
364 </PropertyGroup>
365 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="Configuration">
366 <ConfigurationType>Application</ConfigurationType>
367 <UseOfMfc>false</UseOfMfc>
368 <CharacterSet>Unicode</CharacterSet>
369 <PlatformToolset>v143</PlatformToolset>
370 </PropertyGroup>
371 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="Configuration">
372 <ConfigurationType>Application</ConfigurationType>
373 <UseOfMfc>false</UseOfMfc>
374 <CharacterSet>Unicode</CharacterSet>
375 <PlatformToolset>v143</PlatformToolset>
376 </PropertyGroup>
377 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="Configuration">
378 <ConfigurationType>Application</ConfigurationType>
379 <UseOfMfc>false</UseOfMfc>
380 <CharacterSet>Unicode</CharacterSet>
381 <PlatformToolset>v143</PlatformToolset>
382 </PropertyGroup>
383 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="Configuration">
384 <ConfigurationType>Application</ConfigurationType>
385 <UseOfMfc>false</UseOfMfc>
386 <CharacterSet>Unicode</CharacterSet>
387 <PlatformToolset>v143</PlatformToolset>
388 </PropertyGroup>
389 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="Configuration">
390 <ConfigurationType>Application</ConfigurationType>
391 <UseOfMfc>false</UseOfMfc>
392 <CharacterSet>Unicode</CharacterSet>
393 <PlatformToolset>v143</PlatformToolset>
394 </PropertyGroup>
395 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="Configuration">
396 <ConfigurationType>Application</ConfigurationType>
397 <UseOfMfc>false</UseOfMfc>
398 <CharacterSet>Unicode</CharacterSet>
399 <PlatformToolset>v143</PlatformToolset>
400 </PropertyGroup>
401 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="Configuration">
402 <ConfigurationType>Application</ConfigurationType>
403 <UseOfMfc>false</UseOfMfc>
404 <CharacterSet>Unicode</CharacterSet>
405 <PlatformToolset>v143</PlatformToolset>
406 </PropertyGroup>
407 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
408 <ConfigurationType>Application</ConfigurationType>
409 <UseOfMfc>false</UseOfMfc>
410 <CharacterSet>Unicode</CharacterSet>
411 <PlatformToolset>v143</PlatformToolset>
412 </PropertyGroup>
413 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="Configuration">
414 <ConfigurationType>Application</ConfigurationType>
415 <UseOfMfc>false</UseOfMfc>
416 <CharacterSet>Unicode</CharacterSet>
417 <PlatformToolset>v143</PlatformToolset>
418 </PropertyGroup>
419 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
420 <ConfigurationType>Application</ConfigurationType>
421 <UseOfMfc>false</UseOfMfc>
422 <CharacterSet>Unicode</CharacterSet>
423 <PlatformToolset>v143</PlatformToolset>
424 </PropertyGroup>
425 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
426 <ConfigurationType>Application</ConfigurationType>
427 <UseOfMfc>false</UseOfMfc>
428 <CharacterSet>Unicode</CharacterSet>
429 <PlatformToolset>v143</PlatformToolset>
430 </PropertyGroup>
431 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
432 <ConfigurationType>Application</ConfigurationType>
433 <UseOfMfc>false</UseOfMfc>
434 <CharacterSet>Unicode</CharacterSet>
435 <PlatformToolset>v143</PlatformToolset>
436 </PropertyGroup>
437 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="Configuration">
438 <ConfigurationType>Application</ConfigurationType>
439 <UseOfMfc>false</UseOfMfc>
440 <CharacterSet>Unicode</CharacterSet>
441 <PlatformToolset>v143</PlatformToolset>
442 </PropertyGroup>
443 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="Configuration">
444 <ConfigurationType>Application</ConfigurationType>
445 <UseOfMfc>false</UseOfMfc>
446 <CharacterSet>Unicode</CharacterSet>
447 <PlatformToolset>v143</PlatformToolset>
448 </PropertyGroup>
449 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
450 <ConfigurationType>Application</ConfigurationType>
451 <UseOfMfc>false</UseOfMfc>
452 <CharacterSet>Unicode</CharacterSet>
453 <PlatformToolset>v143</PlatformToolset>
454 </PropertyGroup>
455 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="Configuration">
456 <ConfigurationType>Application</ConfigurationType>
457 <UseOfMfc>false</UseOfMfc>
458 <CharacterSet>Unicode</CharacterSet>
459 <PlatformToolset>v143</PlatformToolset>
460 </PropertyGroup>
461 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="Configuration">
462 <ConfigurationType>Application</ConfigurationType>
463 <UseOfMfc>false</UseOfMfc>
464 <CharacterSet>Unicode</CharacterSet>
465 <PlatformToolset>v143</PlatformToolset>
466 </PropertyGroup>
467 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="Configuration">
468 <ConfigurationType>Application</ConfigurationType>
469 <UseOfMfc>false</UseOfMfc>
470 <CharacterSet>Unicode</CharacterSet>
471 <PlatformToolset>v143</PlatformToolset>
472 </PropertyGroup>
473 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
474 <ConfigurationType>Application</ConfigurationType>
475 <UseOfMfc>false</UseOfMfc>
476 <CharacterSet>Unicode</CharacterSet>
477 <PlatformToolset>v143</PlatformToolset>
478 </PropertyGroup>
479 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="Configuration">
480 <ConfigurationType>Application</ConfigurationType>
481 <UseOfMfc>false</UseOfMfc>
482 <CharacterSet>Unicode</CharacterSet>
483 <PlatformToolset>v143</PlatformToolset>
484 </PropertyGroup>
485 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="Configuration">
486 <ConfigurationType>Application</ConfigurationType>
487 <UseOfMfc>false</UseOfMfc>
488 <CharacterSet>Unicode</CharacterSet>
489 <PlatformToolset>v143</PlatformToolset>
490 </PropertyGroup>
491 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
492 <ConfigurationType>Application</ConfigurationType>
493 <UseOfMfc>false</UseOfMfc>
494 <CharacterSet>Unicode</CharacterSet>
495 <PlatformToolset>v143</PlatformToolset>
496 </PropertyGroup>
497 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="Configuration">
498 <ConfigurationType>Application</ConfigurationType>
499 <UseOfMfc>false</UseOfMfc>
500 <CharacterSet>Unicode</CharacterSet>
501 <PlatformToolset>v143</PlatformToolset>
502 </PropertyGroup>
503 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="Configuration">
504 <ConfigurationType>Application</ConfigurationType>
505 <UseOfMfc>false</UseOfMfc>
506 <CharacterSet>Unicode</CharacterSet>
507 <PlatformToolset>v143</PlatformToolset>
508 </PropertyGroup>
509 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="Configuration">
510 <ConfigurationType>Application</ConfigurationType>
511 <UseOfMfc>false</UseOfMfc>
512 <CharacterSet>Unicode</CharacterSet>
513 <PlatformToolset>v143</PlatformToolset>
514 </PropertyGroup>
515 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="Configuration">
516 <ConfigurationType>Application</ConfigurationType>
517 <UseOfMfc>false</UseOfMfc>
518 <CharacterSet>Unicode</CharacterSet>
519 <PlatformToolset>v143</PlatformToolset>
520 </PropertyGroup>
521 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="Configuration">
522 <ConfigurationType>Application</ConfigurationType>
523 <UseOfMfc>false</UseOfMfc>
524 <CharacterSet>Unicode</CharacterSet>
525 <PlatformToolset>v143</PlatformToolset>
526 </PropertyGroup>
527 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="Configuration">
528 <ConfigurationType>Application</ConfigurationType>
529 <UseOfMfc>false</UseOfMfc>
530 <CharacterSet>Unicode</CharacterSet>
531 <PlatformToolset>v143</PlatformToolset>
532 </PropertyGroup>
533 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="Configuration">
534 <ConfigurationType>Application</ConfigurationType>
535 <UseOfMfc>false</UseOfMfc>
536 <CharacterSet>Unicode</CharacterSet>
537 <PlatformToolset>v143</PlatformToolset>
538 </PropertyGroup>
539 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="Configuration">
540 <ConfigurationType>Application</ConfigurationType>
541 <UseOfMfc>false</UseOfMfc>
542 <CharacterSet>Unicode</CharacterSet>
543 <PlatformToolset>v143</PlatformToolset>
544 </PropertyGroup>
545 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="Configuration">
546 <ConfigurationType>Application</ConfigurationType>
547 <UseOfMfc>false</UseOfMfc>
548 <CharacterSet>Unicode</CharacterSet>
549 <PlatformToolset>v143</PlatformToolset>
550 </PropertyGroup>
551 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="Configuration">
552 <ConfigurationType>Application</ConfigurationType>
553 <UseOfMfc>false</UseOfMfc>
554 <CharacterSet>Unicode</CharacterSet>
555 <PlatformToolset>v143</PlatformToolset>
556 </PropertyGroup>
557 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="Configuration">
558 <ConfigurationType>Application</ConfigurationType>
559 <UseOfMfc>false</UseOfMfc>
560 <CharacterSet>Unicode</CharacterSet>
561 <PlatformToolset>v143</PlatformToolset>
562 </PropertyGroup>
563 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="Configuration">
564 <ConfigurationType>Application</ConfigurationType>
565 <UseOfMfc>false</UseOfMfc>
566 <CharacterSet>Unicode</CharacterSet>
567 <PlatformToolset>v143</PlatformToolset>
568 </PropertyGroup>
569 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
570 <ImportGroup Label="ExtensionSettings">
571 </ImportGroup>
572 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
573 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
574 </ImportGroup>
575 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
576 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
577 </ImportGroup>
578 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
579 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
580 </ImportGroup>
581 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
582 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
583 </ImportGroup>
584 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
585 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
586 </ImportGroup>
587 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
588 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
589 </ImportGroup>
590 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'" Label="PropertySheets">
591 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
592 </ImportGroup>
593 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
594 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
595 </ImportGroup>
596 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
597 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
598 </ImportGroup>
599 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'" Label="PropertySheets">
600 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
601 </ImportGroup>
602 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'" Label="PropertySheets">
603 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
604 </ImportGroup>
605 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'" Label="PropertySheets">
606 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
607 </ImportGroup>
608 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
609 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
610 </ImportGroup>
611 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'" Label="PropertySheets">
612 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
613 </ImportGroup>
614 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'" Label="PropertySheets">
615 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
616 </ImportGroup>
617 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
618 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
619 </ImportGroup>
620 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'" Label="PropertySheets">
621 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
622 </ImportGroup>
623 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'" Label="PropertySheets">
624 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
625 </ImportGroup>
626 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'" Label="PropertySheets">
627 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
628 </ImportGroup>
629 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'" Label="PropertySheets">
630 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
631 </ImportGroup>
632 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'" Label="PropertySheets">
633 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
634 </ImportGroup>
635 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'" Label="PropertySheets">
636 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
637 </ImportGroup>
638 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'" Label="PropertySheets">
639 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
640 </ImportGroup>
641 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'" Label="PropertySheets">
642 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
643 </ImportGroup>
644 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'" Label="PropertySheets">
645 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
646 </ImportGroup>
647 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'" Label="PropertySheets">
648 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
649 </ImportGroup>
650 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'" Label="PropertySheets">
651 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
652 </ImportGroup>
653 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'" Label="PropertySheets">
654 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
655 </ImportGroup>
656 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'" Label="PropertySheets">
657 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
658 </ImportGroup>
659 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
660 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
661 </ImportGroup>
662 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
663 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
664 </ImportGroup>
665 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
666 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
667 </ImportGroup>
668 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
669 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
670 </ImportGroup>
671 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
672 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
673 </ImportGroup>
674 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'" Label="PropertySheets">
675 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
676 </ImportGroup>
677 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'" Label="PropertySheets">
678 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 </ImportGroup>
680 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
681 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
682 </ImportGroup>
683 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'" Label="PropertySheets">
684 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
685 </ImportGroup>
686 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'" Label="PropertySheets">
687 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
688 </ImportGroup>
689 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'" Label="PropertySheets">
690 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
691 </ImportGroup>
692 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
693 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
694 </ImportGroup>
695 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'" Label="PropertySheets">
696 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
697 </ImportGroup>
698 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'" Label="PropertySheets">
699 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
700 </ImportGroup>
701 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
702 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
703 </ImportGroup>
704 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'" Label="PropertySheets">
705 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
706 </ImportGroup>
707 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'" Label="PropertySheets">
708 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
709 </ImportGroup>
710 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'" Label="PropertySheets">
711 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
712 </ImportGroup>
713 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'" Label="PropertySheets">
714 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
715 </ImportGroup>
716 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'" Label="PropertySheets">
717 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
718 </ImportGroup>
719 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'" Label="PropertySheets">
720 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
721 </ImportGroup>
722 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'" Label="PropertySheets">
723 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
724 </ImportGroup>
725 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'" Label="PropertySheets">
726 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
727 </ImportGroup>
728 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'" Label="PropertySheets">
729 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
730 </ImportGroup>
731 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'" Label="PropertySheets">
732 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
733 </ImportGroup>
734 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'" Label="PropertySheets">
735 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
736 </ImportGroup>
737 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'" Label="PropertySheets">
738 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
739 </ImportGroup>
740 <PropertyGroup Label="UserMacros" />
741 <PropertyGroup>
742 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
743 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
744 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
745 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(OutDir)src\</IntDir>
746 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
747 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">false</LinkIncremental>
748 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">false</LinkIncremental>
749 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
750 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
751 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(OutDir)src\</IntDir>
752 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
753 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</LinkIncremental>
754 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">false</LinkIncremental>
755 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
756 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
757 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(OutDir)src\</IntDir>
758 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
759 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">false</LinkIncremental>
760 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">false</LinkIncremental>
761 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
762 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
763 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(OutDir)src\</IntDir>
764 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
765 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">false</LinkIncremental>
766 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">false</LinkIncremental>
767 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
768 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
769 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(OutDir)src\</IntDir>
770 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(OutDir)src\</IntDir>
771 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">false</LinkIncremental>
772 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">false</LinkIncremental>
773 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
774 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
775 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(OutDir)src\</IntDir>
776 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(OutDir)src\</IntDir>
777 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">false</LinkIncremental>
778 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">false</LinkIncremental>
779 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
780 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
781 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(OutDir)src\</IntDir>
782 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(OutDir)src\</IntDir>
783 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">false</LinkIncremental>
784 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">false</LinkIncremental>
785 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
786 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
787 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(OutDir)src\</IntDir>
788 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(OutDir)src\</IntDir>
789 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</LinkIncremental>
790 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">false</LinkIncremental>
791 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
792 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
793 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
794 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
795 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
796 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">false</LinkIncremental>
797 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
798 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
799 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
800 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
801 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
802 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
803 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
804 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
805 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
806 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
807 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
808 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
809 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
810 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
811 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">false</LinkIncremental>
812 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
813 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
814 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">false</LinkIncremental>
815 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
816 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
817 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
818 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
819 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
820 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
821 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
822 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
823 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
824 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
825 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">false</LinkIncremental>
826 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
827 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
828 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
829 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
830 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
831 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
832 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
833 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
834 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
835 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
836 <OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
837 <IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
838 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
839 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
840 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
841 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">false</LinkIncremental>
842 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
843 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
844 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">false</LinkIncremental>
845 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
846 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(OutDir)src\</IntDir>
847 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">false</LinkIncremental>
848 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
849 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(OutDir)src\</IntDir>
850 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">false</LinkIncremental>
851 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
852 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
853 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
854 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
855 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
856 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
857 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
858 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(OutDir)src\</IntDir>
859 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">false</LinkIncremental>
860 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
861 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(OutDir)src\</IntDir>
862 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">false</LinkIncremental>
863 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
864 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
865 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">false</LinkIncremental>
866 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
867 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
868 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">false</LinkIncremental>
869 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
870 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(OutDir)src\</IntDir>
871 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">false</LinkIncremental>
872 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
873 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(OutDir)src\</IntDir>
874 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">false</LinkIncremental>
875 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
876 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
877 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
878 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
879 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
880 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
881 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
882 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(OutDir)src\</IntDir>
883 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">false</LinkIncremental>
884 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
885 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(OutDir)src\</IntDir>
886 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">false</LinkIncremental>
887 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
888 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
889 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
890 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
891 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">false</LinkIncremental>
892 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
893 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
894 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
895 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
896 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
897 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">false</LinkIncremental>
898 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
899 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
900 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">..\..\..\..\build\Win32\VC17\$(Configuration)\</OutDir>
901 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(OutDir)src\</IntDir>
902 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(OutDir)src\</IntDir>
903 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">false</LinkIncremental>
904 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">false</LinkIncremental>
905 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
906 <OutDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">..\..\..\..\build\Win64\VC17\$(Configuration)\</OutDir>
907 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(OutDir)src\</IntDir>
908 <IntDir Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(OutDir)src\</IntDir>
909 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">false</LinkIncremental>
910 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">false</LinkIncremental>
911 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">$(ProjectName)d</TargetName>
912 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">$(ProjectName)d</TargetName>
913 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(ProjectName)d</TargetName>
914 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">$(ProjectName)d</TargetName>
915 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
916 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
917 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
918 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
919 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
920 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
921 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
922 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
923 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">$(ProjectName)d</TargetName>
924 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">$(ProjectName)d</TargetName>
925 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">$(ProjectName)d</TargetName>
926 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">$(ProjectName)d</TargetName>
927 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">$(ProjectName)d</TargetName>
928 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">$(ProjectName)d</TargetName>
929 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)d</TargetName>
930 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)d</TargetName>
931 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">$(ProjectName)d</TargetName>
932 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)d</TargetName>
933 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">$(ProjectName)d</TargetName>
934 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)d</TargetName>
935 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">$(ProjectName)d</TargetName>
936 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">$(ProjectName)d</TargetName>
937 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)d</TargetName>
938 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)d</TargetName>
939 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
940 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
941 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
942 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
943 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">$(ProjectName)</TargetName>
944 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">$(ProjectName)</TargetName>
945 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">$(ProjectName)</TargetName>
946 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">$(ProjectName)</TargetName>
947 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">$(ProjectName)</TargetName>
948 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">$(ProjectName)</TargetName>
949 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">$(ProjectName)</TargetName>
950 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">$(ProjectName)</TargetName>
951 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">$(ProjectName)</TargetName>
952 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">$(ProjectName)</TargetName>
953 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
954 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
955 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
956 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
957 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(ProjectName)</TargetName>
958 <TargetName Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">$(ProjectName)</TargetName>
959 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">$(ProjectName)</TargetName>
960 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">$(ProjectName)</TargetName>
961 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">$(ProjectName)</TargetName>
962 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">$(ProjectName)</TargetName>
963 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">$(ProjectName)</TargetName>
964 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">$(ProjectName)</TargetName>
965 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">$(ProjectName)</TargetName>
966 <TargetName Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">$(ProjectName)</TargetName>
967 </PropertyGroup>
968 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|Win32'">
969 <Midl>
970 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
971 <HeaderFileName>
972 </HeaderFileName>
973 </Midl>
974 <ClCompile>
975 <Optimization>MaxSpeed</Optimization>
976 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
977 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
978 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
979 <StringPooling>true</StringPooling>
980 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
981 <FunctionLevelLinking>true</FunctionLevelLinking>
982 <WarningLevel>Level4</WarningLevel>
983 </ClCompile>
984 <ResourceCompile>
985 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
986 <Culture>0x0409</Culture>
987 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
988 </ResourceCompile>
989 <Link>
990 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
991 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
992 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
993 <SubSystem>Console</SubSystem>
994 <TargetMachine>MachineX86</TargetMachine>
995 </Link>
996 </ItemDefinitionGroup>
997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|Win32'">
998 <Midl>
999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1000 <HeaderFileName>
1001 </HeaderFileName>
1002 </Midl>
1003 <ClCompile>
1004 <Optimization>MaxSpeed</Optimization>
1005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1008 <StringPooling>true</StringPooling>
1009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1010 <FunctionLevelLinking>true</FunctionLevelLinking>
1011 <WarningLevel>Level4</WarningLevel>
1012 </ClCompile>
1013 <ResourceCompile>
1014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1015 <Culture>0x0409</Culture>
1016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1017 </ResourceCompile>
1018 <Link>
1019 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1022 <SubSystem>Console</SubSystem>
1023 <TargetMachine>MachineX86</TargetMachine>
1024 <GenerateDebugInformation>true</GenerateDebugInformation>
1025 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1026 </Link>
1027 </ItemDefinitionGroup>
1028 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
1029 <Midl>
1030 <TargetEnvironment>X64</TargetEnvironment>
1031 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1032 <HeaderFileName>
1033 </HeaderFileName>
1034 </Midl>
1035 <ClCompile>
1036 <Optimization>MaxSpeed</Optimization>
1037 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1038 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1039 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1040 <StringPooling>true</StringPooling>
1041 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1042 <FunctionLevelLinking>true</FunctionLevelLinking>
1043 <WarningLevel>Level4</WarningLevel>
1044 </ClCompile>
1045 <ResourceCompile>
1046 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1047 <Culture>0x0409</Culture>
1048 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1049 </ResourceCompile>
1050 <Link>
1051 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1052 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1053 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1054 <SubSystem>Console</SubSystem>
1055 <TargetMachine>MachineX64</TargetMachine>
1056 </Link>
1057 </ItemDefinitionGroup>
1058 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL wolfSSL|x64'">
1059 <Midl>
1060 <TargetEnvironment>X64</TargetEnvironment>
1061 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1062 <HeaderFileName>
1063 </HeaderFileName>
1064 </Midl>
1065 <ClCompile>
1066 <Optimization>MaxSpeed</Optimization>
1067 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1068 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1069 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1070 <StringPooling>true</StringPooling>
1071 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1072 <FunctionLevelLinking>true</FunctionLevelLinking>
1073 <WarningLevel>Level4</WarningLevel>
1074 </ClCompile>
1075 <ResourceCompile>
1076 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1077 <Culture>0x0409</Culture>
1078 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1079 </ResourceCompile>
1080 <Link>
1081 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1082 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1083 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1084 <SubSystem>Console</SubSystem>
1085 <TargetMachine>MachineX64</TargetMachine>
1086 <GenerateDebugInformation>true</GenerateDebugInformation>
1087 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1088 </Link>
1089 </ItemDefinitionGroup>
1090 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|Win32'">
1091 <Midl>
1092 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1093 <HeaderFileName>
1094 </HeaderFileName>
1095 </Midl>
1096 <ClCompile>
1097 <Optimization>MaxSpeed</Optimization>
1098 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1099 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1100 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1101 <StringPooling>true</StringPooling>
1102 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1103 <FunctionLevelLinking>true</FunctionLevelLinking>
1104 <WarningLevel>Level4</WarningLevel>
1105 </ClCompile>
1106 <ResourceCompile>
1107 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1108 <Culture>0x0409</Culture>
1109 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1110 </ResourceCompile>
1111 <Link>
1112 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1113 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1114 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1115 <SubSystem>Console</SubSystem>
1116 <TargetMachine>MachineX86</TargetMachine>
1117 </Link>
1118 </ItemDefinitionGroup>
1119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|Win32'">
1120 <Midl>
1121 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1122 <HeaderFileName>
1123 </HeaderFileName>
1124 </Midl>
1125 <ClCompile>
1126 <Optimization>MaxSpeed</Optimization>
1127 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1128 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1129 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1130 <StringPooling>true</StringPooling>
1131 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1132 <FunctionLevelLinking>true</FunctionLevelLinking>
1133 <WarningLevel>Level4</WarningLevel>
1134 </ClCompile>
1135 <ResourceCompile>
1136 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1137 <Culture>0x0409</Culture>
1138 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1139 </ResourceCompile>
1140 <Link>
1141 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1142 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1143 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1144 <SubSystem>Console</SubSystem>
1145 <TargetMachine>MachineX86</TargetMachine>
1146 <GenerateDebugInformation>true</GenerateDebugInformation>
1147 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1148 </Link>
1149 </ItemDefinitionGroup>
1150 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release|x64'">
1151 <Midl>
1152 <TargetEnvironment>X64</TargetEnvironment>
1153 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1154 <HeaderFileName>
1155 </HeaderFileName>
1156 </Midl>
1157 <ClCompile>
1158 <Optimization>MaxSpeed</Optimization>
1159 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1160 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1161 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1162 <StringPooling>true</StringPooling>
1163 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1164 <FunctionLevelLinking>true</FunctionLevelLinking>
1165 <WarningLevel>Level4</WarningLevel>
1166 </ClCompile>
1167 <ResourceCompile>
1168 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1169 <Culture>0x0409</Culture>
1170 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1171 </ResourceCompile>
1172 <Link>
1173 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1174 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1175 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1176 <SubSystem>Console</SubSystem>
1177 <TargetMachine>MachineX64</TargetMachine>
1178 </Link>
1179 </ItemDefinitionGroup>
1180 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB wolfSSL|x64'">
1181 <Midl>
1182 <TargetEnvironment>X64</TargetEnvironment>
1183 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1184 <HeaderFileName>
1185 </HeaderFileName>
1186 </Midl>
1187 <ClCompile>
1188 <Optimization>MaxSpeed</Optimization>
1189 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1190 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1191 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1192 <StringPooling>true</StringPooling>
1193 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1194 <FunctionLevelLinking>true</FunctionLevelLinking>
1195 <WarningLevel>Level4</WarningLevel>
1196 </ClCompile>
1197 <ResourceCompile>
1198 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1199 <Culture>0x0409</Culture>
1200 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1201 </ResourceCompile>
1202 <Link>
1203 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1204 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1205 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1206 <SubSystem>Console</SubSystem>
1207 <TargetMachine>MachineX64</TargetMachine>
1208 <GenerateDebugInformation>true</GenerateDebugInformation>
1209 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1210 </Link>
1211 </ItemDefinitionGroup>
1212 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|Win32'">
1213 <Midl>
1214 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1215 <HeaderFileName>
1216 </HeaderFileName>
1217 </Midl>
1218 <ClCompile>
1219 <Optimization>Disabled</Optimization>
1220 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1221 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1222 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1223 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1224 <WarningLevel>Level4</WarningLevel>
1225 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1226 </ClCompile>
1227 <ResourceCompile>
1228 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1229 <Culture>0x0409</Culture>
1230 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1231 </ResourceCompile>
1232 <Link>
1233 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1234 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1235 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1236 <GenerateDebugInformation>true</GenerateDebugInformation>
1237 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1238 <SubSystem>Console</SubSystem>
1239 <TargetMachine>MachineX86</TargetMachine>
1240 </Link>
1241 </ItemDefinitionGroup>
1242 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|Win32'">
1243 <Midl>
1244 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1245 <HeaderFileName>
1246 </HeaderFileName>
1247 </Midl>
1248 <ClCompile>
1249 <Optimization>Disabled</Optimization>
1250 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1251 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1252 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1253 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1254 <WarningLevel>Level4</WarningLevel>
1255 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1256 </ClCompile>
1257 <ResourceCompile>
1258 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1259 <Culture>0x0409</Culture>
1260 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1261 </ResourceCompile>
1262 <Link>
1263 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1264 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1265 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\wolfssl\build\Win32\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1266 <GenerateDebugInformation>true</GenerateDebugInformation>
1267 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1268 <SubSystem>Console</SubSystem>
1269 <TargetMachine>MachineX86</TargetMachine>
1270 </Link>
1271 </ItemDefinitionGroup>
1272 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug|x64'">
1273 <Midl>
1274 <TargetEnvironment>X64</TargetEnvironment>
1275 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1276 <HeaderFileName>
1277 </HeaderFileName>
1278 </Midl>
1279 <ClCompile>
1280 <Optimization>Disabled</Optimization>
1281 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1282 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1283 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1284 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1285 <WarningLevel>Level4</WarningLevel>
1286 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1287 </ClCompile>
1288 <ResourceCompile>
1289 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1290 <Culture>0x0409</Culture>
1291 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1292 </ResourceCompile>
1293 <Link>
1294 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1295 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1296 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1297 <GenerateDebugInformation>true</GenerateDebugInformation>
1298 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1299 <SubSystem>Console</SubSystem>
1300 <TargetMachine>MachineX64</TargetMachine>
1301 </Link>
1302 </ItemDefinitionGroup>
1303 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB wolfSSL|x64'">
1304 <Midl>
1305 <TargetEnvironment>X64</TargetEnvironment>
1306 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1307 <HeaderFileName>
1308 </HeaderFileName>
1309 </Midl>
1310 <ClCompile>
1311 <Optimization>Disabled</Optimization>
1312 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1313 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1314 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1315 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1316 <WarningLevel>Level4</WarningLevel>
1317 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1318 </ClCompile>
1319 <ResourceCompile>
1320 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1321 <Culture>0x0409</Culture>
1322 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1323 </ResourceCompile>
1324 <Link>
1325 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;wolfssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1326 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1327 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\wolfssl\build\Win64\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1328 <GenerateDebugInformation>true</GenerateDebugInformation>
1329 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1330 <SubSystem>Console</SubSystem>
1331 <TargetMachine>MachineX64</TargetMachine>
1332 </Link>
1333 </ItemDefinitionGroup>
1334 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|Win32'">
1335 <Midl>
1336 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1337 <HeaderFileName>
1338 </HeaderFileName>
1339 </Midl>
1340 <ClCompile>
1341 <Optimization>Disabled</Optimization>
1342 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1343 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1344 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1345 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1346 <WarningLevel>Level4</WarningLevel>
1347 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1348 </ClCompile>
1349 <ResourceCompile>
1350 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1351 <Culture>0x0409</Culture>
1352 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1353 </ResourceCompile>
1354 <Link>
1355 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1356 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1357 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1358 <GenerateDebugInformation>true</GenerateDebugInformation>
1359 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1360 <SubSystem>Console</SubSystem>
1361 <TargetMachine>MachineX86</TargetMachine>
1362 </Link>
1363 </ItemDefinitionGroup>
1364 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|Win32'">
1365 <Midl>
1366 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1367 <HeaderFileName>
1368 </HeaderFileName>
1369 </Midl>
1370 <ClCompile>
1371 <Optimization>Disabled</Optimization>
1372 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1373 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1374 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1375 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1376 <WarningLevel>Level4</WarningLevel>
1377 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1378 </ClCompile>
1379 <ResourceCompile>
1380 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1381 <Culture>0x0409</Culture>
1382 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1383 </ResourceCompile>
1384 <Link>
1385 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1386 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1387 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1388 <GenerateDebugInformation>true</GenerateDebugInformation>
1389 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1390 <SubSystem>Console</SubSystem>
1391 <TargetMachine>MachineX86</TargetMachine>
1392 </Link>
1393 </ItemDefinitionGroup>
1394 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
1395 <Midl>
1396 <TargetEnvironment>X64</TargetEnvironment>
1397 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1398 <HeaderFileName>
1399 </HeaderFileName>
1400 </Midl>
1401 <ClCompile>
1402 <Optimization>Disabled</Optimization>
1403 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1404 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1405 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1406 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1407 <WarningLevel>Level4</WarningLevel>
1408 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1409 </ClCompile>
1410 <ResourceCompile>
1411 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1412 <Culture>0x0409</Culture>
1413 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1414 </ResourceCompile>
1415 <Link>
1416 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1417 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1418 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1419 <GenerateDebugInformation>true</GenerateDebugInformation>
1420 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1421 <SubSystem>Console</SubSystem>
1422 <TargetMachine>MachineX64</TargetMachine>
1423 </Link>
1424 </ItemDefinitionGroup>
1425 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL wolfSSL|x64'">
1426 <Midl>
1427 <TargetEnvironment>X64</TargetEnvironment>
1428 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1429 <HeaderFileName>
1430 </HeaderFileName>
1431 </Midl>
1432 <ClCompile>
1433 <Optimization>Disabled</Optimization>
1434 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1435 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1436 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1437 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1438 <WarningLevel>Level4</WarningLevel>
1439 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1440 </ClCompile>
1441 <ResourceCompile>
1442 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1443 <Culture>0x0409</Culture>
1444 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1445 </ResourceCompile>
1446 <Link>
1447 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1449 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1450 <GenerateDebugInformation>true</GenerateDebugInformation>
1451 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1452 <SubSystem>Console</SubSystem>
1453 <TargetMachine>MachineX64</TargetMachine>
1454 </Link>
1455 </ItemDefinitionGroup>
1456 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|Win32'">
1457 <Midl>
1458 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1459 <HeaderFileName>
1460 </HeaderFileName>
1461 </Midl>
1462 <ClCompile>
1463 <Optimization>Disabled</Optimization>
1464 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1465 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1466 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1467 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1468 <WarningLevel>Level4</WarningLevel>
1469 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1470 </ClCompile>
1471 <ResourceCompile>
1472 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1473 <Culture>0x0409</Culture>
1474 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1475 </ResourceCompile>
1476 <Link>
1477 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1478 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1479 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1480 <GenerateDebugInformation>true</GenerateDebugInformation>
1481 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1482 <SubSystem>Console</SubSystem>
1483 <TargetMachine>MachineX86</TargetMachine>
1484 </Link>
1485 </ItemDefinitionGroup>
1486 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL|x64'">
1487 <Midl>
1488 <TargetEnvironment>X64</TargetEnvironment>
1489 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1490 <HeaderFileName>
1491 </HeaderFileName>
1492 </Midl>
1493 <ClCompile>
1494 <Optimization>Disabled</Optimization>
1495 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1496 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1497 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1498 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1499 <WarningLevel>Level4</WarningLevel>
1500 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1501 </ClCompile>
1502 <ResourceCompile>
1503 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1504 <Culture>0x0409</Culture>
1505 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1506 </ResourceCompile>
1507 <Link>
1508 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1509 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1510 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1511 <GenerateDebugInformation>true</GenerateDebugInformation>
1512 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1513 <SubSystem>Console</SubSystem>
1514 <TargetMachine>MachineX64</TargetMachine>
1515 </Link>
1516 </ItemDefinitionGroup>
1517 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|Win32'">
1518 <Midl>
1519 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1520 <HeaderFileName>
1521 </HeaderFileName>
1522 </Midl>
1523 <ClCompile>
1524 <Optimization>Disabled</Optimization>
1525 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1526 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1527 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1528 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1529 <WarningLevel>Level4</WarningLevel>
1530 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1531 </ClCompile>
1532 <ResourceCompile>
1533 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1534 <Culture>0x0409</Culture>
1535 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1536 </ResourceCompile>
1537 <Link>
1538 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1539 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1540 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1541 <GenerateDebugInformation>true</GenerateDebugInformation>
1542 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1543 <SubSystem>Console</SubSystem>
1544 <TargetMachine>MachineX86</TargetMachine>
1545 </Link>
1546 </ItemDefinitionGroup>
1547 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
1548 <Midl>
1549 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1550 <HeaderFileName>
1551 </HeaderFileName>
1552 </Midl>
1553 <ClCompile>
1554 <Optimization>Disabled</Optimization>
1555 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1556 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1557 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1558 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1559 <WarningLevel>Level4</WarningLevel>
1560 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1561 </ClCompile>
1562 <ResourceCompile>
1563 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1564 <Culture>0x0409</Culture>
1565 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1566 </ResourceCompile>
1567 <Link>
1568 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1569 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1570 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1571 <GenerateDebugInformation>true</GenerateDebugInformation>
1572 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1573 <SubSystem>Console</SubSystem>
1574 <TargetMachine>MachineX86</TargetMachine>
1575 </Link>
1576 </ItemDefinitionGroup>
1577 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI|x64'">
1578 <Midl>
1579 <TargetEnvironment>X64</TargetEnvironment>
1580 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1581 <HeaderFileName>
1582 </HeaderFileName>
1583 </Midl>
1584 <ClCompile>
1585 <Optimization>Disabled</Optimization>
1586 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1587 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1588 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1589 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1590 <WarningLevel>Level4</WarningLevel>
1591 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1592 </ClCompile>
1593 <ResourceCompile>
1594 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1595 <Culture>0x0409</Culture>
1596 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1597 </ResourceCompile>
1598 <Link>
1599 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1600 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1601 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1602 <GenerateDebugInformation>true</GenerateDebugInformation>
1603 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1604 <SubSystem>Console</SubSystem>
1605 <TargetMachine>MachineX64</TargetMachine>
1606 </Link>
1607 </ItemDefinitionGroup>
1608 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL Windows SSPI - DLL WinIDN|x64'">
1609 <Midl>
1610 <TargetEnvironment>X64</TargetEnvironment>
1611 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1612 <HeaderFileName>
1613 </HeaderFileName>
1614 </Midl>
1615 <ClCompile>
1616 <Optimization>Disabled</Optimization>
1617 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1618 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1619 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1620 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1621 <WarningLevel>Level4</WarningLevel>
1622 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1623 </ClCompile>
1624 <ResourceCompile>
1625 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1626 <Culture>0x0409</Culture>
1627 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1628 </ResourceCompile>
1629 <Link>
1630 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1631 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1632 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1633 <GenerateDebugInformation>true</GenerateDebugInformation>
1634 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1635 <SubSystem>Console</SubSystem>
1636 <TargetMachine>MachineX64</TargetMachine>
1637 </Link>
1638 </ItemDefinitionGroup>
1639 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|Win32'">
1640 <Midl>
1641 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1642 <HeaderFileName>
1643 </HeaderFileName>
1644 </Midl>
1645 <ClCompile>
1646 <Optimization>MaxSpeed</Optimization>
1647 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1648 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1649 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1650 <StringPooling>true</StringPooling>
1651 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1652 <FunctionLevelLinking>true</FunctionLevelLinking>
1653 <WarningLevel>Level4</WarningLevel>
1654 </ClCompile>
1655 <ResourceCompile>
1656 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1657 <Culture>0x0409</Culture>
1658 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1659 </ResourceCompile>
1660 <Link>
1661 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1662 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1663 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1664 <SubSystem>Console</SubSystem>
1665 <TargetMachine>MachineX86</TargetMachine>
1666 </Link>
1667 </ItemDefinitionGroup>
1668 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL|x64'">
1669 <Midl>
1670 <TargetEnvironment>X64</TargetEnvironment>
1671 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1672 <HeaderFileName>
1673 </HeaderFileName>
1674 </Midl>
1675 <ClCompile>
1676 <Optimization>MaxSpeed</Optimization>
1677 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1678 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1679 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1680 <StringPooling>true</StringPooling>
1681 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1682 <FunctionLevelLinking>true</FunctionLevelLinking>
1683 <WarningLevel>Level4</WarningLevel>
1684 </ClCompile>
1685 <ResourceCompile>
1686 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1687 <Culture>0x0409</Culture>
1688 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1689 </ResourceCompile>
1690 <Link>
1691 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1692 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1693 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1694 <SubSystem>Console</SubSystem>
1695 <TargetMachine>MachineX64</TargetMachine>
1696 </Link>
1697 </ItemDefinitionGroup>
1698 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|Win32'">
1699 <Midl>
1700 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1701 <HeaderFileName>
1702 </HeaderFileName>
1703 </Midl>
1704 <ClCompile>
1705 <Optimization>MaxSpeed</Optimization>
1706 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1707 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1708 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1709 <StringPooling>true</StringPooling>
1710 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1711 <FunctionLevelLinking>true</FunctionLevelLinking>
1712 <WarningLevel>Level4</WarningLevel>
1713 </ClCompile>
1714 <ResourceCompile>
1715 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1716 <Culture>0x0409</Culture>
1717 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1718 </ResourceCompile>
1719 <Link>
1720 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1721 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1722 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1723 <SubSystem>Console</SubSystem>
1724 <TargetMachine>MachineX86</TargetMachine>
1725 </Link>
1726 </ItemDefinitionGroup>
1727 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|Win32'">
1728 <Midl>
1729 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1730 <HeaderFileName>
1731 </HeaderFileName>
1732 </Midl>
1733 <ClCompile>
1734 <Optimization>MaxSpeed</Optimization>
1735 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1736 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1737 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1738 <StringPooling>true</StringPooling>
1739 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1740 <FunctionLevelLinking>true</FunctionLevelLinking>
1741 <WarningLevel>Level4</WarningLevel>
1742 </ClCompile>
1743 <ResourceCompile>
1744 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1745 <Culture>0x0409</Culture>
1746 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1747 </ResourceCompile>
1748 <Link>
1749 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1750 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1751 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1752 <SubSystem>Console</SubSystem>
1753 <TargetMachine>MachineX86</TargetMachine>
1754 </Link>
1755 </ItemDefinitionGroup>
1756 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI|x64'">
1757 <Midl>
1758 <TargetEnvironment>X64</TargetEnvironment>
1759 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1760 <HeaderFileName>
1761 </HeaderFileName>
1762 </Midl>
1763 <ClCompile>
1764 <Optimization>MaxSpeed</Optimization>
1765 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1766 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1767 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1768 <StringPooling>true</StringPooling>
1769 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1770 <FunctionLevelLinking>true</FunctionLevelLinking>
1771 <WarningLevel>Level4</WarningLevel>
1772 </ClCompile>
1773 <ResourceCompile>
1774 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1775 <Culture>0x0409</Culture>
1776 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1777 </ResourceCompile>
1778 <Link>
1779 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1780 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1781 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1782 <SubSystem>Console</SubSystem>
1783 <TargetMachine>MachineX64</TargetMachine>
1784 </Link>
1785 </ItemDefinitionGroup>
1786 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL Windows SSPI - DLL WinIDN|x64'">
1787 <Midl>
1788 <TargetEnvironment>X64</TargetEnvironment>
1789 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1790 <HeaderFileName>
1791 </HeaderFileName>
1792 </Midl>
1793 <ClCompile>
1794 <Optimization>MaxSpeed</Optimization>
1795 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1796 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1797 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1798 <StringPooling>true</StringPooling>
1799 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1800 <FunctionLevelLinking>true</FunctionLevelLinking>
1801 <WarningLevel>Level4</WarningLevel>
1802 </ClCompile>
1803 <ResourceCompile>
1804 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1805 <Culture>0x0409</Culture>
1806 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1807 </ResourceCompile>
1808 <Link>
1809 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1810 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1811 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1812 <SubSystem>Console</SubSystem>
1813 <TargetMachine>MachineX64</TargetMachine>
1814 </Link>
1815 </ItemDefinitionGroup>
1816 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
1817 <Midl>
1818 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1819 <HeaderFileName>
1820 </HeaderFileName>
1821 </Midl>
1822 <ClCompile>
1823 <Optimization>Disabled</Optimization>
1824 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1825 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1826 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1827 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1828 <WarningLevel>Level4</WarningLevel>
1829 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1830 </ClCompile>
1831 <ResourceCompile>
1832 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1833 <Culture>0x0409</Culture>
1834 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1835 </ResourceCompile>
1836 <Link>
1837 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1838 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1839 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1840 <GenerateDebugInformation>true</GenerateDebugInformation>
1841 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1842 <SubSystem>Console</SubSystem>
1843 <TargetMachine>MachineX86</TargetMachine>
1844 </Link>
1845 </ItemDefinitionGroup>
1846 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug - DLL OpenSSL - DLL LibSSH2|x64'">
1847 <Midl>
1848 <TargetEnvironment>X64</TargetEnvironment>
1849 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1850 <HeaderFileName>
1851 </HeaderFileName>
1852 </Midl>
1853 <ClCompile>
1854 <Optimization>Disabled</Optimization>
1855 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1856 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1857 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1858 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1859 <WarningLevel>Level4</WarningLevel>
1860 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1861 </ClCompile>
1862 <ResourceCompile>
1863 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1864 <Culture>0x0409</Culture>
1865 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1866 </ResourceCompile>
1867 <Link>
1868 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
1869 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1870 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1871 <GenerateDebugInformation>true</GenerateDebugInformation>
1872 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1873 <SubSystem>Console</SubSystem>
1874 <TargetMachine>MachineX64</TargetMachine>
1875 </Link>
1876 </ItemDefinitionGroup>
1877 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|Win32'">
1878 <Midl>
1879 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1880 <HeaderFileName>
1881 </HeaderFileName>
1882 </Midl>
1883 <ClCompile>
1884 <Optimization>MaxSpeed</Optimization>
1885 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1886 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1887 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1888 <StringPooling>true</StringPooling>
1889 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1890 <FunctionLevelLinking>true</FunctionLevelLinking>
1891 <WarningLevel>Level4</WarningLevel>
1892 </ClCompile>
1893 <ResourceCompile>
1894 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1895 <Culture>0x0409</Culture>
1896 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1897 </ResourceCompile>
1898 <Link>
1899 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1900 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1901 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1902 <SubSystem>Console</SubSystem>
1903 <TargetMachine>MachineX86</TargetMachine>
1904 </Link>
1905 </ItemDefinitionGroup>
1906 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release - DLL OpenSSL - DLL LibSSH2|x64'">
1907 <Midl>
1908 <TargetEnvironment>X64</TargetEnvironment>
1909 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1910 <HeaderFileName>
1911 </HeaderFileName>
1912 </Midl>
1913 <ClCompile>
1914 <Optimization>MaxSpeed</Optimization>
1915 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
1916 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1917 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1918 <StringPooling>true</StringPooling>
1919 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
1920 <FunctionLevelLinking>true</FunctionLevelLinking>
1921 <WarningLevel>Level4</WarningLevel>
1922 </ClCompile>
1923 <ResourceCompile>
1924 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1925 <Culture>0x0409</Culture>
1926 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1927 </ResourceCompile>
1928 <Link>
1929 <AdditionalDependencies>ws2_32.lib;wldap32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1930 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1931 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1932 <SubSystem>Console</SubSystem>
1933 <TargetMachine>MachineX64</TargetMachine>
1934 </Link>
1935 </ItemDefinitionGroup>
1936 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|Win32'">
1937 <Midl>
1938 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1939 <HeaderFileName>
1940 </HeaderFileName>
1941 </Midl>
1942 <ClCompile>
1943 <Optimization>Disabled</Optimization>
1944 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1945 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1946 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1947 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1948 <WarningLevel>Level4</WarningLevel>
1949 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1950 </ClCompile>
1951 <ResourceCompile>
1952 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1953 <Culture>0x0409</Culture>
1954 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1955 </ResourceCompile>
1956 <Link>
1957 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1958 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1959 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1960 <GenerateDebugInformation>true</GenerateDebugInformation>
1961 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1962 <SubSystem>Console</SubSystem>
1963 <TargetMachine>MachineX86</TargetMachine>
1964 </Link>
1965 </ItemDefinitionGroup>
1966 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL|x64'">
1967 <Midl>
1968 <TargetEnvironment>X64</TargetEnvironment>
1969 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
1970 <HeaderFileName>
1971 </HeaderFileName>
1972 </Midl>
1973 <ClCompile>
1974 <Optimization>Disabled</Optimization>
1975 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1976 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1977 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
1978 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
1979 <WarningLevel>Level4</WarningLevel>
1980 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
1981 </ClCompile>
1982 <ResourceCompile>
1983 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1984 <Culture>0x0409</Culture>
1985 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1986 </ResourceCompile>
1987 <Link>
1988 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
1989 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
1990 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
1991 <GenerateDebugInformation>true</GenerateDebugInformation>
1992 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
1993 <SubSystem>Console</SubSystem>
1994 <TargetMachine>MachineX64</TargetMachine>
1995 </Link>
1996 </ItemDefinitionGroup>
1997 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|Win32'">
1998 <Midl>
1999 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2000 <HeaderFileName>
2001 </HeaderFileName>
2002 </Midl>
2003 <ClCompile>
2004 <Optimization>MaxSpeed</Optimization>
2005 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2006 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2007 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2008 <StringPooling>true</StringPooling>
2009 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2010 <FunctionLevelLinking>true</FunctionLevelLinking>
2011 <WarningLevel>Level4</WarningLevel>
2012 </ClCompile>
2013 <ResourceCompile>
2014 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2015 <Culture>0x0409</Culture>
2016 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2017 </ResourceCompile>
2018 <Link>
2019 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2021 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2022 <SubSystem>Console</SubSystem>
2023 <TargetMachine>MachineX86</TargetMachine>
2024 </Link>
2025 </ItemDefinitionGroup>
2026 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL|x64'">
2027 <Midl>
2028 <TargetEnvironment>X64</TargetEnvironment>
2029 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2030 <HeaderFileName>
2031 </HeaderFileName>
2032 </Midl>
2033 <ClCompile>
2034 <Optimization>MaxSpeed</Optimization>
2035 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2036 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2037 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2038 <StringPooling>true</StringPooling>
2039 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2040 <FunctionLevelLinking>true</FunctionLevelLinking>
2041 <WarningLevel>Level4</WarningLevel>
2042 </ClCompile>
2043 <ResourceCompile>
2044 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2045 <Culture>0x0409</Culture>
2046 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2047 </ResourceCompile>
2048 <Link>
2049 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2050 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2051 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2052 <SubSystem>Console</SubSystem>
2053 <TargetMachine>MachineX64</TargetMachine>
2054 </Link>
2055 </ItemDefinitionGroup>
2056 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|Win32'">
2057 <Midl>
2058 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2059 <HeaderFileName>
2060 </HeaderFileName>
2061 </Midl>
2062 <ClCompile>
2063 <Optimization>Disabled</Optimization>
2064 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2065 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2066 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2067 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2068 <WarningLevel>Level4</WarningLevel>
2069 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2070 </ClCompile>
2071 <ResourceCompile>
2072 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2073 <Culture>0x0409</Culture>
2074 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2075 </ResourceCompile>
2076 <Link>
2077 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2078 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2079 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\LIB Debug;..\..\..\..\..\libssh2\build\Win32\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2080 <GenerateDebugInformation>true</GenerateDebugInformation>
2081 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2082 <SubSystem>Console</SubSystem>
2083 <TargetMachine>MachineX86</TargetMachine>
2084 </Link>
2085 </ItemDefinitionGroup>
2086 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - LIB OpenSSL - LIB LibSSH2|x64'">
2087 <Midl>
2088 <TargetEnvironment>X64</TargetEnvironment>
2089 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2090 <HeaderFileName>
2091 </HeaderFileName>
2092 </Midl>
2093 <ClCompile>
2094 <Optimization>Disabled</Optimization>
2095 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2096 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2097 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2098 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2099 <WarningLevel>Level4</WarningLevel>
2100 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2101 </ClCompile>
2102 <ResourceCompile>
2103 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2104 <Culture>0x0409</Culture>
2105 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2106 </ResourceCompile>
2107 <Link>
2108 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2109 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2110 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\LIB Debug;..\..\..\..\..\libssh2\build\Win64\VC17\LIB Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2111 <GenerateDebugInformation>true</GenerateDebugInformation>
2112 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2113 <SubSystem>Console</SubSystem>
2114 <TargetMachine>MachineX64</TargetMachine>
2115 </Link>
2116 </ItemDefinitionGroup>
2117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|Win32'">
2118 <Midl>
2119 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2120 <HeaderFileName>
2121 </HeaderFileName>
2122 </Midl>
2123 <ClCompile>
2124 <Optimization>MaxSpeed</Optimization>
2125 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2126 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2127 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2128 <StringPooling>true</StringPooling>
2129 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2130 <FunctionLevelLinking>true</FunctionLevelLinking>
2131 <WarningLevel>Level4</WarningLevel>
2132 </ClCompile>
2133 <ResourceCompile>
2134 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2135 <Culture>0x0409</Culture>
2136 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2137 </ResourceCompile>
2138 <Link>
2139 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2140 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2141 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\LIB Release;..\..\..\..\..\libssh2\build\Win32\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2142 <SubSystem>Console</SubSystem>
2143 <TargetMachine>MachineX86</TargetMachine>
2144 </Link>
2145 </ItemDefinitionGroup>
2146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - LIB OpenSSL - LIB LibSSH2|x64'">
2147 <Midl>
2148 <TargetEnvironment>X64</TargetEnvironment>
2149 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2150 <HeaderFileName>
2151 </HeaderFileName>
2152 </Midl>
2153 <ClCompile>
2154 <Optimization>MaxSpeed</Optimization>
2155 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2156 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2157 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2158 <StringPooling>true</StringPooling>
2159 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2160 <FunctionLevelLinking>true</FunctionLevelLinking>
2161 <WarningLevel>Level4</WarningLevel>
2162 </ClCompile>
2163 <ResourceCompile>
2164 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2165 <Culture>0x0409</Culture>
2166 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2167 </ResourceCompile>
2168 <Link>
2169 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2170 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2171 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\LIB Release;..\..\..\..\..\libssh2\build\Win64\VC17\LIB Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2172 <SubSystem>Console</SubSystem>
2173 <TargetMachine>MachineX64</TargetMachine>
2174 </Link>
2175 </ItemDefinitionGroup>
2176 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|Win32'">
2177 <Midl>
2178 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2179 <HeaderFileName>
2180 </HeaderFileName>
2181 </Midl>
2182 <ClCompile>
2183 <Optimization>Disabled</Optimization>
2184 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2185 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2186 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2187 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2188 <WarningLevel>Level4</WarningLevel>
2189 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2190 </ClCompile>
2191 <ResourceCompile>
2192 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2193 <Culture>0x0409</Culture>
2194 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2195 </ResourceCompile>
2196 <Link>
2197 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2198 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2199 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2200 <GenerateDebugInformation>true</GenerateDebugInformation>
2201 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2202 <SubSystem>Console</SubSystem>
2203 <TargetMachine>MachineX86</TargetMachine>
2204 </Link>
2205 </ItemDefinitionGroup>
2206 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL|x64'">
2207 <Midl>
2208 <TargetEnvironment>X64</TargetEnvironment>
2209 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2210 <HeaderFileName>
2211 </HeaderFileName>
2212 </Midl>
2213 <ClCompile>
2214 <Optimization>Disabled</Optimization>
2215 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2216 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2217 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2218 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2219 <WarningLevel>Level4</WarningLevel>
2220 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2221 </ClCompile>
2222 <ResourceCompile>
2223 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2224 <Culture>0x0409</Culture>
2225 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2226 </ResourceCompile>
2227 <Link>
2228 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2229 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2230 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2231 <GenerateDebugInformation>true</GenerateDebugInformation>
2232 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2233 <SubSystem>Console</SubSystem>
2234 <TargetMachine>MachineX64</TargetMachine>
2235 </Link>
2236 </ItemDefinitionGroup>
2237 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|Win32'">
2238 <Midl>
2239 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2240 <HeaderFileName>
2241 </HeaderFileName>
2242 </Midl>
2243 <ClCompile>
2244 <Optimization>MaxSpeed</Optimization>
2245 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2246 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2247 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2248 <StringPooling>true</StringPooling>
2249 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2250 <FunctionLevelLinking>true</FunctionLevelLinking>
2251 <WarningLevel>Level4</WarningLevel>
2252 </ClCompile>
2253 <ResourceCompile>
2254 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2255 <Culture>0x0409</Culture>
2256 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2257 </ResourceCompile>
2258 <Link>
2259 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2260 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2261 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2262 <SubSystem>Console</SubSystem>
2263 <TargetMachine>MachineX86</TargetMachine>
2264 </Link>
2265 </ItemDefinitionGroup>
2266 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL|x64'">
2267 <Midl>
2268 <TargetEnvironment>X64</TargetEnvironment>
2269 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2270 <HeaderFileName>
2271 </HeaderFileName>
2272 </Midl>
2273 <ClCompile>
2274 <Optimization>MaxSpeed</Optimization>
2275 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2276 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2277 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2278 <StringPooling>true</StringPooling>
2279 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2280 <FunctionLevelLinking>true</FunctionLevelLinking>
2281 <WarningLevel>Level4</WarningLevel>
2282 </ClCompile>
2283 <ResourceCompile>
2284 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2285 <Culture>0x0409</Culture>
2286 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2287 </ResourceCompile>
2288 <Link>
2289 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2290 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2291 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2292 <SubSystem>Console</SubSystem>
2293 <TargetMachine>MachineX64</TargetMachine>
2294 </Link>
2295 </ItemDefinitionGroup>
2296 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|Win32'">
2297 <Midl>
2298 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2299 <HeaderFileName>
2300 </HeaderFileName>
2301 </Midl>
2302 <ClCompile>
2303 <Optimization>Disabled</Optimization>
2304 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2305 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2306 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2307 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2308 <WarningLevel>Level4</WarningLevel>
2309 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2310 </ClCompile>
2311 <ResourceCompile>
2312 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2313 <Culture>0x0409</Culture>
2314 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2315 </ResourceCompile>
2316 <Link>
2317 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2318 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2319 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2320 <GenerateDebugInformation>true</GenerateDebugInformation>
2321 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2322 <SubSystem>Console</SubSystem>
2323 <TargetMachine>MachineX86</TargetMachine>
2324 </Link>
2325 </ItemDefinitionGroup>
2326 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL OpenSSL - DLL LibSSH2|x64'">
2327 <Midl>
2328 <TargetEnvironment>X64</TargetEnvironment>
2329 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2330 <HeaderFileName>
2331 </HeaderFileName>
2332 </Midl>
2333 <ClCompile>
2334 <Optimization>Disabled</Optimization>
2335 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2336 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2337 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2338 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2339 <WarningLevel>Level4</WarningLevel>
2340 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2341 </ClCompile>
2342 <ResourceCompile>
2343 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2344 <Culture>0x0409</Culture>
2345 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2346 </ResourceCompile>
2347 <Link>
2348 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurld.lib;libcrypto.lib;libssl.lib;libssh2d.lib;%(AdditionalDependencies)</AdditionalDependencies>
2349 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2350 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC17\DLL Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2351 <GenerateDebugInformation>true</GenerateDebugInformation>
2352 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2353 <SubSystem>Console</SubSystem>
2354 <TargetMachine>MachineX64</TargetMachine>
2355 </Link>
2356 </ItemDefinitionGroup>
2357 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|Win32'">
2358 <Midl>
2359 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2360 <HeaderFileName>
2361 </HeaderFileName>
2362 </Midl>
2363 <ClCompile>
2364 <Optimization>MaxSpeed</Optimization>
2365 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2366 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2367 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2368 <StringPooling>true</StringPooling>
2369 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2370 <FunctionLevelLinking>true</FunctionLevelLinking>
2371 <WarningLevel>Level4</WarningLevel>
2372 </ClCompile>
2373 <ResourceCompile>
2374 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2375 <Culture>0x0409</Culture>
2376 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2377 </ResourceCompile>
2378 <Link>
2379 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libcrypto.lib;libssl.lib;libssh2.lib;%(AdditionalDependencies)</AdditionalDependencies>
2380 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2381 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win32\VC17\DLL Release;..\..\..\..\..\libssh2\build\Win32\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2382 <SubSystem>Console</SubSystem>
2383 <TargetMachine>MachineX86</TargetMachine>
2384 </Link>
2385 </ItemDefinitionGroup>
2386 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL OpenSSL - DLL LibSSH2|x64'">
2387 <Midl>
2388 <TargetEnvironment>X64</TargetEnvironment>
2389 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2390 <HeaderFileName>
2391 </HeaderFileName>
2392 </Midl>
2393 <ClCompile>
2394 <Optimization>MaxSpeed</Optimization>
2395 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2396 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2397 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2398 <StringPooling>true</StringPooling>
2399 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2400 <FunctionLevelLinking>true</FunctionLevelLinking>
2401 <WarningLevel>Level4</WarningLevel>
2402 </ClCompile>
2403 <ResourceCompile>
2404 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2405 <Culture>0x0409</Culture>
2406 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2407 </ResourceCompile>
2408 <Link>
2409 <AdditionalDependencies>crypt32.lib;ws2_32.lib;wldap32.lib;libcurl.lib;libssh2.lib;libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2410 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2411 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);..\..\..\..\..\openssl\build\Win64\VC17\DLL Release;..\..\..\..\..\libssh2\build\Win64\VC17\DLL Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2412 <SubSystem>Console</SubSystem>
2413 <TargetMachine>MachineX64</TargetMachine>
2414 </Link>
2415 </ItemDefinitionGroup>
2416 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|Win32'">
2417 <Midl>
2418 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2419 <HeaderFileName>
2420 </HeaderFileName>
2421 </Midl>
2422 <ClCompile>
2423 <Optimization>Disabled</Optimization>
2424 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2425 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2426 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2427 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2428 <WarningLevel>Level4</WarningLevel>
2429 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2430 </ClCompile>
2431 <ResourceCompile>
2432 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2433 <Culture>0x0409</Culture>
2434 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2435 </ResourceCompile>
2436 <Link>
2437 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2438 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2439 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2440 <GenerateDebugInformation>true</GenerateDebugInformation>
2441 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2442 <SubSystem>Console</SubSystem>
2443 <TargetMachine>MachineX86</TargetMachine>
2444 </Link>
2445 </ItemDefinitionGroup>
2446 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|Win32'">
2447 <Midl>
2448 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2449 <HeaderFileName>
2450 </HeaderFileName>
2451 </Midl>
2452 <ClCompile>
2453 <Optimization>Disabled</Optimization>
2454 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2455 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2456 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2457 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2458 <WarningLevel>Level4</WarningLevel>
2459 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2460 </ClCompile>
2461 <ResourceCompile>
2462 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2463 <Culture>0x0409</Culture>
2464 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2465 </ResourceCompile>
2466 <Link>
2467 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2468 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2469 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2470 <GenerateDebugInformation>true</GenerateDebugInformation>
2471 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2472 <SubSystem>Console</SubSystem>
2473 <TargetMachine>MachineX86</TargetMachine>
2474 </Link>
2475 </ItemDefinitionGroup>
2476 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI|x64'">
2477 <Midl>
2478 <TargetEnvironment>X64</TargetEnvironment>
2479 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2480 <HeaderFileName>
2481 </HeaderFileName>
2482 </Midl>
2483 <ClCompile>
2484 <Optimization>Disabled</Optimization>
2485 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2486 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2487 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2488 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2489 <WarningLevel>Level4</WarningLevel>
2490 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2491 </ClCompile>
2492 <ResourceCompile>
2493 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2494 <Culture>0x0409</Culture>
2495 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2496 </ResourceCompile>
2497 <Link>
2498 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2499 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2500 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2501 <GenerateDebugInformation>true</GenerateDebugInformation>
2502 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2503 <SubSystem>Console</SubSystem>
2504 <TargetMachine>MachineX64</TargetMachine>
2505 </Link>
2506 </ItemDefinitionGroup>
2507 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Debug - DLL Windows SSPI - DLL WinIDN|x64'">
2508 <Midl>
2509 <TargetEnvironment>X64</TargetEnvironment>
2510 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2511 <HeaderFileName>
2512 </HeaderFileName>
2513 </Midl>
2514 <ClCompile>
2515 <Optimization>Disabled</Optimization>
2516 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2517 <PreprocessorDefinitions>_DEBUG;_CONSOLE;DEBUGBUILD;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2518 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
2519 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
2520 <WarningLevel>Level4</WarningLevel>
2521 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2522 </ClCompile>
2523 <ResourceCompile>
2524 <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2525 <Culture>0x0409</Culture>
2526 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2527 </ResourceCompile>
2528 <Link>
2529 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurld.lib;%(AdditionalDependencies)</AdditionalDependencies>
2530 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2531 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2532 <GenerateDebugInformation>true</GenerateDebugInformation>
2533 <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2534 <SubSystem>Console</SubSystem>
2535 <TargetMachine>MachineX64</TargetMachine>
2536 </Link>
2537 </ItemDefinitionGroup>
2538 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|Win32'">
2539 <Midl>
2540 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2541 <HeaderFileName>
2542 </HeaderFileName>
2543 </Midl>
2544 <ClCompile>
2545 <Optimization>MaxSpeed</Optimization>
2546 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2547 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2548 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2549 <StringPooling>true</StringPooling>
2550 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2551 <FunctionLevelLinking>true</FunctionLevelLinking>
2552 <WarningLevel>Level4</WarningLevel>
2553 </ClCompile>
2554 <ResourceCompile>
2555 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2556 <Culture>0x0409</Culture>
2557 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2558 </ResourceCompile>
2559 <Link>
2560 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2561 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2562 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2563 <SubSystem>Console</SubSystem>
2564 <TargetMachine>MachineX86</TargetMachine>
2565 </Link>
2566 </ItemDefinitionGroup>
2567 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|Win32'">
2568 <Midl>
2569 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2570 <HeaderFileName>
2571 </HeaderFileName>
2572 </Midl>
2573 <ClCompile>
2574 <Optimization>MaxSpeed</Optimization>
2575 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2576 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2577 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2578 <StringPooling>true</StringPooling>
2579 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2580 <FunctionLevelLinking>true</FunctionLevelLinking>
2581 <WarningLevel>Level4</WarningLevel>
2582 </ClCompile>
2583 <ResourceCompile>
2584 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2585 <Culture>0x0409</Culture>
2586 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2587 </ResourceCompile>
2588 <Link>
2589 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2590 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2591 <AdditionalLibraryDirectories>..\..\..\..\build\Win32\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2592 <SubSystem>Console</SubSystem>
2593 <TargetMachine>MachineX86</TargetMachine>
2594 </Link>
2595 </ItemDefinitionGroup>
2596 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI|x64'">
2597 <Midl>
2598 <TargetEnvironment>X64</TargetEnvironment>
2599 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2600 <HeaderFileName>
2601 </HeaderFileName>
2602 </Midl>
2603 <ClCompile>
2604 <Optimization>MaxSpeed</Optimization>
2605 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2606 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2607 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2608 <StringPooling>true</StringPooling>
2609 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2610 <FunctionLevelLinking>true</FunctionLevelLinking>
2611 <WarningLevel>Level4</WarningLevel>
2612 </ClCompile>
2613 <ResourceCompile>
2614 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2615 <Culture>0x0409</Culture>
2616 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2617 </ResourceCompile>
2618 <Link>
2619 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2620 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2621 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2622 <SubSystem>Console</SubSystem>
2623 <TargetMachine>MachineX64</TargetMachine>
2624 </Link>
2625 </ItemDefinitionGroup>
2626 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='LIB Release - DLL Windows SSPI - DLL WinIDN|x64'">
2627 <Midl>
2628 <TargetEnvironment>X64</TargetEnvironment>
2629 <TypeLibraryName>$(TargetDir)$(TargetName).tlb</TypeLibraryName>
2630 <HeaderFileName>
2631 </HeaderFileName>
2632 </Midl>
2633 <ClCompile>
2634 <Optimization>MaxSpeed</Optimization>
2635 <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2636 <AdditionalIncludeDirectories>..\..\..\..\include;..\..\..\..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2637 <PreprocessorDefinitions>NDEBUG;_CONSOLE;CURL_STATICLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2638 <StringPooling>true</StringPooling>
2639 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2640 <FunctionLevelLinking>true</FunctionLevelLinking>
2641 <WarningLevel>Level4</WarningLevel>
2642 </ClCompile>
2643 <ResourceCompile>
2644 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2645 <Culture>0x0409</Culture>
2646 <AdditionalIncludeDirectories>..\..\..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2647 </ResourceCompile>
2648 <Link>
2649 <AdditionalDependencies>ws2_32.lib;wldap32.lib;crypt32.lib;normaliz.lib;libcurl.lib;%(AdditionalDependencies)</AdditionalDependencies>
2650 <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
2651 <AdditionalLibraryDirectories>..\..\..\..\build\Win64\VC17\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
2652 <SubSystem>Console</SubSystem>
2653 <TargetMachine>MachineX64</TargetMachine>
2654 </Link>
2655 </ItemDefinitionGroup>
2656 <ItemGroup>
2657 <ClCompile Include="..\..\..\..\lib\curl_ctype.c" />
2658 <ClCompile Include="..\..\..\..\lib\curl_multibyte.c" />
2659 <ClCompile Include="..\..\..\..\lib\dynbuf.c" />
2660 <ClCompile Include="..\..\..\..\lib\nonblock.c" />
2661 <ClCompile Include="..\..\..\..\lib\strtoofft.c" />
2662 <ClCompile Include="..\..\..\..\lib\version_win32.c" />
2663 <ClCompile Include="..\..\..\..\lib\warnless.c" />
2664 <ClCompile Include="..\..\..\..\src\slist_wc.c" />
2665 <ClCompile Include="..\..\..\..\src\tool_binmode.c" />
2666 <ClCompile Include="..\..\..\..\src\tool_bname.c" />
2667 <ClCompile Include="..\..\..\..\src\tool_cb_dbg.c" />
2668 <ClCompile Include="..\..\..\..\src\tool_cb_hdr.c" />
2669 <ClCompile Include="..\..\..\..\src\tool_cb_prg.c" />
2670 <ClCompile Include="..\..\..\..\src\tool_cb_rea.c" />
2671 <ClCompile Include="..\..\..\..\src\tool_cb_see.c" />
2672 <ClCompile Include="..\..\..\..\src\tool_cb_wrt.c" />
2673 <ClCompile Include="..\..\..\..\src\tool_cfgable.c" />
2674 <ClCompile Include="..\..\..\..\src\tool_dirhie.c" />
2675 <ClCompile Include="..\..\..\..\src\tool_doswin.c" />
2676 <ClCompile Include="..\..\..\..\src\tool_easysrc.c" />
2677 <ClCompile Include="..\..\..\..\src\tool_filetime.c" />
2678 <ClCompile Include="..\..\..\..\src\tool_findfile.c" />
2679 <ClCompile Include="..\..\..\..\src\tool_formparse.c" />
2680 <ClCompile Include="..\..\..\..\src\tool_getparam.c" />
2681 <ClCompile Include="..\..\..\..\src\tool_getpass.c" />
2682 <ClCompile Include="..\..\..\..\src\tool_help.c" />
2683 <ClCompile Include="..\..\..\..\src\tool_helpers.c" />
2684 <ClCompile Include="..\..\..\..\src\tool_hugehelp.c" />
2685 <ClCompile Include="..\..\..\..\src\tool_libinfo.c" />
2686 <ClCompile Include="..\..\..\..\src\tool_listhelp.c" />
2687 <ClCompile Include="..\..\..\..\src\tool_main.c" />
2688 <ClCompile Include="..\..\..\..\src\tool_msgs.c" />
2689 <ClCompile Include="..\..\..\..\src\tool_operate.c" />
2690 <ClCompile Include="..\..\..\..\src\tool_operhlp.c" />
2691 <ClCompile Include="..\..\..\..\src\tool_panykey.c" />
2692 <ClCompile Include="..\..\..\..\src\tool_paramhlp.c" />
2693 <ClCompile Include="..\..\..\..\src\tool_parsecfg.c" />
2694 <ClCompile Include="..\..\..\..\src\tool_progress.c" />
2695 <ClCompile Include="..\..\..\..\src\tool_setopt.c" />
2696 <ClCompile Include="..\..\..\..\src\tool_sleep.c" />
2697 <ClCompile Include="..\..\..\..\src\tool_strdup.c" />
2698 <ClCompile Include="..\..\..\..\src\tool_urlglob.c" />
2699 <ClCompile Include="..\..\..\..\src\tool_util.c" />
2700 <ClCompile Include="..\..\..\..\src\tool_vms.c" />
2701 <ClCompile Include="..\..\..\..\src\tool_writeout.c" />
2702 <ClCompile Include="..\..\..\..\src\tool_writeout_json.c" />
2703 <ClCompile Include="..\..\..\..\src\tool_xattr.c" />
2704 </ItemGroup>
2705 <ItemGroup>
2706 <ClInclude Include="..\..\..\..\lib\config-win32.h" />
2707 <ClInclude Include="..\..\..\..\lib\curl_ctype.h" />
2708 <ClInclude Include="..\..\..\..\lib\curl_multibyte.h" />
2709 <ClInclude Include="..\..\..\..\lib\curl_setup.h" />
2710 <ClInclude Include="..\..\..\..\lib\dynbuf.h" />
2711 <ClInclude Include="..\..\..\..\lib\nonblock.h" />
2712 <ClInclude Include="..\..\..\..\lib\strtoofft.h" />
2713 <ClInclude Include="..\..\..\..\lib\version_win32.h" />
2714 <ClInclude Include="..\..\..\..\lib\warnless.h" />
2715 <ClInclude Include="..\..\..\..\src\slist_wc.h" />
2716 <ClInclude Include="..\..\..\..\src\tool_binmode.h" />
2717 <ClInclude Include="..\..\..\..\src\tool_bname.h" />
2718 <ClInclude Include="..\..\..\..\src\tool_cb_dbg.h" />
2719 <ClInclude Include="..\..\..\..\src\tool_cb_hdr.h" />
2720 <ClInclude Include="..\..\..\..\src\tool_cb_prg.h" />
2721 <ClInclude Include="..\..\..\..\src\tool_cb_rea.h" />
2722 <ClInclude Include="..\..\..\..\src\tool_cb_see.h" />
2723 <ClInclude Include="..\..\..\..\src\tool_cb_wrt.h" />
2724 <ClInclude Include="..\..\..\..\src\tool_cfgable.h" />
2725 <ClInclude Include="..\..\..\..\src\tool_dirhie.h" />
2726 <ClInclude Include="..\..\..\..\src\tool_doswin.h" />
2727 <ClInclude Include="..\..\..\..\src\tool_easysrc.h" />
2728 <ClInclude Include="..\..\..\..\src\tool_filetime.h" />
2729 <ClInclude Include="..\..\..\..\src\tool_findfile.h" />
2730 <ClInclude Include="..\..\..\..\src\tool_formparse.h" />
2731 <ClInclude Include="..\..\..\..\src\tool_getparam.h" />
2732 <ClInclude Include="..\..\..\..\src\tool_getpass.h" />
2733 <ClInclude Include="..\..\..\..\src\tool_helpers.h" />
2734 <ClInclude Include="..\..\..\..\src\tool_help.h" />
2735 <ClInclude Include="..\..\..\..\src\tool_hugehelp.h" />
2736 <ClInclude Include="..\..\..\..\src\tool_libinfo.h" />
2737 <ClInclude Include="..\..\..\..\src\tool_main.h" />
2738 <ClInclude Include="..\..\..\..\src\tool_msgs.h" />
2739 <ClInclude Include="..\..\..\..\src\tool_operate.h" />
2740 <ClInclude Include="..\..\..\..\src\tool_operhlp.h" />
2741 <ClInclude Include="..\..\..\..\src\tool_panykey.h" />
2742 <ClInclude Include="..\..\..\..\src\tool_paramhlp.h" />
2743 <ClInclude Include="..\..\..\..\src\tool_parsecfg.h" />
2744 <ClInclude Include="..\..\..\..\src\tool_progress.h" />
2745 <ClInclude Include="..\..\..\..\src\tool_sdecls.h" />
2746 <ClInclude Include="..\..\..\..\src\tool_setopt.h" />
2747 <ClInclude Include="..\..\..\..\src\tool_setup.h" />
2748 <ClInclude Include="..\..\..\..\src\tool_sleep.h" />
2749 <ClInclude Include="..\..\..\..\src\tool_strdup.h" />
2750 <ClInclude Include="..\..\..\..\src\tool_urlglob.h" />
2751 <ClInclude Include="..\..\..\..\src\tool_util.h" />
2752 <ClInclude Include="..\..\..\..\src\tool_version.h" />
2753 <ClInclude Include="..\..\..\..\src\tool_vms.h" />
2754 <ClInclude Include="..\..\..\..\src\tool_writeout.h" />
2755 <ClInclude Include="..\..\..\..\src\tool_writeout_json.h" />
2756 <ClInclude Include="..\..\..\..\src\tool_xattr.h" />
2757 </ItemGroup>
2758 <ItemGroup>
2759 <ResourceCompile Include="..\..\..\..\src\curl.rc" />
2760 </ItemGroup>
2761 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2762 <ImportGroup Label="ExtensionTargets">
2763 </ImportGroup>
2764 </Project>
+0
-17
projects/Windows/VC17/src/curl.vcxproj.filters less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <Filter Include="Source Files">
4 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
5 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
6 </Filter>
7 <Filter Include="Header Files">
8 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
9 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
10 </Filter>
11 <Filter Include="Resource Files">
12 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
13 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
14 </Filter>
15 </ItemGroup>
16 </Project>
55 rem * | (__| |_| | _ <| |___
66 rem * \___|\___/|_| \_\_____|
77 rem *
8 rem * Copyright (C) 2014 - 2020, Steve Holme, <steve_holme@hotmail.com>.
8 rem * Copyright (C) 2014 - 2022, Steve Holme, <steve_holme@hotmail.com>.
99 rem *
1010 rem * This software is licensed as described in the file COPYING, which
1111 rem * you should have received as part of this distribution. The terms
112112 if "%CHECK_SRC%" == "TRUE" (
113113 rem Check the src directory
114114 if exist %SRC_DIR%\src (
115 for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
116 for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
115 for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
116 for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
117117 )
118118 )
119119
120120 if "%CHECK_LIB%" == "TRUE" (
121121 rem Check the lib directory
122122 if exist %SRC_DIR%\lib (
123 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
124 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake -Wcurl_config.h.in -Wcurl_config.h "%%i"
123 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
124 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake -Wcurl_config.h.in -Wcurl_config.h "%%i"
125125 )
126126
127127 rem Check the lib\vauth directory
128128 if exist %SRC_DIR%\lib\vauth (
129 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i"
130 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i"
129 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i"
130 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i"
131131 )
132132
133133 rem Check the lib\vquic directory
134134 if exist %SRC_DIR%\lib\vquic (
135 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vquic" "%%i"
136 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vquic" "%%i"
135 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vquic" "%%i"
136 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vquic\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vquic" "%%i"
137137 )
138138
139139 rem Check the lib\vssh directory
140140 if exist %SRC_DIR%\lib\vssh (
141 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vssh\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vssh" "%%i"
142 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vssh\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vssh" "%%i"
141 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vssh\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vssh" "%%i"
142 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vssh\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vssh" "%%i"
143143 )
144144
145145 rem Check the lib\vtls directory
146146 if exist %SRC_DIR%\lib\vtls (
147 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
148 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
147 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
148 for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
149149 )
150150 )
151151
152152 if "%CHECK_TESTS%" == "TRUE" (
153153 rem Check the tests\libtest directory
154154 if exist %SRC_DIR%\tests\libtest (
155 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\libtest\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\libtest" "%%i"
156 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\libtest\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\libtest" "%%i"
155 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\libtest\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\libtest" "%%i"
156 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\libtest\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\libtest" "%%i"
157157 )
158158
159159 rem Check the tests\unit directory
160160 if exist %SRC_DIR%\tests\unit (
161 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
162 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
161 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
162 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
163163 )
164164
165165 rem Check the tests\server directory
166166 if exist %SRC_DIR%\tests\server (
167 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
168 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
167 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
168 for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
169169 )
170170 )
171171
172172 if "%CHECK_EXAMPLES%" == "TRUE" (
173173 rem Check the docs\examples directory
174174 if exist %SRC_DIR%\docs\examples (
175 for /f "delims=" %%i in ('dir "%SRC_DIR%\docs\examples\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\docs\examples" -ASNPRINTF "%%i"
175 for /f "delims=" %%i in ('dir "%SRC_DIR%\docs\examples\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\docs\examples" -ASNPRINTF "%%i"
176176 )
177177 )
178178
5151 set VERSION=VC12
5252 ) else if /i "%~1" == "vc14" (
5353 set VERSION=VC14
54 ) else if /i "%~1" == "vc15" (
55 set VERSION=VC15
56 ) else if /i "%~1" == "vc17" (
57 set VERSION=VC17
54 ) else if /i "%~1" == "vc14.10" (
55 set VERSION=VC14.10
56 ) else if /i "%~1" == "vc14.30" (
57 set VERSION=VC14.30
5858 ) else if /i "%~1" == "-clean" (
5959 set MODE=CLEAN
6060 ) else if /i "%~1" == "-?" (
8484 if "%VERSION%" == "VC11" goto vc11
8585 if "%VERSION%" == "VC12" goto vc12
8686 if "%VERSION%" == "VC14" goto vc14
87 if "%VERSION%" == "VC15" goto vc15
88 if "%VERSION%" == "VC17" goto vc17
87 if "%VERSION%" == "VC14.10" goto vc14.10
88 if "%VERSION%" == "VC14.30" goto vc14.30
8989
9090 :vc10
9191 echo.
147147
148148 if not "%VERSION%" == "ALL" goto success
149149
150 :vc15
151 echo.
152
153 if "%MODE%" == "GENERATE" (
154 echo Generating VC15 project files
155 call :generate vcxproj Windows\VC15\src\curl.tmpl Windows\VC15\src\curl.vcxproj
156 call :generate vcxproj Windows\VC15\lib\libcurl.tmpl Windows\VC15\lib\libcurl.vcxproj
157 ) else (
158 echo Removing VC15 project files
159 call :clean Windows\VC15\src\curl.vcxproj
160 call :clean Windows\VC15\lib\libcurl.vcxproj
150 :vc14.10
151 echo.
152
153 if "%MODE%" == "GENERATE" (
154 echo Generating VC14.10 project files
155 call :generate vcxproj Windows\VC14.10\src\curl.tmpl Windows\VC14.10\src\curl.vcxproj
156 call :generate vcxproj Windows\VC14.10\lib\libcurl.tmpl Windows\VC14.10\lib\libcurl.vcxproj
157 ) else (
158 echo Removing VC14.10 project files
159 call :clean Windows\VC14.10\src\curl.vcxproj
160 call :clean Windows\VC14.10\lib\libcurl.vcxproj
161161 )
162162
163163 if not "%VERSION%" == "ALL" goto success
164164
165 :vc17
166 echo.
167
168 if "%MODE%" == "GENERATE" (
169 echo Generating VC17 project files
170 call :generate vcxproj Windows\VC17\src\curl.tmpl Windows\VC17\src\curl.vcxproj
171 call :generate vcxproj Windows\VC17\lib\libcurl.tmpl Windows\VC17\lib\libcurl.vcxproj
172 ) else (
173 echo Removing VC17 project files
174 call :clean Windows\VC17\src\curl.vcxproj
175 call :clean Windows\VC17\lib\libcurl.vcxproj
165 :vc14.30
166 echo.
167
168 if "%MODE%" == "GENERATE" (
169 echo Generating VC14.30 project files
170 call :generate vcxproj Windows\VC14.30\src\curl.tmpl Windows\VC14.30\src\curl.vcxproj
171 call :generate vcxproj Windows\VC14.30\lib\libcurl.tmpl Windows\VC14.30\lib\libcurl.vcxproj
172 ) else (
173 echo Removing VC14.30 project files
174 call :clean Windows\VC14.30\src\curl.vcxproj
175 call :clean Windows\VC14.30\lib\libcurl.vcxproj
176176 )
177177
178178 goto success
179179
180180 rem Main generate function.
181181 rem
182 rem %1 - Project Type (vcxproj for VC10, VC11, VC12, VC14, VC15 and VC17)
182 rem %1 - Project Type (vcxproj for VC10, VC11, VC12, VC14, VC14.10 and VC14.30)
183183 rem %2 - Input template file
184184 rem %3 - Output project file
185185 rem
208208 for /f "delims=" %%r in ('dir /b ..\src\*.rc') do call :element %1 src "%%r" %3
209209 ) else if "!var!" == "CURL_SRC_X_C_FILES" (
210210 call :element %1 lib "strtoofft.c" %3
211 call :element %1 lib "timediff.c" %3
211212 call :element %1 lib "nonblock.c" %3
212213 call :element %1 lib "warnless.c" %3
213214 call :element %1 lib "curl_ctype.c" %3
218219 call :element %1 lib "config-win32.h" %3
219220 call :element %1 lib "curl_setup.h" %3
220221 call :element %1 lib "strtoofft.h" %3
222 call :element %1 lib "timediff.h" %3
221223 call :element %1 lib "nonblock.h" %3
222224 call :element %1 lib "warnless.h" %3
223225 call :element %1 lib "curl_ctype.h" %3
257259
258260 rem Generates a single file xml element.
259261 rem
260 rem %1 - Project Type (vcxproj for VC10, VC11, VC12, VC14, VC15 and VC17)
262 rem %1 - Project Type (vcxproj for VC10, VC11, VC12, VC14, VC14.10 and VC14.30)
261263 rem %2 - Directory (src, lib, lib\vauth, lib\vquic, lib\vssh, lib\vtls)
262264 rem %3 - Source filename
263265 rem %4 - Output project file
352354 echo vc11 - Use Visual Studio 2012
353355 echo vc12 - Use Visual Studio 2013
354356 echo vc14 - Use Visual Studio 2015
355 echo vc15 - Use Visual Studio 2017
356 echo vc17 - Use Visual Studio 2022
357 echo vc14.10 - Use Visual Studio 2017
358 echo vc14.30 - Use Visual Studio 2022
357359 echo.
358360 echo -clean - Removes the project files
359361 goto error
44 # | (__| |_| | _ <| |___
55 # \___|\___/|_| \_\_____|
66 #
7 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 #
99 # This software is licensed as described in the file COPYING, which
1010 # you should have received as part of this distribution. The terms
1818 # KIND, either express or implied.
1919 #
2020 ###########################################################################
21
22 EXTRA_DIST = updatemanpages.pl coverage.sh completion.pl firefox-db2pem.sh \
23 checksrc.pl mk-ca-bundle.pl
24
2125 ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
2226 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
2327 PERL = @PERL@
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 #***************************************************************************
17 # _ _ ____ _
18 # Project ___| | | | _ \| |
19 # / __| | | | |_) | |
20 # | (__| |_| | _ <| |___
21 # \___|\___/|_| \_\_____|
22 #
23 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
24 #
25 # This software is licensed as described in the file COPYING, which
26 # you should have received as part of this distribution. The terms
27 # are also available at https://curl.se/docs/copyright.html.
28 #
29 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
30 # copies of the Software, and permit persons to whom the Software is
31 # furnished to do so, under the terms of the COPYING file.
32 #
33 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
34 # KIND, either express or implied.
35 #
36 ###########################################################################
1537 VPATH = @srcdir@
1638 am__is_gnu_make = { \
1739 if test -z '$(MAKELEVEL)'; then \
187209 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
188210 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
189211 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
212 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
190213 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
191214 CYGPATH_W = @CYGPATH_W@
192215 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
204227 ETAGS = @ETAGS@
205228 EXEEXT = @EXEEXT@
206229 FGREP = @FGREP@
230 FILECMD = @FILECMD@
207231 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
208232 GCOV = @GCOV@
209233 GREP = @GREP@
279303 USE_LIBSSH = @USE_LIBSSH@
280304 USE_LIBSSH2 = @USE_LIBSSH2@
281305 USE_MBEDTLS = @USE_MBEDTLS@
306 USE_MSH3 = @USE_MSH3@
282307 USE_NGHTTP2 = @USE_NGHTTP2@
283308 USE_NGHTTP3 = @USE_NGHTTP3@
284309 USE_NGTCP2 = @USE_NGTCP2@
300325 VERSION = @VERSION@
301326 VERSIONNUM = @VERSIONNUM@
302327 ZLIB_LIBS = @ZLIB_LIBS@
303
304 #***************************************************************************
305 # _ _ ____ _
306 # Project ___| | | | _ \| |
307 # / __| | | | |_) | |
308 # | (__| |_| | _ <| |___
309 # \___|\___/|_| \_\_____|
310 #
311 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
312 #
313 # This software is licensed as described in the file COPYING, which
314 # you should have received as part of this distribution. The terms
315 # are also available at https://curl.se/docs/copyright.html.
316 #
317 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
318 # copies of the Software, and permit persons to whom the Software is
319 # furnished to do so, under the terms of the COPYING file.
320 #
321 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
322 # KIND, either express or implied.
323 #
324 ###########################################################################
325328 ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
326329 abs_builddir = @abs_builddir@
327330 abs_srcdir = @abs_srcdir@
377380 top_build_prefix = @top_build_prefix@
378381 top_builddir = @top_builddir@
379382 top_srcdir = @top_srcdir@
383 EXTRA_DIST = updatemanpages.pl coverage.sh completion.pl firefox-db2pem.sh \
384 checksrc.pl mk-ca-bundle.pl
385
380386 ZSH_COMPLETION_FUNCTION_FILENAME = _curl
381387 FISH_COMPLETION_FUNCTION_FILENAME = curl.fish
382388 CLEANFILES = $(ZSH_COMPLETION_FUNCTION_FILENAME) $(FISH_COMPLETION_FUNCTION_FILENAME)
0 #!/usr/bin/env perl
1 #***************************************************************************
2 # _ _ ____ _
3 # Project ___| | | | _ \| |
4 # / __| | | | |_) | |
5 # | (__| |_| | _ <| |___
6 # \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 2011 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at https://curl.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 ###########################################################################
22
23 use strict;
24 use warnings;
25
26 my $max_column = 79;
27 my $indent = 2;
28
29 my $warnings = 0;
30 my $swarnings = 0;
31 my $errors = 0;
32 my $serrors = 0;
33 my $suppressed; # skipped problems
34 my $file;
35 my $dir=".";
36 my $wlist="";
37 my @alist;
38 my $windows_os = $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'msys';
39 my $verbose;
40 my %skiplist;
41
42 my %ignore;
43 my %ignore_set;
44 my %ignore_used;
45 my @ignore_line;
46
47 my %warnings_extended = (
48 'COPYRIGHTYEAR' => 'copyright year incorrect',
49 'STRERROR', => 'strerror() detected',
50 );
51
52 my %warnings = (
53 'LONGLINE' => "Line longer than $max_column",
54 'TABS' => 'TAB characters not allowed',
55 'TRAILINGSPACE' => 'Trailing whitespace on the line',
56 'CPPCOMMENTS' => '// comment detected',
57 'SPACEBEFOREPAREN' => 'space before an open parenthesis',
58 'SPACEAFTERPAREN' => 'space after open parenthesis',
59 'SPACEBEFORECLOSE' => 'space before a close parenthesis',
60 'SPACEBEFORECOMMA' => 'space before a comma',
61 'RETURNNOSPACE' => 'return without space',
62 'COMMANOSPACE' => 'comma without following space',
63 'BRACEELSE' => '} else on the same line',
64 'PARENBRACE' => '){ without sufficient space',
65 'SPACESEMICOLON' => 'space before semicolon',
66 'BANNEDFUNC' => 'a banned function was used',
67 'FOPENMODE' => 'fopen needs a macro for the mode string',
68 'BRACEPOS' => 'wrong position for an open brace',
69 'INDENTATION' => 'wrong start column for code',
70 'COPYRIGHT' => 'file missing a copyright statement',
71 'BADCOMMAND' => 'bad !checksrc! instruction',
72 'UNUSEDIGNORE' => 'a warning ignore was not used',
73 'OPENCOMMENT' => 'file ended with a /* comment still "open"',
74 'ASTERISKSPACE' => 'pointer declared with space after asterisk',
75 'ASTERISKNOSPACE' => 'pointer declared without space before asterisk',
76 'ASSIGNWITHINCONDITION' => 'assignment within conditional expression',
77 'EQUALSNOSPACE' => 'equals sign without following space',
78 'NOSPACEEQUALS' => 'equals sign without preceding space',
79 'SEMINOSPACE' => 'semicolon without following space',
80 'MULTISPACE' => 'multiple spaces used when not suitable',
81 'SIZEOFNOPAREN' => 'use of sizeof without parentheses',
82 'SNPRINTF' => 'use of snprintf',
83 'ONELINECONDITION' => 'conditional block on the same line as the if()',
84 'TYPEDEFSTRUCT' => 'typedefed struct',
85 'DOBRACE' => 'A single space between do and open brace',
86 'BRACEWHILE' => 'A single space between open brace and while',
87 'EXCLAMATIONSPACE' => 'Whitespace after exclamation mark in expression',
88 'EMPTYLINEBRACE' => 'Empty line before the open brace',
89 'EQUALSNULL' => 'if/while comparison with == NULL',
90 'NOTEQUALSZERO', => 'if/while comparison with != 0',
91 );
92
93 sub readskiplist {
94 open(W, "<$dir/checksrc.skip") or return;
95 my @all=<W>;
96 for(@all) {
97 $windows_os ? $_ =~ s/\r?\n$// : chomp;
98 $skiplist{$_}=1;
99 }
100 close(W);
101 }
102
103 # Reads the .checksrc in $dir for any extended warnings to enable locally.
104 # Currently there is no support for disabling warnings from the standard set,
105 # and since that's already handled via !checksrc! commands there is probably
106 # little use to add it.
107 sub readlocalfile {
108 my $i = 0;
109
110 open(my $rcfile, "<", "$dir/.checksrc") or return;
111
112 while(<$rcfile>) {
113 $i++;
114
115 # Lines starting with '#' are considered comments
116 if (/^\s*(#.*)/) {
117 next;
118 }
119 elsif (/^\s*enable ([A-Z]+)$/) {
120 if(!defined($warnings_extended{$1})) {
121 print STDERR "invalid warning specified in .checksrc: \"$1\"\n";
122 next;
123 }
124 $warnings{$1} = $warnings_extended{$1};
125 }
126 elsif (/^\s*disable ([A-Z]+)$/) {
127 if(!defined($warnings{$1})) {
128 print STDERR "invalid warning specified in .checksrc: \"$1\"\n";
129 next;
130 }
131 # Accept-list
132 push @alist, $1;
133 }
134 else {
135 die "Invalid format in $dir/.checksrc on line $i\n";
136 }
137 }
138 close($rcfile);
139 }
140
141 sub checkwarn {
142 my ($name, $num, $col, $file, $line, $msg, $error) = @_;
143
144 my $w=$error?"error":"warning";
145 my $nowarn=0;
146
147 #if(!$warnings{$name}) {
148 # print STDERR "Dev! there's no description for $name!\n";
149 #}
150
151 # checksrc.skip
152 if($skiplist{$line}) {
153 $nowarn = 1;
154 }
155 # !checksrc! controlled
156 elsif($ignore{$name}) {
157 $ignore{$name}--;
158 $ignore_used{$name}++;
159 $nowarn = 1;
160 if(!$ignore{$name}) {
161 # reached zero, enable again
162 enable_warn($name, $num, $file, $line);
163 }
164 }
165
166 if($nowarn) {
167 $suppressed++;
168 if($w) {
169 $swarnings++;
170 }
171 else {
172 $serrors++;
173 }
174 return;
175 }
176
177 if($w) {
178 $warnings++;
179 }
180 else {
181 $errors++;
182 }
183
184 $col++;
185 print "$file:$num:$col: $w: $msg ($name)\n";
186 print " $line\n";
187
188 if($col < 80) {
189 my $pref = (' ' x $col);
190 print "${pref}^\n";
191 }
192 }
193
194 $file = shift @ARGV;
195
196 while(defined $file) {
197
198 if($file =~ /-D(.*)/) {
199 $dir = $1;
200 $file = shift @ARGV;
201 next;
202 }
203 elsif($file =~ /-W(.*)/) {
204 $wlist .= " $1 ";
205 $file = shift @ARGV;
206 next;
207 }
208 elsif($file =~ /-A(.+)/) {
209 push @alist, $1;
210 $file = shift @ARGV;
211 next;
212 }
213 elsif($file =~ /-i([1-9])/) {
214 $indent = $1 + 0;
215 $file = shift @ARGV;
216 next;
217 }
218 elsif($file =~ /-m([0-9]+)/) {
219 $max_column = $1 + 0;
220 $file = shift @ARGV;
221 next;
222 }
223 elsif($file =~ /^(-h|--help)/) {
224 undef $file;
225 last;
226 }
227
228 last;
229 }
230
231 if(!$file) {
232 print "checksrc.pl [option] <file1> [file2] ...\n";
233 print " Options:\n";
234 print " -A[rule] Accept this violation, can be used multiple times\n";
235 print " -D[DIR] Directory to prepend file names\n";
236 print " -h Show help output\n";
237 print " -W[file] Skip the given file - ignore all its flaws\n";
238 print " -i<n> Indent spaces. Default: 2\n";
239 print " -m<n> Maximum line length. Default: 79\n";
240 print "\nDetects and warns for these problems:\n";
241 my @allw = keys %warnings;
242 push @allw, keys %warnings_extended;
243 for my $w (sort @allw) {
244 if($warnings{$w}) {
245 printf (" %-18s: %s\n", $w, $warnings{$w});
246 }
247 else {
248 printf (" %-18s: %s[*]\n", $w, $warnings_extended{$w});
249 }
250 }
251 print " [*] = disabled by default\n";
252 exit;
253 }
254
255 readskiplist();
256 readlocalfile();
257
258 do {
259 if("$wlist" !~ / $file /) {
260 my $fullname = $file;
261 $fullname = "$dir/$file" if ($fullname !~ '^\.?\.?/');
262 scanfile($fullname);
263 }
264 $file = shift @ARGV;
265
266 } while($file);
267
268 sub accept_violations {
269 for my $r (@alist) {
270 if(!$warnings{$r}) {
271 print "'$r' is not a warning to accept!\n";
272 exit;
273 }
274 $ignore{$r}=999999;
275 $ignore_used{$r}=0;
276 }
277 }
278
279 sub checksrc_clear {
280 undef %ignore;
281 undef %ignore_set;
282 undef @ignore_line;
283 }
284
285 sub checksrc_endoffile {
286 my ($file) = @_;
287 for(keys %ignore_set) {
288 if($ignore_set{$_} && !$ignore_used{$_}) {
289 checkwarn("UNUSEDIGNORE", $ignore_set{$_},
290 length($_)+11, $file,
291 $ignore_line[$ignore_set{$_}],
292 "Unused ignore: $_");
293 }
294 }
295 }
296
297 sub enable_warn {
298 my ($what, $line, $file, $l) = @_;
299
300 # switch it back on, but warn if not triggered!
301 if(!$ignore_used{$what}) {
302 checkwarn("UNUSEDIGNORE",
303 $line, length($what) + 11, $file, $l,
304 "No warning was inhibited!");
305 }
306 $ignore_set{$what}=0;
307 $ignore_used{$what}=0;
308 $ignore{$what}=0;
309 }
310 sub checksrc {
311 my ($cmd, $line, $file, $l) = @_;
312 if($cmd =~ / *([^ ]*) *(.*)/) {
313 my ($enable, $what) = ($1, $2);
314 $what =~ s: *\*/$::; # cut off end of C comment
315 # print "ENABLE $enable WHAT $what\n";
316 if($enable eq "disable") {
317 my ($warn, $scope)=($1, $2);
318 if($what =~ /([^ ]*) +(.*)/) {
319 ($warn, $scope)=($1, $2);
320 }
321 else {
322 $warn = $what;
323 $scope = 1;
324 }
325 # print "IGNORE $warn for SCOPE $scope\n";
326 if($scope eq "all") {
327 $scope=999999;
328 }
329
330 # Comparing for a literal zero rather than the scalar value zero
331 # covers the case where $scope contains the ending '*' from the
332 # comment. If we use a scalar comparison (==) we induce warnings
333 # on non-scalar contents.
334 if($scope eq "0") {
335 checkwarn("BADCOMMAND",
336 $line, 0, $file, $l,
337 "Disable zero not supported, did you mean to enable?");
338 }
339 elsif($ignore_set{$warn}) {
340 checkwarn("BADCOMMAND",
341 $line, 0, $file, $l,
342 "$warn already disabled from line $ignore_set{$warn}");
343 }
344 else {
345 $ignore{$warn}=$scope;
346 $ignore_set{$warn}=$line;
347 $ignore_line[$line]=$l;
348 }
349 }
350 elsif($enable eq "enable") {
351 enable_warn($what, $line, $file, $l);
352 }
353 else {
354 checkwarn("BADCOMMAND",
355 $line, 0, $file, $l,
356 "Illegal !checksrc! command");
357 }
358 }
359 }
360
361 sub nostrings {
362 my ($str) = @_;
363 $str =~ s/\".*\"//g;
364 return $str;
365 }
366
367 sub scanfile {
368 my ($file) = @_;
369
370 my $line = 1;
371 my $prevl="";
372 my $prevpl="";
373 my $l = "";
374 my $prep = 0;
375 my $prevp = 0;
376 open(R, "<$file") || die "failed to open $file";
377
378 my $incomment=0;
379 my @copyright=();
380 checksrc_clear(); # for file based ignores
381 accept_violations();
382
383 while(<R>) {
384 $windows_os ? $_ =~ s/\r?\n$// : chomp;
385 my $l = $_;
386 my $ol = $l; # keep the unmodified line for error reporting
387 my $column = 0;
388
389 # check for !checksrc! commands
390 if($l =~ /\!checksrc\! (.*)/) {
391 my $cmd = $1;
392 checksrc($cmd, $line, $file, $l)
393 }
394
395 # check for a copyright statement and save the years
396 if($l =~ /\* +copyright .* \d\d\d\d/i) {
397 while($l =~ /([\d]{4})/g) {
398 push @copyright, {
399 year => $1,
400 line => $line,
401 col => index($l, $1),
402 code => $l
403 };
404 }
405 }
406
407 # detect long lines
408 if(length($l) > $max_column) {
409 checkwarn("LONGLINE", $line, length($l), $file, $l,
410 "Longer than $max_column columns");
411 }
412 # detect TAB characters
413 if($l =~ /^(.*)\t/) {
414 checkwarn("TABS",
415 $line, length($1), $file, $l, "Contains TAB character", 1);
416 }
417 # detect trailing whitespace
418 if($l =~ /^(.*)[ \t]+\z/) {
419 checkwarn("TRAILINGSPACE",
420 $line, length($1), $file, $l, "Trailing whitespace");
421 }
422
423 # ------------------------------------------------------------
424 # Above this marker, the checks were done on lines *including*
425 # comments
426 # ------------------------------------------------------------
427
428 # strip off C89 comments
429
430 comment:
431 if(!$incomment) {
432 if($l =~ s/\/\*.*\*\// /g) {
433 # full /* comments */ were removed!
434 }
435 if($l =~ s/\/\*.*//) {
436 # start of /* comment was removed
437 $incomment = 1;
438 }
439 }
440 else {
441 if($l =~ s/.*\*\///) {
442 # end of comment */ was removed
443 $incomment = 0;
444 goto comment;
445 }
446 else {
447 # still within a comment
448 $l="";
449 }
450 }
451
452 # ------------------------------------------------------------
453 # Below this marker, the checks were done on lines *without*
454 # comments
455 # ------------------------------------------------------------
456
457 # prev line was a preprocessor **and** ended with a backslash
458 if($prep && ($prevpl =~ /\\ *\z/)) {
459 # this is still a preprocessor line
460 $prep = 1;
461 goto preproc;
462 }
463 $prep = 0;
464
465 # crude attempt to detect // comments without too many false
466 # positives
467 if($l =~ /^(([^"\*]*)[^:"]|)\/\//) {
468 checkwarn("CPPCOMMENTS",
469 $line, length($1), $file, $l, "\/\/ comment");
470 }
471
472 # detect and strip preprocessor directives
473 if($l =~ /^[ \t]*\#/) {
474 # preprocessor line
475 $prep = 1;
476 goto preproc;
477 }
478
479 my $nostr = nostrings($l);
480 # check spaces after for/if/while/function call
481 if($nostr =~ /^(.*)(for|if|while| ([a-zA-Z0-9_]+)) \((.)/) {
482 if($1 =~ / *\#/) {
483 # this is a #if, treat it differently
484 }
485 elsif(defined $3 && $3 eq "return") {
486 # return must have a space
487 }
488 elsif(defined $3 && $3 eq "case") {
489 # case must have a space
490 }
491 elsif($4 eq "*") {
492 # (* beginning makes the space OK!
493 }
494 elsif($1 =~ / *typedef/) {
495 # typedefs can use space-paren
496 }
497 else {
498 checkwarn("SPACEBEFOREPAREN", $line, length($1)+length($2), $file, $l,
499 "$2 with space");
500 }
501 }
502 # check for '== NULL' in if/while conditions but not if the thing on
503 # the left of it is a function call
504 if($nostr =~ /^(.*)(if|while)(\(.*?)([!=]= NULL|NULL [!=]=)/) {
505 checkwarn("EQUALSNULL", $line,
506 length($1) + length($2) + length($3),
507 $file, $l, "we prefer !variable instead of \"== NULL\" comparisons");
508 }
509
510 # check for '!= 0' in if/while conditions but not if the thing on
511 # the left of it is a function call
512 if($nostr =~ /^(.*)(if|while)(\(.*[^)]) != 0[^x]/) {
513 checkwarn("NOTEQUALSZERO", $line,
514 length($1) + length($2) + length($3),
515 $file, $l, "we prefer if(rc) instead of \"rc != 0\" comparisons");
516 }
517
518 # check spaces in 'do {'
519 if($nostr =~ /^( *)do( *)\{/ && length($2) != 1) {
520 checkwarn("DOBRACE", $line, length($1) + 2, $file, $l, "one space after do before brace");
521 }
522 # check spaces in 'do {'
523 elsif($nostr =~ /^( *)\}( *)while/ && length($2) != 1) {
524 checkwarn("BRACEWHILE", $line, length($1) + 2, $file, $l, "one space between brace and while");
525 }
526 if($nostr =~ /^((.*\s)(if) *\()(.*)\)(.*)/) {
527 my $pos = length($1);
528 my $postparen = $5;
529 my $cond = $4;
530 if($cond =~ / = /) {
531 checkwarn("ASSIGNWITHINCONDITION",
532 $line, $pos+1, $file, $l,
533 "assignment within conditional expression");
534 }
535 my $temp = $cond;
536 $temp =~ s/\(//g; # remove open parens
537 my $openc = length($cond) - length($temp);
538
539 $temp = $cond;
540 $temp =~ s/\)//g; # remove close parens
541 my $closec = length($cond) - length($temp);
542 my $even = $openc == $closec;
543
544 if($l =~ / *\#/) {
545 # this is a #if, treat it differently
546 }
547 elsif($even && $postparen &&
548 ($postparen !~ /^ *$/) && ($postparen !~ /^ *[,{&|\\]+/)) {
549 checkwarn("ONELINECONDITION",
550 $line, length($l)-length($postparen), $file, $l,
551 "conditional block on the same line");
552 }
553 }
554 # check spaces after open parentheses
555 if($l =~ /^(.*[a-z])\( /i) {
556 checkwarn("SPACEAFTERPAREN",
557 $line, length($1)+1, $file, $l,
558 "space after open parenthesis");
559 }
560
561 # check spaces before close parentheses, unless it was a space or a
562 # close parenthesis!
563 if($l =~ /(.*[^\) ]) \)/) {
564 checkwarn("SPACEBEFORECLOSE",
565 $line, length($1)+1, $file, $l,
566 "space before close parenthesis");
567 }
568
569 # check spaces before comma!
570 if($l =~ /(.*[^ ]) ,/) {
571 checkwarn("SPACEBEFORECOMMA",
572 $line, length($1)+1, $file, $l,
573 "space before comma");
574 }
575
576 # check for "return(" without space
577 if($l =~ /^(.*)return\(/) {
578 if($1 =~ / *\#/) {
579 # this is a #if, treat it differently
580 }
581 else {
582 checkwarn("RETURNNOSPACE", $line, length($1)+6, $file, $l,
583 "return without space before paren");
584 }
585 }
586
587 # check for "sizeof" without parenthesis
588 if(($l =~ /^(.*)sizeof *([ (])/) && ($2 ne "(")) {
589 if($1 =~ / *\#/) {
590 # this is a #if, treat it differently
591 }
592 else {
593 checkwarn("SIZEOFNOPAREN", $line, length($1)+6, $file, $l,
594 "sizeof without parenthesis");
595 }
596 }
597
598 # check for comma without space
599 if($l =~ /^(.*),[^ \n]/) {
600 my $pref=$1;
601 my $ign=0;
602 if($pref =~ / *\#/) {
603 # this is a #if, treat it differently
604 $ign=1;
605 }
606 elsif($pref =~ /\/\*/) {
607 # this is a comment
608 $ign=1;
609 }
610 elsif($pref =~ /[\"\']/) {
611 $ign = 1;
612 # There is a quote here, figure out whether the comma is
613 # within a string or '' or not.
614 if($pref =~ /\"/) {
615 # within a string
616 }
617 elsif($pref =~ /\'$/) {
618 # a single letter
619 }
620 else {
621 $ign = 0;
622 }
623 }
624 if(!$ign) {
625 checkwarn("COMMANOSPACE", $line, length($pref)+1, $file, $l,
626 "comma without following space");
627 }
628 }
629
630 # check for "} else"
631 if($l =~ /^(.*)\} *else/) {
632 checkwarn("BRACEELSE",
633 $line, length($1), $file, $l, "else after closing brace on same line");
634 }
635 # check for "){"
636 if($l =~ /^(.*)\)\{/) {
637 checkwarn("PARENBRACE",
638 $line, length($1)+1, $file, $l, "missing space after close paren");
639 }
640 # check for "^{" with an empty line before it
641 if(($l =~ /^\{/) && ($prevl =~ /^[ \t]*\z/)) {
642 checkwarn("EMPTYLINEBRACE",
643 $line, 0, $file, $l, "empty line before open brace");
644 }
645
646 # check for space before the semicolon last in a line
647 if($l =~ /^(.*[^ ].*) ;$/) {
648 checkwarn("SPACESEMICOLON",
649 $line, length($1), $file, $ol, "no space before semicolon");
650 }
651
652 # scan for use of banned functions
653 if($l =~ /^(.*\W)
654 (gmtime|localtime|
655 gets|
656 strtok|
657 v?sprintf|
658 (str|_mbs|_tcs|_wcs)n?cat|
659 LoadLibrary(Ex)?(A|W)?)
660 \s*\(
661 /x) {
662 checkwarn("BANNEDFUNC",
663 $line, length($1), $file, $ol,
664 "use of $2 is banned");
665 }
666 if($warnings{"STRERROR"}) {
667 # scan for use of banned strerror. This is not a BANNEDFUNC to
668 # allow for individual enable/disable of this warning.
669 if($l =~ /^(.*\W)(strerror)\s*\(/x) {
670 if($1 !~ /^ *\#/) {
671 # skip preprocessor lines
672 checkwarn("STRERROR",
673 $line, length($1), $file, $ol,
674 "use of $2 is banned");
675 }
676 }
677 }
678 # scan for use of snprintf for curl-internals reasons
679 if($l =~ /^(.*\W)(v?snprintf)\s*\(/x) {
680 checkwarn("SNPRINTF",
681 $line, length($1), $file, $ol,
682 "use of $2 is banned");
683 }
684
685 # scan for use of non-binary fopen without the macro
686 if($l =~ /^(.*\W)fopen\s*\([^,]*, *\"([^"]*)/) {
687 my $mode = $2;
688 if($mode !~ /b/) {
689 checkwarn("FOPENMODE",
690 $line, length($1), $file, $ol,
691 "use of non-binary fopen without FOPEN_* macro: $mode");
692 }
693 }
694
695 # check for open brace first on line but not first column only alert
696 # if previous line ended with a close paren and it wasn't a cpp line
697 if(($prevl =~ /\)\z/) && ($l =~ /^( +)\{/) && !$prevp) {
698 checkwarn("BRACEPOS",
699 $line, length($1), $file, $ol, "badly placed open brace");
700 }
701
702 # if the previous line starts with if/while/for AND ends with an open
703 # brace, or an else statement, check that this line is indented $indent
704 # more steps, if not a cpp line
705 if(!$prevp && ($prevl =~ /^( *)((if|while|for)\(.*\{|else)\z/)) {
706 my $first = length($1);
707 # this line has some character besides spaces
708 if($l =~ /^( *)[^ ]/) {
709 my $second = length($1);
710 my $expect = $first+$indent;
711 if($expect != $second) {
712 my $diff = $second - $first;
713 checkwarn("INDENTATION", $line, length($1), $file, $ol,
714 "not indented $indent steps (uses $diff)");
715
716 }
717 }
718 }
719
720 # check for 'char * name'
721 if(($l =~ /(^.*(char|int|long|void|CURL|CURLM|CURLMsg|[cC]url_[A-Za-z_]+|struct [a-zA-Z_]+) *(\*+)) (\w+)/) && ($4 !~ /^(const|volatile)$/)) {
722 checkwarn("ASTERISKSPACE",
723 $line, length($1), $file, $ol,
724 "space after declarative asterisk");
725 }
726 # check for 'char*'
727 if(($l =~ /(^.*(char|int|long|void|curl_slist|CURL|CURLM|CURLMsg|curl_httppost|sockaddr_in|FILE)\*)/)) {
728 checkwarn("ASTERISKNOSPACE",
729 $line, length($1)-1, $file, $ol,
730 "no space before asterisk");
731 }
732
733 # check for 'void func() {', but avoid false positives by requiring
734 # both an open and closed parentheses before the open brace
735 if($l =~ /^((\w).*)\{\z/) {
736 my $k = $1;
737 $k =~ s/const *//;
738 $k =~ s/static *//;
739 if($k =~ /\(.*\)/) {
740 checkwarn("BRACEPOS",
741 $line, length($l)-1, $file, $ol,
742 "wrongly placed open brace");
743 }
744 }
745
746 # check for equals sign without spaces next to it
747 if($nostr =~ /(.*)\=[a-z0-9]/i) {
748 checkwarn("EQUALSNOSPACE",
749 $line, length($1)+1, $file, $ol,
750 "no space after equals sign");
751 }
752 # check for equals sign without spaces before it
753 elsif($nostr =~ /(.*)[a-z0-9]\=/i) {
754 checkwarn("NOSPACEEQUALS",
755 $line, length($1)+1, $file, $ol,
756 "no space before equals sign");
757 }
758
759 # check for plus signs without spaces next to it
760 if($nostr =~ /(.*)[^+]\+[a-z0-9]/i) {
761 checkwarn("PLUSNOSPACE",
762 $line, length($1)+1, $file, $ol,
763 "no space after plus sign");
764 }
765 # check for plus sign without spaces before it
766 elsif($nostr =~ /(.*)[a-z0-9]\+[^+]/i) {
767 checkwarn("NOSPACEPLUS",
768 $line, length($1)+1, $file, $ol,
769 "no space before plus sign");
770 }
771
772 # check for semicolons without space next to it
773 if($nostr =~ /(.*)\;[a-z0-9]/i) {
774 checkwarn("SEMINOSPACE",
775 $line, length($1)+1, $file, $ol,
776 "no space after semicolon");
777 }
778
779 # typedef struct ... {
780 if($nostr =~ /^(.*)typedef struct.*{/) {
781 checkwarn("TYPEDEFSTRUCT",
782 $line, length($1)+1, $file, $ol,
783 "typedef'ed struct");
784 }
785
786 if($nostr =~ /(.*)! +(\w|\()/) {
787 checkwarn("EXCLAMATIONSPACE",
788 $line, length($1)+1, $file, $ol,
789 "space after exclamation mark");
790 }
791
792 # check for more than one consecutive space before open brace or
793 # question mark. Skip lines containing strings since they make it hard
794 # due to artificially getting multiple spaces
795 if(($l eq $nostr) &&
796 $nostr =~ /^(.*(\S)) + [{?]/i) {
797 checkwarn("MULTISPACE",
798 $line, length($1)+1, $file, $ol,
799 "multiple spaces");
800 }
801 preproc:
802 $line++;
803 $prevp = $prep;
804 $prevl = $ol if(!$prep);
805 $prevpl = $ol if($prep);
806 }
807
808 if(!scalar(@copyright)) {
809 checkwarn("COPYRIGHT", 1, 0, $file, "", "Missing copyright statement", 1);
810 }
811
812 # COPYRIGHTYEAR is a extended warning so we must first see if it has been
813 # enabled in .checksrc
814 if(defined($warnings{"COPYRIGHTYEAR"})) {
815 # The check for updated copyrightyear is overly complicated in order to
816 # not punish current hacking for past sins. The copyright years are
817 # right now a bit behind, so enforcing copyright year checking on all
818 # files would cause hundreds of errors. Instead we only look at files
819 # which are tracked in the Git repo and edited in the workdir, or
820 # committed locally on the branch without being in upstream master.
821 #
822 # The simple and naive test is to simply check for the current year,
823 # but updating the year even without an edit is against project policy
824 # (and it would fail every file on January 1st).
825 #
826 # A rather more interesting, and correct, check would be to not test
827 # only locally committed files but inspect all files wrt the year of
828 # their last commit. Removing the `git rev-list origin/master..HEAD`
829 # condition below will enforce copyright year checks against the year
830 # the file was last committed (and thus edited to some degree).
831 my $commityear = undef;
832 @copyright = sort {$$b{year} cmp $$a{year}} @copyright;
833
834 # if the file is modified, assume commit year this year
835 if(`git status -s -- $file` =~ /^ [MARCU]/) {
836 $commityear = (localtime(time))[5] + 1900;
837 }
838 else {
839 # min-parents=1 to ignore wrong initial commit in truncated repos
840 my $grl = `git rev-list --max-count=1 --min-parents=1 --timestamp HEAD -- $file`;
841 if($grl) {
842 chomp $grl;
843 $commityear = (localtime((split(/ /, $grl))[0]))[5] + 1900;
844 }
845 }
846
847 if(defined($commityear) && scalar(@copyright) &&
848 $copyright[0]{year} != $commityear) {
849 checkwarn("COPYRIGHTYEAR", $copyright[0]{line}, $copyright[0]{col},
850 $file, $copyright[0]{code},
851 "Copyright year out of date, should be $commityear, " .
852 "is $copyright[0]{year}", 1);
853 }
854 }
855
856 if($incomment) {
857 checkwarn("OPENCOMMENT", 1, 0, $file, "", "Missing closing comment", 1);
858 }
859
860 checksrc_endoffile($file);
861
862 close(R);
863
864 }
865
866
867 if($errors || $warnings || $verbose) {
868 printf "checksrc: %d errors and %d warnings\n", $errors, $warnings;
869 if($suppressed) {
870 printf "checksrc: %d errors and %d warnings suppressed\n",
871 $serrors,
872 $swarnings;
873 }
874 exit 5; # return failure
875 }
0 #!/bin/sh
1 # ***************************************************************************
2 # * _ _ ____ _
3 # * Project ___| | | | _ \| |
4 # * / __| | | | |_) | |
5 # * | (__| |_| | _ <| |___
6 # * \___|\___/|_| \_\_____|
7 # *
8 # * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
9 # *
10 # * This software is licensed as described in the file COPYING, which
11 # * you should have received as part of this distribution. The terms
12 # * are also available at https://curl.se/docs/copyright.html.
13 # *
14 # * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # * copies of the Software, and permit persons to whom the Software is
16 # * furnished to do so, under the terms of the COPYING file.
17 # *
18 # * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # * KIND, either express or implied.
20 # *
21 # ***************************************************************************
22 # This shell script creates a fresh ca-bundle.crt file for use with libcurl.
23 # It extracts all ca certs it finds in the local Firefox database and converts
24 # them all into PEM format.
25 #
26 db=$(ls -1d $HOME/.mozilla/firefox/*default*)
27 out=$1
28
29 if test -z "$out"; then
30 out="ca-bundle.crt" # use a sensible default
31 fi
32
33 currentdate=$(date)
34
35 cat >$out <<EOF
36 ##
37 ## Bundle of CA Root Certificates
38 ##
39 ## Converted at: ${currentdate}
40 ## These were converted from the local Firefox directory by the db2pem script.
41 ##
42 EOF
43
44
45 certutil -L -h 'Builtin Object Token' -d "$db" | \
46 grep ' *[CcGTPpu]*,[CcGTPpu]*,[CcGTPpu]* *$' | \
47 sed -e 's/ *[CcGTPpu]*,[CcGTPpu]*,[CcGTPpu]* *$//' -e 's/\(.*\)/"\1"/' | \
48 sort | \
49 while read -r nickname; \
50 do echo "$nickname" | sed -e "s/Builtin Object Token://g"; \
51 eval certutil -d "$db" -L -n "$nickname" -a ; \
52 done >> $out
0 #!/usr/bin/env perl
1 # ***************************************************************************
2 # * _ _ ____ _
3 # * Project ___| | | | _ \| |
4 # * / __| | | | |_) | |
5 # * | (__| |_| | _ <| |___
6 # * \___|\___/|_| \_\_____|
7 # *
8 # * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
9 # *
10 # * This software is licensed as described in the file COPYING, which
11 # * you should have received as part of this distribution. The terms
12 # * are also available at https://curl.se/docs/copyright.html.
13 # *
14 # * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # * copies of the Software, and permit persons to whom the Software is
16 # * furnished to do so, under the terms of the COPYING file.
17 # *
18 # * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # * KIND, either express or implied.
20 # *
21 # ***************************************************************************
22 # This Perl script creates a fresh ca-bundle.crt file for use with libcurl.
23 # It downloads certdata.txt from Mozilla's source tree (see URL below),
24 # then parses certdata.txt and extracts CA Root Certificates into PEM format.
25 # These are then processed with the OpenSSL commandline tool to produce the
26 # final ca-bundle.crt file.
27 # The script is based on the parse-certs script written by Roland Krikava.
28 # This Perl script works on almost any platform since its only external
29 # dependency is the OpenSSL commandline tool for optional text listing.
30 # Hacked by Guenter Knauf.
31 #
32 use Encode;
33 use Getopt::Std;
34 use MIME::Base64;
35 use strict;
36 use warnings;
37 use vars qw($opt_b $opt_d $opt_f $opt_h $opt_i $opt_k $opt_l $opt_m $opt_n $opt_p $opt_q $opt_s $opt_t $opt_u $opt_v $opt_w);
38 use List::Util;
39 use Text::Wrap;
40 use Time::Local;
41 my $MOD_SHA = "Digest::SHA";
42 eval "require $MOD_SHA";
43 if ($@) {
44 $MOD_SHA = "Digest::SHA::PurePerl";
45 eval "require $MOD_SHA";
46 }
47 eval "require LWP::UserAgent";
48
49 my %urls = (
50 'nss' =>
51 'https://hg.mozilla.org/projects/nss/raw-file/default/lib/ckfw/builtins/certdata.txt',
52 'central' =>
53 'https://hg.mozilla.org/mozilla-central/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
54 'beta' =>
55 'https://hg.mozilla.org/releases/mozilla-beta/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
56 'release' =>
57 'https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt',
58 );
59
60 $opt_d = 'release';
61
62 # If the OpenSSL commandline is not in search path you can configure it here!
63 my $openssl = 'openssl';
64
65 my $version = '1.29';
66
67 $opt_w = 76; # default base64 encoded lines length
68
69 # default cert types to include in the output (default is to include CAs which
70 # may issue SSL server certs)
71 my $default_mozilla_trust_purposes = "SERVER_AUTH";
72 my $default_mozilla_trust_levels = "TRUSTED_DELEGATOR";
73 $opt_p = $default_mozilla_trust_purposes . ":" . $default_mozilla_trust_levels;
74
75 my @valid_mozilla_trust_purposes = (
76 "DIGITAL_SIGNATURE",
77 "NON_REPUDIATION",
78 "KEY_ENCIPHERMENT",
79 "DATA_ENCIPHERMENT",
80 "KEY_AGREEMENT",
81 "KEY_CERT_SIGN",
82 "CRL_SIGN",
83 "SERVER_AUTH",
84 "CLIENT_AUTH",
85 "CODE_SIGNING",
86 "EMAIL_PROTECTION",
87 "IPSEC_END_SYSTEM",
88 "IPSEC_TUNNEL",
89 "IPSEC_USER",
90 "TIME_STAMPING",
91 "STEP_UP_APPROVED"
92 );
93
94 my @valid_mozilla_trust_levels = (
95 "TRUSTED_DELEGATOR", # CAs
96 "NOT_TRUSTED", # Don't trust these certs.
97 "MUST_VERIFY_TRUST", # This explicitly tells us that it ISN'T a CA but is
98 # otherwise ok. In other words, this should tell the
99 # app to ignore any other sources that claim this is
100 # a CA.
101 "TRUSTED" # This cert is trusted, but only for itself and not
102 # for delegates (i.e. it is not a CA).
103 );
104
105 my $default_signature_algorithms = $opt_s = "MD5";
106
107 my @valid_signature_algorithms = (
108 "MD5",
109 "SHA1",
110 "SHA256",
111 "SHA384",
112 "SHA512"
113 );
114
115 $0 =~ s@.*(/|\\)@@;
116 $Getopt::Std::STANDARD_HELP_VERSION = 1;
117 getopts('bd:fhiklmnp:qs:tuvw:');
118
119 if(!defined($opt_d)) {
120 # to make plain "-d" use not cause warnings, and actually still work
121 $opt_d = 'release';
122 }
123
124 # Use predefined URL or else custom URL specified on command line.
125 my $url;
126 if(defined($urls{$opt_d})) {
127 $url = $urls{$opt_d};
128 if(!$opt_k && $url !~ /^https:\/\//i) {
129 die "The URL for '$opt_d' is not HTTPS. Use -k to override (insecure).\n";
130 }
131 }
132 else {
133 $url = $opt_d;
134 }
135
136 my $curl = `curl -V`;
137
138 if ($opt_i) {
139 print ("=" x 78 . "\n");
140 print "Script Version : $version\n";
141 print "Perl Version : $]\n";
142 print "Operating System Name : $^O\n";
143 print "Getopt::Std.pm Version : ${Getopt::Std::VERSION}\n";
144 print "Encode::Encoding.pm Version : ${Encode::Encoding::VERSION}\n";
145 print "MIME::Base64.pm Version : ${MIME::Base64::VERSION}\n";
146 print "LWP::UserAgent.pm Version : ${LWP::UserAgent::VERSION}\n" if($LWP::UserAgent::VERSION);
147 print "LWP.pm Version : ${LWP::VERSION}\n" if($LWP::VERSION);
148 print "Digest::SHA.pm Version : ${Digest::SHA::VERSION}\n" if ($Digest::SHA::VERSION);
149 print "Digest::SHA::PurePerl.pm Version : ${Digest::SHA::PurePerl::VERSION}\n" if ($Digest::SHA::PurePerl::VERSION);
150 print ("=" x 78 . "\n");
151 }
152
153 sub warning_message() {
154 if ( $opt_d =~ m/^risk$/i ) { # Long Form Warning and Exit
155 print "Warning: Use of this script may pose some risk:\n";
156 print "\n";
157 print " 1) If you use HTTP URLs they are subject to a man in the middle attack\n";
158 print " 2) Default to 'release', but more recent updates may be found in other trees\n";
159 print " 3) certdata.txt file format may change, lag time to update this script\n";
160 print " 4) Generally unwise to blindly trust CAs without manual review & verification\n";
161 print " 5) Mozilla apps use additional security checks aren't represented in certdata\n";
162 print " 6) Use of this script will make a security engineer grind his teeth and\n";
163 print " swear at you. ;)\n";
164 exit;
165 } else { # Short Form Warning
166 print "Warning: Use of this script may pose some risk, -d risk for more details.\n";
167 }
168 }
169
170 sub HELP_MESSAGE() {
171 print "Usage:\t${0} [-b] [-d<certdata>] [-f] [-i] [-k] [-l] [-n] [-p<purposes:levels>] [-q] [-s<algorithms>] [-t] [-u] [-v] [-w<l>] [<outputfile>]\n";
172 print "\t-b\tbackup an existing version of ca-bundle.crt\n";
173 print "\t-d\tspecify Mozilla tree to pull certdata.txt or custom URL\n";
174 print "\t\t Valid names are:\n";
175 print "\t\t ", join( ", ", map { ( $_ =~ m/$opt_d/ ) ? "$_ (default)" : "$_" } sort keys %urls ), "\n";
176 print "\t-f\tforce rebuild even if certdata.txt is current\n";
177 print "\t-i\tprint version info about used modules\n";
178 print "\t-k\tallow URLs other than HTTPS, enable HTTP fallback (insecure)\n";
179 print "\t-l\tprint license info about certdata.txt\n";
180 print "\t-m\tinclude meta data in output\n";
181 print "\t-n\tno download of certdata.txt (to use existing)\n";
182 print wrap("\t","\t\t", "-p\tlist of Mozilla trust purposes and levels for certificates to include in output. Takes the form of a comma separated list of purposes, a colon, and a comma separated list of levels. (default: $default_mozilla_trust_purposes:$default_mozilla_trust_levels)"), "\n";
183 print "\t\t Valid purposes are:\n";
184 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_mozilla_trust_purposes ) ), "\n";
185 print "\t\t Valid levels are:\n";
186 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_mozilla_trust_levels ) ), "\n";
187 print "\t-q\tbe really quiet (no progress output at all)\n";
188 print wrap("\t","\t\t", "-s\tcomma separated list of certificate signatures/hashes to output in plain text mode. (default: $default_signature_algorithms)\n");
189 print "\t\t Valid signature algorithms are:\n";
190 print wrap("\t\t ","\t\t ", join( ", ", "ALL", @valid_signature_algorithms ) ), "\n";
191 print "\t-t\tinclude plain text listing of certificates\n";
192 print "\t-u\tunlink (remove) certdata.txt after processing\n";
193 print "\t-v\tbe verbose and print out processed CAs\n";
194 print "\t-w <l>\twrap base64 output lines after <l> chars (default: ${opt_w})\n";
195 exit;
196 }
197
198 sub VERSION_MESSAGE() {
199 print "${0} version ${version} running Perl ${]} on ${^O}\n";
200 }
201
202 warning_message() unless ($opt_q || $url =~ m/^(ht|f)tps:/i );
203 HELP_MESSAGE() if ($opt_h);
204
205 sub report($@) {
206 my $output = shift;
207
208 print STDERR $output . "\n" unless $opt_q;
209 }
210
211 sub is_in_list($@) {
212 my $target = shift;
213
214 return defined(List::Util::first { $target eq $_ } @_);
215 }
216
217 # Parses $param_string as a case insensitive comma separated list with optional
218 # whitespace validates that only allowed parameters are supplied
219 sub parse_csv_param($$@) {
220 my $description = shift;
221 my $param_string = shift;
222 my @valid_values = @_;
223
224 my @values = map {
225 s/^\s+//; # strip leading spaces
226 s/\s+$//; # strip trailing spaces
227 uc $_ # return the modified string as upper case
228 } split( ',', $param_string );
229
230 # Find all values which are not in the list of valid values or "ALL"
231 my @invalid = grep { !is_in_list($_,"ALL",@valid_values) } @values;
232
233 if ( scalar(@invalid) > 0 ) {
234 # Tell the user which parameters were invalid and print the standard help
235 # message which will exit
236 print "Error: Invalid ", $description, scalar(@invalid) == 1 ? ": " : "s: ", join( ", ", map { "\"$_\"" } @invalid ), "\n";
237 HELP_MESSAGE();
238 }
239
240 @values = @valid_values if ( is_in_list("ALL",@values) );
241
242 return @values;
243 }
244
245 sub sha256 {
246 my $result;
247 if ($Digest::SHA::VERSION || $Digest::SHA::PurePerl::VERSION) {
248 open(FILE, $_[0]) or die "Can't open '$_[0]': $!";
249 binmode(FILE);
250 $result = $MOD_SHA->new(256)->addfile(*FILE)->hexdigest;
251 close(FILE);
252 } else {
253 # Use OpenSSL command if Perl Digest::SHA modules not available
254 $result = `"$openssl" dgst -r -sha256 "$_[0]"`;
255 $result =~ s/^([0-9a-f]{64}) .+/$1/is;
256 }
257 return $result;
258 }
259
260
261 sub oldhash {
262 my $hash = "";
263 open(C, "<$_[0]") || return 0;
264 while(<C>) {
265 chomp;
266 if($_ =~ /^\#\# SHA256: (.*)/) {
267 $hash = $1;
268 last;
269 }
270 }
271 close(C);
272 return $hash;
273 }
274
275 if ( $opt_p !~ m/:/ ) {
276 print "Error: Mozilla trust identifier list must include both purposes and levels\n";
277 HELP_MESSAGE();
278 }
279
280 (my $included_mozilla_trust_purposes_string, my $included_mozilla_trust_levels_string) = split( ':', $opt_p );
281 my @included_mozilla_trust_purposes = parse_csv_param( "trust purpose", $included_mozilla_trust_purposes_string, @valid_mozilla_trust_purposes );
282 my @included_mozilla_trust_levels = parse_csv_param( "trust level", $included_mozilla_trust_levels_string, @valid_mozilla_trust_levels );
283
284 my @included_signature_algorithms = parse_csv_param( "signature algorithm", $opt_s, @valid_signature_algorithms );
285
286 sub should_output_cert(%) {
287 my %trust_purposes_by_level = @_;
288
289 foreach my $level (@included_mozilla_trust_levels) {
290 # for each level we want to output, see if any of our desired purposes are
291 # included
292 return 1 if ( defined( List::Util::first { is_in_list( $_, @included_mozilla_trust_purposes ) } @{$trust_purposes_by_level{$level}} ) );
293 }
294
295 return 0;
296 }
297
298 my $crt = $ARGV[0] || 'ca-bundle.crt';
299 (my $txt = $url) =~ s@(.*/|\?.*)@@g;
300
301 my $stdout = $crt eq '-';
302 my $resp;
303 my $fetched;
304
305 my $oldhash = oldhash($crt);
306
307 report "SHA256 of old file: $oldhash";
308
309 if(!$opt_n) {
310 report "Downloading $txt ...";
311
312 # If we have an HTTPS URL then use curl
313 if($url =~ /^https:\/\//i) {
314 if($curl) {
315 if($curl =~ /^Protocols:.* https( |$)/m) {
316 report "Get certdata with curl!";
317 my $proto = !$opt_k ? "--proto =https" : "";
318 my $quiet = $opt_q ? "-s" : "";
319 my @out = `curl -w %{response_code} $proto $quiet -o "$txt" "$url"`;
320 if(!$? && @out && $out[0] == 200) {
321 $fetched = 1;
322 report "Downloaded $txt";
323 }
324 else {
325 report "Failed downloading via HTTPS with curl";
326 if(-e $txt && !unlink($txt)) {
327 report "Failed to remove '$txt': $!";
328 }
329 }
330 }
331 else {
332 report "curl lacks https support";
333 }
334 }
335 else {
336 report "curl not found";
337 }
338 }
339
340 # If nothing was fetched then use LWP
341 if(!$fetched) {
342 if($url =~ /^https:\/\//i) {
343 report "Falling back to HTTP";
344 $url =~ s/^https:\/\//http:\/\//i;
345 }
346 if(!$opt_k) {
347 report "URLs other than HTTPS are disabled by default, to enable use -k";
348 exit 1;
349 }
350 report "Get certdata with LWP!";
351 if(!defined(${LWP::UserAgent::VERSION})) {
352 report "LWP is not available (LWP::UserAgent not found)";
353 exit 1;
354 }
355 my $ua = new LWP::UserAgent(agent => "$0/$version");
356 $ua->env_proxy();
357 $resp = $ua->mirror($url, $txt);
358 if($resp && $resp->code eq '304') {
359 report "Not modified";
360 exit 0 if -e $crt && !$opt_f;
361 }
362 else {
363 $fetched = 1;
364 report "Downloaded $txt";
365 }
366 if(!$resp || $resp->code !~ /^(?:200|304)$/) {
367 report "Unable to download latest data: "
368 . ($resp? $resp->code . ' - ' . $resp->message : "LWP failed");
369 exit 1 if -e $crt || ! -r $txt;
370 }
371 }
372 }
373
374 my $filedate = $resp ? $resp->last_modified : (stat($txt))[9];
375 my $datesrc = "as of";
376 if(!$filedate) {
377 # mxr.mozilla.org gave us a time, hg.mozilla.org does not!
378 $filedate = time();
379 $datesrc="downloaded on";
380 }
381
382 # get the hash from the download file
383 my $newhash= sha256($txt);
384
385 if(!$opt_f && $oldhash eq $newhash) {
386 report "Downloaded file identical to previous run\'s source file. Exiting";
387 if($opt_u && -e $txt && !unlink($txt)) {
388 report "Failed to remove $txt: $!\n";
389 }
390 exit;
391 }
392
393 report "SHA256 of new file: $newhash";
394
395 my $currentdate = scalar gmtime($filedate);
396
397 my $format = $opt_t ? "plain text and " : "";
398 if( $stdout ) {
399 open(CRT, '> -') or die "Couldn't open STDOUT: $!\n";
400 } else {
401 open(CRT,">$crt.~") or die "Couldn't open $crt.~: $!\n";
402 }
403 print CRT <<EOT;
404 ##
405 ## Bundle of CA Root Certificates
406 ##
407 ## Certificate data from Mozilla ${datesrc}: ${currentdate} GMT
408 ##
409 ## This is a bundle of X.509 certificates of public Certificate Authorities
410 ## (CA). These were automatically extracted from Mozilla's root certificates
411 ## file (certdata.txt). This file can be found in the mozilla source tree:
412 ## ${url}
413 ##
414 ## It contains the certificates in ${format}PEM format and therefore
415 ## can be directly used with curl / libcurl / php_curl, or with
416 ## an Apache+mod_ssl webserver for SSL client authentication.
417 ## Just configure this file as the SSLCACertificateFile.
418 ##
419 ## Conversion done with mk-ca-bundle.pl version $version.
420 ## SHA256: $newhash
421 ##
422
423 EOT
424
425 report "Processing '$txt' ...";
426 my $caname;
427 my $certnum = 0;
428 my $skipnum = 0;
429 my $start_of_cert = 0;
430 my $main_block = 0;
431 my $main_block_name;
432 my $trust_block = 0;
433 my $trust_block_name;
434 my @precert;
435 my $cka_value;
436 my $valid = 0;
437
438 open(TXT,"$txt") or die "Couldn't open $txt: $!\n";
439 while (<TXT>) {
440 if (/\*\*\*\*\* BEGIN LICENSE BLOCK \*\*\*\*\*/) {
441 print CRT;
442 print if ($opt_l);
443 while (<TXT>) {
444 print CRT;
445 print if ($opt_l);
446 last if (/\*\*\*\*\* END LICENSE BLOCK \*\*\*\*\*/);
447 }
448 next;
449 }
450 # The input file format consists of blocks of Mozilla objects.
451 # The blocks are separated by blank lines but may be related.
452 elsif(/^\s*$/) {
453 $main_block = 0;
454 $trust_block = 0;
455 next;
456 }
457 # Each certificate has a main block.
458 elsif(/^# Certificate "(.*)"/) {
459 (!$main_block && !$trust_block) or die "Unexpected certificate block";
460 $main_block = 1;
461 $main_block_name = $1;
462 # Reset all other certificate variables.
463 $trust_block = 0;
464 $trust_block_name = "";
465 $valid = 0;
466 $start_of_cert = 0;
467 $caname = "";
468 $cka_value = "";
469 undef @precert;
470 next;
471 }
472 # Each certificate's main block is followed by a trust block.
473 elsif(/^# Trust for (?:Certificate )?"(.*)"/) {
474 (!$main_block && !$trust_block) or die "Unexpected trust block";
475 $trust_block = 1;
476 $trust_block_name = $1;
477 if($main_block_name ne $trust_block_name) {
478 die "cert name \"$main_block_name\" != trust name \"$trust_block_name\"";
479 }
480 next;
481 }
482 # Ignore other blocks.
483 #
484 # There is a documentation comment block, a BEGINDATA block, and a bunch of
485 # blocks starting with "# Explicitly Distrust <certname>".
486 #
487 # The latter is for certificates that have already been removed and are not
488 # included. Not all explicitly distrusted certificates are ignored at this
489 # point, just those without an actual certificate.
490 elsif(!$main_block && !$trust_block) {
491 next;
492 }
493 elsif(/^#/) {
494 # The commented lines in a main block are plaintext metadata that describes
495 # the certificate. Issuer, Subject, Fingerprint, etc.
496 if($main_block) {
497 push @precert, $_ if not /^#$/;
498 if(/^# Not Valid After : (.*)/) {
499 my $stamp = $1;
500 use Time::Piece;
501 # Not Valid After : Thu Sep 30 14:01:15 2021
502 my $t = Time::Piece->strptime($stamp, "%a %b %d %H:%M:%S %Y");
503 my $delta = ($t->epoch - time()); # negative means no longer valid
504 if($delta < 0) {
505 $skipnum++;
506 report "Skipping: $main_block_name is not valid anymore" if ($opt_v);
507 $valid = 0;
508 }
509 else {
510 $valid = 1;
511 }
512 }
513 }
514 next;
515 }
516 elsif(!$valid) {
517 next;
518 }
519
520 chomp;
521
522 if($main_block) {
523 if(/^CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE/) {
524 !$start_of_cert or die "Duplicate CKO_CERTIFICATE object";
525 $start_of_cert = 1;
526 next;
527 }
528 elsif(!$start_of_cert) {
529 next;
530 }
531 elsif(/^CKA_LABEL UTF8 \"(.*)\"/) {
532 ($caname eq "") or die "Duplicate CKA_LABEL attribute";
533 $caname = $1;
534 if($caname ne $main_block_name) {
535 die "caname \"$caname\" != cert name \"$main_block_name\"";
536 }
537 next;
538 }
539 elsif(/^CKA_VALUE MULTILINE_OCTAL/) {
540 ($cka_value eq "") or die "Duplicate CKA_VALUE attribute";
541 while (<TXT>) {
542 last if (/^END/);
543 chomp;
544 my @octets = split(/\\/);
545 shift @octets;
546 for (@octets) {
547 $cka_value .= chr(oct);
548 }
549 }
550 next;
551 }
552 elsif (/^CKA_NSS_SERVER_DISTRUST_AFTER (CK_BBOOL CK_FALSE|MULTILINE_OCTAL)/) {
553 # Example:
554 # CKA_NSS_SERVER_DISTRUST_AFTER MULTILINE_OCTAL
555 # \062\060\060\066\061\067\060\060\060\060\060\060\132
556 # END
557 if($1 eq "MULTILINE_OCTAL") {
558 my @timestamp;
559 while (<TXT>) {
560 last if (/^END/);
561 chomp;
562 my @octets = split(/\\/);
563 shift @octets;
564 for (@octets) {
565 push @timestamp, chr(oct);
566 }
567 }
568 scalar(@timestamp) == 13 or die "Failed parsing timestamp";
569 # A trailing Z in the timestamp signifies UTC
570 if($timestamp[12] ne "Z") {
571 report "distrust date stamp is not using UTC";
572 }
573 # Example date: 200617000000Z
574 # Means 2020-06-17 00:00:00 UTC
575 my $distrustat =
576 timegm($timestamp[10] . $timestamp[11], # second
577 $timestamp[8] . $timestamp[9], # minute
578 $timestamp[6] . $timestamp[7], # hour
579 $timestamp[4] . $timestamp[5], # day
580 ($timestamp[2] . $timestamp[3]) - 1, # month
581 "20" . $timestamp[0] . $timestamp[1]); # year
582 if(time >= $distrustat) {
583 # not trusted anymore
584 $skipnum++;
585 report "Skipping: $main_block_name is not trusted anymore" if ($opt_v);
586 $valid = 0;
587 }
588 else {
589 # still trusted
590 }
591 }
592 next;
593 }
594 else {
595 next;
596 }
597 }
598
599 if(!$trust_block || !$start_of_cert || $caname eq "" || $cka_value eq "") {
600 die "Certificate extraction failed";
601 }
602
603 my %trust_purposes_by_level;
604
605 if(/^CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST/) {
606 # now scan the trust part to determine how we should trust this cert
607 while (<TXT>) {
608 if(/^\s*$/) {
609 $trust_block = 0;
610 last;
611 }
612 if (/^CKA_TRUST_([A-Z_]+)\s+CK_TRUST\s+CKT_NSS_([A-Z_]+)\s*$/) {
613 if ( !is_in_list($1,@valid_mozilla_trust_purposes) ) {
614 report "Warning: Unrecognized trust purpose for cert: $caname. Trust purpose: $1. Trust Level: $2";
615 } elsif ( !is_in_list($2,@valid_mozilla_trust_levels) ) {
616 report "Warning: Unrecognized trust level for cert: $caname. Trust purpose: $1. Trust Level: $2";
617 } else {
618 push @{$trust_purposes_by_level{$2}}, $1;
619 }
620 }
621 }
622
623 # Sanity check that an explicitly distrusted certificate only has trust
624 # purposes with a trust level of NOT_TRUSTED.
625 #
626 # Certificate objects that are explicitly distrusted are in a certificate
627 # block that starts # Certificate "Explicitly Distrust(ed) <certname>",
628 # where "Explicitly Distrust(ed) " was prepended to the original cert name.
629 if($caname =~ /distrust/i ||
630 $main_block_name =~ /distrust/i ||
631 $trust_block_name =~ /distrust/i) {
632 my @levels = keys %trust_purposes_by_level;
633 if(scalar(@levels) != 1 || $levels[0] ne "NOT_TRUSTED") {
634 die "\"$caname\" must have all trust purposes at level NOT_TRUSTED.";
635 }
636 }
637
638 if ( !should_output_cert(%trust_purposes_by_level) ) {
639 $skipnum ++;
640 report "Skipping: $caname lacks acceptable trust level" if ($opt_v);
641 } else {
642 my $encoded = MIME::Base64::encode_base64($cka_value, '');
643 $encoded =~ s/(.{1,${opt_w}})/$1\n/g;
644 my $pem = "-----BEGIN CERTIFICATE-----\n"
645 . $encoded
646 . "-----END CERTIFICATE-----\n";
647 print CRT "\n$caname\n";
648 my $maxStringLength = length(decode('UTF-8', $caname, Encode::FB_CROAK | Encode::LEAVE_SRC));
649 print CRT ("=" x $maxStringLength . "\n");
650 if ($opt_t) {
651 foreach my $key (sort keys %trust_purposes_by_level) {
652 my $string = $key . ": " . join(", ", @{$trust_purposes_by_level{$key}});
653 print CRT $string . "\n";
654 }
655 }
656 if($opt_m) {
657 print CRT for @precert;
658 }
659 if (!$opt_t) {
660 print CRT $pem;
661 } else {
662 my $pipe = "";
663 foreach my $hash (@included_signature_algorithms) {
664 $pipe = "|$openssl x509 -" . $hash . " -fingerprint -noout -inform PEM";
665 if (!$stdout) {
666 $pipe .= " >> $crt.~";
667 close(CRT) or die "Couldn't close $crt.~: $!";
668 }
669 open(TMP, $pipe) or die "Couldn't open openssl pipe: $!";
670 print TMP $pem;
671 close(TMP) or die "Couldn't close openssl pipe: $!";
672 if (!$stdout) {
673 open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!";
674 }
675 }
676 $pipe = "|$openssl x509 -text -inform PEM";
677 if (!$stdout) {
678 $pipe .= " >> $crt.~";
679 close(CRT) or die "Couldn't close $crt.~: $!";
680 }
681 open(TMP, $pipe) or die "Couldn't open openssl pipe: $!";
682 print TMP $pem;
683 close(TMP) or die "Couldn't close openssl pipe: $!";
684 if (!$stdout) {
685 open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!";
686 }
687 }
688 report "Processed: $caname" if ($opt_v);
689 $certnum ++;
690 }
691 }
692 }
693 close(TXT) or die "Couldn't close $txt: $!\n";
694 close(CRT) or die "Couldn't close $crt.~: $!\n";
695 unless( $stdout ) {
696 if ($opt_b && -e $crt) {
697 my $bk = 1;
698 while (-e "$crt.~${bk}~") {
699 $bk++;
700 }
701 rename $crt, "$crt.~${bk}~" or die "Failed to create backup $crt.~$bk}~: $!\n";
702 } elsif( -e $crt ) {
703 unlink( $crt ) or die "Failed to remove $crt: $!\n";
704 }
705 rename "$crt.~", $crt or die "Failed to rename $crt.~ to $crt: $!\n";
706 }
707 if($opt_u && -e $txt && !unlink($txt)) {
708 report "Failed to remove $txt: $!\n";
709 }
710 report "Done ($certnum CA certs processed, $skipnum skipped).";
134134 # ignore tool_hugehelp.c since it is generated source code and it plays
135135 # by slightly different rules!
136136 checksrc:
137 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) \
137 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) \
138138 -W$(srcdir)/tool_hugehelp.c $(srcdir)/*.[ch])
139139
140140 if CURLDEBUG
170170 tool_parsecfg.c tool_progress.c tool_strdup.c tool_setopt.c \
171171 tool_sleep.c tool_urlglob.c tool_util.c tool_vms.c \
172172 tool_writeout.c tool_writeout_json.c tool_xattr.c \
173 ../lib/strtoofft.c ../lib/nonblock.c ../lib/warnless.c \
174 ../lib/curl_ctype.c ../lib/curl_multibyte.c \
173 ../lib/strtoofft.c ../lib/timediff.c ../lib/nonblock.c \
174 ../lib/warnless.c ../lib/curl_ctype.c ../lib/curl_multibyte.c \
175175 ../lib/version_win32.c ../lib/dynbuf.c slist_wc.h \
176176 tool_binmode.h tool_bname.h tool_cb_dbg.h tool_cb_hdr.h \
177177 tool_cb_prg.h tool_cb_rea.h tool_cb_see.h tool_cb_wrt.h \
210210 libcurltool_la-tool_xattr.lo
211211 am__dirstamp = $(am__leading_dot)dirstamp
212212 am__objects_2 = ../lib/libcurltool_la-strtoofft.lo \
213 ../lib/libcurltool_la-timediff.lo \
213214 ../lib/libcurltool_la-nonblock.lo \
214215 ../lib/libcurltool_la-warnless.lo \
215216 ../lib/libcurltool_la-curl_ctype.lo \
250251 tool_urlglob.$(OBJEXT) tool_util.$(OBJEXT) tool_vms.$(OBJEXT) \
251252 tool_writeout.$(OBJEXT) tool_writeout_json.$(OBJEXT) \
252253 tool_xattr.$(OBJEXT)
253 am__objects_7 = ../lib/strtoofft.$(OBJEXT) ../lib/nonblock.$(OBJEXT) \
254 ../lib/warnless.$(OBJEXT) ../lib/curl_ctype.$(OBJEXT) \
255 ../lib/curl_multibyte.$(OBJEXT) ../lib/version_win32.$(OBJEXT) \
256 ../lib/dynbuf.$(OBJEXT)
254 am__objects_7 = ../lib/strtoofft.$(OBJEXT) ../lib/timediff.$(OBJEXT) \
255 ../lib/nonblock.$(OBJEXT) ../lib/warnless.$(OBJEXT) \
256 ../lib/curl_ctype.$(OBJEXT) ../lib/curl_multibyte.$(OBJEXT) \
257 ../lib/version_win32.$(OBJEXT) ../lib/dynbuf.$(OBJEXT)
257258 am__objects_8 = $(am__objects_6) $(am__objects_7) $(am__objects_3)
258259 am_curl_OBJECTS = $(am__objects_8)
259260 curl_OBJECTS = $(am_curl_OBJECTS)
283284 ../lib/$(DEPDIR)/libcurltool_la-dynbuf.Plo \
284285 ../lib/$(DEPDIR)/libcurltool_la-nonblock.Plo \
285286 ../lib/$(DEPDIR)/libcurltool_la-strtoofft.Plo \
287 ../lib/$(DEPDIR)/libcurltool_la-timediff.Plo \
286288 ../lib/$(DEPDIR)/libcurltool_la-version_win32.Plo \
287289 ../lib/$(DEPDIR)/libcurltool_la-warnless.Plo \
288290 ../lib/$(DEPDIR)/nonblock.Po ../lib/$(DEPDIR)/strtoofft.Po \
289 ../lib/$(DEPDIR)/version_win32.Po ../lib/$(DEPDIR)/warnless.Po \
291 ../lib/$(DEPDIR)/timediff.Po ../lib/$(DEPDIR)/version_win32.Po \
292 ../lib/$(DEPDIR)/warnless.Po \
290293 ./$(DEPDIR)/libcurltool_la-slist_wc.Plo \
291294 ./$(DEPDIR)/libcurltool_la-tool_binmode.Plo \
292295 ./$(DEPDIR)/libcurltool_la-tool_bname.Plo \
480483 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
481484 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
482485 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
486 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
483487 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
484488 CYGPATH_W = @CYGPATH_W@
485489 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
497501 ETAGS = @ETAGS@
498502 EXEEXT = @EXEEXT@
499503 FGREP = @FGREP@
504 FILECMD = @FILECMD@
500505 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
501506 GCOV = @GCOV@
502507 GREP = @GREP@
576581 USE_LIBSSH = @USE_LIBSSH@
577582 USE_LIBSSH2 = @USE_LIBSSH2@
578583 USE_MBEDTLS = @USE_MBEDTLS@
584 USE_MSH3 = @USE_MSH3@
579585 USE_NGHTTP2 = @USE_NGHTTP2@
580586 USE_NGHTTP3 = @USE_NGHTTP3@
581587 USE_NGTCP2 = @USE_NGTCP2@
695701 # the official API, but we re-use the code here to avoid duplication.
696702 CURLX_CFILES = \
697703 ../lib/strtoofft.c \
704 ../lib/timediff.c \
698705 ../lib/nonblock.c \
699706 ../lib/warnless.c \
700707 ../lib/curl_ctype.c \
705712 CURLX_HFILES = \
706713 ../lib/curl_setup.h \
707714 ../lib/strtoofft.h \
715 ../lib/timediff.h \
708716 ../lib/nonblock.h \
709717 ../lib/warnless.h \
710718 ../lib/curl_ctype.h \
941949 @: > ../lib/$(DEPDIR)/$(am__dirstamp)
942950 ../lib/libcurltool_la-strtoofft.lo: ../lib/$(am__dirstamp) \
943951 ../lib/$(DEPDIR)/$(am__dirstamp)
952 ../lib/libcurltool_la-timediff.lo: ../lib/$(am__dirstamp) \
953 ../lib/$(DEPDIR)/$(am__dirstamp)
944954 ../lib/libcurltool_la-nonblock.lo: ../lib/$(am__dirstamp) \
945955 ../lib/$(DEPDIR)/$(am__dirstamp)
946956 ../lib/libcurltool_la-warnless.lo: ../lib/$(am__dirstamp) \
957967 libcurltool.la: $(libcurltool_la_OBJECTS) $(libcurltool_la_DEPENDENCIES) $(EXTRA_libcurltool_la_DEPENDENCIES)
958968 $(AM_V_CCLD)$(libcurltool_la_LINK) $(am_libcurltool_la_rpath) $(libcurltool_la_OBJECTS) $(libcurltool_la_LIBADD) $(LIBS)
959969 ../lib/strtoofft.$(OBJEXT): ../lib/$(am__dirstamp) \
970 ../lib/$(DEPDIR)/$(am__dirstamp)
971 ../lib/timediff.$(OBJEXT): ../lib/$(am__dirstamp) \
960972 ../lib/$(DEPDIR)/$(am__dirstamp)
961973 ../lib/nonblock.$(OBJEXT): ../lib/$(am__dirstamp) \
962974 ../lib/$(DEPDIR)/$(am__dirstamp)
9911003 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-dynbuf.Plo@am__quote@ # am--include-marker
9921004 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-nonblock.Plo@am__quote@ # am--include-marker
9931005 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-strtoofft.Plo@am__quote@ # am--include-marker
1006 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-timediff.Plo@am__quote@ # am--include-marker
9941007 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-version_win32.Plo@am__quote@ # am--include-marker
9951008 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/libcurltool_la-warnless.Plo@am__quote@ # am--include-marker
9961009 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/nonblock.Po@am__quote@ # am--include-marker
9971010 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/strtoofft.Po@am__quote@ # am--include-marker
1011 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/timediff.Po@am__quote@ # am--include-marker
9981012 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/version_win32.Po@am__quote@ # am--include-marker
9991013 @AMDEP_TRUE@@am__include@ @am__quote@../lib/$(DEPDIR)/warnless.Po@am__quote@ # am--include-marker
10001014 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcurltool_la-slist_wc.Plo@am__quote@ # am--include-marker
13951409 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13961410 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurltool_la_CPPFLAGS) $(CPPFLAGS) $(libcurltool_la_CFLAGS) $(CFLAGS) -c -o ../lib/libcurltool_la-strtoofft.lo `test -f '../lib/strtoofft.c' || echo '$(srcdir)/'`../lib/strtoofft.c
13971411
1412 ../lib/libcurltool_la-timediff.lo: ../lib/timediff.c
1413 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurltool_la_CPPFLAGS) $(CPPFLAGS) $(libcurltool_la_CFLAGS) $(CFLAGS) -MT ../lib/libcurltool_la-timediff.lo -MD -MP -MF ../lib/$(DEPDIR)/libcurltool_la-timediff.Tpo -c -o ../lib/libcurltool_la-timediff.lo `test -f '../lib/timediff.c' || echo '$(srcdir)/'`../lib/timediff.c
1414 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../lib/$(DEPDIR)/libcurltool_la-timediff.Tpo ../lib/$(DEPDIR)/libcurltool_la-timediff.Plo
1415 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../lib/timediff.c' object='../lib/libcurltool_la-timediff.lo' libtool=yes @AMDEPBACKSLASH@
1416 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1417 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurltool_la_CPPFLAGS) $(CPPFLAGS) $(libcurltool_la_CFLAGS) $(CFLAGS) -c -o ../lib/libcurltool_la-timediff.lo `test -f '../lib/timediff.c' || echo '$(srcdir)/'`../lib/timediff.c
1418
13981419 ../lib/libcurltool_la-nonblock.lo: ../lib/nonblock.c
13991420 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcurltool_la_CPPFLAGS) $(CPPFLAGS) $(libcurltool_la_CFLAGS) $(CFLAGS) -MT ../lib/libcurltool_la-nonblock.lo -MD -MP -MF ../lib/$(DEPDIR)/libcurltool_la-nonblock.Tpo -c -o ../lib/libcurltool_la-nonblock.lo `test -f '../lib/nonblock.c' || echo '$(srcdir)/'`../lib/nonblock.c
14001421 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../lib/$(DEPDIR)/libcurltool_la-nonblock.Tpo ../lib/$(DEPDIR)/libcurltool_la-nonblock.Plo
16561677 -rm -f ../lib/$(DEPDIR)/libcurltool_la-dynbuf.Plo
16571678 -rm -f ../lib/$(DEPDIR)/libcurltool_la-nonblock.Plo
16581679 -rm -f ../lib/$(DEPDIR)/libcurltool_la-strtoofft.Plo
1680 -rm -f ../lib/$(DEPDIR)/libcurltool_la-timediff.Plo
16591681 -rm -f ../lib/$(DEPDIR)/libcurltool_la-version_win32.Plo
16601682 -rm -f ../lib/$(DEPDIR)/libcurltool_la-warnless.Plo
16611683 -rm -f ../lib/$(DEPDIR)/nonblock.Po
16621684 -rm -f ../lib/$(DEPDIR)/strtoofft.Po
1685 -rm -f ../lib/$(DEPDIR)/timediff.Po
16631686 -rm -f ../lib/$(DEPDIR)/version_win32.Po
16641687 -rm -f ../lib/$(DEPDIR)/warnless.Po
16651688 -rm -f ./$(DEPDIR)/libcurltool_la-slist_wc.Plo
17951818 -rm -f ../lib/$(DEPDIR)/libcurltool_la-dynbuf.Plo
17961819 -rm -f ../lib/$(DEPDIR)/libcurltool_la-nonblock.Plo
17971820 -rm -f ../lib/$(DEPDIR)/libcurltool_la-strtoofft.Plo
1821 -rm -f ../lib/$(DEPDIR)/libcurltool_la-timediff.Plo
17981822 -rm -f ../lib/$(DEPDIR)/libcurltool_la-version_win32.Plo
17991823 -rm -f ../lib/$(DEPDIR)/libcurltool_la-warnless.Plo
18001824 -rm -f ../lib/$(DEPDIR)/nonblock.Po
18011825 -rm -f ../lib/$(DEPDIR)/strtoofft.Po
1826 -rm -f ../lib/$(DEPDIR)/timediff.Po
18021827 -rm -f ../lib/$(DEPDIR)/version_win32.Po
18031828 -rm -f ../lib/$(DEPDIR)/warnless.Po
18041829 -rm -f ./$(DEPDIR)/libcurltool_la-slist_wc.Plo
19511976 # ignore tool_hugehelp.c since it is generated source code and it plays
19521977 # by slightly different rules!
19531978 checksrc:
1954 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) \
1979 $(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) \
19551980 -W$(srcdir)/tool_hugehelp.c $(srcdir)/*.[ch])
19561981
19571982 # for debug builds, we scan the sources on all regular make invokes
3030 # the official API, but we re-use the code here to avoid duplication.
3131 CURLX_CFILES = \
3232 ../lib/strtoofft.c \
33 ../lib/timediff.c \
3334 ../lib/nonblock.c \
3435 ../lib/warnless.c \
3536 ../lib/curl_ctype.c \
4041 CURLX_HFILES = \
4142 ../lib/curl_setup.h \
4243 ../lib/strtoofft.h \
44 ../lib/timediff.h \
4345 ../lib/nonblock.h \
4446 ../lib/warnless.h \
4547 ../lib/curl_ctype.h \
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4646 bold-off code (21) isn't supported everywhere - like in the mac
4747 Terminal. */
4848 #define BOLDOFF "\x1b[0m"
49 /* OSC 8 hyperlink escape sequence */
50 #define LINK "\x1b]8;;"
51 #define LINKST "\x1b\\"
52 #define LINKOFF LINK LINKST
53 #endif
54
55 #ifdef LINK
56 static void write_linked_location(CURL *curl, const char *location,
57 size_t loclen, FILE *stream);
4958 #endif
5059
5160 /*
203212 if(value) {
204213 size_t namelen = value - ptr;
205214 fprintf(outs->stream, BOLD "%.*s" BOLDOFF ":", namelen, ptr);
215 #ifndef LINK
206216 fwrite(&value[1], cb - namelen - 1, 1, outs->stream);
217 #else
218 if(curl_strnequal("Location", ptr, namelen)) {
219 write_linked_location(per->curl, &value[1], cb - namelen - 1,
220 outs->stream);
221 }
222 else
223 fwrite(&value[1], cb - namelen - 1, 1, outs->stream);
224 #endif
207225 }
208226 else
209227 /* not "handled", just show it */
310328
311329 return copy;
312330 }
331
332 #ifdef LINK
333 /*
334 * Treat the Location: header specially, by writing a special escape
335 * sequence that adds a hyperlink to the displayed text. This makes
336 * the absolute URL of the redirect clickable in supported terminals,
337 * which couldn't happen otherwise for relative URLs. The Location:
338 * header is supposed to always be absolute so this theoretically
339 * shouldn't be needed but the real world returns plenty of relative
340 * URLs here.
341 */
342 static
343 void write_linked_location(CURL *curl, const char *location, size_t loclen,
344 FILE *stream) {
345 /* This would so simple if CURLINFO_REDIRECT_URL were available here */
346 CURLU *u = NULL;
347 char *copyloc = NULL, *locurl = NULL, *scheme = NULL, *finalurl = NULL;
348 const char *loc = location;
349 size_t llen = loclen;
350
351 /* Strip leading whitespace of the redirect URL */
352 while(llen && *loc == ' ') {
353 ++loc;
354 --llen;
355 }
356
357 /* Strip the trailing end-of-line characters, normally "\r\n" */
358 while(llen && (loc[llen-1] == '\n' || loc[llen-1] == '\r'))
359 --llen;
360
361 /* CURLU makes it easy to handle the relative URL case */
362 u = curl_url();
363 if(!u)
364 goto locout;
365
366 /* Create a NUL-terminated and whitespace-stripped copy of Location: */
367 copyloc = malloc(llen + 1);
368 if(!copyloc)
369 goto locout;
370 memcpy(copyloc, loc, llen);
371 copyloc[llen] = 0;
372
373 /* The original URL to use as a base for a relative redirect URL */
374 if(curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &locurl))
375 goto locout;
376 if(curl_url_set(u, CURLUPART_URL, locurl, 0))
377 goto locout;
378
379 /* Redirected location. This can be either absolute or relative. */
380 if(curl_url_set(u, CURLUPART_URL, copyloc, 0))
381 goto locout;
382
383 if(curl_url_get(u, CURLUPART_URL, &finalurl, CURLU_NO_DEFAULT_PORT))
384 goto locout;
385
386 if(curl_url_get(u, CURLUPART_SCHEME, &scheme, 0))
387 goto locout;
388
389 if(!strcmp("http", scheme) ||
390 !strcmp("https", scheme) ||
391 !strcmp("ftp", scheme) ||
392 !strcmp("ftps", scheme)) {
393 fprintf(stream, LINK "%s" LINKST "%.*s" LINKOFF,
394 finalurl, loclen, location);
395 goto locdone;
396 }
397
398 /* Not a "safe" URL: don't linkify it */
399
400 locout:
401 /* Write the normal output in case of error or unsafe */
402 fwrite(location, loclen, 1, stream);
403
404 locdone:
405 if(u) {
406 curl_free(finalurl);
407 curl_free(scheme);
408 curl_url_cleanup(u);
409 free(copyloc);
410 }
411 }
412 #endif
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4747 #define OPENMODE S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
4848 #endif
4949
50 /* create a local file for writing, return TRUE on success */
50 /* create/open a local file for writing, return TRUE on success */
5151 bool tool_create_output_file(struct OutStruct *outs,
5252 struct OperationConfig *config)
5353 {
5454 struct GlobalConfig *global;
5555 FILE *file = NULL;
56 char *fname = outs->filename;
57 char *aname = NULL;
5658 DEBUGASSERT(outs);
5759 DEBUGASSERT(config);
5860 global = config->global;
59 if(!outs->filename || !*outs->filename) {
61 if(!fname || !*fname) {
6062 warnf(global, "Remote filename has no length!\n");
6163 return FALSE;
6264 }
6365
64 if(outs->is_cd_filename) {
65 /* don't overwrite existing files */
66 if(config->output_dir && outs->is_cd_filename) {
67 aname = aprintf("%s/%s", config->output_dir, fname);
68 if(!aname) {
69 errorf(global, "out of memory\n");
70 return FALSE;
71 }
72 fname = aname;
73 }
74
75 if(config->file_clobber_mode == CLOBBER_ALWAYS ||
76 (config->file_clobber_mode == CLOBBER_DEFAULT &&
77 !outs->is_cd_filename)) {
78 /* open file for writing */
79 file = fopen(fname, "wb");
80 }
81 else {
6682 int fd;
67 char *name = outs->filename;
68 char *aname = NULL;
69 if(config->output_dir) {
70 aname = aprintf("%s/%s", config->output_dir, name);
71 if(!aname) {
83 do {
84 fd = open(fname, O_CREAT | O_WRONLY | O_EXCL | O_BINARY, OPENMODE);
85 /* Keep retrying in the hope that it isn't interrupted sometime */
86 } while(fd == -1 && errno == EINTR);
87 if(config->file_clobber_mode == CLOBBER_NEVER && fd == -1) {
88 int next_num = 1;
89 size_t len = strlen(fname);
90 char *newname = malloc(len + 13); /* nul + 1-11 digits + dot */
91 if(!newname) {
7292 errorf(global, "out of memory\n");
7393 return FALSE;
7494 }
75 name = aname;
76 }
77 fd = open(name, O_CREAT | O_WRONLY | O_EXCL | O_BINARY, OPENMODE);
95 memcpy(newname, fname, len);
96 newname[len] = '.';
97 while(fd == -1 && /* haven't successfully opened a file */
98 (errno == EEXIST || errno == EISDIR) &&
99 /* because we keep having files that already exist */
100 next_num < 100 /* and we haven't reached the retry limit */ ) {
101 curlx_msnprintf(newname + len + 1, 12, "%d", next_num);
102 next_num++;
103 do {
104 fd = open(newname, O_CREAT | O_WRONLY | O_EXCL | O_BINARY, OPENMODE);
105 /* Keep retrying in the hope that it isn't interrupted sometime */
106 } while(fd == -1 && errno == EINTR);
107 }
108 outs->filename = newname; /* remember the new one */
109 outs->alloc_filename = TRUE;
110 }
111 /* An else statement to not overwrite existing files and not retry with
112 new numbered names (which would cover
113 config->file_clobber_mode == CLOBBER_DEFAULT && outs->is_cd_filename)
114 is not needed because we would have failed earlier, in the while loop
115 and `fd` would now be -1 */
78116 if(fd != -1) {
79117 file = fdopen(fd, "wb");
80118 if(!file)
81119 close(fd);
82120 }
121 }
122
123 if(!file) {
124 warnf(global, "Failed to open the file %s: %s\n", fname,
125 strerror(errno));
83126 free(aname);
84 }
85 else
86 /* open file for writing */
87 file = fopen(outs->filename, "wb");
88
89 if(!file) {
90 warnf(global, "Failed to create the file %s: %s\n", outs->filename,
91 strerror(errno));
92127 return FALSE;
93128 }
129 free(aname);
94130 outs->s_isreg = TRUE;
95131 outs->fopened = TRUE;
96132 outs->stream = file;
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4444 config->happy_eyeballs_timeout_ms = CURL_HET_DEFAULT;
4545 config->http09_allowed = FALSE;
4646 config->ftp_skip_ip = TRUE;
47 config->file_clobber_mode = CLOBBER_DEFAULT;
4748 }
4849
4950 static void free_config_fields(struct OperationConfig *config)
109109 struct curl_slist *mail_rcpt;
110110 char *mail_auth;
111111 bool mail_rcpt_allowfails; /* --mail-rcpt-allowfails */
112 char *sasl_authzid; /* Authorisation identity (identity to use) */
112 char *sasl_authzid; /* Authorization identity (identity to use) */
113113 bool sasl_ir; /* Enable/disable SASL initial response */
114114 bool proxytunnel;
115115 bool ftp_append; /* APPE on ftp */
289289 bool haproxy_protocol; /* whether to send HAProxy protocol v1 */
290290 bool disallow_username_in_url; /* disallow usernames in URLs */
291291 char *aws_sigv4;
292 enum {
293 CLOBBER_DEFAULT, /* Provides compatibility with previous versions of curl,
294 by using the default behavior for -o, -O, and -J.
295 If those options would have overwritten files, like
296 -o and -O would, then overwrite them. In the case of
297 -J, this will not overwrite any files. */
298 CLOBBER_NEVER, /* If the file exists, always fail */
299 CLOBBER_ALWAYS /* If the file exists, always overwrite it */
300 } file_clobber_mode;
292301 struct GlobalConfig *global;
293302 struct OperationConfig *prev;
294303 struct OperationConfig *next; /* Always last in the struct */
295304 struct State state; /* for create_transfer() */
305 bool rm_partial; /* on error, remove partially written output
306 files */
296307 };
297308
298309 struct GlobalConfig {
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
634634
635635 res_len = SearchPath(NULL, bundle_file, NULL, PATH_MAX, buf, &ptr);
636636 if(res_len > 0) {
637 char *mstr = curlx_convert_tchar_to_UTF8(buf);
637638 Curl_safefree(config->cacert);
638 #ifdef UNICODE
639 config->cacert = curlx_convert_wchar_to_UTF8(buf);
640 #else
641 config->cacert = strdup(buf);
642 #endif
639 if(mstr)
640 config->cacert = strdup(mstr);
641 curlx_unicodefree(mstr);
643642 if(!config->cacert)
644643 result = CURLE_OUT_OF_MEMORY;
645644 }
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
5858 NULL
5959 };
6060 /* easysrc_decl declarations come here */
61 /* easysrc_data initialisations come here */
61 /* easysrc_data initialization come here */
6262 /* easysrc_code statements come here */
6363 static const char *const srchard[]={
6464 "/* Here is a list of options the curl code used that cannot get generated",
124124 else { /* Not suitable for direct use, buffer stdin data. */
125125 size_t stdinsize = 0;
126126
127 if(file2memory(&data, &stdinsize, stdin) != PARAM_OK) {
128 /* Out of memory. */
127 switch(file2memory(&data, &stdinsize, stdin)) {
128 case PARAM_NO_MEM:
129129 return m;
130 }
131
132 if(ferror(stdin)) {
130 case PARAM_READ_ERROR:
133131 result = CURLE_READ_ERROR;
134 Curl_safefree(data);
135 data = NULL;
136 }
137 else if(!stdinsize) {
138 /* Zero-length data has been freed. Re-create it. */
139 data = strdup("");
140 if(!data)
141 return m;
132 break;
133 default:
134 if(!stdinsize) {
135 /* Zero-length data has been freed. Re-create it. */
136 data = strdup("");
137 if(!data)
138 return m;
139 }
140 break;
142141 }
143142 size = curlx_uztoso(stdinsize);
144143 origin = 0;
283283 {"fb", "styled-output", ARG_BOOL},
284284 {"fc", "mail-rcpt-allowfails", ARG_BOOL},
285285 {"fd", "fail-with-body", ARG_BOOL},
286 {"fe", "remove-on-error", ARG_BOOL},
286287 {"F", "form", ARG_STRING},
287288 {"Fs", "form-string", ARG_STRING},
288289 {"g", "globoff", ARG_BOOL},
312313 {"O", "remote-name", ARG_NONE},
313314 {"Oa", "remote-name-all", ARG_BOOL},
314315 {"Ob", "output-dir", ARG_STRING},
316 {"Oc", "clobber", ARG_BOOL},
315317 {"p", "proxytunnel", ARG_BOOL},
316318 {"P", "ftp-port", ARG_STRING},
317319 {"q", "disable", ARG_BOOL},
18291831 case 'd': /* --fail-with-body */
18301832 config->failwithbody = toggle;
18311833 break;
1832 default: /* --fail (hard on errors) */
1834 case 'e': /* --remove-on-error */
1835 config->rm_partial = toggle;
1836 break;
1837 default: /* --fail (hard on errors) */
18331838 config->failonerror = toggle;
18341839 break;
18351840 }
19421947 config->insecure_ok = toggle;
19431948 break;
19441949 case 'K': /* parse config file */
1945 if(parseconfig(nextarg, global))
1946 warnf(global, "error trying read config from the '%s' file\n",
1947 nextarg);
1950 if(parseconfig(nextarg, global)) {
1951 errorf(global, "cannot read config from '%s'\n", nextarg);
1952 return PARAM_READ_ERROR;
1953 }
19481954 break;
19491955 case 'l':
19501956 config->dirlistonly = toggle; /* only list the names of the FTP dir */
19942000 case 'N':
19952001 /* disable the output I/O buffering. note that the option is called
19962002 --buffer but is mostly used in the negative form: --no-buffer */
1997 if(longopt)
1998 config->nobuffer = (!toggle)?TRUE:FALSE;
1999 else
2000 config->nobuffer = toggle;
2003 config->nobuffer = longopt ? !toggle : TRUE;
20012004 break;
20022005 case 'O': /* --remote-name */
20032006 if(subletter == 'a') { /* --remote-name-all */
20062009 }
20072010 else if(subletter == 'b') { /* --output-dir */
20082011 GetStr(&config->output_dir, nextarg);
2012 break;
2013 }
2014 else if(subletter == 'c') { /* --clobber / --no-clobber */
2015 config->file_clobber_mode = toggle ? CLOBBER_ALWAYS : CLOBBER_NEVER;
20092016 break;
20102017 }
20112018 /* FALLTHROUGH */
20362043
20372044 /* fill in the outfile */
20382045 if('o' == letter) {
2046 if(!*nextarg) {
2047 warnf(global, "output file name has no length\n");
2048 return PARAM_BAD_USE;
2049 }
20392050 GetStr(&url->outfile, nextarg);
20402051 url->flags &= ~GETOUT_USEREMOTE; /* switch off */
20412052 }
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
4444 PARAM_NO_NOT_BOOLEAN,
4545 PARAM_CONTDISP_SHOW_HEADER, /* --include and --remote-header-name */
4646 PARAM_CONTDISP_RESUME_FROM, /* --continue-at and --remote-header-name */
47 PARAM_READ_ERROR,
4748 PARAM_LAST
4849 } ParameterError;
4950
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
7171 return "showing headers and --remote-header-name cannot be combined";
7272 case PARAM_CONTDISP_RESUME_FROM:
7373 return "--continue-at and --remote-header-name cannot be combined";
74 case PARAM_READ_ERROR:
75 return "error encountered when reading a file";
7476 default:
7577 return "unknown error";
7678 }
8486 "GET (-G, --get)",
8587 "HEAD (-I, --head)",
8688 "multipart formpost (-F, --form)",
87 "POST (-d, --data)"
89 "POST (-d, --data)",
90 "PUT (-T, --upload-file)"
8891 };
8992
9093 if((*store == HTTPREQ_UNSPEC) ||
108111 "GET",
109112 "HEAD",
110113 "POST",
111 "POST"
114 "POST",
115 "PUT"
112116 };
113117
114118 if(!method)
445445 "\n"
446446 " --cert-type <type>\n"
447447 " (TLS) Tells curl what type the provided client certificate is\n"
448 " using. PEM, DER, ENG and P12 are recognized types. If not speci-\n"
449 " fied, PEM is assumed.\n"
450 "\n"
448 " using. PEM, DER, ENG and P12 are recognized types.\n"
449 "\n"
450 " The default type depends on the TLS backend and is usually PEM,\n"
451 " however for Secure Transport and Schannel it is P12. If --cert\n"
452 " is a pkcs11: URI then ENG is the default type.\n"
453 "\n"
454 , stdout);
455 fputs(
451456 " If this option is used several times, the last one will be used.\n"
452457 "\n"
453458 " Example:\n"
454459 " curl --cert-type PEM --cert file https://example.com\n"
455460 "\n"
456 , stdout);
457 fputs(
458461 " See also -E, --cert, --key and --key-type.\n"
459462 "\n"
460463 " -E, --cert <certificate[:password]>\n"
461 " (TLS) Tells curl to use the specified client certificate file\n"
464 " (TLS) Tells curl to use the specified client certificate file\n"
462465 " when getting a file with HTTPS, FTPS or another SSL-based proto-\n"
463 " col. The certificate must be in PKCS#12 format if using Secure\n"
464 " Transport, or PEM format if using any other engine. If the op-\n"
465 " tional password is not specified, it will be queried for on the\n"
466 , stdout);
467 fputs(
468 " terminal. Note that this option assumes a \"certificate\" file\n"
466 , stdout);
467 fputs(
468 " col. The certificate must be in PKCS#12 format if using Secure\n"
469 " Transport, or PEM format if using any other engine. If the op-\n"
470 " tional password is not specified, it will be queried for on the\n"
471 " terminal. Note that this option assumes a \"certificate\" file\n"
469472 " that is the private key and the client certificate concatenated!\n"
470473 " See --cert and --key to specify them independently.\n"
471474 "\n"
472 " If curl is built against the NSS SSL library then this option\n"
473 " can tell curl the nickname of the certificate to use within the\n"
474 " NSS database defined by the environment variable SSL_DIR (or by\n"
475 , stdout);
476 fputs(
477 " default /etc/pki/nssdb). If the NSS PEM PKCS#11 module (lib-\n"
478 " nsspem.so) is available then PEM files may be loaded. If you\n"
475 , stdout);
476 fputs(
477 " If curl is built against the NSS SSL library then this option\n"
478 " can tell curl the nickname of the certificate to use within the\n"
479 " NSS database defined by the environment variable SSL_DIR (or by\n"
480 " default /etc/pki/nssdb). If the NSS PEM PKCS#11 module (lib-\n"
481 " nsspem.so) is available then PEM files may be loaded. If you\n"
479482 " want to use a file from the current directory, please precede it\n"
480 " with \"./\" prefix, in order to avoid confusion with a nickname.\n"
481 " If the nickname contains \":\", it needs to be preceded by \"\\\" so\n"
483 , stdout);
484 fputs(
485 " with \"./\" prefix, in order to avoid confusion with a nickname.\n"
486 " If the nickname contains \":\", it needs to be preceded by \"\\\" so\n"
482487 " that it is not recognized as password delimiter. If the nickname\n"
483 , stdout);
484 fputs(
485 " contains \"\\\", it needs to be escaped as \"\\\\\" so that it is not\n"
488 " contains \"\\\", it needs to be escaped as \"\\\\\" so that it is not\n"
486489 " recognized as an escape character.\n"
487490 "\n"
488 " If curl is built against OpenSSL library, and the engine pkcs11\n"
491 " If curl is built against OpenSSL library, and the engine pkcs11\n"
492 , stdout);
493 fputs(
489494 " is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
490 " ify a certificate located in a PKCS#11 device. A string begin-\n"
491 " ning with \"pkcs11:\" will be interpreted as a PKCS#11 URI. If a\n"
492 , stdout);
493 fputs(
495 " ify a certificate located in a PKCS#11 device. A string begin-\n"
496 " ning with \"pkcs11:\" will be interpreted as a PKCS#11 URI. If a\n"
494497 " PKCS#11 URI is provided, then the --engine option will be set as\n"
495498 " \"pkcs11\" if none was provided and the --cert-type option will be\n"
496499 " set as \"ENG\" if none was provided.\n"
497500 "\n"
498 " (iOS and macOS only) If curl is built against Secure Transport,\n"
501 , stdout);
502 fputs(
503 " (iOS and macOS only) If curl is built against Secure Transport,\n"
499504 " then the certificate string can either be the name of a certifi-\n"
500 " cate/private key in the system or user keychain, or the path to\n"
501 , stdout);
502 fputs(
503 " a PKCS#12-encoded certificate and private key. If you want to\n"
504 " use a file from the current directory, please precede it with\n"
505 " cate/private key in the system or user keychain, or the path to\n"
506 " a PKCS#12-encoded certificate and private key. If you want to\n"
507 " use a file from the current directory, please precede it with\n"
505508 " \"./\" prefix, in order to avoid confusion with a nickname.\n"
506509 "\n"
507 " (Schannel only) Client certificates must be specified by a path\n"
508 " expression to a certificate store. (Loading PFX is not sup-\n"
510 , stdout);
511 fputs(
512 " (Schannel only) Client certificates must be specified by a path\n"
513 " expression to a certificate store. (Loading PFX is not sup-\n"
509514 " ported; you can import it to a store first). You can use \"<store\n"
510 , stdout);
511 fputs(
512 " location>\\<store name>\\<thumbprint>\" to refer to a certificate\n"
513 " in the system certificates store, for example, \"Curren-\n"
515 " location>\\<store name>\\<thumbprint>\" to refer to a certificate\n"
516 " in the system certificates store, for example, \"Curren-\n"
514517 " tUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a\". Thumbprint\n"
515 " is usually a SHA-1 hex string which you can see in certificate\n"
516 " details. Following store locations are supported: CurrentUser,\n"
517 " LocalMachine, CurrentService, Services, CurrentUserGroupPolicy,\n"
518 , stdout);
519 fputs(
518 , stdout);
519 fputs(
520 " is usually a SHA-1 hex string which you can see in certificate\n"
521 " details. Following store locations are supported: CurrentUser,\n"
522 " LocalMachine, CurrentService, Services, CurrentUserGroupPolicy,\n"
520523 " LocalMachineGroupPolicy, LocalMachineEnterprise.\n"
521524 "\n"
522525 " If this option is used several times, the last one will be used.\n"
524527 " Example:\n"
525528 " curl --cert certfile --key keyfile https://example.com\n"
526529 "\n"
530 , stdout);
531 fputs(
527532 " See also --cert-type, --key and --key-type.\n"
528533 "\n"
529534 " --ciphers <list of ciphers>\n"
530535 " (TLS) Specifies which ciphers to use in the connection. The list\n"
531 " of ciphers must specify valid ciphers. Read up on SSL cipher\n"
532 , stdout);
533 fputs(
536 " of ciphers must specify valid ciphers. Read up on SSL cipher\n"
534537 " list details on this URL:\n"
535538 "\n"
536539 " https://curl.se/docs/ssl-ciphers.html\n"
538541 " If this option is used several times, the last one will be used.\n"
539542 "\n"
540543 " Example:\n"
544 , stdout);
545 fputs(
541546 " curl --ciphers ECDHE-ECDSA-AES256-CCM8 https://example.com\n"
542547 "\n"
543548 " See also --tlsv1.3.\n"
547552 " not an order; the server may or may not do it.\n"
548553 "\n"
549554 " Example:\n"
550 , stdout);
551 fputs(
552555 " curl --compressed-ssh sftp://example.com/\n"
553556 "\n"
554557 " See also --compressed. Added in 7.56.0.\n"
555558 "\n"
556559 " --compressed\n"
560 , stdout);
561 fputs(
557562 " (HTTP) Request a compressed response using one of the algorithms\n"
558563 " curl supports, and automatically decompress the content. Headers\n"
559564 " are not modified.\n"
560565 "\n"
561 " If this option is used and the server sends an unsupported en-\n"
566 " If this option is used and the server sends an unsupported en-\n"
562567 " coding, curl will report an error. This is a request, not an or-\n"
563 , stdout);
564 fputs(
565568 " der; the server may or may not deliver data compressed.\n"
566569 "\n"
567570 " Example:\n"
568571 " curl --compressed https://example.com\n"
569572 "\n"
573 , stdout);
574 fputs(
570575 " See also --compressed-ssh.\n"
571576 "\n"
572577 " -K, --config <file>\n"
573 " Specify a text file to read curl arguments from. The command\n"
574 " line arguments found in the text file will be used as if they\n"
578 " Specify a text file to read curl arguments from. The command\n"
579 " line arguments found in the text file will be used as if they\n"
575580 " were provided on the command line.\n"
576581 "\n"
577 , stdout);
578 fputs(
579 " Options and their parameters must be specified on the same line\n"
582 " Options and their parameters must be specified on the same line\n"
580583 " in the file, separated by whitespace, colon, or the equals sign.\n"
581 " Long option names can optionally be given in the config file\n"
584 , stdout);
585 fputs(
586 " Long option names can optionally be given in the config file\n"
582587 " without the initial double dashes and if so, the colon or equals\n"
583588 " characters can be used as separators. If the option is specified\n"
584 " with one or two dashes, there can be no colon or equals charac-\n"
585 , stdout);
586 fputs(
589 " with one or two dashes, there can be no colon or equals charac-\n"
587590 " ter between the option and its parameter.\n"
588591 "\n"
589 " If the parameter contains whitespace (or starts with : or =),\n"
590 " the parameter must be enclosed within quotes. Within double\n"
591 " quotes, the following escape sequences are available: \\\\, \\\",\n"
592 " If the parameter contains whitespace (or starts with : or =),\n"
593 , stdout);
594 fputs(
595 " the parameter must be enclosed within quotes. Within double\n"
596 " quotes, the following escape sequences are available: \\\\, \\\",\n"
592597 " \\t, \\n, \\r and \\v. A backslash preceding any other letter is ig-\n"
593598 " nored.\n"
594599 "\n"
595 " If the first column of a config line is a '#' character, the\n"
596 , stdout);
597 fputs(
600 " If the first column of a config line is a '#' character, the\n"
598601 " rest of the line will be treated as a comment.\n"
599602 "\n"
600603 " Only write one option per physical line in the config file.\n"
601604 "\n"
602 " Specify the filename to --config as '-' to make curl read the\n"
605 , stdout);
606 fputs(
607 " Specify the filename to --config as '-' to make curl read the\n"
603608 " file from stdin.\n"
604609 "\n"
605 " Note that to be able to specify a URL in the config file, you\n"
606 " need to specify it using the --url option, and not by simply\n"
607 " writing the URL on its own line. So, it could look similar to\n"
608 , stdout);
609 fputs(
610 " Note that to be able to specify a URL in the config file, you\n"
611 " need to specify it using the --url option, and not by simply\n"
612 " writing the URL on its own line. So, it could look similar to\n"
610613 " this:\n"
611614 "\n"
612615 " url = \"https://curl.se/docs/\"\n"
613616 "\n"
614617 " # --- Example file ---\n"
615618 " # this is a comment\n"
619 , stdout);
620 fputs(
616621 " url = \"example.com\"\n"
617622 " output = \"curlhere.html\"\n"
618623 " user-agent = \"superagent/1.0\"\n"
623628 " referer = \"http://nowhereatall.example.com/\"\n"
624629 " # --- End of example file ---\n"
625630 "\n"
626 , stdout);
627 fputs(
628631 " When curl is invoked, it (unless --disable is used) checks for a\n"
629 " default config file and uses it if found, even when --config is\n"
630 " used. The default config file is checked for in the following\n"
632 , stdout);
633 fputs(
634 " default config file and uses it if found, even when --config is\n"
635 " used. The default config file is checked for in the following\n"
631636 " places in this order:\n"
632637 "\n"
633638 " 1) \"$CURL_HOME/.curlrc\"\n"
638643 "\n"
639644 " 4) Windows: \"%USERPROFILE%\\.curlrc\"\n"
640645 "\n"
641 , stdout);
642 fputs(
643646 " 5) Windows: \"%APPDATA%\\.curlrc\"\n"
644647 "\n"
645648 " 6) Windows: \"%USERPROFILE%\\Application Data\\.curlrc\"\n"
646649 "\n"
650 , stdout);
651 fputs(
647652 " 7) Non-Windows: use getpwuid to find the home directory\n"
648653 "\n"
649 " 8) On Windows, if it finds no .curlrc file in the sequence de-\n"
650 " scribed above, it checks for one in the same dir the curl exe-\n"
654 " 8) On Windows, if it finds no .curlrc file in the sequence de-\n"
655 " scribed above, it checks for one in the same dir the curl exe-\n"
651656 " cutable is placed.\n"
652657 "\n"
653 " On Windows two filenames are checked per location: .curlrc and\n"
654 , stdout);
655 fputs(
658 " On Windows two filenames are checked per location: .curlrc and\n"
656659 " _curlrc, preferring the former. Older versions on Windows\n"
657660 " checked for _curlrc only.\n"
658661 "\n"
659 " This option can be used multiple times to load multiple config\n"
662 , stdout);
663 fputs(
664 " This option can be used multiple times to load multiple config\n"
660665 " files.\n"
661666 "\n"
662667 " Example:\n"
665670 " See also -q, --disable.\n"
666671 "\n"
667672 " --connect-timeout <fractional seconds>\n"
668 " Maximum time in seconds that you allow curl's connection to\n"
669 , stdout);
670 fputs(
671 " take. This only limits the connection phase, so if curl con-\n"
672 " nects within the given period it will continue - if not it will\n"
673 " Maximum time in seconds that you allow curl's connection to\n"
674 " take. This only limits the connection phase, so if curl con-\n"
675 , stdout);
676 fputs(
677 " nects within the given period it will continue - if not it will\n"
673678 " exit. Since version 7.32.0, this option accepts decimal values.\n"
674679 " If this option is used several times, the last one will be used.\n"
675680 "\n"
677682 " curl --connect-timeout 20 https://example.com\n"
678683 " curl --connect-timeout 3.14 https://example.com\n"
679684 "\n"
680 , stdout);
681 fputs(
682685 " See also -m, --max-time.\n"
683686 "\n"
684687 " --connect-to <HOST1:PORT1:HOST2:PORT2>\n"
685688 "\n"
689 , stdout);
690 fputs(
686691 " For a request to the given HOST1:PORT1 pair, connect to\n"
687692 " HOST2:PORT2 instead. This option is suitable to direct requests\n"
688693 " at a specific server, e.g. at a specific cluster node in a clus-\n"
689 " ter of servers. This option is only used to establish the net-\n"
690 " work connection. It does NOT affect the hostname/port that is\n"
691 , stdout);
692 fputs(
694 " ter of servers. This option is only used to establish the net-\n"
695 " work connection. It does NOT affect the hostname/port that is\n"
693696 " used for TLS/SSL (e.g. SNI, certificate verification) or for the\n"
694 " application protocols. \"HOST1\" and \"PORT1\" may be the empty\n"
697 , stdout);
698 fputs(
699 " application protocols. \"HOST1\" and \"PORT1\" may be the empty\n"
695700 " string, meaning \"any host/port\". \"HOST2\" and \"PORT2\" may also be\n"
696 " the empty string, meaning \"use the request's original\n"
701 " the empty string, meaning \"use the request's original\n"
697702 " host/port\".\n"
698703 "\n"
699704 " A \"host\" specified to this option is compared as a string, so it\n"
700 , stdout);
701 fputs(
702 " needs to match the name used in request URL. It can be either\n"
705 " needs to match the name used in request URL. It can be either\n"
706 , stdout);
707 fputs(
703708 " numerical such as \"127.0.0.1\" or the full host name such as \"ex-\n"
704709 " ample.org\".\n"
705710 "\n"
711716 " See also --resolve and -H, --header. Added in 7.49.0.\n"
712717 "\n"
713718 " -C, --continue-at <offset>\n"
714 , stdout);
715 fputs(
716 " Continue/Resume a previous file transfer at the given offset.\n"
717 " The given offset is the exact number of bytes that will be\n"
718 " skipped, counting from the beginning of the source file before\n"
719 " it is transferred to the destination. If used with uploads, the\n"
719 " Continue/Resume a previous file transfer at the given offset.\n"
720 , stdout);
721 fputs(
722 " The given offset is the exact number of bytes that will be\n"
723 " skipped, counting from the beginning of the source file before\n"
724 " it is transferred to the destination. If used with uploads, the\n"
720725 " FTP server command SIZE will not be used by curl.\n"
721726 "\n"
722 " Use \"-C -\" to tell curl to automatically find out where/how to\n"
723 , stdout);
724 fputs(
725 " resume the transfer. It then uses the given output/input files\n"
727 " Use \"-C -\" to tell curl to automatically find out where/how to\n"
728 " resume the transfer. It then uses the given output/input files\n"
726729 " to figure that out.\n"
727730 "\n"
731 , stdout);
732 fputs(
728733 " If this option is used several times, the last one will be used.\n"
729734 "\n"
730735 " Examples:\n"
734739 " See also -r, --range.\n"
735740 "\n"
736741 " -c, --cookie-jar <filename>\n"
737 " (HTTP) Specify to which file you want curl to write all cookies\n"
738 , stdout);
739 fputs(
740 " after a completed operation. Curl writes all cookies from its\n"
741 " in-memory cookie storage to the given file at the end of opera-\n"
742 " tions. If no cookies are known, no data will be written. The\n"
743 " file will be written using the Netscape cookie file format. If\n"
742 " (HTTP) Specify to which file you want curl to write all cookies\n"
743 " after a completed operation. Curl writes all cookies from its\n"
744 , stdout);
745 fputs(
746 " in-memory cookie storage to the given file at the end of opera-\n"
747 " tions. If no cookies are known, no data will be written. The\n"
748 " file will be written using the Netscape cookie file format. If\n"
744749 " you set the file name to a single dash, \"-\", the cookies will be\n"
745750 " written to stdout.\n"
746751 "\n"
747 , stdout);
748 fputs(
749 " This command line option will activate the cookie engine that\n"
752 " This command line option will activate the cookie engine that\n"
753 , stdout);
754 fputs(
750755 " makes curl record and use cookies. Another way to activate it is\n"
751756 " to use the --cookie option.\n"
752757 "\n"
753 " If the cookie jar cannot be created or written to, the whole\n"
754 " curl operation will not fail or even report an error clearly.\n"
755 " Using --verbose will get a warning displayed, but that is the\n"
756 , stdout);
757 fputs(
758 " only visible feedback you get about this possibly lethal situa-\n"
758 " If the cookie jar cannot be created or written to, the whole\n"
759 " curl operation will not fail or even report an error clearly.\n"
760 " Using --verbose will get a warning displayed, but that is the\n"
761 " only visible feedback you get about this possibly lethal situa-\n"
759762 " tion.\n"
760763 "\n"
761 " If this option is used several times, the last specified file\n"
764 , stdout);
765 fputs(
766 " If this option is used several times, the last specified file\n"
762767 " name will be used.\n"
763768 "\n"
764769 " Examples:\n"
768773 " See also -b, --cookie.\n"
769774 "\n"
770775 " -b, --cookie <data|filename>\n"
771 , stdout);
772 fputs(
773776 " (HTTP) Pass the data to the HTTP server in the Cookie header. It\n"
774 " is supposedly the data previously received from the server in a\n"
775 " \"Set-Cookie:\" line. The data should be in the format\n"
776 " \"NAME1=VALUE1; NAME2=VALUE2\".\n"
777 " is supposedly the data previously received from the server in a\n"
778 , stdout);
779 fputs(
780 " \"Set-Cookie:\" line. The data should be in the format\n"
781 " \"NAME1=VALUE1; NAME2=VALUE2\". This makes curl use the cookie\n"
782 " header with this content explicitly in all outgoing request(s).\n"
783 " If multiple requests are done due to authentication, followed\n"
784 " redirects or similar, they will all get this cookie passed on.\n"
777785 "\n"
778786 " If no '=' symbol is used in the argument, it is instead treated\n"
787 , stdout);
788 fputs(
779789 " as a filename to read previously stored cookie from. This option\n"
780 , stdout);
781 fputs(
782790 " also activates the cookie engine which will make curl record in-\n"
783791 " coming cookies, which may be handy if you are using this in com-\n"
784792 " bination with the --location option or do multiple URL transfers\n"
785793 " on the same invoke. If the file name is exactly a minus (\"-\"),\n"
786794 " curl will instead read the contents from stdin.\n"
787795 "\n"
796 , stdout);
797 fputs(
788798 " The file format of the file to read cookies from should be plain\n"
789 , stdout);
790 fputs(
791799 " HTTP headers (Set-Cookie style) or the Netscape/Mozilla cookie\n"
792800 " file format.\n"
793801 "\n"
796804 " --cookie-jar option.\n"
797805 "\n"
798806 " If you use the Set-Cookie file format and do not specify a do-\n"
807 , stdout);
808 fputs(
799809 " main then the cookie is not sent since the domain will never\n"
800 , stdout);
801 fputs(
802810 " match. To address this, set a domain in Set-Cookie line (doing\n"
803811 " that will include sub-domains) or preferably: use the Netscape\n"
804812 " format.\n"
807815 "\n"
808816 " Users often want to both read cookies from a file and write up-\n"
809817 " dated cookies back to a file, so using both --cookie and\n"
818 , stdout);
819 fputs(
810820 " --cookie-jar in the same command line is common.\n"
811821 "\n"
812822 " Examples:\n"
813 , stdout);
814 fputs(
815823 " curl -b cookiefile https://example.com\n"
816824 " curl -b cookiefile -c cookiefile https://example.com\n"
817825 "\n"
820828 " --create-dirs\n"
821829 " When used in conjunction with the --output option, curl will\n"
822830 " create the necessary local directory hierarchy as needed. This\n"
831 , stdout);
832 fputs(
823833 " option creates the directories mentioned with the --output op-\n"
824 , stdout);
825 fputs(
826834 " tion, nothing else. If the --output file name uses no directory,\n"
827835 " or if the directories it mentions already exist, no directories\n"
828836 " will be created.\n"
832840 " create-dirs.\n"
833841 "\n"
834842 " Example:\n"
843 , stdout);
844 fputs(
835845 " curl --create-dirs --output local/dir/file https://example.com\n"
836846 "\n"
837 , stdout);
838 fputs(
839847 " See also --ftp-create-dirs and --output-dir.\n"
840848 "\n"
841849 " --create-file-mode <mode>\n"
844852 " set which 'mode' to set on the file at creation time, instead of\n"
845853 " the default 0644.\n"
846854 "\n"
855 , stdout);
856 fputs(
847857 " This option takes an octal number as argument.\n"
848858 "\n"
849 , stdout);
850 fputs(
851859 " If this option is used several times, the last one will be used.\n"
852860 "\n"
853861 " Example:\n"
861869 " (SMTP added in 7.40.0)\n"
862870 "\n"
863871 " Example:\n"
872 , stdout);
873 fputs(
864874 " curl --crlf -T file ftp://example.com/\n"
865875 "\n"
866 , stdout);
867 fputs(
868876 " See also -B, --use-ascii.\n"
869877 "\n"
870878 " --crlfile <file>\n"
877885 " Example:\n"
878886 " curl --crlfile rejects.txt https://example.com\n"
879887 "\n"
888 , stdout);
889 fputs(
880890 " See also --cacert and --capath.\n"
881891 "\n"
882 , stdout);
883 fputs(
884892 " --curves <algorithm list>\n"
885893 " (TLS) Tells curl to request specific curves to use during SSL\n"
886894 " session establishment according to RFC 8422, 5.1. Multiple al-\n"
888896 " \"X25519:P-521\"). The parameter is available identically in the\n"
889897 " \"openssl s_client/s_server\" utilities.\n"
890898 "\n"
899 , stdout);
900 fputs(
891901 " --curves allows a OpenSSL powered curl to make SSL-connections\n"
892 , stdout);
893 fputs(
894902 " with exactly the (EC) curve requested by the client, avoiding\n"
895903 " nontransparent client/server negotiations.\n"
896904 "\n"
903911 " See also --ciphers. Added in 7.73.0.\n"
904912 "\n"
905913 " --data-ascii <data>\n"
914 , stdout);
915 fputs(
906916 " (HTTP) This is just an alias for -d, --data.\n"
907917 "\n"
908918 " Example:\n"
909 , stdout);
910 fputs(
911919 " curl --data-ascii @file https://example.com\n"
912920 "\n"
913921 " See also --data-binary, --data-raw and --data-urlencode.\n"
917925 " cessing whatsoever.\n"
918926 "\n"
919927 " If you start the data with the letter @, the rest should be a\n"
928 , stdout);
929 fputs(
920930 " filename. Data is posted in a similar manner as --data does, ex-\n"
921 , stdout);
922 fputs(
923931 " cept that newlines and carriage returns are preserved and con-\n"
924932 " versions are never done.\n"
925933 "\n"
926934 " Like --data the default content-type sent to the server is ap-\n"
927935 " plication/x-www-form-urlencoded. If you want the data to be\n"
928936 " treated as arbitrary binary data by the server then set the con-\n"
937 , stdout);
938 fputs(
929939 " tent-type to octet-stream: -H \"Content-Type: application/octet-\n"
930940 " stream\".\n"
931941 "\n"
932 , stdout);
933 fputs(
934942 " If this option is used several times, the ones following the\n"
935943 " first will append data as described in -d, --data.\n"
936944 "\n"
941949 "\n"
942950 " --data-raw <data>\n"
943951 " (HTTP) This posts data similarly to --data but without the spe-\n"
952 , stdout);
953 fputs(
944954 " cial interpretation of the @ character.\n"
945955 "\n"
946956 " Examples:\n"
947 , stdout);
948 fputs(
949957 " curl --data-raw \"hello\" https://example.com\n"
950958 " curl --data-raw \"@at@at@\" https://example.com\n"
951959 "\n"
955963 " (HTTP) This posts data, similar to the other --data options with\n"
956964 " the exception that this performs URL-encoding.\n"
957965 "\n"
966 , stdout);
967 fputs(
958968 " To be CGI-compliant, the <data> part should begin with a name\n"
959 , stdout);
960 fputs(
961969 " followed by a separator and a content specification. The <data>\n"
962970 " part can be passed to curl using one of the following syntaxes:\n"
963971 "\n"
965973 " This will make curl URL-encode the content and pass that\n"
966974 " on. Just be careful so that the content does not contain\n"
967975 " any = or @ symbols, as that will then make the syntax\n"
976 , stdout);
977 fputs(
968978 " match one of the other cases below!\n"
969979 "\n"
970980 " =content\n"
971 , stdout);
972 fputs(
973981 " This will make curl URL-encode the content and pass that\n"
974982 " on. The preceding = symbol is not included in the data.\n"
975983 "\n"
979987 " encoded already.\n"
980988 "\n"
981989 " @filename\n"
990 , stdout);
991 fputs(
982992 " This will make curl load data from the given file (in-\n"
983 , stdout);
984 fputs(
985993 " cluding any newlines), URL-encode that data and pass it\n"
986994 " on in the POST.\n"
987995 "\n"
989997 " This will make curl load data from the given file (in-\n"
990998 " cluding any newlines), URL-encode that data and pass it\n"
991999 " on in the POST. The name part gets an equal sign ap-\n"
1000 , stdout);
1001 fputs(
9921002 " pended, resulting in name=urlencoded-file-content. Note\n"
993 , stdout);
994 fputs(
9951003 " that the name is expected to be URL-encoded already.\n"
9961004 "\n"
9971005 " Examples:\n"
10031011 " See also -d, --data and --data-raw.\n"
10041012 "\n"
10051013 " -d, --data <data>\n"
1014 , stdout);
1015 fputs(
10061016 " (HTTP MQTT) Sends the specified data in a POST request to the\n"
1007 , stdout);
1008 fputs(
10091017 " HTTP server, in the same way that a browser does when a user has\n"
10101018 " filled in an HTML form and presses the submit button. This will\n"
10111019 " cause curl to pass the data to the server using the content-type\n"
10121020 " application/x-www-form-urlencoded. Compare to -F, --form.\n"
10131021 "\n"
10141022 " --data-raw is almost the same but does not have a special inter-\n"
1023 , stdout);
1024 fputs(
10151025 " pretation of the @ character. To post data purely binary, you\n"
1016 , stdout);
1017 fputs(
10181026 " should instead use the --data-binary option. To URL-encode the\n"
10191027 " value of a form field you may use --data-urlencode.\n"
10201028 "\n"
10211029 " If any of these options is used more than once on the same com-\n"
10221030 " mand line, the data pieces specified will be merged with a sepa-\n"
10231031 " rating &-symbol. Thus, using '-d name=daniel -d skill=lousy'\n"
1032 , stdout);
1033 fputs(
10241034 " would generate a post chunk that looks like\n"
1025 , stdout);
1026 fputs(
10271035 " 'name=daniel&skill=lousy'.\n"
10281036 "\n"
10291037 " If you start the data with the letter @, the rest should be a\n"
10301038 " file name to read the data from, or - if you want curl to read\n"
10311039 " the data from stdin. Posting data from a file named 'foobar'\n"
10321040 " would thus be done with -d, --data @foobar. When --data is told\n"
1041 , stdout);
1042 fputs(
10331043 " to read from a file like that, carriage returns and newlines\n"
1034 , stdout);
1035 fputs(
10361044 " will be stripped out. If you do not want the @ character to have\n"
10371045 " a special interpretation use --data-raw instead.\n"
10381046 "\n"
10411049 " curl -d \"name=curl\" -d \"tool=cmdline\" https://example.com\n"
10421050 " curl -d @filename https://example.com\n"
10431051 "\n"
1052 , stdout);
1053 fputs(
10441054 " See also --data-binary, --data-urlencode and --data-raw. This\n"
1045 , stdout);
1046 fputs(
1047 " option overrides -F, --form and -I, --head and -T, --upload-\n"
1048 " file.\n"
1055 " option is mutually exclusive to -F, --form and -I, --head and\n"
1056 " -T, --upload-file.\n"
10491057 "\n"
10501058 " --delegation <LEVEL>\n"
10511059 " (GSS/kerberos) Set LEVEL to tell the server what it is allowed\n"
10541062 " none Do not allow any delegation.\n"
10551063 "\n"
10561064 " policy Delegates if and only if the OK-AS-DELEGATE flag is set\n"
1065 , stdout);
1066 fputs(
10571067 " in the Kerberos service ticket, which is a matter of\n"
1058 , stdout);
1059 fputs(
10601068 " realm policy.\n"
10611069 "\n"
10621070 " always Unconditionally allow the server to delegate.\n"
10701078 "\n"
10711079 " --digest\n"
10721080 " (HTTP) Enables HTTP Digest authentication. This is an authenti-\n"
1081 , stdout);
1082 fputs(
10731083 " cation scheme that prevents the password from being sent over\n"
1074 , stdout);
1075 fputs(
10761084 " the wire in clear text. Use this in combination with the normal\n"
10771085 " --user option to set user name and password.\n"
10781086 "\n"
10831091 " curl -u name:password --digest https://example.com\n"
10841092 "\n"
10851093 " See also -u, --user, --proxy-digest and --anyauth. This option\n"
1086 " overrides --basic and --ntlm and --negotiate.\n"
1094 , stdout);
1095 fputs(
1096 " is mutually exclusive to --basic and --ntlm and --negotiate.\n"
10871097 "\n"
10881098 " --disable-eprt\n"
1089 , stdout);
1090 fputs(
10911099 " (FTP) Tell curl to disable the use of the EPRT and LPRT commands\n"
10921100 " when doing active FTP transfers. Curl will normally always first\n"
10931101 " attempt to use EPRT, then LPRT before using PORT, but with this\n"
10941102 " option, it will use PORT right away. EPRT and LPRT are exten-\n"
10951103 " sions to the original FTP protocol, and may not work on all\n"
1104 , stdout);
1105 fputs(
10961106 " servers, but they enable more functionality in a better way than\n"
1097 , stdout);
1098 fputs(
10991107 " the traditional PORT command.\n"
11001108 "\n"
11011109 " --eprt can be used to explicitly enable EPRT again and --no-eprt\n"
11051113 " effect as EPRT is necessary then.\n"
11061114 "\n"
11071115 " Disabling EPRT only changes the active behavior. If you want to\n"
1116 , stdout);
1117 fputs(
11081118 " switch to passive mode you need to not use --ftp-port or force\n"
11091119 " it with --ftp-pasv.\n"
11101120 "\n"
1111 , stdout);
1112 fputs(
11131121 " Example:\n"
11141122 " curl --disable-eprt ftp://example.com/\n"
11151123 "\n"
11181126 " --disable-epsv\n"
11191127 " (FTP) Tell curl to disable the use of the EPSV command when do-\n"
11201128 " ing passive FTP transfers. Curl will normally always first at-\n"
1129 , stdout);
1130 fputs(
11211131 " tempt to use EPSV before PASV, but with this option, it will not\n"
11221132 " try using EPSV.\n"
11231133 "\n"
1124 , stdout);
1125 fputs(
11261134 " --epsv can be used to explicitly enable EPSV again and --no-epsv\n"
11271135 " is an alias for --disable-epsv.\n"
11281136 "\n"
11301138 " as EPSV is necessary then.\n"
11311139 "\n"
11321140 " Disabling EPSV only changes the passive behavior. If you want to\n"
1141 , stdout);
1142 fputs(
11331143 " switch to active mode you need to use -P, --ftp-port.\n"
11341144 "\n"
11351145 " Example:\n"
11361146 " curl --disable-epsv ftp://example.com/\n"
11371147 "\n"
1138 , stdout);
1139 fputs(
11401148 " See also --disable-eprt and -P, --ftp-port.\n"
11411149 "\n"
11421150 " -q, --disable\n"
11451153 " tails on the default config file search path.\n"
11461154 "\n"
11471155 " Example:\n"
1156 , stdout);
1157 fputs(
11481158 " curl -q https://example.com\n"
11491159 "\n"
11501160 " See also -K, --config.\n"
11511161 "\n"
11521162 " --disallow-username-in-url\n"
1153 , stdout);
1154 fputs(
1155 " (HTTP) This tells curl to exit if passed a url containing a\n"
1163 " (HTTP) This tells curl to exit if passed a URL containing a\n"
11561164 " username. This is probably most useful when the URL is being\n"
1157 " provided at run-time or similar.\n"
1165 " provided at runtime or similar.\n"
11581166 "\n"
11591167 " Example:\n"
11601168 " curl --disallow-username-in-url https://example.com\n"
11621170 " See also --proto. Added in 7.61.0.\n"
11631171 "\n"
11641172 " --dns-interface <interface>\n"
1173 , stdout);
1174 fputs(
11651175 " (DNS) Tell curl to send outgoing DNS requests through <inter-\n"
1166 , stdout);
1167 fputs(
11681176 " face>. This option is a counterpart to --interface (which does\n"
11691177 " not affect DNS). The supplied string must be an interface name\n"
11701178 " (not an address).\n"
11731181 " curl --dns-interface eth0 https://example.com\n"
11741182 "\n"
11751183 " See also --dns-ipv4-addr and --dns-ipv6-addr. --dns-interface\n"
1184 , stdout);
1185 fputs(
11761186 " requires that the underlying libcurl was built to support c-\n"
11771187 " ares. Added in 7.33.0.\n"
11781188 "\n"
1179 , stdout);
1180 fputs(
11811189 " --dns-ipv4-addr <address>\n"
11821190 " (DNS) Tell curl to bind to <ip-address> when making IPv4 DNS re-\n"
11831191 " quests, so that the DNS requests originate from this address.\n"
11861194 " If this option is used several times, the last one will be used.\n"
11871195 "\n"
11881196 " Example:\n"
1197 , stdout);
1198 fputs(
11891199 " curl --dns-ipv4-addr 10.1.2.3 https://example.com\n"
11901200 "\n"
11911201 " See also --dns-interface and --dns-ipv6-addr. --dns-ipv4-addr\n"
1192 , stdout);
1193 fputs(
11941202 " requires that the underlying libcurl was built to support c-\n"
11951203 " ares. Added in 7.33.0.\n"
11961204 "\n"
11971205 " --dns-ipv6-addr <address>\n"
11981206 " (DNS) Tell curl to bind to <ip-address> when making IPv6 DNS re-\n"
11991207 " quests, so that the DNS requests originate from this address.\n"
1208 , stdout);
1209 fputs(
12001210 " The argument should be a single IPv6 address.\n"
12011211 "\n"
12021212 " If this option is used several times, the last one will be used.\n"
12031213 "\n"
12041214 " Example:\n"
1205 , stdout);
1206 fputs(
12071215 " curl --dns-ipv6-addr 2a04:4e42::561 https://example.com\n"
12081216 "\n"
12091217 " See also --dns-interface and --dns-ipv4-addr. --dns-ipv6-addr\n"
12111219 " ares. Added in 7.33.0.\n"
12121220 "\n"
12131221 " --dns-servers <addresses>\n"
1222 , stdout);
1223 fputs(
12141224 " Set the list of DNS servers to be used instead of the system de-\n"
12151225 " fault. The list of IP addresses should be separated with com-\n"
1216 , stdout);
1217 fputs(
12181226 " mas. Port numbers may also optionally be given as :<port-number>\n"
12191227 " after each IP address.\n"
12201228 "\n"
12231231 " Example:\n"
12241232 " curl --dns-servers 192.168.0.1,192.168.0.2 https://example.com\n"
12251233 "\n"
1234 , stdout);
1235 fputs(
12261236 " See also --dns-interface and --dns-ipv4-addr. --dns-servers re-\n"
12271237 " quires that the underlying libcurl was built to support c-ares.\n"
12281238 " Added in 7.33.0.\n"
12291239 "\n"
1230 , stdout);
1231 fputs(
12321240 " --doh-cert-status\n"
12331241 " Same as --cert-status but used for DoH (DNS-over-HTTPS).\n"
12341242 "\n"
12381246 " See also --doh-insecure. Added in 7.76.0.\n"
12391247 "\n"
12401248 " --doh-insecure\n"
1249 , stdout);
1250 fputs(
12411251 " Same as --insecure but used for DoH (DNS-over-HTTPS).\n"
12421252 "\n"
12431253 " Example:\n"
12441254 " curl --doh-insecure --doh-url https://doh.example https://example.com\n"
12451255 "\n"
1246 , stdout);
1247 fputs(
12481256 " See also --doh-url. Added in 7.76.0.\n"
12491257 "\n"
12501258 " --doh-url <URL>\n"
12521260 " hostnames, instead of using the default name resolver mechanism.\n"
12531261 " The URL must be HTTPS.\n"
12541262 "\n"
1263 , stdout);
1264 fputs(
12551265 " Some SSL options that you set for your transfer will apply to\n"
12561266 " DoH since the name lookups take place over SSL. However, the\n"
1257 , stdout);
1258 fputs(
12591267 " certificate verification settings are not inherited and can be\n"
12601268 " controlled separately via --doh-insecure and --doh-cert-status.\n"
12611269 "\n"
12641272 " Example:\n"
12651273 " curl --doh-url https://doh.example https://example.com\n"
12661274 "\n"
1275 , stdout);
1276 fputs(
12671277 " See also --doh-insecure. Added in 7.62.0.\n"
12681278 "\n"
12691279 " -D, --dump-header <filename>\n"
1270 , stdout);
1271 fputs(
12721280 " (HTTP FTP) Write the received protocol headers to the specified\n"
12731281 " file. If no headers are received, the use of this option will\n"
12741282 " create an empty file.\n"
12761284 " When used in FTP, the FTP server response lines are considered\n"
12771285 " being \"headers\" and thus are saved there.\n"
12781286 "\n"
1287 , stdout);
1288 fputs(
12791289 " If this option is used several times, the last one will be used.\n"
12801290 "\n"
12811291 " Example:\n"
12821292 " curl --dump-header store.txt https://example.com\n"
12831293 "\n"
1284 , stdout);
1285 fputs(
12861294 " See also -o, --output.\n"
12871295 "\n"
12881296 " --egd-file <file>\n"
12911299 " connections.\n"
12921300 "\n"
12931301 " Example:\n"
1302 , stdout);
1303 fputs(
12941304 " curl --egd-file /random/here https://example.com\n"
12951305 "\n"
12961306 " See also --random-file.\n"
12971307 "\n"
12981308 " --engine <name>\n"
12991309 " (TLS) Select the OpenSSL crypto engine to use for cipher opera-\n"
1300 , stdout);
1301 fputs(
13021310 " tions. Use --engine list to print a list of build-time supported\n"
13031311 " engines. Note that not all (and possibly none) of the engines\n"
1304 " may be available at run-time.\n"
1312 " may be available at runtime.\n"
13051313 "\n"
13061314 " Example:\n"
13071315 " curl --engine flavor https://example.com\n"
13081316 "\n"
1317 , stdout);
1318 fputs(
13091319 " See also --ciphers and --curves.\n"
13101320 "\n"
13111321 " --etag-compare <file>\n"
13121322 " (HTTP) This option makes a conditional HTTP request for the spe-\n"
1313 , stdout);
1314 fputs(
13151323 " cific ETag read from the given file by sending a custom If-None-\n"
13161324 " Match header using the stored ETag.\n"
13171325 "\n"
13191327 " only a single line with the desired ETag. An empty file is\n"
13201328 " parsed as an empty ETag.\n"
13211329 "\n"
1330 , stdout);
1331 fputs(
13221332 " Use the option --etag-save to first save the ETag from a re-\n"
13231333 " sponse, and then use this option to compare against the saved\n"
1324 , stdout);
1325 fputs(
13261334 " ETag in a subsequent request.\n"
13271335 "\n"
13281336 " Example:\n"
13321340 "\n"
13331341 " --etag-save <file>\n"
13341342 " (HTTP) This option saves an HTTP ETag to the specified file. An\n"
1343 , stdout);
1344 fputs(
13351345 " ETag is a caching related header, usually returned in a re-\n"
13361346 " sponse.\n"
13371347 "\n"
13381348 " If no ETag is sent by the server, an empty file is created.\n"
13391349 "\n"
1340 , stdout);
1341 fputs(
13421350 " Example:\n"
13431351 " curl --etag-save storetag.txt https://example.com\n"
13441352 "\n"
13461354 "\n"
13471355 " --expect100-timeout <seconds>\n"
13481356 " (HTTP) Maximum time in seconds that you allow curl to wait for a\n"
1357 , stdout);
1358 fputs(
13491359 " 100-continue response when curl emits an Expects: 100-continue\n"
13501360 " header in its request. By default curl will wait one second.\n"
13511361 " This option accepts decimal values! When curl stops waiting, it\n"
1352 , stdout);
1353 fputs(
13541362 " will continue as if the response has been received.\n"
13551363 "\n"
13561364 " Example:\n"
13591367 " See also --connect-timeout. Added in 7.47.0.\n"
13601368 "\n"
13611369 " --fail-early\n"
1370 , stdout);
1371 fputs(
13621372 " Fail and exit on the first detected transfer error.\n"
13631373 "\n"
13641374 " When curl is used to do multiple transfers on the command line,\n"
13651375 " it will attempt to operate on each given URL, one by one. By de-\n"
1366 , stdout);
1367 fputs(
13681376 " fault, it will ignore errors if there are more URLs given and\n"
13691377 " the last URL's success will determine the error code curl re-\n"
13701378 " turns. So early failures will be \"hidden\" by subsequent success-\n"
13711379 " ful transfers.\n"
13721380 "\n"
1381 , stdout);
1382 fputs(
13731383 " Using this option, curl will instead return an error on the\n"
13741384 " first transfer that fails, independent of the amount of URLs\n"
1375 , stdout);
1376 fputs(
13771385 " that are given on the command line. This way, no transfer fail-\n"
13781386 " ures go undetected by scripts and similar.\n"
13791387 "\n"
13811389 " use of -:, --next.\n"
13821390 "\n"
13831391 " This option does not imply -f, --fail, which causes transfers to\n"
1392 , stdout);
1393 fputs(
13841394 " fail due to the server's HTTP status code. You can combine the\n"
13851395 " two options, however note --fail is not global and is therefore\n"
1386 , stdout);
1387 fputs(
13881396 " contained by -:, --next.\n"
13891397 "\n"
13901398 " Example:\n"
13941402 "\n"
13951403 " --fail-with-body\n"
13961404 " (HTTP) Return an error on server errors where the HTTP response\n"
1405 , stdout);
1406 fputs(
13971407 " code is 400 or greater). In normal cases when an HTTP server\n"
13981408 " fails to deliver a document, it returns an HTML document stating\n"
1399 , stdout);
1400 fputs(
14011409 " so (which often also describes why and more). This flag will\n"
14021410 " still allow curl to output and save that content but also to re-\n"
14031411 " turn error 22.\n"
14051413 " This is an alternative option to --fail which makes curl fail\n"
14061414 " for the same circumstances but without saving the content.\n"
14071415 "\n"
1416 , stdout);
1417 fputs(
14081418 " Example:\n"
14091419 " curl --fail-with-body https://example.com\n"
14101420 "\n"
14111421 " See also -f, --fail. Added in 7.76.0.\n"
14121422 "\n"
14131423 " -f, --fail\n"
1414 , stdout);
1415 fputs(
1416 " (HTTP) Fail silently (no output at all) on server errors. This\n"
1417 " is mostly done to enable scripts etc to better deal with failed\n"
1424 " (HTTP) Fail fast with no output at all on server errors. This is\n"
1425 " useful to enable scripts and users to better deal with failed\n"
14181426 " attempts. In normal cases when an HTTP server fails to deliver a\n"
14191427 " document, it returns an HTML document stating so (which often\n"
1428 , stdout);
1429 fputs(
14201430 " also describes why and more). This flag will prevent curl from\n"
14211431 " outputting that and return error 22.\n"
14221432 "\n"
1423 , stdout);
1424 fputs(
14251433 " This method is not fail-safe and there are occasions where non-\n"
14261434 " successful response codes will slip through, especially when au-\n"
14271435 " thentication is involved (response codes 401 and 407).\n"
14321440 " See also --fail-with-body.\n"
14331441 "\n"
14341442 " --false-start\n"
1443 , stdout);
1444 fputs(
14351445 " (TLS) Tells curl to use false start during the TLS handshake.\n"
1436 , stdout);
1437 fputs(
14381446 " False start is a mode where a TLS client will start sending ap-\n"
14391447 " plication data before verifying the server's Finished message,\n"
14401448 " thus saving a round trip when performing a full handshake.\n"
14431451 " port (on iOS 7.0 or later, or OS X 10.9 or later) backends.\n"
14441452 "\n"
14451453 " Example:\n"
1454 , stdout);
1455 fputs(
14461456 " curl --false-start https://example.com\n"
14471457 "\n"
1448 , stdout);
1449 fputs(
14501458 " See also --tcp-fastopen. Added in 7.42.0.\n"
14511459 "\n"
14521460 " --form-escape\n"
16401648 " curl --form \"name=curl\" --form \"file=@loadthis\" https://example.com\n"
16411649 "\n"
16421650 " See also -d, --data, --form-string and --form-escape. This op-\n"
1643 " tion overrides -d, --data and -I, --head and -T, --upload-file.\n"
1651 " tion is mutually exclusive to -d, --data and -I, --head and -T,\n"
1652 " --upload-file.\n"
16441653 "\n"
16451654 " --ftp-account <data>\n"
16461655 " (FTP) When an FTP server asks for \"account data\" after user name\n"
16471656 , stdout);
16481657 fputs(
1649 " and password has been provided, this data is sent off using the\n"
1658 " and password has been provided, this data is sent off using the\n"
16501659 " ACCT command.\n"
16511660 "\n"
16521661 " If this option is used several times, the last one will be used.\n"
16571666 " See also -u, --user.\n"
16581667 "\n"
16591668 " --ftp-alternative-to-user <command>\n"
1660 " (FTP) If authenticating with the USER and PASS commands fails,\n"
1661 , stdout);
1662 fputs(
1663 " send this command. When connecting to Tumbleweed's Secure\n"
1664 " Transport server over FTPS using a client certificate, using\n"
1665 " \"SITE AUTH\" will tell the server to retrieve the username from\n"
1669 " (FTP) If authenticating with the USER and PASS commands fails,\n"
1670 , stdout);
1671 fputs(
1672 " send this command. When connecting to Tumbleweed's Secure\n"
1673 " Transport server over FTPS using a client certificate, using\n"
1674 " \"SITE AUTH\" will tell the server to retrieve the username from\n"
16661675 " the certificate.\n"
16671676 "\n"
16681677 " Example:\n"
16731682 " --ftp-create-dirs\n"
16741683 , stdout);
16751684 fputs(
1676 " (FTP SFTP) When an FTP or SFTP URL/operation uses a path that\n"
1685 " (FTP SFTP) When an FTP or SFTP URL/operation uses a path that\n"
16771686 " does not currently exist on the server, the standard behavior of\n"
16781687 " curl is to fail. Using this option, curl will instead attempt to\n"
16791688 " create missing directories.\n"
16861695 " --ftp-method <method>\n"
16871696 , stdout);
16881697 fputs(
1689 " (FTP) Control what method curl should use to reach a file on an\n"
1690 " FTP(S) server. The method argument should be one of the follow-\n"
1698 " (FTP) Control what method curl should use to reach a file on an\n"
1699 " FTP(S) server. The method argument should be one of the follow-\n"
16911700 " ing alternatives:\n"
16921701 "\n"
16931702 " multicwd\n"
1694 " curl does a single CWD operation for each path part in\n"
1695 " the given URL. For deep hierarchies this means many com-\n"
1696 " mands. This is how RFC 1738 says it should be done. This\n"
1703 " curl does a single CWD operation for each path part in\n"
1704 " the given URL. For deep hierarchies this means many com-\n"
1705 " mands. This is how RFC 1738 says it should be done. This\n"
16971706 , stdout);
16981707 fputs(
16991708 " is the default but the slowest behavior.\n"
17001709 "\n"
1701 " nocwd curl does no CWD at all. curl will do SIZE, RETR, STOR\n"
1710 " nocwd curl does no CWD at all. curl will do SIZE, RETR, STOR\n"
17021711 " etc and give a full path to the server for all these com-\n"
17031712 " mands. This is the fastest behavior.\n"
17041713 "\n"
17051714 " singlecwd\n"
17061715 " curl does one CWD with the full target directory and then\n"
1707 " operates on the file \"normally\" (like in the multicwd\n"
1708 , stdout);
1709 fputs(
1710 " case). This is somewhat more standards compliant than\n"
1716 " operates on the file \"normally\" (like in the multicwd\n"
1717 , stdout);
1718 fputs(
1719 " case). This is somewhat more standards compliant than\n"
17111720 " 'nocwd' but without the full penalty of 'multicwd'.\n"
17121721 "\n"
17131722 " Examples:\n"
17201729 " --ftp-pasv\n"
17211730 , stdout);
17221731 fputs(
1723 " (FTP) Use passive mode for the data connection. Passive is the\n"
1724 " internal default behavior, but using this option can be used to\n"
1732 " (FTP) Use passive mode for the data connection. Passive is the\n"
1733 " internal default behavior, but using this option can be used to\n"
17251734 " override a previous --ftp-port option.\n"
17261735 "\n"
1727 " If this option is used several times, only the first one is\n"
1728 " used. Undoing an enforced passive really is not doable but you\n"
1736 " If this option is used several times, only the first one is\n"
1737 " used. Undoing an enforced passive really is not doable but you\n"
17291738 " must then instead enforce the correct --ftp-port again.\n"
17301739 "\n"
17311740 , stdout);
17381747 "\n"
17391748 " See also --disable-epsv.\n"
17401749 " -P, --ftp-port <address>\n"
1741 " (FTP) Reverses the default initiator/listener roles when con-\n"
1742 " necting with FTP. This option makes curl use active mode. curl\n"
1743 , stdout);
1744 fputs(
1745 " then tells the server to connect back to the client's specified\n"
1750 " (FTP) Reverses the default initiator/listener roles when con-\n"
1751 " necting with FTP. This option makes curl use active mode. curl\n"
1752 , stdout);
1753 fputs(
1754 " then tells the server to connect back to the client's specified\n"
17461755 " address and port, while passive mode asks the server to setup an\n"
1747 " IP address and port for it to connect to. <address> should be\n"
1756 " IP address and port for it to connect to. <address> should be\n"
17481757 " one of:\n"
17491758 "\n"
17501759 " interface\n"
1751 " e.g. \"eth0\" to specify which interface's IP address you\n"
1760 " e.g. \"eth0\" to specify which interface's IP address you\n"
17521761 " want to use (Unix only)\n"
17531762 "\n"
17541763 " IP address\n"
17591768 " host name\n"
17601769 " e.g. \"my.host.domain\" to specify the machine\n"
17611770 "\n"
1762 " - make curl pick the same IP address that is already used\n"
1771 " - make curl pick the same IP address that is already used\n"
17631772 " for the control connection\n"
17641773 "\n"
1765 " If this option is used several times, the last one will be used. Dis-\n"
1766 " able the use of PORT with --ftp-pasv. Disable the attempt to use the\n"
1767 , stdout);
1768 fputs(
1769 " EPRT command instead of PORT by using --disable-eprt. EPRT is really\n"
1774 " If this option is used several times, the last one will be used. Dis-\n"
1775 " able the use of PORT with --ftp-pasv. Disable the attempt to use the\n"
1776 , stdout);
1777 fputs(
1778 " EPRT command instead of PORT by using --disable-eprt. EPRT is really\n"
17701779 " PORT++.\n"
17711780 "\n"
1772 " You can also append \":[start]-[end]\" to the right of the address, to\n"
1773 " tell curl what TCP port range to use. That means you specify a port\n"
1774 " range, from a lower to a higher number. A single number works as well,\n"
1775 " but do note that it increases the risk of failure since the port may\n"
1781 " You can also append \":[start]-[end]\" to the right of the address, to\n"
1782 " tell curl what TCP port range to use. That means you specify a port\n"
1783 " range, from a lower to a higher number. A single number works as well,\n"
1784 " but do note that it increases the risk of failure since the port may\n"
17761785 " not be available.\n"
17771786 "\n"
17781787 " Examples:\n"
17851794 " See also --ftp-pasv and --disable-eprt.\n"
17861795 "\n"
17871796 " --ftp-pret\n"
1788 " (FTP) Tell curl to send a PRET command before PASV (and EPSV).\n"
1789 " Certain FTP servers, mainly drftpd, require this non-standard\n"
1790 " command for directory listings as well as up and downloads in\n"
1797 " (FTP) Tell curl to send a PRET command before PASV (and EPSV).\n"
1798 " Certain FTP servers, mainly drftpd, require this non-standard\n"
1799 " command for directory listings as well as up and downloads in\n"
17911800 " PASV mode.\n"
17921801 "\n"
17931802 " Example:\n"
17991808 "\n"
18001809 " --ftp-skip-pasv-ip\n"
18011810 " (FTP) Tell curl to not use the IP address the server suggests in\n"
1802 " its response to curl's PASV command when curl connects the data\n"
1803 " connection. Instead curl will re-use the same IP address it al-\n"
1811 " its response to curl's PASV command when curl connects the data\n"
1812 " connection. Instead curl will re-use the same IP address it al-\n"
18041813 " ready uses for the control connection.\n"
18051814 "\n"
18061815 " Since curl 7.74.0 this option is enabled by default.\n"
18071816 "\n"
18081817 , stdout);
18091818 fputs(
1810 " This option has no effect if PORT, EPRT or EPSV is used instead\n"
1819 " This option has no effect if PORT, EPRT or EPSV is used instead\n"
18111820 " of PASV.\n"
18121821 " Example:\n"
18131822 " curl --ftp-skip-pasv-ip ftp://example.com/\n"
18151824 " See also --ftp-pasv.\n"
18161825 "\n"
18171826 " --ftp-ssl-ccc-mode <active/passive>\n"
1818 " (FTP) Sets the CCC mode. The passive mode will not initiate the\n"
1827 " (FTP) Sets the CCC mode. The passive mode will not initiate the\n"
18191828 " shutdown, but instead wait for the server to do it, and will not\n"
18201829 " reply to the shutdown from the server. The active mode initiates\n"
18211830 , stdout);
18281837 " See also --ftp-ssl-ccc.\n"
18291838 "\n"
18301839 " --ftp-ssl-ccc\n"
1831 " (FTP) Use CCC (Clear Command Channel) Shuts down the SSL/TLS\n"
1840 " (FTP) Use CCC (Clear Command Channel) Shuts down the SSL/TLS\n"
18321841 " layer after authenticating. The rest of the control channel com-\n"
1833 " munication will be unencrypted. This allows NAT routers to fol-\n"
1842 " munication will be unencrypted. This allows NAT routers to fol-\n"
18341843 , stdout);
18351844 fputs(
18361845 " low the FTP transaction. The default mode is passive.\n"
18401849 " See also --ssl and --ftp-ssl-ccc-mode.\n"
18411850 "\n"
18421851 " --ftp-ssl-control\n"
1843 " (FTP) Require SSL/TLS for the FTP login, clear for transfer.\n"
1844 " Allows secure authentication, but non-encrypted data transfers\n"
1845 " for efficiency. Fails the transfer if the server does not sup-\n"
1852 " (FTP) Require SSL/TLS for the FTP login, clear for transfer.\n"
1853 " Allows secure authentication, but non-encrypted data transfers\n"
1854 " for efficiency. Fails the transfer if the server does not sup-\n"
18461855 " port SSL/TLS.\n"
18471856 "\n"
18481857 , stdout);
18531862 " See also --ssl.\n"
18541863 "\n"
18551864 " -G, --get\n"
1856 " When used, this option will make all data specified with -d,\n"
1857 " --data, --data-binary or --data-urlencode to be used in an HTTP\n"
1858 " GET request instead of the POST request that otherwise would be\n"
1865 " When used, this option will make all data specified with -d,\n"
1866 " --data, --data-binary or --data-urlencode to be used in an HTTP\n"
1867 " GET request instead of the POST request that otherwise would be\n"
18591868 " used. The data will be appended to the URL with a '?' separator.\n"
18601869 , stdout);
18611870 fputs(
1862 " If used in combination with -I, --head, the POST data will in-\n"
1871 " If used in combination with -I, --head, the POST data will in-\n"
18631872 " stead be appended to the URL with a HEAD request.\n"
18641873 "\n"
1865 " If this option is used several times, only the first one is\n"
1874 " If this option is used several times, only the first one is\n"
18661875 " used. This is because undoing a GET does not make sense, but you\n"
18671876 " should then instead enforce the alternative method you prefer.\n"
18681877 "\n"
18771886 "\n"
18781887 " -g, --globoff\n"
18791888 " This option switches off the \"URL globbing parser\". When you set\n"
1880 " this option, you can specify URLs that contain the letters {}[]\n"
1881 " without having curl itself interpret them. Note that these let-\n"
1882 , stdout);
1883 fputs(
1884 " ters are not normal legal URL contents but they should be en-\n"
1889 " this option, you can specify URLs that contain the letters {}[]\n"
1890 " without having curl itself interpret them. Note that these let-\n"
1891 , stdout);
1892 fputs(
1893 " ters are not normal legal URL contents but they should be en-\n"
18851894 " coded according to the URI standard.\n"
18861895 "\n"
18871896 " Example:\n"
18901899 " See also -K, --config and -q, --disable.\n"
18911900 "\n"
18921901 " --happy-eyeballs-timeout-ms <milliseconds>\n"
1893 " Happy Eyeballs is an algorithm that attempts to connect to both\n"
1894 " IPv4 and IPv6 addresses for dual-stack hosts, giving IPv6 a\n"
1895 , stdout);
1896 fputs(
1897 " head-start of the specified number of milliseconds. If the IPv6\n"
1898 " address cannot be connected to within that time, then a connec-\n"
1899 " tion attempt is made to the IPv4 address in parallel. The first\n"
1902 " Happy Eyeballs is an algorithm that attempts to connect to both\n"
1903 " IPv4 and IPv6 addresses for dual-stack hosts, giving IPv6 a\n"
1904 , stdout);
1905 fputs(
1906 " head-start of the specified number of milliseconds. If the IPv6\n"
1907 " address cannot be connected to within that time, then a connec-\n"
1908 " tion attempt is made to the IPv4 address in parallel. The first\n"
19001909 " connection to be established is the one that is used.\n"
19011910 "\n"
1902 " The range of suggested useful values is limited. Happy Eyeballs\n"
1903 " RFC 6555 says \"It is RECOMMENDED that connection attempts be\n"
1904 , stdout);
1905 fputs(
1906 " paced 150-250 ms apart to balance human factors against network\n"
1907 " load.\" libcurl currently defaults to 200 ms. Firefox and Chrome\n"
1911 " The range of suggested useful values is limited. Happy Eyeballs\n"
1912 " RFC 6555 says \"It is RECOMMENDED that connection attempts be\n"
1913 , stdout);
1914 fputs(
1915 " paced 150-250 ms apart to balance human factors against network\n"
1916 " load.\" libcurl currently defaults to 200 ms. Firefox and Chrome\n"
19081917 " currently default to 300 ms.\n"
19091918 "\n"
19101919 " If this option is used several times, the last one will be used.\n"
19171926 " --haproxy-protocol\n"
19181927 , stdout);
19191928 fputs(
1920 " (HTTP) Send a HAProxy PROXY protocol v1 header at the beginning\n"
1921 " of the connection. This is used by some load balancers and re-\n"
1929 " (HTTP) Send a HAProxy PROXY protocol v1 header at the beginning\n"
1930 " of the connection. This is used by some load balancers and re-\n"
19221931 " verse proxies to indicate the client's true IP address and port.\n"
1923 " This option is primarily useful when sending test requests to a\n"
1932 " This option is primarily useful when sending test requests to a\n"
19241933 " service that expects this header.\n"
19251934 "\n"
19261935 " Example:\n"
19321941 "\n"
19331942 " -I, --head\n"
19341943 " (HTTP FTP FILE) Fetch the headers only! HTTP-servers feature the\n"
1935 " command HEAD which this uses to get nothing but the header of a\n"
1936 " document. When used on an FTP or FILE file, curl displays the\n"
1944 " command HEAD which this uses to get nothing but the header of a\n"
1945 " document. When used on an FTP or FILE file, curl displays the\n"
19371946 " file size and last modification time only.\n"
19381947 "\n"
19391948 " Example:\n"
19441953 " See also -G, --get, -v, --verbose and --trace-ascii.\n"
19451954 "\n"
19461955 " -H, --header <header/@file>\n"
1947 " (HTTP) Extra header to include in the request when sending HTTP\n"
1948 " to a server. You may specify any number of extra headers. Note\n"
1956 " (HTTP) Extra header to include in the request when sending HTTP\n"
1957 " to a server. You may specify any number of extra headers. Note\n"
19491958 " that if you should add a custom header that has the same name as\n"
1950 " one of the internal ones curl would use, your externally set\n"
1959 " one of the internal ones curl would use, your externally set\n"
19511960 " header will be used instead of the internal one. This allows you\n"
19521961 , stdout);
19531962 fputs(
1954 " to make even trickier stuff than curl would normally do. You\n"
1955 " should not replace internally set headers without knowing per-\n"
1956 " fectly well what you are doing. Remove an internal header by\n"
1957 " giving a replacement without content on the right side of the\n"
1963 " to make even trickier stuff than curl would normally do. You\n"
1964 " should not replace internally set headers without knowing per-\n"
1965 " fectly well what you are doing. Remove an internal header by\n"
1966 " giving a replacement without content on the right side of the\n"
19581967 " colon, as in: -H \"Host:\". If you send the custom header with no-\n"
1959 " value then its header must be terminated with a semicolon, such\n"
1968 " value then its header must be terminated with a semicolon, such\n"
19601969 , stdout);
19611970 fputs(
19621971 " as -H \"X-Custom-Header;\" to send \"X-Custom-Header:\".\n"
19631972 "\n"
1964 " curl will make sure that each header you add/replace is sent\n"
1973 " curl will make sure that each header you add/replace is sent\n"
19651974 " with the proper end-of-line marker, you should thus not add that\n"
19661975 " as a part of the header content: do not add newlines or carriage\n"
19671976 " returns, they will only mess things up for you.\n"
19681977 "\n"
1969 " This option can take an argument in @filename style, which then\n"
1970 , stdout);
1971 fputs(
1972 " adds a header for each line in the input file. Using @- will\n"
1978 " This option can take an argument in @filename style, which then\n"
1979 , stdout);
1980 fputs(
1981 " adds a header for each line in the input file. Using @- will\n"
19731982 " make curl read the header file from stdin. Added in 7.55.0.\n"
19741983 "\n"
1975 " You need --proxy-header to send custom headers intended for a\n"
1984 " You need --proxy-header to send custom headers intended for an\n"
19761985 " HTTP proxy. Added in 7.37.0.\n"
19771986 "\n"
1978 " Passing on a \"Transfer-Encoding: chunked\" header when doing a\n"
1979 " HTTP request with a request body, will make curl send the data\n"
1987 " Passing on a \"Transfer-Encoding: chunked\" header when doing an\n"
1988 " HTTP request with a request body, will make curl send the data\n"
19801989 " using chunked encoding.\n"
19811990 "\n"
19821991 , stdout);
19831992 fputs(
1984 " WARNING: headers set with this option will be set in all re-\n"
1985 " quests - even after redirects are followed, like when told with\n"
1986 " -L, --location. This can lead to the header being sent to other\n"
1987 " hosts than the original host, so sensitive headers should be\n"
1993 " WARNING: headers set with this option will be set in all re-\n"
1994 " quests - even after redirects are followed, like when told with\n"
1995 " -L, --location. This can lead to the header being sent to other\n"
1996 " hosts than the original host, so sensitive headers should be\n"
19881997 " used with caution combined with following redirects.\n"
19891998 "\n"
1990 " This option can be used multiple times to add/replace/remove\n"
1999 " This option can be used multiple times to add/replace/remove\n"
19912000 " multiple headers.\n"
19922001 "\n"
19932002 , stdout);
20002009 " See also -A, --user-agent and -e, --referer.\n"
20012010 "\n"
20022011 " -h, --help <category>\n"
2003 " Usage help. This lists all commands of the <category>. If no\n"
2004 " arg was provided, curl will display the most important command\n"
2005 , stdout);
2006 fputs(
2007 " line arguments. If the argument \"all\" was provided, curl will\n"
2008 " display all options available. If the argument \"category\" was\n"
2012 " Usage help. This lists all commands of the <category>. If no\n"
2013 " arg was provided, curl will display the most important command\n"
2014 , stdout);
2015 fputs(
2016 " line arguments. If the argument \"all\" was provided, curl will\n"
2017 " display all options available. If the argument \"category\" was\n"
20092018 " provided, curl will display all categories and their meanings.\n"
20102019 "\n"
20112020 " Example:\n"
20142023 " See also -v, --verbose.\n"
20152024 "\n"
20162025 " --hostpubmd5 <md5>\n"
2017 " (SFTP SCP) Pass a string containing 32 hexadecimal digits. The\n"
2018 , stdout);
2019 fputs(
2020 " string should be the 128 bit MD5 checksum of the remote host's\n"
2026 " (SFTP SCP) Pass a string containing 32 hexadecimal digits. The\n"
2027 , stdout);
2028 fputs(
2029 " string should be the 128 bit MD5 checksum of the remote host's\n"
20212030 " public key, curl will refuse the connection with the host unless\n"
20222031 " the md5sums match.\n"
20232032 "\n"
20392048 " See also --hostpubmd5. Added in 7.80.0.\n"
20402049 "\n"
20412050 " --hsts <file name>\n"
2042 " (HTTPS) This option enables HSTS for the transfer. If the file\n"
2043 " name points to an existing HSTS cache file, that will be used.\n"
2044 , stdout);
2045 fputs(
2046 " After a completed transfer, the cache will be saved to the file\n"
2051 " (HTTPS) This option enables HSTS for the transfer. If the file\n"
2052 " name points to an existing HSTS cache file, that will be used.\n"
2053 , stdout);
2054 fputs(
2055 " After a completed transfer, the cache will be saved to the file\n"
20472056 " name again if it has been modified.\n"
20482057 "\n"
20492058 " Specify a \"\" file name (zero length) to avoid loading/saving and\n"
20502059 " make curl just handle HSTS in memory.\n"
20512060 "\n"
2052 " If this option is used several times, curl will load contents\n"
2061 " If this option is used several times, curl will load contents\n"
20532062 " from all the files but the last one will be used for saving.\n"
20542063 "\n"
20552064 " Example:\n"
20622071 " --http0.9\n"
20632072 " (HTTP) Tells curl to be fine with HTTP version 0.9 response.\n"
20642073 "\n"
2065 " HTTP/0.9 is a completely headerless response and therefore you\n"
2066 " can also connect with this to non-HTTP servers and still get a\n"
2074 " HTTP/0.9 is a completely headerless response and therefore you\n"
2075 " can also connect with this to non-HTTP servers and still get a\n"
20672076 " response since curl will simply transparently downgrade - if al-\n"
20682077 " lowed.\n"
20692078 "\n"
20772086 " See also --http1.1, --http2 and --http3. Added in 7.64.0.\n"
20782087 "\n"
20792088 " -0, --http1.0\n"
2080 " (HTTP) Tells curl to use HTTP version 1.0 instead of using its\n"
2089 " (HTTP) Tells curl to use HTTP version 1.0 instead of using its\n"
20812090 " internally preferred HTTP version.\n"
20822091 "\n"
20832092 " Example:\n"
20842093 " curl --http1.0 https://example.com\n"
20852094 "\n"
2086 " See also --http0.9 and --http1.1. This option overrides\n"
2087 , stdout);
2088 fputs(
2089 " --http1.1 and --http2 and --http2-prior-knowledge and --http3.\n"
2095 " See also --http0.9 and --http1.1. This option is mutually exclu-\n"
2096 , stdout);
2097 fputs(
2098 " sive to --http1.1 and --http2 and --http2-prior-knowledge and\n"
2099 " --http3.\n"
20902100 "\n"
20912101 " --http1.1\n"
20922102 " (HTTP) Tells curl to use HTTP version 1.1.\n"
20942104 " Example:\n"
20952105 " curl --http1.1 https://example.com\n"
20962106 "\n"
2097 " See also -0, --http1.0 and --http0.9. This option overrides -0,\n"
2098 " --http1.0 and --http2 and --http2-prior-knowledge and --http3.\n"
2099 " Added in 7.33.0.\n"
2107 " See also -0, --http1.0 and --http0.9. This option is mutually\n"
2108 " exclusive to -0, --http1.0 and --http2 and --http2-prior-knowl-\n"
2109 " edge and --http3. Added in 7.33.0.\n"
21002110 "\n"
21012111 " --http2-prior-knowledge\n"
21022112 , stdout);
21142124 fputs(
21152125 " See also --http2 and --http3. --http2-prior-knowledge requires\n"
21162126 " that the underlying libcurl was built to support HTTP/2. This\n"
2117 " option overrides --http1.1 and -0, --http1.0 and --http2 and\n"
2118 " --http3. Added in 7.49.0.\n"
2127 " option is mutually exclusive to --http1.1 and -0, --http1.0 and\n"
2128 " --http2 and --http3. Added in 7.49.0.\n"
21192129 "\n"
21202130 " --http2\n"
21212131 " (HTTP) Tells curl to use HTTP version 2.\n"
21222132 "\n"
21232133 " For HTTPS, this means curl will attempt to negotiate HTTP/2 in\n"
21242134 " the TLS handshake. curl does this by default.\n"
2125 "\n"
2126 , stdout);
2127 fputs(
2135 , stdout);
2136 fputs(
2137 "\n"
21282138 " For HTTP, this means curl will attempt to upgrade the request to\n"
21292139 " HTTP/2 using the Upgrade: request header.\n"
21302140 "\n"
21382148 , stdout);
21392149 fputs(
21402150 " See also --http1.1 and --http3. --http2 requires that the under-\n"
2141 " lying libcurl was built to support HTTP/2. This option overrides\n"
2142 " --http1.1 and -0, --http1.0 and --http2-prior-knowledge and\n"
2143 " --http3. Added in 7.33.0.\n"
2151 " lying libcurl was built to support HTTP/2. This option is mutu-\n"
2152 " ally exclusive to --http1.1 and -0, --http1.0 and --http2-prior-\n"
2153 " knowledge and --http3. Added in 7.33.0.\n"
21442154 "\n"
21452155 " --http3\n"
21462156 " (HTTP) WARNING: this option is experimental. Do not use in pro-\n"
21642174 " curl --http3 https://example.com\n"
21652175 "\n"
21662176 " See also --http1.1 and --http2. --http3 requires that the under-\n"
2167 " lying libcurl was built to support HTTP/3. This option overrides\n"
2168 " --http1.1 and -0, --http1.0 and --http2 and --http2-prior-knowl-\n"
2169 " edge. Added in 7.66.0.\n"
2177 " lying libcurl was built to support HTTP/3. This option is mutu-\n"
2178 " ally exclusive to --http1.1 and -0, --http1.0 and --http2 and\n"
2179 " --http2-prior-knowledge. Added in 7.66.0.\n"
21702180 "\n"
21712181 " --ignore-content-length\n"
21722182 " (FTP HTTP) For HTTP, Ignore the Content-Length header. This is\n"
22562266 " See also --dns-interface.\n"
22572267 "\n"
22582268 " -4, --ipv4\n"
2259 " This option tells curl to resolve names to IPv4 addresses only,\n"
2260 " and not for example try IPv6.\n"
2269 " This option tells curl to use IPv4 addresses only, and not for\n"
2270 " example try IPv6.\n"
22612271 "\n"
22622272 " Example:\n"
22632273 " curl --ipv4 https://example.com\n"
22642274 "\n"
2265 " See also --http1.1 and --http2. This option overrides -6,\n"
2266 " --ipv6.\n"
2275 " See also --http1.1 and --http2. This option is mutually exclu-\n"
2276 " sive to -6, --ipv6.\n"
22672277 "\n"
22682278 " -6, --ipv6\n"
2269 " This option tells curl to resolve names to IPv6 addresses only,\n"
2270 " and not for example try IPv4.\n"
2279 " This option tells curl to use IPv6 addresses only, and not for\n"
2280 " example try IPv4.\n"
22712281 "\n"
22722282 , stdout);
22732283 fputs(
22742284 " Example:\n"
22752285 " curl --ipv6 https://example.com\n"
22762286 "\n"
2277 " See also --http1.1 and --http2. This option overrides -4,\n"
2278 " --ipv4.\n"
2287 " See also --http1.1 and --http2. This option is mutually exclu-\n"
2288 " sive to -4, --ipv4.\n"
22792289 "\n"
22802290 " --json <data>\n"
22812291 " (HTTP) Sends the specified JSON data in a POST request to the\n"
23032313 " the additional data pieces will be concatenated to the previous\n"
23042314 " before sending.\n"
23052315 "\n"
2306 " The headers this option sets can be overriden with --header as\n"
2316 " The headers this option sets can be overridden with --header as\n"
23072317 " usual.\n"
23082318 "\n"
23092319 " Examples:\n"
23142324 " curl --json @prepared https://example.com\n"
23152325 " curl --json @- https://example.com < json.txt\n"
23162326 "\n"
2317 " See also --data-binary and --data-raw. This option overrides -F,\n"
2318 " --form and -I, --head and -T, --upload-file. Added in 7.82.0.\n"
2327 " See also --data-binary and --data-raw. This option is mutually\n"
2328 " exclusive to -F, --form and -I, --head and -T, --upload-file.\n"
2329 " Added in 7.82.0.\n"
23192330 "\n"
23202331 " -j, --junk-session-cookies\n"
2332 , stdout);
2333 fputs(
23212334 " (HTTP) When curl is told to read cookies from a given file, this\n"
2322 , stdout);
2323 fputs(
23242335 " option will make it discard all \"session cookies\". This will ba-\n"
2325 " sically have the same effect as if a new session is started.\n"
2326 " Typical browsers always discard session cookies when they are\n"
2336 " sically have the same effect as if a new session is started.\n"
2337 " Typical browsers always discard session cookies when they are\n"
23272338 " closed down.\n"
23282339 "\n"
23292340 " Example:\n"
23302341 " curl --junk-session-cookies -b cookies.txt https://example.com\n"
23312342 "\n"
2343 , stdout);
2344 fputs(
23322345 " See also -b, --cookie and -c, --cookie-jar.\n"
23332346 "\n"
23342347 " --keepalive-time <seconds>\n"
2335 , stdout);
2336 fputs(
2337 " This option sets the time a connection needs to remain idle be-\n"
2338 " fore sending keepalive probes and the time between individual\n"
2348 " This option sets the time a connection needs to remain idle be-\n"
2349 " fore sending keepalive probes and the time between individual\n"
23392350 " keepalive probes. It is currently effective on operating systems\n"
23402351 " offering the TCP_KEEPIDLE and TCP_KEEPINTVL socket options\n"
2341 " (meaning Linux, recent AIX, HP-UX and more). This option has no\n"
2342 " effect if --no-keepalive is used.\n"
2343 "\n"
2344 , stdout);
2345 fputs(
2352 " (meaning Linux, recent AIX, HP-UX and more). Keepalives are\n"
2353 , stdout);
2354 fputs(
2355 " used by the TCP stack to detect broken networks on idle connec-\n"
2356 " tions. The number of missed keepalive probes before declaring\n"
2357 " the connection down is OS dependent and is commonly 9 or 10.\n"
2358 " This option has no effect if --no-keepalive is used.\n"
2359 "\n"
23462360 " If this option is used several times, the last one will be used.\n"
23472361 " If unspecified, the option defaults to 60 seconds.\n"
23482362 "\n"
23492363 " Example:\n"
2364 , stdout);
2365 fputs(
23502366 " curl --keepalive-time 20 https://example.com\n"
23512367 "\n"
23522368 " See also --no-keepalive and -m, --max-time.\n"
23542370 " --key-type <type>\n"
23552371 " (TLS) Private key file type. Specify which type your --key pro-\n"
23562372 " vided private key is. DER, PEM, and ENG are supported. If not\n"
2357 , stdout);
2358 fputs(
23592373 " specified, PEM is assumed.\n"
23602374 "\n"
23612375 " If this option is used several times, the last one will be used.\n"
23622376 "\n"
23632377 " Example:\n"
2378 , stdout);
2379 fputs(
23642380 " curl --key-type DER --key here https://example.com\n"
23652381 "\n"
23662382 " See also --key.\n"
23692385 " (TLS SSH) Private key file name. Allows you to provide your pri-\n"
23702386 " vate key in this separate file. For SSH, if not specified, curl\n"
23712387 " tries the following candidates in order: '~/.ssh/id_rsa',\n"
2372 , stdout);
2373 fputs(
23742388 " '~/.ssh/id_dsa', './id_rsa', './id_dsa'.\n"
23752389 "\n"
23762390 " If curl is built against OpenSSL library, and the engine pkcs11\n"
2391 , stdout);
2392 fputs(
23772393 " is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
23782394 " ify a private key located in a PKCS#11 device. A string begin-\n"
23792395 " ning with \"pkcs11:\" will be interpreted as a PKCS#11 URI. If a\n"
23802396 " PKCS#11 URI is provided, then the --engine option will be set as\n"
2381 , stdout);
2382 fputs(
23832397 " \"pkcs11\" if none was provided and the --key-type option will be\n"
23842398 " set as \"ENG\" if none was provided.\n"
23852399 "\n"
2400 , stdout);
2401 fputs(
2402 " If curl is built against Secure Transport or Schannel then this\n"
2403 " option is ignored for TLS protocols (HTTPS, etc). Those backends\n"
2404 " expect the private key to be already present in the keychain or\n"
2405 " PKCS#12 file containing the certificate.\n"
2406 "\n"
23862407 " If this option is used several times, the last one will be used.\n"
23872408 "\n"
23882409 " Example:\n"
23892410 " curl --cert certificate --key here https://example.com\n"
23902411 "\n"
2412 , stdout);
2413 fputs(
23912414 " See also --key-type and -E, --cert.\n"
23922415 "\n"
23932416 " --krb <level>\n"
2394 " (FTP) Enable Kerberos authentication and use. The level must be\n"
2395 , stdout);
2396 fputs(
2417 " (FTP) Enable Kerberos authentication and use. The level must be\n"
23972418 " entered and should be one of 'clear', 'safe', 'confidential', or\n"
2398 " 'private'. Should you use a level that is not one of these,\n"
2419 " 'private'. Should you use a level that is not one of these,\n"
23992420 " 'private' will instead be used.\n"
24002421 "\n"
24012422 " If this option is used several times, the last one will be used.\n"
24022423 "\n"
24032424 " Example:\n"
2425 , stdout);
2426 fputs(
24042427 " curl --krb clear ftp://example.com/\n"
24052428 "\n"
2406 " See also --delegation and --ssl. --krb requires that the under-\n"
2429 " See also --delegation and --ssl. --krb requires that the under-\n"
24072430 " lying libcurl was built to support Kerberos.\n"
24082431 "\n"
2409 , stdout);
2410 fputs(
24112432 " --libcurl <file>\n"
2412 " Append this option to any ordinary curl command line, and you\n"
2413 " will get libcurl-using C source code written to the file that\n"
2433 " Append this option to any ordinary curl command line, and you\n"
2434 " will get libcurl-using C source code written to the file that\n"
24142435 " does the equivalent of what your command-line operation does!\n"
24152436 "\n"
2437 , stdout);
2438 fputs(
24162439 " This option is global and does not need to be specified for each\n"
24172440 " use of -:, --next.\n"
24182441 "\n"
2419 " If this option is used several times, the last given file name\n"
2442 " If this option is used several times, the last given file name\n"
24202443 " will be used.\n"
24212444 "\n"
2422 , stdout);
2423 fputs(
24242445 " Example:\n"
24252446 " curl --libcurl client.c https://example.com\n"
24262447 "\n"
24272448 " See also -v, --verbose.\n"
24282449 "\n"
24292450 " --limit-rate <speed>\n"
2430 " Specify the maximum transfer rate you want curl to use - for\n"
2451 " Specify the maximum transfer rate you want curl to use - for\n"
2452 , stdout);
2453 fputs(
24312454 " both downloads and uploads. This feature is useful if you have a\n"
2432 " limited pipe and you would like your transfer not to use your\n"
2455 " limited pipe and you would like your transfer not to use your\n"
24332456 " entire bandwidth. To make it slower than it otherwise would be.\n"
24342457 "\n"
2435 , stdout);
2436 fputs(
2437 " The given speed is measured in bytes/second, unless a suffix is\n"
2438 " appended. Appending 'k' or 'K' will count the number as kilo-\n"
2439 " bytes, 'm' or 'M' makes it megabytes, while 'g' or 'G' makes it\n"
2440 " gigabytes. The suffixes (k, M, G, T, P) are 1024 based. For ex-\n"
2458 " The given speed is measured in bytes/second, unless a suffix is\n"
2459 " appended. Appending 'k' or 'K' will count the number as kilo-\n"
2460 " bytes, 'm' or 'M' makes it megabytes, while 'g' or 'G' makes it\n"
2461 , stdout);
2462 fputs(
2463 " gigabytes. The suffixes (k, M, G, T, P) are 1024 based. For ex-\n"
24412464 " ample 1k is 1024. Examples: 200K, 3m and 1G.\n"
24422465 "\n"
24432466 " The rate limiting logic works on averaging the transfer speed to\n"
2444 , stdout);
2445 fputs(
2446 " no more than the set threshold over a period of multiple sec-\n"
2467 " no more than the set threshold over a period of multiple sec-\n"
24472468 " onds.\n"
24482469 "\n"
2449 " If you also use the --speed-limit option, that option will take\n"
2470 " If you also use the --speed-limit option, that option will take\n"
24502471 " precedence and might cripple the rate-limiting slightly, to help\n"
2472 , stdout);
2473 fputs(
24512474 " keeping the speed-limit logic working.\n"
24522475 "\n"
24532476 " If this option is used several times, the last one will be used.\n"
24542477 "\n"
24552478 " Examples:\n"
24562479 " curl --limit-rate 100K https://example.com\n"
2457 , stdout);
2458 fputs(
24592480 " curl --limit-rate 1000 https://example.com\n"
24602481 " curl --limit-rate 10M https://example.com\n"
24612482 "\n"
24622483 " See also -Y, --speed-limit and -y, --speed-time.\n"
24632484 "\n"
24642485 " -l, --list-only\n"
2465 " (FTP POP3) (FTP) When listing an FTP directory, this switch\n"
2466 " forces a name-only view. This is especially useful if the user\n"
2467 " wants to machine-parse the contents of an FTP directory since\n"
2468 , stdout);
2469 fputs(
2470 " the normal directory view does not use a standard look or for-\n"
2471 " mat. When used like this, the option causes an NLST command to\n"
2486 " (FTP POP3) (FTP) When listing an FTP directory, this switch\n"
2487 , stdout);
2488 fputs(
2489 " forces a name-only view. This is especially useful if the user\n"
2490 " wants to machine-parse the contents of an FTP directory since\n"
2491 " the normal directory view does not use a standard look or for-\n"
2492 " mat. When used like this, the option causes an NLST command to\n"
24722493 " be sent to the server instead of LIST.\n"
24732494 "\n"
2474 " Note: Some FTP servers list only files in their response to\n"
2495 " Note: Some FTP servers list only files in their response to\n"
2496 , stdout);
2497 fputs(
24752498 " NLST; they do not include sub-directories and symbolic links.\n"
24762499 "\n"
2477 " (POP3) When retrieving a specific email from POP3, this switch\n"
2478 , stdout);
2479 fputs(
2480 " forces a LIST command to be performed instead of RETR. This is\n"
2481 " particularly useful if the user wants to see if a specific mes-\n"
2500 " (POP3) When retrieving a specific email from POP3, this switch\n"
2501 " forces a LIST command to be performed instead of RETR. This is\n"
2502 " particularly useful if the user wants to see if a specific mes-\n"
24822503 " sage-id exists on the server and what size it is.\n"
24832504 "\n"
2484 " Note: When combined with -X, --request, this option can be used\n"
2485 " to send a UIDL command instead, so the user may use the email's\n"
2486 " unique identifier rather than its message-id to make the re-\n"
2505 " Note: When combined with -X, --request, this option can be used\n"
2506 , stdout);
2507 fputs(
2508 " to send a UIDL command instead, so the user may use the email's\n"
2509 " unique identifier rather than its message-id to make the re-\n"
24872510 " quest.\n"
24882511 "\n"
2489 , stdout);
2490 fputs(
24912512 " Example:\n"
24922513 " curl --list-only ftp://example.com/dir/\n"
24932514 " See also -Q, --quote and -X, --request.\n"
24942515 "\n"
24952516 " --local-port <num/range>\n"
2496 " Set a preferred single number or range (FROM-TO) of local port\n"
2517 " Set a preferred single number or range (FROM-TO) of local port\n"
2518 , stdout);
2519 fputs(
24972520 " numbers to use for the connection(s). Note that port numbers by\n"
2498 " nature are a scarce resource that will be busy at times so set-\n"
2499 " ting this range to something too narrow might cause unnecessary\n"
2500 , stdout);
2501 fputs(
2521 " nature are a scarce resource that will be busy at times so set-\n"
2522 " ting this range to something too narrow might cause unnecessary\n"
25022523 " connection setup failures.\n"
25032524 "\n"
25042525 " Example:\n"
25072528 " See also -g, --globoff.\n"
25082529 "\n"
25092530 " --location-trusted\n"
2510 " (HTTP) Like -L, --location, but will allow sending the name +\n"
2531 , stdout);
2532 fputs(
2533 " (HTTP) Like -L, --location, but will allow sending the name +\n"
25112534 " password to all hosts that the site may redirect to. This may or\n"
25122535 " may not introduce a security breach if the site redirects you to\n"
2513 , stdout);
2514 fputs(
25152536 " a site to which you will send your authentication info (which is\n"
25162537 " plaintext in the case of HTTP Basic authentication).\n"
25172538 "\n"
25182539 " Example:\n"
25192540 " curl --location-trusted -u user:password https://example.com\n"
25202541 "\n"
2542 , stdout);
2543 fputs(
25212544 " See also -u, --user.\n"
25222545 "\n"
25232546 " -L, --location\n"
2524 " (HTTP) If the server reports that the requested page has moved\n"
2547 " (HTTP) If the server reports that the requested page has moved\n"
25252548 " to a different location (indicated with a Location: header and a\n"
2526 , stdout);
2527 fputs(
2528 " 3XX response code), this option will make curl redo the request\n"
2549 " 3XX response code), this option will make curl redo the request\n"
25292550 " on the new place. If used together with --include or -I, --head,\n"
25302551 " headers from all requested pages will be shown. When authentica-\n"
2531 " tion is used, curl only sends its credentials to the initial\n"
2532 " host. If a redirect takes curl to a different host, it will not\n"
2533 " be able to intercept the user+password. See also --location-\n"
2534 , stdout);
2535 fputs(
2552 , stdout);
2553 fputs(
2554 " tion is used, curl only sends its credentials to the initial\n"
2555 " host. If a redirect takes curl to a different host, it will not\n"
2556 " be able to intercept the user+password. See also --location-\n"
25362557 " trusted on how to change this. You can limit the amount of redi-\n"
25372558 " rects to follow by using the --max-redirs option.\n"
25382559 "\n"
2539 " When curl follows a redirect and if the request is a POST, it\n"
2540 " will send the following request with a GET if the HTTP response\n"
2541 " was 301, 302, or 303. If the response code was any other 3xx\n"
2560 " When curl follows a redirect and if the request is a POST, it\n"
2561 , stdout);
2562 fputs(
2563 " will send the following request with a GET if the HTTP response\n"
2564 " was 301, 302, or 303. If the response code was any other 3xx\n"
25422565 " code, curl will re-send the following request using the same un-\n"
25432566 " modified method.\n"
25442567 "\n"
2545 , stdout);
2546 fputs(
25472568 " You can tell curl to not change POST requests to GET after a 30x\n"
2548 " response by using the dedicated options for that: --post301,\n"
2569 " response by using the dedicated options for that: --post301,\n"
25492570 " --post302 and --post303.\n"
25502571 "\n"
2551 " The method set with --request overrides the method curl would\n"
2572 , stdout);
2573 fputs(
2574 " The method set with --request overrides the method curl would\n"
25522575 " otherwise select to use.\n"
25532576 "\n"
25542577 " Example:\n"
25572580 " See also --resolve and --alt-svc.\n"
25582581 "\n"
25592582 " --login-options <options>\n"
2560 , stdout);
2561 fputs(
2562 " (IMAP LDAP POP3 SMTP) Specify the login options to use during\n"
2583 " (IMAP LDAP POP3 SMTP) Specify the login options to use during\n"
25632584 " server authentication.\n"
25642585 "\n"
2565 " You can use login options to specify protocol specific options\n"
2566 " that may be used during authentication. At present only IMAP,\n"
2567 " POP3 and SMTP support login options. For more information about\n"
2568 " login options please see RFC 2384, RFC 5092 and IETF draft\n"
2586 " You can use login options to specify protocol specific options\n"
2587 , stdout);
2588 fputs(
2589 " that may be used during authentication. At present only IMAP,\n"
2590 " POP3 and SMTP support login options. For more information about\n"
2591 " login options please see RFC 2384, RFC 5092 and IETF draft\n"
25692592 " draft-earhart-url-smtp-00.txt\n"
25702593 "\n"
2571 , stdout);
2572 fputs(
25732594 " If this option is used several times, the last one will be used.\n"
25742595 "\n"
25752596 " Example:\n"
25762597 " curl --login-options 'AUTH=*' imap://example.com\n"
25772598 "\n"
2599 , stdout);
2600 fputs(
25782601 " See also -u, --user. Added in 7.34.0.\n"
25792602 "\n"
25802603 " --mail-auth <address>\n"
2581 " (SMTP) Specify a single address. This will be used to specify\n"
2582 " the authentication address (identity) of a submitted message\n"
2604 " (SMTP) Specify a single address. This will be used to specify\n"
2605 " the authentication address (identity) of a submitted message\n"
25832606 " that is being relayed to another server.\n"
25842607 "\n"
25852608 " Example:\n"
2586 , stdout);
2587 fputs(
25882609 " curl --mail-auth user@example.come -T mail smtp://example.com/\n"
25892610 "\n"
25902611 " See also --mail-rcpt and --mail-from.\n"
25912612 "\n"
25922613 " --mail-from <address>\n"
2593 " (SMTP) Specify a single address that the given mail should get\n"
2614 , stdout);
2615 fputs(
2616 " (SMTP) Specify a single address that the given mail should get\n"
25942617 " sent from.\n"
25952618 "\n"
25962619 " Example:\n"
25992622 " See also --mail-rcpt and --mail-auth.\n"
26002623 "\n"
26012624 " --mail-rcpt-allowfails\n"
2602 , stdout);
2603 fputs(
26042625 " (SMTP) When sending data to multiple recipients, by default curl\n"
2605 " will abort SMTP conversation if at least one of the recipients\n"
2626 " will abort SMTP conversation if at least one of the recipients\n"
2627 , stdout);
2628 fputs(
26062629 " causes RCPT TO command to return an error.\n"
26072630 "\n"
2608 " The default behavior can be changed by passing --mail-rcpt-al-\n"
2609 " lowfails command-line option which will make curl ignore errors\n"
2631 " The default behavior can be changed by passing --mail-rcpt-al-\n"
2632 " lowfails command-line option which will make curl ignore errors\n"
26102633 " and proceed with the remaining valid recipients.\n"
26112634 "\n"
2612 , stdout);
2613 fputs(
2614 " If all recipients trigger RCPT TO failures and this flag is\n"
2615 " specified, curl will still abort the SMTP conversation and re-\n"
2635 " If all recipients trigger RCPT TO failures and this flag is\n"
2636 " specified, curl will still abort the SMTP conversation and re-\n"
2637 , stdout);
2638 fputs(
26162639 " turn the error received from to the last RCPT TO command.\n"
26172640 "\n"
26182641 " Example:\n"
26212644 " See also --mail-rcpt. Added in 7.69.0.\n"
26222645 "\n"
26232646 " --mail-rcpt <address>\n"
2624 , stdout);
2625 fputs(
26262647 " (SMTP) Specify a single email address, user name or mailing list\n"
2627 " name. Repeat this option several times to send to multiple re-\n"
2648 " name. Repeat this option several times to send to multiple re-\n"
26282649 " cipients.\n"
26292650 "\n"
2630 " When performing an address verification (VRFY command), the re-\n"
2631 " cipient should be specified as the user name or user name and\n"
2651 , stdout);
2652 fputs(
2653 " When performing an address verification (VRFY command), the re-\n"
2654 " cipient should be specified as the user name or user name and\n"
26322655 " domain (as per Section 3.5 of RFC5321). (Added in 7.34.0)\n"
26332656 "\n"
26342657 " When performing a mailing list expand (EXPN command), the recip-\n"
2635 , stdout);
2636 fputs(
2637 " ient should be specified using the mailing list name, such as\n"
2658 " ient should be specified using the mailing list name, such as\n"
26382659 " \"Friends\" or \"London-Office\". (Added in 7.34.0)\n"
26392660 "\n"
26402661 " Example:\n"
2662 , stdout);
2663 fputs(
26412664 " curl --mail-rcpt user@example.net smtp://example.com\n"
26422665 "\n"
26432666 " See also --mail-rcpt-allowfails.\n"
26512674 " See also -v, --verbose, --libcurl and --trace.\n"
26522675 "\n"
26532676 " --max-filesize <bytes>\n"
2654 , stdout);
2655 fputs(
26562677 " (FTP HTTP MQTT) Specify the maximum size (in bytes) of a file to\n"
2657 " download. If the file requested is larger than this value, the\n"
2678 " download. If the file requested is larger than this value, the\n"
2679 , stdout);
2680 fputs(
26582681 " transfer will not start and curl will return with exit code 63.\n"
26592682 "\n"
2660 " A size modifier may be used. For example, Appending 'k' or 'K'\n"
2661 " will count the number as kilobytes, 'm' or 'M' makes it\n"
2662 " megabytes, while 'g' or 'G' makes it gigabytes. Examples: 200K,\n"
2663 , stdout);
2664 fputs(
2683 " A size modifier may be used. For example, Appending 'k' or 'K'\n"
2684 " will count the number as kilobytes, 'm' or 'M' makes it\n"
2685 " megabytes, while 'g' or 'G' makes it gigabytes. Examples: 200K,\n"
26652686 " 3m and 1G. (Added in 7.58.0)\n"
26662687 "\n"
2667 " NOTE: The file size is not always known prior to download, and\n"
2688 " NOTE: The file size is not always known prior to download, and\n"
2689 , stdout);
2690 fputs(
26682691 " for such files this option has no effect even if the file trans-\n"
26692692 " fer ends up being larger than this given limit. Example:\n"
26702693 " curl --max-filesize 100K https://example.com\n"
26722695 " See also --limit-rate.\n"
26732696 "\n"
26742697 " --max-redirs <num>\n"
2675 " (HTTP) Set maximum number of redirections to follow. When --lo-\n"
2676 , stdout);
2677 fputs(
2678 " cation is used, to prevent curl from following too many redi-\n"
2679 " rects, by default, the limit is set to 50 redirects. Set this\n"
2698 " (HTTP) Set maximum number of redirections to follow. When --lo-\n"
2699 " cation is used, to prevent curl from following too many redi-\n"
2700 , stdout);
2701 fputs(
2702 " rects, by default, the limit is set to 50 redirects. Set this\n"
26802703 " option to -1 to make it unlimited.\n"
26812704 "\n"
26822705 " If this option is used several times, the last one will be used.\n"
26872710 " See also -L, --location.\n"
26882711 "\n"
26892712 " -m, --max-time <fractional seconds>\n"
2690 , stdout);
2691 fputs(
2692 " Maximum time in seconds that you allow the whole operation to\n"
2693 " take. This is useful for preventing your batch jobs from hang-\n"
2694 " ing for hours due to slow networks or links going down. Since\n"
2713 " Maximum time in seconds that you allow the whole operation to\n"
2714 , stdout);
2715 fputs(
2716 " take. This is useful for preventing your batch jobs from hang-\n"
2717 " ing for hours due to slow networks or links going down. Since\n"
26952718 " 7.32.0, this option accepts decimal values, but the actual time-\n"
26962719 " out will decrease in accuracy as the specified timeout increases\n"
26972720 " in decimal precision.\n"
26982721 "\n"
2699 , stdout);
2700 fputs(
27012722 " If this option is used several times, the last one will be used.\n"
27022723 "\n"
27032724 " Examples:\n"
2725 , stdout);
2726 fputs(
27042727 " curl --max-time 10 https://example.com\n"
27052728 " curl --max-time 2.92 https://example.com\n"
27062729 "\n"
27072730 " See also --connect-timeout.\n"
27082731 "\n"
27092732 " --metalink\n"
2710 " This option was previously used to specify a metalink resource.\n"
2711 " Metalink support has been disabled in curl since 7.78.0 for se-\n"
2733 " This option was previously used to specify a metalink resource.\n"
2734 " Metalink support has been disabled in curl since 7.78.0 for se-\n"
27122735 " curity reasons.\n"
27132736 "\n"
27142737 " Example:\n"
2715 , stdout);
2716 fputs(
27172738 " curl --metalink file https://example.com\n"
27182739 "\n"
27192740 " See also -Z, --parallel.\n"
27202741 "\n"
27212742 " --negotiate\n"
2743 , stdout);
2744 fputs(
27222745 " (HTTP) Enables Negotiate (SPNEGO) authentication.\n"
27232746 "\n"
2724 " This option requires a library built with GSS-API or SSPI sup-\n"
2747 " This option requires a library built with GSS-API or SSPI sup-\n"
27252748 " port. Use --version to see if your curl supports GSS-API/SSPI or\n"
27262749 " SPNEGO.\n"
27272750 "\n"
2728 " When using this option, you must also provide a fake --user op-\n"
2729 , stdout);
2730 fputs(
2751 " When using this option, you must also provide a fake --user op-\n"
27312752 " tion to activate the authentication code properly. Sending a '-u\n"
2732 " :' is enough as the user name and password from the --user op-\n"
2753 " :' is enough as the user name and password from the --user op-\n"
2754 , stdout);
2755 fputs(
27332756 " tion are not actually used.\n"
27342757 "\n"
2735 " If this option is used several times, only the first one is\n"
2758 " If this option is used several times, only the first one is\n"
27362759 " used.\n"
27372760 "\n"
27382761 " Example:\n"
27412764 " See also --basic, --ntlm, --anyauth and --proxy-negotiate.\n"
27422765 "\n"
27432766 " --netrc-file <filename>\n"
2744 , stdout);
2745 fputs(
2746 " This option is similar to -n, --netrc, except that you provide\n"
2747 " the path (absolute or relative) to the netrc file that curl\n"
2748 " should use. You can only specify one netrc file per invocation.\n"
2749 " If several --netrc-file options are provided, the last one will\n"
2767 " This option is similar to -n, --netrc, except that you provide\n"
2768 " the path (absolute or relative) to the netrc file that curl\n"
2769 , stdout);
2770 fputs(
2771 " should use. You can only specify one netrc file per invocation.\n"
2772 " If several --netrc-file options are provided, the last one will\n"
27502773 " be used.\n"
27512774 "\n"
27522775 " It will abide by --netrc-optional if specified.\n"
27542777 " Example:\n"
27552778 " curl --netrc-file netrc https://example.com\n"
27562779 "\n"
2757 , stdout);
2758 fputs(
2759 " See also -n, --netrc, -u, --user and -K, --config. This option\n"
2760 " overrides -n, --netrc.\n"
2780 " See also -n, --netrc, -u, --user and -K, --config. This option\n"
2781 " is mutually exclusive to -n, --netrc.\n"
27612782 "\n"
27622783 " --netrc-optional\n"
2763 " Similar to -n, --netrc, but this option makes the .netrc usage\n"
2784 , stdout);
2785 fputs(
2786 " Similar to -n, --netrc, but this option makes the .netrc usage\n"
27642787 " optional and not mandatory as the --netrc option does.\n"
27652788 "\n"
27662789 " Example:\n"
27672790 " curl --netrc-optional https://example.com\n"
27682791 "\n"
2769 " See also --netrc-file. This option overrides -n, --netrc.\n"
2792 " See also --netrc-file. This option is mutually exclusive to -n,\n"
2793 " --netrc.\n"
27702794 "\n"
27712795 " -n, --netrc\n"
2772 , stdout);
2773 fputs(
27742796 " Makes curl scan the .netrc (_netrc on Windows) file in the\n"
2797 , stdout);
2798 fputs(
27752799 " user's home directory for login name and password. This is typi-\n"
27762800 " cally used for FTP on Unix. If used with HTTP, curl will enable\n"
27772801 " user authentication. See netrc(5) and ftp(1) for details on the\n"
27782802 " file format. Curl will not complain if that file does not have\n"
27792803 " the right permissions (it should be neither world- nor group-\n"
2780 , stdout);
2781 fputs(
27822804 " readable). The environment variable \"HOME\" is used to find the\n"
2805 , stdout);
2806 fputs(
27832807 " home directory.\n"
27842808 "\n"
27852809 " A quick and simple example of how to setup a .netrc to allow\n"
27912815 " password secret\"\n"
27922816 "\n"
27932817 " Example:\n"
2794 , stdout);
2795 fputs(
27962818 " curl --netrc https://example.com\n"
27972819 "\n"
27982820 " See also --netrc-file, -K, --config and -u, --user.\n"
27992821 "\n"
2822 , stdout);
2823 fputs(
28002824 " -:, --next\n"
28012825 " Tells curl to use a separate operation for the following URL and\n"
28022826 " associated options. This allows you to send several URL re-\n"
28032827 " quests, each with their own specific options, for example, such\n"
28042828 " as different user names or custom requests for each.\n"
28052829 "\n"
2806 , stdout);
2807 fputs(
28082830 " --next will reset all local options and only global ones will\n"
28092831 " have their values survive over to the operation following the\n"
2832 , stdout);
2833 fputs(
28102834 " --next instruction. Global options include -v, --verbose,\n"
28112835 " --trace, --trace-ascii and --fail-early.\n"
28122836 "\n"
28162840 " curl www1.example.com --next -d postthis www2.example.com\n"
28172841 "\n"
28182842 " Examples:\n"
2819 , stdout);
2820 fputs(
28212843 " curl https://example.com --next -d postthis www2.example.com\n"
28222844 " curl -I https://example.com --next https://example.net/\n"
28232845 "\n"
2846 , stdout);
2847 fputs(
28242848 " See also -Z, --parallel and -K, --config. Added in 7.36.0.\n"
28252849 "\n"
28262850 " --no-alpn\n"
28272851 " (HTTPS) Disable the ALPN TLS extension. ALPN is enabled by de-\n"
28282852 " fault if libcurl was built with an SSL library that supports\n"
28292853 " ALPN. ALPN is used by a libcurl that supports HTTP/2 to negoti-\n"
2830 , stdout);
2831 fputs(
28322854 " ate HTTP/2 support with the server during https sessions.\n"
28332855 "\n"
28342856 " Example:\n"
28352857 " curl --no-alpn https://example.com\n"
28362858 "\n"
2859 , stdout);
2860 fputs(
28372861 " See also --no-npn and --http2. --no-alpn requires that the un-\n"
28382862 " derlying libcurl was built to support TLS. Added in 7.36.0.\n"
28392863 "\n"
28402864 " -N, --no-buffer\n"
28412865 " Disables the buffering of the output stream. In normal work sit-\n"
28422866 " uations, curl will use a standard buffered output stream that\n"
2843 , stdout);
2844 fputs(
28452867 " will have the effect that it will output the data in chunks, not\n"
28462868 " necessarily exactly when the data arrives. Using this option\n"
2869 , stdout);
2870 fputs(
28472871 " will disable that buffering.\n"
28482872 "\n"
28492873 " Note that this is the negated option name documented. You can\n"
28542878 "\n"
28552879 " See also -#, --progress-bar.\n"
28562880 "\n"
2881 " --no-clobber\n"
2882 " When used in conjunction with the -o, --output, -J, --remote-\n"
2883 " header-name, -O, --remote-name, or --remote-name-all options,\n"
2884 , stdout);
2885 fputs(
2886 " curl avoids overwriting files that already exist. Instead, a dot\n"
2887 " and a number gets appended to the name of the file that would be\n"
2888 " created, up to filename.100 after which it will not create any\n"
2889 " file.\n"
2890 "\n"
2891 " Note that this is the negated option name documented. You can\n"
2892 " thus use --clobber to enforce the clobbering, even if --remote-\n"
2893 " header-name or -J is specified.\n"
2894 "\n"
2895 " Example:\n"
2896 , stdout);
2897 fputs(
2898 " curl --no-clobber --output local/dir/file https://example.com\n"
2899 " See also -o, --output and -O, --remote-name. Added in 7.83.0.\n"
2900 "\n"
28572901 " --no-keepalive\n"
2858 , stdout);
2859 fputs(
2860 " Disables the use of keepalive messages on the TCP connection.\n"
2902 " Disables the use of keepalive messages on the TCP connection.\n"
28612903 " curl otherwise enables them by default.\n"
28622904 "\n"
2863 " Note that this is the negated option name documented. You can\n"
2905 " Note that this is the negated option name documented. You can\n"
28642906 " thus use --keepalive to enforce keepalive.\n"
28652907 "\n"
28662908 " Example:\n"
2909 , stdout);
2910 fputs(
28672911 " curl --no-keepalive https://example.com\n"
28682912 "\n"
28692913 " See also --keepalive-time.\n"
28702914 "\n"
28712915 " --no-npn\n"
28722916 " (HTTPS) Disable the NPN TLS extension. NPN is enabled by default\n"
2873 , stdout);
2874 fputs(
2875 " if libcurl was built with an SSL library that supports NPN. NPN\n"
2876 " is used by a libcurl that supports HTTP/2 to negotiate HTTP/2\n"
2917 " if libcurl was built with an SSL library that supports NPN. NPN\n"
2918 " is used by a libcurl that supports HTTP/2 to negotiate HTTP/2\n"
28772919 " support with the server during https sessions.\n"
28782920 "\n"
28792921 " Example:\n"
28802922 " curl --no-npn https://example.com\n"
28812923 "\n"
2882 " See also --no-alpn and --http2. --no-npn requires that the un-\n"
2924 , stdout);
2925 fputs(
2926 " See also --no-alpn and --http2. --no-npn requires that the un-\n"
28832927 " derlying libcurl was built to support TLS. Added in 7.36.0.\n"
28842928 "\n"
28852929 " --no-progress-meter\n"
2886 , stdout);
2887 fputs(
28882930 " Option to switch off the progress meter output without muting or\n"
2889 " otherwise affecting warning and informational messages like\n"
2931 " otherwise affecting warning and informational messages like\n"
28902932 " --silent does.\n"
28912933 "\n"
2892 " Note that this is the negated option name documented. You can\n"
2934 " Note that this is the negated option name documented. You can\n"
2935 , stdout);
2936 fputs(
28932937 " thus use --progress-meter to enable the progress meter again.\n"
28942938 "\n"
28952939 " Example:\n"
28962940 " curl --no-progress-meter -o store https://example.com\n"
28972941 "\n"
2898 , stdout);
2899 fputs(
29002942 " See also -v, --verbose and -s, --silent. Added in 7.67.0.\n"
29012943 "\n"
29022944 " --no-sessionid\n"
2903 " (TLS) Disable curl's use of SSL session-ID caching. By default\n"
2904 " all transfers are done using the cache. Note that while nothing\n"
2905 " should ever get hurt by attempting to reuse SSL session-IDs,\n"
2945 " (TLS) Disable curl's use of SSL session-ID caching. By default\n"
2946 " all transfers are done using the cache. Note that while nothing\n"
2947 , stdout);
2948 fputs(
2949 " should ever get hurt by attempting to reuse SSL session-IDs,\n"
29062950 " there seem to be broken SSL implementations in the wild that may\n"
29072951 " require you to disable this in order for you to succeed.\n"
29082952 "\n"
2909 , stdout);
2910 fputs(
2911 " Note that this is the negated option name documented. You can\n"
2953 " Note that this is the negated option name documented. You can\n"
29122954 " thus use --sessionid to enforce session-ID caching.\n"
29132955 "\n"
29142956 " Example:\n"
29162958 "\n"
29172959 " See also -k, --insecure.\n"
29182960 "\n"
2961 , stdout);
2962 fputs(
29192963 " --noproxy <no-proxy-list>\n"
2920 " Comma-separated list of hosts for which not to use a proxy, if\n"
2921 " one is specified. The only wildcard is a single * character,\n"
2922 , stdout);
2923 fputs(
2924 " which matches all hosts, and effectively disables the proxy.\n"
2925 " Each name in this list is matched as either a domain which con-\n"
2926 " tains the hostname, or the hostname itself. For example, lo-\n"
2927 " cal.com would match local.com, local.com:80, and www.local.com,\n"
2964 " Comma-separated list of hosts for which not to use a proxy, if\n"
2965 " one is specified. The only wildcard is a single * character,\n"
2966 " which matches all hosts, and effectively disables the proxy.\n"
2967 " Each name in this list is matched as either a domain which con-\n"
2968 " tains the hostname, or the hostname itself. For example, lo-\n"
2969 , stdout);
2970 fputs(
2971 " cal.com would match local.com, local.com:80, and www.local.com,\n"
29282972 " but not www.notlocal.com.\n"
29292973 "\n"
2930 " Since 7.53.0, This option overrides the environment variables\n"
2931 , stdout);
2932 fputs(
2933 " that disable the proxy ('no_proxy' and 'NO_PROXY'). If there's\n"
2934 " an environment variable disabling a proxy, you can set the no-\n"
2974 " Since 7.53.0, This option overrides the environment variables\n"
2975 " that disable the proxy ('no_proxy' and 'NO_PROXY'). If there's\n"
2976 " an environment variable disabling a proxy, you can set the no-\n"
29352977 " proxy list to \"\" to override it.\n"
29362978 "\n"
29372979 " Example:\n"
29382980 " curl --noproxy \"www.example\" https://example.com\n"
29392981 "\n"
2982 , stdout);
2983 fputs(
29402984 " See also -x, --proxy.\n"
29412985 "\n"
29422986 " --ntlm-wb\n"
29432987 " (HTTP) Enables NTLM much in the style --ntlm does, but hand over\n"
2944 , stdout);
2945 fputs(
2946 " the authentication to the separate binary ntlmauth application\n"
2988 " the authentication to the separate binary ntlmauth application\n"
29472989 " that is executed when needed.\n"
29482990 "\n"
29492991 " Example:\n"
29512993 "\n"
29522994 " See also --ntlm and --proxy-ntlm.\n"
29532995 "\n"
2954 " --ntlm (HTTP) Enables NTLM authentication. The NTLM authentication\n"
2996 " --ntlm (HTTP) Enables NTLM authentication. The NTLM authentication\n"
2997 , stdout);
2998 fputs(
29552999 " method was designed by Microsoft and is used by IIS web servers.\n"
2956 , stdout);
2957 fputs(
2958 " It is a proprietary protocol, reverse-engineered by clever peo-\n"
3000 " It is a proprietary protocol, reverse-engineered by clever peo-\n"
29593001 " ple and implemented in curl based on their efforts. This kind of\n"
2960 " behavior should not be endorsed, you should encourage everyone\n"
2961 " who uses NTLM to switch to a public and documented authentica-\n"
3002 " behavior should not be endorsed, you should encourage everyone\n"
3003 " who uses NTLM to switch to a public and documented authentica-\n"
29623004 " tion method instead, such as Digest.\n"
29633005 "\n"
2964 " If you want to enable NTLM for your proxy authentication, then\n"
3006 , stdout);
3007 fputs(
3008 " If you want to enable NTLM for your proxy authentication, then\n"
29653009 " use --proxy-ntlm.\n"
29663010 "\n"
2967 , stdout);
2968 fputs(
2969 " If this option is used several times, only the first one is\n"
3011 " If this option is used several times, only the first one is\n"
29703012 " used.\n"
29713013 "\n"
29723014 " Example:\n"
29733015 " curl --ntlm -u user:password https://example.com\n"
29743016 "\n"
2975 " See also --proxy-ntlm. --ntlm requires that the underlying\n"
2976 " libcurl was built to support TLS. This option overrides --basic\n"
2977 " and --negotiate and --digest and --anyauth.\n"
3017 " See also --proxy-ntlm. --ntlm requires that the underlying\n"
3018 " libcurl was built to support TLS. This option is mutually exclu-\n"
3019 , stdout);
3020 fputs(
3021 " sive to --basic and --negotiate and --digest and --anyauth.\n"
29783022 "\n"
29793023 " --oauth2-bearer <token>\n"
2980 , stdout);
2981 fputs(
2982 " (IMAP LDAP POP3 SMTP HTTP) Specify the Bearer Token for OAUTH\n"
2983 " 2.0 server authentication. The Bearer Token is used in conjunc-\n"
2984 " tion with the user name which can be specified as part of the\n"
3024 " (IMAP LDAP POP3 SMTP HTTP) Specify the Bearer Token for OAUTH\n"
3025 " 2.0 server authentication. The Bearer Token is used in conjunc-\n"
3026 " tion with the user name which can be specified as part of the\n"
29853027 " --url or --user options.\n"
29863028 "\n"
2987 " The Bearer Token and user name are formatted according to RFC\n"
3029 " The Bearer Token and user name are formatted according to RFC\n"
29883030 " 6750.\n"
29893031 "\n"
3032 , stdout);
3033 fputs(
29903034 " If this option is used several times, the last one will be used.\n"
29913035 "\n"
29923036 " Example:\n"
2993 , stdout);
2994 fputs(
29953037 " curl --oauth2-bearer \"mF_9.B5f-4.1JqM\" https://example.com\n"
29963038 "\n"
29973039 " See also --basic, --ntlm and --digest. Added in 7.33.0.\n"
29983040 "\n"
29993041 " --output-dir <dir>\n"
30003042 "\n"
3001 " This option specifies the directory in which files should be\n"
3043 " This option specifies the directory in which files should be\n"
30023044 " stored, when --remote-name or --output are used.\n"
30033045 "\n"
3004 " The given output directory is used for all URLs and output op-\n"
3046 " The given output directory is used for all URLs and output op-\n"
3047 , stdout);
3048 fputs(
30053049 " tions on the command line, up until the first -:, --next.\n"
30063050 "\n"
3007 , stdout);
3008 fputs(
3009 " If the specified target directory does not exist, the operation\n"
3051 " If the specified target directory does not exist, the operation\n"
30103052 " will fail unless --create-dirs is also used.\n"
30113053 "\n"
30123054 " If this option is used multiple times, the last specified direc-\n"
30153057 " Example:\n"
30163058 " curl --output-dir \"tmp\" -O https://example.com\n"
30173059 "\n"
3018 " See also -O, --remote-name and -J, --remote-header-name. Added\n"
3060 " See also -O, --remote-name and -J, --remote-header-name. Added\n"
3061 , stdout);
3062 fputs(
30193063 " in 7.73.0.\n"
30203064 "\n"
30213065 " -o, --output <file>\n"
3022 , stdout);
3023 fputs(
30243066 " Write output to <file> instead of stdout. If you are using {} or\n"
30253067 " [] to fetch multiple documents, you should quote the URL and you\n"
3026 " can use '#' followed by a number in the <file> specifier. That\n"
3027 " variable will be replaced with the current string for the URL\n"
3068 " can use '#' followed by a number in the <file> specifier. That\n"
3069 " variable will be replaced with the current string for the URL\n"
30283070 " being fetched. Like in:\n"
30293071 "\n"
30303072 " curl \"http://{one,two}.example.com\" -o \"file_#1.txt\"\n"
30313073 "\n"
3074 , stdout);
3075 fputs(
30323076 " or use several variables like:\n"
30333077 "\n"
3034 , stdout);
3035 fputs(
30363078 " curl \"http://{site,host}.host[1-5].com\" -o \"#1_#2\"\n"
30373079 "\n"
3038 " You may use this option as many times as the number of URLs you\n"
3039 " have. For example, if you specify two URLs on the same command\n"
3080 " You may use this option as many times as the number of URLs you\n"
3081 " have. For example, if you specify two URLs on the same command\n"
30403082 " line, you can use it like this:\n"
30413083 "\n"
30423084 " curl -o aa example.com -o bb example.net\n"
30433085 "\n"
3044 " and the order of the -o options and the URLs does not matter,\n"
3045 " just that the first -o is for the first URL and so on, so the\n"
3046 , stdout);
3047 fputs(
3086 " and the order of the -o options and the URLs does not matter,\n"
3087 , stdout);
3088 fputs(
3089 " just that the first -o is for the first URL and so on, so the\n"
30483090 " above command line can also be written as\n"
30493091 "\n"
30503092 " curl example.com example.net -o aa -o bb\n"
30513093 "\n"
3052 " See also the --create-dirs option to create the local directo-\n"
3053 " ries dynamically. Specifying the output as '-' (a single dash)\n"
3094 " See also the --create-dirs option to create the local directo-\n"
3095 " ries dynamically. Specifying the output as '-' (a single dash)\n"
30543096 " will force the output to be done to stdout.\n"
30553097 "\n"
3056 " To suppress response bodies, you can redirect output to\n"
3098 " To suppress response bodies, you can redirect output to\n"
3099 , stdout);
3100 fputs(
30573101 " /dev/null:\n"
30583102 "\n"
30593103 " curl example.com -o /dev/null\n"
30603104 "\n"
3061 , stdout);
3062 fputs(
30633105 " Or for Windows use nul:\n"
30643106 " curl example.com -o nul\n"
30653107 "\n"
30693111 " curl \"http://{site,host}.host[1-5].com\" -o \"#1_#2\"\n"
30703112 " curl -o file https://example.com -o file2 https://example.net\n"
30713113 "\n"
3072 " See also -O, --remote-name, --remote-name-all and -J, --remote-\n"
3114 , stdout);
3115 fputs(
3116 " See also -O, --remote-name, --remote-name-all and -J, --remote-\n"
30733117 " header-name.\n"
30743118 "\n"
30753119 " --parallel-immediate\n"
3076 , stdout);
3077 fputs(
3078 " When doing parallel transfers, this option will instruct curl\n"
3120 " When doing parallel transfers, this option will instruct curl\n"
30793121 " that it should rather prefer opening up more connections in par-\n"
30803122 " allel at once rather than waiting to see if new transfers can be\n"
30813123 " added as multiplexed streams on another connection.\n"
30823124 "\n"
3125 , stdout);
3126 fputs(
30833127 " This option is global and does not need to be specified for each\n"
30843128 " use of -:, --next.\n"
30853129 "\n"
30863130 " Example:\n"
3087 , stdout);
3088 fputs(
30893131 " curl --parallel-immediate -Z https://example.com -o file1 https://example.com -o file2\n"
30903132 "\n"
30913133 " See also -Z, --parallel and --parallel-max. Added in 7.68.0.\n"
30923134 "\n"
30933135 " --parallel-max <num>\n"
3094 " When asked to do parallel transfers, using -Z, --parallel, this\n"
3136 " When asked to do parallel transfers, using -Z, --parallel, this\n"
3137 , stdout);
3138 fputs(
30953139 " option controls the maximum amount of transfers to do simultane-\n"
30963140 " ously.\n"
30973141 "\n"
30983142 " This option is global and does not need to be specified for each\n"
30993143 " use of -:, --next.\n"
3100 , stdout);
3101 fputs(
31023144 " The default is 50.\n"
31033145 "\n"
31043146 " Example:\n"
31073149 " See also -Z, --parallel. Added in 7.66.0.\n"
31083150 "\n"
31093151 " -Z, --parallel\n"
3110 " Makes curl perform its transfers in parallel as compared to the\n"
3152 , stdout);
3153 fputs(
3154 " Makes curl perform its transfers in parallel as compared to the\n"
31113155 " regular serial manner.\n"
31123156 "\n"
31133157 " This option is global and does not need to be specified for each\n"
31143158 " use of -:, --next.\n"
31153159 "\n"
31163160 " Example:\n"
3117 , stdout);
3118 fputs(
31193161 " curl --parallel https://example.com -o file1 https://example.com -o file2\n"
31203162 "\n"
31213163 " See also -:, --next and -v, --verbose. Added in 7.66.0.\n"
31233165 " --pass <phrase>\n"
31243166 " (SSH TLS) Passphrase for the private key.\n"
31253167 "\n"
3168 , stdout);
3169 fputs(
31263170 " If this option is used several times, the last one will be used.\n"
31273171 "\n"
31283172 " Example:\n"
31313175 " See also --key and -u, --user.\n"
31323176 "\n"
31333177 " --path-as-is\n"
3134 , stdout);
3135 fputs(
3136 " Tell curl to not handle sequences of /../ or /./ in the given\n"
3137 " URL path. Normally curl will squash or merge them according to\n"
3178 " Tell curl to not handle sequences of /../ or /./ in the given\n"
3179 " URL path. Normally curl will squash or merge them according to\n"
31383180 " standards but with this option set you tell it not to do that.\n"
31393181 "\n"
31403182 " Example:\n"
3183 , stdout);
3184 fputs(
31413185 " curl --path-as-is https://example.com/../../etc/passwd\n"
31423186 "\n"
31433187 " See also --request-target. Added in 7.42.0.\n"
31443188 "\n"
31453189 " --pinnedpubkey <hashes>\n"
3146 " (TLS) Tells curl to use the specified public key file (or\n"
3147 , stdout);
3148 fputs(
3149 " hashes) to verify the peer. This can be a path to a file which\n"
3190 " (TLS) Tells curl to use the specified public key file (or\n"
3191 " hashes) to verify the peer. This can be a path to a file which\n"
31503192 " contains a single public key in PEM or DER format, or any number\n"
31513193 " of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
3194 , stdout);
3195 fputs(
31523196 " rated by ';'.\n"
31533197 "\n"
3154 " When negotiating a TLS or SSL connection, the server sends a\n"
3155 " certificate indicating its identity. A public key is extracted\n"
3156 , stdout);
3157 fputs(
3158 " from this certificate and if it does not exactly match the pub-\n"
3159 " lic key provided to this option, curl will abort the connection\n"
3160 " before sending or receiving any data.\n"
3161 "\n"
3162 " PEM/DER support:\n"
3163 "\n"
3164 " 7.39.0: OpenSSL, GnuTLS and GSKit\n"
3165 "\n"
3166 " 7.43.0: NSS and wolfSSL\n"
3167 "\n"
3168 " 7.47.0: mbedtls\n"
3169 " sha256 support:\n"
3170 "\n"
3171 " 7.44.0: OpenSSL, GnuTLS, NSS and wolfSSL\n"
3172 "\n"
3173 " 7.47.0: mbedtls\n"
3174 "\n"
3175 , stdout);
3176 fputs(
3177 " Other SSL backends not supported.\n"
3178 "\n"
3179 " If this option is used several times, the last one will be used.\n"
3180 "\n"
3181 " Examples:\n"
3182 " curl --pinnedpubkey keyfile https://example.com\n"
3183 " curl --pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
3184 "\n"
3185 " See also --hostpubsha256. Added in 7.39.0.\n"
3186 "\n"
3187 " --post301\n"
3188 " (HTTP) Tells curl to respect RFC 7231/6.4.2 and not convert POST\n"
3189 , stdout);
3190 fputs(
3191 " requests into GET requests when following a 301 redirection. The\n"
3192 " non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3193 " conversion by default to maintain consistency. However, a server\n"
3194 " may require a POST to remain a POST after such a redirection.\n"
3195 " This option is meaningful only when using -L, --location.\n"
3196 "\n"
3197 " Example:\n"
3198 " curl --post301 --location -d \"data\" https://example.com\n"
3199 "\n"
3200 , stdout);
3201 fputs(
3202 " See also --post302, --post303 and -L, --location.\n"
3203 "\n"
3204 " --post302\n"
3205 " (HTTP) Tells curl to respect RFC 7231/6.4.3 and not convert POST\n"
3206 " requests into GET requests when following a 302 redirection. The\n"
3207 " non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3208 " conversion by default to maintain consistency. However, a server\n"
3209 " may require a POST to remain a POST after such a redirection.\n"
3210 , stdout);
3211 fputs(
3212 " This option is meaningful only when using -L, --location.\n"
3213 "\n"
3214 " Example:\n"
3215 " curl --post302 --location -d \"data\" https://example.com\n"
3216 "\n"
3217 " See also --post301, --post303 and -L, --location.\n"
3218 "\n"
3219 " --post303\n"
3220 " (HTTP) Tells curl to violate RFC 7231/6.4.4 and not convert POST\n"
3221 " requests into GET requests when following 303 redirections. A\n"
3222 " server may require a POST to remain a POST after a 303 redirect-\n"
3223 , stdout);
3224 fputs(
3225 " ion. This option is meaningful only when using -L, --location.\n"
3226 "\n"
3227 " Example:\n"
3228 " curl --post303 --location -d \"data\" https://example.com\n"
3229 "\n"
3230 " See also --post302, --post301 and -L, --location.\n"
3231 "\n"
3232 " --preproxy [protocol://]host[:port]\n"
3233 " Use the specified SOCKS proxy before connecting to an HTTP or\n"
3234 " HTTPS -x, --proxy. In such a case curl first connects to the\n"
3235 , stdout);
3236 fputs(
3237 " SOCKS proxy and then connects (through SOCKS) to the HTTP or\n"
3238 " HTTPS proxy. Hence pre proxy.\n"
3239 "\n"
3240 " The pre proxy string should be specified with a protocol:// pre-\n"
3241 " fix to specify alternative proxy protocols. Use socks4://,\n"
3242 " socks4a://, socks5:// or socks5h:// to request the specific\n"
3243 " SOCKS version to be used. No protocol specified will make curl\n"
3244 " default to SOCKS4.\n"
3245 "\n"
3246 , stdout);
3247 fputs(
3248 " If the port number is not specified in the proxy string, it is\n"
3249 " assumed to be 1080.\n"
3250 "\n"
3251 " User and password that might be provided in the proxy string are\n"
3252 " URL decoded by curl. This allows you to pass in special charac-\n"
3253 " ters such as @ by using %40 or pass in a colon with %3a.\n"
3254 "\n"
3255 " If this option is used several times, the last one will be used.\n"
3256 "\n"
3257 " Example:\n"
3258 , stdout);
3259 fputs(
3260 " curl --preproxy socks5://proxy.example -x http://http.example https://example.com\n"
3261 "\n"
3262 " See also -x, --proxy and --socks5. Added in 7.52.0.\n"
3263 "\n"
3264 " -#, --progress-bar\n"
3265 " Make curl display transfer progress as a simple progress bar in-\n"
3266 " stead of the standard, more informational, meter.\n"
3267 "\n"
3268 " This progress bar draws a single line of '#' characters across\n"
3269 " the screen and shows a percentage if the transfer size is known.\n"
3270 , stdout);
3271 fputs(
3272 " For transfers without a known size, there will be space ship\n"
3273 " (-=o=-) that moves back and forth but only while data is being\n"
3274 " transferred, with a set of flying hash sign symbols on top.\n"
3275 "\n"
3276 " This option is global and does not need to be specified for each\n"
3277 " use of -:, --next.\n"
3278 "\n"
3279 " Example:\n"
3280 " curl -# -O https://example.com\n"
3281 "\n"
3282 " See also --styled-output.\n"
3283 "\n"
3284 " --proto-default <protocol>\n"
3285 , stdout);
3286 fputs(
3287 " Tells curl to use protocol for any URL missing a scheme name.\n"
3288 "\n"
3289 " An unknown or unsupported protocol causes error CURLE_UNSUP-\n"
3290 " PORTED_PROTOCOL (1).\n"
3291 "\n"
3292 " This option does not change the default proxy protocol (http).\n"
3293 "\n"
3294 " Without this option set, curl guesses protocol based on the host\n"
3295 " name, see --url for details.\n"
3296 "\n"
3297 " Example:\n"
3298 " curl --proto-default https ftp.example.com\n"
3299 "\n"
3300 , stdout);
3301 fputs(
3302 " See also --proto and --proto-redir. Added in 7.45.0.\n"
3303 "\n"
3304 " --proto-redir <protocols>\n"
3305 " Tells curl to limit what protocols it may use on redirect. Pro-\n"
3306 " tocols denied by --proto are not overridden by this option. See\n"
3307 " --proto for how protocols are represented.\n"
3308 "\n"
3309 " Example, allow only HTTP and HTTPS on redirect:\n"
3310 "\n"
3311 " curl --proto-redir -all,http,https http://example.com\n"
3312 "\n"
3313 , stdout);
3314 fputs(
3315 " By default curl will only allow HTTP, HTTPS, FTP and FTPS on re-\n"
3316 " direct (since 7.65.2). Specifying all or +all enables all proto-\n"
3317 " cols on redirects, which is not good for security.\n"
3318 "\n"
3319 " Example:\n"
3320 " curl --proto-redir =http,https https://example.com\n"
3321 "\n"
3322 " See also --proto.\n"
3323 "\n"
3324 " --proto <protocols>\n"
3325 " Tells curl to limit what protocols it may use for transfers.\n"
3326 , stdout);
3327 fputs(
3328 " Protocols are evaluated left to right, are comma separated, and\n"
3329 " are each a protocol name or 'all', optionally prefixed by zero\n"
3330 " or more modifiers. Available modifiers are:\n"
3331 "\n"
3332 " + Permit this protocol in addition to protocols already permit-\n"
3333 " ted (this is the default if no modifier is used).\n"
3334 "\n"
3335 " - Deny this protocol, removing it from the list of protocols\n"
3336 " already permitted.\n"
3337 "\n"
3338 , stdout);
3339 fputs(
3340 " = Permit only this protocol (ignoring the list already permit-\n"
3341 " ted), though subject to later modification by subsequent en-\n"
3342 " tries in the comma separated list.\n"
3343 "\n"
3344 " For example:\n"
3345 "\n"
3346 " --proto -ftps uses the default protocols, but disables ftps\n"
3347 "\n"
3348 " --proto -all,https,+http\n"
3349 " only enables http and https\n"
3350 "\n"
3351 " --proto =http,https\n"
3352 , stdout);
3353 fputs(
3354 " also only enables http and https\n"
3355 "\n"
3356 " Unknown protocols produce a warning. This allows scripts to\n"
3357 " safely rely on being able to disable potentially dangerous pro-\n"
3358 " tocols, without relying upon support for that protocol being\n"
3359 " built into curl to avoid an error.\n"
3360 "\n"
3361 " This option can be used multiple times, in which case the effect\n"
3362 , stdout);
3363 fputs(
3364 " is the same as concatenating the protocols into one instance of\n"
3365 " the option.\n"
3366 "\n"
3367 " Example:\n"
3368 " curl --proto =http,https,sftp https://example.com\n"
3369 "\n"
3370 " See also --proto-redir and --proto-default.\n"
3371 "\n"
3372 " --proxy-anyauth\n"
3373 " Tells curl to pick a suitable authentication method when commu-\n"
3374 " nicating with the given HTTP proxy. This might cause an extra\n"
3375 " request/response round-trip.\n"
3376 "\n"
3377 , stdout);
3378 fputs(
3379 " Example:\n"
3380 " curl --proxy-anyauth --proxy-user user:passwd -x proxy https://example.com\n"
3381 "\n"
3382 " See also -x, --proxy, --proxy-basic and --proxy-digest.\n"
3383 "\n"
3384 " --proxy-basic\n"
3385 " Tells curl to use HTTP Basic authentication when communicating\n"
3386 " with the given proxy. Use --basic for enabling HTTP Basic with a\n"
3387 " remote host. Basic is the default authentication method curl\n"
3388 " uses with proxies.\n"
3389 "\n"
3390 " Example:\n"
3391 , stdout);
3392 fputs(
3393 " curl --proxy-basic --proxy-user user:passwd -x proxy https://example.com\n"
3394 "\n"
3395 " See also -x, --proxy, --proxy-anyauth and --proxy-digest.\n"
3396 "\n"
3397 " --proxy-cacert <file>\n"
3398 " Same as --cacert but used in HTTPS proxy context.\n"
3399 "\n"
3400 " Example:\n"
3401 " curl --proxy-cacert CA-file.txt -x https://proxy https://example.com\n"
3402 "\n"
3403 " See also --proxy-capath, --cacert, --capath and -x, --proxy.\n"
3404 " Added in 7.52.0.\n"
3405 "\n"
3406 , stdout);
3407 fputs(
3408 " --proxy-capath <dir>\n"
3409 " Same as --capath but used in HTTPS proxy context.\n"
3410 "\n"
3411 " Example:\n"
3412 " curl --proxy-capath /local/directory -x https://proxy https://example.com\n"
3413 "\n"
3414 " See also --proxy-cacert, -x, --proxy and --capath. Added in\n"
3415 " 7.52.0.\n"
3416 "\n"
3417 " --proxy-cert-type <type>\n"
3418 " Same as --cert-type but used in HTTPS proxy context.\n"
3419 "\n"
3420 " Example:\n"
3421 , stdout);
3422 fputs(
3423 " curl --proxy-cert-type PEM --proxy-cert file -x https://proxy https://example.com\n"
3424 "\n"
3425 " See also --proxy-cert. Added in 7.52.0.\n"
3426 "\n"
3427 " --proxy-cert <cert[:passwd]>\n"
3428 " Same as --cert but used in HTTPS proxy context.\n"
3429 "\n"
3430 " Example:\n"
3431 " curl --proxy-cert file -x https://proxy https://example.com\n"
3432 "\n"
3433 " See also --proxy-cert-type. Added in 7.52.0.\n"
3434 "\n"
3435 " --proxy-ciphers <list>\n"
3436 , stdout);
3437 fputs(
3438 " Same as --ciphers but used in HTTPS proxy context.\n"
3439 "\n"
3440 " Example:\n"
3441 " curl --proxy-ciphers ECDHE-ECDSA-AES256-CCM8 -x https://proxy https://example.com\n"
3442 "\n"
3443 " See also --ciphers, --curves and -x, --proxy. Added in 7.52.0.\n"
3444 "\n"
3445 " --proxy-crlfile <file>\n"
3446 " Same as --crlfile but used in HTTPS proxy context.\n"
3447 "\n"
3448 " Example:\n"
3449 " curl --proxy-crlfile rejects.txt -x https://proxy https://example.com\n"
3450 "\n"
3451 , stdout);
3452 fputs(
3453 " See also --crlfile and -x, --proxy. Added in 7.52.0.\n"
3454 "\n"
3455 " --proxy-digest\n"
3456 " Tells curl to use HTTP Digest authentication when communicating\n"
3457 " with the given proxy. Use --digest for enabling HTTP Digest with\n"
3458 " a remote host.\n"
3459 "\n"
3460 " Example:\n"
3461 " curl --proxy-digest --proxy-user user:passwd -x proxy https://example.com\n"
3462 "\n"
3463 " See also -x, --proxy, --proxy-anyauth and --proxy-basic.\n"
3464 "\n"
3465 " --proxy-header <header/@file>\n"
3466 , stdout);
3467 fputs(
3468 " (HTTP) Extra header to include in the request when sending HTTP\n"
3469 " to a proxy. You may specify any number of extra headers. This is\n"
3470 " the equivalent option to --header but is for proxy communication\n"
3471 " only like in CONNECT requests when you want a separate header\n"
3472 " sent to the proxy to what is sent to the actual remote host.\n"
3473 "\n"
3474 " curl will make sure that each header you add/replace is sent\n"
3475 , stdout);
3476 fputs(
3477 " with the proper end-of-line marker, you should thus not add that\n"
3478 " as a part of the header content: do not add newlines or carriage\n"
3479 " returns, they will only mess things up for you.\n"
3480 "\n"
3481 " Headers specified with this option will not be included in re-\n"
3482 " quests that curl knows will not be sent to a proxy.\n"
3483 "\n"
3484 " Starting in 7.55.0, this option can take an argument in @file-\n"
3485 , stdout);
3486 fputs(
3487 " name style, which then adds a header for each line in the input\n"
3488 " file. Using @- will make curl read the header file from stdin.\n"
3489 "\n"
3490 " This option can be used multiple times to add/replace/remove\n"
3491 " multiple headers.\n"
3492 "\n"
3493 " Examples:\n"
3494 " curl --proxy-header \"X-First-Name: Joe\" -x http://proxy https://example.com\n"
3495 " curl --proxy-header \"User-Agent: surprise\" -x http://proxy https://example.com\n"
3496 , stdout);
3497 fputs(
3498 " curl --proxy-header \"Host:\" -x http://proxy https://example.com\n"
3499 "\n"
3500 " See also -x, --proxy. Added in 7.37.0.\n"
3501 "\n"
3502 " --proxy-insecure\n"
3503 " Same as --insecure but used in HTTPS proxy context.\n"
3504 "\n"
3505 " Example:\n"
3506 " curl --proxy-insecure -x https://proxy https://example.com\n"
3507 "\n"
3508 " See also -x, --proxy and -k, --insecure. Added in 7.52.0.\n"
3509 "\n"
3510 " --proxy-key-type <type>\n"
3511 " Same as --key-type but used in HTTPS proxy context.\n"
3512 "\n"
3513 , stdout);
3514 fputs(
3515 " Example:\n"
3516 " curl --proxy-key-type DER --proxy-key here -x https://proxy https://example.com\n"
3517 "\n"
3518 " See also --proxy-key and -x, --proxy. Added in 7.52.0.\n"
3519 "\n"
3520 " --proxy-key <key>\n"
3521 " Same as --key but used in HTTPS proxy context.\n"
3522 "\n"
3523 " Example:\n"
3524 " curl --proxy-key here -x https://proxy https://example.com\n"
3525 "\n"
3526 " See also --proxy-key-type and -x, --proxy. Added in 7.52.0.\n"
3527 "\n"
3528 " --proxy-negotiate\n"
3529 , stdout);
3530 fputs(
3531 " Tells curl to use HTTP Negotiate (SPNEGO) authentication when\n"
3532 " communicating with the given proxy. Use --negotiate for enabling\n"
3533 " HTTP Negotiate (SPNEGO) with a remote host.\n"
3534 "\n"
3535 " Example:\n"
3536 " curl --proxy-negotiate --proxy-user user:passwd -x proxy https://example.com\n"
3537 "\n"
3538 " See also --proxy-anyauth and --proxy-basic.\n"
3539 "\n"
3540 " --proxy-ntlm\n"
3541 " Tells curl to use HTTP NTLM authentication when communicating\n"
3542 , stdout);
3543 fputs(
3544 " with the given proxy. Use --ntlm for enabling NTLM with a remote\n"
3545 " host.\n"
3546 "\n"
3547 " Example:\n"
3548 " curl --proxy-ntlm --proxy-user user:passwd -x http://proxy https://example.com\n"
3549 "\n"
3550 " See also --proxy-negotiate and --proxy-anyauth.\n"
3551 "\n"
3552 " --proxy-pass <phrase>\n"
3553 " Same as --pass but used in HTTPS proxy context.\n"
3554 "\n"
3555 " Example:\n"
3556 " curl --proxy-pass secret --proxy-key here -x https://proxy https://example.com\n"
3557 "\n"
3558 , stdout);
3559 fputs(
3560 " See also -x, --proxy and --proxy-key. Added in 7.52.0.\n"
3561 "\n"
3562 " --proxy-pinnedpubkey <hashes>\n"
3563 " (TLS) Tells curl to use the specified public key file (or\n"
3564 " hashes) to verify the proxy. This can be a path to a file which\n"
3565 " contains a single public key in PEM or DER format, or any number\n"
3566 " of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
3567 " rated by ';'.\n"
3568 "\n"
3569 , stdout);
3570 fputs(
35713198 " When negotiating a TLS or SSL connection, the server sends a\n"
35723199 " certificate indicating its identity. A public key is extracted\n"
35733200 " from this certificate and if it does not exactly match the pub-\n"
35743201 " lic key provided to this option, curl will abort the connection\n"
35753202 " before sending or receiving any data.\n"
35763203 "\n"
3204 " PEM/DER support:\n"
3205 "\n"
3206 " 7.39.0: OpenSSL, GnuTLS and GSKit\n"
3207 "\n"
3208 , stdout);
3209 fputs(
3210 " 7.43.0: NSS and wolfSSL\n"
3211 "\n"
3212 " 7.47.0: mbedtls\n"
3213 " sha256 support:\n"
3214 "\n"
3215 " 7.44.0: OpenSSL, GnuTLS, NSS and wolfSSL\n"
3216 "\n"
3217 " 7.47.0: mbedtls\n"
3218 "\n"
3219 " Other SSL backends not supported.\n"
3220 "\n"
35773221 " If this option is used several times, the last one will be used.\n"
35783222 "\n"
35793223 " Examples:\n"
3580 , stdout);
3581 fputs(
3224 " curl --pinnedpubkey keyfile https://example.com\n"
3225 " curl --pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
3226 "\n"
3227 , stdout);
3228 fputs(
3229 " See also --hostpubsha256. Added in 7.39.0.\n"
3230 "\n"
3231 " --post301\n"
3232 " (HTTP) Tells curl to respect RFC 7231/6.4.2 and not convert POST\n"
3233 " requests into GET requests when following a 301 redirection. The\n"
3234 " non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3235 " conversion by default to maintain consistency. However, a server\n"
3236 " may require a POST to remain a POST after such a redirection.\n"
3237 , stdout);
3238 fputs(
3239 " This option is meaningful only when using -L, --location.\n"
3240 "\n"
3241 " Example:\n"
3242 " curl --post301 --location -d \"data\" https://example.com\n"
3243 "\n"
3244 " See also --post302, --post303 and -L, --location.\n"
3245 "\n"
3246 " --post302\n"
3247 " (HTTP) Tells curl to respect RFC 7231/6.4.3 and not convert POST\n"
3248 " requests into GET requests when following a 302 redirection. The\n"
3249 " non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3250 , stdout);
3251 fputs(
3252 " conversion by default to maintain consistency. However, a server\n"
3253 " may require a POST to remain a POST after such a redirection.\n"
3254 " This option is meaningful only when using -L, --location.\n"
3255 "\n"
3256 " Example:\n"
3257 " curl --post302 --location -d \"data\" https://example.com\n"
3258 "\n"
3259 " See also --post301, --post303 and -L, --location.\n"
3260 "\n"
3261 " --post303\n"
3262 " (HTTP) Tells curl to violate RFC 7231/6.4.4 and not convert POST\n"
3263 , stdout);
3264 fputs(
3265 " requests into GET requests when following 303 redirections. A\n"
3266 " server may require a POST to remain a POST after a 303 redirect-\n"
3267 " ion. This option is meaningful only when using -L, --location.\n"
3268 "\n"
3269 " Example:\n"
3270 " curl --post303 --location -d \"data\" https://example.com\n"
3271 "\n"
3272 " See also --post302, --post301 and -L, --location.\n"
3273 "\n"
3274 " --preproxy [protocol://]host[:port]\n"
3275 , stdout);
3276 fputs(
3277 " Use the specified SOCKS proxy before connecting to an HTTP or\n"
3278 " HTTPS -x, --proxy. In such a case curl first connects to the\n"
3279 " SOCKS proxy and then connects (through SOCKS) to the HTTP or\n"
3280 " HTTPS proxy. Hence pre proxy.\n"
3281 "\n"
3282 " The pre proxy string should be specified with a protocol:// pre-\n"
3283 " fix to specify alternative proxy protocols. Use socks4://,\n"
3284 , stdout);
3285 fputs(
3286 " socks4a://, socks5:// or socks5h:// to request the specific\n"
3287 " SOCKS version to be used. No protocol specified will make curl\n"
3288 " default to SOCKS4.\n"
3289 "\n"
3290 " If the port number is not specified in the proxy string, it is\n"
3291 " assumed to be 1080.\n"
3292 "\n"
3293 " User and password that might be provided in the proxy string are\n"
3294 " URL decoded by curl. This allows you to pass in special charac-\n"
3295 , stdout);
3296 fputs(
3297 " ters such as @ by using %40 or pass in a colon with %3a.\n"
3298 "\n"
3299 " If this option is used several times, the last one will be used.\n"
3300 "\n"
3301 " Example:\n"
3302 " curl --preproxy socks5://proxy.example -x http://http.example https://example.com\n"
3303 "\n"
3304 " See also -x, --proxy and --socks5. Added in 7.52.0.\n"
3305 "\n"
3306 " -#, --progress-bar\n"
3307 " Make curl display transfer progress as a simple progress bar in-\n"
3308 , stdout);
3309 fputs(
3310 " stead of the standard, more informational, meter.\n"
3311 "\n"
3312 " This progress bar draws a single line of '#' characters across\n"
3313 " the screen and shows a percentage if the transfer size is known.\n"
3314 " For transfers without a known size, there will be space ship\n"
3315 " (-=o=-) that moves back and forth but only while data is being\n"
3316 " transferred, with a set of flying hash sign symbols on top.\n"
3317 "\n"
3318 , stdout);
3319 fputs(
3320 " This option is global and does not need to be specified for each\n"
3321 " use of -:, --next.\n"
3322 "\n"
3323 " Example:\n"
3324 " curl -# -O https://example.com\n"
3325 "\n"
3326 " See also --styled-output.\n"
3327 "\n"
3328 " --proto-default <protocol>\n"
3329 " Tells curl to use protocol for any URL missing a scheme name.\n"
3330 "\n"
3331 " An unknown or unsupported protocol causes error CURLE_UNSUP-\n"
3332 " PORTED_PROTOCOL (1).\n"
3333 "\n"
3334 , stdout);
3335 fputs(
3336 " This option does not change the default proxy protocol (http).\n"
3337 "\n"
3338 " Without this option set, curl guesses protocol based on the host\n"
3339 " name, see --url for details.\n"
3340 "\n"
3341 " Example:\n"
3342 " curl --proto-default https ftp.example.com\n"
3343 "\n"
3344 " See also --proto and --proto-redir. Added in 7.45.0.\n"
3345 "\n"
3346 " --proto-redir <protocols>\n"
3347 " Tells curl to limit what protocols it may use on redirect. Pro-\n"
3348 , stdout);
3349 fputs(
3350 " tocols denied by --proto are not overridden by this option. See\n"
3351 " --proto for how protocols are represented.\n"
3352 "\n"
3353 " Example, allow only HTTP and HTTPS on redirect:\n"
3354 "\n"
3355 " curl --proto-redir -all,http,https http://example.com\n"
3356 "\n"
3357 " By default curl will only allow HTTP, HTTPS, FTP and FTPS on re-\n"
3358 " direct (since 7.65.2). Specifying all or +all enables all proto-\n"
3359 " cols on redirects, which is not good for security.\n"
3360 "\n"
3361 , stdout);
3362 fputs(
3363 " Example:\n"
3364 " curl --proto-redir =http,https https://example.com\n"
3365 "\n"
3366 " See also --proto.\n"
3367 "\n"
3368 " --proto <protocols>\n"
3369 " Tells curl to limit what protocols it may use for transfers.\n"
3370 " Protocols are evaluated left to right, are comma separated, and\n"
3371 " are each a protocol name or 'all', optionally prefixed by zero\n"
3372 " or more modifiers. Available modifiers are:\n"
3373 "\n"
3374 , stdout);
3375 fputs(
3376 " + Permit this protocol in addition to protocols already permit-\n"
3377 " ted (this is the default if no modifier is used).\n"
3378 "\n"
3379 " - Deny this protocol, removing it from the list of protocols\n"
3380 " already permitted.\n"
3381 "\n"
3382 " = Permit only this protocol (ignoring the list already permit-\n"
3383 " ted), though subject to later modification by subsequent en-\n"
3384 " tries in the comma separated list.\n"
3385 "\n"
3386 , stdout);
3387 fputs(
3388 " For example:\n"
3389 "\n"
3390 " --proto -ftps uses the default protocols, but disables ftps\n"
3391 "\n"
3392 " --proto -all,https,+http\n"
3393 " only enables http and https\n"
3394 "\n"
3395 " --proto =http,https\n"
3396 " also only enables http and https\n"
3397 "\n"
3398 " Unknown protocols produce a warning. This allows scripts to\n"
3399 " safely rely on being able to disable potentially dangerous pro-\n"
3400 , stdout);
3401 fputs(
3402 " tocols, without relying upon support for that protocol being\n"
3403 " built into curl to avoid an error.\n"
3404 "\n"
3405 " This option can be used multiple times, in which case the effect\n"
3406 " is the same as concatenating the protocols into one instance of\n"
3407 " the option.\n"
3408 "\n"
3409 " Example:\n"
3410 " curl --proto =http,https,sftp https://example.com\n"
3411 "\n"
3412 " See also --proto-redir and --proto-default.\n"
3413 "\n"
3414 " --proxy-anyauth\n"
3415 , stdout);
3416 fputs(
3417 " Tells curl to pick a suitable authentication method when commu-\n"
3418 " nicating with the given HTTP proxy. This might cause an extra\n"
3419 " request/response round-trip.\n"
3420 "\n"
3421 " Example:\n"
3422 " curl --proxy-anyauth --proxy-user user:passwd -x proxy https://example.com\n"
3423 "\n"
3424 " See also -x, --proxy, --proxy-basic and --proxy-digest.\n"
3425 "\n"
3426 " --proxy-basic\n"
3427 " Tells curl to use HTTP Basic authentication when communicating\n"
3428 , stdout);
3429 fputs(
3430 " with the given proxy. Use --basic for enabling HTTP Basic with a\n"
3431 " remote host. Basic is the default authentication method curl\n"
3432 " uses with proxies.\n"
3433 "\n"
3434 " Example:\n"
3435 " curl --proxy-basic --proxy-user user:passwd -x proxy https://example.com\n"
3436 "\n"
3437 " See also -x, --proxy, --proxy-anyauth and --proxy-digest.\n"
3438 "\n"
3439 " --proxy-cacert <file>\n"
3440 " Same as --cacert but used in HTTPS proxy context.\n"
3441 "\n"
3442 " Example:\n"
3443 , stdout);
3444 fputs(
3445 " curl --proxy-cacert CA-file.txt -x https://proxy https://example.com\n"
3446 "\n"
3447 " See also --proxy-capath, --cacert, --capath and -x, --proxy.\n"
3448 " Added in 7.52.0.\n"
3449 "\n"
3450 " --proxy-capath <dir>\n"
3451 " Same as --capath but used in HTTPS proxy context.\n"
3452 "\n"
3453 " Example:\n"
3454 " curl --proxy-capath /local/directory -x https://proxy https://example.com\n"
3455 "\n"
3456 " See also --proxy-cacert, -x, --proxy and --capath. Added in\n"
3457 , stdout);
3458 fputs(
3459 " 7.52.0.\n"
3460 "\n"
3461 " --proxy-cert-type <type>\n"
3462 " Same as --cert-type but used in HTTPS proxy context.\n"
3463 "\n"
3464 " Example:\n"
3465 " curl --proxy-cert-type PEM --proxy-cert file -x https://proxy https://example.com\n"
3466 "\n"
3467 " See also --proxy-cert. Added in 7.52.0.\n"
3468 "\n"
3469 " --proxy-cert <cert[:passwd]>\n"
3470 " Same as --cert but used in HTTPS proxy context.\n"
3471 "\n"
3472 " Example:\n"
3473 " curl --proxy-cert file -x https://proxy https://example.com\n"
3474 "\n"
3475 , stdout);
3476 fputs(
3477 " See also --proxy-cert-type. Added in 7.52.0.\n"
3478 "\n"
3479 " --proxy-ciphers <list>\n"
3480 " Same as --ciphers but used in HTTPS proxy context.\n"
3481 "\n"
3482 " Example:\n"
3483 " curl --proxy-ciphers ECDHE-ECDSA-AES256-CCM8 -x https://proxy https://example.com\n"
3484 "\n"
3485 " See also --ciphers, --curves and -x, --proxy. Added in 7.52.0.\n"
3486 "\n"
3487 " --proxy-crlfile <file>\n"
3488 " Same as --crlfile but used in HTTPS proxy context.\n"
3489 "\n"
3490 " Example:\n"
3491 , stdout);
3492 fputs(
3493 " curl --proxy-crlfile rejects.txt -x https://proxy https://example.com\n"
3494 "\n"
3495 " See also --crlfile and -x, --proxy. Added in 7.52.0.\n"
3496 "\n"
3497 " --proxy-digest\n"
3498 " Tells curl to use HTTP Digest authentication when communicating\n"
3499 " with the given proxy. Use --digest for enabling HTTP Digest with\n"
3500 " a remote host.\n"
3501 "\n"
3502 " Example:\n"
3503 " curl --proxy-digest --proxy-user user:passwd -x proxy https://example.com\n"
3504 "\n"
3505 , stdout);
3506 fputs(
3507 " See also -x, --proxy, --proxy-anyauth and --proxy-basic.\n"
3508 "\n"
3509 " --proxy-header <header/@file>\n"
3510 " (HTTP) Extra header to include in the request when sending HTTP\n"
3511 " to a proxy. You may specify any number of extra headers. This is\n"
3512 " the equivalent option to --header but is for proxy communication\n"
3513 " only like in CONNECT requests when you want a separate header\n"
3514 " sent to the proxy to what is sent to the actual remote host.\n"
3515 , stdout);
3516 fputs(
3517 "\n"
3518 " curl will make sure that each header you add/replace is sent\n"
3519 " with the proper end-of-line marker, you should thus not add that\n"
3520 " as a part of the header content: do not add newlines or carriage\n"
3521 " returns, they will only mess things up for you.\n"
3522 "\n"
3523 " Headers specified with this option will not be included in re-\n"
3524 " quests that curl knows will not be sent to a proxy.\n"
3525 "\n"
3526 , stdout);
3527 fputs(
3528 " Starting in 7.55.0, this option can take an argument in @file-\n"
3529 " name style, which then adds a header for each line in the input\n"
3530 " file. Using @- will make curl read the header file from stdin.\n"
3531 "\n"
3532 " This option can be used multiple times to add/replace/remove\n"
3533 " multiple headers.\n"
3534 "\n"
3535 " Examples:\n"
3536 " curl --proxy-header \"X-First-Name: Joe\" -x http://proxy https://example.com\n"
3537 , stdout);
3538 fputs(
3539 " curl --proxy-header \"User-Agent: surprise\" -x http://proxy https://example.com\n"
3540 " curl --proxy-header \"Host:\" -x http://proxy https://example.com\n"
3541 "\n"
3542 " See also -x, --proxy. Added in 7.37.0.\n"
3543 "\n"
3544 " --proxy-insecure\n"
3545 " Same as --insecure but used in HTTPS proxy context.\n"
3546 "\n"
3547 " Example:\n"
3548 " curl --proxy-insecure -x https://proxy https://example.com\n"
3549 "\n"
3550 " See also -x, --proxy and -k, --insecure. Added in 7.52.0.\n"
3551 "\n"
3552 , stdout);
3553 fputs(
3554 " --proxy-key-type <type>\n"
3555 " Same as --key-type but used in HTTPS proxy context.\n"
3556 "\n"
3557 " Example:\n"
3558 " curl --proxy-key-type DER --proxy-key here -x https://proxy https://example.com\n"
3559 "\n"
3560 " See also --proxy-key and -x, --proxy. Added in 7.52.0.\n"
3561 "\n"
3562 " --proxy-key <key>\n"
3563 " Same as --key but used in HTTPS proxy context.\n"
3564 "\n"
3565 " Example:\n"
3566 " curl --proxy-key here -x https://proxy https://example.com\n"
3567 "\n"
3568 , stdout);
3569 fputs(
3570 " See also --proxy-key-type and -x, --proxy. Added in 7.52.0.\n"
3571 "\n"
3572 " --proxy-negotiate\n"
3573 " Tells curl to use HTTP Negotiate (SPNEGO) authentication when\n"
3574 " communicating with the given proxy. Use --negotiate for enabling\n"
3575 " HTTP Negotiate (SPNEGO) with a remote host.\n"
3576 "\n"
3577 " Example:\n"
3578 " curl --proxy-negotiate --proxy-user user:passwd -x proxy https://example.com\n"
3579 "\n"
3580 " See also --proxy-anyauth and --proxy-basic.\n"
3581 "\n"
3582 , stdout);
3583 fputs(
3584 " --proxy-ntlm\n"
3585 " Tells curl to use HTTP NTLM authentication when communicating\n"
3586 " with the given proxy. Use --ntlm for enabling NTLM with a remote\n"
3587 " host.\n"
3588 "\n"
3589 " Example:\n"
3590 " curl --proxy-ntlm --proxy-user user:passwd -x http://proxy https://example.com\n"
3591 "\n"
3592 " See also --proxy-negotiate and --proxy-anyauth.\n"
3593 "\n"
3594 " --proxy-pass <phrase>\n"
3595 " Same as --pass but used in HTTPS proxy context.\n"
3596 "\n"
3597 " Example:\n"
3598 , stdout);
3599 fputs(
3600 " curl --proxy-pass secret --proxy-key here -x https://proxy https://example.com\n"
3601 "\n"
3602 " See also -x, --proxy and --proxy-key. Added in 7.52.0.\n"
3603 "\n"
3604 " --proxy-pinnedpubkey <hashes>\n"
3605 " (TLS) Tells curl to use the specified public key file (or\n"
3606 " hashes) to verify the proxy. This can be a path to a file which\n"
3607 " contains a single public key in PEM or DER format, or any number\n"
3608 , stdout);
3609 fputs(
3610 " of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
3611 " rated by ';'.\n"
3612 "\n"
3613 " When negotiating a TLS or SSL connection, the server sends a\n"
3614 " certificate indicating its identity. A public key is extracted\n"
3615 " from this certificate and if it does not exactly match the pub-\n"
3616 " lic key provided to this option, curl will abort the connection\n"
3617 " before sending or receiving any data.\n"
3618 "\n"
3619 , stdout);
3620 fputs(
3621 " If this option is used several times, the last one will be used.\n"
3622 "\n"
3623 " Examples:\n"
35823624 " curl --proxy-pinnedpubkey keyfile https://example.com\n"
35833625 " curl --proxy-pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
35843626 "\n"
35853627 " See also --pinnedpubkey and -x, --proxy. Added in 7.59.0.\n"
35863628 "\n"
35873629 " --proxy-service-name <name>\n"
3588 " This option allows you to change the service name for proxy ne-\n"
3630 " This option allows you to change the service name for proxy ne-\n"
35893631 " gotiation.\n"
35903632 "\n"
35913633 " Example:\n"
3634 , stdout);
3635 fputs(
35923636 " curl --proxy-service-name \"shrubbery\" -x proxy https://example.com\n"
35933637 "\n"
3594 , stdout);
3595 fputs(
35963638 " See also --service-name and -x, --proxy. Added in 7.43.0.\n"
35973639 "\n"
35983640 " --proxy-ssl-allow-beast\n"
36043646 " See also --ssl-allow-beast and -x, --proxy. Added in 7.52.0.\n"
36053647 "\n"
36063648 " --proxy-ssl-auto-client-cert\n"
3649 , stdout);
3650 fputs(
36073651 " Same as --ssl-auto-client-cert but used in HTTPS proxy context.\n"
36083652 "\n"
36093653 " Example:\n"
3610 , stdout);
3611 fputs(
36123654 " curl --proxy-ssl-auto-client-cert -x https://proxy https://example.com\n"
36133655 "\n"
36143656 " See also --ssl-auto-client-cert and -x, --proxy. Added in\n"
36153657 " 7.77.0.\n"
36163658 "\n"
36173659 " --proxy-tls13-ciphers <ciphersuite list>\n"
3618 " (TLS) Specifies which cipher suites to use in the connection to\n"
3660 " (TLS) Specifies which cipher suites to use in the connection to\n"
36193661 " your HTTPS proxy when it negotiates TLS 1.3. The list of ciphers\n"
3620 " suites must specify valid ciphers. Read up on TLS 1.3 cipher\n"
3621 , stdout);
3622 fputs(
3662 , stdout);
3663 fputs(
3664 " suites must specify valid ciphers. Read up on TLS 1.3 cipher\n"
36233665 " suite details on this URL:\n"
36243666 "\n"
36253667 " https://curl.se/docs/ssl-ciphers.html\n"
36263668 "\n"
3627 " This option is currently used only when curl is built to use\n"
3669 " This option is currently used only when curl is built to use\n"
36283670 " OpenSSL 1.1.1 or later. If you are using a different SSL backend\n"
3629 " you can try setting TLS 1.3 cipher suites by using the --proxy-\n"
3671 " you can try setting TLS 1.3 cipher suites by using the --proxy-\n"
36303672 " ciphers option.\n"
36313673 "\n"
3674 , stdout);
3675 fputs(
36323676 " If this option is used several times, the last one will be used.\n"
36333677 "\n"
36343678 " Example:\n"
3635 , stdout);
3636 fputs(
36373679 " curl --proxy-tls13-ciphers TLS_AES_128_GCM_SHA256 -x proxy https://example.com\n"
36383680 "\n"
36393681 " See also --tls13-ciphers and --curves. Added in 7.61.0.\n"
36443686 " Example:\n"
36453687 " curl --proxy-tlsauthtype SRP -x https://proxy https://example.com\n"
36463688 "\n"
3689 , stdout);
3690 fputs(
36473691 " See also -x, --proxy and --proxy-tlsuser. Added in 7.52.0.\n"
36483692 "\n"
36493693 " --proxy-tlspassword <string>\n"
3650 , stdout);
3651 fputs(
36523694 " Same as --tlspassword but used in HTTPS proxy context.\n"
36533695 "\n"
36543696 " Example:\n"
36603702 " Same as --tlsuser but used in HTTPS proxy context.\n"
36613703 "\n"
36623704 " Example:\n"
3705 , stdout);
3706 fputs(
36633707 " curl --proxy-tlsuser smith -x https://proxy https://example.com\n"
36643708 "\n"
3665 , stdout);
3666 fputs(
36673709 " See also -x, --proxy and --proxy-tlspassword. Added in 7.52.0.\n"
36683710 "\n"
36693711 " --proxy-tlsv1\n"
36753717 " See also -x, --proxy. Added in 7.52.0.\n"
36763718 "\n"
36773719 " -U, --proxy-user <user:password>\n"
3678 " Specify the user name and password to use for proxy authentica-\n"
3720 , stdout);
3721 fputs(
3722 " Specify the user name and password to use for proxy authentica-\n"
36793723 " tion.\n"
36803724 "\n"
3681 , stdout);
3682 fputs(
3683 " If you use a Windows SSPI-enabled curl binary and do either Ne-\n"
3684 " gotiate or NTLM authentication then you can tell curl to select\n"
3725 " If you use a Windows SSPI-enabled curl binary and do either Ne-\n"
3726 " gotiate or NTLM authentication then you can tell curl to select\n"
36853727 " the user name and password from your environment by specifying a\n"
36863728 " single colon with this option: \"-U :\".\n"
36873729 "\n"
36883730 " On systems where it works, curl will hide the given option argu-\n"
3689 " ment from process listings. This is not enough to protect cre-\n"
3690 , stdout);
3691 fputs(
3692 " dentials from possibly getting seen by other users on the same\n"
3693 " system as they will still be visible for a moment before\n"
3731 , stdout);
3732 fputs(
3733 " ment from process listings. This is not enough to protect cre-\n"
3734 " dentials from possibly getting seen by other users on the same\n"
3735 " system as they will still be visible for a moment before\n"
36943736 " cleared. Such sensitive data should be retrieved from a file in-\n"
36953737 " stead or similar and never used in clear text in a command line.\n"
36963738 " If this option is used several times, the last one will be used.\n"
36973739 "\n"
36983740 " Example:\n"
3741 , stdout);
3742 fputs(
36993743 " curl --proxy-user name:pwd -x proxy https://example.com\n"
37003744 "\n"
3701 , stdout);
3702 fputs(
37033745 " See also --proxy-pass.\n"
37043746 "\n"
37053747 " -x, --proxy [protocol://]host[:port]\n"
37063748 " Use the specified proxy.\n"
37073749 "\n"
3708 " The proxy string can be specified with a protocol:// prefix. No\n"
3750 " The proxy string can be specified with a protocol:// prefix. No\n"
37093751 " protocol specified or http:// will be treated as HTTP proxy. Use\n"
37103752 " socks4://, socks4a://, socks5:// or socks5h:// to request a spe-\n"
37113753 " cific SOCKS version to be used.\n"
37123754 "\n"
3713 " HTTPS proxy support via https:// protocol prefix was added in\n"
3714 , stdout);
3715 fputs(
3755 , stdout);
3756 fputs(
3757 " HTTPS proxy support via https:// protocol prefix was added in\n"
37163758 " 7.52.0 for OpenSSL, GnuTLS and NSS.\n"
37173759 "\n"
3718 " Unrecognized and unsupported proxy protocols cause an error\n"
3719 " since 7.52.0. Prior versions may ignore the protocol and use\n"
3760 " Unrecognized and unsupported proxy protocols cause an error\n"
3761 " since 7.52.0. Prior versions may ignore the protocol and use\n"
37203762 " http:// instead.\n"
37213763 "\n"
3722 " If the port number is not specified in the proxy string, it is\n"
3764 " If the port number is not specified in the proxy string, it is\n"
37233765 " assumed to be 1080.\n"
37243766 "\n"
3725 " This option overrides existing environment variables that set\n"
3726 , stdout);
3727 fputs(
3728 " the proxy to use. If there's an environment variable setting a\n"
3767 , stdout);
3768 fputs(
3769 " This option overrides existing environment variables that set\n"
3770 " the proxy to use. If there's an environment variable setting a\n"
37293771 " proxy, you can set proxy to \"\" to override it.\n"
37303772 "\n"
37313773 " All operations that are performed over an HTTP proxy will trans-\n"
3732 " parently be converted to HTTP. It means that certain protocol\n"
3774 " parently be converted to HTTP. It means that certain protocol\n"
37333775 " specific operations might not be available. This is not the case\n"
3776 , stdout);
3777 fputs(
37343778 " if you can tunnel through the proxy, as one with the --proxytun-\n"
37353779 " nel option.\n"
37363780 "\n"
3737 , stdout);
3738 fputs(
37393781 " User and password that might be provided in the proxy string are\n"
3740 " URL decoded by curl. This allows you to pass in special charac-\n"
3782 " URL decoded by curl. This allows you to pass in special charac-\n"
37413783 " ters such as @ by using %40 or pass in a colon with %3a.\n"
37423784 "\n"
3743 " The proxy host can be specified the same way as the proxy envi-\n"
3744 " ronment variables, including the protocol prefix (http://) and\n"
3785 " The proxy host can be specified the same way as the proxy envi-\n"
3786 " ronment variables, including the protocol prefix (http://) and\n"
3787 , stdout);
3788 fputs(
37453789 " the embedded user + password.\n"
37463790 "\n"
3747 , stdout);
3748 fputs(
37493791 " If this option is used several times, the last one will be used.\n"
37503792 "\n"
37513793 " Example:\n"
37543796 " See also --socks5 and --proxy-basic.\n"
37553797 "\n"
37563798 " --proxy1.0 <host[:port]>\n"
3757 " Use the specified HTTP 1.0 proxy. If the port number is not\n"
3799 " Use the specified HTTP 1.0 proxy. If the port number is not\n"
37583800 " specified, it is assumed at port 1080.\n"
37593801 "\n"
3760 " The only difference between this and the HTTP proxy option -x,\n"
3761 , stdout);
3762 fputs(
3763 " --proxy, is that attempts to use CONNECT through the proxy will\n"
3802 , stdout);
3803 fputs(
3804 " The only difference between this and the HTTP proxy option -x,\n"
3805 " --proxy, is that attempts to use CONNECT through the proxy will\n"
37643806 " specify an HTTP 1.0 protocol instead of the default HTTP 1.1.\n"
37653807 "\n"
37663808 " Example:\n"
37693811 " See also -x, --proxy, --socks5 and --preproxy.\n"
37703812 "\n"
37713813 " -p, --proxytunnel\n"
3772 " When an HTTP proxy is used -x, --proxy, this option will make\n"
3773 " curl tunnel through the proxy. The tunnel approach is made with\n"
3774 , stdout);
3775 fputs(
3776 " the HTTP proxy CONNECT request and requires that the proxy al-\n"
3814 " When an HTTP proxy is used -x, --proxy, this option will make\n"
3815 , stdout);
3816 fputs(
3817 " curl tunnel through the proxy. The tunnel approach is made with\n"
3818 " the HTTP proxy CONNECT request and requires that the proxy al-\n"
37773819 " lows direct connect to the remote port number curl wants to tun-\n"
37783820 " nel through to.\n"
37793821 "\n"
3780 " To suppress proxy CONNECT response headers when curl is set to\n"
3822 " To suppress proxy CONNECT response headers when curl is set to\n"
37813823 " output headers use --suppress-connect-headers.\n"
37823824 "\n"
37833825 " Example:\n"
3826 , stdout);
3827 fputs(
37843828 " curl --proxytunnel -x http://proxy https://example.com\n"
37853829 "\n"
37863830 " See also -x, --proxy.\n"
37873831 "\n"
37883832 " --pubkey <key>\n"
3789 , stdout);
3790 fputs(
37913833 " (SFTP SCP) Public key file name. Allows you to provide your pub-\n"
37923834 " lic key in this separate file.\n"
37933835 "\n"
37943836 " If this option is used several times, the last one will be used.\n"
37953837 " (As of 7.39.0, curl attempts to automatically extract the public\n"
3796 " key from the private key file, so passing this option is gener-\n"
3838 " key from the private key file, so passing this option is gener-\n"
3839 , stdout);
3840 fputs(
37973841 " ally not required. Note that this public key extraction requires\n"
3798 , stdout);
3799 fputs(
3800 " libcurl to be linked against a copy of libssh2 1.2.8 or higher\n"
3842 " libcurl to be linked against a copy of libssh2 1.2.8 or higher\n"
38013843 " that is itself linked against OpenSSL.)\n"
38023844 "\n"
38033845 " Example:\n"
38063848 " See also --pass.\n"
38073849 "\n"
38083850 " -Q, --quote <command>\n"
3809 " (FTP SFTP) Send an arbitrary command to the remote FTP or SFTP\n"
3810 " server. Quote commands are sent BEFORE the transfer takes place\n"
3811 , stdout);
3812 fputs(
3813 " (just after the initial PWD command in an FTP transfer, to be\n"
3851 " (FTP SFTP) Send an arbitrary command to the remote FTP or SFTP\n"
3852 , stdout);
3853 fputs(
3854 " server. Quote commands are sent BEFORE the transfer takes place\n"
3855 " (just after the initial PWD command in an FTP transfer, to be\n"
38143856 " exact). To make commands take place after a successful transfer,\n"
3815 " prefix them with a dash '-'. To make commands be sent after curl\n"
3816 " has changed the working directory, just before the transfer com-\n"
3817 " mand(s), prefix the command with a '+' (this is only supported\n"
3818 " for FTP). You may specify any number of commands.\n"
3819 "\n"
3820 , stdout);
3821 fputs(
3822 " By default curl will stop at first failure. To make curl con-\n"
3823 " tinue even if the command fails, prefix the command with an as-\n"
3824 " terisk (*). Otherwise, if the server returns failure for one of\n"
3857 " prefix them with a dash '-'.\n"
3858 "\n"
3859 " (FTP only) To make commands be sent after curl has changed the\n"
3860 " working directory, just before the file transfer command(s),\n"
3861 , stdout);
3862 fputs(
3863 " prefix the command with a '+'. This is not performed when a di-\n"
3864 " rectory listing is performed.\n"
3865 "\n"
3866 " You may specify any number of commands.\n"
3867 "\n"
3868 " By default curl will stop at first failure. To make curl con-\n"
3869 " tinue even if the command fails, prefix the command with an as-\n"
3870 " terisk (*). Otherwise, if the server returns failure for one of\n"
38253871 " the commands, the entire operation will be aborted.\n"
38263872 "\n"
3827 " You must send syntactically correct FTP commands as RFC 959 de-\n"
3828 " fines to FTP servers, or one of the commands listed below to\n"
3873 , stdout);
3874 fputs(
3875 " You must send syntactically correct FTP commands as RFC 959 de-\n"
3876 " fines to FTP servers, or one of the commands listed below to\n"
38293877 " SFTP servers.\n"
38303878 "\n"
3831 , stdout);
3832 fputs(
38333879 " This option can be used multiple times.\n"
38343880 "\n"
3835 " SFTP is a binary protocol. Unlike for FTP, curl interprets SFTP\n"
3836 " quote commands itself before sending them to the server. File\n"
3881 " SFTP is a binary protocol. Unlike for FTP, curl interprets SFTP\n"
3882 " quote commands itself before sending them to the server. File\n"
38373883 " names may be quoted shell-style to embed spaces or special char-\n"
3838 " acters. Following is the list of all supported SFTP quote com-\n"
3884 , stdout);
3885 fputs(
3886 " acters. Following is the list of all supported SFTP quote com-\n"
38393887 " mands:\n"
38403888 "\n"
38413889 " atime date file\n"
3842 , stdout);
3843 fputs(
3844 " The atime command sets the last access time of the file\n"
3845 " named by the file operand. The <date expression> can be\n"
3846 " all sorts of date strings, see the curl_getdate(3) man\n"
3890 " The atime command sets the last access time of the file\n"
3891 " named by the file operand. The <date expression> can be\n"
3892 " all sorts of date strings, see the curl_getdate(3) man\n"
38473893 " page for date expression details. (Added in 7.73.0)\n"
38483894 "\n"
38493895 " chgrp group file\n"
3850 " The chgrp command sets the group ID of the file named by\n"
3851 " the file operand to the group ID specified by the group\n"
3852 , stdout);
3853 fputs(
3896 , stdout);
3897 fputs(
3898 " The chgrp command sets the group ID of the file named by\n"
3899 " the file operand to the group ID specified by the group\n"
38543900 " operand. The group operand is a decimal integer group ID.\n"
38553901 "\n"
38563902 " chmod mode file\n"
3857 " The chmod command modifies the file mode bits of the\n"
3903 " The chmod command modifies the file mode bits of the\n"
38583904 " specified file. The mode operand is an octal integer mode\n"
38593905 " number.\n"
38603906 "\n"
38613907 " chown user file\n"
3908 , stdout);
3909 fputs(
38623910 " The chown command sets the owner of the file named by the\n"
3863 " file operand to the user ID specified by the user oper-\n"
3864 , stdout);
3865 fputs(
3911 " file operand to the user ID specified by the user oper-\n"
38663912 " and. The user operand is a decimal integer user ID.\n"
38673913 "\n"
38683914 " ln source_file target_file\n"
38693915 " The ln and symlink commands create a symbolic link at the\n"
3870 " target_file location pointing to the source_file loca-\n"
3916 " target_file location pointing to the source_file loca-\n"
38713917 " tion.\n"
38723918 "\n"
38733919 " mkdir directory_name\n"
3874 " The mkdir command creates the directory named by the di-\n"
3920 , stdout);
3921 fputs(
3922 " The mkdir command creates the directory named by the di-\n"
38753923 " rectory_name operand.\n"
38763924 "\n"
38773925 " mtime date file\n"
3878 , stdout);
3879 fputs(
3880 " The mtime command sets the last modification time of the\n"
3926 " The mtime command sets the last modification time of the\n"
38813927 " file named by the file operand. The <date expression> can\n"
38823928 " be all sorts of date strings, see the curl_getdate(3) man\n"
38833929 " page for date expression details. (Added in 7.73.0)\n"
38843930 "\n"
3931 , stdout);
3932 fputs(
38853933 " pwd The pwd command returns the absolute pathname of the cur-\n"
38863934 " rent working directory.\n"
38873935 "\n"
38883936 " rename source target\n"
3889 , stdout);
3890 fputs(
38913937 " The rename command renames the file or directory named by\n"
3892 " the source operand to the destination path named by the\n"
3938 " the source operand to the destination path named by the\n"
38933939 " target operand.\n"
38943940 "\n"
38953941 " rm file\n"
38963942 " The rm command removes the file specified by the file op-\n"
38973943 " erand.\n"
38983944 "\n"
3945 , stdout);
3946 fputs(
38993947 " rmdir directory\n"
3900 " The rmdir command removes the directory entry specified\n"
3901 , stdout);
3902 fputs(
3948 " The rmdir command removes the directory entry specified\n"
39033949 " by the directory operand, provided it is empty.\n"
39043950 "\n"
39053951 " symlink source_file target_file\n"
39123958 "\n"
39133959 " --random-file <file>\n"
39143960 " Specify the path name to file containing what will be considered\n"
3915 " as random data. The data may be used to seed the random engine\n"
3916 , stdout);
3917 fputs(
3961 , stdout);
3962 fputs(
3963 " as random data. The data may be used to seed the random engine\n"
39183964 " for SSL connections. See also the --egd-file option.\n"
39193965 "\n"
39203966 " Example:\n"
39243970 "\n"
39253971 " -r, --range <range>\n"
39263972 " (HTTP FTP SFTP FILE) Retrieve a byte range (i.e. a partial docu-\n"
3927 " ment) from an HTTP/1.1, FTP or SFTP server or a local FILE.\n"
3973 " ment) from an HTTP/1.1, FTP or SFTP server or a local FILE.\n"
3974 , stdout);
3975 fputs(
39283976 " Ranges can be specified in a number of ways.\n"
39293977 "\n"
39303978 " 0-499 specifies the first 500 bytes\n"
39313979 "\n"
3932 , stdout);
3933 fputs(
39343980 " 500-999 specifies the second 500 bytes\n"
39353981 "\n"
39363982 " -500 specifies the last 500 bytes\n"
39423988 " 100-199,500-599\n"
39433989 " specifies two separate 100-byte ranges(*) (HTTP)\n"
39443990 "\n"
3945 " (*) = NOTE that this will cause the server to reply with a mul-\n"
3946 , stdout);
3947 fputs(
3948 " tipart response, which will be returned as-is by curl! Parsing\n"
3991 , stdout);
3992 fputs(
3993 " (*) = NOTE that this will cause the server to reply with a mul-\n"
3994 " tipart response, which will be returned as-is by curl! Parsing\n"
39493995 " or otherwise transforming this response is the responsibility of\n"
39503996 " the caller.\n"
39513997 "\n"
3952 " Only digit characters (0-9) are valid in the 'start' and 'stop'\n"
3953 " fields of the 'start-stop' range syntax. If a non-digit charac-\n"
3998 " Only digit characters (0-9) are valid in the 'start' and 'stop'\n"
3999 " fields of the 'start-stop' range syntax. If a non-digit charac-\n"
4000 , stdout);
4001 fputs(
39544002 " ter is given in the range, the server's response will be unspec-\n"
39554003 " ified, depending on the server's configuration.\n"
39564004 "\n"
3957 , stdout);
3958 fputs(
3959 " You should also be aware that many HTTP/1.1 servers do not have\n"
3960 " this feature enabled, so that when you attempt to get a range,\n"
4005 " You should also be aware that many HTTP/1.1 servers do not have\n"
4006 " this feature enabled, so that when you attempt to get a range,\n"
39614007 " you will instead get the whole document.\n"
39624008 "\n"
3963 " FTP and SFTP range downloads only support the simple 'start-\n"
3964 " stop' syntax (optionally with one of the numbers omitted). FTP\n"
4009 " FTP and SFTP range downloads only support the simple 'start-\n"
4010 , stdout);
4011 fputs(
4012 " stop' syntax (optionally with one of the numbers omitted). FTP\n"
39654013 " use depends on the extended FTP command SIZE.\n"
39664014 "\n"
3967 , stdout);
3968 fputs(
39694015 " If this option is used several times, the last one will be used.\n"
39704016 "\n"
39714017 " Example:\n"
39744020 " See also -C, --continue-at and -a, --append.\n"
39754021 "\n"
39764022 " --raw (HTTP) When used, it disables all internal HTTP decoding of con-\n"
3977 " tent or transfer encodings and instead makes them passed on un-\n"
4023 , stdout);
4024 fputs(
4025 " tent or transfer encodings and instead makes them passed on un-\n"
39784026 " altered, raw.\n"
39794027 "\n"
39804028 " Example:\n"
39814029 " curl --raw https://example.com\n"
39824030 "\n"
3983 , stdout);
3984 fputs(
39854031 " See also --tr-encoding.\n"
39864032 "\n"
39874033 " -e, --referer <URL>\n"
39884034 " (HTTP) Sends the \"Referrer Page\" information to the HTTP server.\n"
39894035 " This can also be set with the --header flag of course. When used\n"
3990 " with --location you can append \";auto\" to the --referer URL to\n"
3991 " make curl automatically set the previous URL when it follows a\n"
3992 " Location: header. The \";auto\" string can be used alone, even if\n"
3993 , stdout);
3994 fputs(
4036 " with --location you can append \";auto\" to the --referer URL to\n"
4037 , stdout);
4038 fputs(
4039 " make curl automatically set the previous URL when it follows a\n"
4040 " Location: header. The \";auto\" string can be used alone, even if\n"
39954041 " you do not set an initial -e, --referer.\n"
39964042 "\n"
39974043 " If this option is used several times, the last one will be used.\n"
39994045 " Examples:\n"
40004046 " curl --referer \"https://fake.example\" https://example.com\n"
40014047 " curl --referer \"https://fake.example;auto\" -L https://example.com\n"
4048 , stdout);
4049 fputs(
40024050 " curl --referer \";auto\" -L https://example.com\n"
40034051 "\n"
40044052 " See also -A, --user-agent and -H, --header.\n"
40054053 "\n"
40064054 " -J, --remote-header-name\n"
4007 , stdout);
4008 fputs(
4009 " (HTTP) This option tells the --remote-name option to use the\n"
4010 " server-specified Content-Disposition filename instead of ex-\n"
4011 " tracting a filename from the URL. If the server-provided file\n"
4012 " name contains a path, that will be stripped off before the file\n"
4055 " (HTTP) This option tells the --remote-name option to use the\n"
4056 " server-specified Content-Disposition filename instead of ex-\n"
4057 " tracting a filename from the URL. If the server-provided file\n"
4058 " name contains a path, that will be stripped off before the file\n"
40134059 " name is used.\n"
40144060 "\n"
4015 " The file is saved in the current directory, or in the directory\n"
4061 , stdout);
4062 fputs(
4063 " The file is saved in the current directory, or in the directory\n"
40164064 " specified with --output-dir.\n"
40174065 "\n"
4018 , stdout);
4019 fputs(
4020 " If the server specifies a file name and a file with that name\n"
4021 " already exists in the destination directory, it will not be\n"
4022 " overwritten and an error will occur. If the server does not\n"
4066 " If the server specifies a file name and a file with that name\n"
4067 " already exists in the destination directory, it will not be\n"
4068 " overwritten and an error will occur. If the server does not\n"
40234069 " specify a file name then this option has no effect.\n"
40244070 "\n"
4025 " There's no attempt to decode %-sequences (yet) in the provided\n"
4071 , stdout);
4072 fputs(
4073 " There's no attempt to decode %-sequences (yet) in the provided\n"
40264074 " file name, so this option may provide you with rather unexpected\n"
40274075 " file names.\n"
40284076 "\n"
4029 , stdout);
4030 fputs(
4031 " WARNING: Exercise judicious use of this option, especially on\n"
4032 " Windows. A rogue server could send you the name of a DLL or\n"
4077 " WARNING: Exercise judicious use of this option, especially on\n"
4078 " Windows. A rogue server could send you the name of a DLL or\n"
40334079 " other file that could be loaded automatically by Windows or some\n"
40344080 " third party software.\n"
40354081 "\n"
40364082 " Example:\n"
4083 , stdout);
4084 fputs(
40374085 " curl -OJ https://example.com/file\n"
40384086 "\n"
40394087 " See also -O, --remote-name.\n"
40404088 "\n"
40414089 " --remote-name-all\n"
4042 " This option changes the default action for all given URLs to be\n"
4043 , stdout);
4044 fputs(
4090 " This option changes the default action for all given URLs to be\n"
40454091 " dealt with as if --remote-name were used for each one. So if you\n"
4046 " want to disable that for a specific URL after --remote-name-all\n"
4092 " want to disable that for a specific URL after --remote-name-all\n"
40474093 " has been used, you must use \"-o -\" or --no-remote-name.\n"
40484094 "\n"
40494095 " Example:\n"
4096 , stdout);
4097 fputs(
40504098 " curl --remote-name-all ftp://example.com/file1 ftp://example.com/file2\n"
40514099 "\n"
40524100 " See also -O, --remote-name.\n"
40534101 "\n"
40544102 " -O, --remote-name\n"
4055 " Write output to a local file named like the remote file we get.\n"
4056 , stdout);
4057 fputs(
4058 " (Only the file part of the remote file is used, the path is cut\n"
4103 " Write output to a local file named like the remote file we get.\n"
4104 " (Only the file part of the remote file is used, the path is cut\n"
40594105 " off.)\n"
40604106 "\n"
4061 " The file will be saved in the current working directory. If you\n"
4062 " want the file saved in a different directory, make sure you\n"
4063 " change the current working directory before invoking curl with\n"
4107 " The file will be saved in the current working directory. If you\n"
4108 " want the file saved in a different directory, make sure you\n"
4109 , stdout);
4110 fputs(
4111 " change the current working directory before invoking curl with\n"
40644112 " this option.\n"
40654113 "\n"
4066 " The remote file name to use for saving is extracted from the\n"
4067 , stdout);
4068 fputs(
4069 " given URL, nothing else, and if it already exists it will be\n"
4070 " overwritten. If you want the server to be able to choose the\n"
4114 " The remote file name to use for saving is extracted from the\n"
4115 " given URL, nothing else, and if it already exists it will be\n"
4116 " overwritten. If you want the server to be able to choose the\n"
40714117 " file name refer to --remote-header-name which can be used in ad-\n"
4072 " dition to this option. If the server chooses a file name and\n"
4118 , stdout);
4119 fputs(
4120 " dition to this option. If the server chooses a file name and\n"
40734121 " that name already exists it will not be overwritten.\n"
40744122 "\n"
40754123 " There is no URL decoding done on the file name. If it has %20 or\n"
4076 , stdout);
4077 fputs(
4078 " other URL encoded parts of the name, they will end up as-is as\n"
4124 " other URL encoded parts of the name, they will end up as-is as\n"
40794125 " file name.\n"
40804126 "\n"
4081 " You may use this option as many times as the number of URLs you\n"
4127 " You may use this option as many times as the number of URLs you\n"
40824128 " have.\n"
40834129 "\n"
40844130 " Example:\n"
4131 , stdout);
4132 fputs(
40854133 " curl -O https://example.com/filename\n"
40864134 "\n"
40874135 " See also --remote-name-all.\n"
40884136 "\n"
40894137 " -R, --remote-time\n"
4090 " When used, this will make curl attempt to figure out the time-\n"
4091 , stdout);
4092 fputs(
4093 " stamp of the remote file, and if that is available make the lo-\n"
4138 " When used, this will make curl attempt to figure out the time-\n"
4139 " stamp of the remote file, and if that is available make the lo-\n"
40944140 " cal file get that same timestamp.\n"
40954141 "\n"
40964142 " Example:\n"
40974143 " curl --remote-time -o foo https://example.com\n"
40984144 "\n"
40994145 " See also -O, --remote-name and -z, --time-cond.\n"
4146 "\n"
4147 , stdout);
4148 fputs(
4149 " --remove-on-error\n"
4150 " When curl returns an error when told to save output in a local\n"
4151 " file, this option removes that saved file before exiting. This\n"
4152 " prevents curl from leaving a partial file in the case of an er-\n"
4153 " ror during transfer.\n"
4154 "\n"
4155 " If the output is not a file, this option has no effect.\n"
4156 "\n"
4157 " Example:\n"
4158 " curl --remove-on-error -o output https://example.com\n"
4159 "\n"
4160 , stdout);
4161 fputs(
4162 " See also -f, --fail. Added in 7.83.0.\n"
41004163 "\n"
41014164 " --request-target <path>\n"
41024165 " (HTTP) Tells curl to use an alternative \"target\" (path) instead\n"
41034166 " of using the path as provided in the URL. Particularly useful\n"
4104 , stdout);
4105 fputs(
41064167 " when wanting to issue HTTP requests without leading slash or\n"
41074168 " other data that does not follow the regular URL pattern, like\n"
41084169 " \"OPTIONS *\".\n"
41094170 "\n"
41104171 " Example:\n"
4172 , stdout);
4173 fputs(
41114174 " curl --request-target \"*\" -X OPTIONS https://example.com\n"
41124175 "\n"
41134176 " See also -X, --request. Added in 7.55.0.\n"
41144177 "\n"
41154178 " -X, --request <method>\n"
41164179 " (HTTP) Specifies a custom request method to use when communicat-\n"
4117 , stdout);
4118 fputs(
41194180 " ing with the HTTP server. The specified request method will be\n"
41204181 " used instead of the method otherwise used (which defaults to\n"
41214182 " GET). Read the HTTP 1.1 specification for details and explana-\n"
4183 , stdout);
4184 fputs(
41224185 " tions. Common additional HTTP requests include PUT and DELETE,\n"
41234186 " but related technologies like WebDAV offers PROPFIND, COPY, MOVE\n"
41244187 " and more.\n"
41254188 "\n"
41264189 " Normally you do not need this option. All sorts of GET, HEAD,\n"
4127 , stdout);
4128 fputs(
41294190 " POST and PUT requests are rather invoked by using dedicated com-\n"
41304191 " mand line options.\n"
41314192 "\n"
41324193 " This option only changes the actual word used in the HTTP re-\n"
4194 , stdout);
4195 fputs(
41334196 " quest, it does not alter the way curl behaves. So for example if\n"
41344197 " you want to make a proper HEAD request, using -X HEAD will not\n"
41354198 " suffice. You need to use the --head option.\n"
41364199 "\n"
41374200 " The method string you set with --request will be used for all\n"
4138 , stdout);
4139 fputs(
41404201 " requests, which if you for example use --location may cause un-\n"
41414202 " intended side-effects when curl does not change request method\n"
4203 , stdout);
4204 fputs(
41424205 " according to the HTTP 30x response codes - and similar.\n"
41434206 "\n"
41444207 " (FTP) Specifies a custom FTP command to use instead of LIST when\n"
41474210 " (POP3) Specifies a custom POP3 command to use instead of LIST or\n"
41484211 " RETR.\n"
41494212 "\n"
4150 , stdout);
4151 fputs(
41524213 " (IMAP) Specifies a custom IMAP command to use instead of LIST.\n"
41534214 " (Added in 7.30.0)\n"
41544215 "\n"
41554216 " (SMTP) Specifies a custom SMTP command to use instead of HELP or\n"
4217 , stdout);
4218 fputs(
41564219 " VRFY. (Added in 7.34.0)\n"
41574220 "\n"
41584221 " If this option is used several times, the last one will be used.\n"
41634226 "\n"
41644227 " See also --request-target.\n"
41654228 "\n"
4166 , stdout);
4167 fputs(
41684229 " --resolve <[+]host:port:addr[,addr]...>\n"
41694230 " Provide a custom address for a specific host and port pair. Us-\n"
41704231 " ing this, you can make the curl requests(s) use a specified ad-\n"
4232 , stdout);
4233 fputs(
41714234 " dress and prevent the otherwise normally resolved address to be\n"
41724235 " used. Consider it a sort of /etc/hosts alternative provided on\n"
41734236 " the command line. The port number should be the number used for\n"
4174 , stdout);
4175 fputs(
41764237 " the specific protocol the host will be used for. It means you\n"
41774238 " need several entries if you want to provide address for the same\n"
41784239 " host but different ports.\n"
41794240 "\n"
4241 , stdout);
4242 fputs(
41804243 " By specifying '*' as host you can tell curl to resolve any host\n"
41814244 " and specific port pair to the specified address. Wildcard is re-\n"
41824245 " solved last so any --resolve with a specific host and port will\n"
41834246 " be used first.\n"
41844247 "\n"
4185 , stdout);
4186 fputs(
41874248 " The provided address set by this option will be used even if\n"
41884249 " --ipv4 or --ipv6 is set to make curl use another IP version.\n"
41894250 "\n"
4251 , stdout);
4252 fputs(
41904253 " By prefixing the host with a '+' you can make the entry time out\n"
41914254 " after curl's default timeout (1 minute). Note that this will\n"
41924255 " only make sense for long running parallel transfers with a lot\n"
41934256 " of files. In such cases, if this option is used curl will try to\n"
4194 , stdout);
4195 fputs(
41964257 " resolve the host as it normally would once the timeout has ex-\n"
41974258 " pired.\n"
41984259 "\n"
41994260 " Support for providing the IP address within [brackets] was added\n"
4261 , stdout);
4262 fputs(
42004263 " in 7.57.0.\n"
42014264 "\n"
42024265 " Support for providing multiple IP addresses per entry was added\n"
42064269 "\n"
42074270 " Support for the '+' prefix was was added in 7.75.0.\n"
42084271 "\n"
4209 , stdout);
4210 fputs(
42114272 " This option can be used many times to add many host names to re-\n"
42124273 " solve.\n"
42134274 "\n"
42144275 " Example:\n"
42154276 " curl --resolve example.com:443:127.0.0.1 https://example.com\n"
42164277 "\n"
4278 , stdout);
4279 fputs(
42174280 " See also --connect-to and --alt-svc.\n"
42184281 "\n"
42194282 " --retry-all-errors\n"
42204283 " Retry on any error. This option is used together with --retry.\n"
42214284 "\n"
42224285 " This option is the \"sledgehammer\" of retrying. Do not use this\n"
4223 , stdout);
4224 fputs(
42254286 " option by default (eg in curlrc), there may be unintended conse-\n"
42264287 " quences such as sending or receiving duplicate data. Do not use\n"
42274288 " with redirected input or output. You'd be much better off han-\n"
4289 , stdout);
4290 fputs(
42284291 " dling your unique problems in shell script. Please read the ex-\n"
42294292 " ample below.\n"
42304293 "\n"
42314294 " WARNING: For server compatibility curl attempts to retry failed\n"
4232 , stdout);
4233 fputs(
42344295 " flaky transfers as close as possible to how they were started,\n"
42354296 " but this is not possible with redirected input or output. For\n"
42364297 " example, before retrying it removes output data from a failed\n"
4298 , stdout);
4299 fputs(
42374300 " partial transfer that was written to an output file. However\n"
42384301 " this is not true of data redirected to a | pipe or > file, which\n"
42394302 " are not reset. We strongly suggest you do not parse or record\n"
4240 , stdout);
4241 fputs(
42424303 " output via redirect in combination with this option, since you\n"
42434304 " may receive duplicate data.\n"
42444305 "\n"
42454306 " By default curl will not error on an HTTP response code that in-\n"
4307 , stdout);
4308 fputs(
42464309 " dicates an HTTP error, if the transfer was successful. For exam-\n"
42474310 " ple, if a server replies 404 Not Found and the reply is fully\n"
42484311 " received then that is not an error. When --retry is used then\n"
4249 , stdout);
4250 fputs(
42514312 " curl will retry on some HTTP response codes that indicate tran-\n"
42524313 " sient HTTP errors, but that does not include most 4xx response\n"
42534314 " codes such as 404. If you want to retry on all response codes\n"
4315 , stdout);
4316 fputs(
42544317 " that indicate HTTP errors (4xx and 5xx) then combine with -f,\n"
42554318 " --fail.\n"
42564319 "\n"
42594322 "\n"
42604323 " See also --retry. Added in 7.71.0.\n"
42614324 "\n"
4262 , stdout);
4263 fputs(
42644325 " --retry-connrefused\n"
42654326 " In addition to the other conditions, consider ECONNREFUSED as a\n"
42664327 " transient error too for --retry. This option is used together\n"
42674328 " with --retry.\n"
42684329 "\n"
42694330 " Example:\n"
4331 , stdout);
4332 fputs(
42704333 " curl --retry-connrefused --retry https://example.com\n"
42714334 "\n"
42724335 " See also --retry and --retry-all-errors. Added in 7.52.0.\n"
42734336 "\n"
42744337 " --retry-delay <seconds>\n"
42754338 " Make curl sleep this amount of time before each retry when a\n"
4276 , stdout);
4277 fputs(
42784339 " transfer has failed with a transient error (it changes the de-\n"
42794340 " fault backoff time algorithm between retries). This option is\n"
42804341 " only interesting if --retry is also used. Setting this delay to\n"
4342 , stdout);
4343 fputs(
42814344 " zero will make curl use the default backoff time.\n"
42824345 "\n"
42834346 " If this option is used several times, the last one will be used.\n"
42854348 " Example:\n"
42864349 " curl --retry-delay 5 --retry https://example.com\n"
42874350 "\n"
4288 , stdout);
4289 fputs(
42904351 " See also --retry.\n"
42914352 "\n"
42924353 " --retry-max-time <seconds>\n"
42934354 " The retry timer is reset before the first transfer attempt. Re-\n"
42944355 " tries will be done as usual (see --retry) as long as the timer\n"
4356 , stdout);
4357 fputs(
42954358 " has not reached this given limit. Notice that if the timer has\n"
42964359 " not reached the limit, the request will be made and while per-\n"
42974360 " forming, it may take longer than this given time period. To\n"
4298 , stdout);
4299 fputs(
43004361 " limit a single request's maximum time, use -m, --max-time. Set\n"
43014362 " this option to zero to not timeout retries.\n"
43024363 "\n"
43034364 " If this option is used several times, the last one will be used.\n"
43044365 "\n"
43054366 " Example:\n"
4367 , stdout);
4368 fputs(
43064369 " curl --retry-max-time 30 --retry 10 https://example.com\n"
43074370 "\n"
43084371 " See also --retry.\n"
43094372 "\n"
43104373 " --retry <num>\n"
43114374 " If a transient error is returned when curl tries to perform a\n"
4312 , stdout);
4313 fputs(
43144375 " transfer, it will retry this number of times before giving up.\n"
43154376 " Setting the number to 0 makes curl do no retries (which is the\n"
43164377 " default). Transient error means either: a timeout, an FTP 4xx\n"
4378 , stdout);
4379 fputs(
43174380 " response code or an HTTP 408, 429, 500, 502, 503 or 504 response\n"
43184381 " code.\n"
43194382 "\n"
43204383 " When curl is about to retry a transfer, it will first wait one\n"
43214384 " second and then for all forthcoming retries it will double the\n"
4322 , stdout);
4323 fputs(
43244385 " waiting time until it reaches 10 minutes which then will be the\n"
43254386 " delay between the rest of the retries. By using --retry-delay\n"
43264387 " you disable this exponential backoff algorithm. See also\n"
4388 , stdout);
4389 fputs(
43274390 " --retry-max-time to limit the total time allowed for retries.\n"
43284391 "\n"
43294392 " Since curl 7.66.0, curl will comply with the Retry-After: re-\n"
43304393 " sponse header if one was present to know when to issue the next\n"
43314394 " retry.\n"
43324395 "\n"
4333 , stdout);
4334 fputs(
43354396 " If this option is used several times, the last one will be used.\n"
43364397 "\n"
43374398 " Example:\n"
43404401 " See also --retry-max-time.\n"
43414402 "\n"
43424403 " --sasl-authzid <identity>\n"
4343 " Use this authorisation identity (authzid), during SASL PLAIN au-\n"
4404 , stdout);
4405 fputs(
4406 " Use this authorization identity (authzid), during SASL PLAIN au-\n"
43444407 " thentication, in addition to the authentication identity (auth-\n"
43454408 " cid) as specified by -u, --user.\n"
43464409 "\n"
4347 , stdout);
4348 fputs(
43494410 " If the option is not specified, the server will derive the au-\n"
43504411 " thzid from the authcid, but if specified, and depending on the\n"
43514412 " server implementation, it may be used to access another user's\n"
4413 , stdout);
4414 fputs(
43524415 " inbox, that the user has been granted access to, or a shared\n"
43534416 " mailbox for example.\n"
43544417 "\n"
43574420 "\n"
43584421 " See also --login-options. Added in 7.66.0.\n"
43594422 "\n"
4360 , stdout);
4361 fputs(
43624423 " --sasl-ir\n"
43634424 " Enable initial response in SASL authentication.\n"
43644425 "\n"
43684429 " See also --sasl-authzid. Added in 7.31.0.\n"
43694430 "\n"
43704431 " --service-name <name>\n"
4432 , stdout);
4433 fputs(
43714434 " This option allows you to change the service name for SPNEGO.\n"
43724435 "\n"
43734436 " Examples: --negotiate --service-name sockd would use\n"
43744437 " sockd/server-name.\n"
43754438 "\n"
43764439 " Example:\n"
4377 , stdout);
4378 fputs(
43794440 " curl --service-name sockd/server https://example.com\n"
43804441 "\n"
43814442 " See also --negotiate and --proxy-service-name. Added in 7.43.0.\n"
43844445 " When used with -s, --silent, it makes curl show an error message\n"
43854446 " if it fails.\n"
43864447 "\n"
4448 , stdout);
4449 fputs(
43874450 " This option is global and does not need to be specified for each\n"
43884451 " use of -:, --next.\n"
43894452 "\n"
43904453 " Example:\n"
43914454 " curl --show-error --silent https://example.com\n"
43924455 "\n"
4393 , stdout);
4394 fputs(
43954456 " See also --no-progress-meter.\n"
43964457 "\n"
43974458 " -s, --silent\n"
43984459 " Silent or quiet mode. Do not show progress meter or error mes-\n"
43994460 " sages. Makes Curl mute. It will still output the data you ask\n"
4461 , stdout);
4462 fputs(
44004463 " for, potentially even to the terminal/stdout unless you redirect\n"
44014464 " it.\n"
44024465 "\n"
44044467 " meter but still show error messages.\n"
44054468 "\n"
44064469 " Example:\n"
4407 , stdout);
4408 fputs(
44094470 " curl -s https://example.com\n"
44104471 "\n"
44114472 " See also -v, --verbose, --stderr and --no-progress-meter.\n"
44124473 "\n"
44134474 " --socks4 <host[:port]>\n"
44144475 " Use the specified SOCKS4 proxy. If the port number is not speci-\n"
4476 , stdout);
4477 fputs(
44154478 " fied, it is assumed at port 1080. Using this socket type make\n"
44164479 " curl resolve the host name and passing the address on to the\n"
44174480 " proxy.\n"
44184481 "\n"
44194482 " This option overrides any previous use of -x, --proxy, as they\n"
4420 , stdout);
4421 fputs(
44224483 " are mutually exclusive.\n"
44234484 "\n"
44244485 " This option is superfluous since you can specify a socks4 proxy\n"
44254486 " with --proxy using a socks4:// protocol prefix.\n"
44264487 "\n"
4488 , stdout);
4489 fputs(
44274490 " Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
44284491 " the same time --proxy is used with an HTTP/HTTPS proxy. In such\n"
44294492 " a case curl first connects to the SOCKS proxy and then connects\n"
44304493 " (through SOCKS) to the HTTP or HTTPS proxy.\n"
44314494 "\n"
4432 , stdout);
4433 fputs(
44344495 " If this option is used several times, the last one will be used.\n"
44354496 "\n"
44364497 " Example:\n"
44374498 " curl --socks4 hostname:4096 https://example.com\n"
44384499 "\n"
4500 , stdout);
4501 fputs(
44394502 " See also --socks4a, --socks5 and --socks5-hostname.\n"
44404503 "\n"
44414504 " --socks4a <host[:port]>\n"
44434506 " ified, it is assumed at port 1080. This asks the proxy to re-\n"
44444507 " solve the host name.\n"
44454508 "\n"
4446 , stdout);
4447 fputs(
44484509 " This option overrides any previous use of -x, --proxy, as they\n"
44494510 " are mutually exclusive.\n"
44504511 "\n"
44514512 " This option is superfluous since you can specify a socks4a proxy\n"
4513 , stdout);
4514 fputs(
44524515 " with --proxy using a socks4a:// protocol prefix.\n"
44534516 "\n"
44544517 " Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
44554518 " the same time --proxy is used with an HTTP/HTTPS proxy. In such\n"
44564519 " a case curl first connects to the SOCKS proxy and then connects\n"
4457 , stdout);
4458 fputs(
44594520 " (through SOCKS) to the HTTP or HTTPS proxy.\n"
44604521 "\n"
44614522 " If this option is used several times, the last one will be used.\n"
44624523 "\n"
44634524 " Example:\n"
4525 , stdout);
4526 fputs(
44644527 " curl --socks4a hostname:4096 https://example.com\n"
44654528 "\n"
44664529 " See also --socks4, --socks5 and --socks5-hostname.\n"
44684531 " --socks5-basic\n"
44694532 " Tells curl to use username/password authentication when connect-\n"
44704533 " ing to a SOCKS5 proxy. The username/password authentication is\n"
4471 , stdout);
4472 fputs(
44734534 " enabled by default. Use --socks5-gssapi to force GSS-API au-\n"
44744535 " thentication to SOCKS5 proxies.\n"
44754536 "\n"
44764537 " Example:\n"
4538 , stdout);
4539 fputs(
44774540 " curl --socks5-basic --socks5 hostname:4096 https://example.com\n"
44784541 "\n"
44794542 " See also --socks5. Added in 7.55.0.\n"
44814544 " --socks5-gssapi-nec\n"
44824545 " As part of the GSS-API negotiation a protection mode is negoti-\n"
44834546 " ated. RFC 1961 says in section 4.3/4.4 it should be protected,\n"
4484 , stdout);
4485 fputs(
44864547 " but the NEC reference implementation does not. The option\n"
44874548 " --socks5-gssapi-nec allows the unprotected exchange of the pro-\n"
4549 , stdout);
4550 fputs(
44884551 " tection mode negotiation.\n"
44894552 "\n"
44904553 " Example:\n"
44944557 "\n"
44954558 " --socks5-gssapi-service <name>\n"
44964559 " The default service name for a socks server is rcmd/server-fqdn.\n"
4497 , stdout);
4498 fputs(
44994560 " This option allows you to change it.\n"
45004561 "\n"
45014562 " Examples: --socks5 proxy-name --socks5-gssapi-service sockd\n"
4563 , stdout);
4564 fputs(
45024565 " would use sockd/proxy-name --socks5 proxy-name --socks5-gssapi-\n"
45034566 " service sockd/real-name would use sockd/real-name for cases\n"
45044567 " where the proxy-name does not match the principal name.\n"
45064569 " Example:\n"
45074570 " curl --socks5-gssapi-service sockd --socks5 hostname:4096 https://example.com\n"
45084571 "\n"
4509 , stdout);
4510 fputs(
45114572 " See also --socks5.\n"
45124573 "\n"
45134574 " --socks5-gssapi\n"
45144575 " Tells curl to use GSS-API authentication when connecting to a\n"
4576 , stdout);
4577 fputs(
45154578 " SOCKS5 proxy. The GSS-API authentication is enabled by default\n"
45164579 " (if curl is compiled with GSS-API support). Use --socks5-basic\n"
45174580 " to force username/password authentication to SOCKS5 proxies.\n"
45194582 " Example:\n"
45204583 " curl --socks5-gssapi --socks5 hostname:4096 https://example.com\n"
45214584 "\n"
4522 , stdout);
4523 fputs(
45244585 " See also --socks5. Added in 7.55.0.\n"
45254586 "\n"
45264587 " --socks5-hostname <host[:port]>\n"
4588 , stdout);
4589 fputs(
45274590 " Use the specified SOCKS5 proxy (and let the proxy resolve the\n"
45284591 " host name). If the port number is not specified, it is assumed\n"
45294592 " at port 1080.\n"
45324595 " are mutually exclusive.\n"
45334596 "\n"
45344597 " This option is superfluous since you can specify a socks5 host-\n"
4535 , stdout);
4536 fputs(
45374598 " name proxy with --proxy using a socks5h:// protocol prefix.\n"
45384599 "\n"
4600 , stdout);
4601 fputs(
45394602 " Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
45404603 " the same time --proxy is used with an HTTP/HTTPS proxy. In such\n"
45414604 " a case curl first connects to the SOCKS proxy and then connects\n"
45444607 " If this option is used several times, the last one will be used.\n"
45454608 "\n"
45464609 " Example:\n"
4547 , stdout);
4548 fputs(
45494610 " curl --socks5-hostname proxy.example:7000 https://example.com\n"
45504611 "\n"
4612 , stdout);
4613 fputs(
45514614 " See also --socks5 and --socks4a.\n"
45524615 "\n"
45534616 " --socks5 <host[:port]>\n"
45584621 " This option overrides any previous use of -x, --proxy, as they\n"
45594622 " are mutually exclusive.\n"
45604623 "\n"
4561 , stdout);
4562 fputs(
45634624 " This option is superfluous since you can specify a socks5 proxy\n"
4625 , stdout);
4626 fputs(
45644627 " with --proxy using a socks5:// protocol prefix.\n"
45654628 "\n"
45664629 " Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
45684631 " a case curl first connects to the SOCKS proxy and then connects\n"
45694632 " (through SOCKS) to the HTTP or HTTPS proxy.\n"
45704633 "\n"
4571 , stdout);
4572 fputs(
45734634 " If this option is used several times, the last one will be used.\n"
4635 , stdout);
4636 fputs(
45744637 " This option (as well as --socks4) does not work with IPV6, FTPS\n"
45754638 " or LDAP.\n"
45764639 " Example:\n"
45804643 "\n"
45814644 " -Y, --speed-limit <speed>\n"
45824645 " If a download is slower than this given speed (in bytes per sec-\n"
4583 , stdout);
4584 fputs(
45854646 " ond) for speed-time seconds it gets aborted. speed-time is set\n"
45864647 " with --speed-time and is 30 if not set.\n"
45874648 "\n"
4649 , stdout);
4650 fputs(
45884651 " If this option is used several times, the last one will be used.\n"
45894652 "\n"
45904653 " Example:\n"
45944657 "\n"
45954658 " -y, --speed-time <seconds>\n"
45964659 " If a download is slower than speed-limit bytes per second during\n"
4597 , stdout);
4598 fputs(
45994660 " a speed-time period, the download gets aborted. If speed-time is\n"
4661 , stdout);
4662 fputs(
46004663 " used, the default speed-limit will be 1 unless set with -Y,\n"
46014664 " --speed-limit.\n"
46024665 "\n"
46074670 " If this option is used several times, the last one will be used.\n"
46084671 "\n"
46094672 " Example:\n"
4610 , stdout);
4611 fputs(
46124673 " curl --speed-limit 300 --speed-time 10 https://example.com\n"
46134674 "\n"
4675 , stdout);
4676 fputs(
46144677 " See also -Y, --speed-limit and --limit-rate.\n"
46154678 "\n"
46164679 " --ssl-allow-beast\n"
46194682 " used, the SSL layer may use workarounds known to cause interop-\n"
46204683 " erability problems with some older SSL implementations.\n"
46214684 "\n"
4622 , stdout);
4623 fputs(
46244685 " WARNING: this option loosens the SSL security, and by using this\n"
4686 , stdout);
4687 fputs(
46254688 " flag you ask for exactly that.\n"
46264689 "\n"
46274690 " Example:\n"
46324695 " --ssl-auto-client-cert\n"
46334696 " Tell libcurl to automatically locate and use a client certifi-\n"
46344697 " cate for authentication, when requested by the server. This op-\n"
4635 , stdout);
4636 fputs(
46374698 " tion is only supported for Schannel (the native Windows SSL li-\n"
4699 , stdout);
4700 fputs(
46384701 " brary). Prior to 7.77.0 this was the default behavior in libcurl\n"
46394702 " with Schannel. Since the server can request any certificate that\n"
46404703 " supports client authentication in the OS certificate store it\n"
46434706 " Example:\n"
46444707 " curl --ssl-auto-client-cert https://example.com\n"
46454708 "\n"
4646 , stdout);
4647 fputs(
46484709 " See also --proxy-ssl-auto-client-cert. Added in 7.77.0.\n"
46494710 "\n"
46504711 " --ssl-no-revoke\n"
4712 , stdout);
4713 fputs(
46514714 " (Schannel) This option tells curl to disable certificate revoca-\n"
46524715 " tion checks. WARNING: this option loosens the SSL security, and\n"
46534716 " by using this flag you ask for exactly that.\n"
46584721 " See also --crlfile. Added in 7.44.0.\n"
46594722 "\n"
46604723 " --ssl-reqd\n"
4661 , stdout);
4662 fputs(
46634724 " (FTP IMAP POP3 SMTP LDAP) Require SSL/TLS for the connection.\n"
4725 , stdout);
4726 fputs(
46644727 " Terminates the connection if the server does not support\n"
46654728 " SSL/TLS.\n"
46664729 "\n"
46714734 " This option was formerly known as --ftp-ssl-reqd.\n"
46724735 "\n"
46734736 " Example:\n"
4674 , stdout);
4675 fputs(
46764737 " curl --ssl-reqd ftp://example.com\n"
46774738 "\n"
4739 , stdout);
4740 fputs(
46784741 " See also --ssl and -k, --insecure.\n"
46794742 "\n"
46804743 " --ssl-revoke-best-effort\n"
46854748 " Example:\n"
46864749 " curl --ssl-revoke-best-effort https://example.com\n"
46874750 "\n"
4688 , stdout);
4689 fputs(
46904751 " See also --crlfile and -k, --insecure. Added in 7.70.0.\n"
46914752 "\n"
4753 , stdout);
4754 fputs(
46924755 " --ssl (FTP IMAP POP3 SMTP LDAP) Try to use SSL/TLS for the connection.\n"
46934756 " Reverts to a non-secure connection if the server does not sup-\n"
46944757 " port SSL/TLS. See also --ftp-ssl-control and --ssl-reqd for dif-\n"
46954758 " ferent levels of encryption required.\n"
46964759 "\n"
46974760 " This option is handled in LDAP since version 7.81.0. It is fully\n"
4698 , stdout);
4699 fputs(
47004761 " supported by the openldap backend and ignored by the generic\n"
47014762 " ldap backend.\n"
47024763 "\n"
4764 , stdout);
4765 fputs(
47034766 " Please note that a server may close the connection if the nego-\n"
47044767 " tiation does not succeed.\n"
47054768 "\n"
47094772 " Example:\n"
47104773 " curl --ssl pop3://example.com/\n"
47114774 "\n"
4712 , stdout);
4713 fputs(
47144775 " See also -k, --insecure and --ciphers.\n"
47154776 "\n"
47164777 " -2, --sslv2\n"
47174778 " (SSL) This option previously asked curl to use SSLv2, but start-\n"
4779 , stdout);
4780 fputs(
47184781 " ing in curl 7.77.0 this instruction is ignored. SSLv2 is widely\n"
47194782 " considered insecure (see RFC 6176).\n"
47204783 "\n"
47224785 " curl --sslv2 https://example.com\n"
47234786 "\n"
47244787 " See also --http1.1 and --http2. -2, --sslv2 requires that the\n"
4725 , stdout);
4726 fputs(
4727 " underlying libcurl was built to support TLS. This option over-\n"
4728 " rides -3, --sslv3 and -1, --tlsv1 and --tlsv1.1 and --tlsv1.2.\n"
4788 " underlying libcurl was built to support TLS. This option is mu-\n"
4789 " tually exclusive to -3, --sslv3 and -1, --tlsv1 and --tlsv1.1\n"
4790 " and --tlsv1.2.\n"
47294791 "\n"
47304792 " -3, --sslv3\n"
4793 , stdout);
4794 fputs(
47314795 " (SSL) This option previously asked curl to use SSLv3, but start-\n"
4732 " ing in curl 7.77.0 this instruction is ignored. SSLv3 is widely\n"
4796 " ing in curl 7.77.0 this instruction is ignored. SSLv3 is widely\n"
47334797 " considered insecure (see RFC 7568).\n"
47344798 "\n"
47354799 " Example:\n"
47364800 " curl --sslv3 https://example.com\n"
47374801 "\n"
4738 , stdout);
4739 fputs(
4740 " See also --http1.1 and --http2. -3, --sslv3 requires that the\n"
4741 " underlying libcurl was built to support TLS. This option over-\n"
4742 " rides -2, --sslv2 and -1, --tlsv1 and --tlsv1.1 and --tlsv1.2.\n"
4802 " See also --http1.1 and --http2. -3, --sslv3 requires that the\n"
4803 " underlying libcurl was built to support TLS. This option is mu-\n"
4804 , stdout);
4805 fputs(
4806 " tually exclusive to -2, --sslv2 and -1, --tlsv1 and --tlsv1.1\n"
4807 " and --tlsv1.2.\n"
47434808 "\n"
47444809 " --stderr <file>\n"
47454810 " Redirect all writes to stderr to the specified file instead. If\n"
47464811 " the file name is a plain '-', it is instead written to stdout.\n"
47474812 "\n"
47484813 " This option is global and does not need to be specified for each\n"
4749 , stdout);
4750 fputs(
47514814 " use of -:, --next.\n"
47524815 "\n"
47534816 " If this option is used several times, the last one will be used.\n"
47544817 "\n"
4818 , stdout);
4819 fputs(
47554820 " Example:\n"
47564821 " curl --stderr output.txt https://example.com\n"
47574822 "\n"
47624827 " headers to the terminal. Use --no-styled-output to switch them\n"
47634828 " off.\n"
47644829 "\n"
4765 , stdout);
4766 fputs(
47674830 " This option is global and does not need to be specified for each\n"
47684831 " use of -:, --next.\n"
47694832 "\n"
47704833 " Example:\n"
4834 , stdout);
4835 fputs(
47714836 " curl --styled-output -I https://example.com\n"
47724837 "\n"
47734838 " See also -I, --head and -v, --verbose. Added in 7.61.0.\n"
47754840 " --suppress-connect-headers\n"
47764841 " When --proxytunnel is used and a CONNECT request is made do not\n"
47774842 " output proxy CONNECT response headers. This option is meant to\n"
4778 , stdout);
4779 fputs(
47804843 " be used with --dump-header or --include which are used to show\n"
47814844 " protocol headers in the output. It has no effect on debug op-\n"
4845 , stdout);
4846 fputs(
47824847 " tions such as --verbose or --trace, or any statistics.\n"
47834848 "\n"
47844849 " Example:\n"
47884853 " Added in 7.54.0.\n"
47894854 "\n"
47904855 " --tcp-fastopen\n"
4791 , stdout);
4792 fputs(
47934856 " Enable use of TCP Fast Open (RFC7413).\n"
47944857 "\n"
47954858 " Example:\n"
47964859 " curl --tcp-fastopen https://example.com\n"
47974860 "\n"
4861 , stdout);
4862 fputs(
47984863 " See also --false-start. Added in 7.49.0.\n"
47994864 "\n"
48004865 " --tcp-nodelay\n"
48044869 " Since 7.50.2, curl sets this option by default and you need to\n"
48054870 " explicitly switch it off if you do not want it on.\n"
48064871 "\n"
4807 , stdout);
4808 fputs(
48094872 " Example:\n"
48104873 " curl --tcp-nodelay https://example.com\n"
48114874 "\n"
48124875 " See also -N, --no-buffer.\n"
48134876 "\n"
4877 , stdout);
4878 fputs(
48144879 " -t, --telnet-option <opt=val>\n"
48154880 " Pass options to the telnet protocol. Supported options are:\n"
48164881 "\n"
48234888 " Example:\n"
48244889 " curl -t TTYPE=vt100 telnet://example.com/\n"
48254890 "\n"
4826 , stdout);
4827 fputs(
48284891 " See also -K, --config.\n"
48294892 " --tftp-blksize <value>\n"
4893 , stdout);
4894 fputs(
48304895 " (TFTP) Set TFTP BLKSIZE option (must be >512). This is the block\n"
48314896 " size that curl will try to use when transferring data to or from\n"
48324897 " a TFTP server. By default 512 bytes will be used.\n"
48374902 " curl --tftp-blksize 1024 tftp://example.com/file\n"
48384903 "\n"
48394904 " See also --tftp-no-options.\n"
4840 , stdout);
4841 fputs(
48424905 "\n"
48434906 " --tftp-no-options\n"
4907 , stdout);
4908 fputs(
48444909 " (TFTP) Tells curl not to send TFTP options requests.\n"
48454910 "\n"
48464911 " This option improves interop with some legacy servers that do\n"
50495114 " See also --http1.1 and --http2. -1, --tlsv1 requires that the\n"
50505115 , stdout);
50515116 fputs(
5052 " underlying libcurl was built to support TLS. This option over-\n"
5053 " rides --tlsv1.1 and --tlsv1.2 and --tlsv1.3.\n"
5117 " underlying libcurl was built to support TLS. This option is mu-\n"
5118 " tually exclusive to --tlsv1.1 and --tlsv1.2 and --tlsv1.3.\n"
50545119 "\n"
50555120 " --tr-encoding\n"
50565121 " (HTTP) Request a compressed Transfer-Encoding response using one\n"
50625127 "\n"
50635128 " See also --compressed.\n"
50645129 "\n"
5130 , stdout);
5131 fputs(
50655132 " --trace-ascii <file>\n"
5066 , stdout);
5067 fputs(
50685133 " Enables a full trace dump of all incoming and outgoing data, in-\n"
50695134 " cluding descriptive information, to the given output file. Use\n"
50705135 " \"-\" as filename to have the output sent to stdout.\n"
50835148 " Example:\n"
50845149 " curl --trace-ascii log.txt https://example.com\n"
50855150 "\n"
5086 " See also -v, --verbose and --trace. This option overrides\n"
5087 " --trace and -v, --verbose.\n"
5151 " See also -v, --verbose and --trace. This option is mutually ex-\n"
5152 " clusive to --trace and -v, --verbose.\n"
50885153 "\n"
50895154 " --trace-time\n"
5155 , stdout);
5156 fputs(
50905157 " Prepends a time stamp to each trace or verbose line that curl\n"
5091 , stdout);
5092 fputs(
50935158 " displays.\n"
50945159 "\n"
50955160 " This option is global and does not need to be specified for each\n"
51025167 "\n"
51035168 " --trace <file>\n"
51045169 " Enables a full trace dump of all incoming and outgoing data, in-\n"
5170 , stdout);
5171 fputs(
51055172 " cluding descriptive information, to the given output file. Use\n"
5106 , stdout);
5107 fputs(
51085173 " \"-\" as filename to have the output sent to stdout. Use \"%\" as\n"
51095174 " filename to have the output sent to stderr.\n"
51105175 "\n"
51165181 " Example:\n"
51175182 " curl --trace log.txt https://example.com\n"
51185183 "\n"
5119 " See also --trace-ascii and --trace-time. This option overrides\n"
5120 , stdout);
5121 fputs(
5122 " -v, --verbose and --trace-ascii.\n"
5184 , stdout);
5185 fputs(
5186 " See also --trace-ascii and --trace-time. This option is mutually\n"
5187 " exclusive to -v, --verbose and --trace-ascii.\n"
51235188 "\n"
51245189 " --unix-socket <path>\n"
51255190 " (HTTP) Connect through this Unix domain socket, instead of using\n"
51315196 " See also --abstract-unix-socket. Added in 7.40.0.\n"
51325197 "\n"
51335198 " -T, --upload-file <file>\n"
5199 , stdout);
5200 fputs(
51345201 " This transfers the specified local file to the remote URL. If\n"
5135 , stdout);
5136 fputs(
51375202 " there is no file part in the specified URL, curl will append the\n"
51385203 " local file name. NOTE that you must use a trailing / on the last\n"
51395204 " directory to really prove to Curl that there is no file name or\n"
51405205 " curl will think that your last directory name is the remote file\n"
51415206 " name to use. That will most likely cause the upload operation to\n"
5207 , stdout);
5208 fputs(
51425209 " fail. If this is used on an HTTP(S) server, the PUT command will\n"
51435210 " be used.\n"
51445211 "\n"
5145 , stdout);
5146 fputs(
51475212 " Use the file name \"-\" (a single dash) to use stdin instead of a\n"
51485213 " given file. Alternately, the file name \".\" (a single period)\n"
51495214 " may be specified instead of \"-\" to use stdin in non-blocking\n"
51505215 " mode to allow reading server output while stdin is being up-\n"
51515216 " loaded.\n"
51525217 "\n"
5218 , stdout);
5219 fputs(
51535220 " You can specify one --upload-file for each URL on the command\n"
51545221 " line. Each -T, --upload-file + URL pair specifies what to upload\n"
5155 , stdout);
5156 fputs(
51575222 " and to where. curl also supports \"globbing\" of the --upload-file\n"
51585223 " argument, meaning that you can upload multiple files to a single\n"
51595224 " URL by using the same URL globbing style supported in the URL.\n"
51605225 "\n"
51615226 " When uploading to an SMTP server: the uploaded data is assumed\n"
5227 , stdout);
5228 fputs(
51625229 " to be RFC 5322 formatted. It has to feature the necessary set of\n"
51635230 " headers and mail body formatted correctly by the user as curl\n"
5164 , stdout);
5165 fputs(
51665231 " will not transcode nor encode it further in any way.\n"
51675232 "\n"
51685233 " Examples:\n"
51725237 "\n"
51735238 " See also -G, --get and -I, --head.\n"
51745239 "\n"
5240 , stdout);
5241 fputs(
51755242 " --url <url>\n"
51765243 " Specify a URL to fetch. This option is mostly handy when you\n"
51775244 " want to specify URL(s) in a config file.\n"
51785245 "\n"
5179 , stdout);
5180 fputs(
51815246 " If the given URL is missing a scheme name (such as \"http://\" or\n"
51825247 " \"ftp://\" etc) then curl will make a guess based on the host. If\n"
51835248 " the outermost sub-domain name matches DICT, FTP, IMAP, LDAP,\n"
51845249 " POP3 or SMTP then that protocol will be used, otherwise HTTP\n"
5250 , stdout);
5251 fputs(
51855252 " will be used. Since 7.45.0 guessing can be disabled by setting a\n"
51865253 " default protocol, see --proto-default for details.\n"
51875254 "\n"
5188 , stdout);
5189 fputs(
51905255 " This option may be used any number of times. To control where\n"
51915256 " this URL is written, use the --output or the --remote-name op-\n"
51925257 " tions.\n"
51945259 " WARNING: On Windows, particular file:// accesses can be con-\n"
51955260 " verted to network accesses by the operating system. Beware!\n"
51965261 "\n"
5262 , stdout);
5263 fputs(
51975264 " Example:\n"
51985265 " curl --url https://example.com\n"
51995266 "\n"
52005267 " See also -:, --next and -K, --config.\n"
52015268 "\n"
52025269 " -B, --use-ascii\n"
5203 , stdout);
5204 fputs(
52055270 " (FTP LDAP) Enable ASCII transfer. For FTP, this can also be en-\n"
52065271 " forced by using a URL that ends with \";type=A\". This option\n"
52075272 " causes data sent to stdout to be in text mode for win32 systems.\n"
52095274 " Example:\n"
52105275 " curl -B ftp://example.com/README\n"
52115276 "\n"
5277 , stdout);
5278 fputs(
52125279 " See also --crlf and --data-ascii.\n"
52135280 "\n"
52145281 " -A, --user-agent <name>\n"
52155282 " (HTTP) Specify the User-Agent string to send to the HTTP server.\n"
5216 , stdout);
5217 fputs(
52185283 " To encode blanks in the string, surround the string with single\n"
52195284 " quote marks. This header can also be set with the --header or\n"
52205285 " the --proxy-header options.\n"
52215286 "\n"
52225287 " If you give an empty argument to -A, --user-agent (\"\"), it will\n"
5288 , stdout);
5289 fputs(
52235290 " remove the header completely from the request. If you prefer a\n"
52245291 " blank header, you can set it to a single space (\" \").\n"
52255292 "\n"
5226 , stdout);
5227 fputs(
52285293 " If this option is used several times, the last one will be used.\n"
52295294 "\n"
52305295 " Example:\n"
52345299 "\n"
52355300 " -u, --user <user:password>\n"
52365301 " Specify the user name and password to use for server authentica-\n"
5302 , stdout);
5303 fputs(
52375304 " tion. Overrides --netrc and --netrc-optional.\n"
52385305 "\n"
52395306 " If you simply specify the user name, curl will prompt for a\n"
52405307 " password.\n"
52415308 "\n"
5242 , stdout);
5243 fputs(
52445309 " The user name and passwords are split up on the first colon,\n"
52455310 " which makes it impossible to use a colon in the user name with\n"
52465311 " this option. The password can, still.\n"
52475312 "\n"
52485313 " On systems where it works, curl will hide the given option argu-\n"
5314 , stdout);
5315 fputs(
52495316 " ment from process listings. This is not enough to protect cre-\n"
52505317 " dentials from possibly getting seen by other users on the same\n"
5251 , stdout);
5252 fputs(
52535318 " system as they will still be visible for a moment before\n"
52545319 " cleared. Such sensitive data should be retrieved from a file in-\n"
52555320 " stead or similar and never used in clear text in a command line.\n"
52565321 " When using Kerberos V5 with a Windows based server you should\n"
5322 , stdout);
5323 fputs(
52575324 " include the Windows domain name in the user name, in order for\n"
52585325 " the server to successfully obtain a Kerberos Ticket. If you do\n"
5259 , stdout);
5260 fputs(
52615326 " not, then the initial authentication handshake may fail.\n"
52625327 "\n"
52635328 " When using NTLM, the user name can be specified simply as the\n"
52645329 " user name, without the domain, if there is a single domain and\n"
52655330 " forest in your setup for example.\n"
52665331 "\n"
5332 , stdout);
5333 fputs(
52675334 " To specify the domain name use either Down-Level Logon Name or\n"
52685335 " UPN (User Principal Name) formats. For example, EXAMPLE\\user and\n"
52695336 " user@example.com respectively.\n"
52705337 "\n"
5271 , stdout);
5272 fputs(
52735338 " If you use a Windows SSPI-enabled curl binary and perform Ker-\n"
52745339 " beros V5, Negotiate, NTLM or Digest authentication then you can\n"
52755340 " tell curl to select the user name and password from your envi-\n"
5341 , stdout);
5342 fputs(
52765343 " ronment by specifying a single colon with this option: \"-u :\".\n"
52775344 "\n"
52785345 " If this option is used several times, the last one will be used.\n"
52805347 " Example:\n"
52815348 " curl -u user:secret https://example.com\n"
52825349 "\n"
5283 , stdout);
5284 fputs(
52855350 " See also -n, --netrc and -K, --config.\n"
52865351 "\n"
52875352 " -v, --verbose\n"
52885353 " Makes curl verbose during the operation. Useful for debugging\n"
52895354 " and seeing what's going on \"under the hood\". A line starting\n"
5355 , stdout);
5356 fputs(
52905357 " with '>' means \"header data\" sent by curl, '<' means \"header\n"
52915358 " data\" received by curl that is hidden in normal cases, and a\n"
52925359 " line starting with '*' means additional info provided by curl.\n"
52935360 "\n"
5294 , stdout);
5295 fputs(
52965361 " If you only want HTTP headers in the output, --include might be\n"
52975362 " the option you are looking for.\n"
52985363 "\n"
52995364 " If you think this option still does not give you enough details,\n"
5365 , stdout);
5366 fputs(
53005367 " consider using --trace or --trace-ascii instead.\n"
53015368 "\n"
53025369 " This option is global and does not need to be specified for each\n"
53055372 " Use --silent to make curl really quiet.\n"
53065373 "\n"
53075374 " Example:\n"
5308 , stdout);
5309 fputs(
53105375 " curl --verbose https://example.com\n"
53115376 "\n"
5312 " See also -i, --include. This option overrides --trace and\n"
5313 " --trace-ascii.\n"
5377 " See also -i, --include. This option is mutually exclusive to\n"
5378 " --trace and --trace-ascii.\n"
53145379 "\n"
53155380 " -V, --version\n"
5381 , stdout);
5382 fputs(
53165383 " Displays information about curl and the libcurl version it uses.\n"
53175384 " The first line includes the full version of curl, libcurl and\n"
53185385 " other 3rd party libraries linked with the executable.\n"
53195386 "\n"
53205387 " The second line (starts with \"Protocols:\") shows all protocols\n"
5321 , stdout);
5322 fputs(
53235388 " that libcurl reports to support.\n"
53245389 "\n"
53255390 " The third line (starts with \"Features:\") shows specific features\n"
5391 , stdout);
5392 fputs(
53265393 " libcurl reports to offer. Available features include:\n"
53275394 "\n"
53285395 " alt-svc\n"
53315398 " AsynchDNS\n"
53325399 " This curl uses asynchronous name resolves. Asynchronous\n"
53335400 " name resolves can be done using either the c-ares or the\n"
5334 , stdout);
5335 fputs(
53365401 " threaded resolver backends.\n"
53375402 "\n"
53385403 " brotli Support for automatic brotli compression over HTTP(S).\n"
53395404 "\n"
53405405 " CharConv\n"
5406 , stdout);
5407 fputs(
53415408 " curl was built with support for character set conversions\n"
53425409 " (like EBCDIC)\n"
53435410 "\n"
53455412 " more error-tracking and memory debugging etc. For curl-\n"
53465413 " developers only!\n"
53475414 "\n"
5348 , stdout);
5349 fputs(
53505415 " gsasl The built-in SASL authentication includes extensions to\n"
53515416 " support SCRAM because libcurl was built with libgsasl.\n"
53525417 "\n"
53535418 " GSS-API\n"
5419 , stdout);
5420 fputs(
53545421 " GSS-API is supported.\n"
53555422 "\n"
53565423 " HSTS HSTS support is present.\n"
53615428 " HTTPS-proxy\n"
53625429 " This curl is built to support HTTPS proxy.\n"
53635430 "\n"
5364 , stdout);
5365 fputs(
53665431 " IDN This curl supports IDN - international domain names.\n"
53675432 "\n"
53685433 " IPv6 You can use IPv6 with this.\n"
53695434 "\n"
53705435 " Kerberos\n"
5436 , stdout);
5437 fputs(
53715438 " Kerberos V5 authentication is supported.\n"
53725439 "\n"
53735440 " Largefile\n"
53785445 " files over HTTP is supported.\n"
53795446 "\n"
53805447 " MultiSSL\n"
5381 , stdout);
5382 fputs(
53835448 " This curl supports multiple TLS backends.\n"
53845449 "\n"
53855450 " NTLM NTLM authentication is supported.\n"
53865451 "\n"
53875452 " NTLM_WB\n"
5453 , stdout);
5454 fputs(
53885455 " NTLM delegation to winbind helper is supported.\n"
53895456 "\n"
53905457 " PSL PSL is short for Public Suffix List and means that this\n"
53935460 "\n"
53945461 " SPNEGO SPNEGO authentication is supported.\n"
53955462 "\n"
5396 , stdout);
5397 fputs(
53985463 " SSL SSL versions of various protocols are supported, such as\n"
53995464 " HTTPS, FTPS, POP3S and so on.\n"
54005465 "\n"
54015466 " SSPI SSPI is supported.\n"
54025467 "\n"
5468 , stdout);
5469 fputs(
54035470 " TLS-SRP\n"
54045471 " SRP (Secure Remote Password) authentication is supported\n"
54055472 " for TLS.\n"
54115478 " Unicode support on Windows.\n"
54125479 "\n"
54135480 " UnixSockets\n"
5414 , stdout);
5415 fputs(
54165481 " Unix sockets support is provided.\n"
54175482 "\n"
54185483 " zstd Automatic decompression (via zstd) of compressed files\n"
54195484 " over HTTP is supported.\n"
54205485 "\n"
5486 , stdout);
5487 fputs(
54215488 " Example:\n"
54225489 " curl --version\n"
54235490 "\n"
54265493 " -w, --write-out <format>\n"
54275494 " Make curl display information on stdout after a completed trans-\n"
54285495 " fer. The format is a string that may contain plain text mixed\n"
5429 , stdout);
5430 fputs(
54315496 " with any number of variables. The format can be specified as a\n"
54325497 " literal \"string\", or you can have curl read the format from a\n"
5498 , stdout);
5499 fputs(
54335500 " file with \"@filename\" and to tell curl to read the format from\n"
54345501 " stdin you write \"@-\".\n"
54355502 "\n"
54365503 " The variables present in the output format will be substituted\n"
54375504 " by the value or text that curl thinks fit, as described below.\n"
5438 , stdout);
5439 fputs(
54405505 " All variables are specified as %{variable_name} and to output a\n"
54415506 " normal % you just write them as %%. You can output a newline by\n"
5507 , stdout);
5508 fputs(
54425509 " using \\n, a carriage return with \\r and a tab space with \\t.\n"
54435510 "\n"
54445511 " The output will be written to standard output, but this can be\n"
54455512 " switched to standard error by using %{stderr}.\n"
54465513 "\n"
5514 " EXPERIMENTAL feature: Output HTTP headers from the most recent\n"
5515 " request by using %header{name} where name is the case insensi-\n"
5516 " tive name of the header (without the trailing colon). The header\n"
5517 , stdout);
5518 fputs(
5519 " contents are exactly as sent over the network, with leading and\n"
5520 " trailing whitespace trimmed. Added in curl 7.83.0.\n"
5521 "\n"
54475522 " NOTE: The %-symbol is a special symbol in the win32-environment,\n"
5448 , stdout);
5449 fputs(
54505523 " where all occurrences of % must be doubled when using this op-\n"
54515524 " tion.\n"
54525525 "\n"
54555528 " content_type The Content-Type of the requested document, if\n"
54565529 " there was any.\n"
54575530 "\n"
5531 , stdout);
5532 fputs(
54585533 " errormsg The error message. (Added in 7.75.0)\n"
54595534 "\n"
54605535 " exitcode The numerical exitcode of the transfer. (Added in\n"
54615536 " 7.75.0)\n"
54625537 "\n"
54635538 " filename_effective\n"
5464 , stdout);
5465 fputs(
54665539 " The ultimate filename that curl writes out to.\n"
54675540 " This is only meaningful if curl is told to write\n"
54685541 " to a file with the --remote-name or --output op-\n"
5542 , stdout);
5543 fputs(
54695544 " tion. It's most useful in combination with the\n"
54705545 " --remote-header-name option.\n"
54715546 "\n"
54725547 " ftp_entry_path The initial path curl ended up in when logging on\n"
5473 , stdout);
5474 fputs(
54755548 " to the remote FTP server.\n"
5549 "\n"
5550 " header_json EXPERIMENTAL feature.\n"
5551 "\n"
5552 " A JSON object with all HTTP response headers from\n"
5553 " the recent transfer. Values are provided as ar-\n"
5554 , stdout);
5555 fputs(
5556 " rays, since in the case of multiple headers there\n"
5557 " can be multiple values.\n"
5558 "\n"
5559 " The header names provided in lowercase, listed in\n"
5560 " order of appearance over the wire. Except for du-\n"
5561 " plicated headers. They are grouped on the first\n"
5562 " occurrence of that header, each value is pre-\n"
5563 , stdout);
5564 fputs(
5565 " sented in the JSON array.\n"
54765566 "\n"
54775567 " http_code The numerical response code that was found in the\n"
54785568 " last retrieved HTTP(S) or FTP(s) transfer.\n"
54875577 fputs(
54885578 " json A JSON object with all available keys.\n"
54895579 "\n"
5490 " local_ip The IP address of the local end of the most re-\n"
5491 " cently done connection - can be either IPv4 or\n"
5580 " local_ip The IP address of the local end of the most re-\n"
5581 " cently done connection - can be either IPv4 or\n"
54925582 " IPv6.\n"
54935583 "\n"
5494 " local_port The local port number of the most recently done\n"
5584 " local_port The local port number of the most recently done\n"
54955585 " connection.\n"
54965586 "\n"
5497 " method The http method used in the most recent HTTP re-\n"
5587 " method The http method used in the most recent HTTP re-\n"
54985588 , stdout);
54995589 fputs(
55005590 " quest. (Added in 7.72.0)\n"
55015591 "\n"
5502 " num_connects Number of new connects made in the recent trans-\n"
5592 " num_connects Number of new connects made in the recent trans-\n"
55035593 " fer.\n"
55045594 "\n"
55055595 " num_headers The number of response headers in the most recent\n"
5506 " request (restarted at each redirect). Note that\n"
5507 " the status line IS NOT a header. (Added in\n"
5596 " request (restarted at each redirect). Note that\n"
5597 " the status line IS NOT a header. (Added in\n"
55085598 " 7.73.0)\n"
55095599 "\n"
55105600 , stdout);
55125602 " num_redirects Number of redirects that were followed in the re-\n"
55135603 " quest.\n"
55145604 "\n"
5515 " onerror The rest of the output is only shown if the\n"
5516 " transfer returned a non-zero error (Added in\n"
5605 " onerror The rest of the output is only shown if the\n"
5606 " transfer returned a non-zero error (Added in\n"
55175607 " 7.75.0)\n"
55185608 "\n"
55195609 " proxy_ssl_verify_result\n"
55235613 " cate verification that was requested. 0 means the\n"
55245614 " verification was successful. (Added in 7.52.0)\n"
55255615 "\n"
5526 " redirect_url When an HTTP request was made without --location\n"
5527 " to follow redirects (or when --max-redirs is\n"
5528 " met), this variable will show the actual URL a\n"
5616 " redirect_url When an HTTP request was made without --location\n"
5617 " to follow redirects (or when --max-redirs is\n"
5618 " met), this variable will show the actual URL a\n"
55295619 " redirect would have gone to.\n"
55305620 "\n"
55315621 , stdout);
55325622 fputs(
5533 " referer The Referer: header, if there was any. (Added in\n"
5623 " referer The Referer: header, if there was any. (Added in\n"
55345624 " 7.76.0)\n"
55355625 "\n"
5536 " remote_ip The remote IP address of the most recently done\n"
5626 " remote_ip The remote IP address of the most recently done\n"
55375627 " connection - can be either IPv4 or IPv6.\n"
55385628 "\n"
5539 " remote_port The remote port number of the most recently done\n"
5629 " remote_port The remote port number of the most recently done\n"
55405630 " connection.\n"
55415631 "\n"
55425632 " response_code The numerical response code that was found in the\n"
55445634 fputs(
55455635 " last transfer (formerly known as \"http_code\").\n"
55465636 "\n"
5547 " scheme The URL scheme (sometimes called protocol) that\n"
5637 " scheme The URL scheme (sometimes called protocol) that\n"
55485638 " was effectively used. (Added in 7.52.0)\n"
55495639 "\n"
5550 " size_download The total amount of bytes that were downloaded.\n"
5640 " size_download The total amount of bytes that were downloaded.\n"
55515641 " This is the size of the body/data that was trans-\n"
55525642 " ferred, excluding headers.\n"
55535643 "\n"
55565646 " size_header The total amount of bytes of the downloaded head-\n"
55575647 " ers.\n"
55585648 "\n"
5559 " size_request The total amount of bytes that were sent in the\n"
5649 " size_request The total amount of bytes that were sent in the\n"
55605650 " HTTP request.\n"
55615651 "\n"
5562 " size_upload The total amount of bytes that were uploaded.\n"
5652 " size_upload The total amount of bytes that were uploaded.\n"
55635653 " This is the size of the body/data that was trans-\n"
55645654 " ferred, excluding headers.\n"
55655655 "\n"
55685658 " speed_download The average download speed that curl measured for\n"
55695659 " the complete download. Bytes per second.\n"
55705660 "\n"
5571 " speed_upload The average upload speed that curl measured for\n"
5661 " speed_upload The average upload speed that curl measured for\n"
55725662 " the complete upload. Bytes per second.\n"
55735663 "\n"
55745664 " ssl_verify_result\n"
5575 " The result of the SSL peer certificate verifica-\n"
5665 " The result of the SSL peer certificate verifica-\n"
55765666 " tion that was requested. 0 means the verification\n"
55775667 , stdout);
55785668 fputs(
55795669 " was successful.\n"
55805670 "\n"
5581 " stderr From this point on, the --write-out output will\n"
5671 " stderr From this point on, the --write-out output will\n"
55825672 " be written to standard error. (Added in 7.63.0)\n"
55835673 "\n"
5584 " stdout From this point on, the --write-out output will\n"
5585 " be written to standard output. This is the de-\n"
5586 " fault, but can be used to switch back after\n"
5674 " stdout From this point on, the --write-out output will\n"
5675 " be written to standard output. This is the de-\n"
5676 " fault, but can be used to switch back after\n"
55875677 , stdout);
55885678 fputs(
55895679 " switching to stderr. (Added in 7.63.0)\n"
55905680 "\n"
55915681 " time_appconnect\n"
5682 " The time, in seconds, it took from the start un-\n"
5683 " til the SSL/SSH/etc connect/handshake to the re-\n"
5684 " mote host was completed.\n"
5685 "\n"
5686 " time_connect The time, in seconds, it took from the start un-\n"
5687 " til the TCP connect to the remote host (or proxy)\n"
5688 , stdout);
5689 fputs(
5690 " was completed.\n"
5691 "\n"
5692 " time_namelookup\n"
5693 " The time, in seconds, it took from the start un-\n"
5694 " til the name resolving was completed.\n"
5695 "\n"
5696 " time_pretransfer\n"
55925697 " The time, in seconds, it took from the start un-\n"
5593 " til the SSL/SSH/etc connect/handshake to the re-\n"
5594 " mote host was completed.\n"
5595 "\n"
5596 " time_connect The time, in seconds, it took from the start un-\n"
5597 " til the TCP connect to the remote host (or proxy)\n"
5598 , stdout);
5599 fputs(
5600 " was completed.\n"
5601 "\n"
5602 " time_namelookup\n"
5603 " The time, in seconds, it took from the start un-\n"
5604 " til the name resolving was completed.\n"
5605 "\n"
5606 " time_pretransfer\n"
5607 " The time, in seconds, it took from the start un-\n"
5608 " til the file transfer was just about to begin.\n"
5698 " til the file transfer was just about to begin.\n"
56095699 " This includes all pre-transfer commands and nego-\n"
56105700 , stdout);
56115701 fputs(
56145704 "\n"
56155705 " time_redirect The time, in seconds, it took for all redirection\n"
56165706 " steps including name lookup, connect, pretransfer\n"
5617 " and transfer before the final transaction was\n"
5618 " started. time_redirect shows the complete execu-\n"
5707 " and transfer before the final transaction was\n"
5708 " started. time_redirect shows the complete execu-\n"
56195709 , stdout);
56205710 fputs(
56215711 " tion time for multiple redirections.\n"
56225712 "\n"
56235713 " time_starttransfer\n"
5624 " The time, in seconds, it took from the start un-\n"
5625 " til the first byte was just about to be trans-\n"
5626 " ferred. This includes time_pretransfer and also\n"
5627 " the time the server needed to calculate the re-\n"
5714 " The time, in seconds, it took from the start un-\n"
5715 " til the first byte was just about to be trans-\n"
5716 " ferred. This includes time_pretransfer and also\n"
5717 " the time the server needed to calculate the re-\n"
56285718 " sult.\n"
56295719 "\n"
56305720 , stdout);
56315721 fputs(
5632 " time_total The total time, in seconds, that the full opera-\n"
5722 " time_total The total time, in seconds, that the full opera-\n"
56335723 " tion lasted.\n"
56345724 "\n"
56355725 " url The URL that was fetched. (Added in 7.75.0)\n"
56365726 "\n"
56375727 " urlnum The URL index number of this transfer, 0-indexed.\n"
5638 " De-globbed URLs share the same index number as\n"
5728 " De-globbed URLs share the same index number as\n"
56395729 " the origin globbed URL. (Added in 7.75.0)\n"
56405730 "\n"
56415731 , stdout);
56425732 fputs(
56435733 " url_effective The URL that was fetched last. This is most mean-\n"
5644 " ingful if you have told curl to follow location:\n"
5734 " ingful if you have told curl to follow location:\n"
56455735 " headers.\n"
56465736 "\n"
56475737 " If this option is used several times, the last one will be used.\n"
56545744 " --xattr\n"
56555745 , stdout);
56565746 fputs(
5657 " When saving output to a file, this option tells curl to store\n"
5658 " certain file metadata in extended file attributes. Currently,\n"
5747 " When saving output to a file, this option tells curl to store\n"
5748 " certain file metadata in extended file attributes. Currently,\n"
56595749 " the URL is stored in the xdg.origin.url attribute and, for HTTP,\n"
5660 " the content type is stored in the mime_type attribute. If the\n"
5661 " file system does not support extended attributes, a warning is\n"
5750 " the content type is stored in the mime_type attribute. If the\n"
5751 " file system does not support extended attributes, a warning is\n"
56625752 " issued.\n"
56635753 "\n"
56645754 " Example:\n"
56775767 " The lower case version has precedence. http_proxy is an exception as it\n"
56785768 " is only available in lower case.\n"
56795769 "\n"
5680 " Using an environment variable to set the proxy has the same effect as\n"
5770 " Using an environment variable to set the proxy has the same effect as\n"
56815771 " using the --proxy option.\n"
56825772 "\n"
56835773 , stdout);
56885778 " Sets the proxy server to use for HTTPS.\n"
56895779 "\n"
56905780 " [url-protocol]_PROXY [protocol://]<host>[:port]\n"
5691 " Sets the proxy server to use for [url-protocol], where the pro-\n"
5692 " tocol is a protocol that curl supports and as specified in a\n"
5781 " Sets the proxy server to use for [url-protocol], where the pro-\n"
5782 " tocol is a protocol that curl supports and as specified in a\n"
56935783 " URL. FTP, FTPS, POP3, IMAP, SMTP, LDAP, etc.\n"
56945784 "\n"
56955785 , stdout);
56965786 fputs(
56975787 " ALL_PROXY [protocol://]<host>[:port]\n"
5698 " Sets the proxy server to use if no protocol-specific proxy is\n"
5788 " Sets the proxy server to use if no protocol-specific proxy is\n"
56995789 " set.\n"
57005790 "\n"
57015791 " NO_PROXY <comma-separated list of hosts/domains>\n"
5702 " list of host names that should not go through any proxy. If set\n"
5792 " list of host names that should not go through any proxy. If set\n"
57035793 " to an asterisk '*' only, it matches all hosts. Each name in this\n"
57045794 " list is matched as either a domain name which contains the host-\n"
57055795 " name, or the hostname itself.\n"
57065796 "\n"
57075797 , stdout);
57085798 fputs(
5709 " This environment variable disables use of the proxy even when\n"
5799 " This environment variable disables use of the proxy even when\n"
57105800 " specified with the --proxy option. That is NO_PROXY=direct.exam-\n"
57115801 " ple.com curl -x http://proxy.example.com http://direct.exam-\n"
5712 " ple.com accesses the target URL directly, and NO_PROXY=di-\n"
5713 " rect.example.com curl -x http://proxy.example.com http://some-\n"
5802 " ple.com accesses the target URL directly, and NO_PROXY=di-\n"
5803 " rect.example.com curl -x http://proxy.example.com http://some-\n"
57145804 " where.example.com accesses the target URL through the proxy.\n"
57155805 "\n"
57165806 , stdout);
57175807 fputs(
5718 " The list of host names can also be include numerical IP ad-\n"
5719 " dresses, and IPv6 versions should then be given without enclos-\n"
5808 " The list of host names can also be include numerical IP ad-\n"
5809 " dresses, and IPv6 versions should then be given without enclos-\n"
57205810 " ing brackets.\n"
57215811 "\n"
5722 " IPv6 numerical addresses are compared as strings, so they will\n"
5723 " only match if the representations are the same: \"::1\" is the\n"
5812 " IPv6 numerical addresses are compared as strings, so they will\n"
5813 " only match if the representations are the same: \"::1\" is the\n"
57245814 " same as \"::0:1\" but they do not match.\n"
57255815 "\n"
57265816 " APPDATA <dir>\n"
5727 " On Windows, this variable is used when trying to find the home\n"
5817 " On Windows, this variable is used when trying to find the home\n"
57285818 , stdout);
57295819 fputs(
57305820 " directory. If the primary home variable are all unset.\n"
57315821 "\n"
57325822 " COLUMNS <terminal width>\n"
5733 " If set, the specified number of characters will be used as the\n"
5734 " terminal width when the alternative progress-bar is shown. If\n"
5823 " If set, the specified number of characters will be used as the\n"
5824 " terminal width when the alternative progress-bar is shown. If\n"
57355825 " not set, curl will try to figure it out using other ways.\n"
57365826 "\n"
57375827 " CURL_CA_BUNDLE <file>\n"
57405830 " CURL_HOME <dir>\n"
57415831 , stdout);
57425832 fputs(
5743 " If set, is the first variable curl checks when trying to find\n"
5744 " its home directory. If not set, it continues to check XDG_CON-\n"
5833 " If set, is the first variable curl checks when trying to find\n"
5834 " its home directory. If not set, it continues to check XDG_CON-\n"
57455835 " FIG_HOME.\n"
57465836 "\n"
57475837 " CURL_SSL_BACKEND <TLS backend>\n"
5748 " If curl was built with support for \"MultiSSL\", meaning that it\n"
5749 " has built-in support for more than one TLS backend, this envi-\n"
5750 " ronment variable can be set to the case insensitive name of the\n"
5751 , stdout);
5752 fputs(
5753 " particular backend to use when curl is invoked. Setting a name\n"
5754 " that is not a built-in alternative will make curl stay with the\n"
5838 " If curl was built with support for \"MultiSSL\", meaning that it\n"
5839 " has built-in support for more than one TLS backend, this envi-\n"
5840 " ronment variable can be set to the case insensitive name of the\n"
5841 , stdout);
5842 fputs(
5843 " particular backend to use when curl is invoked. Setting a name\n"
5844 " that is not a built-in alternative will make curl stay with the\n"
57555845 " default.\n"
57565846 "\n"
5757 " SSL backend names (case-insensitive): bearssl, gnutls, gskit,\n"
5847 " SSL backend names (case-insensitive): bearssl, gnutls, gskit,\n"
57585848 " mbedtls, nss, openssl, rustls, schannel, secure-transport, wolf-\n"
57595849 " ssl\n"
57605850 "\n"
57615851 " HOME <dir>\n"
5762 " If set, this is used to find the home directory when that is\n"
5852 " If set, this is used to find the home directory when that is\n"
57635853 , stdout);
57645854 fputs(
57655855 " needed. Like when looking for the default .curlrc. CURL_HOME and\n"
57665856 " XDG_CONFIG_HOME have preference.\n"
57675857 "\n"
57685858 " QLOGDIR <directory name>\n"
5769 " If curl was built with HTTP/3 support, setting this environment\n"
5770 " variable to a local directory will make curl produce qlogs in\n"
5771 " that directory, using file names named after the destination\n"
5772 " connection id (in hex). Do note that these files can become\n"
5859 " If curl was built with HTTP/3 support, setting this environment\n"
5860 " variable to a local directory will make curl produce qlogs in\n"
5861 " that directory, using file names named after the destination\n"
5862 " connection id (in hex). Do note that these files can become\n"
57735863 , stdout);
57745864 fputs(
57755865 " rather large. Works with both QUIC backends.\n"
57765866 "\n"
5777 " SHELL Used on VMS when trying to detect if using a DCL or a \"unix\"\n"
5867 " SHELL Used on VMS when trying to detect if using a DCL or a \"unix\"\n"
57785868 " shell.\n"
57795869 "\n"
57805870 " SSL_CERT_DIR <dir>\n"
57845874 " If set, will be used as the --cacert value.\n"
57855875 "\n"
57865876 " SSLKEYLOGFILE <file name>\n"
5787 " If you set this environment variable to a file name, curl will\n"
5877 " If you set this environment variable to a file name, curl will\n"
57885878 , stdout);
57895879 fputs(
57905880 " store TLS secrets from its connections in that file when invoked\n"
57915881 " to enable you to analyze the TLS traffic in real time using net-\n"
57925882 " work analyzing tools such as Wireshark. This works with the fol-\n"
5793 " lowing TLS backends: OpenSSL, libressl, BoringSSL, GnuTLS, NSS\n"
5883 " lowing TLS backends: OpenSSL, libressl, BoringSSL, GnuTLS, NSS\n"
57945884 " and wolfSSL.\n"
57955885 "\n"
57965886 " USERPROFILE <dir>\n"
5797 " On Windows, this variable is used when trying to find the home\n"
5798 , stdout);
5799 fputs(
5800 " directory. If the other, primary, variable are all unset. If\n"
5887 " On Windows, this variable is used when trying to find the home\n"
5888 , stdout);
5889 fputs(
5890 " directory. If the other, primary, variable are all unset. If\n"
58015891 " set, curl will use the path \"$USERPROFILE\\Application Data\".\n"
58025892 "\n"
58035893 " XDG_CONFIG_HOME <dir>\n"
5804 " If CURL_HOME is not set, this variable is checked when looking\n"
5894 " If CURL_HOME is not set, this variable is checked when looking\n"
58055895 " for a default .curlrc file.\n"
58065896 "\n"
58075897 "PROXY PROTOCOL PREFIXES\n"
5808 " The proxy string may be specified with a protocol:// prefix to specify\n"
5898 " The proxy string may be specified with a protocol:// prefix to specify\n"
58095899 " alternative proxy protocols.\n"
58105900 "\n"
58115901 , stdout);
58125902 fputs(
5813 " If no protocol is specified in the proxy string or if the string does\n"
5903 " If no protocol is specified in the proxy string or if the string does\n"
58145904 " not match a supported one, the proxy will be treated as an HTTP proxy.\n"
58155905 "\n"
58165906 " The supported proxy protocol prefixes are as follows:\n"
58175907 "\n"
58185908 " http://\n"
5819 " Makes it use it as an HTTP proxy. The default if no scheme pre-\n"
5909 " Makes it use it as an HTTP proxy. The default if no scheme pre-\n"
58205910 " fix is used.\n"
58215911 "\n"
58225912 " https://\n"
58375927 " Makes it the equivalent of --socks5-hostname\n"
58385928 "\n"
58395929 "EXIT CODES\n"
5840 " There are a bunch of different error codes and their corresponding er-\n"
5841 " ror messages that may appear under error conditions. At the time of\n"
5930 " There are a bunch of different error codes and their corresponding er-\n"
5931 " ror messages that may appear under error conditions. At the time of\n"
58425932 " this writing, the exit codes are:\n"
58435933 "\n"
58445934 " 1 Unsupported protocol. This build of curl has no support for this\n"
58505940 "\n"
58515941 " 3 URL malformed. The syntax was not correct.\n"
58525942 "\n"
5853 " 4 A feature or option that was needed to perform the desired re-\n"
5854 " quest was not enabled or was explicitly disabled at build-time.\n"
5943 " 4 A feature or option that was needed to perform the desired re-\n"
5944 " quest was not enabled or was explicitly disabled at build-time.\n"
58555945 " To make curl able to do this, you probably need another build of\n"
58565946 " libcurl.\n"
58575947 "\n"
5858 " 5 Could not resolve proxy. The given proxy host could not be re-\n"
5948 " 5 Could not resolve proxy. The given proxy host could not be re-\n"
58595949 " solved.\n"
58605950 "\n"
58615951 , stdout);
58625952 fputs(
5863 " 6 Could not resolve host. The given remote host could not be re-\n"
5953 " 6 Could not resolve host. The given remote host could not be re-\n"
58645954 " solved.\n"
58655955 "\n"
58665956 " 7 Failed to connect to host.\n"
58675957 "\n"
58685958 " 8 Weird server reply. The server sent data curl could not parse.\n"
58695959 "\n"
5870 " 9 FTP access denied. The server denied login or denied access to\n"
5871 " the particular resource or directory you wanted to reach. Most\n"
5872 " often you tried to change to a directory that does not exist on\n"
5960 " 9 FTP access denied. The server denied login or denied access to\n"
5961 " the particular resource or directory you wanted to reach. Most\n"
5962 " often you tried to change to a directory that does not exist on\n"
58735963 " the server.\n"
58745964 "\n"
58755965 , stdout);
58765966 fputs(
5877 " 10 FTP accept failed. While waiting for the server to connect back\n"
5878 " when an active FTP session is used, an error code was sent over\n"
5967 " 10 FTP accept failed. While waiting for the server to connect back\n"
5968 " when an active FTP session is used, an error code was sent over\n"
58795969 " the control connection or similar.\n"
58805970 "\n"
58815971 " 11 FTP weird PASS reply. Curl could not parse the reply sent to the\n"
58825972 " PASS request.\n"
58835973 "\n"
5884 " 12 During an active FTP session while waiting for the server to\n"
5974 " 12 During an active FTP session while waiting for the server to\n"
58855975 " connect back to curl, the timeout expired.\n"
58865976 "\n"
58875977 , stdout);
58895979 " 13 FTP weird PASV reply, Curl could not parse the reply sent to the\n"
58905980 " PASV request.\n"
58915981 "\n"
5892 " 14 FTP weird 227 format. Curl could not parse the 227-line the\n"
5982 " 14 FTP weird 227 format. Curl could not parse the 227-line the\n"
58935983 " server sent.\n"
58945984 "\n"
58955985 " 15 FTP cannot use host. Could not resolve the host IP we got in the\n"
59015991 fputs(
59025992 " see the error message for details.\n"
59035993 "\n"
5904 " 17 FTP could not set binary. Could not change transfer method to\n"
5994 " 17 FTP could not set binary. Could not change transfer method to\n"
59055995 " binary.\n"
59065996 "\n"
59075997 " 18 Partial file. Only a part of the file was transferred.\n"
59106000 " lar) command failed.\n"
59116001 "\n"
59126002 " 21 FTP quote error. A quote command returned error from the server.\n"
5913 " 22 HTTP page not retrieved. The requested url was not found or re-\n"
5914 , stdout);
5915 fputs(
5916 " turned another error with the HTTP error code being 400 or\n"
6003 " 22 HTTP page not retrieved. The requested URL was not found or re-\n"
6004 , stdout);
6005 fputs(
6006 " turned another error with the HTTP error code being 400 or\n"
59176007 " above. This return code only appears if --fail is used.\n"
59186008 "\n"
5919 " 23 Write error. Curl could not write data to a local filesystem or\n"
6009 " 23 Write error. Curl could not write data to a local filesystem or\n"
59206010 " similar.\n"
59216011 "\n"
5922 " 25 FTP could not STOR file. The server denied the STOR operation,\n"
6012 " 25 FTP could not STOR file. The server denied the STOR operation,\n"
59236013 " used for FTP uploading.\n"
59246014 "\n"
59256015 " 26 Read error. Various reading problems.\n"
59316021 " 28 Operation timeout. The specified time-out period was reached ac-\n"
59326022 " cording to the conditions.\n"
59336023 "\n"
5934 " 30 FTP PORT failed. The PORT command failed. Not all FTP servers\n"
5935 " support the PORT command, try doing a transfer using PASV in-\n"
6024 " 30 FTP PORT failed. The PORT command failed. Not all FTP servers\n"
6025 " support the PORT command, try doing a transfer using PASV in-\n"
59366026 " stead!\n"
59376027 "\n"
59386028 " 31 FTP could not use REST. The REST command failed. This command is\n"
59646054 "\n"
59656055 " 43 Internal error. A function was called with a bad parameter.\n"
59666056 "\n"
5967 " 45 Interface error. A specified outgoing interface could not be\n"
6057 " 45 Interface error. A specified outgoing interface could not be\n"
59686058 " used.\n"
59696059 "\n"
59706060 " 47 Too many redirects. When following redirects, curl hit the maxi-\n"
59716061 " mum amount.\n"
59726062 "\n"
5973 " 48 Unknown option specified to libcurl. This indicates that you\n"
5974 , stdout);
5975 fputs(
5976 " passed a weird option to curl that was passed on to libcurl and\n"
6063 " 48 Unknown option specified to libcurl. This indicates that you\n"
6064 , stdout);
6065 fputs(
6066 " passed a weird option to curl that was passed on to libcurl and\n"
59776067 " rejected. Read up in the manual!\n"
59786068 "\n"
59796069 " 49 Malformed telnet option.\n"
59806070 "\n"
59816071 " 51 The peer's SSL certificate or SSH MD5 fingerprint was not OK.\n"
59826072 "\n"
5983 " 52 The server did not reply anything, which here is considered an\n"
6073 " 52 The server did not reply anything, which here is considered an\n"
59846074 " error.\n"
59856075 "\n"
59866076 " 53 SSL crypto engine not found.\n"
59966086 " 58 Problem with the local certificate.\n"
59976087 " 59 Could not use specified SSL cipher.\n"
59986088 "\n"
5999 " 60 Peer certificate cannot be authenticated with known CA certifi-\n"
6089 " 60 Peer certificate cannot be authenticated with known CA certifi-\n"
60006090 " cates.\n"
60016091 "\n"
60026092 " 61 Unrecognized transfer encoding.\n"
60136103 fputs(
60146104 " 66 Failed to initialise SSL Engine.\n"
60156105 "\n"
6016 " 67 The user name, password, or similar was not accepted and curl\n"
6106 " 67 The user name, password, or similar was not accepted and curl\n"
60176107 " failed to log in.\n"
60186108 "\n"
60196109 " 68 File not found on TFTP server.\n"
60746164 "\n"
60756165 " 94 An authentication function returned an error.\n"
60766166 "\n"
6077 " 95 A problem was detected in the HTTP/3 layer. This is somewhat\n"
6078 " generic and can be one out of several problems, see the error\n"
6167 " 95 A problem was detected in the HTTP/3 layer. This is somewhat\n"
6168 " generic and can be one out of several problems, see the error\n"
60796169 " message for details.\n"
60806170 "\n"
6081 " 96 QUIC connection error. This error may be caused by an SSL li-\n"
6171 " 96 QUIC connection error. This error may be caused by an SSL li-\n"
60826172 " brary error. QUIC is the protocol used for HTTP/3 transfers.\n"
60836173 "\n"
60846174 , stdout);
60876177 " ing ones are meant to never change.\n"
60886178 "\n"
60896179 "BUGS\n"
6090 " If you experience any problems with curl, submit an issue in the\n"
6180 " If you experience any problems with curl, submit an issue in the\n"
60916181 " project's bug tracker on GitHub: https://github.com/curl/curl/issues\n"
60926182 "\n"
60936183 "AUTHORS / CONTRIBUTORS\n"
6094 " Daniel Stenberg is the main author, but the whole list of contributors\n"
6184 " Daniel Stenberg is the main author, but the whole list of contributors\n"
60956185 " is found in the separate THANKS file.\n"
60966186 "\n"
60976187 "WWW\n"
61176207 #include "memdebug.h" /* keep this as LAST include */
61186208 static const unsigned char hugehelpgz[] = {
61196209 /* This mumbo-jumbo is the huge help text compressed with gzip.
6120 Thanks to this operation, the size of this data shrank from 224184
6121 to 58368 bytes. You can disable the use of compressed help
6210 Thanks to this operation, the size of this data shrank from 228032
6211 to 59391 bytes. You can disable the use of compressed help
61226212 texts by NOT passing -c to the mkhelp.pl tool. */
61236213 0x1f, 0x8b, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xed, 0xbd,
6124 0x6b, 0x7b, 0xdb, 0x46, 0xb6, 0x26, 0xfa, 0x3d, 0xbf, 0x02, 0x9b, 0x7d,
6125 0x7a, 0x24, 0xed, 0x26, 0xa9, 0xbb, 0x2f, 0x6a, 0x25, 0x13, 0x45, 0x96,
6126 0x63, 0xed, 0x96, 0x2d, 0xb5, 0x29, 0x27, 0xe9, 0x49, 0xf2, 0xf8, 0x01,
6127 0x49, 0x50, 0x42, 0x4c, 0x02, 0x6c, 0x00, 0xd4, 0x25, 0x3d, 0x7d, 0x7e,
6128 0xfb, 0x59, 0xd7, 0xaa, 0x02, 0xaa, 0x40, 0x89, 0x4a, 0xd2, 0xe9, 0x3d,
6129 0x73, 0xf6, 0x4c, 0x3b, 0xb6, 0x04, 0x14, 0xaa, 0x56, 0xad, 0x5a, 0xb5,
6130 0xae, 0xef, 0x8a, 0xa2, 0x87, 0xfe, 0xef, 0x23, 0xfd, 0xef, 0x23, 0xfc,
6131 0x1f, 0xfc, 0xf7, 0xb3, 0x28, 0xba, 0x28, 0xf2, 0x9f, 0x92, 0x51, 0x15,
6132 0x7e, 0xf6, 0xe3, 0xc7, 0xff, 0x1d, 0xf1, 0xff, 0x83, 0x77, 0x7e, 0x80,
6133 0xff, 0x7e, 0xb6, 0x74, 0xec, 0xcd, 0xc8, 0xbe, 0xf0, 0xbf, 0x3f, 0x6e,
6134 0x44, 0x0f, 0xbd, 0xf0, 0xbf, 0xa3, 0x75, 0x7a, 0xe1, 0xa3, 0x7c, 0xe1,
6135 0x10, 0xff, 0xfe, 0xf1, 0xe3, 0xf2, 0x8f, 0xfc, 0x80, 0xb3, 0xc2, 0x3f,
6136 0x36, 0xf1, 0xbd, 0x1f, 0x3e, 0xe2, 0x5f, 0xe1, 0x27, 0x9f, 0x7d, 0xf6,
6137 0xee, 0xe8, 0xed, 0x89, 0xbe, 0x3a, 0x5a, 0x14, 0xd3, 0xa8, 0x17, 0x55,
6138 0x45, 0x9c, 0x95, 0x93, 0xa4, 0x88, 0xe2, 0xe8, 0xc3, 0xfb, 0xb3, 0xcf,
6139 0x3e, 0x1b, 0xfc, 0xed, 0xdd, 0xf9, 0xc5, 0xe0, 0x74, 0x50, 0x7b, 0xec,
6140 0xfb, 0x7c, 0x5e, 0xa5, 0x79, 0x56, 0xc2, 0xf4, 0xe1, 0xa1, 0xf2, 0xc7,
6141 0xcf, 0x3e, 0x7b, 0x75, 0x32, 0x38, 0x7e, 0x7f, 0x7a, 0x71, 0x79, 0x7a,
6142 0xfe, 0xae, 0xf6, 0x64, 0x94, 0x96, 0x11, 0x0c, 0x55, 0xe5, 0xf9, 0x34,
6143 0x9a, 0xe4, 0x85, 0x19, 0xbe, 0x48, 0xb3, 0xab, 0x68, 0x1c, 0x57, 0x71,
6144 0x34, 0x29, 0xf2, 0x59, 0x84, 0xbf, 0xc9, 0xe1, 0xb9, 0x32, 0x29, 0x6e,
6145 0x92, 0xa2, 0x1f, 0x9d, 0x56, 0x51, 0xb9, 0x98, 0xcf, 0xf3, 0xa2, 0x2a,
6146 0x75, 0xb8, 0xea, 0x3a, 0x29, 0x93, 0x68, 0x5e, 0xe4, 0x55, 0x3e, 0xca,
6147 0xa7, 0xe5, 0x41, 0xf4, 0xea, 0xf4, 0xf8, 0xb2, 0x1b, 0xbd, 0x3e, 0x3d,
6148 0x3b, 0x81, 0x3f, 0x2f, 0x2f, 0xe8, 0x8f, 0x41, 0x37, 0xfa, 0xfa, 0xfc,
6149 0xe2, 0xcd, 0xc9, 0x7b, 0xfd, 0x2f, 0xfc, 0x20, 0x7a, 0x73, 0x89, 0xbf,
6150 0xa5, 0xff, 0x0c, 0xba, 0x3a, 0xdc, 0xe9, 0xdb, 0x23, 0xfc, 0x21, 0xfe,
6151 0x07, 0x9f, 0x39, 0x7b, 0x45, 0xff, 0xc4, 0xff, 0xc0, 0x3f, 0xdf, 0xfe,
6152 0xf5, 0x12, 0x86, 0xbe, 0x38, 0xbf, 0xd8, 0xe5, 0x3f, 0xe1, 0x47, 0xef,
6153 0x2f, 0xdf, 0x5e, 0xf0, 0x9f, 0xf4, 0x8f, 0x01, 0xfc, 0x63, 0x70, 0x7c,
6154 0x61, 0x86, 0x1b, 0xd0, 0x0c, 0x06, 0x6f, 0xbf, 0xa2, 0x3f, 0x06, 0xf8,
6155 0x27, 0xff, 0x80, 0xe6, 0x74, 0x79, 0x72, 0xf6, 0xee, 0xe4, 0x12, 0x57,
6156 0x79, 0x09, 0xcf, 0xf5, 0xa3, 0xcb, 0xeb, 0x24, 0x1a, 0xe5, 0xb3, 0x59,
6157 0x9c, 0x8d, 0x99, 0x42, 0xe3, 0xa4, 0x4c, 0xaf, 0xb2, 0x64, 0x6c, 0x16,
6158 0x9b, 0x47, 0xb7, 0x79, 0xf1, 0x29, 0xba, 0x4d, 0xab, 0xeb, 0x7c, 0x51,
6159 0x45, 0x0b, 0x20, 0x4c, 0x94, 0x66, 0x55, 0x52, 0xc4, 0x23, 0xa4, 0x7c,
6160 0xff, 0xb3, 0x1a, 0x95, 0xf3, 0x09, 0x90, 0xb4, 0x04, 0xfa, 0x0d, 0x17,
6161 0xe5, 0x34, 0x8f, 0xc7, 0xf0, 0x03, 0x7c, 0x65, 0xb2, 0x98, 0x02, 0xc1,
6162 0xd3, 0xd1, 0xa7, 0x32, 0x9a, 0xa6, 0x9f, 0x88, 0x78, 0x77, 0xf7, 0x4a,
6163 0xd8, 0x2e, 0x0f, 0x1a, 0x2f, 0x80, 0xb0, 0x59, 0xcf, 0x7c, 0x38, 0x1d,
6164 0xc5, 0xf8, 0x01, 0xa2, 0x66, 0xb4, 0x98, 0xe3, 0x68, 0x5d, 0x22, 0x5d,
6165 0x34, 0xcf, 0x4b, 0x78, 0x69, 0x30, 0x38, 0x83, 0xa9, 0x67, 0x59, 0x42,
6166 0xf3, 0x28, 0xbb, 0xf0, 0x8f, 0xfc, 0x53, 0x9a, 0xc0, 0x5f, 0x26, 0xe9,
6167 0x34, 0x89, 0x78, 0x83, 0xcd, 0x70, 0xc8, 0x48, 0x45, 0x52, 0x2e, 0x66,
6168 0x49, 0x84, 0x6b, 0x9d, 0xe5, 0x45, 0xd2, 0x8f, 0x8e, 0xca, 0xe8, 0x3e,
6169 0x5f, 0xc0, 0xda, 0xa6, 0x53, 0xd8, 0xf0, 0x24, 0x1a, 0x26, 0xd3, 0xfc,
6170 0xb6, 0x8b, 0x1b, 0x1c, 0x65, 0x8b, 0xd9, 0x10, 0x5e, 0x81, 0xe9, 0x4f,
6171 0x92, 0xb8, 0x5a, 0xc0, 0xab, 0xf4, 0x98, 0x0e, 0x37, 0x8b, 0x61, 0x15,
6172 0xf0, 0x6e, 0x11, 0x5d, 0x27, 0xb0, 0xca, 0x72, 0x9e, 0x36, 0x29, 0x01,
6173 0xc4, 0x9c, 0xe7, 0xb7, 0x49, 0x91, 0x8c, 0xa3, 0xe1, 0x7d, 0x04, 0xcb,
6174 0x1e, 0x32, 0x1b, 0x22, 0xef, 0x45, 0x31, 0x7c, 0xd0, 0x70, 0x60, 0xaf,
6175 0x48, 0xa6, 0x71, 0x05, 0xcf, 0x99, 0x4f, 0xf5, 0x61, 0x1b, 0x93, 0x44,
6176 0x87, 0x93, 0x57, 0xd7, 0x77, 0x37, 0xe8, 0xe5, 0x71, 0x52, 0xc5, 0xe9,
6177 0xb4, 0x84, 0xcf, 0xe1, 0xb1, 0x90, 0x67, 0x70, 0x1f, 0xf1, 0x04, 0x44,
6178 0x51, 0x79, 0x9f, 0x55, 0xf1, 0x1d, 0x7d, 0x5e, 0x38, 0xb4, 0x37, 0x4e,
6179 0xe6, 0x49, 0x36, 0x4e, 0xb2, 0xaa, 0x1f, 0xfd, 0x0d, 0x96, 0x3b, 0x49,
6180 0x81, 0x00, 0xb1, 0x8c, 0x03, 0x9f, 0x85, 0x2d, 0x1f, 0x15, 0x29, 0x9d,
6181 0x23, 0x1d, 0x2e, 0xcd, 0xa2, 0xf7, 0xaf, 0x8f, 0xa3, 0xdd, 0x97, 0x2f,
6182 0x9e, 0xd9, 0x65, 0xe1, 0xbb, 0xa3, 0x38, 0x83, 0xc5, 0x26, 0xa3, 0x74,
6183 0x72, 0x1f, 0xcd, 0x16, 0xd3, 0x2a, 0x9d, 0x03, 0xa9, 0xf1, 0xe4, 0x21,
6184 0x4b, 0xcd, 0x63, 0x38, 0x25, 0x48, 0x32, 0xfa, 0x01, 0x2d, 0xfb, 0xb6,
6185 0x48, 0x2b, 0x3c, 0x60, 0xf4, 0x3b, 0x98, 0x5c, 0x62, 0x8f, 0x11, 0x72,
6186 0x14, 0x7c, 0x67, 0x08, 0x8c, 0x04, 0xc4, 0xc5, 0x4d, 0xf9, 0xfb, 0x22,
6187 0xa7, 0x87, 0x91, 0xfe, 0xb8, 0x96, 0xb8, 0x84, 0x89, 0x1c, 0x7c, 0x66,
6188 0x45, 0x4a, 0xe7, 0xba, 0xaa, 0xe6, 0x07, 0x9b, 0x9b, 0x65, 0x5a, 0x25,
6189 0xfd, 0x7f, 0xe4, 0x59, 0xd2, 0xad, 0x6e, 0xf3, 0x6e, 0x75, 0x5d, 0x24,
6190 0xc9, 0x3f, 0xfb, 0xc0, 0xc6, 0x1d, 0xf3, 0x2c, 0xcc, 0xe6, 0x5e, 0xa6,
6191 0x7b, 0x95, 0xc0, 0x11, 0x4e, 0xfe, 0xbe, 0x48, 0x32, 0xfc, 0x0e, 0xcc,
6192 0x2e, 0x9e, 0xce, 0xaf, 0x63, 0xd8, 0xdf, 0x04, 0x18, 0x12, 0xcf, 0x39,
6193 0xf0, 0x0c, 0xce, 0x75, 0x51, 0xe2, 0xb7, 0xbf, 0xff, 0x31, 0xf0, 0xd9,
6194 0x09, 0x7d, 0x15, 0xfe, 0xec, 0x27, 0x77, 0xf1, 0x0c, 0x96, 0x8c, 0x1f,
6195 0xdb, 0x44, 0x36, 0xfb, 0x7e, 0xbb, 0xb7, 0xbd, 0xb5, 0xf5, 0x63, 0xbf,
6196 0xba, 0xab, 0x3a, 0x8f, 0x7c, 0x63, 0x6b, 0xcb, 0x79, 0x07, 0x1f, 0x5e,
6197 0x47, 0x4a, 0x44, 0x53, 0xe0, 0x23, 0x9c, 0xc0, 0xcf, 0x49, 0x91, 0x97,
6198 0x1b, 0x8f, 0x1c, 0x2b, 0xee, 0xfd, 0xdc, 0xf8, 0xf6, 0xbb, 0xa4, 0x24,
6199 0x56, 0xb2, 0x2b, 0x8e, 0xe2, 0x02, 0xd8, 0x39, 0x37, 0x72, 0x2c, 0x81,
6200 0x63, 0x34, 0x84, 0x93, 0xac, 0xf4, 0x81, 0xc3, 0x07, 0x4f, 0x83, 0xb0,
6201 0x8b, 0xe1, 0xf8, 0x66, 0xf0, 0x42, 0x96, 0xdc, 0x55, 0xce, 0xf1, 0x4f,
6202 0xe2, 0xd1, 0x75, 0x94, 0xc3, 0x9e, 0x14, 0xa1, 0xad, 0x70, 0xa7, 0x14,
6203 0x17, 0xa3, 0xeb, 0xf4, 0x06, 0x68, 0xf2, 0xf2, 0xe5, 0xb3, 0x1e, 0xfc,
6204 0xf1, 0xf2, 0xc7, 0xcd, 0x9b, 0x7c, 0x0a, 0x24, 0xda, 0xfb, 0x71, 0x13,
6205 0xf7, 0xff, 0x1f, 0x71, 0x77, 0xd8, 0x1d, 0xfd, 0xb3, 0x7f, 0x5d, 0xcd,
6206 0xa6, 0x9d, 0x56, 0xb6, 0x8a, 0x33, 0xf8, 0xdf, 0x2c, 0x5f, 0x64, 0x95,
6207 0x61, 0xa5, 0x3c, 0x23, 0x9e, 0x50, 0x41, 0x35, 0x4d, 0x33, 0x38, 0xbc,
6208 0xc8, 0xf3, 0xc8, 0x61, 0x78, 0x78, 0xe1, 0xe4, 0xda, 0x83, 0x5e, 0x8d,
6209 0xae, 0x91, 0x02, 0xc0, 0x5b, 0xb1, 0x90, 0xa1, 0x4a, 0x61, 0x6d, 0xf0,
6210 0x6a, 0x46, 0xb2, 0x8b, 0xc6, 0xe2, 0xaf, 0xa5, 0xf0, 0x60, 0x5e, 0x8c,
6211 0x51, 0xd0, 0x37, 0xa6, 0x61, 0xce, 0xb2, 0xf3, 0xcd, 0x48, 0x2f, 0x1b,
6212 0xfc, 0x01, 0x4d, 0x6c, 0x96, 0xde, 0xc1, 0x08, 0xf8, 0x4f, 0xfc, 0x1a,
6213 0x4c, 0x9c, 0x47, 0x8b, 0x70, 0xc6, 0xf4, 0x19, 0x7d, 0xdf, 0x9e, 0x65,
6214 0x98, 0x7a, 0x6d, 0xe9, 0xf4, 0x51, 0xbb, 0xf8, 0x08, 0xb6, 0x6f, 0x0e,
6215 0x6f, 0x2d, 0x50, 0xc4, 0xf2, 0x45, 0x05, 0xc3, 0x80, 0xa4, 0xb8, 0x82,
6216 0x9d, 0x81, 0xdd, 0x40, 0x6e, 0xc6, 0xcd, 0xba, 0x8f, 0xde, 0x01, 0xd3,
6217 0xb0, 0x94, 0x72, 0x98, 0x7e, 0x9a, 0x54, 0xd5, 0xc3, 0x1b, 0x65, 0x39,
6218 0xf7, 0x60, 0x3b, 0xc0, 0xbc, 0x6d, 0x6f, 0x00, 0xb7, 0x1d, 0xec, 0x34,
6219 0x1e, 0xff, 0x16, 0x64, 0xb6, 0x3d, 0x3a, 0x30, 0x83, 0x7f, 0xfc, 0xd3,
6220 0xe1, 0xbd, 0x5b, 0xfc, 0x6d, 0x9a, 0xdd, 0xe4, 0x9f, 0x80, 0x4c, 0x74,
6221 0xbf, 0xc6, 0x75, 0x8a, 0xa2, 0x90, 0x9a, 0xcd, 0x2b, 0x73, 0x7b, 0x21,
6222 0x53, 0xc2, 0x8f, 0x86, 0xf1, 0x70, 0x7a, 0x1f, 0x5d, 0xc7, 0x37, 0x09,
6223 0xae, 0x79, 0x0e, 0xdc, 0x8a, 0x54, 0x80, 0x5b, 0x64, 0x4a, 0x82, 0x41,
6224 0x44, 0xc7, 0x38, 0x5f, 0x0c, 0x41, 0xfc, 0xa0, 0xd8, 0x60, 0xe2, 0xc4,
6225 0x37, 0x79, 0x3a, 0xc6, 0x47, 0x75, 0xb8, 0xf2, 0x3a, 0x81, 0x57, 0xe8,
6226 0xc3, 0x74, 0x67, 0x81, 0xb4, 0xc5, 0x99, 0xd2, 0x81, 0x4b, 0x2b, 0xbc,
6227 0xfe, 0x40, 0x4e, 0xc6, 0xd3, 0x32, 0x8f, 0xa2, 0xab, 0x1c, 0xcf, 0x0a,
6228 0x49, 0x67, 0x62, 0x76, 0xd8, 0x98, 0xeb, 0x18, 0x2f, 0x39, 0xb8, 0xcf,
6229 0xcc, 0x69, 0x28, 0x12, 0x12, 0xd4, 0xb4, 0x5b, 0xf1, 0xb4, 0xcb, 0x97,
6230 0x19, 0xbe, 0x23, 0xb4, 0x8a, 0xd6, 0xfe, 0xc7, 0x5a, 0x37, 0x5a, 0xfb,
6231 0x9f, 0x6b, 0xc4, 0x13, 0x6b, 0xff, 0xb9, 0x66, 0xf7, 0x1a, 0x74, 0xb5,
6232 0x9b, 0x74, 0x9c, 0x30, 0x5b, 0x9c, 0x5e, 0xdc, 0x3c, 0x8b, 0x7e, 0x86,
6233 0xd3, 0x06, 0xd3, 0x1a, 0x27, 0x77, 0xca, 0x94, 0xba, 0x36, 0x78, 0x3b,
6234 0x02, 0xa1, 0x1c, 0xcf, 0xe1, 0x5b, 0xf3, 0xa4, 0x18, 0x01, 0x07, 0xc7,
6235 0x57, 0xc0, 0xb3, 0x70, 0x33, 0xeb, 0x70, 0x38, 0x3e, 0xbe, 0xc2, 0xcb,
6236 0x02, 0x11, 0x1a, 0x65, 0xf1, 0x0c, 0x4e, 0xc5, 0x19, 0xce, 0x28, 0xcd,
6237 0x02, 0xdb, 0xf9, 0xfd, 0x24, 0x79, 0xb1, 0x75, 0x70, 0xb0, 0xfb, 0xc7,
6238 0x9d, 0xfd, 0xa4, 0xba, 0xde, 0xfa, 0x71, 0xd3, 0x6e, 0xe2, 0xe9, 0x84,
6239 0x08, 0xaf, 0x4c, 0xa8, 0xd3, 0xc0, 0xfb, 0x5e, 0x2f, 0x11, 0x18, 0x00,
6240 0xfe, 0x9e, 0x4c, 0xd2, 0xbb, 0xae, 0x2a, 0x54, 0x7c, 0xf2, 0x62, 0x60,
6241 0x38, 0xd8, 0x41, 0x14, 0x15, 0x3a, 0xdc, 0xd5, 0x22, 0x29, 0x81, 0x96,
6242 0xb7, 0xd7, 0x71, 0x15, 0x99, 0x01, 0x78, 0x6f, 0x67, 0xe9, 0xd5, 0x75,
6243 0x15, 0xdd, 0xc6, 0x78, 0x17, 0x81, 0x6a, 0x45, 0x43, 0xe0, 0xb5, 0x0f,
6244 0x97, 0xd0, 0x24, 0x86, 0xfb, 0x04, 0x77, 0x91, 0xee, 0x78, 0x90, 0x50,
6245 0x96, 0xea, 0xf7, 0xb2, 0x25, 0x46, 0xe7, 0x8a, 0x86, 0x71, 0x89, 0x47,
6246 0x37, 0x03, 0x11, 0x51, 0x81, 0xd2, 0xb0, 0xc0, 0x7f, 0x5d, 0x83, 0x5a,
6247 0x40, 0x54, 0x90, 0x89, 0xd2, 0x3d, 0xfa, 0x1a, 0x37, 0x14, 0x77, 0xc7,
6248 0x68, 0x02, 0xb0, 0x4d, 0x5d, 0xd9, 0x68, 0xf3, 0x46, 0x09, 0xc7, 0x0e,
6249 0x04, 0x94, 0xe1, 0x0d, 0x94, 0xb9, 0xfd, 0x0e, 0xaf, 0x93, 0xe6, 0x18,
6250 0x97, 0xa4, 0x3a, 0x90, 0xb6, 0x00, 0x93, 0x77, 0x16, 0x0b, 0x44, 0x8b,
6251 0x3f, 0xa1, 0x8e, 0xd2, 0xb8, 0xff, 0xe9, 0xb5, 0x71, 0x0e, 0x6c, 0x06,
6252 0xb3, 0x05, 0xa1, 0x8c, 0x2b, 0x43, 0x51, 0x4b, 0x54, 0x21, 0x36, 0x87,
6253 0x31, 0xf1, 0x87, 0x69, 0x85, 0x37, 0x0e, 0x29, 0xb9, 0x30, 0x5f, 0x20,
6254 0x0a, 0xe9, 0x61, 0x20, 0xb0, 0x9d, 0xf5, 0xd3, 0x15, 0x0a, 0xcf, 0x46,
6255 0x37, 0xf1, 0x34, 0x05, 0x65, 0x35, 0x31, 0x6f, 0xd1, 0x75, 0x3f, 0x42,
6256 0x65, 0x69, 0x0a, 0x27, 0x66, 0x94, 0x17, 0x05, 0x1a, 0x04, 0xb8, 0x83,
6257 0x43, 0x16, 0xa5, 0xb3, 0x04, 0xb4, 0x0c, 0x97, 0x9c, 0x30, 0xfa, 0x24,
6258 0x4e, 0x0b, 0x78, 0x1a, 0x14, 0x0b, 0x92, 0xfa, 0xb4, 0x64, 0x9a, 0x17,
6259 0x8e, 0x3a, 0x1a, 0x25, 0xf3, 0xaa, 0x0c, 0xad, 0x46, 0xb7, 0x1a, 0x26,
6260 0x52, 0x24, 0x48, 0x73, 0x57, 0xff, 0x22, 0x8a, 0x1a, 0x95, 0x80, 0x54,
6261 0x30, 0x55, 0x70, 0x40, 0x25, 0x2b, 0x73, 0xab, 0x3d, 0x23, 0x57, 0x80,
6262 0x18, 0x23, 0x6a, 0xcf, 0x70, 0x8a, 0xf8, 0x70, 0xc9, 0xa7, 0x94, 0x44,
6263 0x33, 0x6e, 0x21, 0xeb, 0xdf, 0xfc, 0x5d, 0xbc, 0xbc, 0x80, 0x92, 0x66,
6264 0x70, 0xf8, 0xaa, 0xd9, 0x4d, 0xfc, 0x3c, 0x6a, 0xff, 0x70, 0xa3, 0x8f,
6265 0xcb, 0x6b, 0xd0, 0xca, 0x4a, 0x39, 0xd5, 0xe9, 0x0c, 0xb8, 0xe5, 0x06,
6266 0x77, 0x76, 0x9e, 0x24, 0xe3, 0x7e, 0x74, 0x3e, 0x41, 0xa9, 0x5a, 0xc0,
6267 0xa4, 0x2b, 0xfa, 0x35, 0xde, 0x2a, 0x40, 0x83, 0x31, 0x1e, 0x42, 0xab,
6268 0xf8, 0xf0, 0x54, 0x9c, 0xdb, 0x81, 0x24, 0x79, 0x0c, 0x3f, 0x81, 0xd9,
6269 0x4e, 0xeb, 0x57, 0x10, 0x9d, 0x41, 0x90, 0xde, 0x38, 0xbd, 0x61, 0x12,
6270 0x11, 0x0f, 0x0e, 0x93, 0xea, 0x36, 0x49, 0xcc, 0x70, 0x65, 0x02, 0xf7,
6271 0x1e, 0x6e, 0x17, 0xab, 0x84, 0x20, 0x08, 0x59, 0xa9, 0x45, 0xf2, 0x9e,
6272 0x7f, 0xb8, 0xbc, 0xf8, 0x70, 0xe9, 0x1c, 0x41, 0x1c, 0xa7, 0xca, 0xa7,
6273 0x63, 0x66, 0xf6, 0xdb, 0xb4, 0x04, 0x3e, 0x65, 0xe2, 0x83, 0x12, 0x85,
6274 0x02, 0x0e, 0x2f, 0x82, 0x64, 0x94, 0xc0, 0x15, 0x3b, 0x66, 0x8b, 0x05,
6275 0x36, 0xa2, 0xac, 0x40, 0x0a, 0xf2, 0x61, 0xc2, 0xb9, 0xe8, 0x70, 0x30,
6276 0x1f, 0xf8, 0x5c, 0x59, 0x15, 0x8b, 0x11, 0xa9, 0x03, 0xc8, 0x3b, 0xf8,
6277 0x6f, 0x52, 0x56, 0x49, 0xac, 0xe2, 0x36, 0xd0, 0x20, 0x20, 0x41, 0xd0,
6278 0xe0, 0x99, 0xc2, 0xd4, 0xa6, 0xb4, 0xfe, 0xae, 0xc8, 0x73, 0x47, 0x8e,
6279 0xf6, 0x7a, 0xf0, 0x11, 0x14, 0xc3, 0xb0, 0xc7, 0x3d, 0xd0, 0x57, 0x67,
6280 0x20, 0x71, 0x7b, 0x74, 0xd4, 0xe4, 0x4a, 0xec, 0xe3, 0x02, 0x54, 0xef,
6281 0xbd, 0x82, 0x19, 0x02, 0xd5, 0xcc, 0x7e, 0x89, 0x3e, 0x68, 0xcf, 0x8c,
6282 0x31, 0xed, 0xcc, 0x3d, 0xe9, 0xd2, 0xb5, 0x8b, 0x6c, 0x58, 0xa6, 0xb3,
6283 0x74, 0x1a, 0x23, 0x97, 0x66, 0xb0, 0x7d, 0xa5, 0x1d, 0x4c, 0xef, 0x60,
6284 0x60, 0x37, 0xa3, 0x49, 0x02, 0xb9, 0xe8, 0xa2, 0x90, 0x95, 0x25, 0xb3,
6285 0x06, 0xf7, 0x8e, 0x51, 0xb6, 0x23, 0x79, 0x61, 0x37, 0x80, 0x01, 0x60,
6286 0x11, 0x86, 0xc4, 0x51, 0x67, 0x01, 0x12, 0xb8, 0x80, 0xe3, 0x9f, 0x8d,
6287 0x3b, 0x32, 0x15, 0x10, 0xa9, 0x19, 0x1e, 0x43, 0xe6, 0xd3, 0x12, 0x2f,
6288 0x56, 0xf3, 0x29, 0xde, 0x0a, 0x3c, 0x7b, 0x11, 0x93, 0x84, 0xcf, 0xac,
6289 0x7c, 0x21, 0x82, 0x6b, 0x2f, 0x27, 0x35, 0x8e, 0x14, 0x75, 0xfe, 0x3b,
6290 0xd0, 0x33, 0x9b, 0xa2, 0x44, 0x4c, 0xee, 0xe6, 0xd3, 0x74, 0x94, 0x56,
6291 0x53, 0xa3, 0x5d, 0xc4, 0x25, 0x5e, 0x8c, 0x68, 0x63, 0xe1, 0x11, 0x1c,
6292 0x27, 0x63, 0x34, 0x7a, 0xe0, 0x27, 0x21, 0xad, 0x03, 0xd6, 0x74, 0xf1,
6293 0xfe, 0xfc, 0xf2, 0xfc, 0xf8, 0xfc, 0xac, 0x6e, 0x03, 0xab, 0x7d, 0x1a,
6294 0x91, 0x4e, 0x9b, 0x2f, 0xac, 0xe6, 0x0f, 0x07, 0x0f, 0xd5, 0x72, 0xd8,
6295 0x37, 0xb8, 0x60, 0xc8, 0x3a, 0x80, 0xcb, 0x62, 0x06, 0x16, 0x6b, 0x54,
6296 0x82, 0x8e, 0x34, 0x23, 0x01, 0x09, 0x3a, 0x88, 0x59, 0x1d, 0x2a, 0x69,
6297 0xe9, 0x68, 0x01, 0x74, 0x07, 0x81, 0x91, 0x02, 0x27, 0xce, 0xe2, 0x7b,
6298 0x57, 0x75, 0x24, 0xda, 0xa2, 0xf1, 0x62, 0xe9, 0x8b, 0xb6, 0x2f, 0xfc,
6299 0xe7, 0x0c, 0xe9, 0x84, 0x52, 0x6d, 0x0a, 0x46, 0xd8, 0x62, 0x8e, 0x36,
6300 0x23, 0x6c, 0x1a, 0xf3, 0x11, 0x9c, 0x33, 0x5c, 0x06, 0xac, 0x0d, 0xd7,
6301 0x11, 0xa3, 0xbe, 0x6d, 0xdf, 0x47, 0xab, 0x19, 0xfe, 0xf3, 0x1e, 0x19,
6302 0x13, 0x27, 0xcb, 0x14, 0x8e, 0x84, 0x1d, 0xf9, 0x3c, 0xf6, 0xf5, 0xc6,
6303 0x31, 0xfb, 0xa8, 0xf3, 0x41, 0x61, 0x55, 0xe2, 0x47, 0x1a, 0x6e, 0x07,
6304 0x7c, 0x0d, 0x6f, 0x2c, 0x5c, 0x33, 0x73, 0xeb, 0xf4, 0x9e, 0xb5, 0x5e,
6305 0xd2, 0x48, 0x8a, 0x45, 0x96, 0xf1, 0xcc, 0xa2, 0xb7, 0xe9, 0x08, 0xf4,
6306 0x6d, 0xb8, 0x45, 0xa2, 0x6f, 0xe1, 0x2a, 0xce, 0x6f, 0x61, 0x5f, 0x17,
6307 0xd6, 0x6a, 0x34, 0xe6, 0x10, 0x1b, 0x25, 0x19, 0x1c, 0x5e, 0xe0, 0xb0,
6308 0x0f, 0xef, 0x8e, 0xa3, 0x78, 0x0e, 0x44, 0x46, 0xcd, 0x98, 0x24, 0x14,
6309 0x9a, 0xc8, 0xce, 0x9a, 0x2e, 0x2f, 0xd6, 0x07, 0x1b, 0x32, 0x67, 0xb3,
6310 0x3b, 0xac, 0x0f, 0xbe, 0x46, 0xc1, 0x78, 0xa9, 0xfc, 0x7f, 0xa1, 0x97,
6311 0x23, 0xdf, 0xfa, 0xb0, 0x6a, 0x52, 0x7a, 0x41, 0x86, 0xc4, 0x9f, 0xca,
6312 0xc6, 0x24, 0x88, 0x1f, 0x50, 0xf5, 0x03, 0x7a, 0x7c, 0x8b, 0x8f, 0xe7,
6313 0x85, 0x63, 0x95, 0xe3, 0x14, 0x2f, 0xcf, 0x06, 0x76, 0x12, 0xec, 0x75,
6314 0x80, 0x79, 0x34, 0x86, 0x79, 0x9f, 0x80, 0x21, 0x0e, 0xc3, 0x08, 0x69,
6315 0xcd, 0xf3, 0x78, 0xeb, 0xfa, 0x4f, 0xd7, 0x19, 0x8c, 0x6e, 0x66, 0x9a,
6316 0xaa, 0x61, 0x35, 0x57, 0x25, 0xbe, 0x81, 0xbd, 0x8d, 0x55, 0x1c, 0xd4,
6317 0xe5, 0x51, 0xed, 0xb2, 0xa4, 0x61, 0x70, 0x21, 0xf0, 0x68, 0xb4, 0xd5,
6318 0x7f, 0xd9, 0x8d, 0xb6, 0xfb, 0x5b, 0xf8, 0xc7, 0x76, 0x37, 0xda, 0xa1,
6319 0x91, 0x76, 0x23, 0xb6, 0x59, 0x65, 0x93, 0x98, 0x19, 0xf3, 0x79, 0x73,
6320 0x5f, 0xec, 0xa7, 0xf9, 0xe0, 0xf2, 0xe5, 0xd7, 0x72, 0x78, 0x1c, 0x77,
6321 0x8b, 0xbf, 0xce, 0x0f, 0x2a, 0xf1, 0x80, 0xe5, 0xd3, 0x29, 0xf0, 0x0c,
6322 0x1b, 0x63, 0x7a, 0x90, 0x44, 0x10, 0xa3, 0xaa, 0xde, 0x01, 0x26, 0xc9,
6323 0xd0, 0x19, 0xd1, 0x89, 0x12, 0x7c, 0x96, 0x95, 0xc6, 0xc6, 0x70, 0x70,
6324 0x12, 0x1e, 0xb5, 0x49, 0xe8, 0xe5, 0x69, 0x21, 0x3a, 0x7e, 0x0b, 0x2e,
6325 0xbd, 0x71, 0x8a, 0x6b, 0xca, 0x41, 0x05, 0xe2, 0x93, 0xc5, 0xf7, 0x2c,
6326 0x8c, 0xdf, 0xe5, 0x8d, 0x70, 0xc6, 0xaf, 0x8d, 0x8c, 0x8e, 0x23, 0x6f,
6327 0xff, 0xe8, 0x87, 0x4a, 0xf8, 0xdd, 0x7e, 0xf4, 0x4a, 0x96, 0x42, 0x64,
6328 0xc6, 0xeb, 0x96, 0x1e, 0x00, 0xed, 0x1d, 0x54, 0xe2, 0xa8, 0x53, 0x2e,
6329 0x86, 0x4d, 0x82, 0xa3, 0xa3, 0x60, 0x98, 0x74, 0xd8, 0x45, 0x56, 0xe5,
6330 0x73, 0x30, 0xa0, 0x6f, 0xaf, 0x91, 0xa3, 0xd9, 0x3f, 0x03, 0xe3, 0x6c,
6331 0xa2, 0x73, 0x06, 0xc7, 0xd3, 0x51, 0xe6, 0xa0, 0xa3, 0xa7, 0xe5, 0x75,
6332 0x07, 0xf7, 0x31, 0x6e, 0xee, 0x1f, 0x8e, 0xd0, 0xe7, 0xaf, 0xd2, 0xf7,
6333 0x61, 0x09, 0x78, 0x81, 0xd4, 0xac, 0xd5, 0x68, 0xfd, 0x3e, 0xa9, 0x36,
6334 0x1c, 0x45, 0xfa, 0xfc, 0x62, 0xd7, 0xa7, 0x99, 0xbb, 0x14, 0x56, 0x25,
6335 0xf0, 0xd6, 0x9e, 0xe7, 0xf3, 0xdd, 0x48, 0x75, 0x09, 0xd6, 0x84, 0x54,
6336 0xf3, 0x88, 0x69, 0xa7, 0xcd, 0x2e, 0x35, 0x86, 0x5b, 0xb2, 0x67, 0xe8,
6337 0x79, 0xf3, 0xbf, 0x8f, 0x0e, 0x18, 0x10, 0x62, 0x70, 0x49, 0xc1, 0xa5,
6338 0xf8, 0x16, 0x84, 0x52, 0x7c, 0x85, 0x6f, 0x9a, 0x03, 0x4e, 0x4a, 0xdd,
6339 0xbc, 0x48, 0x67, 0x70, 0x46, 0xe0, 0x52, 0x63, 0x6d, 0x81, 0xae, 0x65,
6340 0x9e, 0x5d, 0x93, 0xd0, 0x68, 0x6a, 0xcc, 0x48, 0x43, 0x82, 0x4b, 0x21,
6341 0x66, 0x55, 0xc3, 0xb2, 0x05, 0xaf, 0x15, 0x4d, 0x18, 0x67, 0x5a, 0x83,
6342 0x0b, 0x6f, 0xc3, 0xe9, 0x87, 0x70, 0xb8, 0xcc, 0x2b, 0xce, 0x41, 0x18,
6343 0x1c, 0x5f, 0xf8, 0x27, 0x7c, 0x30, 0x78, 0x63, 0x18, 0x64, 0x07, 0xb6,
6344 0x7b, 0x6e, 0x95, 0x38, 0xe7, 0x4d, 0xf4, 0xc8, 0x79, 0x6f, 0xe2, 0x0f,
6345 0xd7, 0xc7, 0x45, 0x0c, 0xa2, 0x74, 0x7f, 0x43, 0xf4, 0x2a, 0x24, 0x7b,
6346 0x6d, 0x48, 0x67, 0x90, 0xb7, 0x5f, 0x19, 0x21, 0x69, 0x07, 0x79, 0xfb,
6347 0x95, 0x79, 0x76, 0x9b, 0x38, 0x9d, 0x19, 0x8b, 0xd6, 0xaf, 0x6b, 0x70,
6348 0xc7, 0x08, 0xc9, 0xac, 0x0f, 0x73, 0xc3, 0x08, 0x72, 0x97, 0x97, 0x4c,
6349 0x69, 0x34, 0xb4, 0xf1, 0x95, 0x3a, 0x43, 0x94, 0x22, 0x67, 0xd0, 0xe6,
6350 0x22, 0x96, 0x68, 0x0c, 0xf7, 0xed, 0xb2, 0x63, 0x26, 0xfe, 0xd4, 0x4b,
6351 0x30, 0x33, 0x71, 0x0c, 0x5a, 0x0d, 0x7c, 0x8a, 0x9c, 0x10, 0x78, 0x44,
6352 0x92, 0x69, 0x96, 0xb0, 0x3a, 0x4e, 0x06, 0x06, 0x0a, 0x2b, 0xeb, 0x3d,
6353 0xbd, 0x41, 0x35, 0xb7, 0x2c, 0x1d, 0xbf, 0x5b, 0x4d, 0xa1, 0x21, 0x05,
6354 0x04, 0x67, 0x67, 0x6c, 0x29, 0xfc, 0x01, 0x8a, 0xa6, 0x92, 0x14, 0x27,
6355 0x50, 0xfd, 0xc8, 0xeb, 0x30, 0x16, 0x4d, 0xa4, 0xe4, 0xa7, 0x1c, 0xb5,
6356 0xcd, 0x68, 0xa1, 0xb4, 0x5c, 0x1e, 0xca, 0xe5, 0x99, 0x4b, 0x67, 0x23,
6357 0x45, 0xde, 0xd0, 0x8f, 0x0c, 0xb7, 0xd0, 0xe8, 0xbc, 0x05, 0xa2, 0x7f,
6358 0x7c, 0xfd, 0xfe, 0x64, 0x30, 0x88, 0xde, 0x9e, 0x5c, 0x9e, 0xbc, 0xaf,
6359 0x29, 0x21, 0x59, 0x5e, 0xcc, 0xc8, 0x04, 0x19, 0xa7, 0xe5, 0x7c, 0x1a,
6360 0xdf, 0xa3, 0x6d, 0x02, 0xd2, 0xf3, 0xaa, 0x40, 0xc5, 0x67, 0x96, 0xa0,
6361 0x33, 0x63, 0xbc, 0x20, 0xe3, 0x1b, 0x44, 0x32, 0x2c, 0x5f, 0x7c, 0xb6,
6362 0x68, 0xff, 0x92, 0xa3, 0xd7, 0x5e, 0xe1, 0x74, 0x4d, 0x8a, 0x03, 0x08,
6363 0x2f, 0x43, 0xeb, 0xa9, 0xc7, 0x13, 0x83, 0x2a, 0x6b, 0xd7, 0xd1, 0x20,
6364 0x49, 0xbb, 0xe7, 0x79, 0x82, 0x91, 0x05, 0xc7, 0x0b, 0x25, 0x06, 0x1e,
6365 0x42, 0xe3, 0x71, 0x49, 0x26, 0x55, 0x37, 0x82, 0xfd, 0x60, 0x67, 0x77,
6366 0x73, 0x4e, 0x3a, 0x5b, 0xeb, 0xef, 0x1d, 0xde, 0x57, 0xe2, 0x8f, 0xe4,
6367 0xa9, 0xf0, 0x17, 0x8c, 0xc6, 0x46, 0x1b, 0x93, 0x45, 0xf2, 0xd8, 0x9c,
6368 0xe8, 0x0a, 0x6c, 0x36, 0xe6, 0xe1, 0xcb, 0xc5, 0x84, 0x2c, 0xcf, 0x68,
6369 0xfd, 0x53, 0x37, 0x7a, 0xdb, 0x8d, 0xbe, 0xee, 0x46, 0xe8, 0xbf, 0xdf,
6370 0xa0, 0xf7, 0xb6, 0xb7, 0x76, 0xf6, 0xd8, 0x72, 0x35, 0x3c, 0xf6, 0xda,
6371 0xf1, 0x1d, 0x6c, 0x7f, 0x42, 0x21, 0xc1, 0x0f, 0xe1, 0xe0, 0xfd, 0x68,
6372 0xfb, 0x2d, 0xff, 0x64, 0xef, 0xc5, 0xfe, 0xf3, 0x67, 0xf2, 0xc3, 0x86,
6373 0x66, 0xab, 0xf3, 0x27, 0xa3, 0x46, 0x8d, 0x02, 0x9c, 0x37, 0x6a, 0x7a,
6374 0x69, 0x06, 0x3a, 0x14, 0xd8, 0x81, 0x62, 0x5c, 0xa3, 0x19, 0x06, 0x93,
6375 0x9f, 0xb0, 0x29, 0x2e, 0x7e, 0x99, 0x7a, 0x90, 0x04, 0x5e, 0x06, 0x26,
6376 0x00, 0x56, 0x30, 0x9b, 0xc4, 0xde, 0xad, 0x0a, 0x27, 0x12, 0x0f, 0x91,
6377 0xff, 0x51, 0x5b, 0x25, 0x1d, 0x2d, 0xf4, 0x35, 0xe3, 0xc8, 0x81, 0x37,
6378 0x60, 0x6e, 0xf1, 0x70, 0x2a, 0x86, 0x4b, 0x83, 0xee, 0xa0, 0x3f, 0x5b,
6379 0x15, 0x1c, 0x9e, 0xbd, 0xcd, 0x17, 0xa8, 0x6e, 0xe2, 0x03, 0xa0, 0x3d,
6380 0xe2, 0x0b, 0xcc, 0xd3, 0xc6, 0xdf, 0x9e, 0xde, 0xc9, 0x7d, 0x5c, 0x1b,
6381 0x05, 0xa6, 0x06, 0xff, 0x9c, 0x03, 0x2b, 0xf1, 0x74, 0xfa, 0x4d, 0x97,
6382 0x06, 0x19, 0xeb, 0x1e, 0x27, 0xa2, 0x60, 0x21, 0x25, 0xe4, 0xe2, 0x7c,
6383 0x40, 0xc1, 0x10, 0x30, 0xc4, 0x60, 0xa0, 0xbf, 0x2f, 0x80, 0x85, 0x80,
6384 0x29, 0xf1, 0x45, 0xb4, 0x3a, 0x1c, 0x8b, 0x05, 0x78, 0x8f, 0x2e, 0x62,
6385 0x31, 0xc2, 0xe4, 0x93, 0x62, 0x14, 0x91, 0x6c, 0x89, 0xc4, 0x76, 0x92,
6386 0x2b, 0x43, 0x5c, 0x4f, 0xf6, 0xc5, 0x68, 0xfd, 0x8b, 0x8d, 0x6e, 0xc8,
6387 0x9e, 0x12, 0x4b, 0xc7, 0x39, 0x95, 0xd7, 0x14, 0x88, 0x21, 0x7f, 0x14,
6388 0xde, 0x84, 0xa0, 0x6a, 0xc2, 0xb9, 0x82, 0x8f, 0xd8, 0x40, 0x08, 0xd2,
6389 0x8f, 0x2c, 0x38, 0xbb, 0x4d, 0x56, 0x37, 0x9e, 0x03, 0x3d, 0x73, 0x4b,
6390 0x3a, 0xb4, 0xb0, 0x6b, 0x44, 0x6a, 0xee, 0x59, 0x8d, 0x68, 0xcc, 0x1a,
6391 0xe8, 0x40, 0x41, 0xf3, 0x2c, 0x8e, 0x2c, 0xe9, 0xa2, 0xce, 0x30, 0x2e,
6392 0x3a, 0xd6, 0x8c, 0xe4, 0xb3, 0x89, 0x27, 0xa4, 0x48, 0xae, 0xc8, 0x66,
6393 0x88, 0x98, 0xbc, 0xce, 0x2a, 0xf5, 0xe5, 0xde, 0x10, 0x7f, 0x9d, 0x96,
6394 0x1c, 0x32, 0x99, 0x80, 0x02, 0x8a, 0x07, 0x46, 0x5d, 0xae, 0xe4, 0x80,
6395 0x13, 0x6e, 0x09, 0x30, 0x8b, 0xe3, 0x8a, 0x85, 0x63, 0x82, 0xaa, 0x3c,
6396 0xab, 0x3e, 0xf8, 0x64, 0xaf, 0x57, 0x02, 0xd5, 0xd1, 0x55, 0x3c, 0x97,
6397 0x68, 0xd4, 0x39, 0x85, 0xfe, 0x8c, 0x85, 0x74, 0x2e, 0xfa, 0x29, 0x89,
6398 0x5f, 0x51, 0x99, 0x32, 0x32, 0x01, 0xab, 0x5b, 0xf8, 0x68, 0x0c, 0xdb,
6399 0x04, 0x07, 0xed, 0x2d, 0x12, 0x09, 0x15, 0x6f, 0x5c, 0x8e, 0xaa, 0xb4,
6400 0xc4, 0x11, 0x29, 0x9e, 0x77, 0xab, 0xc7, 0xc6, 0xe3, 0x71, 0x4a, 0x56,
6401 0xcc, 0x14, 0x5d, 0x31, 0x8b, 0x84, 0x9c, 0xe5, 0x42, 0xd0, 0x99, 0xbb,
6402 0x85, 0x28, 0x38, 0xae, 0xd1, 0x44, 0x01, 0x3d, 0x8a, 0x5c, 0x07, 0x3d,
6403 0xfc, 0x56, 0x87, 0x94, 0xc5, 0x59, 0xa4, 0xdf, 0x92, 0x4f, 0x75, 0xa3,
6404 0xde, 0xd8, 0x75, 0x23, 0x76, 0xc9, 0xf0, 0xb2, 0x3e, 0x6d, 0x52, 0x16,
6405 0x9a, 0xea, 0x5e, 0x0c, 0x3b, 0x8d, 0x7e, 0x3f, 0x71, 0x39, 0x90, 0xef,
6406 0x86, 0x8e, 0x6a, 0xc9, 0x53, 0xeb, 0x02, 0x5d, 0xf1, 0xc9, 0xab, 0x6b,
6407 0x7d, 0xd4, 0xf1, 0x00, 0xc5, 0xe8, 0x49, 0x00, 0x3d, 0x19, 0xe3, 0x42,
6408 0x63, 0x75, 0x53, 0xe4, 0x05, 0x0b, 0xb1, 0x69, 0x0e, 0x0c, 0xdc, 0x61,
6409 0xef, 0xaa, 0x4c, 0x1b, 0x67, 0x0d, 0xb3, 0xec, 0x71, 0xa0, 0x94, 0x66,
6410 0x6a, 0x74, 0x43, 0x99, 0xb2, 0x50, 0xab, 0x7c, 0x70, 0x62, 0xce, 0xfd,
6411 0x4d, 0x14, 0xd2, 0x0b, 0x5f, 0xe9, 0xce, 0xae, 0x89, 0x9c, 0x98, 0x99,
6412 0x8e, 0x21, 0x39, 0xd6, 0x1d, 0xca, 0xf3, 0x30, 0xa5, 0xb8, 0xce, 0x1b,
6413 0x64, 0x8a, 0xd2, 0x19, 0xa9, 0x4c, 0xc4, 0x27, 0x66, 0x7b, 0x6c, 0x10,
6414 0x23, 0xe0, 0xb4, 0xbd, 0x0f, 0xbb, 0xfe, 0x63, 0xf6, 0x4d, 0x9a, 0x79,
6415 0xf5, 0xce, 0x81, 0x02, 0x67, 0xb4, 0x96, 0xde, 0x4d, 0x84, 0x87, 0x2f,
6416 0x83, 0x55, 0xc6, 0xf8, 0x8b, 0xb3, 0x1b, 0xe7, 0x10, 0x61, 0xc8, 0x29,
6417 0x43, 0xc7, 0x5a, 0x97, 0x86, 0x18, 0xe6, 0xf9, 0x34, 0x89, 0xed, 0xf2,
6418 0xf0, 0x26, 0x48, 0x32, 0xe4, 0x75, 0xd9, 0x53, 0x10, 0x06, 0x73, 0x23,
6419 0x69, 0x41, 0xd7, 0x8d, 0xe2, 0xab, 0x38, 0x35, 0x1c, 0x27, 0xe7, 0x62,
6420 0xcc, 0x3a, 0x29, 0x1e, 0xaa, 0x2c, 0x97, 0x17, 0x28, 0x06, 0x82, 0x5e,
6421 0x3b, 0x91, 0x59, 0x8b, 0x32, 0xb1, 0x0e, 0x34, 0x19, 0x93, 0x9c, 0x34,
6422 0x8e, 0xf7, 0x8f, 0x5d, 0xa3, 0x24, 0x72, 0xc9, 0xd1, 0x09, 0x83, 0x75,
6423 0xfa, 0xd1, 0x9b, 0xfc, 0x16, 0x2d, 0xcb, 0x2e, 0x3b, 0xa2, 0x53, 0x8c,
6424 0xd2, 0x96, 0xf0, 0x04, 0x30, 0xf1, 0x0c, 0xd4, 0x79, 0x24, 0x24, 0x39,
6425 0xcb, 0xf8, 0xc7, 0x91, 0x13, 0xcf, 0x00, 0x1e, 0xbf, 0x95, 0x83, 0x28,
6426 0x1f, 0x34, 0xbb, 0x39, 0x69, 0x9c, 0x89, 0x5e, 0x2f, 0x1e, 0x82, 0x5a,
6427 0x0b, 0x8a, 0x4f, 0x6f, 0x91, 0xa5, 0x77, 0xbd, 0x32, 0x1f, 0x7d, 0x82,
6428 0xc5, 0x1e, 0xce, 0xe3, 0xea, 0xfa, 0x8b, 0x86, 0xc6, 0xb2, 0x8e, 0xd2,
6429 0x79, 0x23, 0x8a, 0x8e, 0xd9, 0xbf, 0x88, 0x72, 0xa6, 0x60, 0x4e, 0x06,
6430 0x2a, 0xc9, 0x28, 0xd1, 0x07, 0x18, 0x05, 0xf8, 0x04, 0x74, 0x36, 0xd8,
6431 0x3a, 0x1a, 0xac, 0xab, 0xc2, 0xa9, 0x31, 0x1c, 0x05, 0xa1, 0x8d, 0x11,
6432 0x0f, 0x6c, 0x89, 0xe6, 0x7a, 0x14, 0xbd, 0xcb, 0xab, 0xe4, 0x00, 0xff,
6433 0x0d, 0xc2, 0xa1, 0xa2, 0xa5, 0xc8, 0x5d, 0x15, 0x23, 0xa1, 0x51, 0xbc,
6434 0x21, 0x7f, 0xc5, 0xbe, 0x15, 0xc4, 0xdf, 0x97, 0x8f, 0x2a, 0x4d, 0xed,
6435 0x16, 0xad, 0x7d, 0xb9, 0xd6, 0x8d, 0xae, 0x99, 0xa4, 0x34, 0x20, 0xaf,
6436 0x11, 0x76, 0xfe, 0x0a, 0xcc, 0xe6, 0xac, 0x6a, 0x0e, 0x77, 0x4d, 0x97,
6437 0x1f, 0xb2, 0x3b, 0x47, 0x3c, 0x68, 0x03, 0xc4, 0x02, 0x35, 0x41, 0x88,
6438 0xfe, 0x67, 0x8d, 0xd7, 0x4e, 0x98, 0x7b, 0x0f, 0x9a, 0x19, 0x17, 0x9c,
6439 0x3e, 0x11, 0x26, 0x36, 0xff, 0x87, 0xd6, 0x87, 0x51, 0x81, 0xb2, 0x1e,
6440 0xe5, 0x69, 0x7e, 0x61, 0x90, 0x24, 0x2c, 0x9b, 0x7b, 0xee, 0x20, 0xfd,
6441 0xe8, 0x68, 0x8c, 0x42, 0x03, 0xa8, 0xfe, 0xbc, 0xbf, 0xbf, 0xdb, 0xdf,
6442 0xaa, 0x6d, 0xf1, 0xb4, 0xea, 0x95, 0x37, 0xa3, 0xe8, 0x90, 0x1c, 0xc0,
6443 0xc8, 0x7c, 0xc1, 0xad, 0x05, 0xc5, 0x9f, 0x6e, 0x39, 0xe1, 0x19, 0x3e,
6444 0x0e, 0x4c, 0x7c, 0x1d, 0x81, 0x5c, 0x75, 0x14, 0xae, 0xc3, 0x05, 0xf5,
6445 0xf9, 0x72, 0xf2, 0x75, 0x5b, 0xf3, 0x1d, 0xb0, 0xf5, 0x52, 0xd4, 0xf4,
6446 0x2b, 0x52, 0x5f, 0x92, 0xbb, 0x94, 0xcd, 0x50, 0x1d, 0x6e, 0x04, 0x02,
6447 0x20, 0x91, 0x2b, 0x9a, 0x04, 0x0c, 0xf9, 0x6d, 0x86, 0xcd, 0xe1, 0x50,
6448 0x84, 0xc0, 0x02, 0x27, 0xa4, 0x5d, 0x98, 0x1b, 0x67, 0x6c, 0xf4, 0x4d,
6449 0x4e, 0x0e, 0xe0, 0xc1, 0x64, 0x04, 0xf2, 0x3a, 0x8e, 0xe5, 0x0e, 0x68,
6450 0x9d, 0x1d, 0x9d, 0x69, 0xd4, 0xbd, 0x52, 0xdc, 0x65, 0x0c, 0x09, 0x80,
6451 0x64, 0x9c, 0xe5, 0x63, 0xf2, 0x32, 0x7b, 0x7b, 0x3b, 0x30, 0xe1, 0xc0,
6452 0x4e, 0xc7, 0x19, 0x64, 0x1d, 0x83, 0xc3, 0xc0, 0x1a, 0xd9, 0x55, 0x75,
6453 0xbd, 0x61, 0x03, 0x5e, 0x6a, 0x7a, 0xc3, 0x44, 0xd8, 0x90, 0x69, 0xf2,
6454 0x3f, 0x65, 0x2b, 0x10, 0x5f, 0xfc, 0xb4, 0x28, 0x2b, 0xf2, 0x95, 0xcb,
6455 0x4d, 0xcb, 0x2b, 0x81, 0x99, 0xcd, 0x92, 0x59, 0x5e, 0xdc, 0x7b, 0x13,
6456 0x39, 0x9d, 0x30, 0x3b, 0xca, 0x46, 0xa5, 0x25, 0x0b, 0x59, 0x8d, 0x17,
6457 0xa3, 0xa2, 0x5d, 0x76, 0x6b, 0xf1, 0x20, 0x52, 0x4f, 0x8c, 0xe1, 0xd5,
6458 0xa4, 0x07, 0x85, 0x00, 0x45, 0xae, 0xb2, 0xaf, 0x7d, 0x28, 0xc1, 0xbd,
6459 0x69, 0x5c, 0x56, 0x74, 0x35, 0x2b, 0x59, 0xe9, 0x43, 0x28, 0xa6, 0x79,
6460 0x59, 0x2b, 0xf3, 0xbf, 0x6c, 0x3c, 0xfc, 0x0f, 0x23, 0x96, 0x2b, 0xf2,
6461 0x3b, 0xdc, 0x63, 0xf9, 0xf4, 0x86, 0x5d, 0xfc, 0xbd, 0x9e, 0x84, 0x39,
6462 0x7a, 0x55, 0x5e, 0x63, 0xfe, 0x67, 0x7b, 0xfd, 0xed, 0x1a, 0xf3, 0x67,
6463 0xf7, 0x98, 0xc4, 0x12, 0x96, 0x65, 0x68, 0x22, 0x96, 0xd6, 0x40, 0x4c,
6464 0xaf, 0x16, 0x05, 0x29, 0x90, 0x92, 0xf7, 0xa2, 0xe9, 0x2e, 0xa8, 0xf2,
6465 0x5c, 0xe7, 0x94, 0x33, 0x02, 0x17, 0x66, 0x32, 0x9d, 0x74, 0x03, 0x6e,
6466 0x40, 0x15, 0xf4, 0x28, 0x9c, 0xd1, 0xfc, 0xa0, 0xa1, 0xb2, 0x44, 0x94,
6467 0x53, 0x74, 0x77, 0x46, 0x98, 0x22, 0x11, 0x8d, 0xa6, 0x71, 0x3a, 0x13,
6468 0xe3, 0x57, 0x6c, 0xec, 0xbe, 0xe7, 0xb7, 0xe0, 0x60, 0x08, 0xd9, 0xeb,
6469 0x43, 0x8c, 0xc5, 0x14, 0x25, 0xde, 0xbe, 0xec, 0x22, 0x11, 0x9d, 0x98,
6470 0xdd, 0x0f, 0xd7, 0xc9, 0xe8, 0x93, 0x0a, 0x51, 0x55, 0x28, 0x9b, 0xa2,
6471 0x11, 0xb3, 0x61, 0x28, 0xe0, 0x53, 0x5d, 0xa3, 0x1f, 0x3a, 0x07, 0xeb,
6472 0x16, 0x23, 0xb9, 0x60, 0xe5, 0x2d, 0x46, 0xa4, 0x16, 0xa3, 0x44, 0x85,
6473 0x3b, 0xb9, 0x88, 0x23, 0x15, 0xc4, 0xa0, 0x67, 0x81, 0xad, 0x37, 0xee,
6474 0x55, 0x45, 0x3a, 0x0f, 0xce, 0x8e, 0x5c, 0x27, 0x72, 0xb7, 0xbb, 0xba,
6475 0x67, 0x29, 0x9e, 0x1c, 0x0a, 0xcf, 0x70, 0xc0, 0x66, 0xd4, 0xa0, 0x66,
6476 0xf3, 0x1c, 0x10, 0x6d, 0xbb, 0xe8, 0xb3, 0x02, 0x75, 0x40, 0xaf, 0xfd,
6477 0x71, 0x6e, 0xae, 0x56, 0x30, 0xce, 0xd2, 0x51, 0x17, 0xff, 0x36, 0x4e,
6478 0xaf, 0x12, 0xcc, 0x32, 0xc2, 0xfb, 0xb6, 0x9a, 0x82, 0xee, 0x13, 0x38,
6479 0x56, 0xf0, 0xab, 0xe4, 0x2a, 0xaf, 0x50, 0xd7, 0xf0, 0xb8, 0x93, 0x1d,
6480 0x8a, 0x86, 0x27, 0xd4, 0xab, 0xe5, 0x6a, 0x5d, 0x29, 0x9b, 0x28, 0xf0,
6481 0x79, 0xb1, 0xb0, 0xf9, 0x78, 0x90, 0x59, 0xdf, 0xdc, 0x75, 0x18, 0x6d,
6482 0x44, 0x86, 0x12, 0x2a, 0x86, 0xaa, 0x97, 0xaa, 0x32, 0x8f, 0x32, 0x08,
6483 0x75, 0xe0, 0xea, 0x36, 0x1d, 0x25, 0xea, 0x0e, 0x35, 0x09, 0x08, 0xd3,
6484 0xd4, 0xbf, 0x72, 0x66, 0x28, 0x06, 0xf0, 0x3d, 0x56, 0xb9, 0x31, 0x9e,
6485 0x77, 0x9b, 0xa2, 0x4a, 0x7e, 0x3a, 0x91, 0x3b, 0x12, 0x0f, 0x39, 0xdf,
6486 0x4b, 0x71, 0x91, 0x52, 0xd8, 0x12, 0xe3, 0xfc, 0xea, 0x59, 0x09, 0x1d,
6487 0x6b, 0x9e, 0x37, 0xbd, 0x2e, 0x46, 0x8a, 0x35, 0x4e, 0xe8, 0x4c, 0x4f,
6488 0xc8, 0xb9, 0xe2, 0xd1, 0x89, 0x64, 0xe7, 0x55, 0x42, 0x01, 0x5e, 0xd6,
6489 0x87, 0x16, 0xa8, 0x69, 0x62, 0x4e, 0xd8, 0xca, 0x67, 0x5e, 0x88, 0xcd,
6490 0x6f, 0xc3, 0x76, 0x1f, 0xcc, 0x6f, 0xc7, 0x2b, 0x9e, 0x7c, 0x4a, 0x4d,
6491 0xd3, 0x91, 0xba, 0xca, 0x13, 0x22, 0x08, 0x98, 0x2b, 0x9c, 0x33, 0x1f,
6492 0xe3, 0x13, 0x60, 0xa0, 0x25, 0x1e, 0x73, 0xac, 0xa3, 0xb5, 0x86, 0x4e,
6493 0xb1, 0x0d, 0xcd, 0x91, 0x48, 0x24, 0x4b, 0xc4, 0x24, 0xb3, 0x91, 0x64,
6494 0x45, 0xd9, 0x2c, 0x72, 0x81, 0xc7, 0x09, 0xdf, 0x24, 0x60, 0xbe, 0x60,
6495 0xea, 0x87, 0xe4, 0xb6, 0xe9, 0x39, 0x80, 0x63, 0x80, 0x3e, 0x36, 0xcd,
6496 0xb2, 0xc2, 0x94, 0x06, 0xd9, 0x41, 0x11, 0x03, 0xf4, 0x38, 0x9a, 0x86,
6497 0x8d, 0xe1, 0x90, 0x17, 0xe9, 0x8e, 0xec, 0xb2, 0x2a, 0xc8, 0x22, 0x77,
6498 0xc4, 0xf9, 0x0d, 0x7d, 0xd2, 0x8c, 0xf8, 0x9a, 0xa4, 0x39, 0x4e, 0xa6,
6499 0xf1, 0x15, 0x72, 0x70, 0x7a, 0x95, 0xe5, 0x9c, 0xd0, 0xd6, 0x64, 0xcf,
6500 0x1c, 0x6e, 0x27, 0xf2, 0x00, 0xb2, 0xaf, 0xa9, 0x8c, 0xd6, 0x81, 0x61,
6501 0xa7, 0x0b, 0x52, 0x61, 0xce, 0x61, 0x55, 0x83, 0xc1, 0x9b, 0x8d, 0x55,
6502 0x77, 0x93, 0xc9, 0xd4, 0xa3, 0x25, 0x70, 0x38, 0x48, 0x49, 0x1d, 0x4d,
6503 0xbc, 0x04, 0x95, 0xf6, 0x1d, 0x2d, 0x70, 0x8b, 0x28, 0x81, 0x86, 0x37,
6504 0xf1, 0xb8, 0xcb, 0x12, 0x1d, 0x28, 0xb6, 0x48, 0x7a, 0x71, 0x55, 0x93,
6505 0xe0, 0xb7, 0x25, 0x18, 0x94, 0x57, 0x37, 0x7b, 0xa0, 0xb2, 0x71, 0xbe,
6506 0x46, 0xb1, 0xfd, 0xfd, 0x81, 0xfe, 0x75, 0xe7, 0xfb, 0x03, 0x30, 0x75,
6507 0x81, 0x9f, 0xbf, 0x3f, 0xc0, 0x65, 0xc2, 0x61, 0xfb, 0xf1, 0xc7, 0x1f,
6508 0xbf, 0xf0, 0x19, 0x3a, 0x3a, 0xfa, 0x76, 0x10, 0x7d, 0xb3, 0x47, 0xf9,
6509 0x1a, 0x94, 0xd0, 0xd7, 0x94, 0xf1, 0x92, 0xee, 0xa1, 0x4a, 0x85, 0x47,
6510 0x18, 0x32, 0x1f, 0xf5, 0xab, 0x46, 0x6d, 0x64, 0xbb, 0x0d, 0xb4, 0x3a,
6511 0x16, 0xc2, 0xa4, 0xf8, 0x4b, 0xd4, 0xf9, 0x5e, 0x54, 0xa7, 0xab, 0x1c,
6512 0x38, 0xe1, 0x7a, 0xe6, 0xbb, 0x13, 0x33, 0xde, 0x5b, 0x72, 0xf4, 0x2f,
6513 0xaa, 0x2b, 0x16, 0xef, 0xf5, 0x49, 0x89, 0xe8, 0x0e, 0x4e, 0x86, 0x97,
6514 0xbd, 0x64, 0x26, 0x8e, 0xf2, 0x05, 0xd6, 0x0f, 0x58, 0xef, 0xf1, 0xfc,
6515 0x1a, 0x4f, 0x0d, 0x7c, 0xd4, 0xd7, 0xc5, 0xe9, 0x62, 0x29, 0xf3, 0x45,
6516 0x81, 0x29, 0x42, 0xa3, 0x7c, 0x3a, 0xe5, 0x14, 0x82, 0x68, 0x9d, 0x3f,
6517 0x03, 0x9b, 0x33, 0x4e, 0x36, 0x78, 0xd6, 0x95, 0xfd, 0x38, 0x69, 0x40,
6518 0x69, 0x93, 0x91, 0xf3, 0x59, 0x5a, 0x55, 0x9a, 0x5c, 0x84, 0x4f, 0x03,
6519 0x7b, 0xd0, 0x64, 0x82, 0xeb, 0x90, 0x6d, 0x7b, 0xe4, 0x42, 0x26, 0x8b,
6520 0x8c, 0x27, 0x86, 0x7b, 0xd1, 0xbc, 0xe9, 0x70, 0x6f, 0x88, 0xf2, 0xa0,
6521 0x26, 0x4e, 0xf3, 0xc5, 0x38, 0x5a, 0x97, 0xc1, 0x9b, 0xd3, 0xd7, 0x6f,
6522 0xca, 0xfc, 0x75, 0xc6, 0x21, 0x11, 0xba, 0x74, 0xfe, 0x0f, 0xc9, 0x3e,
6523 0xc3, 0xba, 0x1d, 0xf8, 0xeb, 0x41, 0x3c, 0xfb, 0xf9, 0x20, 0x01, 0x95,
6524 0xaa, 0xb7, 0x73, 0x90, 0x94, 0x1d, 0x95, 0x88, 0x9d, 0x4f, 0xc9, 0x3d,
6525 0xf0, 0x2e, 0xf0, 0x42, 0xd5, 0x59, 0x51, 0x2e, 0x3a, 0x62, 0xd0, 0xca,
6526 0x67, 0x57, 0x1b, 0x7a, 0xbe, 0x5f, 0x37, 0x05, 0xe8, 0x85, 0xc7, 0xe8,
6527 0x42, 0xa8, 0xcd, 0x90, 0x37, 0xee, 0x2b, 0xfe, 0x44, 0x9d, 0x2d, 0x8d,
6528 0xab, 0x07, 0x73, 0x4e, 0x9a, 0xd7, 0x18, 0x8a, 0x29, 0x4c, 0xe2, 0xe9,
6529 0x1b, 0x3d, 0x06, 0x9f, 0xd4, 0x5c, 0x22, 0xbe, 0x09, 0x1b, 0xda, 0xeb,
6530 0x82, 0xbc, 0xd4, 0x44, 0xe2, 0xe6, 0x70, 0x18, 0xa4, 0x37, 0xc1, 0x7a,
6531 0x35, 0xa8, 0x53, 0xf2, 0x1f, 0xa0, 0x94, 0x2d, 0x30, 0x7d, 0x0b, 0x7d,
6532 0x89, 0xc9, 0x4d, 0x9a, 0x2f, 0x4a, 0x18, 0x05, 0x34, 0x10, 0x1d, 0x1b,
6533 0x99, 0xc7, 0x73, 0xbb, 0x57, 0x94, 0x72, 0x0e, 0x26, 0x3c, 0x66, 0x45,
6534 0x53, 0x4e, 0x41, 0x58, 0xd9, 0x5b, 0x2f, 0x17, 0x18, 0x2e, 0x28, 0x8d,
6535 0xb2, 0x81, 0x37, 0x4d, 0x73, 0x76, 0xac, 0x8f, 0x50, 0x02, 0x86, 0x51,
6536 0x3b, 0x36, 0x7e, 0xd3, 0xfb, 0x74, 0x41, 0x3c, 0x7b, 0x80, 0x89, 0x4a,
6537 0x18, 0xcf, 0x37, 0x4c, 0xf0, 0x94, 0x0b, 0x95, 0xde, 0x74, 0xd9, 0x03,
6538 0x2c, 0x8f, 0xa4, 0xa8, 0xd8, 0x50, 0xf4, 0x6c, 0xc4, 0xcb, 0xb3, 0x41,
6539 0x88, 0x4b, 0xea, 0x89, 0x9b, 0xf8, 0x3e, 0xea, 0x7c, 0xb1, 0xde, 0x73,
6540 0xf0, 0x14, 0x6c, 0x93, 0xe3, 0xc1, 0x71, 0x23, 0x0a, 0xf3, 0x04, 0xf9,
6541 0x95, 0x45, 0x2b, 0x5f, 0xa2, 0xa8, 0x4a, 0xe1, 0x3d, 0x80, 0x86, 0x99,
6542 0x49, 0x2f, 0x39, 0x3e, 0x72, 0xc7, 0xa5, 0x64, 0xa2, 0xe6, 0x55, 0xec,
6543 0xfc, 0x7e, 0xbd, 0xdc, 0x60, 0x5d, 0x6a, 0x48, 0x46, 0xd4, 0xc5, 0xc9,
6544 0x5b, 0xf2, 0x94, 0xc1, 0xa5, 0x02, 0x57, 0xa8, 0x04, 0x44, 0x34, 0x2b,
6545 0x06, 0x83, 0xd8, 0xb5, 0x34, 0x39, 0x6b, 0x72, 0x52, 0x36, 0x36, 0xf3,
6546 0x2c, 0x4d, 0x8d, 0xd3, 0x3e, 0x53, 0xca, 0x9b, 0x6a, 0x72, 0x70, 0x75,
6547 0x3f, 0x97, 0x64, 0xaf, 0x45, 0x59, 0x73, 0x51, 0x1b, 0xaf, 0x55, 0x45,
6548 0x5e, 0x07, 0xf4, 0xa1, 0x39, 0x63, 0x7a, 0x5b, 0x4f, 0xd3, 0x42, 0x75,
6549 0xf4, 0x2a, 0x4b, 0x7f, 0x16, 0xdb, 0x3b, 0xc9, 0x6e, 0xd2, 0x22, 0xcf,
6550 0x48, 0x32, 0x52, 0x30, 0x7f, 0x28, 0x96, 0x27, 0x68, 0xdc, 0x6b, 0xc7,
6551 0x1f, 0xde, 0x9f, 0x7d, 0x3c, 0x3e, 0xfa, 0xf8, 0xd5, 0x87, 0x77, 0xaf,
6552 0xce, 0x4e, 0xd6, 0x9a, 0x29, 0x12, 0x13, 0x0e, 0x4f, 0xa1, 0xae, 0x5e,
6553 0xa2, 0x27, 0x46, 0x0d, 0x15, 0x1e, 0x99, 0x53, 0x82, 0xc8, 0xf1, 0x40,
6554 0x69, 0x6b, 0xf4, 0x37, 0x12, 0xb2, 0x42, 0xf0, 0xc6, 0x70, 0xc3, 0x05,
6555 0x9a, 0xa8, 0xfd, 0x9a, 0x97, 0x40, 0xcf, 0xa0, 0x78, 0x08, 0x75, 0x82,
6556 0x41, 0x41, 0x7f, 0x2b, 0xc9, 0x1c, 0x8e, 0x37, 0xca, 0xc9, 0x63, 0x5b,
6557 0x54, 0x39, 0xec, 0x91, 0x90, 0x91, 0x02, 0xeb, 0x9a, 0x97, 0x1f, 0xc1,
6558 0x7c, 0x02, 0xdb, 0x5d, 0x5a, 0x23, 0x7c, 0x1c, 0xad, 0xe1, 0x48, 0xc0,
6559 0xbf, 0x3d, 0x99, 0xe4, 0xa8, 0xa8, 0xd6, 0xba, 0x51, 0x92, 0xd2, 0x89,
6560 0xd3, 0xf4, 0x62, 0x14, 0xf6, 0xe4, 0xf9, 0xf7, 0x72, 0x16, 0x30, 0x96,
6561 0x1f, 0x33, 0x5f, 0xf7, 0x93, 0xbb, 0x84, 0x8e, 0xb4, 0xbc, 0x75, 0xbc,
6562 0x28, 0x48, 0x4c, 0x7c, 0x0b, 0x66, 0x11, 0xde, 0x48, 0xaf, 0x34, 0xf8,
6563 0xaf, 0x0f, 0x81, 0x5a, 0xda, 0xbc, 0x37, 0xf2, 0x29, 0xe9, 0x08, 0xe4,
6564 0xb3, 0x25, 0xef, 0xfa, 0xc5, 0xd1, 0xe5, 0x9b, 0x90, 0x1d, 0xef, 0x94,
6565 0xc1, 0x08, 0x2b, 0x92, 0x4f, 0xa2, 0xac, 0xe4, 0x80, 0xbc, 0x1b, 0x0c,
6566 0x22, 0x2a, 0xaa, 0x98, 0xa6, 0xc3, 0x22, 0xc6, 0x6f, 0xe2, 0x8f, 0xf1,
6567 0xa7, 0xc0, 0xd6, 0x8d, 0xe1, 0x2e, 0xfe, 0x72, 0x3c, 0xf8, 0xc3, 0xf6,
6568 0x36, 0x3a, 0x30, 0x16, 0x40, 0x97, 0x75, 0x78, 0x25, 0x2b, 0xe1, 0x64,
6569 0xce, 0xfa, 0x65, 0xbe, 0x21, 0x19, 0x5b, 0x6c, 0x98, 0xc4, 0x37, 0xa0,
6570 0xf5, 0x13, 0x1f, 0x29, 0x53, 0xb7, 0xe4, 0x71, 0x98, 0x4a, 0x13, 0x90,
6571 0x17, 0x60, 0x37, 0x4c, 0x7d, 0x5f, 0xc4, 0x7a, 0x7a, 0x3e, 0x60, 0xb6,
6572 0x9a, 0xc5, 0x23, 0xf8, 0x2b, 0xba, 0x24, 0x37, 0xdc, 0xbc, 0x33, 0x5e,
6573 0x96, 0xae, 0x6a, 0xc0, 0x76, 0x31, 0xe5, 0xda, 0x50, 0x99, 0x89, 0x2f,
6574 0x15, 0xb2, 0xe6, 0xe1, 0xb2, 0x49, 0x07, 0xc4, 0x0e, 0xc3, 0x78, 0xf4,
6575 0xe9, 0x36, 0x2e, 0xc6, 0x1c, 0x7b, 0x00, 0x8e, 0x19, 0xa6, 0xd3, 0xb4,
6576 0xba, 0x67, 0x3f, 0x5f, 0x53, 0x11, 0xe1, 0xa4, 0x61, 0x24, 0x20, 0x9c,
6577 0xa3, 0xab, 0x34, 0x43, 0xc7, 0x08, 0x79, 0x37, 0xd2, 0xca, 0x75, 0xf1,
6578 0x91, 0xb1, 0x66, 0xf5, 0x74, 0xf3, 0xed, 0x80, 0x82, 0x4e, 0xe7, 0x88,
6579 0xa6, 0x69, 0x79, 0x57, 0xc5, 0xa0, 0x2b, 0xa4, 0x94, 0x7d, 0xa2, 0xf2,
6580 0x1e, 0xcc, 0x82, 0x59, 0xc8, 0x54, 0xa5, 0xdb, 0x3f, 0xfa, 0x4b, 0x72,
6581 0x3f, 0xba, 0x46, 0x71, 0x67, 0x24, 0x25, 0xfb, 0x3b, 0x13, 0x74, 0x6c,
6582 0xb1, 0x51, 0x9c, 0x6a, 0xb8, 0x2e, 0x91, 0x88, 0x2b, 0x5f, 0x51, 0xbe,
6583 0x12, 0xc7, 0xef, 0xab, 0x3f, 0x00, 0x87, 0x58, 0x2b, 0x6b, 0x22, 0x99,
6584 0xbe, 0xe4, 0x6f, 0xe2, 0x00, 0x7e, 0x9e, 0x65, 0xc9, 0x54, 0xb6, 0xef,
6585 0x72, 0xd9, 0x06, 0x98, 0x67, 0x61, 0xca, 0x92, 0x9e, 0xd5, 0x18, 0xee,
6586 0x39, 0x67, 0xbd, 0xc7, 0x95, 0x5e, 0x76, 0x5a, 0x67, 0xf3, 0xbc, 0xff,
6587 0x6c, 0xcb, 0xfc, 0xaa, 0xdf, 0xfa, 0x19, 0xef, 0x34, 0x15, 0x76, 0xd3,
6588 0xeb, 0x7b, 0xce, 0xe1, 0x17, 0xda, 0x64, 0xdc, 0x63, 0xd9, 0xe2, 0x3f,
6589 0x1b, 0x53, 0x8c, 0x42, 0xa4, 0x8d, 0xe1, 0x5c, 0x6b, 0x5f, 0xef, 0x30,
6590 0x59, 0xc7, 0x1a, 0x68, 0x9d, 0x39, 0xba, 0x6d, 0x26, 0x51, 0x91, 0xc3,
6591 0x5e, 0xd7, 0xf6, 0x73, 0x9d, 0xb5, 0x98, 0xe6, 0x31, 0x11, 0x69, 0xee,
6592 0x10, 0x66, 0xe3, 0x89, 0x0e, 0xbb, 0x56, 0x87, 0xdb, 0xaa, 0x5a, 0xa7,
6593 0xdc, 0xe2, 0xc7, 0x47, 0x64, 0xa6, 0x3d, 0xc1, 0xd1, 0x36, 0x8a, 0xf9,
6594 0x52, 0x40, 0xbd, 0xf2, 0x13, 0xea, 0x29, 0x40, 0x4f, 0x3a, 0xb8, 0x75,
6595 0x5d, 0x81, 0x1e, 0x3a, 0x04, 0x81, 0xfa, 0xcb, 0x55, 0x05, 0x27, 0xa5,
6596 0xca, 0xbf, 0x3d, 0xe5, 0x54, 0xd4, 0x54, 0x86, 0xb7, 0xaa, 0x1b, 0xe0,
6597 0x24, 0x4a, 0x72, 0x19, 0x0d, 0x13, 0x35, 0xcf, 0xc8, 0x04, 0x90, 0xf8,
6598 0x99, 0xef, 0x18, 0xa1, 0x7c, 0x49, 0x0e, 0xb4, 0x1c, 0x74, 0xa2, 0xf5,
6599 0xa4, 0x7f, 0x05, 0xe3, 0x75, 0x70, 0x9c, 0xed, 0x03, 0xfc, 0x73, 0x87,
6600 0xfe, 0xdc, 0xed, 0x6c, 0x48, 0x25, 0x9e, 0xcb, 0x04, 0xa8, 0x57, 0x34,
6601 0x6f, 0x45, 0xce, 0x3d, 0xb0, 0x6a, 0x46, 0x97, 0x23, 0x6b, 0x6d, 0x22,
6602 0x90, 0x2d, 0xef, 0x33, 0xde, 0x6f, 0x5f, 0xa3, 0x54, 0x32, 0xcc, 0xd8,
6603 0x29, 0x7c, 0x93, 0xb0, 0x57, 0x1a, 0x56, 0x86, 0x59, 0x95, 0xc9, 0xd8,
6604 0x09, 0x9a, 0x8c, 0x3e, 0x16, 0xc9, 0x75, 0x5c, 0x5e, 0x47, 0x8b, 0x8a,
6605 0x8f, 0x03, 0x9c, 0xa0, 0xe6, 0x70, 0xf3, 0x69, 0x6a, 0x63, 0x20, 0xf2,
6606 0xe9, 0xbe, 0x7a, 0xc2, 0xec, 0x2e, 0x72, 0xc4, 0x77, 0x9a, 0xdf, 0xea,
6607 0x33, 0x3d, 0xa9, 0x93, 0x0b, 0x29, 0x28, 0xb0, 0x9b, 0xe4, 0xbc, 0xc6,
6608 0xc7, 0xdc, 0x64, 0xf3, 0x19, 0x2a, 0xcc, 0x58, 0xc4, 0x07, 0xc2, 0x76,
6609 0x02, 0x14, 0x43, 0x1f, 0xd7, 0x94, 0xf6, 0x0d, 0x1d, 0x8c, 0x8b, 0x40,
6610 0x4a, 0xa8, 0xe1, 0xd5, 0x74, 0x22, 0x01, 0x2b, 0xf9, 0x37, 0xdd, 0xec,
6611 0xa2, 0x07, 0x96, 0x9c, 0x90, 0xde, 0x54, 0x02, 0x1f, 0x3e, 0x64, 0x2a,
6612 0xaa, 0x8d, 0xce, 0x25, 0x8b, 0xe5, 0x20, 0xb1, 0x9e, 0x30, 0xf1, 0x9f,
6613 0x84, 0x5c, 0xba, 0x1c, 0x19, 0xf8, 0xed, 0x8f, 0x2b, 0xcd, 0x6a, 0x93,
6614 0xdc, 0x29, 0x9b, 0xf6, 0x20, 0xac, 0x7a, 0x66, 0x89, 0x70, 0x0f, 0x9c,
6615 0x59, 0x78, 0xa4, 0x87, 0x81, 0xb5, 0x45, 0xf9, 0x88, 0x23, 0xeb, 0xdc,
6616 0x46, 0xfc, 0x8e, 0x46, 0xc8, 0x25, 0x77, 0xc9, 0xdd, 0x8f, 0xe6, 0xa1,
6617 0xb8, 0x77, 0xf8, 0xf4, 0xd8, 0x39, 0xe8, 0x03, 0x1e, 0xe8, 0xbd, 0xf8,
6618 0xb0, 0xd7, 0xe3, 0x4f, 0x71, 0x3f, 0x3a, 0x3f, 0x1e, 0x5c, 0xe0, 0x27,
6619 0xe6, 0x98, 0xaf, 0xb5, 0x81, 0xc9, 0x5c, 0x8d, 0xe1, 0x92, 0xbb, 0x2a,
6620 0xc9, 0xca, 0x5a, 0x65, 0x6b, 0xeb, 0xae, 0x6b, 0x18, 0x57, 0x33, 0x50,
6621 0x6b, 0x89, 0x56, 0x94, 0xe9, 0x45, 0xf5, 0x1a, 0x11, 0x9f, 0x7c, 0xef,
6622 0x43, 0x73, 0xa0, 0xff, 0x78, 0xc3, 0xf8, 0xd2, 0xbb, 0xca, 0x9a, 0x26,
6623 0x5b, 0xa3, 0x5c, 0x5c, 0xa1, 0xd5, 0x57, 0xaa, 0x2b, 0xce, 0x7c, 0x01,
6624 0xa8, 0xe1, 0xeb, 0x50, 0xb2, 0x6c, 0x13, 0x5d, 0x02, 0x3b, 0x15, 0xeb,
6625 0xae, 0x48, 0x77, 0xcc, 0x72, 0x3b, 0x2a, 0x66, 0x92, 0x51, 0x01, 0x6a,
6626 0x4a, 0x39, 0x0e, 0x5c, 0x50, 0x10, 0xd0, 0x8e, 0x78, 0x53, 0xd4, 0x54,
6627 0x9d, 0x48, 0xd1, 0x69, 0x9b, 0x83, 0x7e, 0xc4, 0xba, 0xab, 0x89, 0x15,
6628 0xa7, 0xc8, 0x48, 0x68, 0x49, 0xb0, 0x7f, 0x00, 0xc7, 0x33, 0xe2, 0xe8,
6629 0xeb, 0x6c, 0x81, 0x99, 0x9e, 0xbe, 0x9a, 0x82, 0xda, 0x26, 0xde, 0xbf,
6630 0x48, 0xc0, 0x95, 0x79, 0xdb, 0x32, 0xdc, 0xaa, 0x16, 0x6a, 0x0a, 0x82,
6631 0x65, 0x3c, 0x5f, 0x0c, 0x3f, 0x25, 0xf7, 0x35, 0x97, 0xc6, 0xde, 0x76,
6632 0xdd, 0xa5, 0x41, 0x9f, 0x00, 0x03, 0x2c, 0x89, 0x0e, 0xf1, 0xcf, 0x07,
6633 0xef, 0x22, 0xce, 0xc7, 0xc3, 0xe7, 0x25, 0xab, 0x85, 0x6f, 0x0c, 0xf1,
6634 0xc9, 0x47, 0xf5, 0x6b, 0xc9, 0xd3, 0x1e, 0x88, 0xab, 0xfb, 0x28, 0xed,
6635 0xbb, 0xd1, 0x2b, 0x2c, 0x24, 0x3f, 0x79, 0xf7, 0x35, 0xb1, 0xda, 0xc5,
6636 0xf6, 0x0e, 0x65, 0x11, 0x18, 0xeb, 0x6d, 0x4c, 0x1f, 0xe1, 0x22, 0x0c,
6637 0x4e, 0x01, 0x82, 0x8b, 0xcf, 0xd3, 0x1e, 0x52, 0xe4, 0x05, 0xbc, 0x3b,
6638 0xd0, 0xe9, 0x45, 0xf5, 0x4c, 0xe3, 0xdf, 0x5d, 0x7d, 0x30, 0x04, 0xc5,
6639 0x79, 0xf1, 0xbf, 0x59, 0x20, 0xaf, 0xb4, 0x83, 0x27, 0x5d, 0x79, 0x17,
6640 0xff, 0x0b, 0x9b, 0x28, 0xde, 0x7a, 0xf8, 0x1b, 0x0d, 0xee, 0x6c, 0xa1,
6641 0x79, 0x32, 0x3a, 0x74, 0x88, 0xff, 0xbd, 0xf1, 0x71, 0xfc, 0xf8, 0x34,
6642 0xfd, 0x22, 0xbc, 0xa3, 0xb8, 0x90, 0x90, 0x2b, 0xd6, 0xa6, 0x20, 0xd3,
6643 0x52, 0xe9, 0xc2, 0x64, 0x4c, 0x00, 0x42, 0x0e, 0xc0, 0xf3, 0x1a, 0x67,
6644 0x46, 0xd5, 0xec, 0x71, 0xad, 0x1b, 0xa5, 0xa2, 0x37, 0xf7, 0x74, 0x94,
6645 0x4f, 0x3d, 0xcd, 0xa1, 0xe6, 0x90, 0x20, 0x3b, 0x6d, 0x47, 0xb4, 0x05,
6646 0x32, 0xd2, 0x25, 0x3d, 0x8d, 0xad, 0xa3, 0xe6, 0x69, 0x36, 0xb6, 0x12,
6647 0xd7, 0x62, 0x58, 0x45, 0x03, 0x5f, 0xe5, 0x37, 0x29, 0x53, 0x8a, 0xe6,
6648 0xc6, 0x2a, 0xb0, 0x63, 0xc9, 0x84, 0xcc, 0x3a, 0x60, 0x1a, 0xe3, 0x3f,
6649 0xd2, 0xcc, 0x6e, 0x25, 0x5b, 0x2d, 0xf6, 0x00, 0x42, 0xba, 0x48, 0x45,
6650 0xef, 0x97, 0xaa, 0xa0, 0xe6, 0x70, 0x9a, 0xaf, 0xc6, 0x99, 0x1b, 0x5a,
6651 0x4a, 0x46, 0xfc, 0xaa, 0x0c, 0xcb, 0x7c, 0x8d, 0x1e, 0x86, 0x8e, 0x43,
6652 0x92, 0x4e, 0x68, 0x2b, 0xd4, 0x83, 0xce, 0x47, 0x33, 0xbd, 0x41, 0xd2,
6653 0x29, 0xef, 0x90, 0xca, 0xc3, 0x5b, 0x5a, 0x33, 0x69, 0xf2, 0x0c, 0xff,
6654 0x9b, 0x61, 0x90, 0xe4, 0x3f, 0x02, 0xdc, 0x28, 0xac, 0x65, 0xb8, 0x8f,
6655 0x6a, 0x92, 0x24, 0x94, 0x4f, 0xaa, 0x20, 0x56, 0x7b, 0x4a, 0x2d, 0xfe,
6656 0xf4, 0xfe, 0x51, 0x46, 0xba, 0xaa, 0x72, 0x6a, 0x8b, 0x3b, 0x06, 0xba,
6657 0x67, 0xc1, 0x36, 0x99, 0x03, 0x6e, 0xa0, 0x0a, 0x93, 0x10, 0x99, 0x6f,
6658 0x31, 0xac, 0x97, 0x8e, 0x3e, 0x71, 0xd5, 0xd6, 0xa4, 0x69, 0x44, 0x9a,
6659 0xf2, 0x44, 0x2e, 0xad, 0x0d, 0x90, 0x9f, 0xfc, 0x03, 0x18, 0x72, 0x44,
6660 0x7e, 0x44, 0x3d, 0x07, 0x36, 0xdf, 0x84, 0x1e, 0x82, 0x9e, 0x23, 0x98,
6661 0xeb, 0xc7, 0x57, 0xa7, 0xef, 0xa3, 0x75, 0xb4, 0xaa, 0x9a, 0x8e, 0x0b,
6662 0x55, 0x94, 0x36, 0x93, 0x6a, 0xb4, 0x39, 0xff, 0x94, 0x6e, 0x66, 0x65,
6663 0x39, 0x1e, 0x6e, 0x18, 0x76, 0xa2, 0xcf, 0x21, 0x03, 0x1a, 0x67, 0x83,
6664 0x7a, 0x1b, 0xc8, 0xdd, 0xd0, 0xe4, 0x35, 0xc7, 0xfd, 0xc0, 0x48, 0x1f,
6665 0xc6, 0xef, 0x20, 0xc1, 0x50, 0xe2, 0x65, 0xca, 0x38, 0xe0, 0xdc, 0x3a,
6666 0x4a, 0x54, 0x48, 0x38, 0xe4, 0x79, 0x9f, 0x2f, 0x9a, 0xe7, 0x94, 0x8b,
6667 0x3c, 0xc5, 0x39, 0xc7, 0x4e, 0x39, 0xf5, 0xd0, 0xcb, 0x4d, 0x67, 0xed,
6668 0x88, 0x2e, 0xd6, 0x94, 0xc6, 0x84, 0x09, 0x02, 0xb7, 0xe9, 0x18, 0x7d,
6669 0xc6, 0x81, 0x72, 0x02, 0x50, 0xfc, 0xfb, 0x9b, 0x9d, 0xc8, 0x54, 0xd1,
6670 0x02, 0x95, 0xb9, 0x58, 0xdc, 0xe4, 0x71, 0x00, 0x7b, 0x4d, 0x16, 0xa5,
6671 0x71, 0x7a, 0xc7, 0x66, 0xbf, 0xfa, 0x21, 0x29, 0xed, 0x6c, 0xa7, 0xd1,
6672 0x5e, 0xc1, 0xca, 0xa0, 0x43, 0xe5, 0x7a, 0x60, 0x64, 0x52, 0xb4, 0x55,
6673 0x9d, 0x1f, 0x3a, 0x91, 0x53, 0x8b, 0x59, 0x3b, 0x09, 0x95, 0x1b, 0xa3,
6674 0x96, 0x6b, 0x05, 0x54, 0x09, 0x73, 0x7a, 0xc7, 0xc9, 0x34, 0x9d, 0xa5,
6675 0x64, 0x4d, 0x37, 0xbe, 0xef, 0x09, 0x25, 0x9d, 0xcd, 0x0f, 0xfe, 0x6c,
6676 0xb4, 0xac, 0x39, 0xc6, 0x5f, 0xc3, 0x6c, 0xc8, 0xc1, 0xc9, 0x9f, 0x6f,
6677 0xd6, 0xbd, 0x3a, 0x46, 0xb4, 0x9d, 0x8e, 0xa9, 0x8c, 0x5e, 0x92, 0x19,
6678 0x65, 0xce, 0x51, 0x9b, 0x41, 0x64, 0x5d, 0x5c, 0x7a, 0xd8, 0x59, 0x96,
6679 0x45, 0xf3, 0x4f, 0xa3, 0x72, 0x7b, 0xbb, 0xe9, 0xda, 0x2c, 0x2d, 0x37,
6680 0x89, 0x3f, 0x26, 0x36, 0x4c, 0xf9, 0xe1, 0xfd, 0x69, 0xb4, 0x8e, 0x58,
6681 0x19, 0xcf, 0xf7, 0xb7, 0x77, 0x36, 0xd4, 0x38, 0x14, 0xd7, 0x2c, 0x1d,
6682 0x7e, 0xaf, 0x98, 0x0c, 0xed, 0xcb, 0xb8, 0x7e, 0x55, 0xa0, 0x3e, 0x2e,
6683 0x8a, 0x92, 0x1d, 0x7a, 0x9c, 0x60, 0xdc, 0x08, 0x14, 0x12, 0x0d, 0x50,
6684 0x0d, 0x13, 0x98, 0xa4, 0xc7, 0xf8, 0xb6, 0x68, 0x99, 0x67, 0x0f, 0x86,
6685 0xa6, 0xb1, 0x37, 0xb0, 0xd2, 0x00, 0xf6, 0xbf, 0x12, 0xda, 0xb9, 0xb3,
6686 0x96, 0x8c, 0xaa, 0xb8, 0xc5, 0xb3, 0x87, 0xeb, 0x62, 0x0c, 0x11, 0xd2,
6687 0x59, 0xba, 0x2a, 0x6c, 0x50, 0xc8, 0x09, 0xb1, 0x44, 0xe4, 0x9a, 0x34,
6688 0x28, 0xcc, 0x5c, 0x6c, 0xea, 0x30, 0x32, 0xa7, 0x0e, 0xde, 0x1f, 0x19,
6689 0x69, 0x0b, 0xb1, 0x1d, 0xd4, 0x50, 0xdf, 0x55, 0x04, 0xea, 0xa3, 0xfa,
6690 0x21, 0x15, 0xe2, 0x1c, 0xd0, 0x84, 0xc2, 0x43, 0xfe, 0x8b, 0x9c, 0x86,
6691 0x75, 0xd1, 0x29, 0xdb, 0x83, 0x7b, 0x2f, 0x5e, 0xe0, 0x61, 0x22, 0xf5,
6692 0x82, 0x2c, 0x6b, 0x63, 0x7d, 0xdc, 0xbb, 0xbf, 0xe1, 0xf5, 0x4d, 0xbd,
6693 0x7c, 0xe8, 0xf6, 0x51, 0xff, 0x31, 0x7b, 0xf2, 0xb0, 0x00, 0x06, 0x3d,
6694 0x77, 0x9f, 0xc4, 0x71, 0x47, 0xba, 0xbc, 0x49, 0x51, 0xf4, 0x7d, 0xff,
6695 0x7a, 0xe1, 0xf7, 0xa8, 0x0e, 0xb5, 0xe1, 0xf8, 0x40, 0x22, 0x38, 0x17,
6696 0x5d, 0xdf, 0xa6, 0x7b, 0x93, 0xb4, 0x0b, 0x47, 0x26, 0x34, 0xb1, 0x3d,
6697 0x5a, 0x4d, 0xfe, 0x85, 0x3c, 0xa4, 0x24, 0xfe, 0x9e, 0x24, 0xfd, 0x1e,
6698 0xf0, 0x21, 0x1e, 0x7b, 0x37, 0x75, 0x69, 0x94, 0x20, 0xab, 0xa3, 0x51,
6699 0xa8, 0x96, 0x08, 0xe7, 0x1b, 0x62, 0x05, 0x97, 0xe1, 0x44, 0x9a, 0xca,
6700 0x5f, 0x53, 0xe3, 0xc8, 0x51, 0x07, 0xc7, 0x65, 0xfd, 0x4c, 0xca, 0x8a,
6701 0x2e, 0x5e, 0x7f, 0xe7, 0x54, 0xa9, 0x79, 0x6e, 0x10, 0x72, 0x2c, 0xfe,
6702 0xd9, 0xa4, 0x17, 0x81, 0x21, 0x84, 0x59, 0xce, 0x1c, 0x47, 0x8c, 0xc5,
6703 0xed, 0x47, 0x69, 0x56, 0x1b, 0x36, 0x05, 0x1e, 0x49, 0xdd, 0x39, 0xa4,
6704 0xdf, 0x35, 0x83, 0x92, 0x52, 0x32, 0xfe, 0xc5, 0x0f, 0xfc, 0xeb, 0x88,
6705 0xb3, 0x2a, 0x7f, 0x38, 0xac, 0xae, 0x17, 0xb3, 0x21, 0xec, 0x67, 0x56,
6706 0x7d, 0xd1, 0x89, 0x38, 0x87, 0x67, 0x22, 0xf4, 0x5c, 0x62, 0x2d, 0xa7,
6707 0x9a, 0x17, 0xa4, 0xbe, 0xe2, 0x1a, 0xd5, 0x78, 0x76, 0x0a, 0x8f, 0x60,
6708 0xd3, 0xd1, 0x61, 0xf3, 0x38, 0x36, 0xe1, 0xa9, 0x78, 0x1f, 0x80, 0x3d,
6709 0x7f, 0x78, 0xfb, 0xb7, 0x1f, 0x5e, 0xee, 0xee, 0xc5, 0xcf, 0xe3, 0xd1,
6710 0xb3, 0xc9, 0x8b, 0x78, 0x7f, 0xbc, 0xff, 0xfc, 0xe5, 0xce, 0x8b, 0xfd,
6711 0xf8, 0xf9, 0xde, 0x24, 0x7e, 0xb6, 0x9d, 0x6c, 0xbf, 0x9c, 0xec, 0xec,
6712 0x8e, 0xc7, 0x93, 0xe4, 0xc5, 0xf8, 0x79, 0xdc, 0xe9, 0x93, 0xd5, 0xa8,
6713 0x53, 0xf7, 0x45, 0xad, 0x46, 0x68, 0xe3, 0x68, 0xf0, 0xe6, 0xa8, 0xb7,
6714 0x1d, 0x5d, 0x27, 0x77, 0x7a, 0xc0, 0xea, 0x69, 0x5b, 0x08, 0xd8, 0x44,
6715 0xcb, 0x69, 0x5f, 0xac, 0x42, 0x25, 0x61, 0x9d, 0x0d, 0x7a, 0x9c, 0xb8,
6716 0x30, 0x83, 0xa8, 0xa8, 0x64, 0xe5, 0x7c, 0x6c, 0xe3, 0x0f, 0x3e, 0xd0,
6717 0x18, 0x0c, 0xae, 0xab, 0x79, 0xf8, 0xcf, 0xd0, 0x6b, 0xf2, 0x36, 0x1e,
6718 0x5d, 0x53, 0x91, 0xba, 0x3c, 0x38, 0xe0, 0xf0, 0x7e, 0x37, 0x92, 0xbf,
6719 0xa0, 0xd7, 0xdf, 0x19, 0xe3, 0xeb, 0x22, 0x5f, 0xcc, 0x2f, 0xf2, 0x69,
6720 0x3a, 0xba, 0x5f, 0x36, 0x9c, 0xfb, 0x58, 0xed, 0x17, 0x27, 0x2c, 0xc2,
6721 0xd3, 0x32, 0xf9, 0x77, 0xb0, 0xd5, 0x88, 0xd6, 0x24, 0x0e, 0x58, 0xbf,
6722 0x85, 0xff, 0xad, 0x6e, 0xad, 0x59, 0x61, 0xff, 0xa0, 0xb9, 0xd6, 0x1b,
6723 0xa5, 0xf3, 0x6b, 0x4c, 0x27, 0x3a, 0xa4, 0xcc, 0x73, 0x8c, 0xe2, 0xf1,
6724 0x0f, 0xc2, 0x66, 0xda, 0x40, 0x0e, 0x7b, 0x29, 0xac, 0xa2, 0x6f, 0x8b,
6725 0x22, 0x97, 0x2a, 0x8c, 0x90, 0xfa, 0x11, 0xa5, 0xdc, 0x21, 0xf5, 0x1c,
6726 0xad, 0xf6, 0x43, 0x2c, 0x48, 0x54, 0x89, 0x67, 0x77, 0x8e, 0xfc, 0xaa,
6727 0x2f, 0x55, 0xeb, 0x8b, 0x39, 0xe3, 0x18, 0x50, 0xe8, 0x87, 0x7f, 0xd7,
6728 0x3c, 0xc3, 0x38, 0x79, 0x61, 0x46, 0x06, 0x33, 0x82, 0xcd, 0xfa, 0xf0,
6729 0xfe, 0xec, 0xa0, 0x49, 0x24, 0x43, 0x48, 0x8a, 0x0e, 0x96, 0xc9, 0xe6,
6730 0x38, 0x1f, 0x95, 0x9b, 0x65, 0x39, 0x55, 0x42, 0x10, 0x76, 0xd2, 0xef,
6731 0xcd, 0x08, 0x42, 0x99, 0x93, 0xe3, 0x57, 0x6f, 0x4e, 0x7a, 0xf0, 0xe7,
6732 0xe0, 0xa8, 0x77, 0x74, 0x32, 0xd8, 0xd9, 0x7f, 0xd6, 0x3b, 0x3e, 0x7e,
6733 0xfb, 0x62, 0x45, 0x66, 0xa8, 0xa6, 0xe5, 0xcd, 0x76, 0x7f, 0xb7, 0xb6,
6734 0xe9, 0xf9, 0x8c, 0x24, 0x72, 0x32, 0xee, 0x95, 0xa5, 0x97, 0x4e, 0x8b,
6735 0x75, 0xab, 0x9c, 0x57, 0x77, 0x22, 0x69, 0xe3, 0x74, 0x85, 0xf7, 0x60,
6736 0x77, 0xb1, 0xd4, 0x54, 0x5f, 0xd6, 0xfa, 0x08, 0x4e, 0x0b, 0x31, 0xa9,
6737 0xac, 0xdd, 0x40, 0x9c, 0x2d, 0x96, 0xbb, 0xe8, 0xcf, 0xae, 0x8b, 0x0d,
6738 0xad, 0x84, 0xbc, 0x30, 0x08, 0x08, 0x84, 0xe4, 0xb2, 0x32, 0xa5, 0x6a,
6739 0x0b, 0x89, 0xca, 0x55, 0xd2, 0xd6, 0x9c, 0x97, 0xeb, 0x19, 0xf7, 0xcf,
6740 0x1a, 0x3e, 0x29, 0xf3, 0x58, 0x38, 0xd7, 0x46, 0xdd, 0x9f, 0x71, 0x64,
6741 0x9f, 0xb4, 0xbe, 0x40, 0x45, 0x68, 0x30, 0x26, 0xa1, 0xc9, 0x21, 0x2b,
6742 0x97, 0x21, 0x01, 0xb0, 0xe2, 0x5c, 0x8f, 0xa3, 0x23, 0xdc, 0x05, 0x7f,
6743 0xc0, 0x85, 0xd1, 0xe8, 0x47, 0x6f, 0x38, 0xaf, 0xac, 0xa9, 0xaa, 0x08,
6744 0x28, 0x59, 0x6b, 0x0a, 0x7c, 0x0b, 0x53, 0xb7, 0xb9, 0x5a, 0xa3, 0x45,
6745 0x66, 0x63, 0x87, 0x91, 0x7f, 0x51, 0x29, 0x14, 0x87, 0x8d, 0xa4, 0x16,
6746 0x09, 0x43, 0x48, 0x80, 0xd2, 0x56, 0x14, 0x79, 0xd1, 0x0f, 0xf0, 0x8a,
6747 0xe5, 0x8e, 0x9e, 0x77, 0xb3, 0x2c, 0xe7, 0x16, 0xb0, 0x95, 0xf0, 0xc7,
6748 0x94, 0xa1, 0xeb, 0x6c, 0xe4, 0x93, 0xf9, 0x67, 0x55, 0x09, 0x5b, 0x63,
6749 0x3c, 0x87, 0x5d, 0xfe, 0x22, 0xc9, 0x8f, 0x93, 0xf4, 0x2a, 0x9c, 0x7a,
6750 0x63, 0x2b, 0x0f, 0x2a, 0x2c, 0x9d, 0xd2, 0xbc, 0x1a, 0xac, 0x3a, 0x16,
6751 0xdf, 0x84, 0xe6, 0xce, 0x95, 0xac, 0x12, 0x6a, 0x4e, 0x4d, 0x03, 0xe8,
6752 0xcc, 0xc1, 0x3b, 0xab, 0xbf, 0x82, 0xb9, 0xde, 0x91, 0xc9, 0x80, 0x34,
6753 0xdf, 0xa8, 0x65, 0xfd, 0x23, 0x02, 0x1f, 0xb1, 0x63, 0xd3, 0x69, 0x80,
6754 0x71, 0x22, 0x6b, 0x3e, 0x84, 0x60, 0xe1, 0x9a, 0x44, 0x39, 0x9f, 0xd7,
6755 0x40, 0x22, 0x52, 0x42, 0x29, 0x8c, 0xa9, 0xae, 0x30, 0xa4, 0x24, 0xe6,
6756 0x4e, 0xfa, 0x06, 0x0d, 0xe8, 0xab, 0x4f, 0x95, 0xa9, 0x23, 0x51, 0x74,
6757 0x1f, 0xd2, 0x2d, 0xe1, 0xc6, 0x01, 0x0d, 0x0a, 0x0b, 0xdf, 0x10, 0x89,
6758 0x72, 0x9a, 0x5b, 0x5d, 0x5d, 0x90, 0x10, 0x30, 0x1b, 0xb4, 0xef, 0xa9,
6759 0x00, 0x78, 0xfa, 0x6c, 0xa5, 0x16, 0x47, 0x17, 0xf9, 0x07, 0x74, 0xa8,
6760 0x86, 0x9a, 0x3a, 0x63, 0x15, 0x37, 0xd9, 0xbd, 0xa0, 0x77, 0x51, 0x4a,
6761 0x03, 0x19, 0x18, 0x2c, 0x25, 0xd8, 0x3b, 0x01, 0x49, 0xe3, 0x4a, 0x47,
6762 0x0d, 0x35, 0x95, 0xb9, 0x14, 0xb2, 0xe0, 0x44, 0x71, 0x9e, 0x3c, 0xc7,
6763 0xe6, 0x99, 0x31, 0x00, 0x68, 0x35, 0xbb, 0x36, 0x2e, 0x6d, 0xc1, 0x60,
6764 0xe9, 0x27, 0x32, 0x58, 0x6a, 0x06, 0x9d, 0x20, 0x5e, 0xf5, 0x25, 0xcd,
6765 0xa4, 0x48, 0xf4, 0x13, 0x59, 0xde, 0x9c, 0x95, 0xcc, 0xa3, 0xe7, 0xbb,
6766 0x03, 0x4d, 0x89, 0xa1, 0x33, 0x01, 0x2d, 0x35, 0x34, 0xdb, 0x1c, 0x96,
6767 0x2c, 0x89, 0x7d, 0xc0, 0x3a, 0x2c, 0xec, 0x1e, 0x92, 0xcf, 0x4a, 0x4a,
6768 0xf6, 0x79, 0xde, 0x07, 0xec, 0x12, 0xfd, 0x7c, 0xa3, 0x1b, 0xcc, 0x2e,
6769 0x33, 0x83, 0xd9, 0xdc, 0x7a, 0x04, 0x03, 0x9a, 0xe6, 0xa5, 0xc6, 0x44,
6770 0x61, 0x03, 0x19, 0xa9, 0x8e, 0x31, 0x27, 0x0c, 0x7e, 0x5d, 0x63, 0x38,
6771 0x7e, 0x86, 0xb7, 0x67, 0x62, 0xb4, 0x56, 0xf1, 0x79, 0x58, 0x64, 0x3d,
6772 0xaa, 0x43, 0x37, 0x6e, 0x09, 0x98, 0xdc, 0x0f, 0x3f, 0x80, 0xe2, 0xf9,
6773 0x43, 0xa7, 0x39, 0xbb, 0x1f, 0x40, 0x8a, 0xfd, 0x00, 0xbc, 0xf8, 0x03,
6774 0x57, 0x4b, 0xff, 0x70, 0x83, 0xfe, 0x04, 0x0c, 0xb1, 0x94, 0x53, 0x0c,
6775 0xe7, 0xb2, 0xc5, 0x56, 0xf7, 0xeb, 0x32, 0x86, 0x20, 0xe7, 0x7b, 0x7b,
6776 0xde, 0x06, 0x8c, 0x5f, 0xb6, 0x51, 0x94, 0x6b, 0x47, 0x60, 0xf7, 0x16,
6777 0xb3, 0x4c, 0xcc, 0x5e, 0xe6, 0x55, 0x92, 0x02, 0x8c, 0xbf, 0x1b, 0xad,
6778 0xfd, 0x61, 0xcd, 0xe1, 0xac, 0x6e, 0xc8, 0xd3, 0x58, 0x24, 0xac, 0xeb,
6779 0x91, 0xc6, 0x92, 0x3a, 0xda, 0x8a, 0xe2, 0xef, 0x91, 0x2f, 0x83, 0x53,
6780 0x2b, 0xfc, 0x3b, 0xf9, 0x1c, 0xa3, 0x4f, 0x5c, 0xa1, 0x9e, 0x5b, 0x2f,
6781 0x05, 0x16, 0xea, 0xcf, 0xaf, 0xef, 0x4b, 0xbc, 0xac, 0x64, 0x3e, 0x46,
6782 0x1b, 0xc4, 0x29, 0x06, 0x73, 0xe4, 0x54, 0x18, 0xf2, 0x1e, 0xe3, 0x23,
6783 0x64, 0xd1, 0xa3, 0x40, 0x34, 0x52, 0x14, 0xe6, 0xb2, 0xd6, 0x5b, 0x33,
6784 0x81, 0x6a, 0x49, 0xab, 0x8b, 0xc7, 0x6d, 0xd5, 0x60, 0xb6, 0x56, 0xc2,
6785 0xfb, 0x9c, 0x93, 0x75, 0x9f, 0xbb, 0xc5, 0x19, 0x16, 0x1c, 0x12, 0x81,
6786 0x24, 0x34, 0xd9, 0xc7, 0x95, 0x03, 0xdd, 0x28, 0xe0, 0xc3, 0xa4, 0x22,
6787 0x0e, 0xae, 0xfd, 0xd1, 0x75, 0xa0, 0x97, 0xcd, 0x06, 0x4b, 0x7b, 0x3d,
6788 0x82, 0xec, 0x9d, 0x33, 0xcc, 0x2e, 0xb2, 0x07, 0x25, 0x28, 0xdd, 0x63,
6789 0x49, 0xfa, 0x7c, 0xea, 0xc9, 0x5e, 0x29, 0x32, 0x50, 0xa0, 0x42, 0x3c,
6790 0xec, 0x08, 0xf7, 0x7a, 0x9b, 0x09, 0x20, 0xe7, 0x20, 0x27, 0x6f, 0xdf,
6791 0x88, 0x52, 0x9d, 0x24, 0xab, 0x4e, 0x8a, 0xdb, 0x03, 0xce, 0x05, 0xbc,
6792 0xdc, 0x3d, 0xfd, 0x17, 0xe7, 0xf3, 0x39, 0x23, 0x16, 0x7a, 0x5a, 0x70,
6793 0xc7, 0x53, 0x96, 0xff, 0x00, 0x2b, 0xe8, 0xe9, 0x1d, 0x1a, 0x89, 0x59,
6794 0xd2, 0xf3, 0x9f, 0xaa, 0xcc, 0xc5, 0x2e, 0x3c, 0xd3, 0x7c, 0x44, 0x3e,
6795 0xeb, 0xdc, 0xad, 0x9d, 0xe6, 0x23, 0x52, 0xaf, 0x0f, 0x4f, 0xe1, 0xa4,
6796 0x50, 0x60, 0x09, 0x8c, 0x69, 0xe4, 0x27, 0x5a, 0xf5, 0xe2, 0x2b, 0xf4,
6797 0x47, 0x7c, 0x8e, 0x10, 0x3a, 0x58, 0x02, 0x83, 0xff, 0xda, 0xdc, 0xee,
6798 0x6f, 0x85, 0x56, 0x80, 0x54, 0x17, 0xb4, 0x10, 0x09, 0xf9, 0x20, 0x6d,
6799 0xab, 0x3c, 0x7f, 0x78, 0x8e, 0x4c, 0x16, 0xb8, 0xfa, 0xe6, 0xf0, 0x85,
6800 0xf0, 0x6c, 0x7a, 0xe7, 0xcd, 0x9f, 0x90, 0x93, 0x00, 0xbe, 0xf2, 0xb9,
6801 0xc1, 0x85, 0xcc, 0x72, 0x82, 0x1b, 0x01, 0x4d, 0x65, 0x3a, 0xad, 0x21,
6802 0xcc, 0x76, 0x5a, 0xe8, 0x9d, 0x51, 0xdd, 0x49, 0xd2, 0x24, 0x7b, 0x13,
6803 0x36, 0xc5, 0xe4, 0xad, 0x21, 0xf1, 0x33, 0x09, 0x45, 0x03, 0x7f, 0xac,
6804 0x4b, 0x82, 0x35, 0xe6, 0x38, 0x73, 0xc9, 0xbf, 0xe8, 0x76, 0x1b, 0x5c,
6805 0x62, 0xc6, 0x08, 0x47, 0x71, 0x4b, 0xb8, 0xc0, 0x39, 0xae, 0x36, 0xc3,
6806 0x34, 0xa5, 0xf8, 0x14, 0xa9, 0x16, 0x5d, 0x44, 0x47, 0xcd, 0x38, 0xce,
6807 0x66, 0xce, 0x68, 0x28, 0xb6, 0x8a, 0x6a, 0x35, 0x6b, 0x2e, 0x3a, 0x74,
6808 0x6d, 0xec, 0xb4, 0xe4, 0xd9, 0x48, 0x44, 0x4a, 0xef, 0x7d, 0x15, 0xc8,
6809 0x5e, 0xea, 0x0b, 0x81, 0x18, 0x6b, 0xf5, 0x34, 0x59, 0x13, 0x1e, 0x73,
6810 0x6f, 0x6f, 0x44, 0x9d, 0xff, 0x87, 0xb2, 0x68, 0xdf, 0x9c, 0xbf, 0x3d,
6811 0xd9, 0xec, 0x23, 0x71, 0x8a, 0x91, 0xc7, 0x14, 0x3b, 0xf8, 0xd8, 0x77,
6812 0xaf, 0xbe, 0xfe, 0x78, 0x7c, 0xfe, 0xee, 0xf5, 0xe9, 0xd7, 0xf5, 0x87,
6813 0xa3, 0x75, 0x37, 0xe3, 0x7e, 0xb7, 0xbf, 0xb5, 0xd1, 0x7c, 0x7d, 0x17,
6814 0x5f, 0x5f, 0xfa, 0x81, 0xbd, 0x0d, 0x4d, 0x42, 0x3b, 0x88, 0x3a, 0x7f,
6815 0xfc, 0x30, 0x38, 0x79, 0x7f, 0xf1, 0xfe, 0x1c, 0x71, 0xd8, 0xfe, 0xf8,
6816 0x43, 0xdb, 0x2b, 0xfb, 0xb5, 0x57, 0x8e, 0x2e, 0x2e, 0x5e, 0x1d, 0x5d,
6817 0x1e, 0xb5, 0x3f, 0xfe, 0xac, 0xfd, 0x0b, 0x47, 0x73, 0xc4, 0xc0, 0xe3,
6818 0x94, 0x82, 0x57, 0xc0, 0x73, 0xad, 0x63, 0x3c, 0xdf, 0x00, 0x79, 0x98,
6819 0xf5, 0xcc, 0x38, 0x68, 0xc0, 0x5f, 0x25, 0xd5, 0xfc, 0x76, 0x91, 0x8e,
6820 0xb9, 0x82, 0x52, 0x2c, 0x81, 0xeb, 0x5c, 0x53, 0x6d, 0xd1, 0x17, 0xd9,
6821 0x1c, 0xe6, 0xc5, 0x06, 0x5c, 0x08, 0x3a, 0x9b, 0xae, 0xa4, 0xd9, 0xe0,
6822 0xbb, 0x04, 0xd7, 0x27, 0x1f, 0x97, 0x2d, 0xd7, 0x2c, 0x4a, 0xb9, 0x64,
6823 0xa3, 0x40, 0x0a, 0x1e, 0x03, 0x60, 0x8d, 0xb1, 0x2a, 0x3c, 0xbf, 0x41,
6824 0xb1, 0x8b, 0x02, 0xcf, 0x72, 0x6d, 0x6e, 0xef, 0x15, 0xcd, 0x00, 0x56,
6825 0x97, 0xe9, 0x14, 0x4e, 0x8c, 0x37, 0xdc, 0x68, 0x51, 0xe9, 0x09, 0x20,
6826 0x16, 0x1a, 0x07, 0x6e, 0x33, 0x03, 0x4c, 0x87, 0x2a, 0x93, 0xde, 0x41,
6827 0xac, 0x00, 0x28, 0x87, 0xe2, 0xe5, 0xa6, 0x0e, 0x2d, 0x50, 0x05, 0x74,
6828 0x55, 0x81, 0x04, 0x8b, 0x8f, 0xfc, 0xab, 0xae, 0x42, 0x7c, 0x30, 0x22,
6829 0x0f, 0x5f, 0x6f, 0x79, 0x31, 0xa3, 0x7c, 0xb7, 0x73, 0xca, 0x28, 0xd6,
6830 0xd4, 0x69, 0xc6, 0x1a, 0x6a, 0x49, 0xbf, 0x74, 0x8f, 0x88, 0x0c, 0x4d,
6831 0x3e, 0xd9, 0x70, 0x9e, 0x88, 0x5c, 0xc5, 0xae, 0x2e, 0x69, 0xf2, 0xee,
6832 0xc9, 0x49, 0x81, 0xfb, 0xca, 0xf5, 0xc3, 0x16, 0x3b, 0x92, 0x0f, 0x65,
6833 0xe0, 0x26, 0x5d, 0x3d, 0x41, 0xc4, 0xb9, 0xe9, 0x57, 0x4e, 0x54, 0xfc,
6834 0x7b, 0xd7, 0x0a, 0xac, 0xba, 0xf9, 0x2d, 0xa5, 0xc1, 0x30, 0x7f, 0x54,
6835 0xbd, 0x0f, 0x27, 0x02, 0x8c, 0x1f, 0x4f, 0x05, 0x18, 0xc8, 0xf3, 0x55,
6836 0xbd, 0x8d, 0xef, 0xd2, 0xd9, 0x62, 0x16, 0xd1, 0x9a, 0x59, 0xb1, 0x97,
6837 0x27, 0x35, 0xa4, 0x8d, 0x2e, 0x4e, 0x4e, 0x91, 0xc3, 0xa9, 0x63, 0x5e,
6838 0xad, 0x71, 0x59, 0x05, 0x2e, 0x52, 0x50, 0x3b, 0xd4, 0xd3, 0x41, 0x99,
6839 0x37, 0x14, 0xa6, 0x2b, 0x1b, 0xae, 0x2e, 0x50, 0x7e, 0x62, 0x4c, 0x31,
6840 0x52, 0x04, 0x20, 0xb6, 0xe5, 0x5c, 0x24, 0xd5, 0x1a, 0xa0, 0xaa, 0x6a,
6841 0xac, 0x4e, 0xee, 0x7e, 0x52, 0xa4, 0xf9, 0xd8, 0x44, 0xec, 0xb5, 0x80,
6842 0x2e, 0xea, 0x71, 0x1c, 0xa6, 0xd2, 0xdf, 0x78, 0xce, 0x75, 0x2c, 0x4a,
6843 0x8c, 0x06, 0x54, 0xbf, 0xaa, 0xd9, 0xf8, 0xcf, 0xfb, 0xbb, 0x3b, 0x88,
6844 0xf8, 0xe7, 0x1a, 0xf8, 0x82, 0x3b, 0x8b, 0x6e, 0x84, 0x74, 0xa6, 0xf0,
6845 0x2a, 0x65, 0xff, 0x5f, 0xe3, 0xea, 0x2a, 0x97, 0xf0, 0x4c, 0x6d, 0x7b,
6846 0x77, 0xb6, 0x82, 0x6c, 0xf3, 0xb8, 0x97, 0x77, 0xfb, 0xdb, 0x7b, 0xab,
6847 0x71, 0x1d, 0x95, 0x02, 0xcd, 0xe2, 0x3b, 0x1a, 0x22, 0xc8, 0x76, 0x79,
6848 0x74, 0xf8, 0xe6, 0x7c, 0x70, 0xb9, 0x7d, 0x70, 0x71, 0xfe, 0x1e, 0xfe,
6849 0xc4, 0xbf, 0xef, 0xd0, 0xdf, 0x77, 0xbe, 0x68, 0x0e, 0xfb, 0x5a, 0x2a,
6850 0x1c, 0xb4, 0xa8, 0x9b, 0x54, 0x43, 0x3a, 0xfa, 0x62, 0x62, 0x3a, 0x03,
6851 0xa1, 0x45, 0x93, 0xa2, 0x76, 0x3e, 0x32, 0x08, 0x1c, 0x4d, 0xbe, 0x73,
6852 0x3e, 0xa5, 0x49, 0xd0, 0xfd, 0xc8, 0x4f, 0xb4, 0x4e, 0x2b, 0x55, 0x63,
6853 0x05, 0x08, 0x49, 0x71, 0x96, 0x9a, 0x0e, 0x21, 0x46, 0xb4, 0x91, 0x32,
6854 0x6e, 0x76, 0xab, 0xc0, 0x65, 0x8e, 0x19, 0xb3, 0xf5, 0x5f, 0x8d, 0xa6,
6855 0x60, 0x60, 0x25, 0x98, 0xd2, 0x36, 0x4e, 0x38, 0x60, 0x8a, 0x3f, 0x09,
6856 0x59, 0x87, 0x52, 0x25, 0x5e, 0x30, 0x66, 0x66, 0x63, 0x66, 0x74, 0x54,
6857 0x34, 0x4e, 0x0b, 0xf3, 0x89, 0x09, 0xa6, 0x50, 0x11, 0x42, 0x9a, 0xc3,
6858 0x51, 0x65, 0x82, 0xeb, 0x38, 0x56, 0xcc, 0xd7, 0x77, 0xe7, 0x97, 0x51,
6859 0x3c, 0x99, 0x28, 0x34, 0x14, 0x55, 0xa3, 0xa1, 0x80, 0xde, 0x24, 0xe7,
6860 0x92, 0x9c, 0xe7, 0xa0, 0xfa, 0x41, 0x42, 0xf3, 0xf2, 0x6c, 0xb0, 0x89,
6861 0x7e, 0x63, 0x4e, 0x0d, 0x1e, 0xbc, 0x3b, 0xed, 0xd6, 0x62, 0x4f, 0x6e,
6862 0x06, 0xde, 0x06, 0xda, 0x9f, 0x02, 0x08, 0xdf, 0xa4, 0x9d, 0x73, 0xa9,
6863 0x1a, 0xec, 0xd7, 0x7e, 0xd4, 0xa1, 0x0d, 0xed, 0x30, 0x96, 0x59, 0x87,
6864 0xf6, 0xb5, 0xc3, 0x65, 0x4f, 0x64, 0x9e, 0xd2, 0x7c, 0x11, 0xd0, 0xf9,
6865 0xde, 0xc7, 0x37, 0x21, 0x5f, 0x19, 0xe2, 0xe3, 0xe1, 0xfd, 0xd0, 0x41,
6866 0xdb, 0x10, 0x17, 0x46, 0x8b, 0xea, 0xc8, 0xc0, 0x3b, 0x3c, 0x30, 0x8d,
6867 0x0b, 0x7f, 0xc7, 0x61, 0x89, 0x69, 0x87, 0x49, 0xc8, 0x40, 0xa6, 0xef,
6868 0xd8, 0xa1, 0xcd, 0xd8, 0x30, 0x31, 0x0a, 0x33, 0xf2, 0x53, 0xca, 0x1c,
6869 0x20, 0xf2, 0xd0, 0xdc, 0x4e, 0xaf, 0x30, 0xdf, 0xa7, 0x09, 0x31, 0x60,
6870 0x27, 0xd2, 0xe4, 0xf0, 0x23, 0x50, 0x6a, 0xe1, 0xb7, 0x1d, 0xc7, 0xa1,
6871 0x53, 0x79, 0x05, 0x54, 0x94, 0xd6, 0x5f, 0xa8, 0x15, 0xa9, 0x13, 0x2a,
6872 0x73, 0x3f, 0x6b, 0xc3, 0xe4, 0x2d, 0xcc, 0x62, 0x54, 0xd0, 0x4d, 0x44,
6873 0x57, 0x4b, 0xb9, 0xf5, 0x20, 0x11, 0x72, 0xb7, 0x00, 0x9e, 0x8a, 0xe5,
6874 0x4f, 0x61, 0xe0, 0xe6, 0x70, 0xdc, 0x72, 0x02, 0x2f, 0x06, 0x29, 0xf7,
6875 0xeb, 0x6c, 0xef, 0x3c, 0xef, 0x6f, 0xc1, 0xff, 0x83, 0x7d, 0x11, 0x67,
6876 0x11, 0x61, 0xdc, 0x5b, 0x24, 0x73, 0xf3, 0xa4, 0x83, 0xb7, 0xe4, 0xc2,
6877 0x2e, 0xf5, 0xf3, 0xe2, 0xaa, 0xf3, 0xf8, 0xdb, 0x16, 0x37, 0xd2, 0xdc,
6878 0xb4, 0xf1, 0x58, 0x7e, 0xa2, 0x67, 0xbc, 0x58, 0x3c, 0xed, 0x56, 0x55,
6879 0x49, 0xe4, 0x88, 0xb4, 0x83, 0xbd, 0xbd, 0xdd, 0x03, 0xfd, 0x37, 0x9c,
6880 0xa7, 0x83, 0x17, 0xf0, 0x83, 0x5f, 0x82, 0xc1, 0xf1, 0x06, 0x25, 0x21,
6881 0x97, 0x28, 0xd7, 0x53, 0x34, 0x5f, 0xd6, 0xdc, 0xe1, 0xcd, 0xe2, 0xee,
6882 0xe8, 0x30, 0x9f, 0x4c, 0xca, 0xa4, 0x6a, 0xde, 0xc1, 0xc7, 0xf2, 0xc8,
6883 0xe6, 0x7b, 0xe9, 0x09, 0x63, 0xca, 0x3a, 0xeb, 0xd0, 0xe5, 0x51, 0x5c,
6884 0xd5, 0x65, 0x24, 0x0f, 0xd7, 0x0f, 0x15, 0x6c, 0xd7, 0x9e, 0xe0, 0x6c,
6885 0x16, 0x66, 0xfd, 0x3b, 0x42, 0x0b, 0x6a, 0x22, 0x0c, 0x2e, 0x41, 0xa1,
6886 0x29, 0x3f, 0xa5, 0xf3, 0x39, 0x9a, 0x4b, 0xd4, 0x07, 0x02, 0x8f, 0x89,
6887 0x09, 0xbe, 0x53, 0x0e, 0x08, 0x83, 0x17, 0x4b, 0x82, 0x34, 0xd5, 0x51,
6888 0x6b, 0x90, 0x7e, 0x98, 0x4c, 0xfc, 0x10, 0xb2, 0xe4, 0xd6, 0xb8, 0x38,
6889 0x8a, 0x02, 0x01, 0x37, 0x46, 0xcc, 0xc4, 0x2c, 0x16, 0x91, 0x36, 0x71,
6890 0x80, 0xc6, 0x04, 0x92, 0xa2, 0x1b, 0x90, 0x36, 0xb6, 0xcc, 0xdf, 0xb8,
6891 0x5e, 0x07, 0xa7, 0xff, 0xeb, 0xc4, 0x62, 0xb5, 0x1b, 0x30, 0x74, 0x2e,
6892 0x7e, 0x0c, 0xd5, 0xa8, 0x46, 0x9d, 0xde, 0x71, 0xd4, 0x23, 0x20, 0x59,
6893 0x27, 0x45, 0x2d, 0x6f, 0x84, 0x14, 0x48, 0xc7, 0xc7, 0x9b, 0x93, 0x11,
6894 0x31, 0x37, 0x11, 0x6c, 0xca, 0xbf, 0x88, 0xa4, 0xad, 0x0f, 0x13, 0xdb,
6895 0xd4, 0xd4, 0xe3, 0x81, 0xac, 0x04, 0x78, 0xc1, 0xad, 0x41, 0x64, 0x43,
6896 0x7e, 0x33, 0xcd, 0xd0, 0x9c, 0x27, 0x3d, 0xd2, 0x2b, 0xd0, 0x53, 0x74,
6897 0x16, 0x46, 0xd8, 0x5b, 0x54, 0xff, 0xaa, 0xc8, 0x6b, 0x9b, 0x16, 0x02,
6898 0x94, 0x7a, 0xbc, 0xd6, 0x71, 0x1c, 0xed, 0x6d, 0x6d, 0xad, 0x76, 0xd2,
6899 0x2c, 0x42, 0x82, 0x73, 0x92, 0x46, 0x7c, 0x92, 0xb0, 0xa5, 0x52, 0xef,
6900 0xa7, 0xb8, 0xe0, 0x68, 0x41, 0x2b, 0xa0, 0xd3, 0x86, 0xf1, 0x95, 0x61,
6901 0x19, 0x1f, 0x05, 0x5f, 0x89, 0x21, 0x0d, 0x06, 0xa3, 0x6e, 0x30, 0x3b,
6902 0xe6, 0x28, 0xfd, 0x5c, 0xfa, 0x35, 0x35, 0xc5, 0x1a, 0x61, 0x2f, 0x51,
6903 0x12, 0x86, 0x41, 0x5f, 0xb2, 0x48, 0x22, 0x7d, 0x8c, 0xad, 0x1b, 0x44,
6904 0xfc, 0x98, 0x14, 0x51, 0x1a, 0x45, 0x9a, 0x7c, 0x78, 0x6a, 0x45, 0x9a,
6905 0xf5, 0x18, 0xda, 0x48, 0x1e, 0xa4, 0xf0, 0x3f, 0x36, 0xd3, 0x90, 0x13,
6906 0xc0, 0x4c, 0xc1, 0xee, 0x84, 0x4a, 0x0b, 0xf0, 0x49, 0x71, 0xa0, 0x6f,
6907 0x06, 0x11, 0xa7, 0x25, 0x75, 0x0a, 0xec, 0x47, 0xf3, 0x75, 0x32, 0xc7,
6908 0x3e, 0x65, 0xf9, 0x6d, 0x86, 0x41, 0x23, 0x8e, 0xfb, 0xe8, 0x96, 0xe3,
6909 0x64, 0xab, 0x24, 0x0b, 0x95, 0x12, 0xd7, 0x42, 0x1f, 0xf2, 0x9c, 0xe3,
6910 0xa0, 0x7b, 0x97, 0x54, 0x92, 0xeb, 0xc6, 0x73, 0x97, 0x44, 0x1c, 0xa9,
6911 0x30, 0x86, 0x49, 0xf8, 0xb0, 0xd3, 0x94, 0x22, 0xa5, 0x21, 0x0a, 0xbe,
6912 0x43, 0x38, 0xed, 0x84, 0xfb, 0x17, 0xa0, 0xcb, 0xbd, 0x0b, 0x87, 0xaf,
6913 0xa3, 0xfe, 0x7f, 0x9e, 0x7e, 0x58, 0x0c, 0xe9, 0x84, 0x6c, 0x9b, 0x81,
6914 0xe0, 0x45, 0x13, 0xc0, 0xdb, 0x96, 0x3a, 0x5b, 0xc4, 0xb8, 0xa5, 0xdc,
6915 0x52, 0xf6, 0x57, 0xd2, 0x1a, 0x34, 0xd5, 0x2e, 0x54, 0x31, 0xef, 0x60,
6916 0xa1, 0x60, 0xd6, 0x5f, 0x31, 0x36, 0x68, 0x47, 0x32, 0x51, 0x10, 0xfd,
6917 0xe2, 0x25, 0xbb, 0x8d, 0x89, 0xd5, 0xcc, 0x27, 0x42, 0xe5, 0x77, 0x4e,
6918 0xaa, 0xb6, 0xb2, 0xb2, 0xc5, 0x89, 0x0c, 0x7a, 0xb0, 0xe5, 0x21, 0xe4,
6919 0x77, 0xdb, 0xd8, 0x41, 0x50, 0x51, 0x0c, 0x3a, 0x7d, 0x45, 0xd8, 0x3a,
6920 0x79, 0x57, 0x24, 0xce, 0xed, 0x75, 0xee, 0x39, 0xf1, 0xd9, 0xba, 0xb2,
6921 0xf8, 0x37, 0x82, 0x8d, 0x85, 0x03, 0x62, 0x1d, 0x05, 0xc5, 0x36, 0x6e,
6922 0xa8, 0x44, 0xa3, 0x16, 0x83, 0x04, 0x4d, 0x36, 0x89, 0xa9, 0xf4, 0x35,
6923 0x0c, 0x26, 0x04, 0xe2, 0x65, 0x98, 0x97, 0xc2, 0x31, 0x08, 0x07, 0x03,
6924 0x4c, 0x16, 0x17, 0x74, 0x1b, 0x08, 0x10, 0xac, 0x36, 0x77, 0x32, 0x8a,
6925 0x67, 0xc8, 0xbf, 0xce, 0x58, 0x7e, 0x37, 0x29, 0x62, 0x33, 0x01, 0xa3,
6926 0x80, 0x96, 0x83, 0x01, 0x01, 0xe2, 0x1e, 0x1a, 0x94, 0x61, 0x5e, 0xaf,
6927 0x53, 0x07, 0xc0, 0x09, 0xce, 0xe1, 0x35, 0x2a, 0x2e, 0x69, 0xb5, 0x08,
6928 0x9e, 0x89, 0x5f, 0x20, 0x22, 0x59, 0x46, 0xba, 0xc9, 0xf4, 0x81, 0xc8,
6929 0x16, 0x31, 0xf2, 0x2f, 0x91, 0xa1, 0x23, 0xce, 0xfb, 0xe9, 0x91, 0xe7,
6930 0xb6, 0xcd, 0xfa, 0x7f, 0xdc, 0x9b, 0xbd, 0x21, 0x39, 0xf8, 0x7b, 0xdc,
6931 0x07, 0x70, 0x25, 0x49, 0x3b, 0xb4, 0x42, 0xd5, 0x11, 0xb5, 0xce, 0x4f,
6932 0xa3, 0x43, 0x14, 0x1d, 0xff, 0xfb, 0x01, 0x59, 0x7b, 0x11, 0x4b, 0x90,
6933 0xdd, 0x85, 0x73, 0x25, 0x08, 0x0d, 0xb9, 0x97, 0xb5, 0x9e, 0x9c, 0xc7,
6934 0x54, 0xb5, 0xe9, 0x34, 0x90, 0x6e, 0x45, 0x41, 0x73, 0xa0, 0xe7, 0xf4,
6935 0xde, 0x0e, 0xe8, 0x20, 0x5c, 0x98, 0x7e, 0x23, 0xb6, 0x3b, 0x8b, 0xf9,
6936 0x82, 0xe7, 0xa3, 0xed, 0x0c, 0xc0, 0x70, 0xe2, 0x6f, 0x1e, 0x74, 0x24,
6937 0xf8, 0xdb, 0x57, 0xed, 0x88, 0x87, 0x36, 0x68, 0x87, 0x5a, 0xcb, 0x68,
6938 0x7d, 0x4f, 0x9e, 0x34, 0xe8, 0x60, 0x53, 0xc8, 0xed, 0xcf, 0xbf, 0x39,
6939 0x3a, 0xfb, 0x70, 0xb2, 0xfd, 0xe7, 0x08, 0xff, 0xb5, 0xc3, 0xff, 0xda,
6940 0xe9, 0x84, 0xf8, 0x0d, 0xe4, 0xee, 0xda, 0xe7, 0x6b, 0x51, 0x79, 0x3f,
6941 0x1b, 0xe6, 0x53, 0xc3, 0x71, 0x42, 0x0a, 0x0d, 0x41, 0x77, 0x25, 0xd1,
6942 0xd9, 0x20, 0x89, 0x49, 0x4c, 0xa9, 0x79, 0x0b, 0x95, 0x92, 0xf6, 0xad,
6943 0x12, 0x94, 0x42, 0x3a, 0x2e, 0xf4, 0x47, 0x45, 0x48, 0x48, 0x2a, 0x98,
6944 0x29, 0x10, 0x7e, 0xd9, 0x9a, 0x8a, 0x4f, 0xbb, 0xaf, 0xb2, 0xaa, 0x74,
6945 0x45, 0x8d, 0x48, 0x43, 0xbe, 0x32, 0x89, 0xc1, 0xdd, 0x30, 0x12, 0xc9,
6946 0xc0, 0x34, 0x90, 0xcc, 0x40, 0xd0, 0xf0, 0xa6, 0xe1, 0x21, 0xbf, 0x2d,
6947 0x79, 0xed, 0x88, 0xee, 0x77, 0xaf, 0xe0, 0x62, 0x78, 0x2d, 0xe9, 0x7d,
6948 0x42, 0xab, 0xc6, 0x77, 0x9b, 0xc3, 0x0d, 0x45, 0x05, 0x74, 0x61, 0x75,
6949 0xd5, 0x9d, 0x68, 0xc0, 0x17, 0x8a, 0x5a, 0x0b, 0x1e, 0x0a, 0x52, 0x28,
6950 0x32, 0xbc, 0x27, 0x5e, 0x34, 0xc5, 0x90, 0x10, 0x6f, 0xc8, 0xf5, 0xdf,
6951 0xb7, 0x31, 0xc2, 0xa9, 0x85, 0xc2, 0x21, 0xcd, 0x98, 0x72, 0xfd, 0x60,
6952 0x3d, 0xa0, 0x7a, 0xaf, 0xc3, 0xc5, 0xe4, 0xc5, 0x57, 0x6d, 0xc6, 0x86,
6953 0xee, 0x99, 0x86, 0xd7, 0x2c, 0xbc, 0xfb, 0x92, 0xa0, 0xda, 0xa5, 0x7e,
6954 0x54, 0x0a, 0x59, 0x72, 0x67, 0x1e, 0x26, 0xb1, 0xc1, 0xd5, 0x21, 0x84,
6955 0x41, 0x31, 0x73, 0x7e, 0xea, 0xe0, 0xb0, 0xaa, 0xd7, 0x03, 0x4f, 0x99,
6956 0x62, 0x25, 0x61, 0x36, 0x92, 0x61, 0x79, 0xf8, 0xfe, 0xfd, 0x34, 0xd9,
6957 0x50, 0x43, 0x4e, 0xef, 0xee, 0xcd, 0xb7, 0xf9, 0xcf, 0x30, 0xf9, 0x58,
6958 0x3e, 0x12, 0x0c, 0x09, 0xf2, 0x85, 0xde, 0x3a, 0x73, 0x2b, 0x1a, 0x05,
6959 0x2f, 0x56, 0x78, 0xa7, 0xe6, 0xc5, 0xa0, 0xae, 0x85, 0xd4, 0x8f, 0xe6,
6960 0x5d, 0x4e, 0xdf, 0xf2, 0xf2, 0xce, 0x93, 0xd2, 0x76, 0xcb, 0xab, 0xdd,
6961 0x64, 0x4e, 0x7c, 0x13, 0x98, 0x38, 0x97, 0x0c, 0x49, 0xc3, 0x5d, 0x72,
6962 0x87, 0xfa, 0xf5, 0xb4, 0x56, 0x39, 0x6c, 0xbf, 0x55, 0x5d, 0x5c, 0x5a,
6963 0x87, 0x56, 0xee, 0x8e, 0x30, 0xb6, 0xbf, 0x53, 0x1a, 0xc4, 0xf9, 0xf1,
6964 0x63, 0xaf, 0xda, 0x89, 0x90, 0x5e, 0x6b, 0xd8, 0x76, 0xa2, 0x52, 0x68,
6965 0x32, 0x2e, 0x46, 0xdd, 0x18, 0x29, 0x8f, 0x64, 0x19, 0x43, 0xc3, 0xb2,
6966 0x59, 0x92, 0xf8, 0x3d, 0x16, 0xc8, 0xaa, 0xa7, 0x05, 0x83, 0x25, 0x2c,
6967 0x79, 0x4b, 0x84, 0xb9, 0x42, 0x17, 0xab, 0xbc, 0x8d, 0x59, 0x65, 0x76,
6968 0xda, 0x92, 0xcf, 0xb2, 0x4e, 0xf8, 0x88, 0xa1, 0x2a, 0x0a, 0x21, 0x30,
6969 0x83, 0x9f, 0xa1, 0xf9, 0x3e, 0xec, 0xf1, 0x40, 0x25, 0x31, 0x06, 0x3b,
6970 0xdd, 0xb1, 0xb9, 0xdd, 0x81, 0xa1, 0x8a, 0x32, 0x8a, 0x0f, 0x45, 0x10,
6971 0x66, 0x8a, 0xc7, 0x38, 0xd2, 0x43, 0x26, 0x57, 0x51, 0x72, 0xb3, 0x34,
6972 0x53, 0xdb, 0x32, 0x04, 0x4d, 0x2a, 0xc0, 0xff, 0xb1, 0x0d, 0xae, 0x49,
6973 0x2f, 0x1e, 0x3f, 0xc7, 0x79, 0xcc, 0xfd, 0x4a, 0x8d, 0xf6, 0x4b, 0xfa,
6974 0x43, 0x03, 0x07, 0x1d, 0x3d, 0xcd, 0x52, 0x6c, 0x46, 0x5f, 0x32, 0x6c,
6975 0x1b, 0x02, 0x52, 0x74, 0x78, 0xc9, 0x8d, 0x9f, 0xd4, 0x54, 0x4b, 0x51,
6976 0x35, 0x03, 0x7c, 0xf6, 0xc0, 0xdd, 0x3f, 0x94, 0x89, 0xb6, 0xa6, 0xaa,
6977 0x3e, 0xfc, 0x16, 0x68, 0x01, 0x0f, 0x8c, 0xd1, 0x7a, 0xe7, 0x37, 0x0d,
6978 0x29, 0x72, 0x67, 0xfc, 0x84, 0x3f, 0xfc, 0x69, 0x91, 0x7d, 0xea, 0x49,
6979 0x07, 0x88, 0x9e, 0x6a, 0xb8, 0xae, 0x93, 0x97, 0xae, 0xa6, 0xde, 0x38,
6980 0xf5, 0x44, 0x6c, 0x0d, 0x51, 0x10, 0xa4, 0xe0, 0x4f, 0x8a, 0x54, 0x66,
6981 0xd1, 0xb2, 0x0c, 0xc4, 0xbc, 0x09, 0xf0, 0x3b, 0x30, 0xad, 0x4d, 0x11,
6982 0x4b, 0x1f, 0x92, 0x43, 0x95, 0x25, 0x58, 0xfd, 0x1f, 0x53, 0xc7, 0x19,
6983 0x74, 0x56, 0x39, 0x55, 0xe2, 0x29, 0xf0, 0x6e, 0x31, 0xba, 0x26, 0xfc,
6984 0x1a, 0x74, 0x8e, 0x25, 0x63, 0xbe, 0xf4, 0x9a, 0x17, 0x80, 0xb0, 0x27,
6985 0x8d, 0x2a, 0x8a, 0x8a, 0x0c, 0x82, 0xdc, 0x82, 0xd7, 0x30, 0xfc, 0x5e,
6986 0xc5, 0x99, 0x37, 0xdb, 0x90, 0x7e, 0x49, 0xa9, 0x78, 0xd7, 0x94, 0x09,
6987 0x33, 0x2d, 0xed, 0x6d, 0x62, 0x5e, 0xb3, 0xd7, 0x0a, 0x99, 0xfb, 0x99,
6988 0xd3, 0x38, 0xa7, 0x79, 0x9f, 0x60, 0x34, 0x77, 0xe2, 0x4d, 0x0a, 0xa1,
6989 0x35, 0x79, 0x5e, 0x68, 0x56, 0xe2, 0xa9, 0xb8, 0x57, 0x80, 0x44, 0xb4,
6990 0xf3, 0x9c, 0x47, 0xbd, 0xac, 0xa6, 0x3a, 0x76, 0x62, 0x93, 0x11, 0x8e,
6991 0xc5, 0x7a, 0xc0, 0x5d, 0xa4, 0xeb, 0x78, 0x06, 0x57, 0x07, 0xaf, 0x7c,
6992 0x86, 0x1e, 0xec, 0xad, 0xe7, 0xfb, 0x5b, 0x78, 0x65, 0x22, 0xc2, 0x32,
6993 0x5f, 0x21, 0x22, 0xf4, 0x29, 0x3f, 0xdf, 0x0b, 0x80, 0x5c, 0xe6, 0x66,
6994 0xbb, 0x04, 0xe2, 0xd1, 0x5d, 0xc5, 0xad, 0xed, 0xc6, 0x89, 0x5e, 0x1a,
6995 0x44, 0x0a, 0xa1, 0x76, 0xd0, 0xd8, 0x42, 0xb1, 0xd7, 0x9b, 0x54, 0x1e,
6996 0x6d, 0x1d, 0x16, 0x5b, 0xd9, 0xf1, 0x67, 0x5f, 0xb5, 0xfb, 0x60, 0x80,
6997 0x05, 0x36, 0x9f, 0x90, 0x17, 0x8e, 0xf3, 0x73, 0x47, 0xe5, 0xb4, 0x70,
6998 0x1e, 0x19, 0x7f, 0x12, 0x38, 0x1b, 0xf8, 0x95, 0x1e, 0xd1, 0xf1, 0x10,
6999 0xff, 0xf4, 0xf4, 0x65, 0xc2, 0xa4, 0xc4, 0x8c, 0x61, 0x8c, 0x3e, 0x6f,
7000 0xd4, 0x93, 0x12, 0xd4, 0xf9, 0x2f, 0xe4, 0xe4, 0xe2, 0x40, 0xed, 0x16,
7001 0x16, 0xc4, 0x90, 0x40, 0x47, 0x8e, 0x69, 0x7b, 0x60, 0xd3, 0x4d, 0x9d,
7002 0x76, 0x6b, 0xb5, 0x88, 0x16, 0x46, 0xf0, 0x98, 0xfd, 0xa9, 0x88, 0xc7,
7003 0x73, 0x5c, 0xe1, 0x45, 0xc3, 0xaa, 0xdb, 0x1a, 0x4e, 0x9e, 0x92, 0x88,
7004 0x08, 0x52, 0xce, 0x26, 0x19, 0xa2, 0x53, 0x82, 0x91, 0x1b, 0xf1, 0x87,
7005 0x20, 0xda, 0xbb, 0x0e, 0xf6, 0x67, 0xc0, 0xcf, 0xae, 0xb9, 0x0c, 0x5b,
7006 0xcf, 0xf6, 0xf6, 0x96, 0xde, 0x1d, 0x15, 0x99, 0xda, 0x98, 0x6c, 0x38,
7007 0xaa, 0xe0, 0x90, 0x8b, 0x73, 0x12, 0xd5, 0x5e, 0x51, 0x94, 0x7f, 0xf7,
7008 0x72, 0x83, 0xe6, 0x06, 0x6f, 0x3d, 0x7f, 0xfe, 0x3c, 0xea, 0x5d, 0x32,
7009 0x8b, 0xf1, 0x11, 0xf1, 0xf3, 0xa9, 0xb3, 0xe4, 0xf6, 0xf1, 0x0c, 0xb6,
7010 0x14, 0xbe, 0x70, 0x54, 0x4c, 0x27, 0x0c, 0xe2, 0x4a, 0x3d, 0x83, 0x18,
7011 0x8c, 0xfe, 0x06, 0x6b, 0x20, 0xa2, 0xb3, 0xd7, 0x7c, 0xd7, 0x1d, 0xbf,
7012 0xc7, 0xbf, 0xa1, 0x4e, 0xc2, 0xde, 0x52, 0x02, 0x3b, 0xa1, 0x5e, 0xe7,
7013 0x14, 0xa7, 0x79, 0xfb, 0x4d, 0x13, 0x5b, 0x62, 0xfd, 0x7c, 0xb0, 0xb9,
7014 0xfb, 0x72, 0x6b, 0x23, 0x50, 0xd1, 0x84, 0x6d, 0x89, 0x62, 0xc7, 0xad,
7015 0xbd, 0x15, 0x48, 0xed, 0x78, 0x90, 0x62, 0x30, 0x63, 0x20, 0x10, 0xeb,
7016 0x56, 0x2b, 0xa4, 0x9a, 0x7f, 0x25, 0xf8, 0x80, 0xbd, 0xb8, 0x1c, 0xa5,
7017 0x69, 0x93, 0x08, 0x38, 0xda, 0x12, 0x94, 0x3e, 0xed, 0x6b, 0x2b, 0x6a,
7018 0x03, 0x0b, 0x1f, 0xa7, 0x70, 0x5c, 0x8a, 0xb9, 0x5c, 0x60, 0x8e, 0xf7,
7019 0x09, 0xf6, 0xc1, 0x0c, 0x82, 0x80, 0x9d, 0xa5, 0x54, 0xeb, 0x1c, 0x33,
7020 0xd0, 0xb1, 0xaa, 0x83, 0x08, 0xc4, 0x53, 0x2f, 0x54, 0xa2, 0x47, 0x62,
7021 0xee, 0xfa, 0x38, 0x4c, 0x42, 0x71, 0xec, 0x12, 0xb1, 0x53, 0x29, 0xd5,
7022 0x9d, 0x52, 0x8f, 0x7e, 0x7f, 0x76, 0x66, 0x4a, 0x16, 0xc9, 0x4f, 0x18,
7023 0x60, 0x7f, 0x12, 0x52, 0x92, 0x53, 0x5c, 0xce, 0x40, 0x2e, 0xb5, 0xad,
7024 0x5a, 0x14, 0xd8, 0xed, 0xf4, 0xd0, 0x24, 0xf0, 0x53, 0xd5, 0xc9, 0x63,
7025 0xe0, 0x0c, 0x34, 0x8c, 0x65, 0x23, 0xac, 0x3c, 0x54, 0x95, 0x4b, 0x09,
7026 0xa0, 0x36, 0x6e, 0x1a, 0x0c, 0xce, 0x3c, 0x09, 0x26, 0x75, 0x73, 0x26,
7027 0x80, 0x4a, 0x15, 0xe0, 0xf1, 0x08, 0x0d, 0x57, 0xb2, 0x3a, 0x73, 0x6a,
7028 0x24, 0xff, 0x62, 0x6f, 0x67, 0xa7, 0x1b, 0xed, 0xf7, 0xb7, 0x5d, 0x38,
7029 0xa5, 0x78, 0xea, 0x41, 0x5c, 0x4a, 0xe9, 0x81, 0x87, 0xb1, 0x44, 0xbd,
7030 0xe4, 0x2d, 0xca, 0x92, 0x00, 0x2b, 0x69, 0x59, 0x35, 0x3a, 0x1b, 0x42,
7031 0x08, 0x2b, 0x9d, 0xef, 0x76, 0xf6, 0xf7, 0xb7, 0x5f, 0x1e, 0x5c, 0xf4,
7032 0xf6, 0x77, 0xb6, 0x11, 0x63, 0x89, 0x6d, 0x2a, 0x9b, 0xab, 0xeb, 0x56,
7033 0xf6, 0x46, 0xe9, 0x98, 0x81, 0x39, 0xa7, 0x53, 0xad, 0xc2, 0x6c, 0x0e,
7034 0x97, 0xcf, 0x93, 0xac, 0x2c, 0xa7, 0x51, 0xf9, 0x91, 0xb1, 0x01, 0x36,
7035 0xcb, 0x8f, 0xec, 0x0d, 0xe9, 0x08, 0x2c, 0x52, 0x1a, 0xd0, 0xbc, 0xcd,
7036 0xce, 0xc8, 0x75, 0x10, 0x9b, 0x22, 0x64, 0x81, 0x3d, 0x32, 0xfb, 0xc0,
7037 0x96, 0x7f, 0x13, 0xea, 0x28, 0x98, 0x44, 0xad, 0x86, 0x33, 0x2b, 0x4f,
7038 0xeb, 0x27, 0xc7, 0x1b, 0xbc, 0x69, 0xba, 0x97, 0xb6, 0x30, 0x9f, 0x67,
7039 0xda, 0xe5, 0x1a, 0x4b, 0xff, 0x46, 0xcb, 0xc0, 0x82, 0xa6, 0x5a, 0xd7,
7040 0x98, 0x4a, 0x3a, 0x75, 0x5d, 0xec, 0xe3, 0x51, 0x98, 0xd1, 0x7a, 0x03,
7041 0xc5, 0xd6, 0xf3, 0x23, 0xb8, 0x8f, 0x55, 0x3d, 0xa7, 0x8e, 0x17, 0x2f,
7042 0x9d, 0x43, 0x04, 0x78, 0x10, 0x5b, 0xce, 0x7a, 0x3a, 0x23, 0xd3, 0xb6,
7043 0x01, 0x95, 0xb4, 0xf2, 0x31, 0xe3, 0xcf, 0xf1, 0xc6, 0xaf, 0x7a, 0xc0,
7044 0xb4, 0xac, 0xab, 0x91, 0x62, 0xe7, 0x9e, 0x32, 0x74, 0x62, 0xb1, 0x98,
7045 0x64, 0x4f, 0x5d, 0x8b, 0x83, 0x4e, 0x4b, 0x49, 0xa8, 0xdd, 0x02, 0xe1,
7046 0x5d, 0xa5, 0x31, 0x67, 0x88, 0xf5, 0xc6, 0xda, 0x46, 0x67, 0xd5, 0xa5,
7047 0x39, 0x9f, 0xfe, 0xf2, 0x09, 0xca, 0x15, 0xbd, 0x8e, 0x9e, 0x1e, 0xac,
7048 0xd7, 0x95, 0x7f, 0x16, 0xf1, 0xad, 0x02, 0x9b, 0xe3, 0x3f, 0xe1, 0x3b,
7049 0x5c, 0x37, 0xec, 0xad, 0x98, 0xdf, 0x5b, 0xba, 0x64, 0x81, 0x02, 0xc2,
7050 0xf6, 0x8f, 0xd2, 0x88, 0xcc, 0x78, 0x77, 0xca, 0xa6, 0x07, 0x03, 0x1b,
7051 0xe5, 0x52, 0x0f, 0x80, 0x00, 0xae, 0xb2, 0x34, 0x74, 0x25, 0xec, 0x9c,
7052 0x32, 0x47, 0x69, 0xdc, 0xe6, 0x56, 0xe0, 0x96, 0x4e, 0xc6, 0x6b, 0x69,
7053 0x8c, 0x09, 0xc9, 0x5f, 0xff, 0xb2, 0xab, 0x60, 0x4a, 0x55, 0xdd, 0xeb,
7054 0x18, 0x07, 0x7c, 0x30, 0xdc, 0x3c, 0xfd, 0x15, 0xf5, 0x43, 0x26, 0xb7,
7055 0xb7, 0xa9, 0xc6, 0xd7, 0x0c, 0xe6, 0x19, 0x56, 0x1c, 0x17, 0x0c, 0xd2,
7056 0x4b, 0xdf, 0xc3, 0xf4, 0x8f, 0x6e, 0xe4, 0xc7, 0xe5, 0x31, 0x8d, 0x89,
7057 0xef, 0x27, 0x50, 0x46, 0xd0, 0x70, 0x2d, 0xa5, 0x51, 0x74, 0x51, 0xa4,
7058 0x18, 0x78, 0x2a, 0x92, 0x6a, 0x51, 0x48, 0xdd, 0x29, 0x16, 0xe9, 0xe0,
7059 0x59, 0x1b, 0x73, 0x89, 0x7a, 0xe8, 0x1e, 0x33, 0x69, 0x78, 0x54, 0x31,
7060 0x45, 0x2d, 0x65, 0xb0, 0x57, 0x83, 0x47, 0x14, 0x6a, 0xfc, 0xae, 0x73,
7061 0xab, 0x43, 0x91, 0xb1, 0x97, 0x8c, 0xcb, 0xeb, 0xb9, 0x51, 0x40, 0x5e,
7062 0x73, 0xe5, 0xc2, 0xd8, 0x21, 0x30, 0x37, 0x76, 0x00, 0x6e, 0xde, 0xf5,
7063 0x6e, 0x6f, 0x6f, 0x7b, 0x78, 0x9b, 0x5b, 0x06, 0x31, 0xb0, 0x19, 0xa6,
7064 0x76, 0x9c, 0x0e, 0x3d, 0x7f, 0x3a, 0x8f, 0x02, 0x39, 0x20, 0x4e, 0xe6,
7065 0x7e, 0x31, 0x4c, 0x2b, 0xc2, 0x2f, 0x11, 0xae, 0xa2, 0xd7, 0x44, 0x5c,
7066 0xc9, 0x94, 0xc8, 0xc7, 0xa3, 0x91, 0xac, 0x00, 0x51, 0xec, 0x7a, 0x10,
7067 0x9b, 0x79, 0x54, 0x25, 0x88, 0xfc, 0x84, 0x1d, 0x33, 0x0f, 0xa2, 0xde,
7068 0x9b, 0xa8, 0x73, 0x2c, 0x2b, 0xbe, 0x84, 0x27, 0x0e, 0x6a, 0xe9, 0x31,
7069 0x9b, 0xfc, 0x70, 0xb0, 0xdb, 0x66, 0xd0, 0xa9, 0x5c, 0x87, 0x97, 0xb1,
7070 0xad, 0x28, 0x02, 0x7a, 0x42, 0x8e, 0x5b, 0x6d, 0x4b, 0x36, 0x42, 0xf9,
7071 0xff, 0x58, 0x1f, 0xc1, 0xa1, 0x31, 0xc6, 0xb1, 0xa7, 0xa5, 0xc7, 0x98,
7072 0xf4, 0xa6, 0x89, 0xa5, 0xc0, 0x73, 0xbf, 0x50, 0x44, 0x08, 0x55, 0xbf,
7073 0x34, 0xde, 0xeb, 0x27, 0xc8, 0x09, 0x4f, 0x11, 0x34, 0xe2, 0xe2, 0x41,
7074 0xa9, 0xe7, 0x08, 0x00, 0xdb, 0xc3, 0xbb, 0xd2, 0x91, 0xb9, 0x07, 0xb3,
7075 0x53, 0xa6, 0x84, 0xa2, 0xc1, 0x3b, 0x41, 0x58, 0xb7, 0x64, 0xb0, 0x2b,
7076 0xc4, 0x0d, 0xcd, 0x26, 0xfb, 0x97, 0x0f, 0x37, 0x44, 0x2a, 0x97, 0x52,
7077 0x07, 0xd7, 0xd0, 0xc1, 0xd6, 0x7c, 0x79, 0x67, 0x85, 0x4c, 0x3e, 0xfb,
7078 0xea, 0x97, 0x71, 0x85, 0xff, 0x7f, 0x45, 0xf4, 0x74, 0xbb, 0xa3, 0xb5,
7079 0xdc, 0x95, 0xd0, 0xe5, 0x62, 0xce, 0xd8, 0x2a, 0xa4, 0xee, 0x1a, 0x31,
7080 0x25, 0x47, 0x9b, 0x83, 0xa4, 0x42, 0x73, 0xed, 0x3c, 0x16, 0xc0, 0x64,
7081 0xa0, 0x80, 0xf7, 0x1d, 0x8a, 0x2c, 0x05, 0x31, 0x97, 0xc0, 0x5f, 0x52,
7082 0xe0, 0x89, 0xa7, 0x2a, 0xe5, 0x9e, 0x36, 0x35, 0xf7, 0x0d, 0x4a, 0x52,
7083 0xbe, 0x8f, 0xbf, 0x3e, 0xa5, 0x82, 0x43, 0xb8, 0xe3, 0x32, 0x41, 0x41,
7084 0xe4, 0xa9, 0x53, 0x3f, 0x71, 0xeb, 0x4f, 0xbf, 0x4a, 0x33, 0xd5, 0x5f,
7085 0x62, 0x8e, 0xe8, 0xf9, 0x58, 0xc6, 0x70, 0x76, 0x44, 0xdd, 0x8b, 0x6d,
7086 0x91, 0x19, 0x17, 0x9b, 0x9a, 0xc6, 0xec, 0xaa, 0xa7, 0xc6, 0xb6, 0x84,
7087 0x3b, 0x48, 0x2a, 0xfa, 0xba, 0x6a, 0x92, 0x71, 0xa9, 0xd6, 0x3e, 0xee,
7088 0xa8, 0x57, 0xf6, 0x6a, 0x8f, 0x6d, 0x79, 0x9f, 0x55, 0xf1, 0x5d, 0xe2,
7089 0xd7, 0xa6, 0xc8, 0xe7, 0x9b, 0x1c, 0xe2, 0x98, 0xd6, 0x8d, 0xf0, 0x8d,
7090 0x21, 0x5d, 0x52, 0xeb, 0x2b, 0x4f, 0x30, 0x1c, 0x18, 0xc0, 0x0b, 0x45,
7091 0xc0, 0x8d, 0xa3, 0x01, 0x94, 0xd5, 0xff, 0x92, 0xea, 0x44, 0xb8, 0x39,
7092 0xc8, 0xa8, 0x54, 0xa8, 0x1c, 0x77, 0x30, 0xd3, 0xf5, 0x51, 0x6a, 0xd8,
7093 0xc2, 0xc3, 0x61, 0x92, 0xd7, 0xe7, 0xe8, 0x0d, 0xfa, 0x52, 0xa2, 0x63,
7094 0x58, 0xc0, 0xeb, 0x66, 0x20, 0x89, 0x53, 0x9d, 0x15, 0x50, 0x81, 0x87,
7095 0x40, 0x32, 0x84, 0x87, 0xe3, 0x74, 0x38, 0x87, 0x7a, 0xcc, 0x6d, 0xa3,
7096 0x18, 0x5d, 0x6f, 0xc3, 0x04, 0x08, 0xf9, 0x1f, 0x4d, 0xe2, 0x7d, 0xfe,
7097 0x30, 0xf5, 0x56, 0x25, 0xdf, 0x72, 0xea, 0x71, 0xaf, 0x57, 0x2d, 0x6e,
7098 0xfb, 0xdc, 0x89, 0x0a, 0x52, 0xae, 0x32, 0xfb, 0xe7, 0x4d, 0x74, 0x30,
7099 0x28, 0x6c, 0x91, 0x43, 0x3f, 0xff, 0xb5, 0x76, 0x9d, 0x98, 0x91, 0xee,
7100 0x78, 0x9c, 0x7c, 0x78, 0x38, 0x8e, 0x20, 0xd0, 0xde, 0xbb, 0x0d, 0x58,
7101 0xb4, 0xbf, 0x19, 0x8e, 0x40, 0x41, 0x33, 0xe0, 0xff, 0x8a, 0x99, 0x79,
7102 0x48, 0x91, 0xb8, 0x5e, 0x78, 0x38, 0xc5, 0x80, 0x11, 0x77, 0xa6, 0xb7,
7103 0x3e, 0x73, 0x43, 0x3c, 0x7e, 0x71, 0x94, 0x9c, 0xcf, 0x3d, 0x20, 0x35,
7104 0x1e, 0xac, 0x69, 0x6f, 0x9c, 0x9b, 0xb2, 0xee, 0x07, 0x2b, 0xf5, 0xf8,
7105 0x48, 0x37, 0x18, 0xee, 0xe6, 0xa8, 0xaa, 0xd1, 0x46, 0xb7, 0x4e, 0x30,
7106 0x44, 0xad, 0xa7, 0x3b, 0x51, 0x77, 0x39, 0x6d, 0xdd, 0x63, 0xdd, 0x3b,
7107 0xec, 0xe1, 0x1a, 0xdc, 0xbb, 0xff, 0x93, 0xd6, 0x47, 0xfc, 0x6c, 0xd9,
7108 0x00, 0xf3, 0x34, 0x4a, 0x69, 0xa6, 0x85, 0x35, 0xb2, 0x11, 0x55, 0x17,
7109 0x47, 0x01, 0x3d, 0x4e, 0x65, 0x21, 0x81, 0x50, 0x77, 0x39, 0x59, 0x6e,
7110 0xca, 0x36, 0x74, 0xca, 0x35, 0xc7, 0x9f, 0x5b, 0xad, 0x8e, 0xbd, 0x6d,
7111 0xa6, 0x72, 0x1f, 0x99, 0x70, 0x09, 0xa7, 0x1a, 0xce, 0x0c, 0x33, 0x65,
7112 0x2b, 0xfb, 0xf9, 0xf7, 0xb4, 0x7b, 0xcb, 0xda, 0xfb, 0x8f, 0x26, 0x77,
7113 0x03, 0x8b, 0x5b, 0x76, 0x4f, 0x87, 0x5f, 0xfd, 0x9c, 0xff, 0x4b, 0x57,
7114 0xd9, 0xea, 0x6f, 0x1b, 0xe6, 0x79, 0xc2, 0xbb, 0xf4, 0x1e, 0x45, 0x65,
7115 0x97, 0x29, 0x08, 0x01, 0xcd, 0xc0, 0x35, 0xc4, 0x40, 0xd3, 0x70, 0xf4,
7116 0x02, 0xfb, 0x48, 0xbb, 0x46, 0x10, 0xbd, 0xfd, 0xeb, 0xe5, 0xe5, 0x06,
7117 0x8c, 0x8b, 0x55, 0x24, 0x75, 0x6c, 0x4a, 0x7a, 0x93, 0x81, 0xc5, 0xb0,
7118 0xdb, 0xb1, 0x97, 0xfe, 0x1f, 0x0a, 0x70, 0x6b, 0xfa, 0xbd, 0x1b, 0x8b,
7119 0xa3, 0x8c, 0x2b, 0x72, 0xbb, 0x45, 0xc3, 0x22, 0xbf, 0x2d, 0xc9, 0x10,
7120 0xd1, 0x98, 0x43, 0xcc, 0x2e, 0xee, 0x6b, 0x0f, 0x00, 0x0c, 0xc8, 0x31,
7121 0x35, 0x8d, 0xaf, 0xde, 0x5c, 0xbe, 0x3d, 0xe3, 0x06, 0xb8, 0x8c, 0x45,
7122 0x85, 0x08, 0x05, 0x32, 0xdd, 0xc5, 0x70, 0x96, 0x56, 0xa8, 0x1d, 0x56,
7123 0x2c, 0xbd, 0xf5, 0x42, 0xf0, 0x00, 0xb3, 0x28, 0x1b, 0x4c, 0x3c, 0x26,
7124 0xf3, 0x50, 0x1e, 0x8c, 0x98, 0x10, 0x0e, 0x76, 0xb5, 0x63, 0xff, 0xb4,
7125 0x27, 0xce, 0xb7, 0xd9, 0x39, 0xc7, 0x9c, 0x2e, 0x4e, 0x2a, 0xec, 0x6b,
7126 0xdc, 0x09, 0x7c, 0x22, 0xe0, 0xe5, 0x31, 0x2a, 0x22, 0x9a, 0x53, 0x53,
7127 0xea, 0xcc, 0x67, 0x48, 0x87, 0x4a, 0xaf, 0xb9, 0xa9, 0x09, 0x68, 0x5b,
7128 0xea, 0x19, 0x54, 0xcf, 0xf5, 0xac, 0x2f, 0xa3, 0xf7, 0xda, 0x2e, 0xcb,
7129 0xae, 0xea, 0x8b, 0x9a, 0x17, 0x6a, 0x7f, 0x92, 0xaf, 0xb3, 0x28, 0x30,
7130 0x62, 0xa1, 0xc6, 0xbd, 0x5f, 0x09, 0x2c, 0x2a, 0x98, 0x46, 0x0e, 0x6c,
7131 0x52, 0x9c, 0x6b, 0x30, 0x68, 0x4f, 0x59, 0x8c, 0x30, 0x39, 0x32, 0x2b,
7132 0xc0, 0x22, 0x0c, 0x6a, 0x4d, 0x05, 0xde, 0xb4, 0x99, 0xc0, 0x66, 0x30,
7133 0x3a, 0x5a, 0x83, 0xe8, 0xb4, 0xc5, 0xd1, 0xdb, 0x1d, 0x0a, 0x8e, 0x65,
7134 0x65, 0x7b, 0x2e, 0x97, 0xb6, 0xc9, 0xae, 0xfa, 0x61, 0x09, 0xdb, 0x9b,
7135 0xd0, 0xbc, 0xa9, 0xcb, 0x6e, 0x5e, 0x0f, 0x0a, 0xfb, 0x99, 0x01, 0x12,
7136 0x24, 0xee, 0x3a, 0x59, 0x4c, 0x29, 0x06, 0x32, 0x6b, 0xae, 0x07, 0x76,
7137 0x2d, 0xcd, 0x92, 0xe2, 0x4a, 0x3d, 0x11, 0xac, 0x65, 0x7a, 0xc0, 0xe8,
7138 0xe2, 0x65, 0xfc, 0x1f, 0x3d, 0x56, 0x1b, 0xa8, 0xae, 0x65, 0x51, 0xda,
7139 0xe6, 0xde, 0x6b, 0xbd, 0x31, 0x8b, 0xa7, 0x71, 0x9c, 0xc1, 0xe2, 0xb1,
7140 0x7d, 0x73, 0xf9, 0x09, 0x86, 0xff, 0x7c, 0x9a, 0x2f, 0xca, 0xfb, 0x35,
7141 0xaf, 0x78, 0x84, 0x7c, 0x0f, 0x91, 0xf4, 0x05, 0xc6, 0x48, 0x2b, 0xa9,
7142 0xc0, 0xec, 0x2d, 0xe1, 0x3a, 0xba, 0x45, 0xf6, 0xc9, 0xaa, 0x00, 0x5c,
7143 0x3d, 0x5d, 0x32, 0x80, 0xc6, 0xa7, 0x26, 0xf9, 0xd7, 0x9c, 0x2f, 0xff,
7144 0x0f, 0xf7, 0xb3, 0x41, 0x2a, 0x93, 0x91, 0xce, 0xae, 0x92, 0xc7, 0xf9,
7145 0x4a, 0x6c, 0xfe, 0x4b, 0xdc, 0xda, 0xcd, 0x54, 0x13, 0x67, 0xcc, 0x80,
7146 0x78, 0x5d, 0x72, 0x73, 0x22, 0xcd, 0x3c, 0xb2, 0x59, 0xbf, 0x24, 0x68,
7147 0x0a, 0xbf, 0x2b, 0xaf, 0xe3, 0x33, 0xa0, 0xdb, 0x56, 0x12, 0x78, 0xa2,
7148 0xe8, 0x22, 0xe7, 0xde, 0xad, 0xf6, 0x22, 0x8e, 0x6b, 0xfd, 0x57, 0x26,
7149 0x79, 0x3e, 0x8c, 0x8b, 0x30, 0x95, 0xa9, 0xef, 0xe4, 0x30, 0xe1, 0x7e,
7150 0x96, 0x9c, 0x2e, 0x63, 0xe5, 0xe7, 0x97, 0xfc, 0x66, 0x9f, 0xe3, 0x80,
7151 0xf2, 0x43, 0xca, 0x91, 0xcc, 0xa7, 0x63, 0x3f, 0x79, 0x94, 0xd7, 0x28,
7152 0x93, 0x53, 0x1c, 0x3c, 0xea, 0x1e, 0x8d, 0xdb, 0xd4, 0x0d, 0xb8, 0x74,
7153 0xb0, 0x84, 0x5e, 0x6e, 0xfe, 0x96, 0x30, 0x31, 0xd6, 0x9b, 0x60, 0x6e,
7154 0x3f, 0xe5, 0x95, 0xab, 0x13, 0x45, 0xb2, 0x5f, 0x38, 0x31, 0xa3, 0x6e,
7155 0xe5, 0xe2, 0x3c, 0x50, 0x62, 0x78, 0x48, 0x7f, 0x35, 0xf9, 0x61, 0xe5,
7156 0x85, 0x73, 0xfa, 0x48, 0x18, 0x49, 0x61, 0xd6, 0x8a, 0xb6, 0xf2, 0x38,
7157 0xea, 0xb0, 0xf6, 0x0b, 0xff, 0x5a, 0xc1, 0x4e, 0xae, 0xbf, 0x86, 0xff,
7158 0xac, 0xf2, 0x7c, 0xfa, 0xf9, 0x68, 0x36, 0x46, 0x92, 0xac, 0x34, 0xd0,
7159 0xca, 0xee, 0x0b, 0xbe, 0x4f, 0x9b, 0x8e, 0x4e, 0xff, 0x82, 0x6e, 0x5c,
7160 0xb3, 0x4b, 0xf2, 0x17, 0x6c, 0xbf, 0x21, 0x2b, 0xf8, 0xf9, 0xf5, 0x53,
7161 0x1a, 0xf8, 0x9a, 0xb8, 0x83, 0x74, 0xfa, 0xde, 0x25, 0xfd, 0x44, 0x3a,
7162 0x16, 0x06, 0x8e, 0x4d, 0xcd, 0xcc, 0x4f, 0xa6, 0xc9, 0x15, 0xef, 0xd6,
7163 0xe1, 0xd9, 0xc9, 0x37, 0x27, 0x67, 0xde, 0x8d, 0xfe, 0xf5, 0x60, 0xb0,
7164 0xf9, 0x29, 0x29, 0x86, 0x49, 0x91, 0x97, 0x1b, 0xb8, 0x3c, 0x0c, 0x3a,
7165 0xe2, 0x93, 0xa6, 0x5e, 0xc2, 0xb9, 0xe8, 0x6e, 0x2d, 0x7a, 0x6b, 0xcc,
7166 0xf6, 0xb3, 0xcf, 0xc9, 0xf2, 0x49, 0x69, 0xe3, 0x49, 0x20, 0x0d, 0x52,
7167 0x04, 0x44, 0xd7, 0xf6, 0xa8, 0x48, 0x28, 0xf8, 0x11, 0x07, 0x10, 0xde,
7168 0x09, 0x62, 0x33, 0x8a, 0x5e, 0x31, 0x8b, 0x72, 0x55, 0x2a, 0x4a, 0x6e,
7169 0xbb, 0x0a, 0xef, 0x95, 0x39, 0xe1, 0xd8, 0x45, 0xaf, 0xe4, 0xa3, 0x04,
7170 0xe6, 0x83, 0x64, 0x62, 0x5c, 0x78, 0x36, 0x19, 0xcf, 0xff, 0xd2, 0x3b,
7171 0x1a, 0xf4, 0x5e, 0x9d, 0x9c, 0x9d, 0x7c, 0x7d, 0x74, 0x79, 0xc2, 0x1d,
7172 0x26, 0x35, 0x88, 0x10, 0xd6, 0x39, 0x4d, 0xb2, 0xe8, 0x5f, 0x84, 0x32,
7173 0x91, 0x69, 0xad, 0x17, 0x55, 0x29, 0xb7, 0xff, 0xb6, 0x4d, 0x6c, 0x62,
7174 0xb4, 0x52, 0x2b, 0xaa, 0xb7, 0x09, 0x0f, 0x07, 0x67, 0x7b, 0x3a, 0x93,
7175 0xa9, 0x7a, 0x2b, 0x88, 0xa7, 0xa0, 0xed, 0x94, 0xd1, 0x87, 0x0c, 0xcb,
7176 0x72, 0x53, 0x83, 0xc6, 0xc3, 0xab, 0x77, 0xfd, 0x94, 0x96, 0xb4, 0x4e,
7177 0x03, 0xf8, 0x5f, 0x2b, 0xb2, 0xe8, 0x79, 0xfb, 0x54, 0xe5, 0xb4, 0x0c,
7178 0xd4, 0xc1, 0xed, 0xe9, 0x3c, 0x52, 0xd7, 0xac, 0xf5, 0x6a, 0x90, 0x83,
7179 0x50, 0x96, 0xd3, 0x1a, 0x6f, 0x52, 0x83, 0xd3, 0xb0, 0xcf, 0x49, 0xe1,
7180 0xd6, 0x48, 0x43, 0x7c, 0x45, 0x0f, 0x36, 0xfa, 0xd9, 0x39, 0x18, 0x5a,
7181 0x99, 0xed, 0x75, 0x17, 0x00, 0x3d, 0x25, 0xcd, 0xa6, 0x1c, 0x5d, 0x27,
7182 0x33, 0x03, 0xe3, 0x8d, 0xb9, 0xb5, 0x94, 0xcb, 0xc9, 0xd8, 0x3c, 0x02,
7183 0x3a, 0x4c, 0xb2, 0x77, 0x98, 0x90, 0x63, 0x06, 0xcd, 0xe8, 0xdc, 0x4f,
7184 0xe3, 0xab, 0xa8, 0xdd, 0x57, 0x41, 0xb5, 0xa0, 0x94, 0x3f, 0x4f, 0xa8,
7185 0x52, 0x7d, 0xaa, 0x32, 0x72, 0x92, 0x5e, 0xfd, 0x24, 0x57, 0x04, 0xb3,
7186 0x99, 0x79, 0xe5, 0x85, 0xd2, 0x29, 0x51, 0xd3, 0x24, 0x38, 0x23, 0x83,
7187 0x7e, 0xc4, 0x7d, 0xbc, 0xc5, 0x70, 0xc3, 0xd9, 0xad, 0xe2, 0x2f, 0x6e,
7188 0x6e, 0x3f, 0x9d, 0x05, 0x0b, 0x9a, 0x43, 0xc0, 0x01, 0x41, 0x90, 0x8a,
7189 0x5f, 0xda, 0xb2, 0x8f, 0x77, 0x74, 0x35, 0x77, 0xa5, 0x69, 0x18, 0xd8,
7190 0x35, 0xfd, 0xfb, 0x64, 0x18, 0x66, 0x1a, 0xe9, 0x8e, 0xab, 0xe5, 0xbe,
7191 0xe1, 0x9c, 0x67, 0x47, 0x7c, 0xd6, 0x7a, 0xe8, 0x62, 0x87, 0x43, 0xfd,
7192 0xab, 0xdf, 0x3e, 0xd9, 0x14, 0xd9, 0xf7, 0x92, 0xb9, 0xd7, 0x15, 0x6e,
7193 0xfd, 0xb5, 0x76, 0x8f, 0x34, 0x26, 0x80, 0x62, 0x88, 0x48, 0x96, 0x8d,
7194 0x7a, 0xa4, 0x4e, 0x2e, 0xde, 0x5f, 0xd2, 0x47, 0xce, 0xf0, 0x2f, 0x92,
7195 0x46, 0x58, 0x86, 0xc0, 0xf8, 0xa5, 0xd5, 0x35, 0xe6, 0x66, 0x27, 0x94,
7196 0x34, 0x65, 0xd2, 0x9a, 0xb5, 0xd6, 0x88, 0xcb, 0xda, 0xa4, 0x9b, 0x9f,
7197 0x48, 0x06, 0xda, 0x35, 0xaf, 0x82, 0xb9, 0xc2, 0x2a, 0x57, 0x53, 0x77,
7198 0x82, 0x73, 0x10, 0xdc, 0x64, 0x9a, 0x05, 0xd7, 0xe6, 0x69, 0x86, 0xc4,
7199 0x39, 0xfe, 0x52, 0xbd, 0xe1, 0xc4, 0x35, 0xc1, 0x5b, 0xc8, 0x62, 0xe4,
7200 0xe3, 0x90, 0xf8, 0x56, 0x54, 0xa4, 0x57, 0xd7, 0xb0, 0x13, 0x30, 0x8f,
7201 0xbe, 0x5d, 0x27, 0x7f, 0x82, 0x61, 0xa1, 0xa8, 0x85, 0x89, 0x9f, 0x0f,
7202 0x41, 0x58, 0x0e, 0x26, 0xdb, 0x57, 0xab, 0x6b, 0xb9, 0x9e, 0xcf, 0xe4,
7203 0x30, 0x75, 0x05, 0x2b, 0x99, 0x71, 0xec, 0xa8, 0xec, 0x99, 0x53, 0x99,
7204 0xbc, 0xc8, 0x3f, 0x95, 0x55, 0x77, 0xb5, 0x7f, 0xfb, 0xbd, 0x34, 0x43,
7205 0x61, 0xc5, 0x5d, 0x3b, 0xa7, 0xc6, 0xd4, 0x2b, 0x88, 0x8c, 0xcf, 0x21,
7206 0x6b, 0x9a, 0x62, 0x45, 0x66, 0x81, 0x43, 0x0c, 0x84, 0x57, 0x59, 0xcb,
7207 0x0b, 0x95, 0x6d, 0x0b, 0x18, 0x5b, 0xc8, 0x1b, 0x4d, 0xac, 0xed, 0xe4,
7208 0x0e, 0x6d, 0xb9, 0x14, 0x23, 0x8e, 0x32, 0x15, 0x26, 0x0e, 0x22, 0x3b,
7209 0x2b, 0xbf, 0xe5, 0x21, 0xae, 0x62, 0x71, 0xe5, 0x84, 0x68, 0x6b, 0x2c,
7210 0xd8, 0x56, 0x2a, 0xe4, 0x04, 0xcf, 0x46, 0xb5, 0x76, 0x49, 0xa7, 0x17,
7211 0x37, 0xcf, 0xea, 0x89, 0x60, 0xec, 0x62, 0x25, 0xbb, 0x0f, 0xa8, 0xda,
7212 0x04, 0x48, 0xe0, 0xe2, 0x71, 0xf8, 0x36, 0x4d, 0x17, 0x1d, 0x94, 0x26,
7213 0x01, 0x13, 0x79, 0xc7, 0xfb, 0xfe, 0x2b, 0x9a, 0x1c, 0x99, 0x21, 0xf4,
7214 0x06, 0x49, 0x12, 0x04, 0x44, 0xbe, 0x12, 0x5b, 0x5a, 0x78, 0x79, 0x98,
7215 0xc0, 0x17, 0xd3, 0xbc, 0x30, 0x5a, 0xa6, 0xe4, 0xfd, 0x36, 0x37, 0x12,
7216 0xf8, 0x6f, 0x74, 0xad, 0xd6, 0x34, 0xbe, 0x48, 0xd9, 0x56, 0xf8, 0x02,
7217 0x01, 0x48, 0x55, 0x7c, 0xf1, 0xb3, 0x5e, 0x89, 0x09, 0x54, 0x5c, 0xd8,
7218 0x8e, 0xc5, 0x50, 0x40, 0xac, 0x51, 0xa0, 0xd6, 0x54, 0x92, 0xd4, 0xe9,
7219 0xd9, 0xb8, 0xbc, 0x59, 0x39, 0x88, 0xe5, 0x10, 0x7f, 0xa5, 0x34, 0x26,
7220 0xe7, 0xcd, 0xf2, 0x86, 0x77, 0xfc, 0xa2, 0xeb, 0x4c, 0x3a, 0x2c, 0x64,
7221 0xca, 0x9b, 0xa0, 0x90, 0x79, 0xa4, 0x94, 0x19, 0x7c, 0x63, 0x72, 0x94,
7222 0x45, 0x9a, 0x78, 0x69, 0xf7, 0xb0, 0x51, 0x4a, 0xd9, 0x47, 0x8b, 0x17,
7223 0xb9, 0x15, 0x40, 0xa4, 0xf8, 0x91, 0x4f, 0x14, 0x31, 0x46, 0xc2, 0xc0,
7224 0xf7, 0x45, 0xac, 0x5c, 0x1c, 0x0d, 0xbe, 0x69, 0x08, 0x14, 0x4f, 0x84,
7225 0xf8, 0xe0, 0xfa, 0x98, 0x18, 0xca, 0x6c, 0x8b, 0x63, 0x05, 0x4f, 0x1a,
7226 0xd0, 0xf2, 0x11, 0x27, 0x0d, 0x26, 0xe2, 0x9d, 0x34, 0x8f, 0xb4, 0xcb,
7227 0x4e, 0x5a, 0x80, 0x51, 0x4e, 0xd5, 0xf5, 0xe1, 0x9c, 0xb5, 0x8c, 0xce,
7228 0x17, 0x55, 0xc8, 0x07, 0x0e, 0x19, 0x9d, 0x31, 0xcc, 0x2e, 0xa0, 0x43,
7229 0xe5, 0xd7, 0xf4, 0xd0, 0x3c, 0x57, 0x39, 0x62, 0xf4, 0x82, 0x77, 0xc2,
7230 0x74, 0x3f, 0x57, 0x3e, 0x62, 0x72, 0x34, 0xbd, 0x13, 0x46, 0xa7, 0xab,
7231 0x85, 0x59, 0x57, 0x3d, 0x35, 0xb0, 0x5f, 0x4f, 0x3c, 0x35, 0x9a, 0x5d,
7232 0xd6, 0x76, 0x6a, 0x5c, 0x0c, 0x9c, 0xc0, 0x56, 0xb1, 0x9e, 0x13, 0x97,
7233 0x8e, 0x5a, 0x63, 0x53, 0xad, 0x02, 0x58, 0x9d, 0x5d, 0x03, 0x8d, 0x54,
7234 0x8c, 0xfc, 0x58, 0x9b, 0x41, 0xe2, 0x72, 0xcb, 0xca, 0xc9, 0x20, 0x97,
7235 0x9a, 0xd0, 0x71, 0x9f, 0x56, 0xa1, 0xd5, 0x9d, 0xfc, 0x02, 0x8a, 0x25,
7236 0x1f, 0xb5, 0xc9, 0x01, 0x5e, 0x4e, 0x82, 0x48, 0x62, 0x65, 0x82, 0x79,
7237 0xed, 0x51, 0x3d, 0xa7, 0xee, 0x51, 0x84, 0xff, 0xfb, 0x6a, 0x9a, 0x95,
7238 0x83, 0xbf, 0xda, 0x14, 0x47, 0x68, 0x5b, 0x90, 0xd2, 0x85, 0x1a, 0x1c,
7239 0xa8, 0xe9, 0x68, 0xb3, 0x2e, 0x4d, 0xb5, 0xa9, 0x28, 0x8b, 0xcf, 0xf1,
7240 0xb1, 0x20, 0xd6, 0x0e, 0xda, 0x57, 0x12, 0xec, 0x8c, 0x09, 0x33, 0x4e,
7241 0x02, 0x83, 0xa4, 0xe4, 0x04, 0x9a, 0x82, 0x72, 0xe2, 0x8b, 0xaa, 0xed,
7242 0xa0, 0x05, 0x0c, 0xb1, 0x3a, 0x25, 0x22, 0xff, 0xe5, 0x82, 0x93, 0x59,
7243 0x6f, 0x6d, 0xc1, 0x0d, 0x96, 0x7d, 0x71, 0x73, 0x9a, 0x24, 0x00, 0x82,
7244 0x66, 0xda, 0x3a, 0x20, 0x94, 0x44, 0x46, 0x98, 0x35, 0x78, 0x4f, 0x48,
7245 0x68, 0xfa, 0x29, 0x1c, 0x1d, 0xa2, 0xc9, 0xea, 0xed, 0xa7, 0xab, 0xbc,
7246 0x16, 0x76, 0x7f, 0xd6, 0xe8, 0xea, 0x35, 0xce, 0xca, 0x1e, 0x79, 0x51,
7247 0x26, 0x08, 0xfc, 0x79, 0x68, 0xfe, 0xea, 0x99, 0xe5, 0xaf, 0xde, 0x0d,
7248 0xf4, 0x62, 0xb0, 0x54, 0x2f, 0x13, 0xc6, 0x28, 0xb8, 0x22, 0x3d, 0x12,
7249 0x1e, 0x31, 0x00, 0x37, 0x40, 0xb2, 0x22, 0x5f, 0x5c, 0x5d, 0xcb, 0x90,
7250 0x7e, 0x37, 0x4f, 0xf8, 0x84, 0x07, 0x4b, 0x13, 0x33, 0xe6, 0x43, 0x52,
7251 0x50, 0x9c, 0x87, 0xf2, 0x26, 0xec, 0xdc, 0xa2, 0x75, 0xb6, 0x6f, 0xc9,
7252 0x99, 0x1c, 0x00, 0xb2, 0x56, 0x24, 0x1a, 0x9c, 0x86, 0xb4, 0x94, 0xc4,
7253 0x2c, 0x75, 0xea, 0xcb, 0x28, 0x18, 0xfa, 0x0a, 0x79, 0x4b, 0xdd, 0xe9,
7254 0x74, 0xdc, 0x40, 0x90, 0x6c, 0x5d, 0xa0, 0x8f, 0xa5, 0x34, 0x6a, 0x63,
7255 0xe5, 0xdd, 0xab, 0x11, 0x35, 0xa9, 0xae, 0xb7, 0x56, 0xcd, 0x43, 0xc1,
7256 0x01, 0xe6, 0x37, 0x7b, 0x3d, 0x9c, 0x81, 0xba, 0x59, 0xf4, 0xa7, 0xcf,
7257 0xe8, 0xa7, 0x7d, 0x6f, 0xf7, 0x3c, 0x64, 0x88, 0xbf, 0x2f, 0xc0, 0x32,
7258 0x2c, 0x6d, 0xab, 0x28, 0xac, 0x66, 0xca, 0xc6, 0xd8, 0x5e, 0x98, 0x14,
7259 0x28, 0xed, 0x16, 0x8b, 0x2d, 0x44, 0x38, 0x37, 0x11, 0x77, 0x94, 0x13,
7260 0xfb, 0x23, 0x0f, 0x71, 0x16, 0x94, 0xeb, 0x7a, 0x76, 0xe0, 0xee, 0x6e,
7261 0x80, 0x93, 0xcc, 0x9c, 0x0f, 0x85, 0x76, 0x61, 0x3e, 0xaa, 0xe9, 0x17,
7262 0x43, 0x02, 0xb3, 0xcb, 0x81, 0x53, 0xe6, 0x3d, 0x7d, 0x8b, 0xcf, 0xdd,
7263 0x2c, 0xfe, 0x24, 0x4a, 0xe5, 0x9e, 0x30, 0x57, 0xcf, 0x03, 0x8c, 0x45,
7264 0x66, 0x93, 0x82, 0x2b, 0xbb, 0xce, 0x1a, 0x27, 0x8a, 0xb2, 0x5f, 0x99,
7265 0x2e, 0x46, 0xc8, 0x69, 0xfc, 0x9d, 0x10, 0x94, 0x89, 0xd6, 0x00, 0xb8,
7266 0xbe, 0x60, 0x45, 0x10, 0xa0, 0x99, 0x98, 0x77, 0x7f, 0xdf, 0xa4, 0xea,
7267 0x3a, 0xbd, 0xb7, 0xb7, 0xfa, 0xdb, 0xfd, 0x9d, 0xfe, 0xee, 0x53, 0x18,
7268 0xcd, 0x1e, 0xb1, 0xe5, 0x8c, 0xa6, 0x1f, 0xfb, 0xf7, 0x60, 0xb4, 0x67,
7269 0xbf, 0x09, 0xa3, 0x3d, 0xfb, 0xb7, 0x61, 0xb4, 0x67, 0xff, 0x66, 0x8c,
7270 0x26, 0xf4, 0xde, 0x89, 0xb7, 0xf6, 0x0e, 0xf6, 0x92, 0xbd, 0x9d, 0x83,
7271 0x83, 0xfd, 0x67, 0xdb, 0xbf, 0x26, 0xbb, 0xed, 0x79, 0xec, 0xf6, 0xec,
7272 0xdf, 0x85, 0xdd, 0xc4, 0xe0, 0x37, 0xcc, 0x96, 0x78, 0xec, 0x36, 0x90,
7273 0x7c, 0x4d, 0x6d, 0xd5, 0x81, 0x8c, 0xa1, 0x6f, 0x71, 0x5a, 0x80, 0x54,
7274 0x2c, 0x6a, 0xfd, 0x92, 0xdb, 0xe9, 0xa8, 0xa5, 0xdb, 0xb5, 0x81, 0x0f,
7275 0xd0, 0x41, 0x4f, 0x2f, 0x22, 0x33, 0x01, 0x87, 0x6b, 0x2c, 0x14, 0x3b,
7276 0x59, 0x3f, 0xc1, 0x10, 0x21, 0xac, 0xf1, 0x02, 0xd7, 0xcf, 0xb5, 0x4e,
7277 0xa5, 0x45, 0x2c, 0x0b, 0xe1, 0xad, 0x03, 0xe1, 0x0e, 0x0e, 0x91, 0x5c,
7278 0x3d, 0x7e, 0xfc, 0x8b, 0x20, 0x4c, 0x4d, 0x12, 0xc3, 0x6d, 0x6c, 0xa7,
7279 0xf4, 0xef, 0xc0, 0xa6, 0x4a, 0xf1, 0xed, 0x97, 0x3b, 0xfd, 0xed, 0x67,
7280 0x2f, 0x10, 0x5c, 0xac, 0x6b, 0xff, 0xbe, 0xb3, 0x5a, 0x38, 0xa5, 0xc9,
7281 0xae, 0x12, 0x3c, 0xa9, 0x33, 0x6b, 0xfd, 0xbb, 0x21, 0xb9, 0x41, 0xbc,
7282 0x6a, 0x72, 0x46, 0x1c, 0x46, 0x5d, 0xca, 0xa7, 0xc0, 0xa8, 0xc4, 0x99,
7283 0x4d, 0x90, 0xb7, 0x25, 0x7c, 0x9a, 0x5f, 0x2f, 0xe9, 0x3b, 0x3c, 0x20,
7284 0xff, 0x6d, 0xd9, 0x68, 0x15, 0x8b, 0x16, 0xb3, 0x81, 0xe3, 0x7b, 0x95,
7285 0xbf, 0x21, 0xa9, 0xd9, 0x43, 0xe7, 0x65, 0x8f, 0x7a, 0x72, 0xae, 0xae,
7286 0xf9, 0xd4, 0x27, 0x21, 0x3f, 0x71, 0x15, 0x57, 0xf8, 0xb7, 0x02, 0x2d,
7287 0xaf, 0x2a, 0x3c, 0x60, 0x24, 0xd3, 0x6c, 0xb9, 0x56, 0xa7, 0xf0, 0xcc,
7288 0xa7, 0x84, 0x3e, 0xd8, 0x4a, 0x06, 0x13, 0x0a, 0xf8, 0x4d, 0x68, 0x60,
7289 0x46, 0xff, 0xb5, 0x09, 0x80, 0x90, 0x62, 0x0f, 0xad, 0x1d, 0xbf, 0x76,
7290 0x08, 0xd6, 0x4a, 0xb8, 0xbd, 0x05, 0x43, 0x21, 0xb0, 0x2a, 0x5d, 0x5f,
7291 0x29, 0x5e, 0x9a, 0xf9, 0x9b, 0x0d, 0x27, 0xbe, 0x43, 0xc9, 0x12, 0xd4,
7292 0x3d, 0x19, 0xc1, 0xe8, 0x02, 0x58, 0x84, 0x04, 0xc7, 0xeb, 0x96, 0x65,
7293 0x3a, 0xa9, 0x27, 0x6a, 0x6b, 0x52, 0xe8, 0x40, 0x86, 0x28, 0xa2, 0x59,
7294 0x82, 0xce, 0x84, 0xb4, 0x9c, 0x85, 0xae, 0x44, 0x34, 0xb1, 0x54, 0x49,
7295 0xa7, 0x29, 0xf9, 0xa8, 0xf4, 0x08, 0x78, 0xcc, 0xdd, 0x86, 0x34, 0x6b,
7296 0x82, 0x0f, 0x97, 0xc2, 0x3f, 0xe1, 0x2e, 0xc2, 0xdf, 0x0b, 0x8b, 0x62,
7297 0xa7, 0x39, 0xe7, 0x94, 0x8a, 0xdd, 0x74, 0x76, 0xc0, 0x7e, 0x5b, 0xd0,
7298 0x04, 0x9a, 0x29, 0x66, 0x1f, 0x2c, 0xe6, 0x25, 0x15, 0x89, 0x32, 0x30,
7299 0x31, 0xbb, 0xf3, 0xe9, 0xab, 0x20, 0x92, 0xdf, 0xe4, 0xb7, 0xc9, 0x4d,
7300 0x0b, 0x78, 0x7f, 0xad, 0x75, 0x5a, 0xad, 0x83, 0x34, 0xce, 0x0d, 0xe3,
7301 0xfa, 0xa5, 0x69, 0xfe, 0x92, 0x66, 0xd7, 0x09, 0x42, 0x0c, 0x8c, 0xa5,
7302 0x42, 0x22, 0xf3, 0x0b, 0x07, 0xd0, 0x7c, 0x2d, 0x72, 0xca, 0x21, 0x52,
7303 0x19, 0x0f, 0x8b, 0xb8, 0x49, 0xe3, 0x26, 0x97, 0x89, 0x68, 0xaa, 0x1f,
7304 0xbe, 0xdf, 0x5d, 0x20, 0xff, 0xf6, 0x27, 0xff, 0xd9, 0x4e, 0x8d, 0xfb,
7305 0x5f, 0x91, 0x8f, 0x66, 0x31, 0x9b, 0x0b, 0x58, 0xe2, 0x03, 0xb8, 0x6d,
7306 0x11, 0x39, 0x3b, 0xbf, 0x25, 0x9c, 0x07, 0xce, 0x00, 0x11, 0xbc, 0x1f,
7307 0x8d, 0x07, 0x18, 0xa8, 0x13, 0xc9, 0xae, 0x6a, 0xed, 0xee, 0xc1, 0xe8,
7308 0x21, 0x06, 0x18, 0x4d, 0x5f, 0x93, 0x3e, 0xd5, 0xdc, 0x63, 0xbc, 0xee,
7309 0x3f, 0xad, 0xfb, 0xee, 0xc2, 0x90, 0x04, 0x88, 0x8c, 0x45, 0xc8, 0xa1,
7310 0xc1, 0xfe, 0x0c, 0x35, 0x18, 0x04, 0x2e, 0x74, 0xbf, 0x4e, 0x5c, 0x7c,
7311 0x42, 0xd3, 0xe7, 0x88, 0xeb, 0x70, 0x38, 0x3c, 0x02, 0x2c, 0x25, 0xc5,
7312 0xa1, 0x4d, 0x1c, 0x1c, 0x8a, 0x33, 0x76, 0x64, 0xea, 0x1d, 0xe9, 0x19,
7313 0xb3, 0x90, 0x16, 0x71, 0x31, 0x92, 0x85, 0x5a, 0x95, 0xfc, 0xee, 0x5c,
7314 0xe5, 0x6c, 0x2f, 0x37, 0x27, 0x5c, 0xb9, 0x9a, 0x34, 0xef, 0x9a, 0xca,
7315 0x7a, 0x57, 0x74, 0x26, 0x57, 0x9c, 0x03, 0xba, 0xac, 0xe0, 0xb7, 0xd1,
7316 0x15, 0x83, 0x3a, 0x51, 0x46, 0xa6, 0x2f, 0x06, 0xb9, 0xc5, 0xf1, 0xc8,
7317 0xce, 0xef, 0xa3, 0xaf, 0x63, 0x24, 0x17, 0xb9, 0x45, 0xe2, 0x64, 0xe6,
7318 0x05, 0x08, 0xcb, 0x1c, 0x83, 0xf6, 0xe2, 0xa6, 0xa0, 0xbf, 0xbb, 0x55,
7319 0xf9, 0x65, 0xc2, 0xe4, 0xc6, 0x6c, 0xac, 0x6c, 0x8c, 0x19, 0x38, 0x0a,
7320 0x1c, 0x47, 0x4e, 0x3e, 0xbf, 0x16, 0xd5, 0xa9, 0x99, 0x5c, 0x95, 0xa0,
7321 0x66, 0xd9, 0x9b, 0xfc, 0xad, 0x4d, 0x6a, 0x48, 0xb3, 0x22, 0x5a, 0x29,
7322 0xbd, 0xd9, 0x6b, 0x26, 0x7b, 0xc8, 0xa4, 0x0f, 0x83, 0x27, 0x50, 0xe8,
7323 0x99, 0x4c, 0x15, 0x3e, 0x58, 0x4b, 0x43, 0x47, 0xc5, 0xfd, 0x1c, 0x1d,
7324 0xed, 0xfc, 0xb2, 0xdc, 0x42, 0xb8, 0x6e, 0xae, 0x51, 0x5c, 0x8a, 0x4d,
7325 0xf8, 0xa1, 0x74, 0x7a, 0xb4, 0x92, 0xda, 0x8c, 0xb1, 0x1d, 0x6c, 0xb6,
7326 0x08, 0xb6, 0x95, 0xaa, 0xd1, 0xa8, 0x6c, 0x8d, 0xd9, 0x43, 0x67, 0x70,
7327 0x0c, 0x9a, 0x81, 0x29, 0x1a, 0xa1, 0x6c, 0x74, 0xdb, 0x96, 0x24, 0x90,
7328 0x68, 0x9d, 0x02, 0xe1, 0x0a, 0x0f, 0x87, 0x59, 0x08, 0x1b, 0xaa, 0xd1,
7329 0xcb, 0x8b, 0x9e, 0xfe, 0x4d, 0xda, 0xb5, 0xad, 0xb7, 0x75, 0xbc, 0x84,
7330 0x2b, 0xef, 0x17, 0x2f, 0x6e, 0x32, 0x8d, 0x6f, 0x80, 0x26, 0x4f, 0xaa,
7331 0xf2, 0xd4, 0x3a, 0x6a, 0xaa, 0x17, 0xad, 0x6d, 0x58, 0x15, 0x5f, 0xf5,
7332 0x04, 0x23, 0xb8, 0xe5, 0x18, 0x38, 0x25, 0x38, 0x72, 0xe2, 0x19, 0xb8,
7333 0x90, 0x4a, 0x54, 0x4c, 0x08, 0x93, 0xc4, 0xab, 0x26, 0xdb, 0x0a, 0x6e,
7334 0x73, 0xb8, 0xda, 0x09, 0x6b, 0xae, 0x4f, 0x2e, 0xe3, 0x2b, 0x76, 0x6f,
7335 0x9b, 0xcc, 0x73, 0x07, 0x9a, 0x12, 0x7b, 0xb2, 0x24, 0x19, 0xf7, 0xe9,
7336 0x01, 0x22, 0xc0, 0xa1, 0x9f, 0x81, 0xd0, 0xe9, 0xbd, 0x03, 0xb2, 0xf7,
7337 0x3c, 0x74, 0x79, 0x8c, 0x35, 0x88, 0x74, 0xb0, 0x9a, 0x88, 0xe0, 0x95,
7338 0xe1, 0x67, 0xfa, 0x21, 0x60, 0xf0, 0x51, 0x5e, 0x08, 0x3a, 0x37, 0xe6,
7339 0x87, 0x83, 0xb4, 0xa2, 0xa4, 0xf8, 0xd2, 0xc0, 0xa0, 0xd6, 0x73, 0x8a,
7340 0x39, 0x19, 0x5e, 0xfb, 0x26, 0x05, 0xe1, 0x05, 0xe3, 0x48, 0x0d, 0x79,
7341 0x01, 0x4d, 0xe2, 0xca, 0x1f, 0xa9, 0x0e, 0x2e, 0x53, 0x33, 0x9b, 0xe8,
7342 0xc8, 0x95, 0xf1, 0x7e, 0x16, 0x04, 0x6c, 0x44, 0x69, 0x7b, 0x3f, 0xd3,
7343 0x83, 0xc1, 0x55, 0x7c, 0x90, 0xac, 0x56, 0xd9, 0x12, 0xd9, 0x49, 0x14,
7344 0xdb, 0x0c, 0xe9, 0x8a, 0xf1, 0x08, 0xfe, 0x17, 0x4e, 0x81, 0xe8, 0x6d,
7345 0x53, 0xfb, 0x7c, 0xab, 0x85, 0x2f, 0x8e, 0xae, 0x58, 0xe8, 0x5c, 0x1f,
7346 0xb3, 0xd0, 0x94, 0x12, 0x9b, 0x1d, 0xa2, 0x9c, 0xe2, 0xf6, 0x69, 0xa7,
7347 0xab, 0xa2, 0xc9, 0xd1, 0xf8, 0x3d, 0x2e, 0x28, 0x5d, 0x0c, 0xb9, 0xc3,
7348 0x84, 0x81, 0x42, 0x5f, 0x99, 0xfd, 0x5d, 0x16, 0xc5, 0x7f, 0x3c, 0x01,
7349 0x4d, 0xc0, 0x12, 0x87, 0x0e, 0xc2, 0xcf, 0x78, 0x1f, 0xe0, 0x51, 0xc4,
7350 0xe0, 0x44, 0xbd, 0xe1, 0x20, 0xd9, 0x8d, 0xcd, 0x03, 0x42, 0x6f, 0x3e,
7351 0xf6, 0x74, 0xe0, 0xc3, 0x25, 0xe7, 0x7f, 0xc3, 0x91, 0x20, 0x4a, 0x68,
7352 0xae, 0x76, 0x8d, 0xa3, 0x40, 0xd4, 0x1c, 0x65, 0x21, 0xba, 0x69, 0xef,
7353 0xa8, 0x11, 0xf5, 0x44, 0xbd, 0xc2, 0xed, 0x9a, 0x32, 0x02, 0x15, 0xf3,
7354 0x79, 0xd7, 0x74, 0x8d, 0xe5, 0x4c, 0x4c, 0xad, 0xdd, 0x6d, 0xdb, 0xd5,
7355 0x16, 0xf4, 0x40, 0xde, 0xa3, 0x92, 0x33, 0x8d, 0x6a, 0x05, 0xa9, 0xdd,
7356 0xba, 0x22, 0x42, 0x50, 0x54, 0x2d, 0x78, 0x3f, 0x8f, 0xd9, 0x3b, 0xa2,
7357 0x1e, 0x9d, 0xc8, 0x5f, 0xb0, 0x79, 0xc2, 0x00, 0xcb, 0xf7, 0x8a, 0xca,
7358 0x32, 0xb6, 0xb7, 0xb6, 0x6c, 0x7f, 0x8a, 0x96, 0xa6, 0x14, 0xb2, 0x6d,
7359 0xda, 0x9b, 0x82, 0x6e, 0x86, 0x34, 0x33, 0x8d, 0x29, 0x8c, 0x7d, 0x61,
7360 0xdb, 0x52, 0x10, 0x9a, 0x6f, 0x9c, 0x56, 0xc1, 0x76, 0x3d, 0xf8, 0x49,
7361 0xd3, 0x22, 0xc2, 0xaa, 0x61, 0xec, 0x6a, 0xe4, 0x6e, 0x28, 0xd4, 0xa4,
7362 0x02, 0xc8, 0x7a, 0x42, 0x73, 0x2c, 0x0f, 0x6a, 0xef, 0x34, 0xed, 0x2c,
7363 0x16, 0x67, 0x29, 0xb7, 0x9c, 0xd2, 0x63, 0x13, 0x7d, 0x75, 0x6f, 0xa3,
7364 0x79, 0x06, 0xdb, 0x2a, 0xe2, 0x59, 0x31, 0x58, 0x0f, 0xcf, 0xbf, 0x1f,
7365 0x02, 0xc2, 0x59, 0xde, 0x78, 0xe2, 0x3f, 0x1c, 0xac, 0x20, 0xd8, 0x29,
7366 0x30, 0x86, 0x70, 0x54, 0x82, 0x8a, 0xf7, 0x4a, 0x76, 0xea, 0x0d, 0x31,
7367 0x4c, 0xf3, 0x42, 0xbb, 0xec, 0x6b, 0x74, 0x6f, 0x24, 0x84, 0xf7, 0xca,
7368 0x9a, 0xf0, 0xca, 0x5c, 0xe3, 0xed, 0xe3, 0x4e, 0x7f, 0xdf, 0x60, 0xbd,
7369 0xac, 0xda, 0x1b, 0xb2, 0xd6, 0x95, 0xa2, 0x5e, 0x91, 0xfa, 0xbc, 0xce,
7370 0x3f, 0x08, 0x56, 0xdb, 0x23, 0x48, 0xda, 0xe6, 0x95, 0x81, 0x28, 0xb6,
7371 0x28, 0x39, 0x28, 0xe6, 0x68, 0x00, 0x8b, 0x0a, 0xee, 0x73, 0x2b, 0xa5,
7372 0x40, 0x6a, 0x7d, 0x72, 0x7f, 0xcd, 0xa5, 0x0d, 0xa2, 0x54, 0xeb, 0x73,
7373 0x31, 0x26, 0x4d, 0xa6, 0x44, 0x33, 0x78, 0xcc, 0xd1, 0xe3, 0x50, 0xe2,
7374 0x09, 0x5a, 0xb9, 0x95, 0x49, 0x91, 0x60, 0xfc, 0x5d, 0x2a, 0x1e, 0x20,
7375 0x47, 0x1d, 0x5f, 0xa8, 0x60, 0x60, 0x77, 0x89, 0x39, 0xe0, 0x84, 0x63,
7376 0x21, 0x3d, 0x73, 0x51, 0xd0, 0xfb, 0x68, 0x33, 0x27, 0x18, 0x8e, 0x82,
7377 0x57, 0xa2, 0xfb, 0x8b, 0x52, 0xbf, 0x90, 0x84, 0x27, 0x1c, 0xb5, 0x34,
7378 0xb5, 0x62, 0x3e, 0xc2, 0x9d, 0x03, 0x74, 0x0b, 0x4f, 0x62, 0x7b, 0x83,
7379 0x72, 0x41, 0x69, 0x43, 0x3c, 0x3c, 0xd2, 0xac, 0x98, 0x91, 0xae, 0x77,
7380 0x9d, 0x28, 0x16, 0x30, 0x26, 0x09, 0x08, 0x0e, 0xa8, 0xa7, 0xea, 0x61,
7381 0xba, 0x39, 0x76, 0x5c, 0x8b, 0x68, 0x73, 0x08, 0x54, 0x78, 0x51, 0x58,
7382 0x20, 0x67, 0x30, 0x62, 0x52, 0xd8, 0xd5, 0xac, 0x43, 0x9a, 0x83, 0xbd,
7383 0x70, 0xe4, 0xa3, 0xde, 0x62, 0x17, 0x53, 0x27, 0x2f, 0xe5, 0xb3, 0x20,
7384 0xfa, 0x70, 0x2d, 0xb1, 0xb1, 0x06, 0x26, 0x17, 0x39, 0xc0, 0x9c, 0x38,
7385 0x31, 0x0b, 0x67, 0x9c, 0x67, 0xad, 0x55, 0xf0, 0x86, 0x39, 0x48, 0xb2,
7386 0xe0, 0xfc, 0xc9, 0x87, 0x32, 0x4e, 0xa8, 0x52, 0x2d, 0xab, 0x6c, 0xdd,
7387 0x4b, 0x3c, 0xc3, 0x80, 0x28, 0x17, 0xc2, 0x20, 0x95, 0x83, 0xb0, 0x8b,
7388 0xb8, 0x11, 0x82, 0xef, 0x1e, 0x68, 0x0a, 0x2a, 0xb5, 0x7e, 0xf1, 0x3d,
7389 0x81, 0xb9, 0x99, 0x4f, 0x13, 0x77, 0x7b, 0x1d, 0xe8, 0x80, 0x8a, 0x57,
7390 0x39, 0x39, 0x29, 0x85, 0x8f, 0x91, 0x84, 0xa3, 0x22, 0x9d, 0x57, 0xac,
7391 0x34, 0xb6, 0x85, 0xb3, 0x1b, 0x81, 0xdc, 0xab, 0x69, 0x3e, 0x8c, 0xa7,
7392 0x02, 0x6e, 0x29, 0xa5, 0x3f, 0x9a, 0xee, 0x51, 0x6b, 0x39, 0x8a, 0xe2,
7393 0x13, 0xd9, 0xd3, 0x0f, 0xce, 0xe3, 0x92, 0x7b, 0x07, 0x5d, 0x4a, 0x94,
7394 0xbc, 0x5b, 0x0e, 0x05, 0x69, 0x3e, 0x41, 0x9d, 0xfb, 0xa2, 0xde, 0xa4,
7395 0x2b, 0xa7, 0x57, 0xc1, 0x61, 0xa9, 0x70, 0xaa, 0x74, 0xce, 0x94, 0xe7,
7396 0x07, 0x22, 0x60, 0xea, 0xf1, 0x22, 0xa9, 0xd7, 0x51, 0xad, 0x49, 0xbe,
7397 0xaf, 0x38, 0x33, 0xa9, 0x98, 0xc7, 0x74, 0xad, 0x97, 0xbc, 0xda, 0x60,
7398 0x91, 0x10, 0x76, 0xab, 0x52, 0xff, 0x54, 0x37, 0xba, 0x66, 0x8f, 0x11,
7399 0x4e, 0x31, 0x91, 0x99, 0x69, 0x2d, 0xae, 0x43, 0xa8, 0xb4, 0xe4, 0x73,
7400 0x15, 0xe8, 0x61, 0x20, 0xba, 0x26, 0x6f, 0xc7, 0x12, 0xa2, 0x3c, 0x20,
7401 0x48, 0xad, 0x40, 0x0b, 0x49, 0x4d, 0xf3, 0x33, 0x98, 0xbc, 0xfa, 0x69,
7402 0xda, 0x25, 0xa9, 0xa1, 0xb1, 0xd8, 0x12, 0x34, 0x36, 0x6a, 0xb9, 0xbd,
7403 0x61, 0x3e, 0xbe, 0xaf, 0x37, 0x6d, 0xde, 0x09, 0xc8, 0x55, 0xf3, 0x68,
7404 0x5b, 0xe3, 0x66, 0xef, 0x30, 0x89, 0x57, 0x43, 0xa4, 0x10, 0xf5, 0x44,
7405 0xb0, 0xd0, 0xcf, 0xe6, 0xba, 0xf1, 0x3b, 0x1f, 0x33, 0x44, 0x2a, 0x35,
7406 0x06, 0xa0, 0xc4, 0xbd, 0x2b, 0xd2, 0x5d, 0x8a, 0x8d, 0x7e, 0x74, 0x9a,
7407 0x49, 0xee, 0x99, 0x54, 0x6f, 0x73, 0x31, 0x5f, 0xe6, 0x56, 0x01, 0x06,
7408 0xd8, 0xa4, 0x94, 0xc4, 0x77, 0xea, 0x71, 0x8c, 0x48, 0x28, 0x23, 0x8b,
7409 0xad, 0x6c, 0x6b, 0x61, 0xb8, 0xdc, 0x4f, 0x7f, 0x49, 0x1c, 0xe4, 0x27,
7410 0x8d, 0x60, 0x2c, 0x51, 0xb3, 0x1a, 0x18, 0x9e, 0x54, 0x0a, 0x39, 0x14,
7411 0x12, 0x03, 0xe7, 0xc4, 0x1d, 0xe2, 0x51, 0xd0, 0x6e, 0xc8, 0x59, 0xa6,
7412 0x7a, 0x81, 0x80, 0xdb, 0xa8, 0xac, 0xe8, 0x0e, 0xa8, 0x29, 0x29, 0x02,
7413 0x4d, 0x48, 0x67, 0x97, 0xf5, 0xff, 0xd8, 0x80, 0xa2, 0x90, 0xeb, 0x9b,
7414 0x3e, 0x48, 0x3e, 0xde, 0x90, 0x9c, 0x15, 0xf2, 0xef, 0xec, 0x84, 0x0f,
7415 0x20, 0xeb, 0xa6, 0x34, 0xed, 0x0a, 0xf3, 0x54, 0x28, 0xc1, 0xcb, 0xda,
7416 0x07, 0xc2, 0x21, 0x8a, 0xd0, 0x6c, 0xf0, 0xed, 0xf1, 0xa7, 0x3e, 0xe2,
7417 0xab, 0x53, 0xe4, 0x96, 0x16, 0x40, 0x37, 0xa0, 0x19, 0x75, 0x7b, 0x75,
7418 0x51, 0x33, 0x60, 0x0d, 0x8d, 0xca, 0xc6, 0x27, 0x1d, 0x02, 0xc3, 0x7d,
7419 0xab, 0xa9, 0x0f, 0x86, 0xe9, 0x97, 0xb9, 0xe0, 0xcd, 0x43, 0x61, 0xce,
7420 0x26, 0xe5, 0xa1, 0x44, 0xb7, 0x24, 0xa6, 0x10, 0xae, 0x67, 0x76, 0x8b,
7421 0xc8, 0xb7, 0xb0, 0xe1, 0xb0, 0xba, 0xf0, 0xba, 0x64, 0x9a, 0xfb, 0xe9,
7422 0x84, 0x94, 0xa8, 0x84, 0xcd, 0xc7, 0x73, 0xf6, 0x93, 0x48, 0x3e, 0xa2,
7423 0xca, 0xeb, 0xa4, 0x1a, 0xb1, 0xbc, 0xa5, 0xdc, 0xe3, 0x71, 0x12, 0x4f,
7424 0xd9, 0x0c, 0xc5, 0xb9, 0xf9, 0x98, 0xdf, 0xac, 0x39, 0x94, 0x8f, 0x3a,
7425 0x15, 0x81, 0x73, 0xd0, 0xc4, 0xc8, 0x35, 0xa7, 0x82, 0x1a, 0xb0, 0xe8,
7426 0xb9, 0x68, 0x3d, 0x18, 0x78, 0x14, 0xe4, 0x24, 0xd0, 0x41, 0x08, 0x41,
7427 0x88, 0x3f, 0xf2, 0x50, 0x68, 0x31, 0x85, 0xde, 0xd2, 0x68, 0xe6, 0x36,
7428 0x8d, 0x74, 0xa2, 0xb8, 0x34, 0x74, 0x15, 0x10, 0x66, 0xb9, 0xbe, 0x1f,
7429 0xe0, 0xf7, 0x59, 0x02, 0x7c, 0x38, 0x56, 0xe9, 0x4d, 0xbc, 0x54, 0xc6,
7430 0x93, 0x44, 0x3b, 0x6c, 0x8b, 0x56, 0x94, 0x8f, 0x80, 0x74, 0x8c, 0x3a,
7431 0x42, 0x3f, 0xcb, 0x02, 0x08, 0x7d, 0xac, 0x8c, 0xa0, 0xf2, 0x61, 0x34,
7432 0x65, 0x14, 0x56, 0xa2, 0xc5, 0x94, 0xd3, 0x74, 0xae, 0x29, 0x54, 0xdd,
7433 0x28, 0x91, 0x7a, 0x37, 0xec, 0xed, 0x4b, 0xbb, 0xb1, 0xe8, 0xf9, 0x2a,
7434 0x96, 0x29, 0x44, 0xd1, 0x9e, 0xa3, 0x53, 0xf4, 0xd9, 0xae, 0x37, 0x46,
7435 0xdf, 0xdb, 0xda, 0xa6, 0xc9, 0xee, 0x6d, 0x3d, 0xdf, 0x78, 0xca, 0xd1,
7436 0x59, 0x15, 0xd5, 0xb4, 0x7e, 0x2d, 0xd4, 0x6e, 0x81, 0x69, 0x99, 0xf4,
7437 0xa8, 0x36, 0x33, 0xec, 0x19, 0xbc, 0x6c, 0x64, 0xf8, 0x91, 0x17, 0x10,
7438 0x5f, 0x92, 0x82, 0x4e, 0x01, 0xe6, 0x43, 0x51, 0x00, 0x2f, 0x10, 0xf2,
7439 0x7b, 0x79, 0x8d, 0xed, 0x00, 0x3d, 0x6d, 0xdd, 0xbe, 0xc3, 0xb5, 0x51,
7440 0x78, 0x27, 0xf0, 0xc6, 0xc4, 0xf4, 0x2a, 0x03, 0xbf, 0x09, 0xe1, 0xe9,
7441 0x39, 0xf5, 0x37, 0x2d, 0xc3, 0x86, 0xd2, 0xf2, 0x4d, 0x49, 0x41, 0xa6,
7442 0x68, 0xcf, 0xbd, 0xf1, 0x38, 0xa9, 0xfe, 0xf0, 0x3a, 0xcd, 0xd2, 0xf2,
7443 0x1a, 0x6b, 0x7a, 0x31, 0xe7, 0xf6, 0x2a, 0xf1, 0x1b, 0x68, 0x83, 0x62,
7444 0x21, 0x52, 0x0d, 0x6c, 0x76, 0x6a, 0x10, 0x8f, 0x55, 0x92, 0xbc, 0xd1,
7445 0x82, 0x44, 0xc3, 0xbf, 0xe4, 0xee, 0x58, 0x76, 0x99, 0x21, 0x06, 0x4d,
7446 0x49, 0xc2, 0x16, 0x2c, 0x5c, 0xb8, 0xe4, 0x0c, 0x77, 0x09, 0x8f, 0x9a,
7447 0x05, 0xfc, 0x78, 0x37, 0x18, 0x10, 0x0f, 0x0c, 0x38, 0x78, 0x14, 0x5d,
7448 0xa2, 0x5e, 0xe4, 0xad, 0x13, 0xa3, 0xd0, 0xeb, 0xc8, 0x4d, 0xe7, 0x03,
7449 0x10, 0x72, 0x5b, 0x78, 0x77, 0xa2, 0xdf, 0xa1, 0xa0, 0x4a, 0x57, 0xf8,
7450 0xd9, 0x77, 0x98, 0x73, 0xf4, 0xd2, 0xfc, 0x78, 0x83, 0x70, 0xb0, 0xb1,
7451 0x04, 0x7f, 0x75, 0xb6, 0x32, 0x9c, 0xb0, 0x22, 0x77, 0x55, 0xa3, 0x39,
7452 0xbc, 0x8d, 0x16, 0x2a, 0x76, 0x98, 0x71, 0x4d, 0xb9, 0xa6, 0xca, 0x81,
7453 0x85, 0xed, 0x49, 0x08, 0x69, 0xdc, 0x64, 0x95, 0xd6, 0x50, 0x21, 0xa9,
7454 0xb6, 0xde, 0xb4, 0xa5, 0x07, 0x4d, 0x94, 0xed, 0x32, 0x9c, 0xa1, 0x2d,
7455 0xfa, 0x2e, 0x03, 0xa6, 0x0e, 0xe3, 0xe8, 0xb2, 0xe7, 0xd1, 0x34, 0x1a,
7456 0xe7, 0x2f, 0xe3, 0x8f, 0x9c, 0x38, 0x29, 0x6c, 0xed, 0x08, 0x0b, 0xf3,
7457 0x5b, 0xf1, 0x85, 0x1e, 0xa2, 0x9a, 0x5d, 0x92, 0x96, 0x67, 0xae, 0xd1,
7458 0xb4, 0x7e, 0x30, 0x55, 0xa8, 0x6b, 0xf8, 0x93, 0x69, 0xf2, 0xf9, 0x97,
7459 0x58, 0x98, 0xd9, 0x41, 0x13, 0x66, 0x6d, 0x35, 0x02, 0xdb, 0x92, 0x7f,
7460 0x97, 0xb8, 0x2f, 0xb6, 0x03, 0xc4, 0x95, 0x0c, 0x4b, 0x72, 0xf5, 0x7f,
7461 0xce, 0xff, 0x08, 0xc7, 0xdc, 0x08, 0xec, 0xf5, 0xf4, 0xed, 0x11, 0x76,
7462 0x4d, 0xb2, 0xb0, 0x4d, 0xb2, 0x02, 0x46, 0x63, 0xb2, 0x4e, 0x57, 0x2e,
7463 0xb6, 0x97, 0xf4, 0xcd, 0x80, 0xc6, 0x20, 0xa5, 0x6c, 0x54, 0x19, 0x5d,
7464 0x43, 0xb6, 0x24, 0x93, 0x7a, 0x9a, 0x56, 0x18, 0x82, 0x9a, 0x82, 0x3a,
7465 0x7a, 0x06, 0x54, 0xc7, 0xf9, 0xad, 0x7d, 0xb9, 0x46, 0xac, 0xbf, 0x76,
7466 0xb8, 0xe6, 0x75, 0x73, 0x95, 0xa2, 0xe3, 0xb2, 0xab, 0xd2, 0x3c, 0x5a,
7467 0xfb, 0x33, 0xc2, 0x26, 0x60, 0x5b, 0x0d, 0x5e, 0x9d, 0x9c, 0x1f, 0x9e,
7468 0x95, 0xa6, 0xdb, 0x8b, 0x6c, 0x6e, 0x7a, 0xfc, 0xb9, 0xc5, 0x5f, 0x3f,
7469 0xaa, 0x95, 0xe2, 0x31, 0x04, 0x3e, 0xf5, 0xd7, 0xb5, 0x8b, 0x56, 0x83,
7470 0x7a, 0xad, 0xa4, 0xda, 0x52, 0x8a, 0x2b, 0xf8, 0x5d, 0x2a, 0xa8, 0x98,
7471 0xc8, 0x7a, 0xa3, 0x79, 0x42, 0x3c, 0x13, 0xca, 0xe5, 0x19, 0x8d, 0x08,
7472 0xc3, 0x93, 0x2e, 0x09, 0xf8, 0xe5, 0xd5, 0x15, 0x23, 0xc9, 0xd1, 0x8a,
7473 0xf3, 0xa6, 0x1e, 0x0b, 0xcb, 0x8f, 0x26, 0xa0, 0x06, 0x93, 0xc1, 0x87,
7474 0x86, 0x56, 0x3b, 0xb8, 0xc3, 0x63, 0xd8, 0x50, 0x66, 0xd3, 0x41, 0x81,
7475 0xd8, 0x79, 0x2a, 0x8b, 0x59, 0x8e, 0xb2, 0x05, 0xc7, 0x87, 0x2e, 0x0c,
7476 0x51, 0x98, 0x9f, 0x98, 0xa1, 0x84, 0xa3, 0xd0, 0x99, 0x4f, 0x3f, 0x35,
7477 0x11, 0xdc, 0x49, 0x0c, 0x3c, 0x76, 0x2f, 0xd5, 0x12, 0x53, 0x04, 0x8e,
7478 0x11, 0x07, 0x9c, 0x77, 0x85, 0x4e, 0x29, 0xe4, 0x2a, 0x98, 0x1d, 0x3d,
7479 0xd8, 0x2c, 0xde, 0x9c, 0x4c, 0xd4, 0x57, 0x01, 0xf9, 0x20, 0x77, 0x96,
7480 0xa0, 0x77, 0x8c, 0xb5, 0x42, 0x83, 0xf0, 0x3b, 0x9a, 0x3b, 0x26, 0x68,
7481 0x1e, 0xa2, 0x38, 0x88, 0x09, 0x6a, 0xaf, 0x33, 0xc2, 0x23, 0xa1, 0x1b,
7482 0xc4, 0xc6, 0x29, 0x5c, 0xe8, 0xbe, 0x26, 0x3f, 0xa9, 0x00, 0xda, 0x24,
7483 0x8a, 0x33, 0x68, 0x4a, 0x13, 0x69, 0x76, 0x67, 0xf7, 0xc5, 0x8b, 0x60,
7484 0x80, 0x83, 0x11, 0x96, 0x81, 0xab, 0x91, 0x4c, 0x1e, 0x64, 0x37, 0x5b,
7485 0x9e, 0xc4, 0xb2, 0xa5, 0xba, 0xf5, 0xb1, 0xd3, 0x52, 0x8c, 0x5f, 0xf5,
7486 0x03, 0x6d, 0x24, 0x06, 0x67, 0xa8, 0x0b, 0xc8, 0x9d, 0x46, 0x46, 0x33,
7487 0xde, 0x21, 0x40, 0x85, 0x16, 0xbd, 0x29, 0x91, 0xf2, 0x59, 0x01, 0x8b,
7488 0x96, 0x16, 0x7e, 0x02, 0xbe, 0xc1, 0x42, 0x13, 0xd4, 0x55, 0xc2, 0xdf,
7489 0xa0, 0xc2, 0x2a, 0x66, 0xdd, 0x16, 0xf0, 0xc3, 0xb5, 0x48, 0xf3, 0xc3,
7490 0x87, 0x0a, 0xbd, 0xdc, 0xa5, 0xa3, 0x95, 0xde, 0x35, 0xda, 0xac, 0x30,
7491 0xcc, 0x45, 0x86, 0xd0, 0x5f, 0xe9, 0x15, 0xc1, 0x7b, 0x34, 0x86, 0x23,
7492 0x8c, 0xd2, 0xab, 0xa4, 0xf2, 0xe1, 0xaa, 0x1c, 0xe8, 0x85, 0x25, 0x83,
7493 0x07, 0x3c, 0x5d, 0x02, 0xb6, 0x75, 0xc8, 0xb1, 0xdd, 0x71, 0x3a, 0xd1,
7494 0x13, 0x0f, 0x8a, 0xf8, 0x2d, 0xfa, 0x41, 0xbf, 0xe4, 0xa8, 0xca, 0xa1,
7495 0xe9, 0x50, 0x95, 0xa9, 0x23, 0xe7, 0xcb, 0x60, 0x4b, 0x30, 0x83, 0xbe,
7496 0xc0, 0x0d, 0xaa, 0xaa, 0x2a, 0x1e, 0x5d, 0xdb, 0xcb, 0x9c, 0x50, 0x34,
7497 0x4c, 0xc7, 0x1e, 0xa1, 0x2f, 0x39, 0x3e, 0xa6, 0xa1, 0x5e, 0xa4, 0x87,
7498 0x26, 0x5c, 0x87, 0x85, 0xc2, 0x82, 0x5e, 0x82, 0xf3, 0x09, 0x51, 0xa2,
7499 0x14, 0xb3, 0x0c, 0x85, 0x0e, 0x3c, 0xed, 0xdd, 0x75, 0xf8, 0xae, 0x43,
7500 0x27, 0x7f, 0xef, 0x6d, 0xb5, 0x80, 0xed, 0x36, 0xc3, 0x34, 0xb6, 0x4d,
7501 0x6b, 0xdc, 0x4b, 0x31, 0x36, 0x11, 0xbf, 0x10, 0x02, 0x7d, 0x0f, 0xd7,
7502 0x69, 0x01, 0x4b, 0x89, 0xb3, 0xae, 0xf2, 0x84, 0x67, 0x49, 0x6d, 0x36,
7503 0x98, 0xb4, 0x87, 0x94, 0xe5, 0x50, 0x15, 0x0b, 0xc4, 0x9a, 0x66, 0x57,
7504 0x2b, 0x7d, 0xc9, 0xb7, 0xa0, 0xf0, 0x9a, 0xe8, 0xd6, 0x57, 0x9c, 0xa2,
7505 0xc1, 0x49, 0x7b, 0x46, 0x24, 0x96, 0xfe, 0x79, 0xec, 0xb7, 0x93, 0x9e,
7506 0x8e, 0x6c, 0xf8, 0x04, 0x9a, 0xee, 0x92, 0x13, 0x13, 0x9d, 0xf4, 0x65,
7507 0xfa, 0x33, 0xdb, 0x04, 0x02, 0x19, 0xa0, 0xc1, 0x62, 0x72, 0x8b, 0x27,
7508 0x18, 0x63, 0x7a, 0x05, 0x0c, 0xc5, 0x75, 0x29, 0x8c, 0xd5, 0xb7, 0x56,
7509 0xfa, 0x5d, 0x46, 0x0c, 0xfe, 0x07, 0x5f, 0x70, 0x68, 0x45, 0x14, 0xc9,
7510 0xd5, 0x02, 0xaf, 0x4c, 0x22, 0xd3, 0xba, 0x36, 0x48, 0xd5, 0x27, 0xe6,
7511 0xe9, 0x5c, 0x8b, 0x4e, 0xbc, 0x4a, 0x3c, 0x78, 0x6b, 0x83, 0x96, 0x9c,
7512 0x01, 0xb5, 0xaa, 0x45, 0xc6, 0xb9, 0x44, 0xd4, 0x39, 0x66, 0x31, 0xfc,
7513 0x89, 0x62, 0xf0, 0xb9, 0xac, 0x9c, 0xa6, 0x95, 0x59, 0xcc, 0x98, 0x28,
7514 0x99, 0x78, 0x4e, 0xd3, 0x84, 0x8a, 0xb9, 0x30, 0xd6, 0xc9, 0x65, 0x49,
7515 0x95, 0x4a, 0x00, 0xc6, 0xc4, 0x46, 0xff, 0xfa, 0x9f, 0x9d, 0xcc, 0x2a,
7516 0xd2, 0x5d, 0x89, 0x2a, 0x34, 0x85, 0xe6, 0x70, 0xd4, 0x3c, 0x50, 0x35,
7517 0x69, 0x29, 0x87, 0x65, 0x37, 0x25, 0xa9, 0x85, 0xd8, 0x97, 0x06, 0x97,
7518 0xaa, 0x90, 0x25, 0x14, 0xa3, 0x82, 0x75, 0x13, 0x72, 0x0c, 0xec, 0xd7,
7519 0x7d, 0x08, 0xc6, 0x89, 0x8d, 0xba, 0x9f, 0x8c, 0x1b, 0x13, 0x45, 0x5f,
7520 0xeb, 0xed, 0xc6, 0x95, 0x2c, 0x58, 0x17, 0x32, 0x13, 0x81, 0x56, 0xb7,
7521 0x78, 0xbb, 0x62, 0x30, 0xac, 0x81, 0xec, 0x44, 0xda, 0xaf, 0x89, 0xd0,
7522 0x0c, 0x75, 0x6a, 0x33, 0xa8, 0x8a, 0x05, 0x66, 0x44, 0xe0, 0x19, 0x31,
7523 0x6d, 0x21, 0x8d, 0x00, 0x21, 0xf5, 0xba, 0x88, 0x41, 0x5e, 0xfe, 0x34,
7524 0xbf, 0xb2, 0x9d, 0x89, 0x02, 0x07, 0x96, 0xfa, 0x1a, 0x79, 0x78, 0x8c,
7525 0x72, 0xfd, 0xbe, 0x8e, 0x64, 0x3e, 0x9f, 0x7f, 0x59, 0x1b, 0x30, 0x70,
7526 0x05, 0x6f, 0x0a, 0x4c, 0xff, 0xe8, 0x2a, 0x6d, 0x25, 0x02, 0x53, 0x81,
7527 0xb2, 0xe7, 0x4c, 0xbd, 0x7f, 0x79, 0x9d, 0x27, 0xb2, 0x73, 0x19, 0xf9,
7528 0x35, 0xad, 0xdc, 0xd0, 0xbc, 0xa8, 0x60, 0x75, 0x74, 0xfb, 0x94, 0xe9,
7529 0x4e, 0xff, 0xaf, 0xfc, 0x3a, 0xc3, 0x7f, 0xe0, 0xf0, 0x38, 0xfa, 0xe7,
7530 0xdb, 0xc1, 0x5c, 0xf2, 0xcd, 0xe5, 0x1b, 0x46, 0x53, 0xc5, 0x4b, 0x48,
7531 0xea, 0xac, 0x1d, 0x99, 0x56, 0x73, 0xe4, 0xf6, 0x09, 0x1c, 0x2c, 0xf2,
7532 0xa3, 0x57, 0x31, 0x89, 0x57, 0xea, 0x75, 0xe5, 0xbc, 0xcc, 0xa5, 0xa4,
7533 0x41, 0x61, 0x98, 0x9a, 0x9b, 0x81, 0x5a, 0x31, 0x04, 0xd4, 0xff, 0xf6,
7534 0x85, 0x77, 0x30, 0xea, 0x79, 0xff, 0xf9, 0xe1, 0xf5, 0xe2, 0x8a, 0x5a,
7535 0xe9, 0x60, 0xf0, 0xb3, 0xf3, 0xa8, 0x55, 0xab, 0xcf, 0x99, 0xbd, 0x83,
7536 0x95, 0x53, 0x84, 0x45, 0x00, 0x28, 0x35, 0xc5, 0x21, 0xb2, 0xd8, 0xf5,
7537 0x08, 0x1c, 0x1f, 0x12, 0xa4, 0x6b, 0xac, 0xd6, 0x76, 0x99, 0x68, 0x02,
7538 0xee, 0x6c, 0x41, 0x54, 0x97, 0xac, 0xe0, 0x36, 0x19, 0x7e, 0xfe, 0x25,
7539 0x46, 0x2a, 0xee, 0xfa, 0xd7, 0xd5, 0x6c, 0xca, 0xfa, 0x31, 0x12, 0x6e,
7540 0x13, 0xff, 0xd9, 0x89, 0x96, 0xe8, 0x7c, 0xa0, 0x84, 0xb6, 0x0e, 0xeb,
7541 0x80, 0x3a, 0x39, 0x43, 0x4e, 0xf2, 0x7c, 0xe9, 0x88, 0x48, 0x15, 0x76,
7542 0xc5, 0x13, 0x5d, 0x9c, 0xca, 0x5c, 0xae, 0x57, 0xb5, 0x39, 0x9d, 0xcc,
7543 0x12, 0xf6, 0x82, 0xe1, 0xb3, 0x10, 0x82, 0x4c, 0xa5, 0x64, 0x13, 0x76,
7544 0x0d, 0xe9, 0x4d, 0xf3, 0x79, 0x57, 0x71, 0x8f, 0xd2, 0x72, 0x09, 0x69,
7545 0xd4, 0xd4, 0x92, 0x06, 0x1d, 0x7f, 0x36, 0xaf, 0xe3, 0x1f, 0x70, 0x8a,
7546 0xa9, 0x37, 0xf7, 0x92, 0xd5, 0x9c, 0x4e, 0xcc, 0x17, 0x37, 0x29, 0xaf,
7547 0x4c, 0x33, 0x4c, 0xa2, 0xb5, 0x2e, 0xaa, 0xf0, 0x60, 0x8d, 0xac, 0x91,
7548 0x93, 0x59, 0x13, 0x64, 0xff, 0xbe, 0xc8, 0x45, 0xb4, 0x45, 0xe3, 0xdc,
7549 0x53, 0x67, 0xb1, 0xaa, 0x95, 0x9e, 0x28, 0x69, 0xf6, 0x0f, 0x4e, 0xfc,
7550 0x87, 0x0e, 0x4d, 0xbd, 0x8b, 0xff, 0xfa, 0xa1, 0x63, 0x67, 0xff, 0x03,
7551 0x6d, 0xce, 0x9f, 0xd3, 0xec, 0xcf, 0xb8, 0x82, 0x1f, 0x3a, 0x4f, 0xdd,
7552 0x63, 0x31, 0x45, 0x9d, 0xaf, 0x38, 0x1f, 0xa9, 0x7d, 0xa3, 0xb3, 0x16,
7553 0xb5, 0x63, 0x24, 0xb9, 0xe9, 0x58, 0xe9, 0xc4, 0xe8, 0x46, 0x96, 0x6a,
7554 0x20, 0x97, 0x2d, 0x61, 0x80, 0x2e, 0x96, 0x0e, 0x68, 0xd7, 0xdd, 0x7b,
7555 0x7e, 0x4a, 0xfb, 0x00, 0xd2, 0xd8, 0xd8, 0xec, 0xa4, 0xdd, 0xa5, 0xb6,
7556 0x17, 0x0d, 0xb1, 0x91, 0x52, 0x9e, 0xcd, 0xee, 0xb1, 0x7f, 0xf1, 0x98,
7557 0xd7, 0xbd, 0x8b, 0xe6, 0xaf, 0xf0, 0x05, 0xf2, 0x28, 0xd1, 0x18, 0x72,
7558 0x90, 0x09, 0x90, 0x5d, 0x4a, 0x14, 0x09, 0x6a, 0x20, 0xe3, 0x4c, 0x3c,
7559 0xbe, 0xe7, 0x26, 0x8c, 0x55, 0x14, 0x4c, 0x33, 0x2a, 0x93, 0x59, 0x0a,
7560 0x1a, 0x3c, 0x85, 0x97, 0xa6, 0x6c, 0xdb, 0x6e, 0xa2, 0xf8, 0xa7, 0xba,
7561 0xed, 0x72, 0x1e, 0xa3, 0xdf, 0x1c, 0x3d, 0x33, 0x62, 0xf6, 0xf2, 0x32,
7562 0x99, 0x30, 0x4b, 0x78, 0x78, 0x0d, 0x87, 0x2c, 0xca, 0xcf, 0x3b, 0xa0,
7563 0xfc, 0xfc, 0x19, 0x03, 0x25, 0x49, 0xf6, 0x67, 0x60, 0xa4, 0x05, 0x6c,
7564 0x95, 0x3d, 0x95, 0x77, 0xbd, 0xd9, 0x3d, 0x4c, 0x7a, 0xed, 0xa1, 0x93,
7565 0x39, 0xe2, 0x02, 0x4a, 0xcd, 0xd8, 0x6a, 0xa6, 0xd2, 0xf2, 0x91, 0x94,
7566 0xde, 0x16, 0x7c, 0xe0, 0xf4, 0x99, 0xcf, 0x9b, 0x4e, 0x32, 0xc2, 0x81,
7567 0xf3, 0x90, 0x8c, 0xac, 0x58, 0x25, 0xfb, 0xeb, 0xf3, 0xf3, 0xbf, 0xfc,
7568 0x59, 0x07, 0xf8, 0xa1, 0xf3, 0x5d, 0x8f, 0x7f, 0x4a, 0xc0, 0x87, 0x07,
7569 0xd1, 0xf9, 0x5f, 0x56, 0xe7, 0xdc, 0x65, 0x1f, 0xf8, 0x92, 0xff, 0x42,
7570 0x6c, 0xbc, 0x6c, 0x58, 0x2a, 0xdf, 0xd1, 0x97, 0x40, 0xcf, 0x49, 0xee,
7571 0x09, 0x99, 0x86, 0x2c, 0xf6, 0xf9, 0x1c, 0xf1, 0x7a, 0x14, 0xeb, 0xaf,
7572 0x62, 0xac, 0x3f, 0x52, 0x1a, 0x87, 0x39, 0xb9, 0x16, 0x2a, 0xbf, 0x3f,
7573 0x34, 0x75, 0xa7, 0xfd, 0xbb, 0xf0, 0x12, 0xe5, 0xb4, 0x8b, 0x82, 0x5b,
7574 0x4f, 0x39, 0xd6, 0x4c, 0x3a, 0xa7, 0x23, 0xdd, 0x09, 0x26, 0xf0, 0x78,
7575 0x74, 0x55, 0x80, 0x7e, 0xfe, 0x1b, 0x29, 0x5b, 0xd4, 0x7f, 0x00, 0xed,
7576 0xa6, 0xb5, 0x3f, 0xac, 0xd1, 0x70, 0x18, 0x4d, 0xa6, 0xfb, 0x8f, 0xa2,
7577 0x94, 0xdc, 0x9a, 0xe2, 0xcf, 0xa1, 0xa8, 0xad, 0x24, 0xaa, 0x08, 0x60,
7578 0xc2, 0x24, 0x9f, 0x8e, 0x25, 0x80, 0x0c, 0x1c, 0xce, 0x3b, 0xac, 0x26,
7579 0x10, 0xea, 0x11, 0x48, 0x08, 0x09, 0x2a, 0xcb, 0x67, 0x43, 0x69, 0x03,
7580 0x92, 0x59, 0x22, 0x1e, 0x57, 0x27, 0x99, 0x2e, 0x66, 0x36, 0x87, 0x89,
7581 0xcc, 0x86, 0x09, 0x39, 0xa7, 0x14, 0x91, 0xae, 0x27, 0xd1, 0x86, 0x26,
7582 0xed, 0xc8, 0xb3, 0x5a, 0x3f, 0x22, 0x94, 0xdb, 0x2c, 0xa0, 0x74, 0x58,
7583 0x6d, 0xf5, 0x06, 0x75, 0x3c, 0x13, 0xd4, 0xd2, 0x64, 0x75, 0x8a, 0xbe,
7584 0xc7, 0xe1, 0xc5, 0xd2, 0x79, 0x55, 0x0d, 0xc1, 0x3f, 0x59, 0xd1, 0x1f,
7585 0x24, 0x3a, 0xa1, 0x8f, 0xc5, 0xa2, 0x45, 0xc9, 0x7e, 0xf5, 0xbd, 0x17,
7586 0xbe, 0x93, 0xe4, 0xe6, 0xde, 0xf6, 0x81, 0xb1, 0xce, 0x63, 0x79, 0x3c,
7587 0x3c, 0xbc, 0x0b, 0xe0, 0xad, 0xb9, 0x42, 0xa5, 0x90, 0x7f, 0xc9, 0xf8,
7588 0x3b, 0x66, 0x7c, 0x1f, 0x23, 0x2c, 0x96, 0x46, 0xd3, 0xe1, 0xcf, 0x22,
7589 0x48, 0xa6, 0xa9, 0x53, 0x32, 0xae, 0x72, 0xeb, 0x22, 0x75, 0x7d, 0x03,
7590 0x92, 0xfa, 0xcd, 0x88, 0xda, 0x0c, 0x96, 0x1b, 0x30, 0xe9, 0xc7, 0x9c,
7591 0xe3, 0xc8, 0xeb, 0xf0, 0x70, 0xf9, 0x7a, 0x7c, 0x89, 0x0b, 0x5f, 0xe5,
7592 0x33, 0xec, 0xdd, 0x39, 0x3e, 0xe0, 0x6c, 0x11, 0x02, 0x00, 0x26, 0xfc,
7593 0xdf, 0xd4, 0xc5, 0x5e, 0xb0, 0x10, 0x82, 0xe1, 0x56, 0x61, 0xa6, 0x23,
7594 0xae, 0xf7, 0x29, 0xba, 0x55, 0xd8, 0xb3, 0xcf, 0xb6, 0x87, 0x1c, 0x86,
7595 0xf5, 0x35, 0xf1, 0x96, 0xe0, 0xc7, 0x62, 0x8e, 0x7e, 0xb1, 0xcf, 0x3a,
7596 0x46, 0xd8, 0x43, 0x5e, 0x7e, 0x2f, 0xa0, 0x52, 0x1c, 0x90, 0x18, 0x37,
7597 0x67, 0x82, 0x41, 0xde, 0x09, 0xe3, 0x5d, 0x6d, 0x61, 0xee, 0x4d, 0x51,
7598 0x03, 0x76, 0xf7, 0x2d, 0x5f, 0x87, 0xbe, 0x32, 0x18, 0x1b, 0x9c, 0xb6,
7599 0xee, 0x2f, 0x8e, 0xd6, 0x3e, 0xdf, 0x58, 0x6b, 0xef, 0x61, 0x66, 0x54,
7600 0xe7, 0x3a, 0xe6, 0xbb, 0x26, 0x8b, 0x94, 0x04, 0x9f, 0x0b, 0x43, 0x93,
7601 0xb3, 0x68, 0x86, 0x39, 0x70, 0x09, 0xed, 0x24, 0x95, 0x0c, 0x94, 0x55,
7602 0x08, 0xdb, 0x85, 0x91, 0x6d, 0xd3, 0x8c, 0xce, 0x25, 0x63, 0x74, 0x33,
7603 0x7b, 0xbb, 0xf1, 0x60, 0xee, 0x85, 0x55, 0x1e, 0xb8, 0x6a, 0xb6, 0xef,
7604 0x39, 0xc7, 0xb0, 0x20, 0x76, 0x69, 0x56, 0x07, 0x87, 0xe3, 0xa2, 0x58,
7605 0xa6, 0x53, 0xaf, 0x7d, 0xbe, 0xce, 0x77, 0x93, 0x75, 0x90, 0x39, 0xdf,
7606 0x5e, 0x8b, 0x7e, 0x08, 0x02, 0xe0, 0xd1, 0x8b, 0xce, 0x74, 0x84, 0x59,
7607 0x97, 0x3e, 0x1e, 0x1d, 0x62, 0x08, 0xeb, 0x0b, 0x0a, 0x5f, 0xca, 0xf3,
7608 0x87, 0x9b, 0xf4, 0xa3, 0x86, 0x16, 0xbc, 0x74, 0x14, 0xd8, 0x20, 0xfa,
7609 0xef, 0x97, 0xf8, 0xb8, 0x1a, 0x01, 0x6b, 0x51, 0xbf, 0x0f, 0xe2, 0xa7,
7610 0x9c, 0x35, 0xa1, 0x4b, 0x3c, 0x6c, 0x16, 0xe4, 0x4b, 0xd9, 0x7e, 0x85,
7611 0x98, 0x26, 0x17, 0x8d, 0x9a, 0xcb, 0xec, 0x4b, 0xe4, 0x5f, 0x15, 0x9f,
7612 0x63, 0x4e, 0xa9, 0x49, 0x39, 0x8f, 0x92, 0x40, 0x2b, 0xe5, 0xb1, 0x29,
7613 0x49, 0x12, 0x5f, 0x1c, 0x72, 0xc2, 0x8b, 0x61, 0x2a, 0x3e, 0x78, 0xc6,
7614 0xe6, 0x34, 0xad, 0x27, 0x19, 0x93, 0x16, 0x2e, 0xf5, 0x70, 0x8b, 0x0f,
7615 0x4a, 0xa3, 0xc6, 0x68, 0x23, 0xfd, 0xde, 0xd8, 0x24, 0x32, 0xb7, 0xde,
7616 0x89, 0x44, 0x3a, 0x4c, 0xde, 0xea, 0x73, 0xfc, 0x8e, 0x01, 0x7e, 0xf7,
7617 0xd2, 0xec, 0xa4, 0x5b, 0x58, 0xf4, 0xa2, 0x87, 0xcf, 0x59, 0xff, 0xbc,
7618 0x72, 0x7b, 0x3d, 0xc5, 0xae, 0x2b, 0x6a, 0x5f, 0x8f, 0xb2, 0xfd, 0x03,
7619 0x28, 0x2d, 0xb8, 0xb2, 0x61, 0x5c, 0x26, 0xcf, 0xf6, 0xf8, 0x93, 0x4c,
7620 0xa4, 0x52, 0x0f, 0xbb, 0x75, 0xa6, 0x5a, 0x98, 0xb0, 0xda, 0x82, 0x9a,
7621 0x1a, 0x18, 0x01, 0xf8, 0xa1, 0xfa, 0x05, 0x76, 0x53, 0xc5, 0xf5, 0x9c,
7622 0x78, 0x87, 0x82, 0xaa, 0x78, 0x55, 0x11, 0xde, 0xcd, 0xf3, 0x67, 0xce,
7623 0xa4, 0xfb, 0x0f, 0x18, 0xdd, 0x4d, 0xf1, 0x29, 0x6b, 0x6c, 0xae, 0xc9,
7624 0xb0, 0xab, 0x17, 0x4f, 0x46, 0xb7, 0x05, 0xb7, 0x8a, 0x90, 0x45, 0x1a,
7625 0x47, 0xe1, 0x43, 0x07, 0xc8, 0x3d, 0x01, 0x7f, 0x56, 0xd6, 0x69, 0x7e,
7626 0x78, 0x29, 0x53, 0x3b, 0x56, 0x8f, 0xbe, 0xcf, 0x93, 0x60, 0xc6, 0x7e,
7627 0x98, 0xaf, 0x31, 0x1e, 0x30, 0x59, 0x14, 0x74, 0xe7, 0xc8, 0x63, 0xac,
7628 0x1a, 0x8c, 0x13, 0x86, 0xaf, 0x11, 0x4d, 0xfc, 0xed, 0xd1, 0xbb, 0x0f,
7629 0x47, 0x67, 0xbf, 0x56, 0x5f, 0xe0, 0x47, 0x84, 0x36, 0xea, 0x98, 0xae,
7630 0xf2, 0x23, 0x1b, 0x54, 0xc3, 0x0b, 0xe1, 0xa9, 0xdd, 0x50, 0xba, 0x8d,
7631 0xe8, 0x89, 0xe4, 0x51, 0xd9, 0xb0, 0x9e, 0x83, 0x30, 0x18, 0x6c, 0x17,
7632 0xe8, 0x60, 0x0c, 0x36, 0x80, 0xd4, 0x4f, 0xbb, 0x8a, 0xd0, 0x4a, 0xff,
7633 0xbc, 0xec, 0x5a, 0x78, 0xd6, 0x66, 0x89, 0x0e, 0x22, 0x1d, 0x21, 0xeb,
7634 0x63, 0x96, 0x61, 0x18, 0x61, 0x9d, 0x8b, 0xe4, 0x24, 0x09, 0xc4, 0x29,
7635 0x2f, 0x8b, 0xcb, 0x4f, 0xec, 0x12, 0xe9, 0xe8, 0xfb, 0x1c, 0xfe, 0xe1,
7636 0xe2, 0x70, 0x03, 0x1a, 0x19, 0x38, 0x85, 0x06, 0xa0, 0xd1, 0xa4, 0x06,
7637 0x2b, 0x7a, 0x8e, 0x5c, 0xb1, 0x35, 0x3f, 0x5f, 0x3e, 0xd1, 0xa2, 0xd2,
7638 0x80, 0xc8, 0x39, 0x3a, 0x3e, 0x6e, 0x87, 0xca, 0xfb, 0x17, 0x57, 0xa6,
7639 0xb9, 0xa4, 0xec, 0xcc, 0x8a, 0x7e, 0x91, 0x0f, 0x73, 0x30, 0xf9, 0x57,
7640 0xc1, 0xa3, 0x32, 0xd8, 0x93, 0xde, 0x16, 0xd9, 0x3b, 0xad, 0x57, 0xe5,
7641 0x8c, 0xd2, 0x79, 0x28, 0xeb, 0x0e, 0xef, 0x18, 0xa3, 0x8c, 0x3b, 0x08,
7642 0xa5, 0xaa, 0xd6, 0xe3, 0x7a, 0x3f, 0x0c, 0x4e, 0xde, 0xd3, 0x56, 0x5c,
7643 0x1c, 0x0d, 0x06, 0x06, 0x21, 0x52, 0x32, 0x51, 0x3d, 0x53, 0x93, 0xa2,
7644 0xa1, 0x14, 0xc4, 0x12, 0x42, 0x6b, 0x02, 0xb3, 0x29, 0x3b, 0x53, 0xa9,
7645 0x79, 0xb9, 0x98, 0x81, 0xac, 0x00, 0x15, 0x7f, 0x8c, 0x59, 0xbe, 0x83,
7646 0x50, 0x05, 0x36, 0x5d, 0x07, 0xaa, 0x3a, 0x72, 0x9a, 0x13, 0x57, 0xd7,
7647 0xbe, 0xa6, 0x0a, 0x64, 0xde, 0xe9, 0x58, 0x73, 0x32, 0x9c, 0x82, 0xda,
7648 0x6e, 0xd0, 0x95, 0xd5, 0x19, 0x9c, 0x5e, 0x9e, 0x44, 0x47, 0x1f, 0x2e,
7649 0xdf, 0x74, 0x78, 0xf3, 0x9a, 0x08, 0xc1, 0x14, 0x78, 0x80, 0x13, 0x96,
7650 0x68, 0xf1, 0x8b, 0x22, 0x2a, 0x05, 0x33, 0x83, 0xc8, 0xdf, 0x67, 0xbf,
7651 0xf9, 0x24, 0x16, 0x08, 0x6c, 0x55, 0xe7, 0xc3, 0xfe, 0x6e, 0x11, 0x60,
7652 0x85, 0x07, 0xda, 0xb5, 0x2a, 0x37, 0xd1, 0x29, 0x6e, 0xe5, 0x8d, 0xf6,
7653 0x4e, 0xd9, 0xd2, 0xc1, 0x95, 0xf9, 0x81, 0x77, 0x4c, 0xce, 0xb0, 0x34,
7654 0x47, 0xc6, 0x9c, 0xe2, 0x4d, 0xce, 0x14, 0x17, 0xfc, 0x6c, 0x54, 0xbb,
7655 0xc8, 0x8f, 0x12, 0xe8, 0x30, 0x63, 0xfb, 0xed, 0x98, 0x14, 0x13, 0xea,
7656 0x12, 0x6d, 0x00, 0xea, 0xc5, 0x55, 0xce, 0x01, 0x6a, 0x98, 0x74, 0x5c,
7657 0x8c, 0x0d, 0x4c, 0x9c, 0xaf, 0x87, 0x6b, 0xfa, 0x3b, 0x16, 0x28, 0x51,
7658 0x4e, 0xdd, 0x07, 0x09, 0x84, 0x3a, 0xe0, 0x7d, 0x23, 0x83, 0x12, 0xa8,
7659 0x51, 0x22, 0x9b, 0xe2, 0x1e, 0x2e, 0x9a, 0xa5, 0x08, 0x04, 0xba, 0x3c,
7660 0x6c, 0x67, 0xe8, 0xa7, 0xec, 0x62, 0xad, 0xc1, 0x73, 0x6b, 0x5b, 0x59,
7661 0x6e, 0x98, 0x4c, 0x8e, 0x27, 0xea, 0xf9, 0xbc, 0xac, 0xf2, 0x20, 0xd4,
7662 0x6c, 0x9a, 0xbf, 0x25, 0x49, 0x65, 0x87, 0xfc, 0xdf, 0xf0, 0x71, 0x3e,
7663 0xe6, 0x52, 0x70, 0xf6, 0xf7, 0xca, 0x0b, 0x5c, 0x9f, 0xc1, 0x30, 0x20,
7664 0xa6, 0x52, 0x3f, 0xa6, 0x58, 0x35, 0xcd, 0x37, 0xa7, 0xfd, 0x6e, 0x86,
7665 0x83, 0x2f, 0x2f, 0xd6, 0x31, 0xbd, 0x4a, 0x1d, 0xe3, 0x97, 0x14, 0xf9,
7666 0xa5, 0xf1, 0x02, 0x80, 0x34, 0x5e, 0x97, 0xa8, 0x90, 0x15, 0xe0, 0x70,
7667 0xbc, 0x6f, 0x02, 0xd3, 0x1d, 0x3c, 0xba, 0x1d, 0xb7, 0x34, 0x8e, 0xc1,
7668 0x25, 0x10, 0x5f, 0x19, 0xe8, 0x9b, 0xe3, 0x6f, 0x5f, 0x45, 0x96, 0x25,
7669 0x35, 0x41, 0x5c, 0x6b, 0x6d, 0xb9, 0x03, 0x4c, 0x5b, 0xaf, 0x27, 0xa7,
7670 0x67, 0x0d, 0x70, 0x76, 0x9f, 0x62, 0xdf, 0xe3, 0x24, 0x99, 0x9b, 0xee,
7671 0xed, 0x29, 0x61, 0x71, 0xa4, 0xa5, 0x04, 0xbb, 0x67, 0x98, 0x70, 0x11,
7672 0xc0, 0x4b, 0x31, 0xf1, 0x57, 0x4c, 0x67, 0x32, 0x99, 0x55, 0xd7, 0xf9,
7673 0x2d, 0x85, 0xd9, 0xb7, 0x9f, 0xef, 0xbe, 0x00, 0x85, 0xeb, 0x9e, 0x1a,
7674 0xa7, 0x5b, 0x5a, 0x51, 0x67, 0xc2, 0x60, 0xae, 0xa6, 0x0d, 0x38, 0xba,
7675 0xb8, 0x08, 0x02, 0x1e, 0x1b, 0x95, 0x68, 0x12, 0x92, 0x63, 0x51, 0x00,
7676 0x15, 0x7d, 0x14, 0x72, 0xa0, 0x9f, 0x3a, 0xfc, 0x89, 0x58, 0x54, 0x65,
7677 0x8e, 0x84, 0xe2, 0xa4, 0xd1, 0xbe, 0x73, 0x4e, 0x40, 0x65, 0x1f, 0x9c,
7678 0xfe, 0xaf, 0x93, 0x6e, 0xf4, 0xfe, 0xe4, 0xf2, 0x7d, 0x37, 0x1a, 0x5c,
7679 0x9e, 0xbf, 0x6f, 0xe9, 0x90, 0x54, 0x31, 0x28, 0x31, 0x92, 0x4b, 0xb3,
7680 0xcb, 0xf8, 0xe4, 0xd7, 0x5a, 0x89, 0x50, 0x81, 0x13, 0x8b, 0xd4, 0x32,
7681 0x79, 0x3c, 0xad, 0x88, 0x63, 0xe0, 0x56, 0x5d, 0xba, 0x30, 0xde, 0xf1,
7682 0x47, 0x30, 0x07, 0xb2, 0x21, 0x2e, 0xd7, 0x5c, 0x60, 0x34, 0x5b, 0xb0,
7683 0xbe, 0x31, 0x46, 0x63, 0x9a, 0xdd, 0x6b, 0xde, 0x4e, 0x0b, 0x73, 0x48,
7684 0x45, 0x4c, 0x59, 0x6b, 0x31, 0xde, 0x51, 0xf4, 0x51, 0x6c, 0xa3, 0x4b,
7685 0x6e, 0x7e, 0x8b, 0xb5, 0xfe, 0x00, 0xeb, 0x82, 0x86, 0xbb, 0xd1, 0x77,
7686 0x13, 0xa1, 0xcb, 0x7c, 0x96, 0x70, 0x3c, 0x86, 0x9c, 0x7a, 0x2a, 0x02,
7687 0xcb, 0xc8, 0x34, 0x88, 0x0b, 0xa1, 0xff, 0x6a, 0x4c, 0x86, 0x76, 0x79,
7688 0xcd, 0xeb, 0x11, 0xc8, 0xfb, 0x92, 0x64, 0x70, 0xc8, 0xa8, 0x63, 0xc8,
7689 0x9a, 0xce, 0x6a, 0xed, 0x11, 0x4d, 0x85, 0x1c, 0xe9, 0xa2, 0xaf, 0x05,
7690 0xa4, 0x18, 0x10, 0x70, 0x1b, 0xff, 0xd8, 0x61, 0x19, 0xd6, 0x3e, 0x06,
7691 0x33, 0xe2, 0x2f, 0x18, 0xc0, 0x6c, 0xf8, 0xc3, 0x83, 0xf8, 0x08, 0xee,
7692 0x53, 0xbc, 0x00, 0xb1, 0x86, 0xbb, 0x87, 0xc6, 0x62, 0x53, 0x88, 0x22,
7693 0xda, 0x6e, 0x50, 0x72, 0x62, 0xfe, 0x55, 0x0d, 0xdd, 0x57, 0x53, 0xcd,
7694 0x49, 0xcb, 0xb4, 0x85, 0xf3, 0xfd, 0xe8, 0x42, 0x9e, 0xd2, 0xbc, 0x0c,
7695 0x4f, 0xd4, 0x91, 0x98, 0x9b, 0xda, 0x06, 0xbf, 0xca, 0xd8, 0x5d, 0x01,
7696 0x91, 0x69, 0x5c, 0x5f, 0x0d, 0xe8, 0xd8, 0x16, 0x88, 0x70, 0xbc, 0x70,
7697 0x8b, 0x04, 0x86, 0x21, 0xb8, 0x1c, 0x03, 0x32, 0x2c, 0x1d, 0x69, 0x9e,
7698 0xa6, 0xd3, 0x4a, 0x19, 0xb2, 0x38, 0xda, 0x09, 0x4d, 0x97, 0x2a, 0x02,
7699 0xc3, 0x28, 0xeb, 0x51, 0xf4, 0x21, 0x63, 0x24, 0x70, 0x2a, 0xb8, 0xc8,
7700 0x28, 0x03, 0x67, 0x6c, 0x88, 0x86, 0xcd, 0x02, 0x30, 0x91, 0x94, 0xef,
7701 0xfe, 0x71, 0x4e, 0x76, 0x28, 0x2e, 0xd8, 0xef, 0xb5, 0x43, 0xc1, 0x0d,
7702 0xca, 0x68, 0xd1, 0xeb, 0x5a, 0x46, 0x93, 0x40, 0x2a, 0x97, 0x59, 0x3b,
7703 0xab, 0xa4, 0xca, 0x61, 0x6f, 0x91, 0x17, 0xee, 0x76, 0x49, 0x5a, 0x12,
7704 0xd5, 0x2d, 0x18, 0x29, 0x57, 0x31, 0x7a, 0x6d, 0x1d, 0x84, 0x98, 0x57,
7705 0x1a, 0xac, 0x3f, 0xcb, 0x04, 0x22, 0x78, 0x91, 0x4d, 0xb1, 0xee, 0xac,
7706 0x01, 0x19, 0x2b, 0x54, 0x7c, 0x8a, 0x9e, 0x80, 0x6c, 0xf7, 0x74, 0xa0,
7707 0x66, 0xe3, 0xe7, 0xab, 0xc3, 0xce, 0xb6, 0x83, 0xda, 0xb1, 0x2a, 0xf7,
7708 0x1e, 0x77, 0xbb, 0x64, 0x08, 0x34, 0xa7, 0xdf, 0x74, 0x9a, 0xa5, 0x08,
7709 0x28, 0x9f, 0x17, 0x9b, 0x78, 0x4a, 0xb0, 0xdd, 0x4e, 0x04, 0x2a, 0x83,
7710 0xa6, 0xf0, 0x07, 0x92, 0xa9, 0x54, 0x77, 0x27, 0xb1, 0x0a, 0x43, 0xf7,
7711 0x03, 0x75, 0xfd, 0xd2, 0x32, 0xd2, 0x20, 0x6b, 0xd3, 0xa6, 0xf4, 0x99,
7712 0x06, 0x21, 0x3a, 0x0b, 0x32, 0x6b, 0x5d, 0x03, 0x97, 0x53, 0x46, 0xf1,
7713 0x31, 0xbd, 0x5f, 0x58, 0xc3, 0x5f, 0x2b, 0x5b, 0x41, 0x55, 0x84, 0x06,
7714 0x6c, 0x32, 0x02, 0x55, 0x24, 0xa9, 0xa9, 0x7e, 0x98, 0xc9, 0x0a, 0xad,
7715 0x7f, 0xac, 0x4c, 0xaa, 0xc5, 0xdc, 0x57, 0x7c, 0x4e, 0x2f, 0xec, 0x90,
7716 0xd2, 0x8c, 0x30, 0xe7, 0x7c, 0x5e, 0xbc, 0xc6, 0x9d, 0x49, 0x22, 0x62,
7717 0xaa, 0xd9, 0x00, 0x7b, 0xbf, 0x7b, 0x85, 0xfe, 0xa8, 0x19, 0x79, 0xea,
7718 0x4e, 0x1b, 0x1a, 0xa7, 0x5e, 0xba, 0xfd, 0xab, 0x7e, 0xd4, 0x41, 0x44,
7719 0xd0, 0x0e, 0x4d, 0x55, 0xd0, 0x44, 0xa4, 0x73, 0x87, 0xbe, 0x0b, 0x44,
7720 0xa9, 0xcd, 0xd6, 0x3f, 0x68, 0x5a, 0x7c, 0xcb, 0x90, 0xcb, 0xb4, 0x3f,
7721 0xeb, 0x1f, 0xb2, 0xf4, 0x8e, 0x0e, 0xfe, 0xc6, 0x67, 0xfe, 0xd2, 0x65,
7722 0xac, 0x65, 0xb3, 0x52, 0xa0, 0x34, 0x84, 0x92, 0xac, 0xcd, 0x8e, 0xfb,
7723 0xa4, 0xc2, 0xfe, 0xbb, 0x03, 0x05, 0xc0, 0xa0, 0xa2, 0xf6, 0x7e, 0x83,
7724 0xfc, 0x85, 0xd9, 0x7d, 0x1f, 0x9f, 0xeb, 0x8f, 0xf3, 0x19, 0x1c, 0x7b,
7725 0xef, 0x1b, 0x33, 0xaa, 0x70, 0xf7, 0x94, 0xe8, 0x9e, 0x4d, 0x86, 0x53,
7726 0x25, 0x68, 0x9e, 0x22, 0x1f, 0x69, 0xb9, 0x90, 0x9d, 0x15, 0x8b, 0x09,
7727 0x6a, 0x06, 0x43, 0x7d, 0xf7, 0xe8, 0x58, 0x87, 0x67, 0xa4, 0xb7, 0x80,
7728 0x60, 0x2c, 0x39, 0x17, 0xc1, 0xaf, 0xd1, 0xcb, 0x44, 0x05, 0xeb, 0xab,
7729 0xd4, 0x7a, 0xea, 0xd8, 0x0b, 0xab, 0x36, 0x28, 0x45, 0x95, 0x08, 0xe9,
7730 0xbf, 0x09, 0x19, 0x2f, 0x08, 0xdc, 0x2c, 0x33, 0x9d, 0x8a, 0x5e, 0xe9,
7731 0x5c, 0x66, 0x2e, 0x7d, 0xa7, 0xb9, 0x83, 0x9b, 0x43, 0x47, 0x63, 0x6a,
7732 0x06, 0x5d, 0x13, 0xcf, 0x5f, 0x5e, 0xa3, 0x1b, 0x8e, 0xe5, 0xba, 0x0e,
7733 0x87, 0xaf, 0xfd, 0xe9, 0x4f, 0x56, 0x04, 0x36, 0x92, 0x2b, 0xb4, 0x69,
7734 0x73, 0xe7, 0xe0, 0x7b, 0x8a, 0x7a, 0xfc, 0xd8, 0xfb, 0x1e, 0xfe, 0xf9,
7735 0x63, 0x47, 0x4f, 0x33, 0xf7, 0x65, 0x10, 0x53, 0x41, 0x76, 0xa3, 0xeb,
7736 0x5c, 0x7a, 0x95, 0x01, 0xe2, 0x24, 0x0d, 0xe9, 0xf2, 0xf8, 0x82, 0x8f,
7737 0x5f, 0xc1, 0x89, 0x1a, 0xb4, 0x3a, 0x14, 0x3f, 0x64, 0xdd, 0xa0, 0xc0,
7738 0x97, 0xde, 0x5d, 0x0a, 0xb7, 0x13, 0xf3, 0x71, 0xd5, 0xe1, 0xe8, 0xb5,
7739 0x6e, 0x64, 0x73, 0x71, 0x6e, 0xf9, 0xec, 0xc7, 0xa0, 0xe9, 0x5f, 0xa1,
7740 0x17, 0x91, 0x81, 0x0b, 0xfb, 0xd1, 0x91, 0x9a, 0x15, 0xfc, 0x03, 0x6a,
7741 0xea, 0x50, 0x62, 0xac, 0xe9, 0x16, 0x26, 0x64, 0x5c, 0x1d, 0xdc, 0xa3,
7742 0x8e, 0x0b, 0x34, 0x2b, 0x6d, 0x29, 0x94, 0xa1, 0xc9, 0xa6, 0x3d, 0xfa,
7743 0x8a, 0xb4, 0xfc, 0x84, 0xcb, 0x93, 0x62, 0x63, 0x49, 0x6d, 0x13, 0x14,
7744 0x20, 0xf2, 0x66, 0xcc, 0x62, 0x43, 0x4b, 0x01, 0xec, 0x36, 0x70, 0x2f,
7745 0x0f, 0x6b, 0x6a, 0x17, 0xc0, 0xe5, 0x74, 0x8b, 0xb4, 0x37, 0x5b, 0xbc,
7746 0x60, 0x20, 0xe1, 0x07, 0x9f, 0x72, 0xf1, 0x0e, 0xbd, 0x87, 0x3f, 0x0b,
7747 0x3b, 0x1a, 0xe8, 0x16, 0x13, 0x10, 0xb1, 0x60, 0xfb, 0x07, 0x79, 0xac,
7748 0x48, 0xaa, 0x25, 0x0d, 0x03, 0x4c, 0x72, 0x24, 0x27, 0xd3, 0x45, 0x17,
7749 0x60, 0x82, 0x18, 0x0e, 0x75, 0x90, 0xfa, 0x19, 0x3f, 0x07, 0xaf, 0xee,
7750 0x8d, 0x66, 0xa0, 0xeb, 0x38, 0x29, 0x28, 0x44, 0x6a, 0xfd, 0x8c, 0x84,
7751 0xc6, 0x92, 0xa2, 0x3a, 0x33, 0x2e, 0x60, 0x0e, 0xdc, 0xc6, 0x93, 0x50,
7752 0x15, 0xb5, 0x2a, 0x1b, 0xd3, 0x26, 0x54, 0xd7, 0xf6, 0x22, 0x12, 0x52,
7753 0x34, 0xcf, 0xd8, 0xe8, 0xc6, 0x50, 0x20, 0x28, 0x20, 0x0e, 0x7d, 0x30,
7754 0x27, 0xe0, 0x7f, 0xe9, 0xd2, 0xc0, 0x82, 0xe5, 0xdb, 0x0c, 0x5d, 0xa5,
7755 0xa5, 0x6f, 0x65, 0xd2, 0xe4, 0x67, 0xa1, 0x96, 0x7e, 0x8f, 0xd1, 0x14,
7756 0x8a, 0x64, 0xb5, 0x96, 0x0e, 0x75, 0x95, 0x40, 0xdc, 0xc3, 0x5e, 0x5f,
7757 0x09, 0xfe, 0x59, 0xf9, 0x29, 0xe5, 0x5f, 0xf4, 0xd2, 0xf9, 0xc3, 0x7d,
7758 0x63, 0xb4, 0xa7, 0x05, 0x72, 0x6f, 0x4d, 0x78, 0x9a, 0x6b, 0xb4, 0x5c,
7759 0x5c, 0x5d, 0x11, 0xa6, 0xad, 0x9f, 0x35, 0x5b, 0x95, 0x0e, 0xa6, 0x85,
7760 0xf4, 0x94, 0x86, 0x0b, 0x8b, 0x68, 0x53, 0x6b, 0x07, 0x31, 0x12, 0x04,
7761 0xf6, 0x8c, 0xa2, 0x38, 0xaa, 0x71, 0xb7, 0x02, 0x57, 0x61, 0xe5, 0x21,
7762 0x0b, 0x31, 0xab, 0xe6, 0x15, 0x49, 0x4f, 0xe7, 0xd9, 0x94, 0xf4, 0x29,
7763 0x65, 0xd1, 0x78, 0xcd, 0x0b, 0x55, 0xea, 0x97, 0x4b, 0x04, 0xbc, 0x0f,
7764 0x2a, 0x48, 0x87, 0x99, 0x3e, 0xfb, 0xbc, 0xff, 0x7c, 0xaf, 0xbf, 0xd5,
7765 0x94, 0xfb, 0x9c, 0xbe, 0xce, 0x29, 0x45, 0xac, 0x6c, 0xb5, 0xe4, 0xb9,
7766 0xcb, 0x2b, 0xe8, 0xd8, 0x36, 0x9d, 0x18, 0x30, 0xa2, 0xcc, 0x1d, 0x6f,
7767 0xb8, 0x65, 0x49, 0x61, 0x3a, 0x31, 0xb8, 0x90, 0xb0, 0x4d, 0xf5, 0x62,
7768 0x42, 0x14, 0xed, 0xaf, 0xce, 0x67, 0x2e, 0x2b, 0xac, 0xa6, 0x99, 0xb6,
7769 0x32, 0x57, 0x39, 0xed, 0x8d, 0x46, 0xa3, 0x1e, 0x29, 0x5c, 0x87, 0xac,
7770 0x07, 0x6e, 0x8a, 0x16, 0x16, 0xd6, 0x50, 0x07, 0x89, 0xec, 0xf8, 0xf1,
7771 0xf1, 0xb1, 0x28, 0x8c, 0x97, 0xd7, 0x0d, 0xcd, 0xcd, 0xb4, 0x36, 0x10,
7772 0xb5, 0x35, 0x58, 0x48, 0x5f, 0x5e, 0x2f, 0x2a, 0x3c, 0x90, 0x6c, 0x61,
7773 0xe9, 0x2d, 0x67, 0x90, 0x57, 0x1a, 0xdd, 0xc8, 0x72, 0xe0, 0x8a, 0xae,
7774 0x4d, 0x5d, 0xf6, 0x3b, 0x7e, 0x14, 0x09, 0xa3, 0x40, 0xf2, 0x8b, 0x32,
7775 0xb6, 0x05, 0x9d, 0x72, 0x7d, 0x62, 0x6e, 0xb7, 0x0a, 0x9d, 0x61, 0x19,
7776 0x4a, 0xf7, 0xd7, 0x51, 0xe8, 0xb3, 0x71, 0x2a, 0x79, 0xa2, 0xb1, 0x7c,
7777 0xab, 0x39, 0xf6, 0x13, 0x04, 0x47, 0x8d, 0xfc, 0x32, 0xad, 0xda, 0x6f,
7778 0x70, 0x97, 0xcb, 0xd5, 0xb6, 0x59, 0xde, 0x6c, 0xd9, 0xe9, 0xb0, 0x8c,
7779 0x47, 0x43, 0x9a, 0x36, 0x34, 0x5a, 0x3f, 0xa6, 0x56, 0x63, 0xd8, 0x1e,
7780 0x96, 0x8e, 0xfb, 0xf1, 0x35, 0xa6, 0x90, 0x4e, 0x61, 0xdf, 0x81, 0x18,
7781 0x25, 0x49, 0x50, 0x5a, 0xf3, 0x60, 0x70, 0xb6, 0x79, 0x79, 0x36, 0xf0,
7782 0x0a, 0x6d, 0xee, 0x31, 0x7c, 0x44, 0x61, 0xa2, 0x7a, 0x80, 0x82, 0x29,
7783 0x4f, 0x8d, 0x38, 0x45, 0x93, 0x30, 0x87, 0x97, 0xbf, 0x10, 0xc4, 0x36,
7784 0x5e, 0x64, 0xa6, 0x22, 0xd3, 0x84, 0x6f, 0xb2, 0x24, 0x23, 0x18, 0x39,
7785 0x54, 0xc2, 0xe8, 0x64, 0x52, 0x22, 0x7e, 0x19, 0xbd, 0x3b, 0xba, 0xc4,
7786 0x22, 0xcb, 0x4a, 0x32, 0xd1, 0x26, 0xb9, 0x27, 0x41, 0xb4, 0xc9, 0x9d,
7787 0x69, 0x57, 0x13, 0x8f, 0xb4, 0xbb, 0x9b, 0x75, 0xdd, 0x31, 0x57, 0x94,
7788 0xca, 0xd0, 0xbf, 0x60, 0x57, 0x83, 0x7b, 0xd7, 0xba, 0x75, 0xf0, 0x92,
7789 0x73, 0x11, 0xb8, 0x8c, 0x11, 0xdc, 0x49, 0x26, 0x5e, 0x70, 0x37, 0xdf,
7790 0xcb, 0x1d, 0x2a, 0x5b, 0x64, 0x4e, 0x13, 0x45, 0x0c, 0xa6, 0xf9, 0x55,
7791 0x4a, 0x30, 0x27, 0xbc, 0xcd, 0x5c, 0x69, 0x27, 0xd1, 0x76, 0x0f, 0x91,
7792 0x98, 0x09, 0x1b, 0x09, 0x12, 0x69, 0xa3, 0x29, 0x1e, 0x9f, 0x5b, 0xbc,
7793 0xa1, 0xcd, 0x86, 0x48, 0xbf, 0x62, 0xc5, 0xe2, 0x08, 0x54, 0xf5, 0x81,
7794 0xd8, 0x4c, 0x47, 0x60, 0x1c, 0x8e, 0xee, 0xfb, 0x0c, 0xb6, 0x53, 0xd6,
7795 0x6b, 0x02, 0xd2, 0x5a, 0x13, 0x2a, 0x13, 0x95, 0xc0, 0x9c, 0xa4, 0x60,
7796 0x15, 0xab, 0xac, 0xf1, 0xc9, 0xbb, 0x24, 0x3c, 0xb8, 0x4a, 0xf4, 0xa6,
7797 0xde, 0x59, 0xf0, 0x6b, 0xbc, 0xc9, 0xaf, 0x3c, 0xdd, 0xe9, 0x5b, 0xc5,
7798 0x55, 0x1b, 0x77, 0x9b, 0xad, 0xf3, 0x6c, 0x6b, 0x76, 0xf4, 0xbd, 0x12,
7799 0xc5, 0xdc, 0x5e, 0xbe, 0xdc, 0xd9, 0x35, 0xd8, 0x86, 0xb9, 0xdb, 0xec,
7800 0x6c, 0x5c, 0xf8, 0x6d, 0x40, 0x6b, 0x80, 0xe4, 0x94, 0xea, 0x86, 0xa5,
7801 0x0e, 0x8d, 0xe1, 0xbe, 0x3e, 0x71, 0xfa, 0x65, 0x37, 0x70, 0xcb, 0xa9,
7802 0x78, 0x4d, 0x7f, 0xc7, 0xc9, 0x8b, 0x18, 0xbb, 0xbf, 0x4d, 0x41, 0x44,
7803 0xdc, 0x86, 0xed, 0x65, 0x36, 0x88, 0x2e, 0x6d, 0x13, 0x5e, 0x3e, 0xa9,
7804 0x6c, 0x56, 0x24, 0x26, 0x5f, 0x1f, 0x11, 0x80, 0x35, 0x9b, 0xe9, 0x7f,
7805 0xae, 0x29, 0xec, 0x6d, 0xee, 0xb1, 0xdd, 0xe9, 0xc4, 0xcc, 0xdf, 0xeb,
7806 0x6f, 0x68, 0xe3, 0xdf, 0x5d, 0x3b, 0x5b, 0xce, 0xf2, 0x50, 0xc8, 0x1e,
7807 0x2f, 0x7d, 0x82, 0x56, 0xb7, 0x7c, 0x3e, 0x6f, 0x4e, 0x8e, 0x5e, 0xb5,
7808 0xa2, 0xd6, 0xfd, 0x16, 0xdd, 0x0f, 0x8d, 0x33, 0x7d, 0x98, 0x70, 0xeb,
7809 0xef, 0x85, 0xb8, 0xe9, 0x62, 0xda, 0x1c, 0xc3, 0xf8, 0x8c, 0x56, 0x98,
7810 0x10, 0x62, 0x5f, 0xd8, 0x2f, 0x27, 0x4e, 0x8c, 0x56, 0xcf, 0x9c, 0x9b,
7811 0xae, 0x25, 0xae, 0x5a, 0x34, 0xbf, 0xb8, 0x5c, 0x75, 0xd5, 0xfe, 0xb9,
7812 0xc8, 0xe9, 0x8f, 0xef, 0x76, 0x4b, 0x4f, 0xdb, 0x6e, 0xb9, 0xa6, 0x79,
7813 0x6e, 0x7c, 0x95, 0x7c, 0x9e, 0x4f, 0xc7, 0x9d, 0x55, 0x47, 0x3a, 0x6d,
7814 0x0e, 0xf6, 0xb4, 0xec, 0x0c, 0x16, 0xb3, 0xdf, 0xe1, 0x3f, 0xbd, 0x2d,
7815 0xef, 0x5d, 0xd1, 0x79, 0x9e, 0xe6, 0xc3, 0x7c, 0x32, 0x59, 0x92, 0x8a,
7816 0xc2, 0xad, 0xaf, 0xa8, 0xc2, 0x96, 0x8f, 0x4d, 0x07, 0xb9, 0x09, 0xdf,
7817 0x1b, 0x72, 0x63, 0xb4, 0x02, 0x44, 0x58, 0x47, 0x12, 0x78, 0x05, 0xbf,
7818 0xda, 0xd3, 0x30, 0x9c, 0x60, 0xe8, 0xbd, 0x64, 0x55, 0xab, 0x51, 0x4c,
7819 0xb0, 0x5b, 0x06, 0xd0, 0x25, 0x96, 0x1c, 0x19, 0xee, 0x6a, 0x0d, 0xcc,
7820 0xf7, 0x8f, 0x7f, 0x7e, 0xff, 0xa3, 0x07, 0xd6, 0xc6, 0x81, 0x05, 0x2c,
7821 0x5e, 0xa6, 0xdc, 0x3f, 0x0a, 0xc1, 0x56, 0x65, 0x32, 0x9d, 0xd8, 0x5e,
7822 0xca, 0x38, 0xca, 0xac, 0xcf, 0x99, 0xf6, 0x5a, 0x70, 0x5c, 0xd2, 0xb8,
7823 0x81, 0x92, 0x37, 0x8b, 0x67, 0x2d, 0xa0, 0x21, 0xd8, 0x9d, 0x75, 0x4a,
7824 0xc7, 0xc6, 0xd4, 0xcd, 0x98, 0x2e, 0x89, 0xca, 0x87, 0x5c, 0x54, 0x16,
7825 0x4a, 0x47, 0xc3, 0x3c, 0x50, 0xb7, 0xaa, 0x95, 0x8f, 0xe0, 0xa9, 0x89,
7826 0xa5, 0xac, 0x28, 0xc3, 0x11, 0xd0, 0x38, 0x50, 0x5e, 0xf3, 0x8f, 0xef,
7827 0x7f, 0xfc, 0x27, 0xfc, 0x5f, 0xe7, 0x51, 0xad, 0xaa, 0x98, 0x13, 0xdc,
7828 0xf6, 0x5f, 0xee, 0x5d, 0x7b, 0x0d, 0x02, 0xe3, 0xbe, 0x97, 0xdc, 0x27,
7829 0x43, 0x10, 0xd4, 0xa5, 0xe2, 0xca, 0xf5, 0x66, 0x65, 0x74, 0x38, 0x03,
7830 0x59, 0x93, 0xb6, 0x20, 0x0e, 0xbe, 0xc1, 0xd7, 0x60, 0xf6, 0xf2, 0x9e,
7831 0x69, 0x0e, 0x77, 0x95, 0x17, 0xb0, 0x45, 0x33, 0x81, 0x25, 0x11, 0x4c,
7832 0x96, 0xba, 0x73, 0x92, 0x2a, 0x1d, 0x3d, 0x07, 0x1f, 0xf6, 0xa5, 0xc1,
7833 0xfa, 0x5e, 0xa7, 0x6f, 0x88, 0xd8, 0x40, 0xd1, 0x78, 0x01, 0x76, 0x12,
7834 0x10, 0x70, 0xf4, 0x89, 0xdd, 0x74, 0x18, 0x1f, 0xb8, 0x4a, 0x69, 0xff,
7835 0xf9, 0xf9, 0x60, 0x6e, 0xb3, 0x00, 0x32, 0x98, 0x4e, 0x15, 0xe6, 0xf6,
7836 0x11, 0x47, 0x0a, 0x82, 0x22, 0x38, 0x0b, 0xec, 0x6b, 0x6b, 0x48, 0x1c,
7837 0xb1, 0xc5, 0x91, 0x0b, 0xbc, 0x2b, 0x9e, 0x11, 0x59, 0x0d, 0x8b, 0x59,
7838 0x53, 0x69, 0x81, 0xac, 0x06, 0xf4, 0x93, 0xb6, 0xa1, 0xb1, 0x1a, 0x87,
7839 0xc1, 0xe4, 0x27, 0xe3, 0x18, 0xc3, 0x58, 0x6e, 0x3c, 0x36, 0xc0, 0x5d,
7840 0x6e, 0x87, 0x1e, 0xaa, 0xb8, 0x8f, 0x11, 0x01, 0x20, 0x99, 0xf2, 0xd5,
7841 0x13, 0xea, 0x5c, 0x6a, 0xed, 0x42, 0xb9, 0x17, 0xe1, 0xac, 0x63, 0x03,
7842 0x3c, 0x42, 0xed, 0x90, 0x48, 0x26, 0x01, 0xec, 0x88, 0x6b, 0x31, 0x18,
7843 0x29, 0x20, 0xbd, 0x95, 0x5c, 0x59, 0x40, 0x17, 0x31, 0x9e, 0xa9, 0x29,
7844 0x26, 0x35, 0x11, 0x63, 0x54, 0x45, 0x7c, 0x99, 0x92, 0x05, 0x51, 0xb4,
7845 0x37, 0x18, 0xa0, 0x31, 0x1c, 0x46, 0x99, 0xa3, 0x67, 0xfb, 0xfb, 0xfb,
7846 0x11, 0xc7, 0x99, 0xa3, 0xce, 0x69, 0x45, 0x37, 0xca, 0xfb, 0x93, 0xe3,
7847 0xf3, 0xb7, 0x6f, 0x4f, 0xde, 0xbd, 0x3a, 0x79, 0x65, 0x4e, 0xbe, 0xce,
7848 0xde, 0xb0, 0x8b, 0x77, 0xf7, 0x62, 0xb2, 0xfb, 0x38, 0xda, 0xde, 0xdf,
7849 0xea, 0xed, 0xec, 0x6f, 0x45, 0xc0, 0x9b, 0xb1, 0x29, 0xa0, 0x8e, 0xa7,
7850 0x08, 0xb2, 0x14, 0x5d, 0x2f, 0x40, 0x91, 0xc7, 0xae, 0x5c, 0x15, 0x82,
7851 0x6b, 0x29, 0x9e, 0x6b, 0x94, 0x25, 0x15, 0x3a, 0xcc, 0x3c, 0x15, 0x39,
7852 0x1e, 0xf7, 0x3b, 0xb6, 0xd1, 0x8a, 0x4d, 0x07, 0x11, 0xfd, 0x98, 0x38,
7853 0x76, 0x67, 0x0b, 0x3f, 0xd5, 0x8f, 0x5e, 0xa7, 0x88, 0x69, 0x76, 0x17,
7854 0xb1, 0xa1, 0x00, 0xe6, 0x50, 0xe2, 0xe7, 0x81, 0xd4, 0x5f, 0xc7, 0xb7,
7855 0x77, 0xf9, 0xed, 0xdf, 0x39, 0xa5, 0xab, 0xfd, 0x74, 0xef, 0x6f, 0xad,
7856 0xd8, 0xd3, 0x6b, 0x86, 0x02, 0x64, 0x16, 0xdf, 0x31, 0xee, 0xb4, 0x00,
7857 0x30, 0x2f, 0x41, 0xa3, 0xdc, 0x7f, 0x59, 0x47, 0xd9, 0x80, 0xa9, 0x50,
7858 0x2f, 0x62, 0x2d, 0xde, 0x0f, 0xe3, 0x98, 0x0c, 0xd8, 0xf3, 0xf6, 0xe6,
7859 0xe8, 0x02, 0x1f, 0x8e, 0x2e, 0xde, 0x9f, 0x7f, 0xf7, 0x37, 0x0b, 0x86,
7860 0x70, 0xb3, 0xad, 0x05, 0x02, 0x02, 0x23, 0x01, 0x74, 0x01, 0x4d, 0x3f,
7861 0xf3, 0xd3, 0xaa, 0x0c, 0x00, 0xa1, 0xeb, 0x9f, 0x51, 0x75, 0x84, 0x48,
7862 0x8e, 0x75, 0x1d, 0x39, 0xb5, 0x4b, 0x40, 0xc5, 0x89, 0xd9, 0x48, 0x90,
7863 0xa5, 0x7d, 0x28, 0x31, 0x0a, 0x57, 0xe1, 0x3c, 0xee, 0x52, 0xee, 0xbc,
7864 0x9e, 0x66, 0x63, 0xee, 0x92, 0x50, 0x8b, 0x04, 0x55, 0xc5, 0xa2, 0xe6,
7865 0xe3, 0xd1, 0xc8, 0x4f, 0x7f, 0x39, 0xda, 0xe0, 0xbc, 0x48, 0x67, 0x71,
7866 0x91, 0x4e, 0xef, 0x6b, 0x4d, 0xfb, 0xb4, 0x30, 0x81, 0x52, 0x10, 0x6c,
7867 0x5b, 0xba, 0xdc, 0x17, 0x77, 0xda, 0x49, 0x9d, 0xd3, 0x82, 0x19, 0x91,
7868 0x95, 0xd9, 0x8c, 0xa9, 0xf5, 0x04, 0xae, 0xa9, 0x6d, 0xd5, 0x6a, 0x8c,
7869 0x72, 0x67, 0xfa, 0x4e, 0xd7, 0xd1, 0x6d, 0xb7, 0x6a, 0xfc, 0x60, 0x54,
7870 0xdc, 0xb6, 0xc6, 0x06, 0xd1, 0xeb, 0xd3, 0xb3, 0x93, 0x8d, 0xe8, 0x75,
7871 0x52, 0x49, 0xdd, 0xb1, 0x56, 0x08, 0xa1, 0xfa, 0xf9, 0x1f, 0xa4, 0xf0,
7872 0x9b, 0xb6, 0x35, 0x02, 0x05, 0x12, 0x4c, 0xe9, 0x66, 0x0b, 0x9f, 0x74,
7873 0x5f, 0xad, 0x61, 0x66, 0x16, 0x20, 0x5a, 0xa2, 0xca, 0xa5, 0x19, 0xe2,
7874 0x9a, 0xcf, 0x22, 0x2c, 0x16, 0x2a, 0x9a, 0x51, 0xd8, 0xaf, 0xbe, 0x6b,
7875 0xfc, 0x44, 0xd4, 0x64, 0xd9, 0xe4, 0xa5, 0xe1, 0xbc, 0xa5, 0x68, 0x89,
7876 0x13, 0x40, 0xd2, 0x72, 0x3e, 0x45, 0x21, 0x18, 0x42, 0xd3, 0x9c, 0x26,
7877 0xb6, 0xd6, 0x9e, 0x4e, 0x3c, 0xd8, 0xc2, 0xb6, 0xe9, 0x06, 0x37, 0x61,
7878 0xac, 0x25, 0x0b, 0x3c, 0x6a, 0x07, 0x4f, 0x57, 0xdb, 0x31, 0x35, 0xef,
7879 0xe0, 0x3f, 0x37, 0xf8, 0x57, 0xa0, 0xe9, 0x90, 0xf0, 0x33, 0xe8, 0x90,
7880 0x83, 0xd9, 0x3a, 0x4a, 0x7a, 0x71, 0x39, 0x4a, 0x53, 0x67, 0xff, 0xde,
7881 0xe8, 0xfe, 0x61, 0x22, 0x27, 0xff, 0x77, 0xf3, 0xcb, 0x25, 0x90, 0xd2,
7882 0x27, 0x77, 0x30, 0x8e, 0x92, 0x96, 0x0e, 0xd0, 0x68, 0xba, 0x18, 0x27,
7883 0x9a, 0x18, 0xad, 0xb6, 0x58, 0x8d, 0xf3, 0x43, 0x56, 0x1d, 0xf1, 0xbf,
7884 0xcd, 0xfe, 0xc2, 0x28, 0x0f, 0x16, 0xa3, 0xa9, 0x4a, 0x89, 0xf9, 0x50,
7885 0xf6, 0x82, 0x4f, 0x9c, 0x8f, 0x96, 0xac, 0x11, 0x86, 0x00, 0x48, 0x53,
7886 0xee, 0xff, 0x2a, 0xca, 0x1d, 0xd6, 0xfc, 0xc5, 0xf5, 0xaa, 0x3f, 0x7e,
7887 0xec, 0x5a, 0xba, 0xa3, 0x92, 0x27, 0x97, 0xeb, 0xcb, 0xcb, 0x40, 0x50,
7888 0xd5, 0xca, 0x1e, 0x9b, 0x70, 0x91, 0x67, 0x1a, 0x89, 0xbe, 0xd5, 0x6c,
7889 0xb7, 0xae, 0x14, 0x7f, 0xdf, 0xf1, 0x33, 0xd3, 0xfb, 0x80, 0xf6, 0x2c,
7890 0x5f, 0x77, 0x6f, 0x80, 0xa6, 0x25, 0x6b, 0xbe, 0x91, 0x1b, 0xa8, 0x54,
7891 0x71, 0x15, 0xf9, 0x56, 0x14, 0xd2, 0x8e, 0xa3, 0x90, 0x09, 0x21, 0xdd,
7892 0x56, 0x45, 0x3a, 0xfa, 0x94, 0x62, 0xee, 0x6a, 0x59, 0x2d, 0x48, 0xc5,
7893 0x8f, 0x33, 0x77, 0x96, 0xa6, 0xb1, 0xf1, 0x38, 0x27, 0x4a, 0x87, 0x8d,
7894 0x32, 0x54, 0x89, 0xd0, 0x57, 0x88, 0x8d, 0x66, 0x74, 0x36, 0xbc, 0x1a,
7895 0x73, 0x64, 0x8d, 0xda, 0x8e, 0x38, 0x09, 0xb4, 0xb3, 0xf3, 0x40, 0x4b,
7896 0x4d, 0x10, 0x5b, 0x98, 0xf4, 0x41, 0xe1, 0x0c, 0xa9, 0x0b, 0xa7, 0x18,
7897 0x1a, 0x2a, 0xe8, 0x64, 0x37, 0xf6, 0xa3, 0xf7, 0xc9, 0x2c, 0xbf, 0xb1,
7898 0xfd, 0x2f, 0x71, 0xdd, 0x42, 0x23, 0xaf, 0x94, 0x55, 0x34, 0xc4, 0x58,
7899 0xe7, 0x36, 0x63, 0x88, 0x34, 0x9e, 0x88, 0x56, 0x2e, 0x49, 0x26, 0x15,
7900 0x07, 0xff, 0x22, 0x6c, 0x2c, 0x62, 0xb6, 0xcf, 0x13, 0x24, 0x53, 0x34,
7901 0x61, 0x10, 0x1f, 0x3a, 0x3b, 0x00, 0xf6, 0x8f, 0x3a, 0x6f, 0x40, 0x15,
7902 0x3d, 0xe8, 0x98, 0xee, 0xc1, 0x92, 0x66, 0x9c, 0x34, 0x38, 0x87, 0x6c,
7903 0xef, 0xcc, 0x6b, 0x2c, 0xcd, 0xc0, 0x47, 0x6c, 0xcf, 0x56, 0x2a, 0xa7,
7904 0x4d, 0x7d, 0xae, 0x5f, 0x19, 0x65, 0xea, 0x65, 0xbb, 0x04, 0xbd, 0x77,
7905 0xed, 0xc3, 0x00, 0xe0, 0x94, 0xbe, 0xeb, 0x1d, 0xd3, 0xc7, 0x7b, 0x6f,
7906 0x68, 0xbc, 0x3f, 0x77, 0x4c, 0x30, 0xab, 0xf9, 0x2b, 0x98, 0xf8, 0x67,
7907 0xa1, 0x74, 0x56, 0x71, 0x30, 0x30, 0x97, 0x50, 0x03, 0x01, 0xb9, 0x55,
7908 0x62, 0xdb, 0x97, 0x80, 0x90, 0xc4, 0xc7, 0xe3, 0x4d, 0xb3, 0xe9, 0x9c,
7909 0xe8, 0x1e, 0x30, 0xd5, 0x18, 0xe0, 0xa5, 0xc0, 0xc4, 0x35, 0x30, 0x97,
7910 0xc6, 0xbd, 0x7c, 0xd2, 0xa3, 0x4a, 0x2b, 0xb8, 0xed, 0x3e, 0x61, 0xa2,
7911 0xad, 0x73, 0xea, 0x08, 0x47, 0x8e, 0xfa, 0x53, 0x8c, 0xc7, 0xa1, 0xdc,
7912 0xdd, 0x98, 0x13, 0x7b, 0x0b, 0xe3, 0x59, 0xd5, 0x62, 0x4d, 0xde, 0xc9,
7913 0x03, 0x09, 0x7f, 0xd2, 0xeb, 0x59, 0x72, 0xcb, 0xb5, 0x2c, 0x08, 0xc4,
7914 0x2c, 0x45, 0x95, 0x9e, 0x23, 0x9d, 0x4a, 0x2c, 0xbb, 0x6c, 0xd7, 0xd1,
7915 0xa2, 0xc9, 0xad, 0x31, 0xe3, 0x38, 0x12, 0x85, 0xd6, 0x16, 0x73, 0x6d,
7916 0xc6, 0xf4, 0x60, 0xc1, 0x06, 0xf5, 0x5a, 0x42, 0x03, 0x48, 0x33, 0x50,
7917 0x41, 0xac, 0x7d, 0x69, 0xca, 0xae, 0xcb, 0xea, 0x1e, 0x6f, 0x03, 0x01,
7918 0x4a, 0x0d, 0x24, 0xf8, 0xc1, 0xa4, 0x19, 0x26, 0x47, 0x16, 0xc5, 0x76,
7919 0x0f, 0xd1, 0x9c, 0xe8, 0x25, 0x42, 0x92, 0xa0, 0x34, 0x04, 0x6c, 0x9f,
7920 0x73, 0x8d, 0xbf, 0xec, 0x85, 0x70, 0x54, 0x69, 0xf7, 0x04, 0x7c, 0x3a,
7921 0x1e, 0xbb, 0xd4, 0xe2, 0x34, 0x60, 0x03, 0x5d, 0x53, 0x57, 0xd8, 0xf6,
7922 0xdd, 0x0b, 0xda, 0x89, 0xa2, 0x13, 0xf0, 0xb1, 0x5c, 0xe9, 0x3d, 0x2b,
7923 0xc1, 0x89, 0xaf, 0x1a, 0xc5, 0xd1, 0x74, 0x2c, 0xc9, 0xfd, 0xc4, 0x4b,
7924 0x88, 0x43, 0xc0, 0x26, 0xbe, 0x6e, 0xb0, 0xfb, 0x3c, 0xf0, 0x69, 0x4a,
7925 0xa2, 0x42, 0x59, 0x41, 0xd6, 0x12, 0x98, 0x10, 0x5e, 0x21, 0xd6, 0x01,
7926 0x03, 0xa8, 0x24, 0xe8, 0x64, 0x91, 0xd3, 0xc6, 0x6d, 0xdc, 0x43, 0xfd,
7927 0x92, 0x6b, 0x1d, 0x3d, 0xe4, 0x54, 0xe9, 0x3f, 0xb1, 0x0a, 0xae, 0xeb,
7928 0xf8, 0x2c, 0x39, 0x31, 0x39, 0xc9, 0x14, 0x20, 0x2b, 0x10, 0xf7, 0xe3,
7929 0xec, 0x04, 0xf9, 0x7e, 0xd4, 0x0a, 0x82, 0xf7, 0xed, 0xd1, 0xfb, 0x77,
7930 0xa7, 0xef, 0xbe, 0x3e, 0xb0, 0x3d, 0x95, 0x48, 0x30, 0x9a, 0x7e, 0x1a,
7931 0x8d, 0x16, 0xe8, 0xd4, 0x0c, 0x91, 0xb8, 0x27, 0x9e, 0x4e, 0x5b, 0xbb,
7932 0x78, 0x46, 0x3d, 0x16, 0xe0, 0x1c, 0x82, 0x28, 0x12, 0x8e, 0x0b, 0xb3,
7933 0x27, 0x43, 0x2b, 0x34, 0x05, 0xf3, 0x81, 0x08, 0x52, 0xe5, 0xe8, 0xb3,
7934 0x08, 0xc0, 0x3d, 0xf5, 0xce, 0xba, 0xa8, 0x9a, 0x63, 0xf5, 0x93, 0xa3,
7935 0x21, 0x23, 0x43, 0x4f, 0x89, 0x71, 0x72, 0x97, 0x77, 0xb8, 0xc1, 0x12,
7936 0x95, 0xb4, 0x20, 0x2e, 0x2f, 0xfa, 0x4b, 0x03, 0x39, 0x34, 0x25, 0xdf,
7937 0x22, 0x64, 0x74, 0x72, 0x3b, 0xd1, 0xa9, 0xf4, 0x7b, 0xc7, 0x24, 0x0c,
7938 0x74, 0xf2, 0xa5, 0x9c, 0x86, 0x65, 0xe9, 0x61, 0x7c, 0x2a, 0x01, 0x1f,
7939 0xa2, 0x74, 0x84, 0x8c, 0x17, 0x7c, 0xd4, 0x18, 0xb1, 0x5a, 0x7e, 0x6a,
7940 0x4b, 0x40, 0x0d, 0x09, 0x96, 0x47, 0x35, 0x39, 0x1d, 0x44, 0xb3, 0x5b,
7941 0x1a, 0xd5, 0x55, 0x94, 0x7d, 0x61, 0xa5, 0x1a, 0xa5, 0xc6, 0xdf, 0x84,
7942 0x51, 0xcc, 0xa6, 0x89, 0x2d, 0x7f, 0x5e, 0xcd, 0xb5, 0x48, 0x32, 0xfa,
7943 0x35, 0x1a, 0xf1, 0xbd, 0x77, 0x20, 0x19, 0x0e, 0xa2, 0xff, 0xca, 0x93,
7944 0x15, 0x3c, 0x84, 0xf0, 0xfa, 0x07, 0xd0, 0x7c, 0x7a, 0x47, 0x57, 0x24,
7945 0xf2, 0xee, 0x93, 0xb2, 0x07, 0xcf, 0xc7, 0x65, 0xb2, 0x09, 0xc6, 0xea,
7946 0xd6, 0x6a, 0x03, 0xf1, 0xf5, 0xb5, 0x9a, 0xa2, 0x78, 0xa4, 0x25, 0x1c,
7947 0xbd, 0xf8, 0x2a, 0xd1, 0xba, 0x8e, 0x84, 0x7d, 0x8c, 0x88, 0x38, 0xe5,
7948 0x96, 0x76, 0x5c, 0xb3, 0x82, 0x38, 0x9d, 0x47, 0x87, 0x68, 0x28, 0x5d,
7949 0xe5, 0xc5, 0xfd, 0x17, 0x1e, 0x36, 0x3d, 0x16, 0xfd, 0xe1, 0x33, 0xc2,
7950 0x79, 0x98, 0xd5, 0x40, 0xfa, 0x8b, 0x2d, 0xe9, 0x11, 0x69, 0xef, 0x0c,
7951 0xd2, 0x8f, 0xb4, 0x51, 0x99, 0xd7, 0x09, 0x15, 0x91, 0x88, 0x18, 0xde,
7952 0x4e, 0xcb, 0xb1, 0x9c, 0xbc, 0x72, 0x56, 0xc3, 0x39, 0x51, 0x0b, 0x93,
7953 0xbd, 0xd2, 0x19, 0x9a, 0x66, 0x98, 0x80, 0x26, 0x1f, 0x0b, 0x80, 0x0b,
7954 0x18, 0x81, 0x5e, 0xf6, 0x23, 0x75, 0x10, 0x19, 0x19, 0xdf, 0x81, 0x89,
7955 0x76, 0xe8, 0x83, 0xf6, 0x7b, 0xce, 0x2d, 0xda, 0x34, 0x1d, 0xe4, 0xfb,
7956 0xb4, 0x3c, 0xd3, 0xfb, 0xcf, 0xa6, 0xd8, 0x04, 0xc6, 0xd7, 0x25, 0xd3,
7957 0x47, 0x5a, 0xfa, 0xb5, 0x87, 0x96, 0x48, 0x04, 0xe4, 0x77, 0x53, 0xa9,
7958 0x43, 0x84, 0x81, 0xd3, 0x42, 0x41, 0x1d, 0x57, 0x2e, 0x28, 0xa1, 0x6d,
7959 0x84, 0x51, 0xdb, 0x39, 0xc3, 0xb5, 0x1b, 0x6a, 0x56, 0x3f, 0x50, 0x7a,
7960 0xbe, 0x18, 0xce, 0xc6, 0xfb, 0xd1, 0x21, 0xfc, 0xe1, 0x19, 0x07, 0x54,
7961 0xc4, 0x33, 0x38, 0x06, 0x03, 0x01, 0xc5, 0x3d, 0x2a, 0x3a, 0x5c, 0x4c,
7962 0xe8, 0x34, 0xbe, 0xdf, 0xdd, 0x01, 0x16, 0xb9, 0x8b, 0xb5, 0xc3, 0x07,
7963 0xac, 0xf2, 0x2a, 0xad, 0x18, 0x54, 0xda, 0x8b, 0xb6, 0xf3, 0xcb, 0xae,
7964 0x9b, 0x16, 0x29, 0xba, 0xbd, 0xf3, 0x22, 0xc2, 0x12, 0xdc, 0xb7, 0xaf,
7965 0xf6, 0x41, 0x62, 0x27, 0xa3, 0x4f, 0xe5, 0x62, 0xa6, 0x8c, 0xc5, 0x15,
7966 0x30, 0x24, 0xa2, 0x3c, 0x08, 0x33, 0x98, 0xf8, 0x34, 0x1d, 0x21, 0xe8,
7967 0x45, 0xb7, 0x96, 0xd3, 0x31, 0xd1, 0x9c, 0x0e, 0xc7, 0x79, 0x65, 0xd4,
7968 0x1d, 0x4a, 0x24, 0xe4, 0x34, 0xdd, 0x40, 0xb4, 0x1d, 0x68, 0x00, 0x1f,
7969 0x47, 0x97, 0x1f, 0x98, 0xb5, 0x2b, 0x6f, 0x83, 0x25, 0x66, 0xb2, 0x3f,
7970 0xda, 0x1e, 0xed, 0xbd, 0xdc, 0xda, 0xd9, 0x7a, 0xb6, 0xb7, 0x15, 0xef,
7971 0xc7, 0xc3, 0xad, 0xc9, 0xce, 0xd6, 0xee, 0xde, 0x8b, 0xfd, 0xbd, 0xd1,
7972 0xee, 0xce, 0x76, 0xfc, 0x22, 0x2a, 0x57, 0xca, 0x9c, 0x90, 0x91, 0xcb,
7973 0xeb, 0x78, 0x67, 0xff, 0x59, 0x60, 0xff, 0xf8, 0x17, 0xd1, 0x21, 0xff,
7974 0xf7, 0x29, 0xbb, 0x18, 0x47, 0x5f, 0x51, 0x45, 0x6d, 0x4f, 0xcb, 0xbe,
7975 0x07, 0x6f, 0x8e, 0x70, 0x48, 0x30, 0xaa, 0xae, 0x7d, 0xdf, 0x8d, 0xb7,
7976 0x33, 0xce, 0x5e, 0xf4, 0xa3, 0xe3, 0xe5, 0x7b, 0xd1, 0xa6, 0x88, 0x3a,
7977 0x3b, 0xc3, 0xff, 0x86, 0x4f, 0x27, 0xbf, 0x6c, 0x2b, 0x84, 0x2e, 0xef,
7978 0x5e, 0x7d, 0xf3, 0xe9, 0xed, 0xe5, 0x5f, 0xef, 0xde, 0x7e, 0xfd, 0xd7,
7979 0xed, 0xf3, 0x57, 0xe3, 0xd9, 0xdb, 0x9f, 0xfe, 0xba, 0xfb, 0xf6, 0xa7,
7980 0xd1, 0xcf, 0x7f, 0xfb, 0xe9, 0xe8, 0xfe, 0xfc, 0xf2, 0x6f, 0xfb, 0x6f,
7981 0x67, 0xef, 0x3f, 0xbd, 0xfd, 0xe9, 0x9b, 0xd9, 0xbb, 0x57, 0x7f, 0xfd,
7982 0xfc, 0x69, 0x3b, 0x03, 0x7b, 0x5e, 0xc7, 0xb0, 0xdd, 0x6a, 0x78, 0xd7,
7983 0x50, 0x70, 0x1e, 0x1a, 0x6c, 0xc7, 0xa0, 0x11, 0x4e, 0xa0, 0xd4, 0xee,
7984 0x7d, 0xa8, 0xa0, 0x96, 0x6f, 0x06, 0x97, 0x36, 0x80, 0x6e, 0xe2, 0xe4,
7985 0x2a, 0x8f, 0x26, 0x3e, 0x10, 0x23, 0x69, 0xb5, 0x73, 0x50, 0xb3, 0xd8,
7986 0x21, 0x85, 0x49, 0xf7, 0x77, 0x9c, 0x90, 0xc6, 0x63, 0x61, 0xab, 0xa7,
7987 0x44, 0x7c, 0x20, 0x64, 0x3e, 0x28, 0x3e, 0x9c, 0x04, 0x06, 0x9b, 0x21,
7988 0x78, 0xd2, 0x63, 0x08, 0x50, 0x02, 0x49, 0xe2, 0xb6, 0x9f, 0x11, 0x70,
7989 0x43, 0x1a, 0xcf, 0x68, 0x48, 0xdc, 0xcc, 0x31, 0x5f, 0x3a, 0x3b, 0x72,
7990 0x01, 0x0b, 0x06, 0x91, 0x29, 0xd3, 0x65, 0xe7, 0x4a, 0xc0, 0x8d, 0xaa,
7991 0x5d, 0x11, 0xe3, 0xa8, 0xd3, 0x71, 0x10, 0x32, 0xd7, 0x7f, 0x4e, 0x8a,
7992 0x5c, 0x2a, 0xe2, 0x37, 0x68, 0xa5, 0x37, 0x79, 0x3a, 0x8e, 0x04, 0x01,
7993 0x74, 0x53, 0x61, 0xaf, 0xbd, 0xab, 0xc3, 0x2a, 0x91, 0x84, 0x4a, 0x89,
7994 0x98, 0xd7, 0x30, 0x24, 0x91, 0xc6, 0x40, 0x32, 0x3e, 0x2e, 0x02, 0x1b,
7995 0xf2, 0x0e, 0x5b, 0x51, 0x44, 0xbe, 0x4b, 0x0d, 0x53, 0x35, 0xcd, 0x69,
7996 0xca, 0x2c, 0x95, 0x5a, 0x52, 0x46, 0x28, 0x55, 0x07, 0x57, 0xd0, 0xb5,
7997 0x4c, 0x0c, 0xc0, 0x2b, 0x5a, 0xf9, 0x30, 0x20, 0xf3, 0xd1, 0x1e, 0x3d,
7998 0xa1, 0x1d, 0x16, 0x39, 0x19, 0xeb, 0xfd, 0x08, 0xf6, 0x1a, 0xbc, 0x0d,
7999 0xe3, 0x6d, 0xf5, 0x5f, 0xb6, 0xb4, 0x2a, 0xab, 0xe1, 0x5e, 0x23, 0x44,
8000 0x49, 0x9a, 0x09, 0x6e, 0x2a, 0x69, 0xfc, 0xe8, 0x1f, 0x44, 0x62, 0x22,
8001 0xd4, 0xb7, 0x66, 0xfd, 0x79, 0xeb, 0xc3, 0x27, 0x37, 0xf1, 0x89, 0xb4,
8002 0x74, 0xb8, 0x10, 0xdb, 0x8c, 0x90, 0x9a, 0x47, 0x12, 0xc3, 0xa4, 0x0c,
8003 0x6a, 0x4b, 0x39, 0xee, 0x74, 0x12, 0x4a, 0x6e, 0x77, 0xb2, 0x8e, 0x35,
8004 0xec, 0x25, 0x42, 0x88, 0xab, 0x45, 0x31, 0x9d, 0xc4, 0xc1, 0x66, 0x54,
8005 0x10, 0x21, 0xdc, 0x0c, 0x42, 0x48, 0xf5, 0x6c, 0x55, 0xf9, 0x72, 0x69,
8006 0xd3, 0xfc, 0x18, 0xeb, 0x9d, 0xfb, 0xc5, 0xd0, 0x59, 0xc1, 0x6e, 0x62,
8007 0x1c, 0x83, 0xc8, 0x6f, 0xb3, 0xab, 0x02, 0x23, 0x4a, 0x3d, 0x64, 0xff,
8008 0x38, 0x94, 0x20, 0x14, 0x3a, 0x01, 0x6e, 0x0a, 0xe1, 0xb3, 0x67, 0xfd,
8009 0xad, 0x6e, 0x8d, 0x2a, 0x12, 0x39, 0x5c, 0x9a, 0x41, 0xf8, 0x10, 0x97,
8010 0xf0, 0x36, 0xae, 0xc8, 0x1e, 0xf8, 0xf4, 0x76, 0x7f, 0xbb, 0x2b, 0x7f,
8011 0xdd, 0x11, 0xa7, 0x24, 0xfe, 0x7d, 0xb7, 0xee, 0x5f, 0xae, 0x73, 0xcd,
8012 0x56, 0xd7, 0xbc, 0xbc, 0xb5, 0x14, 0x32, 0xdd, 0xf0, 0x0e, 0x5e, 0x24,
8013 0x35, 0x96, 0x81, 0x37, 0xfd, 0xc6, 0xd0, 0xa9, 0x77, 0xd0, 0x1c, 0x9f,
8014 0x17, 0xe7, 0x1b, 0x20, 0xf2, 0xaa, 0x3b, 0xd0, 0x53, 0x08, 0x85, 0xdf,
8015 0x5e, 0xa9, 0xd9, 0xbb, 0x43, 0x60, 0xe6, 0x50, 0x43, 0x3a, 0x53, 0xe2,
8016 0x67, 0xe4, 0x8a, 0x45, 0x5e, 0xf0, 0x32, 0x70, 0xe4, 0x1d, 0x87, 0xca,
8017 0x2e, 0xc5, 0x77, 0x10, 0x4f, 0x23, 0x2f, 0x7a, 0xe8, 0xc6, 0x03, 0x66,
8018 0xb8, 0x4a, 0x6a, 0xbb, 0xd1, 0x38, 0xb2, 0x30, 0xcc, 0x63, 0x8e, 0x6c,
8019 0x80, 0xec, 0xdb, 0x4f, 0xa3, 0xd8, 0xf6, 0x6a, 0x14, 0xab, 0xb1, 0x88,
8020 0xb3, 0x10, 0x20, 0x61, 0xbd, 0x8e, 0xc8, 0xc1, 0xa9, 0xd8, 0xea, 0xb6,
8021 0x50, 0x6c, 0xeb, 0xd1, 0x14, 0x73, 0x77, 0x67, 0xd7, 0xbb, 0x09, 0x1d,
8022 0x9f, 0xc8, 0xae, 0x2f, 0x05, 0xbd, 0xd1, 0x1e, 0xc1, 0xd9, 0xe4, 0xf5,
8023 0x4d, 0xcb, 0x12, 0x71, 0xe8, 0x29, 0xf7, 0x19, 0xa5, 0x0f, 0x66, 0xcc,
8024 0xb9, 0x0e, 0x91, 0x32, 0x88, 0x4d, 0x40, 0x02, 0x60, 0xc7, 0x38, 0x4d,
8025 0xe9, 0x9f, 0x48, 0xe6, 0x0f, 0x73, 0x12, 0x30, 0x68, 0xb2, 0x54, 0x26,
8026 0x9b, 0x9d, 0xcc, 0x2e, 0xac, 0x93, 0x8f, 0xda, 0x66, 0xc7, 0x40, 0x39,
8027 0x8c, 0x38, 0x2e, 0xc8, 0x09, 0x82, 0xc2, 0x55, 0xea, 0xa7, 0x4a, 0x04,
8028 0x38, 0x43, 0x5f, 0x6c, 0x7c, 0x1b, 0x83, 0xa2, 0xc7, 0x5d, 0xdd, 0x75,
8029 0x8e, 0xa1, 0xc6, 0x7d, 0x2c, 0x35, 0xc7, 0xb9, 0x0e, 0x50, 0x2b, 0xdd,
8030 0x87, 0x31, 0xc4, 0xd1, 0x92, 0x81, 0x2d, 0x44, 0x19, 0xb0, 0xe3, 0x28,
8031 0x6a, 0x09, 0x40, 0x2a, 0xfb, 0x89, 0xaf, 0xad, 0xd1, 0x92, 0x63, 0x75,
8032 0x7e, 0xf4, 0x77, 0xfe, 0x29, 0xe7, 0xb9, 0x21, 0xef, 0xda, 0x86, 0xd6,
8033 0x3d, 0x08, 0x51, 0x9c, 0xda, 0x76, 0x67, 0x78, 0x8d, 0xdd, 0x33, 0xca,
8034 0x0f, 0x07, 0xbd, 0xd1, 0x6e, 0xc5, 0x46, 0xc2, 0xe4, 0xcd, 0xb1, 0x70,
8035 0x68, 0x4c, 0xc7, 0x70, 0x19, 0xb8, 0xca, 0x0f, 0x7b, 0x20, 0x9c, 0xb3,
8036 0x27, 0x7c, 0xdd, 0x72, 0xa8, 0x76, 0x02, 0x5a, 0x52, 0x48, 0x8a, 0xef,
8037 0xbd, 0x0c, 0x70, 0xfd, 0x93, 0xc4, 0xc8, 0x4e, 0x10, 0x48, 0x9e, 0x38,
8038 0xaa, 0xeb, 0x96, 0xd0, 0xdb, 0xeb, 0xd4, 0x29, 0x55, 0x32, 0xfc, 0x62,
8039 0x0e, 0x81, 0x5f, 0x48, 0xe0, 0x73, 0x89, 0x53, 0xf0, 0x4d, 0x1f, 0x58,
8040 0x72, 0x57, 0xea, 0x5c, 0x1e, 0x9e, 0xca, 0x82, 0x0f, 0x5b, 0x2d, 0x4a,
8041 0xe6, 0xd5, 0xe2, 0xca, 0x24, 0x2d, 0x12, 0xbf, 0x1c, 0xd1, 0x03, 0xf3,
8042 0x4a, 0x4b, 0x24, 0xd8, 0xf6, 0x71, 0xa4, 0x88, 0xa8, 0x8c, 0x43, 0x80,
8043 0x26, 0x42, 0xaa, 0xb4, 0x72, 0xfa, 0xd3, 0x71, 0xa6, 0x15, 0xde, 0x8a,
8044 0x29, 0xd7, 0xe4, 0x36, 0xdd, 0x6d, 0x40, 0x8f, 0xed, 0xfe, 0x0e, 0x3a,
8045 0xde, 0xa5, 0x8e, 0x89, 0x1c, 0x95, 0x28, 0x3f, 0xae, 0xae, 0x4d, 0x06,
8046 0x8a, 0x70, 0xeb, 0xd8, 0xb4, 0x69, 0x55, 0xe8, 0xb8, 0x50, 0xa6, 0x0c,
8047 0x96, 0x40, 0x11, 0x06, 0x89, 0xe2, 0x71, 0x12, 0xc1, 0x74, 0x97, 0x65,
8048 0x28, 0x13, 0xdc, 0xc1, 0x78, 0xe5, 0xb4, 0xbc, 0x81, 0x39, 0x3c, 0xe9,
8049 0xcc, 0x3e, 0x4d, 0x39, 0x09, 0x9e, 0x51, 0x2b, 0x17, 0xeb, 0xa7, 0xd0,
8050 0x53, 0xc7, 0xda, 0x4f, 0xa5, 0x1e, 0x4a, 0x3d, 0x93, 0xc1, 0x4b, 0x69,
8051 0xe9, 0x15, 0x4e, 0xe7, 0xd1, 0x39, 0x90, 0xee, 0xe5, 0x13, 0xbe, 0x9a,
8052 0x1e, 0x71, 0x46, 0x43, 0x37, 0xd3, 0x6e, 0xcb, 0x4d, 0x64, 0xfc, 0xdf,
8053 0xcd, 0x82, 0x94, 0xbb, 0x79, 0x52, 0xa4, 0x33, 0x6a, 0xf8, 0xd1, 0x8f,
8054 0x5e, 0xd9, 0x92, 0x1e, 0x6a, 0x32, 0xe2, 0x85, 0xcb, 0xc6, 0x8b, 0x70,
8055 0xe1, 0xcb, 0x03, 0x32, 0x60, 0x57, 0x4a, 0xa6, 0x6c, 0xcd, 0x04, 0xf9,
8056 0x00, 0x6c, 0xf5, 0x6c, 0xd3, 0x72, 0xe4, 0xc8, 0xb1, 0x26, 0xe6, 0x4a,
8057 0xfe, 0x2c, 0x72, 0xa0, 0x24, 0x07, 0xd2, 0x4e, 0xec, 0xba, 0x79, 0xf5,
8058 0xc6, 0x86, 0x42, 0xf4, 0x0c, 0x3f, 0xde, 0x1a, 0xf3, 0x17, 0x15, 0xd8,
8059 0x81, 0xf4, 0x7b, 0xf5, 0x56, 0xc3, 0x47, 0x6e, 0xd2, 0x38, 0x3a, 0x9a,
8060 0x56, 0xbd, 0xc1, 0xcd, 0x88, 0x53, 0x5f, 0x6b, 0x16, 0xa0, 0xd7, 0x44,
8061 0x8c, 0x33, 0xd5, 0x63, 0xc6, 0x00, 0xa2, 0xac, 0x3a, 0x6a, 0x34, 0x47,
8062 0xdd, 0xc2, 0xd8, 0xce, 0xd6, 0x4c, 0x4c, 0xdc, 0x54, 0xcb, 0x78, 0x0c,
8063 0x34, 0xe1, 0x75, 0x53, 0x4e, 0xe2, 0x4f, 0xa5, 0x2e, 0x49, 0x22, 0xa1,
8064 0x8c, 0x3d, 0x62, 0xe6, 0xcc, 0xc9, 0x2b, 0x4b, 0x82, 0x5f, 0x8d, 0x98,
8065 0x09, 0xb7, 0x86, 0x44, 0x98, 0xea, 0xbf, 0x7e, 0x38, 0x3d, 0x76, 0xfd,
8066 0x63, 0x9a, 0x3c, 0xe7, 0xbb, 0xf9, 0x9d, 0x74, 0x35, 0xee, 0xb6, 0x26,
8067 0x4f, 0x4e, 0xd0, 0x78, 0xd5, 0x82, 0x6b, 0x2d, 0x91, 0xac, 0x6d, 0x6f,
8068 0x9e, 0x05, 0xd4, 0x71, 0x30, 0x7f, 0x9e, 0x72, 0xf4, 0x77, 0x7f, 0xf1,
8069 0xd1, 0xdf, 0xe9, 0x9b, 0xa1, 0x7e, 0xe5, 0xa3, 0xbf, 0xfb, 0x94, 0xa3,
8070 0xbf, 0xf4, 0x26, 0x0e, 0x89, 0x80, 0xe6, 0xec, 0x50, 0x24, 0xd4, 0x2d,
8071 0xac, 0x7a, 0x9f, 0xc0, 0x1e, 0x43, 0xe9, 0xf6, 0xc4, 0xff, 0xd0, 0x63,
8072 0x37, 0x49, 0x10, 0xc1, 0x49, 0x84, 0x81, 0xbd, 0xf4, 0x4e, 0xb9, 0x23,
8073 0xaf, 0xdb, 0x33, 0xe6, 0x8c, 0x71, 0x07, 0xe5, 0x9e, 0xd2, 0x5c, 0xad,
8074 0x00, 0x1e, 0x69, 0x3a, 0xc2, 0x0e, 0x12, 0x36, 0x59, 0x8a, 0xfc, 0x16,
8075 0x62, 0x48, 0x17, 0x0b, 0x4a, 0x06, 0x8b, 0x8e, 0xe6, 0xe4, 0x31, 0xda,
8076 0xee, 0xdf, 0x75, 0x23, 0x8d, 0xbb, 0x06, 0x7c, 0xf2, 0x45, 0xc2, 0x4a,
8077 0x0f, 0xd8, 0xbe, 0x02, 0xed, 0xd0, 0x9c, 0x0e, 0x8d, 0xce, 0xde, 0x93,
8078 0x29, 0x1e, 0xa2, 0x82, 0xc3, 0x5b, 0x3b, 0x70, 0x50, 0xae, 0xbc, 0xeb,
8079 0x6a, 0x78, 0x5f, 0x05, 0xc0, 0x9a, 0x70, 0xd5, 0x48, 0x85, 0x75, 0x36,
8080 0xdf, 0x41, 0xc7, 0x01, 0x3a, 0x6e, 0x74, 0x23, 0xac, 0x73, 0x23, 0x0a,
8081 0x20, 0xd0, 0x8d, 0x49, 0x54, 0xa2, 0x6e, 0xf7, 0x57, 0x18, 0x78, 0xcf,
8082 0x59, 0x1c, 0x78, 0x3e, 0x6e, 0x4c, 0x17, 0x92, 0x62, 0x54, 0x2d, 0xf5,
8083 0x94, 0xfe, 0x6a, 0xc1, 0x16, 0x26, 0x35, 0x8f, 0x92, 0xb9, 0xc9, 0x31,
8084 0x2b, 0x92, 0xd6, 0x46, 0x07, 0x0a, 0x4e, 0x6c, 0x90, 0x0b, 0x17, 0x5e,
8085 0x3f, 0xd2, 0xeb, 0xfb, 0xf9, 0xea, 0xf9, 0x64, 0x41, 0x46, 0x59, 0xb5,
8086 0x11, 0x5f, 0xa3, 0x32, 0xd0, 0x61, 0xc4, 0x14, 0x19, 0x5d, 0xf2, 0x89,
8087 0x9a, 0x3e, 0x35, 0xc9, 0x32, 0x32, 0x7d, 0x56, 0x6d, 0x57, 0x6f, 0x09,
8088 0x3f, 0x8a, 0x98, 0xe7, 0x8e, 0x8a, 0x7d, 0x01, 0xbc, 0xd6, 0x96, 0xac,
8089 0xe1, 0x06, 0xf4, 0x4e, 0xec, 0x92, 0x3c, 0x3d, 0x9a, 0xca, 0xa4, 0x79,
8090 0x03, 0x14, 0x78, 0x15, 0x0b, 0x07, 0xdd, 0x88, 0x5d, 0xd8, 0xdc, 0xfc,
8091 0x53, 0x9a, 0x78, 0xc8, 0x74, 0x63, 0xea, 0x6f, 0xcd, 0x5e, 0x56, 0xdb,
8092 0x70, 0xb2, 0x26, 0xe2, 0xb4, 0x4b, 0x64, 0xbf, 0xdf, 0x0f, 0xa0, 0x18,
8093 0xdf, 0xa4, 0xc9, 0x6d, 0x4d, 0x31, 0x94, 0x89, 0x75, 0x19, 0xf3, 0x76,
8094 0x2c, 0x2d, 0xb4, 0x6c, 0x46, 0x57, 0x0b, 0x28, 0xcb, 0xf2, 0xfd, 0x4b,
8095 0x57, 0xdb, 0xaa, 0x96, 0x50, 0xd0, 0x27, 0xde, 0xa5, 0x32, 0x84, 0xa9,
8096 0x87, 0x1d, 0x13, 0x23, 0x1b, 0x44, 0xb0, 0x9d, 0xe1, 0xbb, 0xa8, 0x3f,
8097 0x16, 0xf7, 0x5a, 0x9c, 0xe5, 0xdc, 0x27, 0x34, 0x35, 0x46, 0xf8, 0xf0,
8098 0xa4, 0x04, 0xb5, 0x32, 0x4c, 0xa9, 0xbd, 0x15, 0xb7, 0x6b, 0xe6, 0xb7,
8099 0x43, 0xed, 0x59, 0x2a, 0x1a, 0x81, 0x22, 0xbe, 0x46, 0xc8, 0x06, 0xf3,
8100 0xb5, 0x1d, 0x30, 0x11, 0x73, 0x70, 0xf9, 0x3b, 0x92, 0xab, 0x57, 0x56,
8101 0xc9, 0x5c, 0x14, 0x8b, 0x22, 0x1f, 0x61, 0xca, 0x84, 0x1a, 0xce, 0x5e,
8102 0xa3, 0xb6, 0x64, 0xf4, 0x29, 0x98, 0x2b, 0x40, 0xb1, 0xfa, 0xba, 0x9e,
8103 0x24, 0x6a, 0x11, 0x7b, 0x67, 0x4d, 0xdf, 0x2b, 0x51, 0xf4, 0x81, 0x6a,
8104 0xe2, 0x0d, 0xc6, 0x99, 0xf4, 0xfc, 0xf6, 0x46, 0x65, 0xbd, 0x97, 0x23,
8105 0xf5, 0x8a, 0xb4, 0xe0, 0x80, 0x4a, 0x10, 0x41, 0xe9, 0x4f, 0x33, 0x60,
8106 0xa1, 0x03, 0x6b, 0xa5, 0x37, 0xa7, 0xed, 0xbc, 0x68, 0x5b, 0x3b, 0xd8,
8107 0xec, 0x29, 0x6e, 0x29, 0x25, 0x9d, 0x72, 0xb9, 0x6c, 0xc4, 0x28, 0x5c,
8108 0x01, 0x5c, 0x8d, 0x86, 0x8e, 0x25, 0x1a, 0x92, 0xdc, 0x96, 0xee, 0xb7,
8109 0x8c, 0xf3, 0x1e, 0x71, 0xab, 0x15, 0x79, 0xfa, 0xf8, 0x68, 0xc9, 0xec,
8110 0xe6, 0xd4, 0xa3, 0xa8, 0xd2, 0xd1, 0xf1, 0x57, 0x11, 0x76, 0x2e, 0x41,
8111 0x87, 0x05, 0xb2, 0x29, 0x93, 0x98, 0x31, 0x9f, 0xe1, 0xd1, 0x7c, 0x51,
8112 0x78, 0x68, 0x27, 0x24, 0xf5, 0x05, 0xcf, 0x55, 0x20, 0x5c, 0xbd, 0xc3,
8113 0xa1, 0x87, 0x02, 0x37, 0xa0, 0x5f, 0x26, 0x9b, 0x70, 0x82, 0xcb, 0xcd,
8114 0xb2, 0x9c, 0xe2, 0xf7, 0x4a, 0xea, 0x2e, 0x12, 0xec, 0x64, 0xf6, 0x5a,
8115 0x5a, 0xfb, 0x00, 0xa7, 0x77, 0x6b, 0xbb, 0xed, 0x70, 0x18, 0xb3, 0x18,
8116 0xbb, 0x4a, 0xa8, 0xb5, 0xd0, 0x47, 0x4a, 0xad, 0x08, 0xb2, 0xb9, 0xa6,
8117 0x6e, 0xd4, 0x9e, 0x14, 0x0c, 0x78, 0xed, 0xbb, 0x65, 0x12, 0xf9, 0x88,
8118 0x0c, 0x4a, 0x77, 0x7f, 0x47, 0x90, 0x49, 0xae, 0x31, 0x29, 0xda, 0x22,
8119 0x0d, 0x08, 0x11, 0xfb, 0x65, 0x79, 0x8d, 0x8d, 0x96, 0xcc, 0x2f, 0xec,
8120 0xbd, 0xda, 0xd2, 0xe1, 0xc1, 0x6c, 0xbc, 0x1b, 0x80, 0xb6, 0x51, 0xbc,
8121 0xb2, 0x3d, 0x55, 0xc6, 0xc7, 0xa1, 0x62, 0xd2, 0xd4, 0x6b, 0x28, 0x45,
8122 0x92, 0xac, 0x7c, 0x17, 0xc9, 0x7b, 0xab, 0x47, 0x29, 0xee, 0xee, 0xcd,
8123 0xcb, 0x54, 0x5c, 0x13, 0x13, 0x63, 0x49, 0x22, 0x7c, 0x8c, 0xc8, 0x73,
8124 0x35, 0xe5, 0x48, 0xb1, 0x70, 0xb8, 0x07, 0x60, 0x33, 0x20, 0x77, 0xc1,
8125 0x8d, 0x51, 0x09, 0xb0, 0xca, 0xc5, 0xaf, 0xe4, 0x9b, 0xdc, 0x16, 0xab,
8126 0x98, 0x61, 0x6c, 0xdf, 0x76, 0x6c, 0x85, 0x5a, 0xb4, 0xa1, 0xf6, 0xc8,
8127 0x85, 0xe3, 0xe4, 0xa0, 0xa3, 0x29, 0xae, 0x5b, 0x01, 0xea, 0x5c, 0x66,
8128 0xbb, 0x02, 0x8c, 0x38, 0x48, 0x3e, 0x85, 0xcb, 0x29, 0xd0, 0xaf, 0xa2,
8129 0x0d, 0x71, 0xd9, 0x59, 0x19, 0xe2, 0x79, 0x1c, 0x58, 0xaf, 0xeb, 0xed,
8130 0xed, 0x6d, 0x7f, 0x59, 0x54, 0xf3, 0x17, 0xd7, 0x3e, 0xd4, 0x87, 0x3b,
8131 0x87, 0xab, 0xf7, 0x0c, 0x84, 0xd6, 0x5d, 0xe4, 0x00, 0xd4, 0x0b, 0x54,
8132 0x99, 0xcd, 0x07, 0x8e, 0xbe, 0x79, 0xff, 0xba, 0x6b, 0x22, 0x5f, 0x52,
8133 0x53, 0x8a, 0x19, 0x6d, 0xa5, 0x6f, 0xac, 0x25, 0x29, 0x37, 0x0d, 0xc0,
8134 0xc6, 0x98, 0xc7, 0x47, 0x17, 0x1f, 0xdf, 0x9d, 0x5c, 0x7e, 0x7c, 0x7f,
8135 0xf4, 0x2d, 0x92, 0x90, 0x2f, 0x12, 0x50, 0x2f, 0x31, 0x11, 0xb1, 0xc8,
8136 0x73, 0x54, 0x15, 0xde, 0x52, 0xf8, 0x27, 0xcd, 0x08, 0x1f, 0x3e, 0x5c,
8137 0xe4, 0x23, 0x0d, 0x2f, 0x74, 0x9e, 0x30, 0x97, 0x83, 0xa8, 0x46, 0xaf,
8138 0x4f, 0x49, 0x91, 0x25, 0xd3, 0x7e, 0x5e, 0x5c, 0xa1, 0xfc, 0xd8, 0x7c,
8139 0x25, 0x5a, 0x40, 0x70, 0xb8, 0x4d, 0xa9, 0x66, 0xc1, 0xd0, 0xe3, 0x4d,
8140 0x31, 0xc1, 0x58, 0xdb, 0xca, 0xcc, 0xef, 0x6e, 0xdd, 0x8a, 0x47, 0x60,
8141 0x9c, 0x95, 0x76, 0x00, 0x87, 0xd5, 0xf7, 0xe8, 0x62, 0x9f, 0xdf, 0xec,
8142 0x2d, 0x31, 0x13, 0xab, 0x9a, 0x9d, 0x8e, 0x42, 0x77, 0x7a, 0x93, 0x88,
8143 0x74, 0x80, 0x1f, 0xb8, 0x45, 0x4f, 0xe8, 0x55, 0xc4, 0x54, 0xcc, 0x6e,
8144 0x00, 0x78, 0x99, 0xcc, 0xc2, 0xdc, 0x40, 0x6c, 0x13, 0x8a, 0x1a, 0xd6,
8145 0x6b, 0xad, 0x2c, 0x04, 0x60, 0xb6, 0x4f, 0x72, 0xc7, 0x3a, 0x8e, 0x4e,
8146 0xb5, 0xf9, 0x1a, 0x1a, 0xb6, 0x13, 0x2c, 0x78, 0xe6, 0x07, 0x0b, 0xe0,
8147 0xc3, 0x6e, 0x7a, 0xc5, 0x33, 0x21, 0xdd, 0xb3, 0x5f, 0x44, 0xba, 0x67,
8148 0xbf, 0x80, 0x74, 0x7b, 0x4f, 0x20, 0xdd, 0xb3, 0xdf, 0x9e, 0x74, 0x7b,
8149 0x41, 0xd2, 0xed, 0xb9, 0x02, 0xf6, 0xa7, 0x12, 0xde, 0x09, 0x23, 0x7e,
8150 0xdb, 0x52, 0xa2, 0xb2, 0x51, 0xfb, 0xf7, 0x5f, 0x83, 0xf3, 0x77, 0x82,
8151 0xce, 0x8d, 0x05, 0x7a, 0x54, 0x58, 0x6d, 0x94, 0x67, 0xc5, 0xcd, 0x0f,
8152 0x25, 0x8e, 0x9a, 0x82, 0x03, 0xfd, 0xb2, 0x00, 0x31, 0x71, 0x5e, 0x72,
8153 0x79, 0x0d, 0x66, 0xe4, 0x68, 0xc1, 0x14, 0x9e, 0x4b, 0xde, 0x2a, 0x7b,
8154 0x54, 0x4a, 0x3f, 0x0a, 0x52, 0x24, 0xaa, 0x88, 0x07, 0x1a, 0xae, 0x48,
8155 0xf5, 0xee, 0xf7, 0x60, 0x6c, 0xfe, 0xe8, 0xff, 0x4e, 0x52, 0x31, 0x3b,
8156 0x6e, 0xbf, 0xb4, 0x03, 0x6e, 0xc1, 0xc4, 0x7a, 0xc0, 0x26, 0x4e, 0xae,
8157 0xd3, 0xfe, 0xe2, 0xd1, 0x08, 0x1b, 0x14, 0x87, 0x5e, 0xf1, 0x0b, 0x02,
8158 0x8b, 0x84, 0x35, 0xd0, 0xba, 0x9e, 0x6b, 0x94, 0x34, 0x5c, 0x27, 0xeb,
8159 0x12, 0x0a, 0x77, 0x1e, 0x8f, 0x2a, 0xec, 0x66, 0x42, 0x54, 0xf6, 0xda,
8160 0x13, 0x39, 0xbd, 0x7f, 0x4d, 0x2f, 0x15, 0xb1, 0xba, 0x83, 0xa9, 0x10,
8161 0x0c, 0x9f, 0xc5, 0x35, 0x9c, 0x95, 0xad, 0xba, 0x97, 0x5c, 0x1e, 0x2e,
8162 0x12, 0x8e, 0xbe, 0xec, 0x8a, 0xf9, 0x53, 0xba, 0x40, 0xb6, 0x71, 0xa8,
8163 0xcc, 0x86, 0xf4, 0x53, 0xed, 0xe2, 0x69, 0x06, 0xc4, 0x2c, 0x09, 0x6a,
8164 0x08, 0x6e, 0xe0, 0x7b, 0xe1, 0xe7, 0xa0, 0xea, 0x44, 0xeb, 0xbd, 0x0d,
8165 0x6e, 0xa5, 0xe2, 0x87, 0xf7, 0x09, 0xb4, 0xae, 0xde, 0x15, 0xb4, 0x36,
8166 0x9e, 0xe6, 0x56, 0x5f, 0xe4, 0x9c, 0x12, 0xe3, 0x76, 0xc2, 0x6c, 0x49,
8167 0x57, 0x19, 0x47, 0x6b, 0x93, 0x3c, 0x1f, 0xc6, 0xc5, 0x9a, 0x94, 0x5e,
8168 0x50, 0x3a, 0xbc, 0x78, 0x15, 0xd5, 0xb1, 0x4d, 0x7c, 0xf7, 0x25, 0x3f,
8169 0x17, 0x89, 0xaf, 0xa0, 0x0d, 0x09, 0xa0, 0x6d, 0x56, 0x5d, 0x72, 0x92,
8170 0xea, 0x58, 0xbd, 0xf6, 0x24, 0x94, 0xc6, 0x25, 0xad, 0x5d, 0x9e, 0x32,
8171 0xee, 0xf2, 0xa4, 0x80, 0xd9, 0xd4, 0xd6, 0x46, 0x3c, 0x17, 0xa8, 0x4f,
8172 0x77, 0x43, 0xad, 0x6a, 0xc6, 0xe3, 0x14, 0xc7, 0x8a, 0x05, 0x07, 0x62,
8173 0x9e, 0x26, 0xd8, 0xba, 0x48, 0xaf, 0x76, 0x50, 0x1f, 0x51, 0x6b, 0xe7,
8174 0x6a, 0x07, 0x6d, 0xae, 0xa5, 0x80, 0xa2, 0x4d, 0x07, 0x0b, 0x1b, 0x2c,
8175 0x52, 0x1f, 0xd4, 0x5f, 0xd6, 0xac, 0xaa, 0xbe, 0x8c, 0x92, 0x1a, 0x27,
8176 0x4b, 0xff, 0x1d, 0x11, 0x33, 0x0a, 0xb6, 0xa0, 0x67, 0x23, 0xf6, 0x31,
8177 0x0c, 0x80, 0x9b, 0x57, 0x06, 0x0f, 0x20, 0xca, 0xae, 0xfd, 0x23, 0xea,
8178 0x8c, 0x8b, 0x34, 0xfb, 0xd4, 0x39, 0x88, 0x3a, 0xa3, 0x7c, 0x32, 0x49,
8179 0x3a, 0xd1, 0x3f, 0xd7, 0x56, 0x80, 0x02, 0x68, 0x8e, 0xb2, 0x66, 0x7e,
8180 0xf6, 0x0b, 0xc6, 0xfb, 0x12, 0xc8, 0x8a, 0x79, 0x22, 0xe3, 0x95, 0x5f,
8181 0xec, 0x85, 0xde, 0x88, 0x0e, 0x23, 0xfc, 0x6d, 0x48, 0x0f, 0x71, 0xd5,
8182 0x06, 0x07, 0xcb, 0x43, 0x10, 0xda, 0xf0, 0x27, 0x45, 0x7c, 0xdb, 0x1a,
8183 0x65, 0x7f, 0xed, 0x4b, 0x7f, 0x52, 0x96, 0x1f, 0xd5, 0x1b, 0xa2, 0x96,
8184 0x25, 0xb7, 0x53, 0xf3, 0x58, 0xfe, 0x84, 0xcf, 0xfe, 0xb4, 0xc8, 0x3e,
8185 0xf5, 0xe0, 0xaa, 0x44, 0xf7, 0x4a, 0x4f, 0x1c, 0x33, 0xe1, 0x0b, 0xc4,
8186 0xc6, 0xc6, 0x28, 0x6d, 0x87, 0x7b, 0x72, 0x4a, 0x13, 0x60, 0x7a, 0x4d,
8187 0x0f, 0x35, 0x3b, 0xcd, 0x35, 0xdd, 0xad, 0x2d, 0x6c, 0x6a, 0x5d, 0xe5,
8188 0x18, 0x52, 0x4b, 0xcb, 0x11, 0x86, 0xa8, 0xd1, 0xc7, 0xdd, 0x91, 0xd9,
8189 0xe8, 0xb0, 0x1d, 0x21, 0x0c, 0x9f, 0x10, 0x4f, 0x15, 0x2c, 0x41, 0x12,
8190 0xa3, 0x2d, 0xc7, 0x7a, 0xaa, 0xc4, 0xd3, 0xa9, 0x1f, 0x80, 0xc0, 0x75,
8191 0x61, 0x8d, 0xd2, 0x44, 0xba, 0x3a, 0xe9, 0xd0, 0xa9, 0x34, 0x47, 0xf3,
8192 0xd5, 0x68, 0xb8, 0x42, 0x70, 0xc0, 0x68, 0x58, 0xe4, 0xb7, 0x25, 0x25,
8193 0x23, 0x4d, 0x6f, 0xb1, 0x5a, 0x51, 0x67, 0xd8, 0x98, 0x5c, 0xc4, 0x31,
8194 0x06, 0xc1, 0x43, 0x88, 0x3d, 0x57, 0xce, 0x68, 0x9a, 0xa3, 0xbc, 0x18,
8195 0x3f, 0xc1, 0x0d, 0x1f, 0xda, 0x99, 0xa8, 0x37, 0xd4, 0x2f, 0xaf, 0x9e,
8196 0x5b, 0x36, 0x64, 0x10, 0x04, 0x7c, 0x9b, 0x99, 0x65, 0x64, 0x7f, 0xd0,
8197 0xfb, 0x29, 0xae, 0x35, 0x22, 0xf8, 0x94, 0xc0, 0xd1, 0x98, 0x52, 0xcf,
8198 0x03, 0x2c, 0xba, 0x3c, 0x6c, 0xc1, 0x3d, 0xa8, 0x69, 0x2c, 0xa5, 0xa2,
8199 0x84, 0x71, 0x49, 0xb4, 0xeb, 0x9e, 0x22, 0x0b, 0x83, 0xf9, 0x65, 0x46,
8200 0x89, 0x88, 0x98, 0x00, 0x38, 0xf4, 0x1c, 0x8a, 0xae, 0x38, 0x8b, 0xcc,
8201 0x14, 0xd0, 0xd1, 0x33, 0xb4, 0x76, 0x73, 0xc4, 0xe3, 0x9b, 0xe6, 0x73,
8202 0x54, 0x7c, 0x7c, 0x93, 0x22, 0x2c, 0x42, 0xb3, 0x0d, 0x71, 0x63, 0x04,
8203 0xea, 0x47, 0x95, 0x96, 0x6e, 0xbf, 0x83, 0x89, 0x74, 0x3e, 0x46, 0x11,
8204 0x2e, 0x86, 0x27, 0x56, 0x75, 0xdc, 0xc3, 0xb5, 0x31, 0xf3, 0x18, 0x57,
8205 0x9b, 0x29, 0xf3, 0x2c, 0x2e, 0x8f, 0x2f, 0x3e, 0xfe, 0xe5, 0xe4, 0xe4,
8206 0xe2, 0xf4, 0xd5, 0xd9, 0x89, 0xa8, 0x72, 0xe6, 0x47, 0xef, 0x2e, 0xbf,
8207 0x39, 0x43, 0x00, 0xf1, 0xd1, 0x27, 0xac, 0x6e, 0x11, 0xed, 0xa6, 0x79,
8208 0xac, 0x24, 0xfd, 0x5c, 0xcc, 0xa1, 0x2e, 0xd0, 0x66, 0x84, 0x7e, 0x9a,
8209 0xa3, 0xd3, 0xef, 0xba, 0xd1, 0x9b, 0x8b, 0xde, 0x87, 0xef, 0x8c, 0xbb,
8210 0x73, 0xa3, 0x2e, 0x1b, 0x18, 0x8e, 0xae, 0x19, 0x9f, 0x30, 0xe0, 0x74,
8211 0xbd, 0x5e, 0x96, 0xdb, 0x0d, 0x6c, 0xc5, 0x38, 0xf8, 0x95, 0xed, 0x4f,
8212 0x44, 0xf0, 0xc9, 0x8c, 0x6a, 0xc9, 0x2f, 0xca, 0xd0, 0x2e, 0x8c, 0xc0,
8213 0xb3, 0xad, 0x48, 0x21, 0x26, 0x56, 0x3c, 0x0f, 0x0d, 0x96, 0xdc, 0x59,
8214 0xd5, 0x60, 0xab, 0x11, 0x85, 0xf8, 0xbf, 0x56, 0xc3, 0x5f, 0xe7, 0xfe,
8215 0x7b, 0x6a, 0x34, 0x19, 0x1d, 0xe2, 0x9f, 0x5f, 0x04, 0xdc, 0xb3, 0xa0,
8216 0x0d, 0x5d, 0x14, 0xe9, 0x0d, 0xfa, 0xd7, 0xe0, 0x61, 0x56, 0xa9, 0xf0,
8217 0xd9, 0xbe, 0xc9, 0x9d, 0x95, 0xea, 0x6a, 0x1c, 0x85, 0x2a, 0x5b, 0x69,
8218 0xd4, 0x50, 0x30, 0x97, 0xea, 0x16, 0x30, 0x59, 0xc8, 0x8c, 0x96, 0x02,
8219 0xa7, 0xbe, 0x3a, 0x79, 0xdf, 0x8d, 0x2e, 0x4e, 0xde, 0x32, 0xfe, 0xdd,
8220 0xc9, 0xbb, 0xaf, 0xa9, 0x9c, 0x49, 0x03, 0x61, 0x04, 0x46, 0xcb, 0x55,
8221 0x1f, 0x81, 0x38, 0xa6, 0x6e, 0x01, 0xbc, 0x4e, 0x7a, 0x68, 0x59, 0x82,
8222 0x15, 0xfd, 0xbb, 0xf7, 0xd3, 0x31, 0x44, 0x85, 0xa5, 0x09, 0x35, 0x48,
8223 0xa9, 0x5e, 0x6d, 0x17, 0x31, 0xe3, 0xbd, 0xbe, 0x53, 0xd1, 0x21, 0xfc,
8224 0xf1, 0x45, 0xd0, 0x85, 0x3e, 0x78, 0xb3, 0xe1, 0x6f, 0x93, 0x78, 0x7e,
8225 0x4c, 0x55, 0x30, 0x72, 0xa5, 0x94, 0x8f, 0xf0, 0x4e, 0xcd, 0x7d, 0xe7,
8226 0xb1, 0xdd, 0x1a, 0x71, 0x49, 0x0b, 0x90, 0x55, 0x22, 0xe5, 0x87, 0xe4,
8227 0xca, 0x1c, 0xbc, 0xe9, 0xe2, 0xf1, 0xa3, 0x1e, 0xec, 0x76, 0x13, 0x82,
8228 0xc8, 0xda, 0x54, 0x88, 0xa2, 0x80, 0xee, 0xa6, 0x6e, 0x0b, 0x55, 0xb2,
8229 0x71, 0x3a, 0xa6, 0xa6, 0x06, 0xd4, 0xb6, 0x20, 0x2f, 0xb0, 0x36, 0x35,
8230 0x8a, 0xd6, 0xfe, 0xdf, 0x4d, 0xf4, 0x38, 0x6e, 0xa6, 0xe3, 0x8f, 0x45,
8231 0x19, 0xaf, 0x35, 0xf5, 0x01, 0xe7, 0xd7, 0x63, 0xfc, 0x75, 0xb4, 0xd6,
8232 0x37, 0x8f, 0xca, 0xdf, 0xf1, 0xe7, 0x21, 0x06, 0xd0, 0xfb, 0x9c, 0x63,
8233 0x5c, 0x0a, 0x14, 0x72, 0x3e, 0x4f, 0xb2, 0xc1, 0xe0, 0x0c, 0xa3, 0x60,
8234 0x45, 0x8c, 0xce, 0x4d, 0x15, 0xbd, 0x49, 0x76, 0x45, 0x2d, 0x3b, 0xe7,
8235 0x9f, 0x46, 0xe5, 0x76, 0x33, 0x9f, 0x31, 0x75, 0xea, 0x77, 0x0c, 0xe8,
8236 0xcb, 0xc5, 0x5f, 0x8e, 0x07, 0x7f, 0xd8, 0xde, 0x26, 0xd4, 0x9f, 0x75,
8237 0xc4, 0x41, 0x79, 0xbe, 0xbf, 0xbd, 0xb3, 0x11, 0xf2, 0x4f, 0x79, 0xad,
8238 0x48, 0xc8, 0x5f, 0xe5, 0x9e, 0x0b, 0x2a, 0xcc, 0x13, 0x90, 0x33, 0x33,
8239 0xf0, 0x38, 0x41, 0xb0, 0x07, 0x4c, 0x4a, 0x30, 0xf5, 0x2e, 0x84, 0x82,
8240 0xe1, 0x81, 0xa3, 0xd3, 0xaf, 0x38, 0xff, 0xad, 0xc3, 0xf3, 0x3f, 0xe8,
8241 0x18, 0x86, 0x36, 0x68, 0x49, 0xdc, 0xb9, 0xb2, 0x36, 0x6f, 0x4a, 0xfd,
8242 0x6f, 0x1a, 0x51, 0xee, 0xba, 0xd2, 0xb2, 0xd6, 0xf1, 0x2a, 0xc9, 0x24,
8243 0xcc, 0x24, 0xd4, 0x0a, 0x54, 0x34, 0x7a, 0xca, 0xb5, 0xcc, 0xa8, 0x13,
8244 0x31, 0x07, 0xe1, 0x51, 0x73, 0x0a, 0xa9, 0x0c, 0xfd, 0x9d, 0x53, 0x54,
8245 0x1f, 0xd5, 0x83, 0xc0, 0x20, 0xbd, 0xa7, 0x03, 0x72, 0xa3, 0x13, 0x1c,
8246 0xf1, 0xf7, 0x16, 0x06, 0xe4, 0x2c, 0x76, 0xa3, 0x14, 0xbf, 0x44, 0x20,
8247 0x30, 0x41, 0x48, 0xa4, 0x9f, 0x74, 0x65, 0xf0, 0x9a, 0x90, 0x28, 0x86,
8248 0xd1, 0xe1, 0x14, 0x56, 0x32, 0x0d, 0xc3, 0x9b, 0x9e, 0x50, 0xe1, 0x47,
8249 0xf4, 0x97, 0xa4, 0x18, 0x26, 0x45, 0x5e, 0x36, 0x30, 0x0f, 0x69, 0x60,
8250 0x81, 0xb3, 0x46, 0x4b, 0x1b, 0x86, 0x91, 0xae, 0xcf, 0x7e, 0xee, 0x06,
8251 0x72, 0x91, 0x6c, 0x97, 0xd7, 0x74, 0x67, 0x8d, 0xe0, 0x17, 0xf1, 0x44,
8252 0x96, 0xf1, 0x24, 0xc1, 0xff, 0x12, 0x20, 0xd5, 0x18, 0xbf, 0x14, 0x4f,
8253 0xd7, 0xd0, 0xec, 0x6e, 0x9e, 0x6b, 0x61, 0xfe, 0x35, 0xb8, 0x55, 0x78,
8254 0x34, 0x14, 0x57, 0x04, 0xde, 0x2f, 0xf3, 0x90, 0xc6, 0xd9, 0x25, 0x63,
8255 0x54, 0xd7, 0xf0, 0x16, 0x4a, 0xcf, 0xfa, 0x34, 0xc3, 0xd5, 0x3b, 0x30,
8256 0xb5, 0xed, 0xe0, 0xbf, 0xfa, 0x7a, 0x80, 0x4d, 0x62, 0x80, 0xca, 0xc7,
8257 0x15, 0x04, 0x19, 0x83, 0x2a, 0x41, 0x88, 0x32, 0xb3, 0x51, 0x8c, 0xd5,
8258 0x28, 0xe3, 0xfd, 0x7a, 0x89, 0x27, 0xca, 0x1b, 0x2e, 0x5b, 0xe9, 0x0b,
8259 0x87, 0x21, 0x9c, 0x8f, 0x23, 0xc6, 0x57, 0x77, 0x29, 0x48, 0xa5, 0x41,
8260 0x88, 0xe0, 0x38, 0x66, 0xf3, 0x4f, 0x00, 0x95, 0x05, 0xd2, 0x9a, 0xfc,
8261 0x05, 0xa2, 0x47, 0x06, 0x9c, 0x2c, 0x54, 0x31, 0x84, 0xe9, 0x52, 0x3a,
8262 0xcf, 0x9e, 0x34, 0xd1, 0x3b, 0x8e, 0x38, 0x64, 0x47, 0x70, 0x6b, 0xd1,
8263 0x6d, 0x81, 0xdd, 0x74, 0x33, 0xb7, 0x1c, 0xa8, 0xb5, 0xf5, 0x97, 0x34,
8264 0xdc, 0x05, 0x9e, 0x98, 0x72, 0x63, 0x3e, 0x46, 0x99, 0xa0, 0x3b, 0x50,
8265 0xa6, 0xc5, 0xf8, 0x04, 0x36, 0x22, 0x83, 0xef, 0xfd, 0xc7, 0x67, 0xcb,
8266 0xe1, 0x7b, 0x10, 0x10, 0x2f, 0x9e, 0x0a, 0xf6, 0xb6, 0xe4, 0x57, 0x50,
8267 0xcd, 0xbc, 0x44, 0x9f, 0x8d, 0xf7, 0x51, 0x7b, 0x41, 0xf9, 0x81, 0x37,
8268 0x9c, 0x4b, 0xef, 0x00, 0x8f, 0x72, 0x96, 0xdc, 0x3d, 0x02, 0x9c, 0xf1,
8269 0x21, 0xde, 0xb4, 0x16, 0x69, 0x28, 0xf6, 0xfa, 0x4b, 0xb8, 0xd6, 0x60,
8270 0x66, 0x11, 0xe6, 0x51, 0x7f, 0xf4, 0xab, 0xe4, 0x06, 0xf4, 0x08, 0x56,
8271 0xac, 0x47, 0xfa, 0xc5, 0x21, 0xd0, 0x2b, 0xf1, 0x9a, 0x88, 0x0d, 0x6a,
8272 0x6d, 0x16, 0xee, 0xd2, 0xd9, 0x62, 0x66, 0x63, 0x81, 0xf4, 0x1e, 0x4a,
8273 0x0a, 0xf2, 0xcc, 0xd9, 0xac, 0x77, 0xea, 0x52, 0xd0, 0x23, 0x2b, 0xab,
8274 0xe9, 0x48, 0xca, 0xe1, 0x56, 0xb4, 0x40, 0xe9, 0x24, 0xf0, 0xc8, 0x87,
8275 0xa0, 0x1d, 0xa0, 0x14, 0x51, 0x88, 0x09, 0x8d, 0x69, 0x46, 0x02, 0x12,
8276 0x43, 0x46, 0x77, 0xec, 0xc5, 0xcb, 0x08, 0x15, 0x2d, 0x9a, 0xa7, 0x22,
8277 0x96, 0x69, 0x32, 0x24, 0xc0, 0x28, 0x19, 0x84, 0x38, 0xcc, 0x4c, 0x97,
8278 0x24, 0x97, 0x99, 0x1f, 0xfe, 0xce, 0x97, 0xaa, 0x08, 0x6d, 0x3b, 0x84,
8279 0x91, 0x6e, 0xd3, 0x71, 0x75, 0xdd, 0xc7, 0x5c, 0x0f, 0xf5, 0x1c, 0x94,
8280 0xd2, 0x2b, 0x00, 0x7d, 0x71, 0x69, 0x08, 0xb7, 0x34, 0xec, 0x16, 0x63,
8281 0x8e, 0x20, 0xda, 0x46, 0x9c, 0x70, 0x8c, 0xe8, 0x1e, 0xa4, 0x5a, 0x50,
8282 0xda, 0xd2, 0x26, 0x1b, 0x29, 0xa6, 0xc3, 0x4c, 0x0c, 0x92, 0x60, 0x32,
8283 0x49, 0xef, 0xfc, 0xec, 0x0a, 0x45, 0x18, 0xed, 0xeb, 0x99, 0xc7, 0x53,
8284 0xb9, 0xf6, 0x69, 0x0d, 0xbd, 0xa8, 0x6b, 0x7f, 0x11, 0x59, 0xcb, 0x7d,
8285 0xff, 0x70, 0xb7, 0x24, 0xa7, 0x12, 0x6f, 0xe7, 0xe8, 0x53, 0x3a, 0xcd,
8286 0x83, 0x49, 0x53, 0x20, 0x07, 0xd6, 0x66, 0x3c, 0xc2, 0xdb, 0x35, 0x4d,
8287 0xeb, 0xc0, 0x4e, 0x0a, 0x57, 0xb1, 0xfc, 0x9e, 0x5b, 0xa7, 0xac, 0x5d,
8288 0xf1, 0x43, 0x5f, 0xdb, 0x87, 0x3c, 0xd8, 0x17, 0x79, 0x85, 0x6f, 0x2f,
8289 0x5e, 0x04, 0x3c, 0xb8, 0xfe, 0xa9, 0x1b, 0x81, 0x6d, 0xf1, 0x75, 0x37,
8290 0xba, 0x04, 0x3b, 0x61, 0x83, 0x8c, 0x8b, 0xed, 0xad, 0x9d, 0x3d, 0xea,
8291 0x36, 0x3b, 0x66, 0x85, 0x36, 0xd0, 0xdb, 0x9b, 0x83, 0x25, 0xdb, 0x9f,
8292 0x90, 0x66, 0xf8, 0x78, 0xdf, 0xfa, 0xff, 0x10, 0x20, 0xee, 0x2f, 0xdd,
8293 0x68, 0x97, 0xfd, 0x52, 0xdb, 0x5f, 0xb7, 0x60, 0xea, 0x01, 0x6b, 0xda,
8294 0x0e, 0xbb, 0xf9, 0x55, 0x3a, 0x92, 0xc8, 0x01, 0x8a, 0x6f, 0x3c, 0xbc,
8295 0x57, 0x9a, 0xb2, 0x6d, 0xf8, 0x83, 0x37, 0xc9, 0xcb, 0xf1, 0xce, 0x72,
8296 0xc7, 0x0b, 0xcb, 0x79, 0x1d, 0x15, 0x45, 0x13, 0xe0, 0xe2, 0x85, 0x8d,
8297 0xa7, 0x9c, 0xed, 0x18, 0x81, 0x75, 0xd2, 0x7c, 0xcc, 0x97, 0xa2, 0x41,
8298 0x2b, 0x40, 0x0b, 0xb4, 0xe7, 0x41, 0x15, 0x8d, 0xcb, 0x56, 0xc7, 0x3b,
8299 0x9d, 0x56, 0xad, 0xac, 0x85, 0x1b, 0x06, 0x67, 0xc4, 0x87, 0xd4, 0x80,
8300 0x79, 0x32, 0x6a, 0xae, 0xa3, 0x93, 0x61, 0x2a, 0x8d, 0x57, 0xa4, 0x0e,
8301 0x16, 0x3e, 0xdc, 0xf7, 0x23, 0x3e, 0x15, 0x33, 0x4a, 0x14, 0x19, 0x61,
8302 0xbb, 0x7a, 0xe9, 0x0e, 0x82, 0xe4, 0xe9, 0x19, 0xf2, 0x94, 0x53, 0x7c,
8303 0x60, 0x7a, 0x8f, 0x7d, 0x37, 0x08, 0x16, 0x20, 0xe0, 0xde, 0x50, 0x6a,
8304 0xb9, 0x53, 0xb2, 0x64, 0x0d, 0x79, 0x85, 0x7f, 0xa3, 0x6b, 0xbd, 0x6c,
8305 0x97, 0x90, 0x46, 0x96, 0x6d, 0x03, 0x87, 0xac, 0xe0, 0x6b, 0xad, 0xbf,
8306 0xb9, 0xf5, 0xd4, 0x37, 0xdf, 0xae, 0x26, 0x93, 0xff, 0xd6, 0x6d, 0xec,
8307 0x30, 0x69, 0x15, 0xf7, 0xf6, 0xa7, 0x0d, 0x67, 0x41, 0xbd, 0x8d, 0x59,
8308 0x30, 0xdf, 0xf3, 0xe2, 0xfc, 0x62, 0x77, 0xc3, 0xe0, 0xae, 0x33, 0x52,
8309 0x9a, 0x74, 0xac, 0x30, 0x1d, 0x3c, 0x9d, 0x4c, 0x12, 0x36, 0x30, 0x09,
8310 0x6c, 0xd6, 0xf7, 0x8f, 0x8d, 0xa8, 0xb7, 0x22, 0xde, 0x62, 0xf4, 0x3d,
8311 0xca, 0x79, 0xb3, 0x50, 0x7e, 0x09, 0xdd, 0xae, 0xe4, 0x0f, 0xb5, 0x72,
8312 0xda, 0xf6, 0x49, 0x0d, 0x44, 0x6e, 0x4a, 0xc5, 0xc1, 0xa2, 0x5e, 0x3d,
8313 0x3d, 0x02, 0xb1, 0x8d, 0x0c, 0x56, 0x3b, 0xe1, 0xbd, 0xc2, 0xd9, 0x69,
8314 0x4e, 0x92, 0x6b, 0x2f, 0x03, 0xd1, 0x0d, 0x49, 0x0c, 0xb7, 0x0f, 0x52,
8315 0x4e, 0x9e, 0xd1, 0x03, 0x58, 0x77, 0x35, 0x15, 0x49, 0x98, 0x6b, 0x41,
8316 0xc1, 0x30, 0x5c, 0x99, 0x07, 0x04, 0x1f, 0x37, 0x70, 0xe5, 0xe8, 0xee,
8317 0x40, 0xe2, 0xd4, 0x9c, 0x4b, 0x04, 0xa5, 0x4c, 0x70, 0xab, 0xef, 0xce,
8318 0x06, 0x97, 0x4e, 0xe2, 0xa8, 0x17, 0x2c, 0x31, 0x60, 0x2d, 0x0e, 0xda,
8319 0xb8, 0x53, 0xd0, 0x78, 0x76, 0x3a, 0xb8, 0xf4, 0xb8, 0x1b, 0x31, 0xd2,
8320 0x0e, 0xa2, 0x01, 0x26, 0x01, 0x39, 0x3d, 0x4c, 0x68, 0xf7, 0xa4, 0x29,
8321 0x1b, 0x67, 0xc3, 0x6a, 0x97, 0xc1, 0xb4, 0x70, 0x0a, 0x54, 0xfd, 0x49,
8322 0xe0, 0x14, 0xff, 0xcc, 0xce, 0x62, 0x01, 0x68, 0xd2, 0x6c, 0xc9, 0x72,
8323 0x31, 0xec, 0x39, 0x3d, 0x4e, 0xd9, 0x84, 0xb8, 0x9f, 0x0d, 0x73, 0x4c,
8324 0x10, 0x02, 0x2d, 0xec, 0x93, 0x2f, 0x9d, 0xd6, 0x85, 0xaf, 0x98, 0x44,
8325 0xd2, 0x15, 0xb7, 0x96, 0x31, 0x33, 0x8a, 0x12, 0xea, 0x3e, 0x4e, 0x8e,
8326 0x79, 0x7c, 0xfa, 0x51, 0xcc, 0x85, 0x84, 0x70, 0x13, 0x70, 0x81, 0x72,
8327 0x73, 0xce, 0xcf, 0xa9, 0xe3, 0xad, 0x61, 0xa2, 0xae, 0xd3, 0x30, 0x71,
8328 0x59, 0x6e, 0xb2, 0xc3, 0x8d, 0xa4, 0x85, 0x63, 0xbe, 0x3e, 0x73, 0x1f,
8329 0x21, 0x27, 0x25, 0xec, 0xa1, 0x37, 0xb3, 0x6e, 0x69, 0x88, 0xde, 0x4b,
8330 0xc7, 0x5c, 0x59, 0x5f, 0xd6, 0x5b, 0xd4, 0x72, 0xaf, 0x06, 0x14, 0xc0,
8331 0x94, 0x0d, 0x8c, 0xcd, 0x7e, 0xca, 0x96, 0x9d, 0xe4, 0x20, 0x46, 0x0d,
8332 0x37, 0xa7, 0x86, 0x0a, 0xdd, 0x0d, 0x35, 0xfc, 0x0b, 0xb5, 0x9d, 0xaa,
8333 0xf2, 0x48, 0xfb, 0xe2, 0x7c, 0x38, 0x7d, 0x75, 0xd6, 0xec, 0xdc, 0x44,
8334 0xf8, 0x3e, 0x66, 0xa9, 0x08, 0xc9, 0xa7, 0xd7, 0x07, 0xed, 0x88, 0x87,
8335 0xad, 0xb1, 0xc8, 0x52, 0xf8, 0x7e, 0xc4, 0xd6, 0xe0, 0x24, 0x65, 0x2d,
8336 0xee, 0xda, 0x2a, 0x36, 0xa5, 0x76, 0x74, 0x47, 0x1a, 0x38, 0xc8, 0x75,
8337 0x74, 0xb4, 0x5b, 0x80, 0x91, 0x56, 0xd7, 0x65, 0x45, 0x88, 0x85, 0xbb,
8338 0x39, 0xb6, 0xf7, 0x31, 0xf8, 0x2b, 0x12, 0x90, 0x3a, 0xcc, 0x2f, 0x85,
8339 0xd9, 0x26, 0x60, 0xa5, 0xa9, 0x74, 0xc4, 0x03, 0x3d, 0x68, 0x93, 0x10,
8340 0x76, 0x3d, 0xd5, 0x16, 0x6d, 0x9c, 0x38, 0x72, 0x8a, 0x87, 0xeb, 0x1d,
8341 0x9f, 0xf2, 0x42, 0x90, 0x79, 0xd7, 0x5f, 0xbf, 0x3f, 0x7f, 0xdb, 0xbb,
8342 0x3c, 0xdf, 0x40, 0x5e, 0xa4, 0xa1, 0xdb, 0x6b, 0x58, 0x4a, 0xad, 0x87,
8343 0x71, 0xba, 0xc8, 0x48, 0x6c, 0x62, 0xbd, 0xc4, 0xae, 0x9f, 0x16, 0x1d,
8344 0x9b, 0xa6, 0xa7, 0x6f, 0x79, 0x30, 0x7a, 0x19, 0xeb, 0xc1, 0xa4, 0x2f,
8345 0x01, 0xc3, 0x8e, 0x62, 0xb4, 0xbc, 0x34, 0x6b, 0xd2, 0x01, 0x77, 0x18,
8346 0x62, 0x4b, 0xc5, 0xf2, 0x3e, 0x12, 0x0c, 0xe4, 0x12, 0xd9, 0xa1, 0x0c,
8347 0x20, 0x6e, 0x9b, 0xd4, 0x3e, 0xd3, 0x38, 0x0b, 0x51, 0x58, 0x19, 0x80,
8348 0xb3, 0xca, 0x41, 0x44, 0xc4, 0x45, 0x91, 0xdf, 0xaa, 0xaa, 0x40, 0xa8,
8349 0xf1, 0xc0, 0x2b, 0x19, 0x86, 0x8c, 0x4b, 0xb0, 0x21, 0xdb, 0xb1, 0x8f,
8350 0xb9, 0x6b, 0x9e, 0xb4, 0xb7, 0x5a, 0xd9, 0xd7, 0xee, 0xec, 0x14, 0x5e,
8351 0xbd, 0xbd, 0xdd, 0xad, 0x55, 0xf1, 0x71, 0x5d, 0x4c, 0xf5, 0x26, 0x0f,
8352 0xe0, 0x04, 0x7b, 0x55, 0xb1, 0x40, 0x4c, 0xe5, 0x96, 0x42, 0xa9, 0x33,
8353 0x6a, 0xdd, 0xda, 0x00, 0xe4, 0xea, 0x4a, 0x37, 0x55, 0xac, 0x08, 0x44,
8354 0x9f, 0xa9, 0xc5, 0x84, 0xbd, 0x96, 0x84, 0x86, 0x3f, 0x79, 0x42, 0x48,
8355 0x5a, 0xd3, 0xa3, 0xed, 0x3d, 0x9d, 0x5a, 0x48, 0x2e, 0x49, 0xbd, 0x48,
8356 0xb1, 0xc3, 0x34, 0x1c, 0x4e, 0xad, 0x41, 0xa2, 0x66, 0x81, 0x24, 0xd0,
8357 0xf0, 0xa7, 0x9e, 0x9d, 0x84, 0x3f, 0x64, 0xa1, 0x5d, 0x15, 0xf9, 0x78,
8358 0x31, 0x22, 0x1e, 0xc0, 0x14, 0xc8, 0xb4, 0xba, 0x8f, 0x86, 0xdc, 0xac,
8359 0x59, 0xbb, 0x59, 0xe0, 0xd0, 0x16, 0x8b, 0x8c, 0xfd, 0xcc, 0x4d, 0x6d,
8360 0x9a, 0x9f, 0x42, 0xcc, 0x6c, 0x0a, 0x16, 0x90, 0x99, 0x44, 0x65, 0xbc,
8361 0x09, 0x1b, 0x4d, 0x45, 0xd3, 0x15, 0x85, 0xd9, 0x75, 0xd1, 0xba, 0xb4,
8362 0x17, 0xf4, 0x24, 0xee, 0x34, 0x46, 0x37, 0xe6, 0x9d, 0x4d, 0xf5, 0x8d,
8363 0xd9, 0x94, 0xa6, 0x94, 0x9d, 0xaf, 0xe2, 0x12, 0x24, 0x6b, 0x7d, 0xbc,
8364 0x8d, 0xa7, 0xf0, 0x85, 0xbb, 0x7b, 0x51, 0x8f, 0xfc, 0x51, 0xc5, 0x81,
8365 0x21, 0xf4, 0x4a, 0x4c, 0x12, 0xea, 0x81, 0x7e, 0xd6, 0x75, 0xbe, 0xd3,
8366 0xc2, 0x1d, 0xa7, 0xa2, 0xd4, 0x88, 0xf8, 0xe7, 0xba, 0x15, 0x67, 0x5f,
8367 0x45, 0xf6, 0x50, 0xd3, 0xd3, 0x2b, 0xce, 0x99, 0x46, 0xf4, 0xb2, 0x71,
8368 0xa8, 0x20, 0x6d, 0x9c, 0x62, 0x58, 0x0f, 0x35, 0x03, 0xfd, 0x68, 0xb4,
8369 0xae, 0x70, 0xc6, 0x06, 0x6f, 0xf2, 0x4c, 0x7e, 0x75, 0x60, 0x00, 0x97,
8370 0x51, 0xf2, 0x37, 0x86, 0xdb, 0xfd, 0xee, 0x3b, 0xe7, 0xf2, 0x47, 0x77,
8371 0xcc, 0x46, 0xd7, 0xc7, 0xb4, 0x73, 0xd1, 0x08, 0xc7, 0xb9, 0x3b, 0x5d,
8372 0xcf, 0x22, 0x61, 0xbe, 0x06, 0xfd, 0x49, 0x12, 0xf2, 0xb5, 0x49, 0x46,
8373 0x95, 0x5f, 0x25, 0x74, 0x39, 0x48, 0xc6, 0x86, 0xea, 0x10, 0xd8, 0x1b,
8374 0xc4, 0xf6, 0xca, 0x08, 0x82, 0xa7, 0x96, 0x16, 0x08, 0xa5, 0x4e, 0x24,
8375 0x9b, 0x81, 0x02, 0xf6, 0xd3, 0x6d, 0x26, 0x5d, 0x0c, 0x2c, 0xbb, 0x04,
8376 0x13, 0x3a, 0xc5, 0x78, 0x90, 0xac, 0x7b, 0xba, 0x3a, 0x4a, 0x4a, 0x33,
8377 0xa3, 0xca, 0xfa, 0x51, 0x91, 0x88, 0x73, 0xb3, 0x34, 0xc9, 0x64, 0x91,
8378 0x34, 0x5f, 0x9a, 0x06, 0xd2, 0xa3, 0x39, 0xa4, 0x15, 0x3b, 0x87, 0xd1,
8379 0xa6, 0x80, 0x37, 0xb6, 0x8a, 0x21, 0xf4, 0xd2, 0xaa, 0xad, 0x31, 0x14,
8380 0x66, 0x3d, 0x51, 0xcb, 0xc5, 0x9c, 0x3d, 0xfb, 0x98, 0xe5, 0x65, 0xd5,
8381 0xe0, 0x3f, 0x29, 0xb7, 0xf6, 0x1b, 0x89, 0x79, 0x86, 0xbd, 0xbd, 0x78,
8382 0x0d, 0x73, 0x3b, 0xc6, 0x5e, 0xb1, 0x90, 0x30, 0xa7, 0x06, 0x46, 0x57,
8383 0xac, 0x8d, 0xda, 0x54, 0x64, 0xb6, 0x17, 0x28, 0xc9, 0x67, 0x46, 0x06,
8384 0x3f, 0x9c, 0x3d, 0x5c, 0x8c, 0xdf, 0xd5, 0x6c, 0x54, 0x69, 0xbf, 0x22,
8385 0x14, 0x63, 0xa6, 0xbb, 0x23, 0x9b, 0x97, 0x18, 0x91, 0x24, 0x1a, 0x94,
8386 0x6d, 0x05, 0x2a, 0x36, 0x15, 0x83, 0x47, 0x28, 0x5d, 0xaa, 0x91, 0x16,
8387 0x32, 0xa9, 0xd5, 0xc1, 0x48, 0xf6, 0x3b, 0xe6, 0xf7, 0x51, 0x4d, 0x61,
8388 0xd0, 0xb9, 0x68, 0x10, 0x5b, 0x5d, 0x20, 0xc1, 0x1a, 0x3e, 0x24, 0x76,
8389 0x29, 0x91, 0x91, 0x6b, 0xd5, 0x43, 0x9e, 0x59, 0x51, 0x46, 0xbb, 0x5b,
8390 0xdb, 0x5d, 0xf8, 0x63, 0x87, 0x92, 0xc9, 0x76, 0xb7, 0x76, 0x0d, 0x7c,
8391 0x52, 0xed, 0x7c, 0x08, 0x3e, 0x1d, 0x7a, 0x45, 0xd9, 0x73, 0x03, 0x87,
8392 0xe8, 0xee, 0x2e, 0xd0, 0x46, 0xa2, 0x0e, 0x38, 0xd6, 0x5b, 0x32, 0x55,
8393 0x4b, 0x48, 0x4a, 0x02, 0x59, 0x78, 0x7b, 0xa9, 0xa0, 0x47, 0xd2, 0x18,
8394 0x25, 0x08, 0xf1, 0x49, 0x18, 0xa6, 0xcd, 0x0e, 0x7b, 0xb2, 0xe5, 0x6e,
8395 0xaf, 0x1c, 0xda, 0x44, 0xa4, 0x8a, 0x74, 0xbf, 0x82, 0x95, 0xde, 0xb5,
8396 0xa1, 0xd5, 0xe0, 0x2e, 0xcb, 0xec, 0xb4, 0xcd, 0xaf, 0x0a, 0x19, 0x45,
8397 0xbf, 0x9b, 0x48, 0x5a, 0xe0, 0x01, 0x66, 0xd8, 0x03, 0x87, 0x23, 0x11,
8398 0xbd, 0xd4, 0x1f, 0xfe, 0x85, 0x96, 0x2d, 0xf2, 0xbf, 0x76, 0x83, 0xce,
8399 0x16, 0x6d, 0xd2, 0x9d, 0x98, 0x5a, 0x70, 0x25, 0x92, 0x4d, 0x2e, 0xe2,
8400 0xc6, 0xe8, 0xfc, 0xa0, 0x82, 0xf5, 0xa1, 0xe3, 0xac, 0x29, 0x8b, 0x8c,
8401 0x5b, 0xad, 0x4c, 0xa6, 0xd2, 0xb7, 0x62, 0x51, 0xae, 0x5a, 0x6d, 0x70,
8402 0xb6, 0x62, 0x68, 0x47, 0xb3, 0x7b, 0x79, 0xa9, 0xf1, 0xb4, 0xea, 0x95,
8403 0x37, 0xa3, 0xba, 0x32, 0x81, 0x81, 0x3e, 0x25, 0xdf, 0xa1, 0xfc, 0xc5,
8404 0x0b, 0xf2, 0x9c, 0xbe, 0x3d, 0x02, 0x2b, 0xfc, 0xec, 0xd5, 0x91, 0xd8,
8405 0xe2, 0xf0, 0x91, 0xb7, 0x94, 0x12, 0xeb, 0x78, 0x51, 0x69, 0x28, 0xb3,
8406 0x13, 0xa2, 0x2d, 0x8e, 0x17, 0x85, 0x0f, 0x03, 0xa2, 0x36, 0x47, 0xed,
8407 0x26, 0x6d, 0x65, 0x23, 0x1c, 0xc6, 0x1b, 0x5b, 0xd3, 0xf1, 0x0d, 0xa2,
8408 0xbc, 0x35, 0x7d, 0x5a, 0x92, 0x45, 0x38, 0xd0, 0x83, 0xfa, 0x87, 0x05,
8409 0xec, 0xe4, 0xd9, 0x35, 0x27, 0x12, 0x1d, 0x55, 0xa6, 0xe4, 0x87, 0x24,
8410 0x32, 0xae, 0xbe, 0xc9, 0x46, 0x44, 0x05, 0x2a, 0xbb, 0x79, 0x8b, 0x56,
8411 0xad, 0x04, 0x39, 0x6a, 0xf3, 0x64, 0x1f, 0x20, 0xb9, 0xd8, 0x24, 0xa7,
8412 0x5f, 0x1a, 0x75, 0x0c, 0xfd, 0x1a, 0x2e, 0x7e, 0xd1, 0xac, 0x30, 0x62,
8413 0x14, 0xce, 0x88, 0x2c, 0x3b, 0x6e, 0x7e, 0xb1, 0xb3, 0xfb, 0x62, 0xaf,
8414 0xcb, 0x7f, 0xdf, 0xdf, 0x7a, 0xc9, 0xdc, 0x7b, 0x7a, 0x72, 0xf9, 0x3a,
8415 0x1a, 0x17, 0x70, 0x76, 0x9a, 0xd1, 0x09, 0xfc, 0x59, 0x2f, 0x89, 0x8b,
8416 0x6b, 0xb0, 0x21, 0xb1, 0xcf, 0x55, 0xaf, 0x9c, 0x55, 0xf3, 0xde, 0xd6,
8417 0x56, 0x28, 0xb7, 0xee, 0x5f, 0x1c, 0xa6, 0xaa, 0xb3, 0xdc, 0xda, 0xd1,
8418 0x87, 0xcb, 0x37, 0x9f, 0xff, 0xe7, 0x5a, 0x94, 0xce, 0xe2, 0xf9, 0xea,
8419 0x5a, 0x4f, 0x0d, 0x46, 0xa0, 0x01, 0xf3, 0x85, 0x66, 0x62, 0x0f, 0xf7,
8420 0xb6, 0xbd, 0x7b, 0x78, 0x9d, 0x8b, 0x4d, 0xca, 0xae, 0x3c, 0x5e, 0x4b,
8421 0x9b, 0x53, 0x9e, 0x61, 0xbb, 0x95, 0xdf, 0x08, 0xb8, 0x6f, 0x9a, 0xfa,
8422 0xa6, 0xed, 0x59, 0xbd, 0xce, 0xa6, 0x69, 0x75, 0xbf, 0x41, 0xce, 0x54,
8423 0xf4, 0x87, 0x0f, 0x67, 0x18, 0x6b, 0x1a, 0xab, 0x65, 0x1a, 0x84, 0x92,
8424 0x2f, 0x05, 0x27, 0xb7, 0x48, 0xb0, 0x4d, 0x20, 0xeb, 0xe1, 0x19, 0x8b,
8425 0xfa, 0xa7, 0x75, 0x50, 0xb4, 0x64, 0x41, 0x0a, 0x7e, 0xe9, 0x10, 0x1c,
8426 0xae, 0xce, 0xcb, 0x88, 0xdc, 0x1d, 0xc8, 0x2d, 0x8f, 0x87, 0x14, 0xa4,
8427 0x11, 0x8b, 0xd1, 0x5c, 0x8b, 0x97, 0xe8, 0xdf, 0xa8, 0x25, 0x79, 0xbb,
8428 0x41, 0xaa, 0xd3, 0x13, 0x77, 0xc3, 0x2a, 0xa7, 0x1c, 0x7a, 0xa0, 0x89,
8429 0x1a, 0x64, 0xce, 0x00, 0x1c, 0x01, 0x9e, 0xdf, 0xfa, 0x2c, 0x56, 0x20,
8430 0x10, 0xcd, 0xb4, 0x49, 0xa0, 0x5f, 0x93, 0x3e, 0xb8, 0x03, 0x1e, 0x7d,
8431 0xf0, 0xa1, 0x1e, 0x59, 0x66, 0x68, 0x77, 0x96, 0x61, 0x02, 0x7d, 0xeb,
8432 0xb6, 0x34, 0xe0, 0xde, 0x81, 0xb9, 0x75, 0xcd, 0x83, 0x06, 0x93, 0xce,
8433 0x31, 0x94, 0x06, 0x67, 0xd6, 0xe2, 0xc5, 0x84, 0x72, 0x68, 0xd8, 0x0c,
8434 0x1c, 0x52, 0x43, 0x40, 0x14, 0x62, 0x60, 0xfb, 0xa2, 0x6b, 0x4e, 0xec,
8435 0xa4, 0x09, 0x5a, 0xde, 0x28, 0x85, 0x2a, 0x0d, 0xbf, 0xab, 0xab, 0x44,
8436 0xc7, 0xf7, 0x40, 0xea, 0xc8, 0x8d, 0xf8, 0xfe, 0xf8, 0xe2, 0x32, 0xba,
8437 0x3c, 0x77, 0xdd, 0x5f, 0x8c, 0x8d, 0x4e, 0xa8, 0x8e, 0x60, 0x8b, 0x17,
8438 0xe1, 0x78, 0x92, 0x4e, 0x14, 0xd8, 0x1d, 0x7b, 0x71, 0xe5, 0x85, 0xfa,
8439 0x8e, 0x58, 0x6b, 0xa0, 0x3a, 0x4d, 0xad, 0x84, 0xa8, 0x53, 0x2b, 0x80,
8440 0x47, 0x47, 0xd4, 0x6b, 0x86, 0x60, 0xd9, 0x82, 0x20, 0xcb, 0xaf, 0x61,
8441 0x47, 0x70, 0x3d, 0x79, 0xc4, 0xd3, 0x2b, 0x03, 0xc5, 0x2e, 0x5a, 0x81,
8442 0x6b, 0xca, 0x05, 0x38, 0x0b, 0x13, 0xe7, 0x72, 0x13, 0x4f, 0xd3, 0xb1,
8443 0x43, 0x95, 0x60, 0x08, 0x84, 0x20, 0x7a, 0xed, 0x33, 0x94, 0xbf, 0x74,
8444 0x85, 0xc5, 0xff, 0x4c, 0x2e, 0xa4, 0x97, 0x3a, 0x1a, 0x24, 0x53, 0x05,
8445 0x43, 0x86, 0xd3, 0xf8, 0xca, 0xb7, 0x51, 0x9d, 0xc4, 0x28, 0x07, 0xb8,
8446 0xaf, 0xb2, 0x7b, 0x49, 0x7d, 0x46, 0xbd, 0xfd, 0xe4, 0xb0, 0xb8, 0xef,
8447 0xe7, 0xa2, 0x9d, 0x21, 0xaf, 0x1a, 0xae, 0x9d, 0x32, 0x28, 0x53, 0x44,
8448 0xc3, 0xe4, 0x36, 0xad, 0xb9, 0x15, 0xfb, 0x8d, 0x7d, 0x7d, 0xd2, 0xa1,
8449 0x6a, 0xb0, 0x77, 0xed, 0x68, 0x80, 0x2e, 0x55, 0xd5, 0xce, 0x9a, 0x7f,
8450 0xc6, 0x1e, 0x73, 0xc4, 0xea, 0x00, 0x13, 0x2f, 0x03, 0x37, 0x02, 0x7d,
8451 0x6d, 0x55, 0x19, 0xc4, 0x5e, 0x60, 0xd3, 0xc6, 0x9d, 0x7c, 0x92, 0xe4,
8452 0x2f, 0xc1, 0x1b, 0x1e, 0x7e, 0xc5, 0xe9, 0x0f, 0x9e, 0x05, 0xca, 0x99,
8453 0x72, 0xef, 0x93, 0x79, 0x42, 0xa2, 0xcb, 0xad, 0x1f, 0x70, 0x2e, 0x57,
8454 0x03, 0x7e, 0x4f, 0x5e, 0x49, 0x13, 0x63, 0xf3, 0x37, 0xab, 0x95, 0xc7,
8455 0xd8, 0x81, 0x2d, 0x3e, 0x66, 0x86, 0x10, 0x35, 0x62, 0xb3, 0x56, 0x6c,
8456 0xb3, 0xfe, 0xcd, 0xfb, 0xd7, 0x7f, 0xd3, 0x3d, 0xdc, 0xd0, 0x62, 0x97,
8457 0x96, 0xef, 0x38, 0x19, 0x38, 0x36, 0xe7, 0x40, 0x7a, 0x96, 0xd4, 0x28,
8458 0xc0, 0xff, 0xe2, 0x7f, 0x06, 0x30, 0x7f, 0xc6, 0x39, 0xa5, 0x2c, 0xaf,
8459 0x63, 0xf6, 0x14, 0x3c, 0x37, 0x10, 0x07, 0xdb, 0x6e, 0x7f, 0x9f, 0x9c,
8460 0xe0, 0xaf, 0x8f, 0xf7, 0x77, 0x77, 0xb6, 0x37, 0xfa, 0xd1, 0x7a, 0xe3,
8461 0x32, 0xdf, 0x08, 0x2e, 0xd3, 0x5d, 0x65, 0x8d, 0xf6, 0x88, 0x01, 0x84,
8462 0x5c, 0xbe, 0x7e, 0xf2, 0xdd, 0xc5, 0x3b, 0x6f, 0x8d, 0xb0, 0x26, 0x2f,
8463 0x3f, 0xae, 0x6d, 0x8d, 0xd6, 0x04, 0xaa, 0x8d, 0x2f, 0xb5, 0xb0, 0xd4,
8464 0x2f, 0x23, 0x0a, 0x64, 0xa0, 0xbd, 0x2e, 0x52, 0xb4, 0xdd, 0x3b, 0x48,
8465 0x92, 0xce, 0x59, 0x9e, 0x8d, 0xc1, 0x0e, 0x3e, 0xc7, 0xd6, 0xad, 0x49,
8466 0x07, 0xec, 0xe4, 0x07, 0x57, 0xf7, 0xd8, 0x13, 0x54, 0xbf, 0x96, 0x32,
8467 0x30, 0x4e, 0x9e, 0x76, 0x54, 0x9c, 0x93, 0xe8, 0x1c, 0x92, 0xb7, 0x9c,
8468 0xd2, 0x9b, 0xf9, 0xc9, 0xe0, 0x6f, 0xe9, 0x87, 0xfd, 0xe8, 0x95, 0x03,
8469 0x7c, 0x7e, 0xbd, 0x10, 0xc0, 0xf5, 0xa8, 0x0a, 0xe5, 0x99, 0x3c, 0xb8,
8470 0x24, 0xfa, 0xcc, 0xa3, 0xb2, 0x3b, 0xba, 0x4e, 0xae, 0x88, 0xd3, 0x47,
8471 0xa8, 0x7e, 0xbc, 0xef, 0xa8, 0x64, 0x83, 0x62, 0x18, 0x87, 0x14, 0xb4,
8472 0x0f, 0xa5, 0xab, 0xb1, 0xe9, 0xfd, 0xf6, 0xaf, 0x97, 0x97, 0x1b, 0xc1,
8473 0x34, 0x10, 0x7a, 0x7d, 0x5d, 0xf3, 0x18, 0x36, 0x58, 0x59, 0xe3, 0x3c,
8474 0xa0, 0xdc, 0xe3, 0x6c, 0xce, 0xf8, 0xa8, 0x61, 0x1b, 0x3b, 0x7e, 0xa1,
8475 0xb4, 0x8e, 0xf2, 0xc2, 0x29, 0x37, 0xd4, 0xaa, 0xa5, 0x1b, 0xaa, 0x0c,
8476 0x34, 0x11, 0x7b, 0xd3, 0x0a, 0x9c, 0xeb, 0xd5, 0xe2, 0xac, 0xde, 0x03,
8477 0x9e, 0x84, 0x36, 0xdd, 0x45, 0xc9, 0x1d, 0x81, 0x2d, 0x8c, 0x93, 0xe8,
8478 0x99, 0x6f, 0xc2, 0x1e, 0x09, 0xb8, 0x8b, 0x5a, 0xec, 0x1c, 0x46, 0x51,
8479 0xb5, 0x9d, 0xac, 0x13, 0x61, 0x99, 0x6e, 0x30, 0xf3, 0x22, 0xa4, 0x2f,
8480 0x70, 0x1e, 0x06, 0xab, 0x02, 0xcd, 0x4c, 0x0c, 0x37, 0xf3, 0x82, 0xc4,
8481 0x02, 0xe6, 0x5e, 0x48, 0x5e, 0x85, 0xef, 0x33, 0x71, 0x72, 0x31, 0xda,
8482 0x93, 0x31, 0xdc, 0xf4, 0x8b, 0x46, 0xa2, 0x44, 0xd3, 0x77, 0x68, 0xd2,
8483 0x26, 0x6a, 0x27, 0x6d, 0xff, 0x45, 0xe0, 0xa4, 0xbd, 0x3b, 0xbf, 0x3c,
8484 0x39, 0x90, 0xfe, 0x87, 0xda, 0x30, 0x4b, 0xb0, 0x31, 0xa4, 0x58, 0x85,
8485 0xa0, 0x0f, 0x04, 0x7f, 0x12, 0xa5, 0xb2, 0x6e, 0x74, 0x37, 0x24, 0xdf,
8486 0x08, 0x30, 0x08, 0x65, 0x02, 0x47, 0x32, 0x2b, 0xaf, 0xd0, 0x40, 0x4b,
8487 0x0b, 0x08, 0xbb, 0x2e, 0x75, 0x38, 0x85, 0x36, 0xdc, 0xef, 0x5b, 0x44,
8488 0xcd, 0x6d, 0xa8, 0x5f, 0x0c, 0xeb, 0xfe, 0x1e, 0x0f, 0xb1, 0x06, 0x4c,
8489 0xde, 0xb2, 0xfe, 0x23, 0x4e, 0x99, 0x73, 0x2c, 0x5a, 0x33, 0x08, 0xda,
8490 0x05, 0x86, 0xcd, 0x05, 0x68, 0x1e, 0x36, 0xf1, 0xb1, 0x61, 0x28, 0xaa,
8491 0xb5, 0x66, 0xb6, 0x32, 0xe7, 0xca, 0xb6, 0xd1, 0x52, 0x4f, 0x9b, 0x5a,
8492 0xf3, 0xec, 0x84, 0x12, 0x8f, 0x29, 0x99, 0x88, 0xde, 0x8d, 0x14, 0xd7,
8493 0x7b, 0x08, 0x77, 0x23, 0x4e, 0x3a, 0x4f, 0x08, 0xaa, 0x8c, 0x1d, 0x79,
8494 0xa8, 0xb1, 0x58, 0x77, 0x16, 0xc6, 0x7e, 0x66, 0xe8, 0x17, 0x6b, 0xf5,
8495 0x1f, 0xba, 0xfa, 0xb1, 0xd8, 0xb7, 0xe4, 0x7e, 0xa4, 0xe4, 0x74, 0x72,
8496 0xd0, 0xec, 0x6f, 0x45, 0x4e, 0x2b, 0x10, 0x89, 0xac, 0xb5, 0x17, 0x64,
8497 0xc1, 0x1b, 0xbd, 0x6d, 0x52, 0xc6, 0x25, 0xb5, 0x6a, 0x91, 0x69, 0x7b,
8498 0xcb, 0xdf, 0xd9, 0xe6, 0x76, 0x36, 0x6b, 0xd7, 0xf1, 0xd2, 0xae, 0xc6,
8499 0x08, 0xb5, 0xb8, 0x82, 0xc3, 0x0a, 0xf5, 0x46, 0x8e, 0x87, 0x93, 0x82,
8500 0x81, 0xec, 0xe2, 0x69, 0xd4, 0x52, 0xf3, 0xf4, 0x56, 0x18, 0x42, 0xca,
8501 0x90, 0xd0, 0xf1, 0x21, 0x4f, 0xb2, 0x8d, 0xc7, 0x09, 0x43, 0xda, 0x77,
8502 0xfe, 0xf6, 0x3a, 0x9f, 0xba, 0x19, 0x94, 0x9e, 0x10, 0xae, 0x08, 0x2a,
8503 0xd3, 0x6d, 0xc6, 0xa8, 0x28, 0x5e, 0xc2, 0x1f, 0xc8, 0x0e, 0x14, 0x0b,
8504 0x1a, 0x22, 0x8e, 0x4c, 0xf4, 0x53, 0x3e, 0x14, 0x27, 0x3e, 0x42, 0x6d,
8505 0x5e, 0x79, 0x5a, 0x01, 0xfa, 0x17, 0xa9, 0xd9, 0x10, 0x68, 0x06, 0x40,
8506 0xb0, 0xf1, 0x82, 0xa3, 0x8a, 0x38, 0x1f, 0x01, 0x4c, 0x20, 0x10, 0x0c,
8507 0x4a, 0x29, 0x88, 0xae, 0xa8, 0x37, 0x10, 0x55, 0xa7, 0x09, 0xe6, 0x75,
8508 0x63, 0x38, 0xb8, 0xec, 0x77, 0x10, 0xfc, 0xda, 0xdd, 0xee, 0x98, 0x8a,
8509 0xa6, 0x61, 0x68, 0x69, 0x41, 0xc1, 0xed, 0x50, 0x2d, 0xaa, 0x84, 0xd4,
8510 0x3d, 0x23, 0x79, 0xbc, 0x2c, 0x2b, 0x8d, 0xdf, 0xc1, 0xbb, 0x05, 0xf9,
8511 0x88, 0x52, 0x1a, 0x6f, 0x01, 0x54, 0xbf, 0x57, 0xe5, 0xcc, 0x6a, 0x32,
8512 0xd2, 0x48, 0x13, 0x93, 0x24, 0xe8, 0x69, 0x1f, 0x6b, 0xda, 0x4c, 0x02,
8513 0x73, 0xab, 0xd2, 0x20, 0xbc, 0xf4, 0xbf, 0x3a, 0xe1, 0xc9, 0xf0, 0xd2,
8514 0xf6, 0x2a, 0x29, 0x4b, 0xe6, 0xad, 0x9d, 0xfe, 0xcb, 0x55, 0x71, 0x37,
8515 0x9b, 0x7d, 0x47, 0x5d, 0x39, 0x97, 0x54, 0x31, 0x6e, 0xf5, 0x32, 0xcc,
8516 0x42, 0x2a, 0x0b, 0xe0, 0x02, 0x63, 0xce, 0x1b, 0x6a, 0x40, 0x86, 0xe8,
8517 0x18, 0x91, 0x09, 0x74, 0x37, 0x6b, 0xbf, 0xde, 0x9a, 0x27, 0xd4, 0x95,
8518 0x68, 0x60, 0x8a, 0x0c, 0x52, 0x7a, 0x2a, 0x11, 0x0b, 0x85, 0x7d, 0x7b,
8519 0x0e, 0x57, 0x9b, 0x80, 0xd5, 0xf5, 0xfc, 0xd6, 0x6b, 0x18, 0x50, 0xc5,
8520 0x2d, 0x47, 0x47, 0xe4, 0xaa, 0xd2, 0x42, 0x27, 0x43, 0x77, 0xd4, 0x4a,
8521 0x94, 0xfc, 0x5f, 0xd4, 0xab, 0x53, 0x5b, 0x0c, 0x3b, 0x64, 0x34, 0x00,
8522 0xb8, 0x2d, 0xdd, 0x1c, 0xa5, 0x73, 0xc4, 0x3b, 0x83, 0x93, 0xbb, 0x3e,
8523 0xb8, 0x78, 0x77, 0xf2, 0xf5, 0xf9, 0xc6, 0x43, 0x6e, 0x62, 0x77, 0x23,
8524 0x4c, 0xb6, 0x7a, 0xac, 0x85, 0x37, 0x92, 0x87, 0x4e, 0xba, 0xd2, 0xd7,
8525 0x83, 0x41, 0xef, 0xe8, 0xe2, 0x94, 0x34, 0x93, 0xc1, 0x00, 0xfe, 0x82,
8526 0xb4, 0x6e, 0x52, 0x8e, 0x00, 0x2a, 0xa3, 0x0f, 0xa5, 0x80, 0x9c, 0x95,
8527 0x22, 0xd7, 0x25, 0xc3, 0x86, 0x33, 0xbb, 0x69, 0x13, 0x14, 0x68, 0x5a,
8528 0x46, 0xdd, 0xa4, 0x11, 0xbd, 0x78, 0x37, 0x2f, 0x22, 0x6c, 0xaf, 0x79,
8529 0xb0, 0x44, 0xdc, 0xbf, 0x8e, 0x2a, 0x23, 0x88, 0x9a, 0x5a, 0x53, 0x05,
8530 0xda, 0x27, 0x5e, 0x28, 0xec, 0xf2, 0x8c, 0xda, 0x00, 0xc5, 0xd0, 0x31,
8531 0x88, 0x95, 0x98, 0xda, 0x44, 0xb6, 0xe1, 0x88, 0x24, 0x25, 0x91, 0x5b,
8532 0xe7, 0x4d, 0xef, 0xfb, 0x04, 0x66, 0xc1, 0x26, 0xd4, 0x5a, 0xaf, 0x99,
8533 0x2a, 0x7f, 0xb0, 0x46, 0x99, 0x70, 0x19, 0x61, 0xec, 0x7a, 0xf6, 0x1e,
8534 0xf9, 0x43, 0x34, 0x58, 0xcd, 0x6e, 0x02, 0x54, 0x06, 0x1f, 0x98, 0x9d,
8535 0x36, 0x45, 0x67, 0xd1, 0x26, 0xa7, 0xe4, 0x71, 0x2d, 0x2b, 0xc4, 0xef,
8536 0xda, 0x10, 0x37, 0xe4, 0x99, 0xaf, 0xb4, 0x85, 0x35, 0x09, 0x9d, 0xb4,
8537 0x0c, 0x60, 0x82, 0xad, 0xca, 0xfc, 0x16, 0xa9, 0xb9, 0xb7, 0x88, 0x0e,
8538 0x56, 0x94, 0x23, 0x43, 0x4c, 0x11, 0xa0, 0xac, 0xfb, 0x6a, 0x4a, 0xd7,
8539 0x22, 0x28, 0x20, 0xe4, 0x6a, 0x95, 0x58, 0x13, 0x81, 0x3e, 0x99, 0x2f,
8540 0xd4, 0xcf, 0x47, 0x55, 0x8c, 0x48, 0x4d, 0xe3, 0x6a, 0x88, 0x10, 0xc6,
8541 0x53, 0xa3, 0x4c, 0xa0, 0x04, 0xdd, 0x02, 0x34, 0x43, 0x52, 0x3b, 0xb2,
8542 0xae, 0x8e, 0xd1, 0x05, 0x9d, 0x5e, 0x82, 0xb5, 0xa6, 0xe1, 0xa5, 0x30,
8543 0x52, 0xc8, 0x5d, 0x8d, 0x30, 0x53, 0x70, 0x0a, 0xe3, 0x61, 0x99, 0x4f,
8544 0x17, 0x88, 0xc4, 0x96, 0x53, 0xfe, 0xdd, 0x34, 0xc6, 0x9a, 0xde, 0x8d,
8545 0x48, 0x5d, 0x40, 0x34, 0xb4, 0x2d, 0x86, 0x08, 0xb9, 0x13, 0xc5, 0x90,
8546 0xa6, 0x3a, 0x1f, 0x8d, 0xdd, 0x70, 0x40, 0x5b, 0xe4, 0x20, 0x6e, 0x91,
8547 0x33, 0x0e, 0xba, 0x02, 0x40, 0xa6, 0xdd, 0x18, 0x85, 0xc2, 0x67, 0x05,
8548 0xdd, 0xf2, 0x1a, 0x79, 0x4c, 0xa7, 0xab, 0x22, 0xa9, 0x17, 0x8d, 0xd5,
8549 0x6f, 0x1f, 0x3f, 0x9e, 0x1d, 0xe6, 0x38, 0x4d, 0x87, 0x19, 0xe2, 0x49,
8550 0x03, 0x85, 0x50, 0xbf, 0xc5, 0x9f, 0x89, 0x29, 0xe3, 0xce, 0xdc, 0xa7,
8551 0xab, 0x33, 0x93, 0x99, 0x36, 0xaf, 0x7c, 0x25, 0x76, 0x72, 0x37, 0xd5,
8552 0xc6, 0x3c, 0x98, 0x97, 0xfe, 0xc2, 0x95, 0xe7, 0xd9, 0x24, 0xbd, 0x6a,
8553 0xe0, 0xde, 0x34, 0x15, 0x06, 0x0b, 0x83, 0x60, 0xc7, 0xf3, 0x39, 0x4f,
8554 0x97, 0xeb, 0x75, 0xf1, 0x60, 0x1e, 0x23, 0x23, 0xa8, 0x36, 0x21, 0xd6,
8555 0x55, 0x42, 0x90, 0x6a, 0x7d, 0x5e, 0xea, 0x22, 0x10, 0xd2, 0x30, 0x44,
8556 0x55, 0x04, 0x21, 0x74, 0xd1, 0xc4, 0x94, 0xe6, 0x2a, 0x72, 0x46, 0xc6,
8557 0x37, 0x85, 0xcf, 0xf9, 0xea, 0xa9, 0x57, 0x8d, 0xfd, 0x5b, 0xb1, 0xc6,
8558 0xd9, 0xec, 0x58, 0x2b, 0x9a, 0x44, 0x90, 0x8c, 0xf6, 0x87, 0x9e, 0xb2,
8559 0x6b, 0x71, 0x1e, 0x47, 0x92, 0x68, 0x2f, 0x14, 0x8a, 0xd6, 0x3f, 0xca,
8560 0x5f, 0x50, 0xd2, 0x7d, 0x9b, 0x66, 0xa0, 0x46, 0x96, 0x1b, 0x8a, 0xb1,
8561 0x27, 0xf9, 0xb0, 0x8f, 0x02, 0xd5, 0x43, 0x2d, 0x80, 0x43, 0x88, 0x9e,
8562 0x88, 0xb6, 0xa9, 0xcd, 0xd5, 0xfd, 0x3c, 0xf5, 0xed, 0x2a, 0x95, 0xc5,
8563 0x34, 0x06, 0x75, 0x9c, 0xce, 0xa2, 0x0f, 0x59, 0x7a, 0x67, 0x93, 0x65,
8564 0x4c, 0xef, 0x1b, 0xd7, 0xe3, 0x2c, 0xbd, 0x9e, 0x02, 0xb3, 0x8b, 0xbc,
8565 0x78, 0x2a, 0x92, 0x97, 0x16, 0xba, 0xbe, 0xbf, 0x41, 0x73, 0x9b, 0x54,
8566 0xf3, 0xf5, 0xed, 0x0d, 0xfa, 0xa2, 0x80, 0x21, 0x4a, 0xae, 0x4e, 0x08,
8567 0x67, 0x87, 0x23, 0xa7, 0x6e, 0x93, 0x2e, 0xca, 0x25, 0xc0, 0x9e, 0x3a,
8568 0xd2, 0x91, 0x89, 0x24, 0x12, 0x3d, 0x4b, 0x69, 0xd2, 0x5c, 0x0f, 0x83,
8569 0x75, 0x35, 0x21, 0x81, 0x27, 0xad, 0x79, 0xe7, 0xd8, 0x11, 0x97, 0x90,
8570 0x21, 0x28, 0x34, 0xe7, 0xfa, 0x01, 0x33, 0x81, 0x6d, 0x03, 0xea, 0x4d,
8571 0xc7, 0x3d, 0x4c, 0xc8, 0x8e, 0xae, 0x8a, 0xdc, 0x57, 0x15, 0x10, 0xb9,
8572 0x03, 0x69, 0xb0, 0xc1, 0x95, 0x21, 0x49, 0x76, 0x93, 0x16, 0x79, 0x46,
8573 0xc8, 0xf1, 0x37, 0x71, 0x91, 0x52, 0xfa, 0x4c, 0xe7, 0xcd, 0xf9, 0xdb,
8574 0x93, 0x8e, 0x51, 0x99, 0xf1, 0x14, 0x4d, 0x52, 0xe9, 0xf7, 0xe3, 0x25,
8575 0xf0, 0xb8, 0x5b, 0x1a, 0x72, 0xe6, 0x80, 0x72, 0x33, 0xfa, 0x24, 0x9e,
8576 0x7c, 0x6a, 0xd5, 0x83, 0x21, 0x0b, 0x81, 0xdf, 0x02, 0xab, 0x5a, 0x12,
8577 0x6b, 0x38, 0x6f, 0x31, 0x56, 0x26, 0xe3, 0xbc, 0xbd, 0xfc, 0x36, 0xd4,
8578 0x9c, 0x17, 0x7e, 0x87, 0x3b, 0x2e, 0x32, 0x5e, 0x32, 0xd8, 0x39, 0x93,
8579 0x88, 0x7d, 0xb6, 0xe4, 0x88, 0xa7, 0xfd, 0x77, 0x3d, 0xbc, 0x6b, 0xb3,
8580 0x7b, 0x2f, 0xb9, 0x38, 0x99, 0x4e, 0xd6, 0xea, 0xaa, 0xc1, 0x5a, 0x89,
8581 0x16, 0x4a, 0xb5, 0x26, 0xb0, 0x80, 0x94, 0xa9, 0x6e, 0xaf, 0x2c, 0x1f,
8582 0xa8, 0xaa, 0xe5, 0xf3, 0xcd, 0xc7, 0x98, 0xcd, 0x67, 0xf7, 0xf8, 0xc5,
8583 0xe6, 0xef, 0xcc, 0xb7, 0xf9, 0xd3, 0x9d, 0xa7, 0x08, 0x8e, 0x27, 0xcb,
8584 0x8b, 0x6e, 0x4d, 0x28, 0xb3, 0x94, 0x0e, 0xa5, 0xe7, 0x99, 0xaa, 0xbc,
8585 0x07, 0xa1, 0xe7, 0x63, 0x5b, 0x24, 0x6f, 0xcd, 0x5f, 0xcd, 0xbf, 0xb5,
8586 0x9e, 0x0e, 0x41, 0x3b, 0xf5, 0xfa, 0x1b, 0x97, 0xf9, 0x28, 0x75, 0xb3,
8587 0x63, 0xbc, 0x6e, 0xde, 0x4e, 0x0e, 0xb6, 0xb9, 0x6a, 0x69, 0xb4, 0xd6,
8588 0x46, 0xb1, 0x5d, 0x69, 0x22, 0xac, 0x71, 0xb0, 0xb4, 0x40, 0x78, 0x74,
8589 0x9b, 0x7b, 0x21, 0x5f, 0xea, 0xba, 0xc8, 0x70, 0xdd, 0x96, 0xfe, 0xd2,
8590 0x36, 0x17, 0xcd, 0xe8, 0x96, 0xdc, 0x60, 0x99, 0x3b, 0x00, 0x9b, 0x04,
8591 0x21, 0x2d, 0x72, 0xf4, 0x4e, 0x04, 0x53, 0x51, 0x7d, 0xa2, 0x54, 0xb0,
8592 0x4d, 0x2d, 0xcc, 0x30, 0x8f, 0xd9, 0x28, 0x09, 0xd9, 0x58, 0xaa, 0x0c,
8593 0xa4, 0xa8, 0x92, 0x3b, 0xa7, 0x87, 0x34, 0x04, 0x83, 0x7e, 0x83, 0x15,
8594 0x08, 0x6c, 0x91, 0x53, 0xc7, 0xea, 0x1b, 0x02, 0x37, 0xb9, 0x61, 0x7c,
8595 0x7c, 0x2e, 0x9b, 0xb0, 0x7b, 0x61, 0xbc, 0x4d, 0xde, 0x71, 0x96, 0xd9,
8596 0x51, 0x3a, 0x7b, 0x21, 0xdd, 0x06, 0xa2, 0xe8, 0x6b, 0x9d, 0x85, 0x26,
8597 0x7a, 0x18, 0xac, 0x67, 0x74, 0x76, 0x47, 0x8e, 0xbb, 0xdb, 0x1b, 0x8e,
8598 0xdc, 0xdd, 0x5d, 0xfd, 0x4b, 0x2f, 0x2e, 0x47, 0x69, 0x2a, 0x7a, 0x25,
8599 0xfa, 0xf0, 0x31, 0xdb, 0x63, 0x7a, 0x1f, 0x04, 0x0b, 0xb7, 0x3b, 0x41,
8600 0xbb, 0x8e, 0xb7, 0xd0, 0x38, 0xe7, 0x92, 0x45, 0x4e, 0x49, 0xa3, 0x5c,
8601 0x4c, 0xce, 0xcb, 0x22, 0x64, 0x00, 0x09, 0x7a, 0x01, 0xe7, 0xfb, 0x25,
8602 0x25, 0x02, 0xcc, 0xd5, 0x82, 0xe6, 0x79, 0x7b, 0x7b, 0xbb, 0xdd, 0xaf,
8603 0x45, 0xcc, 0x99, 0x0c, 0x3d, 0x84, 0xfe, 0x2f, 0x2b, 0x52, 0x18, 0xe0,
8604 0x99, 0x9d, 0xfe, 0x92, 0xd3, 0xb5, 0xdc, 0x3d, 0x10, 0xc2, 0x8d, 0x7a,
8605 0xcc, 0x47, 0x82, 0x47, 0xfe, 0x74, 0xd9, 0x70, 0xcd, 0x5f, 0xc1, 0x51,
8606 0xdf, 0x7c, 0xa4, 0xe5, 0x1b, 0xd0, 0xd1, 0xdc, 0xe8, 0x4f, 0x03, 0xf7,
8607 0x3e, 0xcb, 0x7b, 0xf1, 0x74, 0x9e, 0xb5, 0xb4, 0x58, 0x7c, 0xc5, 0xf6,
8608 0x3f, 0xb1, 0xde, 0xd1, 0xd9, 0xc5, 0x3b, 0x42, 0x5d, 0x86, 0xf9, 0x61,
8609 0xe7, 0x63, 0xca, 0x56, 0xc2, 0x9f, 0x91, 0xbd, 0xc6, 0x6e, 0x02, 0x4a,
8610 0x93, 0x1b, 0xfb, 0xc8, 0x40, 0x1c, 0x5d, 0xc7, 0x6a, 0x26, 0x0d, 0xa3,
8611 0x70, 0xee, 0xa0, 0x63, 0x21, 0x03, 0x63, 0x38, 0xa0, 0x15, 0x7c, 0xaf,
8612 0xaa, 0xa1, 0xdb, 0xbc, 0x8e, 0xe0, 0xab, 0xf6, 0xdb, 0x74, 0xb9, 0x11,
8613 0x90, 0xb2, 0x8e, 0x5d, 0x7b, 0xd7, 0x34, 0x53, 0xca, 0xb5, 0x73, 0x92,
8614 0x57, 0x16, 0x59, 0x25, 0xa6, 0x65, 0x93, 0x38, 0x40, 0x4c, 0xac, 0x5d,
8615 0xd2, 0xc5, 0x24, 0x59, 0x8b, 0x76, 0x45, 0x41, 0xa4, 0x56, 0xd7, 0x0d,
8616 0x99, 0xd4, 0x2b, 0x03, 0x4e, 0xc2, 0x7b, 0xd9, 0x3c, 0x6b, 0x36, 0x67,
8617 0xd0, 0xd1, 0x42, 0x55, 0xf2, 0x5e, 0xc7, 0x91, 0xa5, 0xfd, 0x92, 0x74,
8618 0xd1, 0xb0, 0xb7, 0xcb, 0x58, 0xe5, 0x5d, 0x97, 0xbf, 0x3a, 0x5c, 0xa0,
8619 0xec, 0x6c, 0x7c, 0x41, 0x18, 0x85, 0xf5, 0x68, 0x7e, 0x82, 0x60, 0x23,
8620 0x27, 0x0e, 0x20, 0x3d, 0x22, 0x7c, 0x24, 0xf1, 0x0c, 0x94, 0xbb, 0x4c,
8621 0x2b, 0xcd, 0x08, 0xb9, 0xbf, 0x4c, 0xbd, 0xca, 0x8a, 0x45, 0x2c, 0xb2,
8622 0xdc, 0x69, 0x41, 0x1c, 0x35, 0xeb, 0xcf, 0xf8, 0x33, 0x78, 0xc7, 0xb8,
8623 0xc3, 0x87, 0x0a, 0xe6, 0xe9, 0x75, 0x92, 0xb1, 0x94, 0x6d, 0xc0, 0x01,
8624 0x11, 0x4e, 0x71, 0x12, 0x19, 0x2e, 0x43, 0x18, 0x90, 0x41, 0xf4, 0x77,
8625 0x61, 0x3b, 0x74, 0x98, 0x82, 0x9f, 0x9f, 0xac, 0x05, 0x1c, 0x29, 0xca,
8626 0x76, 0xd8, 0x45, 0xea, 0xc9, 0x62, 0xa1, 0xc4, 0x78, 0x84, 0x18, 0x54,
8627 0xf6, 0x1b, 0x0c, 0x1d, 0x49, 0x77, 0x7b, 0xc7, 0x5e, 0x09, 0xcd, 0x6e,
8628 0x6c, 0x4e, 0x1a, 0xcc, 0xca, 0x10, 0x30, 0x58, 0x07, 0xa5, 0x3b, 0x2d,
8629 0x9a, 0x35, 0x59, 0xc8, 0x57, 0xce, 0x65, 0x2b, 0x9a, 0x92, 0x82, 0xf0,
8630 0x53, 0x71, 0x33, 0x1a, 0xc5, 0x28, 0x7c, 0x3d, 0xad, 0x74, 0x51, 0x0a,
8631 0x88, 0x22, 0x7f, 0x93, 0x90, 0x83, 0x33, 0x2a, 0x26, 0xab, 0x6f, 0xe5,
8632 0x13, 0x98, 0x5d, 0x46, 0x5c, 0x49, 0xa7, 0xf9, 0x43, 0x97, 0x5d, 0x15,
8633 0x57, 0x98, 0x3e, 0xd0, 0x1b, 0xd6, 0x61, 0xcd, 0x5c, 0x0c, 0xa8, 0x36,
8634 0xfe, 0x33, 0x79, 0xe2, 0x94, 0xe8, 0x66, 0x21, 0xa3, 0x24, 0xcd, 0xcd,
8635 0xd4, 0x9e, 0x5d, 0x1e, 0x5f, 0x38, 0x05, 0x37, 0xfd, 0x90, 0x86, 0x6a,
8636 0xd3, 0x66, 0xb5, 0xb7, 0x2c, 0xfc, 0x60, 0xb6, 0xac, 0x11, 0xd6, 0x6f,
8637 0xb7, 0x3b, 0x76, 0x21, 0xce, 0x06, 0x99, 0x1f, 0x3e, 0x61, 0x73, 0xec,
8638 0x80, 0xab, 0x02, 0xb6, 0xb8, 0x38, 0x5e, 0x8d, 0xdd, 0xc9, 0x1e, 0x75,
8639 0x91, 0xbc, 0xf3, 0xef, 0x91, 0x77, 0xf5, 0x6b, 0xc4, 0x92, 0xd8, 0x43,
8640 0x15, 0x0a, 0x88, 0xb0, 0x07, 0xaf, 0x0f, 0x1c, 0x1e, 0xab, 0xc4, 0x2e,
8641 0xde, 0xf9, 0x98, 0x47, 0xe2, 0xe0, 0xc3, 0x7b, 0xeb, 0xe1, 0x0b, 0xc4,
8642 0xfa, 0xe7, 0xf8, 0x67, 0x4d, 0x43, 0xe4, 0x37, 0xbe, 0x3d, 0xb2, 0x79,
8643 0xb6, 0x3a, 0x6a, 0x1a, 0x5d, 0x12, 0xfe, 0xdd, 0x91, 0x79, 0x57, 0x87,
8644 0x9c, 0x9c, 0xdf, 0xe6, 0xf2, 0xc0, 0x4f, 0x9a, 0x63, 0x3d, 0x4b, 0x7c,
8645 0xd0, 0xf7, 0x73, 0x13, 0xc6, 0xe4, 0xf2, 0x56, 0xc4, 0xeb, 0x63, 0x64,
8646 0x5e, 0x79, 0x2b, 0xa2, 0xb7, 0x54, 0x50, 0x6b, 0x1b, 0xc7, 0xd9, 0x82,
8647 0x22, 0x6c, 0x9e, 0xef, 0xdb, 0x9e, 0xdd, 0x98, 0x41, 0x02, 0x09, 0x3e,
8648 0x2a, 0x2e, 0x32, 0xa9, 0xda, 0x1e, 0x47, 0x6e, 0x5e, 0x34, 0x6a, 0xc5,
8649 0x46, 0x40, 0x50, 0xa5, 0xb2, 0xa7, 0x01, 0x97, 0x29, 0xc1, 0xac, 0x04,
8650 0x7d, 0x42, 0x74, 0xec, 0x0d, 0x11, 0xb9, 0x9e, 0xb6, 0xf5, 0xe4, 0xbb,
8651 0x07, 0x5f, 0x5c, 0x95, 0xed, 0xc7, 0xbe, 0x4e, 0x32, 0x3e, 0xfb, 0xe6,
8652 0x1c, 0x35, 0x28, 0x43, 0xf0, 0x5f, 0x4f, 0xe0, 0xaa, 0xc6, 0x37, 0x7a,
8653 0x39, 0x37, 0x56, 0x78, 0x3a, 0x16, 0x0a, 0x73, 0x5b, 0xd9, 0x35, 0x54,
8654 0xab, 0xe7, 0xc5, 0x3d, 0xf7, 0x18, 0x43, 0x8e, 0x44, 0x3a, 0x0e, 0x42,
8655 0xf5, 0xa9, 0xe8, 0xc0, 0x19, 0xaf, 0x95, 0x0a, 0x30, 0x83, 0x87, 0x5d,
8656 0xe1, 0x35, 0x4f, 0x5f, 0x51, 0xc3, 0x66, 0xbc, 0xa5, 0x22, 0xec, 0xb7,
8657 0xd2, 0x22, 0x3c, 0x28, 0x11, 0x52, 0xd3, 0x5c, 0xd8, 0x87, 0x4b, 0x88,
8658 0xc4, 0x36, 0xe3, 0x8a, 0xdb, 0x3e, 0x3b, 0x62, 0x9c, 0x73, 0x43, 0x30,
8659 0xe5, 0x39, 0x50, 0x49, 0xc0, 0x4e, 0x1b, 0xb4, 0x5d, 0x09, 0xda, 0xe7,
8660 0x7a, 0x01, 0xc7, 0x00, 0xf5, 0x50, 0x6e, 0x77, 0xc8, 0xa5, 0x22, 0x39,
8661 0xda, 0xb3, 0x74, 0x1b, 0xe1, 0x84, 0x9d, 0x19, 0x97, 0x01, 0x74, 0x61,
8662 0x82, 0xcf, 0x4c, 0x66, 0x52, 0xb5, 0x3d, 0x2c, 0xf2, 0x4f, 0x09, 0x4b,
8663 0x35, 0xf2, 0xb7, 0x10, 0x94, 0x3e, 0x5b, 0x6e, 0x52, 0x21, 0x08, 0x8a,
8664 0x83, 0xf4, 0x19, 0x99, 0xc5, 0xf7, 0x9e, 0x83, 0x88, 0xce, 0xb6, 0x42,
8665 0xe4, 0x59, 0xf5, 0x22, 0xa5, 0xd7, 0x09, 0x9b, 0x8e, 0xcc, 0x5b, 0x79,
8666 0x00, 0xec, 0x64, 0xcc, 0x32, 0xfd, 0x17, 0x5e, 0x69, 0x66, 0xd7, 0xdd,
8667 0x2b, 0x2d, 0xb0, 0xa5, 0xab, 0x73, 0xb4, 0x1d, 0x79, 0x25, 0x1e, 0xae,
8668 0x35, 0xf5, 0xa9, 0xb3, 0x28, 0x05, 0x4f, 0xa2, 0x43, 0x3e, 0x2d, 0x77,
8669 0xf7, 0x54, 0x6c, 0xdd, 0x8c, 0x90, 0x1c, 0x63, 0xd2, 0x5f, 0x4f, 0xbd,
8670 0x26, 0xe3, 0x48, 0xf2, 0xf6, 0xc8, 0x39, 0xa6, 0xbe, 0x04, 0xce, 0x00,
8671 0x46, 0x1f, 0xa1, 0x71, 0xb3, 0xd0, 0x80, 0x08, 0x3d, 0xe8, 0x15, 0x10,
8672 0x52, 0x5e, 0x90, 0x75, 0xff, 0x93, 0xa3, 0x8f, 0xfc, 0x09, 0xb8, 0xef,
8673 0x04, 0x67, 0x2b, 0x95, 0x61, 0x0a, 0xf6, 0xfd, 0x9f, 0xd8, 0x8f, 0x27,
8674 0xc6, 0x14, 0x88, 0xa4, 0x68, 0xb2, 0x97, 0xf4, 0x37, 0xd1, 0x6e, 0x36,
8675 0x7c, 0x18, 0x68, 0x62, 0x02, 0x5b, 0x65, 0xc0, 0x54, 0xb1, 0xed, 0xb6,
8676 0xab, 0xcd, 0xd3, 0x04, 0x9b, 0x0a, 0xd2, 0x09, 0x7a, 0x62, 0x68, 0xdb,
8677 0x15, 0x53, 0x91, 0x56, 0x4b, 0xa5, 0xb7, 0xf8, 0x05, 0xca, 0xd5, 0x14,
8678 0x5f, 0x66, 0xac, 0x49, 0x98, 0xb6, 0xc7, 0x8a, 0x17, 0xa6, 0xa3, 0xfe,
8679 0x3b, 0x7c, 0x03, 0xe1, 0xa4, 0x24, 0xd9, 0x11, 0xfd, 0x07, 0xda, 0x77,
8680 0x87, 0x3f, 0x46, 0x3d, 0x3b, 0x1b, 0xe9, 0x63, 0xa1, 0x8c, 0x9d, 0x29,
8681 0x7b, 0x0f, 0xe9, 0x84, 0xd2, 0x8c, 0xd8, 0x37, 0x83, 0x3f, 0xed, 0xda,
8682 0xbf, 0x1e, 0xbc, 0xd8, 0x62, 0x74, 0x44, 0x34, 0xd9, 0xfb, 0xf6, 0x89,
8683 0x66, 0xfc, 0x06, 0x2e, 0x1a, 0xea, 0x33, 0x06, 0x0f, 0xc1, 0x7f, 0xcd,
8684 0x73, 0x2d, 0x7d, 0xc7, 0x31, 0xf3, 0x6b, 0x17, 0xd3, 0x2e, 0xea, 0x00,
8685 0xbb, 0xf5, 0xb2, 0xad, 0x90, 0xc7, 0x36, 0x58, 0x36, 0x34, 0x76, 0x34,
8686 0x27, 0x66, 0xc3, 0xf5, 0xb5, 0x2c, 0xff, 0x48, 0x7f, 0x65, 0xaf, 0xe7,
8687 0xda, 0xbb, 0xf3, 0x8f, 0x17, 0xef, 0xcf, 0xbf, 0xfb, 0xdb, 0xda, 0x46,
8688 0xdf, 0x54, 0xd7, 0x16, 0xc9, 0x9a, 0x9f, 0x4c, 0x1e, 0xd5, 0x3e, 0x6b,
8689 0x3d, 0xc5, 0xfc, 0x0d, 0x0e, 0xc9, 0x0a, 0x3f, 0xaa, 0xb3, 0x86, 0x71,
8690 0x79, 0x50, 0x06, 0x7a, 0xd1, 0x6a, 0x9a, 0x0c, 0x6d, 0x3b, 0x30, 0x73,
8691 0xa7, 0x83, 0x7f, 0xea, 0x1a, 0x61, 0xa3, 0x56, 0x3f, 0xb7, 0x3c, 0x60,
8692 0xc7, 0xe9, 0xbc, 0xd2, 0x59, 0xed, 0x00, 0xdf, 0x75, 0x35, 0xce, 0x59,
8693 0x3b, 0xbd, 0xd5, 0x74, 0xd6, 0xbb, 0x1d, 0x3e, 0x10, 0xfb, 0xbf, 0x3c,
8694 0x7b, 0x0b, 0xca, 0x04, 0x16, 0x66, 0x0b, 0x36, 0x45, 0x75, 0x3f, 0x4d,
8695 0xe4, 0x6d, 0xba, 0xf5, 0x39, 0xea, 0x74, 0x4d, 0x4e, 0xbd, 0x1b, 0x4f,
8696 0x7d, 0x09, 0x96, 0xdf, 0x18, 0xb0, 0x12, 0x71, 0xa4, 0x6a, 0xc3, 0x16,
8697 0x18, 0x92, 0x03, 0xb3, 0xb6, 0x6f, 0x41, 0x4b, 0xf9, 0x4d, 0x72, 0x07,
8698 0xc2, 0x88, 0x2a, 0x99, 0xd1, 0xb8, 0x44, 0x1c, 0xb6, 0x27, 0xc4, 0x01,
8699 0x79, 0xfd, 0xbf, 0xb0, 0xd8, 0x9b, 0x09, 0x51, 0x0b, 0x25, 0xc3, 0x0f,
8700 0x9a, 0x74, 0x6e, 0x92, 0x95, 0xe9, 0xea, 0x05, 0x65, 0xb8, 0xea, 0x22,
8701 0xf4, 0x3b, 0x2f, 0x4f, 0x93, 0x6a, 0x1b, 0x51, 0xe3, 0x84, 0x83, 0x63,
8702 0x7a, 0x66, 0xbd, 0x4d, 0x47, 0x45, 0x5e, 0xe6, 0x13, 0x29, 0x97, 0xb5,
8703 0x3e, 0xa0, 0xd3, 0xd3, 0x41, 0x74, 0x9b, 0x0c, 0x15, 0xe9, 0xa5, 0xef,
8704 0x07, 0x5c, 0xd1, 0x09, 0x4d, 0xa9, 0x08, 0x45, 0x9a, 0x54, 0xb8, 0x1b,
8705 0x5a, 0xc5, 0x87, 0x08, 0xce, 0xf8, 0x4e, 0x22, 0xc0, 0x9f, 0x89, 0xf4,
8706 0xf4, 0x1d, 0x4d, 0xe9, 0x86, 0x8f, 0xe6, 0x89, 0x7f, 0x02, 0xa6, 0xac,
8707 0xeb, 0x98, 0xeb, 0xd9, 0x49, 0x94, 0x21, 0x24, 0x2e, 0x31, 0x36, 0xd3,
8708 0x02, 0xa5, 0x2b, 0xda, 0x12, 0xe2, 0x06, 0xff, 0x84, 0x61, 0x98, 0x7c,
8709 0xe2, 0x85, 0x89, 0xa5, 0xf8, 0x44, 0x34, 0x0b, 0x14, 0x39, 0x43, 0x94,
8710 0x14, 0xe3, 0xbc, 0xa0, 0xb4, 0x43, 0x3c, 0x93, 0x5a, 0x73, 0x94, 0x64,
8711 0xa3, 0x7c, 0x51, 0x60, 0x7d, 0x3c, 0x77, 0x95, 0xf3, 0x1b, 0xb6, 0xde,
8712 0x5e, 0x33, 0x2a, 0x9b, 0xee, 0x82, 0x55, 0xad, 0xa9, 0x1c, 0x5b, 0xba,
8713 0x57, 0x31, 0xd0, 0x9f, 0x5e, 0xdc, 0x0f, 0x95, 0x8c, 0xcb, 0x7e, 0x58,
8714 0x98, 0x14, 0x3c, 0x31, 0xb0, 0x39, 0xaf, 0xd2, 0xab, 0x10, 0x64, 0xc9,
8715 0xe9, 0xc4, 0x22, 0xd9, 0x59, 0xdd, 0x95, 0x66, 0x23, 0xaa, 0x47, 0x21,
8716 0x62, 0xa4, 0xc1, 0x06, 0x9c, 0xa1, 0x9c, 0x05, 0xb0, 0x05, 0xc3, 0xdc,
8717 0xf7, 0x6f, 0x94, 0xc2, 0x81, 0xa7, 0xe0, 0x17, 0x1d, 0xb5, 0xfa, 0x12,
8718 0xcd, 0xc9, 0x72, 0x5a, 0xd3, 0xd7, 0xcc, 0x35, 0x35, 0xcf, 0x3c, 0x14,
8719 0x3f, 0xc7, 0xcf, 0x1a, 0xb6, 0xd6, 0x5a, 0x42, 0xcc, 0x9c, 0x48, 0x12,
8720 0x28, 0x44, 0x72, 0xf3, 0x53, 0xa4, 0xf9, 0x01, 0x6d, 0xbb, 0x56, 0xf8,
8721 0x72, 0xba, 0x89, 0x2b, 0x12, 0x72, 0xfc, 0xc1, 0x4e, 0x6f, 0x98, 0x80,
8722 0xae, 0x5d, 0x44, 0x87, 0x15, 0x2a, 0xb4, 0xe1, 0xfa, 0x5e, 0x2a, 0xef,
8723 0xa5, 0xba, 0x56, 0x2a, 0x1f, 0x92, 0x04, 0x5e, 0x27, 0x41, 0xfe, 0x2b,
8724 0x1e, 0x23, 0xba, 0x24, 0xa5, 0x98, 0x73, 0x24, 0xcf, 0xb1, 0x7e, 0xb3,
8725 0x31, 0xdc, 0x0e, 0x36, 0x86, 0x0e, 0x17, 0xf9, 0x92, 0xd4, 0x91, 0x71,
8726 0x78, 0x18, 0x95, 0x1c, 0x78, 0x68, 0xf3, 0xec, 0xa7, 0x45, 0x36, 0x0a,
8727 0x72, 0xbd, 0xb1, 0xe7, 0x6d, 0x22, 0x12, 0xab, 0x32, 0x52, 0x25, 0x56,
8728 0x2b, 0x50, 0x21, 0xe8, 0x24, 0x83, 0xe3, 0xea, 0xd9, 0x91, 0xe4, 0x58,
8729 0x2a, 0x34, 0x9d, 0x42, 0xa3, 0x63, 0xc1, 0xaa, 0xb4, 0xc6, 0x92, 0x05,
8730 0xc8, 0x56, 0x33, 0xa1, 0x0a, 0x8d, 0x4e, 0xd3, 0xb1, 0x1d, 0x8d, 0x08,
8731 0x98, 0x14, 0x53, 0x8f, 0xb1, 0xa8, 0xa5, 0x31, 0xdc, 0xb3, 0xe7, 0xfb,
8732 0x5b, 0xbf, 0x77, 0x1a, 0x70, 0x9d, 0x17, 0x3a, 0xb3, 0xd7, 0x1f, 0x5f,
8733 0xf6, 0xbf, 0xda, 0x9f, 0xf4, 0xf6, 0xfa, 0xdb, 0xff, 0xf5, 0xf7, 0xb7,
8734 0x9d, 0x5f, 0x92, 0xec, 0x54, 0xe3, 0xc6, 0xa5, 0xdd, 0xbd, 0xd9, 0x7b,
8735 0x80, 0x50, 0x5d, 0xd1, 0x21, 0xfc, 0xf1, 0xc5, 0xb2, 0x84, 0x3e, 0xdd,
8736 0x55, 0xd6, 0xd7, 0x6a, 0x4d, 0x04, 0x55, 0x93, 0x15, 0xf4, 0x30, 0x95,
8737 0xc9, 0x3e, 0x90, 0x33, 0x75, 0x28, 0xec, 0xf2, 0xed, 0x8d, 0x15, 0xf1,
8738 0x33, 0xb0, 0xa6, 0x7a, 0x5a, 0xb9, 0xa4, 0xd3, 0xa1, 0xbd, 0x0c, 0x92,
8739 0xd4, 0x01, 0xbb, 0x54, 0xc7, 0x87, 0x33, 0x8f, 0xd2, 0xe6, 0x4e, 0xa0,
8740 0x36, 0xff, 0xe1, 0xfd, 0x99, 0xc4, 0x1c, 0xf9, 0xc9, 0x70, 0x32, 0x9c,
8741 0x71, 0x80, 0xd6, 0x3a, 0xdd, 0x60, 0xba, 0xff, 0x02, 0x4e, 0xca, 0xd4,
8742 0x11, 0x89, 0xcb, 0x21, 0x5c, 0x1b, 0xa9, 0xbe, 0xd4, 0x93, 0xdb, 0x99,
8743 0x9c, 0xc1, 0x8c, 0x23, 0xc4, 0x2f, 0x66, 0x23, 0x1b, 0xbc, 0x0c, 0x39,
8744 0xc0, 0xa9, 0xdb, 0xb6, 0xe0, 0x75, 0xf6, 0x7a, 0x98, 0x31, 0x0c, 0xa4,
8745 0xa2, 0xac, 0x71, 0x8a, 0x1b, 0x33, 0x84, 0xe3, 0xa3, 0x93, 0xd9, 0x4d,
8746 0x25, 0x5b, 0x93, 0x8d, 0xed, 0x9c, 0x69, 0xb2, 0x1e, 0x89, 0x70, 0xf2,
8747 0xbf, 0x88, 0xcd, 0x2d, 0x87, 0x75, 0xaa, 0xd9, 0xbc, 0x13, 0xf5, 0xce,
8748 0x57, 0x63, 0xed, 0xf3, 0x6e, 0x83, 0x53, 0x88, 0xb9, 0xff, 0x8b, 0xa0,
8749 0x94, 0xe4, 0xc7, 0x0c, 0x06, 0xd3, 0xe3, 0x02, 0x3f, 0x66, 0x77, 0x3f,
8750 0xb5, 0xfa, 0x79, 0xff, 0x79, 0x9d, 0xf9, 0xf3, 0xae, 0xe5, 0xb8, 0x20,
8751 0xe8, 0xf1, 0xb7, 0x05, 0xe2, 0x19, 0x69, 0x24, 0x24, 0x97, 0x87, 0x5c,
8752 0xcc, 0xb8, 0xb2, 0x1a, 0x63, 0x86, 0xb2, 0xde, 0xeb, 0xcc, 0xb7, 0x28,
8753 0x75, 0xfe, 0xf1, 0x4f, 0xdf, 0x05, 0xf7, 0xfd, 0x8f, 0x54, 0x5e, 0x91,
8754 0xa0, 0xc6, 0x61, 0xb6, 0x43, 0x55, 0x8d, 0xb2, 0xa6, 0xcd, 0x30, 0xfa,
8755 0x98, 0xdb, 0x3d, 0xd5, 0xc7, 0x50, 0xa6, 0xee, 0xc4, 0xe4, 0x49, 0x59,
8756 0xfb, 0xc3, 0x9a, 0x44, 0xbf, 0x35, 0xf0, 0x27, 0xd5, 0x1d, 0xa2, 0xba,
8757 0xcb, 0xbc, 0x75, 0xa7, 0xa9, 0xff, 0xb6, 0x17, 0x12, 0x32, 0xb6, 0x8f,
8758 0x6e, 0x76, 0x91, 0x10, 0x4e, 0x8f, 0x53, 0x67, 0x2b, 0x8d, 0x46, 0x0c,
8759 0x30, 0xfd, 0x44, 0xcd, 0x51, 0x9c, 0xa5, 0xa7, 0xbb, 0xe1, 0x23, 0xb4,
8760 0x58, 0x34, 0xd5, 0x09, 0x00, 0x2b, 0xcd, 0x5a, 0x02, 0xd5, 0x1d, 0x64,
8761 0x08, 0xe0, 0x87, 0x7f, 0x80, 0x4c, 0xed, 0x56, 0xb7, 0xf9, 0x3f, 0xdd,
8762 0x60, 0x71, 0x07, 0x3d, 0x70, 0x1d, 0x5c, 0xc2, 0xc7, 0x3f, 0x6c, 0x23,
8763 0x64, 0x82, 0x97, 0x49, 0x02, 0xd3, 0x58, 0x10, 0x96, 0x07, 0x0b, 0x6a,
8764 0x63, 0x3d, 0x2e, 0xeb, 0x74, 0x69, 0x3e, 0x89, 0x98, 0x55, 0x5d, 0xb4,
8765 0xa7, 0xff, 0xd9, 0xc7, 0x3f, 0xbf, 0xdf, 0xee, 0xed, 0xff, 0x68, 0x3f,
8766 0xfb, 0x87, 0xed, 0x8f, 0x7f, 0xd8, 0xe9, 0x84, 0xd0, 0x30, 0x1c, 0x14,
8767 0x3c, 0xa7, 0x96, 0xa0, 0xe4, 0x32, 0x17, 0xae, 0x24, 0x95, 0x2c, 0x3a,
8768 0x5b, 0x6a, 0x43, 0x12, 0xc9, 0xdf, 0x49, 0x0c, 0xc4, 0x35, 0x4c, 0x78,
8769 0xc1, 0x23, 0xd6, 0x6c, 0x4d, 0xa0, 0x09, 0xbf, 0x2c, 0xb2, 0x4a, 0x5a,
8770 0x02, 0x89, 0xc8, 0xf2, 0x34, 0x1d, 0x14, 0x60, 0xf7, 0x0e, 0x62, 0x07,
8771 0xa2, 0xa8, 0x2a, 0xda, 0xa4, 0x4f, 0x0f, 0x39, 0xa9, 0xa0, 0x03, 0xc7,
8772 0x51, 0x2d, 0xf2, 0x9e, 0x47, 0xc3, 0x61, 0xe4, 0x04, 0xdc, 0x3f, 0x0b,
8773 0xe8, 0x40, 0x22, 0xc8, 0xc8, 0x7b, 0xa6, 0xd1, 0x4d, 0x78, 0xd1, 0x4d,
8774 0xf9, 0x10, 0x36, 0x2e, 0xad, 0x0c, 0xa4, 0x4b, 0xda, 0xf3, 0xc8, 0xfc,
8775 0x84, 0xb9, 0xd6, 0x26, 0x68, 0x2b, 0x32, 0x37, 0x47, 0x09, 0x66, 0xd2,
8776 0x6c, 0xe8, 0x67, 0x7a, 0x24, 0x50, 0x35, 0x24, 0xcd, 0xb8, 0x0c, 0x76,
8777 0xf6, 0x8b, 0x87, 0xa0, 0xc3, 0xd5, 0xa4, 0x3a, 0xd1, 0x83, 0x84, 0xca,
8778 0xd0, 0x42, 0x8b, 0xc7, 0x65, 0x0b, 0x41, 0x5c, 0x52, 0xb8, 0xf5, 0x9d,
8779 0x4c, 0x28, 0x22, 0xce, 0x92, 0x28, 0x35, 0xa7, 0x4f, 0xba, 0x52, 0xdb,
8780 0xd6, 0x25, 0xf1, 0x4f, 0x05, 0xa7, 0x65, 0x64, 0xf1, 0x45, 0xbd, 0x9c,
8781 0x36, 0xbc, 0x6b, 0xc7, 0xf7, 0x20, 0xd6, 0xb8, 0x29, 0x94, 0xe9, 0xc6,
8782 0xa2, 0xee, 0x59, 0xbd, 0x2e, 0xcb, 0x68, 0xad, 0xb7, 0x16, 0xad, 0x3b,
8783 0x9e, 0x2f, 0x6c, 0x73, 0xb7, 0x11, 0xbc, 0x55, 0x4c, 0x24, 0xd3, 0xca,
8784 0x35, 0xed, 0x44, 0x87, 0xfa, 0x30, 0x0b, 0xb4, 0x40, 0x37, 0x72, 0x8e,
8785 0xe6, 0x30, 0x7a, 0x86, 0x83, 0x02, 0x94, 0x8f, 0x53, 0x2a, 0x1a, 0xbc,
8786 0x17, 0xf7, 0xa6, 0xad, 0xd1, 0x32, 0x37, 0xb4, 0x5f, 0x24, 0xb4, 0x39,
8787 0x4e, 0x6e, 0x36, 0xb3, 0xc5, 0x74, 0x7a, 0xf0, 0x08, 0xda, 0x03, 0xa5,
8788 0xcd, 0xf3, 0xcd, 0xc7, 0xcf, 0xd9, 0x65, 0x2b, 0xd9, 0x9a, 0xc4, 0xeb,
8789 0xf0, 0xd8, 0xc1, 0xa3, 0x06, 0x85, 0x07, 0x57, 0xac, 0x85, 0xc9, 0xdb,
8790 0x6b, 0x30, 0x7e, 0x0d, 0xa9, 0xf6, 0xcb, 0xc5, 0xd4, 0x8a, 0xb3, 0xd6,
8791 0xdf, 0xed, 0x84, 0xb2, 0x6b, 0x1e, 0x7f, 0x21, 0x37, 0xfe, 0x89, 0x95,
8792 0xcc, 0x81, 0x3b, 0x3a, 0x88, 0xdf, 0xc6, 0x57, 0xb6, 0xa3, 0x8f, 0x6a,
8793 0xce, 0x4e, 0x2f, 0x9d, 0xcd, 0x80, 0x8f, 0xfc, 0x12, 0x15, 0xae, 0x4a,
8794 0x1c, 0x53, 0xa1, 0x57, 0x64, 0x32, 0x7c, 0x6c, 0x14, 0x23, 0x00, 0x51,
8795 0xa7, 0x49, 0x5f, 0xc1, 0xd6, 0x35, 0x92, 0xf3, 0x20, 0xf7, 0xae, 0xa0,
8796 0x94, 0x32, 0x58, 0x27, 0xaa, 0x67, 0x14, 0x1e, 0x03, 0x5d, 0x90, 0x80,
8797 0x83, 0x6c, 0x78, 0x9c, 0x42, 0x06, 0xf0, 0xf5, 0x9e, 0x1f, 0x51, 0xc1,
8798 0x7c, 0xa3, 0x8a, 0xfb, 0x28, 0xba, 0x98, 0xa7, 0xb7, 0x31, 0xa3, 0x60,
8799 0xdb, 0xf2, 0x15, 0x44, 0xc2, 0xb3, 0xc1, 0x17, 0xb6, 0x9c, 0x9a, 0xc3,
8800 0x91, 0xe2, 0x8e, 0x97, 0x8a, 0xa8, 0x0b, 0x77, 0x68, 0x8f, 0x50, 0x56,
8801 0x07, 0x43, 0x8c, 0x0b, 0xf6, 0x8c, 0x1b, 0xb7, 0xff, 0xbd, 0xbb, 0x19,
8802 0x3c, 0xa0, 0x0e, 0xfa, 0x1b, 0x1c, 0xf5, 0xfe, 0xd7, 0x32, 0xe6, 0xdc,
8803 0x5e, 0xca, 0xb9, 0x2b, 0xa5, 0x80, 0xd9, 0x8f, 0xcf, 0xe2, 0xbb, 0x7a,
8804 0x0c, 0xee, 0x45, 0xdd, 0x2c, 0x72, 0x1f, 0x0c, 0x56, 0xd4, 0x32, 0x1b,
8805 0xc6, 0xe5, 0x27, 0x26, 0xdd, 0x38, 0xb7, 0xbc, 0xe8, 0xb0, 0x22, 0xeb,
8806 0x82, 0xf5, 0xa9, 0x2c, 0x6b, 0x22, 0x88, 0x18, 0xd5, 0x45, 0x3e, 0x2d,
8807 0x6b, 0x15, 0xf0, 0x16, 0x7c, 0xcf, 0x72, 0x0b, 0x7f, 0xb2, 0x4c, 0x91,
8808 0x2f, 0xe2, 0x2c, 0x50, 0x97, 0x58, 0x06, 0xb2, 0x0f, 0x7f, 0x7b, 0x56,
8809 0xf0, 0x8d, 0x35, 0x05, 0x92, 0x81, 0xef, 0x05, 0x2c, 0xee, 0xc7, 0xf2,
8810 0x0a, 0xee, 0xc2, 0xf6, 0xd6, 0x56, 0x1b, 0xa7, 0x4c, 0x56, 0xc0, 0xff,
8811 0xa9, 0xd7, 0xc4, 0xd5, 0x78, 0xa0, 0x1e, 0xa0, 0xaf, 0x3d, 0xd8, 0x5e,
8812 0x46, 0x20, 0x00, 0x18, 0x04, 0x11, 0x69, 0xf7, 0x87, 0xa5, 0x83, 0xb0,
8813 0x1e, 0x61, 0xdf, 0x70, 0x67, 0xce, 0x70, 0x0f, 0xe2, 0x22, 0xb9, 0x42,
8814 0x60, 0x69, 0xf4, 0xd2, 0xa4, 0x31, 0x42, 0xe1, 0xc0, 0x69, 0x2e, 0xfe,
8815 0xdb, 0x9c, 0xe4, 0xdf, 0xe2, 0xf0, 0x9a, 0x49, 0xf1, 0xc1, 0xad, 0x35,
8816 0x16, 0x59, 0xb2, 0x67, 0x3d, 0xf4, 0x2f, 0x46, 0x87, 0xf3, 0xeb, 0x22,
8817 0x2e, 0xfd, 0x3e, 0x77, 0x83, 0xc1, 0x9b, 0x88, 0x02, 0xe8, 0x17, 0xf0,
8818 0x14, 0x3f, 0x63, 0x34, 0x4b, 0xa7, 0x2f, 0xd7, 0xef, 0xed, 0x17, 0xa2,
8819 0x35, 0x70, 0xce, 0xbc, 0xb4, 0x91, 0x5a, 0xbd, 0xf2, 0x93, 0x5e, 0x6b,
8820 0x4d, 0x7a, 0xef, 0x61, 0x9d, 0x59, 0x2f, 0x2e, 0x7b, 0x9e, 0x1c, 0xba,
8821 0x6c, 0xa2, 0x44, 0x62, 0x78, 0x07, 0x41, 0x19, 0x30, 0xff, 0x3b, 0x43,
8822 0x3c, 0x75, 0x60, 0x99, 0xcd, 0x7e, 0x7f, 0x13, 0x6d, 0xae, 0x4d, 0xf8,
8823 0x8f, 0x16, 0xc6, 0x88, 0x57, 0xa6, 0x31, 0x1c, 0xa5, 0xaf, 0xe3, 0xc7,
8824 0x08, 0x92, 0x1a, 0x13, 0x1c, 0xa7, 0xf7, 0x2e, 0x50, 0xd2, 0xdf, 0x17,
8825 0xd8, 0x8d, 0x19, 0x51, 0x7b, 0x92, 0x82, 0xe0, 0x47, 0x93, 0x59, 0xcd,
8826 0x73, 0xe7, 0x79, 0x8f, 0x38, 0xd1, 0xb1, 0x14, 0xe0, 0x64, 0x32, 0x4b,
8827 0x6b, 0x6d, 0x80, 0x39, 0x78, 0x8f, 0x8b, 0x48, 0x2b, 0x8d, 0x2a, 0x13,
8828 0x2a, 0x6d, 0xfc, 0x04, 0xf6, 0x56, 0x1a, 0x85, 0x48, 0x8f, 0x34, 0x80,
8829 0xff, 0x0f, 0xe6, 0xed, 0x26, 0xf9, 0xb4, 0xc7, 0x4b, 0x71, 0x1f, 0x29,
8830 0x79, 0xbe, 0xc7, 0x3e, 0xa1, 0x1a, 0xff, 0xee, 0xed, 0x34, 0xf8, 0x37,
8831 0x85, 0xa3, 0x3f, 0x9e, 0x2f, 0x86, 0xd4, 0x08, 0xf0, 0x1a, 0xa8, 0x13,
8832 0x40, 0x4d, 0x21, 0x1e, 0xae, 0x17, 0x28, 0xb0, 0x1f, 0x80, 0x2d, 0x43,
8833 0x73, 0xf0, 0x35, 0xa2, 0x41, 0xcd, 0xe6, 0xa4, 0x8e, 0x69, 0xdd, 0xf3,
8834 0x4a, 0xf0, 0x47, 0xb8, 0xb8, 0x90, 0xe1, 0x89, 0xd8, 0xbf, 0x3c, 0x4f,
8835 0xd8, 0x51, 0x90, 0x9a, 0xd6, 0xca, 0x31, 0xd7, 0x27, 0x52, 0xb0, 0x84,
8836 0x46, 0x23, 0xa7, 0x9f, 0x8f, 0xd9, 0xcd, 0xb1, 0x6b, 0x93, 0xb8, 0x2e,
8837 0xb3, 0x90, 0x76, 0x83, 0xd8, 0xc4, 0x11, 0x36, 0x1c, 0x9b, 0x26, 0xb2,
8838 0xb7, 0x96, 0xfb, 0x73, 0x83, 0xcd, 0xcc, 0x66, 0xb2, 0xd7, 0xa4, 0x94,
8839 0x02, 0x47, 0xcf, 0xf6, 0x28, 0xbe, 0x83, 0x74, 0x2b, 0xaf, 0xe3, 0x9d,
8840 0xfd, 0x67, 0x32, 0x6d, 0xed, 0x41, 0x42, 0x6e, 0x8f, 0x35, 0xfe, 0xd5,
8841 0xe6, 0x26, 0x47, 0x81, 0x31, 0xca, 0xe8, 0x59, 0x54, 0x94, 0x88, 0x80,
8842 0xcf, 0xfe, 0x79, 0x2d, 0x5c, 0x07, 0xac, 0x1e, 0x7d, 0x8e, 0xfd, 0x62,
8843 0x56, 0x1e, 0xf5, 0x42, 0x3c, 0x73, 0x74, 0xac, 0xae, 0x52, 0x9a, 0x9d,
8844 0xea, 0x82, 0x11, 0xec, 0xe1, 0x27, 0xbb, 0xed, 0xe0, 0x22, 0x81, 0x60,
8845 0x26, 0xad, 0x15, 0xaf, 0x0a, 0x85, 0x1f, 0xc4, 0x46, 0x7f, 0x2e, 0x81,
8846 0x30, 0xc2, 0x59, 0x51, 0xc2, 0x82, 0x87, 0x6b, 0xc2, 0xc5, 0xbd, 0xb8,
8847 0x1d, 0xce, 0xc0, 0x82, 0x8e, 0x9b, 0x56, 0xae, 0x83, 0x91, 0xf3, 0x6f,
8848 0x39, 0xca, 0xcf, 0x75, 0xa5, 0x8b, 0xa1, 0x87, 0xcb, 0xa6, 0x8c, 0x61,
8849 0x9a, 0xf2, 0x51, 0x70, 0xd6, 0x29, 0x7f, 0xb6, 0xe7, 0xd4, 0x42, 0x99,
8850 0x59, 0x22, 0x2c, 0xed, 0xdd, 0x1d, 0x19, 0xf0, 0x32, 0x86, 0xbf, 0xba,
8851 0xa7, 0x0c, 0x60, 0x8f, 0xe0, 0xc0, 0x0b, 0x9b, 0xc8, 0x08, 0x12, 0x84,
8852 0xf1, 0x8c, 0xc1, 0xe7, 0xfd, 0xdd, 0x97, 0xfd, 0xad, 0x03, 0xed, 0xdf,
8853 0xd8, 0x8d, 0xbe, 0xce, 0x16, 0xb8, 0x23, 0xb8, 0xe8, 0xaf, 0x07, 0x7f,
8854 0x49, 0x2b, 0xff, 0x85, 0xbd, 0x5d, 0x7c, 0xe1, 0xdd, 0x80, 0x1f, 0xba,
8855 0xcd, 0xa7, 0x13, 0x78, 0x31, 0xf0, 0xd8, 0x73, 0x7c, 0x0c, 0xf8, 0x6d,
8856 0x5c, 0x79, 0xc0, 0x7e, 0xc2, 0x60, 0xed, 0x93, 0xda, 0xdb, 0x0b, 0x4c,
8857 0xaa, 0xbb, 0xea, 0x47, 0x9b, 0x96, 0x2c, 0x29, 0xf2, 0xc8, 0x68, 0xc3,
8858 0x78, 0xf4, 0x89, 0x38, 0x8a, 0x20, 0x87, 0x4c, 0x83, 0xd4, 0xdf, 0x1b,
8859 0x07, 0xa2, 0x26, 0x9a, 0xe0, 0x7f, 0x2b, 0x99, 0xc2, 0x8d, 0xd7, 0xcd,
8860 0x49, 0x1d, 0x25, 0xdb, 0xdb, 0x2f, 0x86, 0xfb, 0xdb, 0x2f, 0x5e, 0x3e,
8861 0x9f, 0xec, 0xed, 0xed, 0xef, 0x8c, 0x47, 0x6b, 0x2b, 0x5e, 0x74, 0x68,
8862 0x0c, 0xc3, 0xa8, 0x3c, 0x60, 0x3d, 0xd4, 0xd1, 0xc0, 0x9b, 0x13, 0x08,
8863 0xe2, 0x70, 0xda, 0x43, 0x5d, 0x9c, 0x16, 0xd4, 0x78, 0xa6, 0x22, 0x7c,
8864 0xd7, 0xe7, 0x3b, 0xbb, 0xdb, 0x9b, 0xcf, 0xfa, 0x7b, 0xfd, 0x1d, 0x53,
8865 0x27, 0xcb, 0x58, 0x7e, 0x15, 0xd5, 0xe8, 0x04, 0xb2, 0xcc, 0xa8, 0x50,
8866 0x2a, 0xcd, 0x04, 0x4b, 0xd9, 0xfc, 0x84, 0x62, 0x1e, 0xb6, 0x48, 0x09,
8867 0xd1, 0x95, 0xb7, 0x5d, 0xf0, 0x1d, 0x0a, 0xc7, 0x79, 0x5d, 0xa1, 0xb2,
8868 0x1e, 0x4e, 0xc2, 0x44, 0xc2, 0x71, 0x9b, 0x87, 0xe9, 0xdf, 0x17, 0x69,
8869 0x05, 0x3a, 0x3e, 0xae, 0x13, 0x83, 0xfb, 0xda, 0xdc, 0x9b, 0xba, 0x74,
8870 0xd0, 0x1a, 0xb4, 0x21, 0x9e, 0x2f, 0x9c, 0x15, 0x46, 0xc1, 0x41, 0xa3,
8871 0x24, 0x8c, 0x9c, 0x94, 0xc4, 0x36, 0x3e, 0x51, 0xa6, 0x65, 0x05, 0xc2,
8872 0x16, 0x44, 0xd3, 0x9b, 0xfc, 0x16, 0xb9, 0xa9, 0x4b, 0xb5, 0x6f, 0x85,
8873 0x9f, 0xe3, 0xc1, 0xad, 0x06, 0x38, 0xad, 0x4e, 0x2a, 0x96, 0x6c, 0x4f,
8874 0x6c, 0xf9, 0x01, 0x43, 0x49, 0x2b, 0x4a, 0x5b, 0x54, 0x5b, 0xf0, 0x72,
8875 0x05, 0x57, 0xfa, 0x49, 0x23, 0x7c, 0x0c, 0x27, 0x79, 0x59, 0x98, 0x86,
8876 0x36, 0xf4, 0x9b, 0x47, 0xde, 0xec, 0xcc, 0x08, 0x2e, 0xf4, 0x4e, 0x6f,
8877 0x1c, 0x75, 0x50, 0x44, 0xad, 0x1a, 0x75, 0x13, 0xf4, 0xea, 0xae, 0x85,
8878 0xae, 0x66, 0xad, 0xab, 0x0d, 0x9d, 0x47, 0x5f, 0x78, 0x32, 0x13, 0xee,
8879 0xfe, 0xfa, 0x4c, 0xb8, 0xf3, 0xdf, 0x9f, 0x09, 0x0d, 0x17, 0x2a, 0x2c,
8880 0x7c, 0x1b, 0x1f, 0x72, 0x7a, 0xc6, 0xbf, 0x0f, 0x13, 0xee, 0xfc, 0x7a,
8881 0x4c, 0xb8, 0xbd, 0x2a, 0x13, 0xee, 0x3e, 0x86, 0x09, 0x61, 0xbf, 0xa7,
8882 0xa8, 0x67, 0xd4, 0x98, 0x70, 0x6f, 0x25, 0x26, 0x64, 0x2e, 0x24, 0x36,
8883 0x6c, 0xe5, 0x43, 0x9c, 0xb3, 0x8b, 0x43, 0x06, 0x82, 0x3c, 0x0c, 0x53,
8884 0xfe, 0x78, 0x91, 0x13, 0xd7, 0x06, 0xf5, 0x70, 0xa5, 0x98, 0xd5, 0xff,
8885 0x95, 0x7b, 0xbd, 0xfb, 0x9b, 0x08, 0x9c, 0xed, 0x87, 0xf6, 0xba, 0x48,
8886 0x38, 0xa1, 0xe8, 0x7b, 0xcd, 0xeb, 0x82, 0x6f, 0xfd, 0x48, 0x2e, 0xe4,
8887 0x03, 0xd4, 0x2c, 0x7e, 0x6c, 0x9a, 0x6c, 0x21, 0x43, 0x62, 0x70, 0x7e,
8888 0xfc, 0x97, 0x81, 0x24, 0x26, 0x89, 0xa6, 0xa7, 0x9a, 0x20, 0xbb, 0x34,
8889 0xc1, 0x40, 0x20, 0x1c, 0x47, 0xcf, 0xba, 0xa0, 0x6a, 0x97, 0x5a, 0x22,
8890 0x22, 0x16, 0xbb, 0xc9, 0x31, 0xa4, 0x86, 0x2e, 0x9c, 0x94, 0xc3, 0x91,
8891 0x1d, 0x1d, 0xd5, 0x36, 0xd8, 0x68, 0x52, 0x82, 0x26, 0x62, 0x52, 0xa4,
8892 0x24, 0xfe, 0x94, 0x39, 0x2f, 0xae, 0x57, 0xd7, 0x05, 0x41, 0xe5, 0xd0,
8893 0xa3, 0x1b, 0x9a, 0x72, 0xb8, 0x6c, 0x76, 0x32, 0xaf, 0x37, 0xd4, 0xc9,
8894 0x70, 0x5e, 0x98, 0x04, 0xdf, 0x80, 0x3b, 0xcb, 0xfc, 0x56, 0x63, 0xa0,
8895 0x21, 0xc0, 0x52, 0x69, 0x2f, 0xe1, 0xd0, 0x1b, 0xdf, 0xf3, 0x4a, 0x40,
8896 0xd3, 0xbb, 0x1a, 0x7c, 0x39, 0x3a, 0x8f, 0x81, 0x6f, 0x33, 0xc2, 0x7a,
8897 0x31, 0x4b, 0xd4, 0x41, 0xb8, 0x6c, 0x0e, 0xbe, 0x92, 0x8f, 0x3e, 0x95,
8898 0x7b, 0x30, 0x64, 0x33, 0x78, 0xc6, 0xbf, 0x88, 0xf1, 0x37, 0xfc, 0xf7,
8899 0x7d, 0xfc, 0x2e, 0x06, 0x68, 0xf9, 0x5f, 0xd7, 0xf8, 0x4f, 0x49, 0xbf,
8900 0xe7, 0xae, 0x09, 0xb5, 0x5d, 0x1e, 0x85, 0x09, 0xad, 0x82, 0x5a, 0x9c,
8901 0x4a, 0x0c, 0x55, 0xf9, 0x2e, 0xb7, 0x48, 0xff, 0xee, 0xaa, 0x5d, 0x14,
8902 0x67, 0xaf, 0x64, 0xc6, 0x48, 0x79, 0x1a, 0x79, 0xaf, 0x2d, 0x83, 0xc2,
8903 0x69, 0x57, 0xa5, 0x20, 0x90, 0xf6, 0x13, 0x12, 0xce, 0x76, 0x37, 0x80,
8904 0xfa, 0x7f, 0x04, 0xda, 0xb5, 0x81, 0x4d, 0xbe, 0x98, 0x19, 0x67, 0xd8,
8905 0xf6, 0xd6, 0x0b, 0xdf, 0xf9, 0xf8, 0x41, 0xe1, 0x5b, 0x6c, 0x57, 0x25,
8906 0xaa, 0x1c, 0x20, 0x48, 0x8a, 0xa1, 0x85, 0xb3, 0x09, 0x7d, 0x16, 0x23,
8907 0xfd, 0x01, 0x5f, 0xc7, 0x38, 0x61, 0x1b, 0x75, 0xc8, 0x5e, 0x0e, 0xbf,
8908 0xc6, 0x1f, 0x61, 0x12, 0xd1, 0xbd, 0x93, 0x4a, 0x36, 0x0d, 0xd6, 0xd9,
8909 0x70, 0x86, 0xba, 0x97, 0x77, 0x81, 0x6e, 0x44, 0xcd, 0x26, 0xfc, 0xd2,
8910 0xf6, 0x54, 0xf9, 0xe3, 0xde, 0x16, 0xee, 0xaa, 0x8e, 0x02, 0x87, 0x28,
8911 0x9f, 0x6a, 0x46, 0xd6, 0x1f, 0x77, 0xe3, 0xdf, 0xdd, 0x79, 0xa5, 0xe2,
8912 0xc6, 0xf0, 0x20, 0x1f, 0x26, 0x45, 0xc6, 0xe8, 0xdd, 0x45, 0x12, 0xd1,
8913 0xc2, 0xff, 0x98, 0x1f, 0x3f, 0x31, 0xab, 0x59, 0x5b, 0x64, 0xd3, 0xb7,
8914 0x6a, 0xca, 0xff, 0x7e, 0xdd, 0xb1, 0xe2, 0x55, 0x51, 0x06, 0x1c, 0xba,
8915 0xa2, 0xb4, 0x28, 0x9e, 0xae, 0xa2, 0xbf, 0x9a, 0xa2, 0xa2, 0x98, 0x7d,
8916 0x1a, 0x34, 0x5f, 0xf3, 0x43, 0x18, 0x0a, 0x3e, 0xe8, 0x01, 0x70, 0x68,
8917 0x7e, 0x08, 0x27, 0x4e, 0xb3, 0xd7, 0xaa, 0xeb, 0x75, 0x9f, 0x88, 0xa7,
8918 0x5d, 0x2e, 0x55, 0x0a, 0xfb, 0x7a, 0x6b, 0x1f, 0x19, 0x17, 0xf1, 0xad,
8919 0xe3, 0x54, 0x61, 0x14, 0xf5, 0x09, 0xa5, 0x7e, 0xd8, 0x1a, 0x07, 0xf4,
8920 0x42, 0x60, 0x22, 0x70, 0x19, 0x48, 0xc6, 0x2e, 0x47, 0x05, 0x02, 0xd8,
8921 0x49, 0x2f, 0x77, 0x1a, 0x6b, 0x8e, 0x9d, 0x84, 0x40, 0xe5, 0xba, 0x4a,
8922 0x14, 0x07, 0xd5, 0x76, 0xa9, 0x15, 0x14, 0x56, 0x82, 0x5e, 0xed, 0x07,
8923 0x60, 0x0c, 0xac, 0xaf, 0x5b, 0x2b, 0xcf, 0x62, 0xc1, 0x69, 0xc5, 0x57,
8924 0xbb, 0x52, 0xbd, 0x23, 0x75, 0xca, 0x43, 0x12, 0x34, 0x31, 0x96, 0x02,
8925 0x94, 0xd7, 0x69, 0xb3, 0xf1, 0xeb, 0x7a, 0xef, 0xf3, 0xfc, 0xf3, 0xde,
8926 0x86, 0xe9, 0x0a, 0x92, 0xdf, 0x24, 0x25, 0x59, 0xc1, 0x0c, 0x4f, 0x03,
8927 0x12, 0xe1, 0x9a, 0x1c, 0x7e, 0x72, 0x29, 0x13, 0xb4, 0x0c, 0x95, 0x24,
8928 0x4b, 0x37, 0x86, 0x16, 0xdc, 0x5e, 0x4e, 0x34, 0x63, 0x59, 0x8c, 0xae,
8929 0x41, 0xa0, 0xd6, 0x84, 0xeb, 0xf6, 0xd0, 0x77, 0x14, 0x61, 0xf2, 0xb4,
8930 0xb4, 0xa4, 0xe4, 0xb4, 0x8a, 0x7c, 0xfe, 0xef, 0xee, 0x72, 0xff, 0xc3,
8931 0xca, 0xb9, 0x53, 0x3d, 0xca, 0xda, 0x1f, 0x4b, 0x96, 0x53, 0x5d, 0x2f,
8932 0x00, 0x09, 0xde, 0x53, 0xb9, 0x7c, 0xa8, 0x02, 0xfd, 0x8b, 0x07, 0x71,
8933 0x50, 0x8c, 0xe8, 0x9f, 0x88, 0xdf, 0x0e, 0x05, 0x1f, 0xa1, 0xf7, 0x70,
8934 0xab, 0xce, 0xd1, 0x75, 0x32, 0xe3, 0xf6, 0x75, 0x3e, 0x6a, 0x0e, 0x26,
8935 0x2c, 0x65, 0xcc, 0x25, 0x8c, 0x54, 0x9e, 0x19, 0xff, 0x86, 0xbd, 0xea,
8936 0xb4, 0x77, 0x01, 0x63, 0xe0, 0x1f, 0xc3, 0xf0, 0x27, 0x1f, 0x3f, 0xbc,
8937 0x1b, 0x7c, 0xb8, 0xe8, 0x79, 0x5d, 0x5f, 0xde, 0x5f, 0x9e, 0xbc, 0xc2,
8938 0x4a, 0x8f, 0xcb, 0xf3, 0xe3, 0xf3, 0xb3, 0x68, 0x7d, 0x7b, 0x63, 0xe9,
8939 0x0e, 0x9a, 0x3d, 0x33, 0xdd, 0xae, 0x6c, 0x7c, 0x8a, 0xc5, 0x89, 0x99,
8940 0xc2, 0x3a, 0x52, 0xd9, 0x1f, 0xed, 0x5b, 0x61, 0xf5, 0x86, 0xd7, 0x59,
8941 0x7c, 0x65, 0x57, 0x70, 0xad, 0x96, 0xe4, 0x93, 0x94, 0x51, 0xdc, 0x94,
8942 0x77, 0x2a, 0xd9, 0x09, 0x00, 0xd2, 0x77, 0x29, 0x1c, 0xcc, 0x69, 0xb0,
8943 0x0e, 0x04, 0xd3, 0xea, 0x72, 0xd7, 0xdd, 0x4e, 0x2e, 0xac, 0x9d, 0x58,
8944 0x01, 0xfb, 0x90, 0x56, 0x89, 0x6f, 0xdb, 0x5a, 0x06, 0x18, 0x89, 0xf4,
8945 0xe6, 0xba, 0xab, 0x7a, 0xbf, 0xe1, 0x4e, 0xb1, 0xcf, 0x59, 0xf6, 0x29,
8946 0xc3, 0xfc, 0x63, 0x18, 0x88, 0x31, 0x7d, 0xa9, 0xb7, 0xa9, 0x79, 0x85,
8947 0x5a, 0x81, 0x4b, 0x2e, 0x15, 0xc1, 0x46, 0xb2, 0xc6, 0xde, 0x8f, 0x2e,
8948 0x8a, 0xdc, 0xcf, 0x46, 0xa4, 0x37, 0xc6, 0x49, 0x96, 0xf2, 0x35, 0x6b,
8949 0xe6, 0x2e, 0x88, 0x86, 0x92, 0xb6, 0x0d, 0x0f, 0xe0, 0x6f, 0x9d, 0x7d,
8950 0xe2, 0xde, 0x68, 0x7e, 0xfb, 0x29, 0x7a, 0x1b, 0x09, 0x8f, 0x80, 0x4d,
8951 0x76, 0x4e, 0x38, 0x1e, 0x5e, 0x65, 0xd4, 0x78, 0xa8, 0xfd, 0x1a, 0xec,
8952 0x0a, 0x34, 0x2e, 0x89, 0x26, 0xd2, 0x31, 0x91, 0x88, 0xac, 0x56, 0x3a,
8953 0x6b, 0x69, 0xc9, 0x41, 0xab, 0x13, 0x11, 0xf3, 0x26, 0xba, 0xb8, 0x73,
8954 0x5d, 0xde, 0x3e, 0xb9, 0x27, 0x97, 0xec, 0xe0, 0x57, 0xf5, 0x8e, 0x22,
8955 0x02, 0xdc, 0x80, 0x53, 0xe1, 0x59, 0x31, 0x4c, 0x18, 0xcd, 0xa6, 0x4b,
8956 0xd8, 0x52, 0x38, 0xb9, 0xd7, 0x66, 0x6e, 0x5e, 0x5d, 0x33, 0xa7, 0xed,
8957 0xac, 0x2b, 0xa4, 0xe9, 0xb3, 0xfd, 0xfe, 0xce, 0x46, 0x2d, 0xe7, 0x08,
8958 0x33, 0x3b, 0x80, 0x54, 0x7f, 0xc2, 0xff, 0x2a, 0x04, 0x00, 0xfe, 0x9d,
8959 0x97, 0xe1, 0xd9, 0xf9, 0x2c, 0x58, 0x0d, 0x66, 0x73, 0x37, 0xd2, 0x4e,
8960 0x8f, 0xb4, 0x55, 0x57, 0x79, 0x3e, 0x16, 0xc4, 0x54, 0x46, 0x48, 0x7d,
8961 0x1a, 0xcf, 0x33, 0xf1, 0x3e, 0x6f, 0x10, 0x6e, 0x05, 0x8b, 0x0a, 0x47,
8962 0xf1, 0x18, 0xfb, 0x91, 0x2c, 0x4d, 0x0a, 0x35, 0x33, 0xf5, 0x12, 0xae,
8963 0x9e, 0xb8, 0xf7, 0x65, 0xf3, 0x32, 0xbd, 0xa8, 0xf1, 0x5c, 0x82, 0x58,
8964 0x47, 0x14, 0xa4, 0x98, 0x26, 0x13, 0xd2, 0x97, 0x09, 0x22, 0xad, 0x4b,
8965 0xbf, 0xa4, 0x5c, 0x36, 0x53, 0x3d, 0x15, 0x86, 0x3f, 0x8f, 0xa9, 0x75,
8966 0x4a, 0xcc, 0xde, 0x36, 0x23, 0x89, 0x34, 0xc3, 0x7a, 0x0d, 0x76, 0x6b,
8967 0xad, 0x6b, 0x90, 0xff, 0xa6, 0xf7, 0x94, 0xea, 0x92, 0xde, 0xf1, 0x61,
8968 0xfa, 0x39, 0x29, 0x72, 0x3f, 0xb5, 0x92, 0xb4, 0x16, 0x05, 0xad, 0x47,
8969 0xcb, 0xfc, 0x06, 0x04, 0x14, 0x65, 0x8a, 0x9a, 0x1f, 0xe2, 0x57, 0x3d,
8970 0x1e, 0xff, 0x13, 0xac, 0x0d, 0x71, 0xdd, 0x44, 0x5c, 0x9a, 0xb9, 0xa4,
8971 0xd4, 0x0d, 0x23, 0xd5, 0x64, 0x38, 0xe7, 0xcc, 0x4d, 0x11, 0xc4, 0xed,
8972 0x9e, 0xd1, 0xe0, 0x3c, 0x8b, 0x9d, 0x74, 0xe2, 0x31, 0xda, 0x77, 0xb6,
8973 0xea, 0xd6, 0x64, 0x17, 0x4c, 0x10, 0xd7, 0xdd, 0x00, 0xeb, 0x8b, 0x92,
8974 0xeb, 0xcb, 0xef, 0x5e, 0x14, 0xbd, 0x4a, 0xb0, 0x3b, 0x1f, 0xd7, 0xc4,
8975 0xd8, 0x4a, 0x27, 0xf4, 0x20, 0xe4, 0x14, 0xac, 0x48, 0x2b, 0x0b, 0xa3,
8976 0xca, 0x6d, 0xb1, 0x27, 0x76, 0x8a, 0xfe, 0x94, 0xea, 0x73, 0x0e, 0x49,
8977 0x8a, 0xcf, 0x0d, 0x19, 0xa4, 0xc2, 0xc6, 0xa5, 0xc5, 0x3a, 0x35, 0xbb,
8978 0xd1, 0x74, 0x3e, 0xfa, 0x9e, 0x8e, 0xb8, 0x94, 0x0c, 0x1b, 0x14, 0x83,
8979 0x22, 0x3b, 0xb7, 0x5c, 0x0c, 0x7f, 0x92, 0x16, 0x76, 0xe8, 0xa9, 0x29,
8980 0x84, 0x0c, 0xe2, 0x67, 0x80, 0x5d, 0x85, 0x07, 0x38, 0x7c, 0x5b, 0xc1,
8981 0x99, 0x0d, 0x0d, 0x47, 0x69, 0x86, 0xa9, 0x93, 0x04, 0x6f, 0x59, 0x8c,
8982 0xa6, 0x14, 0x84, 0xb1, 0x4a, 0xf4, 0x6c, 0xb6, 0x88, 0xd4, 0xde, 0x04,
8983 0x8f, 0x22, 0x97, 0x5b, 0x35, 0x2e, 0x5a, 0xa6, 0x25, 0x97, 0x0f, 0x9a,
8984 0xc2, 0x5a, 0x7c, 0xbc, 0x75, 0x2c, 0x95, 0x8c, 0x65, 0xf7, 0x4f, 0xf8,
8985 0x1f, 0x7f, 0x0d, 0xf5, 0x3a, 0x61, 0x20, 0xb3, 0x4a, 0x27, 0x7c, 0x9c,
8986 0xc4, 0x1e, 0xbd, 0xde, 0xf6, 0x01, 0x47, 0x7a, 0x2c, 0x1f, 0x9b, 0x64,
8987 0xc6, 0x0a, 0x1f, 0xf8, 0x90, 0x69, 0xef, 0x02, 0x65, 0xf2, 0xb9, 0xe9,
8988 0xb4, 0xab, 0xe8, 0x0b, 0x06, 0x31, 0x54, 0xec, 0x44, 0xd4, 0xd4, 0xd3,
8989 0x39, 0xfb, 0x40, 0xbc, 0xae, 0xe1, 0x13, 0xac, 0x46, 0x46, 0x48, 0x58,
8990 0x44, 0x70, 0x95, 0x24, 0x6b, 0x6d, 0x0d, 0xaa, 0x85, 0xb1, 0xf3, 0xbc,
8991 0xe2, 0x3e, 0xa5, 0x58, 0xb8, 0x8c, 0x9a, 0x4e, 0x81, 0x6e, 0xda, 0x79,
8992 0xdb, 0x6d, 0xda, 0x35, 0x1a, 0x3c, 0x0e, 0xcb, 0xf9, 0x6e, 0xa8, 0xd7,
8993 0x48, 0x65, 0x94, 0x66, 0x79, 0xa3, 0x6a, 0x6e, 0x1b, 0xfc, 0x85, 0x14,
8994 0x6f, 0x2e, 0xaa, 0x22, 0x6f, 0x9f, 0x69, 0x72, 0x7a, 0x93, 0xa7, 0xe3,
8995 0x65, 0xbd, 0xa6, 0xbc, 0xe6, 0xe4, 0xc1, 0x62, 0x05, 0x53, 0x2a, 0x4d,
8996 0x1e, 0x23, 0x0b, 0x59, 0xe4, 0xa3, 0x97, 0x98, 0x4e, 0x99, 0x94, 0x75,
8997 0x93, 0x61, 0x8c, 0x34, 0x8b, 0x2b, 0x3d, 0x60, 0x8e, 0x74, 0xc6, 0x59,
8998 0x52, 0x8d, 0x5b, 0x86, 0xf6, 0xd9, 0x88, 0xd0, 0x71, 0x02, 0x56, 0x53,
8999 0x4b, 0xc7, 0xd2, 0xc7, 0xdc, 0x4c, 0x2e, 0x57, 0x75, 0x4b, 0xe0, 0xef,
9000 0xa7, 0x5c, 0x4c, 0x72, 0xbd, 0xb9, 0xaa, 0x99, 0x87, 0xb5, 0xa3, 0xe5,
9001 0x71, 0x52, 0x6f, 0xb6, 0x5c, 0x03, 0x9b, 0x23, 0x6a, 0x25, 0xb6, 0xbb,
9002 0x4b, 0x2b, 0x62, 0x96, 0x46, 0x89, 0xae, 0xd6, 0x97, 0x4a, 0x5f, 0xf9,
9003 0xd9, 0xa2, 0xc9, 0x33, 0x99, 0x86, 0xb1, 0x4d, 0x55, 0x00, 0x97, 0xe3,
9004 0x90, 0xf2, 0x23, 0x9e, 0x34, 0xee, 0x38, 0xcd, 0xd0, 0x9e, 0xd2, 0xe4,
9005 0x9b, 0x4a, 0xad, 0x31, 0xb2, 0x1d, 0xf6, 0x12, 0x6f, 0x9a, 0x8c, 0x62,
9006 0xe0, 0xd5, 0x6c, 0xdc, 0x03, 0x99, 0x34, 0x7f, 0x02, 0xd1, 0x2d, 0x11,
9007 0xcc, 0xbf, 0xa9, 0x40, 0xcc, 0xd6, 0x1e, 0x8e, 0xd1, 0x03, 0xc1, 0xca,
9008 0xfe, 0x13, 0x7d, 0x0e, 0xe6, 0x2f, 0x5c, 0x72, 0x55, 0xab, 0x00, 0x1e,
9009 0x37, 0xaa, 0x3e, 0x6b, 0x4f, 0x3e, 0xa0, 0x46, 0x20, 0x99, 0x5a, 0x3b,
9010 0x5b, 0x3b, 0x1b, 0xa2, 0x1b, 0xe0, 0x25, 0x77, 0xd7, 0xb6, 0x43, 0x76,
9011 0x82, 0xa1, 0xd3, 0x79, 0xa2, 0x64, 0x94, 0x66, 0x52, 0xd6, 0xee, 0x7c,
9012 0x89, 0x4d, 0x64, 0x6f, 0x5f, 0x66, 0x84, 0xe1, 0x22, 0x8d, 0x8c, 0xf9,
9013 0x49, 0x2a, 0x1e, 0x75, 0x85, 0x79, 0x98, 0x79, 0x02, 0xfe, 0x3f, 0xba,
9014 0x06, 0xe8, 0x43, 0x38, 0xb1, 0x34, 0x29, 0x9f, 0xb6, 0xb9, 0xbc, 0x90,
9015 0x7f, 0xc1, 0xd6, 0x86, 0x90, 0xc2, 0xdb, 0x36, 0x77, 0x14, 0x63, 0x42,
9016 0x46, 0xb8, 0x82, 0x68, 0x20, 0xa2, 0xa8, 0xa7, 0x4f, 0xe1, 0x9d, 0xa7,
9017 0x15, 0x96, 0x8e, 0xf7, 0x99, 0xd2, 0x66, 0x9e, 0x92, 0x83, 0xe7, 0xce,
9018 0xe0, 0xf8, 0x88, 0xa1, 0x92, 0x2b, 0x44, 0x5f, 0xbc, 0x33, 0x44, 0x78,
9019 0x02, 0x49, 0xcc, 0xb8, 0x98, 0xf0, 0xd3, 0x35, 0xb3, 0xa7, 0x74, 0x6e,
9020 0xfe, 0xa1, 0x38, 0xdf, 0x91, 0x78, 0x16, 0x62, 0xa0, 0x61, 0xed, 0xb7,
9021 0x7a, 0xe3, 0x6a, 0xc3, 0x4b, 0xdd, 0x61, 0x3b, 0xdd, 0xe8, 0xa1, 0xdf,
9022 0x88, 0x6e, 0x34, 0xf6, 0x26, 0x15, 0x61, 0x6c, 0xda, 0x5a, 0xbd, 0xa7,
9023 0x12, 0xaf, 0x51, 0xae, 0x6c, 0x89, 0xe6, 0x50, 0x49, 0x2b, 0x87, 0xf9,
9024 0xdb, 0xd6, 0xc2, 0xf6, 0xb2, 0x45, 0x5a, 0x68, 0x06, 0x23, 0xf6, 0xaa,
9025 0xfb, 0x79, 0x12, 0x1d, 0xe2, 0x9f, 0x4b, 0xe8, 0x66, 0x1e, 0xfc, 0x6d,
9026 0x48, 0x67, 0x86, 0xc7, 0x84, 0x2e, 0xf7, 0xa7, 0x9c, 0x1a, 0xf6, 0xeb,
9027 0xf0, 0x5f, 0x52, 0x54, 0xfd, 0x47, 0xf0, 0x11, 0x1d, 0x3f, 0xfc, 0xf3,
9028 0x7b, 0x91, 0x04, 0x3f, 0x2e, 0xa7, 0xcb, 0x6f, 0x47, 0x92, 0x5f, 0x79,
9029 0xf1, 0x44, 0xe1, 0xc7, 0x50, 0x20, 0x9d, 0x5f, 0xa3, 0x19, 0x76, 0x18,
9030 0x82, 0xe1, 0x71, 0xd6, 0x2e, 0x8f, 0xfd, 0x36, 0xcb, 0x97, 0xc1, 0x4f,
9031 0x8e, 0x5f, 0xbd, 0x39, 0xe9, 0xc1, 0x9f, 0x83, 0xa3, 0xde, 0xd1, 0xc9,
9032 0x60, 0x67, 0xff, 0x59, 0xef, 0xf8, 0xf8, 0xed, 0x8b, 0x5f, 0x4a, 0x14,
9033 0x19, 0x9e, 0x84, 0xd1, 0xa2, 0xb8, 0x91, 0xd6, 0x9c, 0xb5, 0xc0, 0xe2,
9034 0xc3, 0x64, 0x2a, 0xa6, 0xb6, 0xa7, 0xc3, 0x12, 0x32, 0xc9, 0x63, 0xbf,
9035 0x0d, 0x99, 0x64, 0xf0, 0x22, 0xf9, 0x89, 0xfa, 0x58, 0xfd, 0x0a, 0xc2,
9036 0x5a, 0x87, 0x5c, 0x9d, 0x20, 0x7c, 0xa5, 0x3d, 0xe8, 0xf2, 0x25, 0x65,
9037 0xe1, 0x95, 0x40, 0x1b, 0x04, 0xf4, 0x92, 0x27, 0x2b, 0x26, 0x02, 0x97,
9038 0xe0, 0x6b, 0x26, 0xf2, 0x31, 0x7c, 0xb7, 0xe9, 0xdf, 0x50, 0xd5, 0x84,
9039 0x34, 0x93, 0x27, 0x6d, 0x81, 0x7c, 0xf5, 0x77, 0x52, 0x23, 0x48, 0x87,
9040 0xf1, 0xb7, 0x82, 0xeb, 0xa1, 0xa2, 0x43, 0xfe, 0xef, 0xe6, 0x97, 0x21,
9041 0x16, 0x55, 0x2c, 0x19, 0xd4, 0xa3, 0xa5, 0x80, 0x0a, 0xb7, 0x48, 0x51,
9042 0xab, 0xc5, 0x84, 0xd7, 0xf8, 0xee, 0xad, 0xdb, 0x99, 0x98, 0xc8, 0xea,
9043 0x99, 0x7f, 0x8a, 0x6e, 0xc4, 0xc0, 0x7b, 0xe8, 0xae, 0x32, 0x6d, 0x92,
9044 0x4c, 0x42, 0x2e, 0x3a, 0x40, 0x12, 0xe7, 0x8b, 0xa5, 0xe9, 0x61, 0x10,
9045 0x30, 0x97, 0x30, 0x33, 0xe3, 0x26, 0x26, 0x60, 0x40, 0xa7, 0x0d, 0x9b,
9046 0x2e, 0x0e, 0x0f, 0x94, 0x54, 0x73, 0xea, 0x49, 0x32, 0x7c, 0xe3, 0xb7,
9047 0xca, 0x20, 0xa0, 0x70, 0x2a, 0x5b, 0xa5, 0x24, 0xf3, 0xe3, 0xf3, 0x77,
9048 0xef, 0x4e, 0x8e, 0x9b, 0xa9, 0x4c, 0x06, 0x4d, 0xc5, 0x81, 0x67, 0xe7,
9049 0xaf, 0x85, 0x1a, 0x50, 0x4b, 0x32, 0x00, 0x7f, 0x1c, 0xfe, 0x71, 0x2b,
9050 0xa8, 0x42, 0xee, 0x2f, 0xa5, 0xdd, 0xd7, 0x32, 0x2e, 0xb3, 0xce, 0x56,
9051 0x8a, 0x77, 0x97, 0x8b, 0x42, 0x10, 0xe1, 0xc8, 0xef, 0x26, 0x8b, 0xe5,
9052 0x8a, 0xc8, 0x78, 0x3c, 0xde, 0x94, 0x42, 0x6a, 0x56, 0x9f, 0xf1, 0x53,
9053 0x6d, 0x27, 0x84, 0x1b, 0x02, 0x21, 0xbe, 0x4d, 0x2f, 0x9f, 0x70, 0xa3,
9054 0xe4, 0x59, 0x5c, 0x7c, 0xc2, 0xe4, 0x27, 0xa7, 0x36, 0x9c, 0x10, 0xe3,
9055 0xa8, 0x7b, 0xcf, 0x78, 0x1c, 0xc2, 0xf6, 0xa5, 0x38, 0x25, 0x61, 0x6e,
9056 0x48, 0x00, 0x52, 0x26, 0x44, 0x62, 0x2b, 0xab, 0x0e, 0x30, 0x21, 0x5e,
9057 0x5f, 0xcf, 0x92, 0x5b, 0xfc, 0x0c, 0x43, 0xbd, 0x23, 0x40, 0xaf, 0xdf,
9058 0x25, 0x84, 0x1b, 0x5c, 0x72, 0x8c, 0xf8, 0xde, 0x71, 0x31, 0xcf, 0xb8,
9059 0x0b, 0x38, 0x30, 0x17, 0xf5, 0x46, 0x14, 0xf8, 0x1a, 0x8f, 0x56, 0x6f,
9060 0x98, 0x69, 0x6a, 0xe9, 0x24, 0x5e, 0xe6, 0xbe, 0x69, 0x24, 0x31, 0x4c,
9061 0x94, 0x9b, 0x49, 0x6e, 0xb5, 0x21, 0xdf, 0xdb, 0xb6, 0x37, 0x14, 0x73,
9062 0x2c, 0x6b, 0x03, 0xe8, 0x66, 0xc6, 0x2d, 0x79, 0x1c, 0x03, 0xec, 0xe2,
9063 0x49, 0xae, 0x3e, 0x12, 0x8c, 0xfb, 0xcd, 0x7e, 0x70, 0xd4, 0x17, 0x04,
9064 0xf7, 0x15, 0x8b, 0x85, 0x8b, 0xab, 0x05, 0x43, 0x83, 0x21, 0x0b, 0xd2,
9065 0xa1, 0xec, 0x05, 0x82, 0x38, 0x11, 0xa3, 0x63, 0xa9, 0x83, 0x9b, 0x52,
9066 0x52, 0x80, 0xbc, 0xb8, 0x11, 0x42, 0x7c, 0x8d, 0x08, 0x72, 0xe0, 0x56,
9067 0x4e, 0x6a, 0x9a, 0xcd, 0x17, 0x55, 0xa0, 0xcb, 0x46, 0x5f, 0x10, 0x92,
9068 0xbf, 0xec, 0x35, 0x7b, 0x63, 0xa3, 0x6b, 0xd0, 0xdd, 0x53, 0xee, 0xc9,
9069 0x81, 0xfe, 0xca, 0xb2, 0x1a, 0xa7, 0xd9, 0xa3, 0x1d, 0x2c, 0x4e, 0x63,
9070 0x63, 0x2e, 0x55, 0x27, 0x47, 0xb6, 0xc3, 0xac, 0x9b, 0xe4, 0x10, 0x6d,
9071 0xf2, 0x82, 0x79, 0x4b, 0x45, 0xc1, 0xca, 0x49, 0xc4, 0xae, 0xac, 0xeb,
9072 0x7c, 0xd7, 0x7b, 0x8d, 0x69, 0x3f, 0xbd, 0x77, 0x40, 0xc2, 0x83, 0xe8,
9073 0xbf, 0xf2, 0xa4, 0xe3, 0xe4, 0x07, 0xb4, 0x8b, 0xe0, 0xc7, 0x0c, 0x8d,
9074 0xc9, 0x1d, 0xbd, 0xa3, 0x2b, 0xe2, 0x77, 0x38, 0x9f, 0xf3, 0x22, 0x2d,
9075 0x7f, 0xc5, 0xd1, 0xdf, 0x80, 0x54, 0x38, 0x78, 0xdc, 0x70, 0x8f, 0xc1,
9076 0x66, 0xab, 0x65, 0x2d, 0x3f, 0x0f, 0x5d, 0xd4, 0x0a, 0xc2, 0xd8, 0xaa,
9077 0xb3, 0xe8, 0x03, 0xbf, 0x8d, 0xd2, 0x62, 0x46, 0xff, 0x65, 0x9a, 0x4a,
9078 0x33, 0x71, 0xa3, 0x8e, 0x2f, 0xf9, 0xb0, 0xba, 0xf2, 0x29, 0xb9, 0x7f,
9079 0x94, 0xed, 0x63, 0x9e, 0xfb, 0x4d, 0x88, 0x61, 0x46, 0xc7, 0xd2, 0x05,
9080 0xe7, 0x87, 0x11, 0x65, 0x3c, 0xfc, 0x2a, 0xba, 0xbf, 0xa9, 0xde, 0x5a,
9081 0x49, 0x9b, 0xa3, 0x9a, 0x21, 0xf8, 0x63, 0x29, 0x61, 0x7e, 0x33, 0x9a,
9082 0xfc, 0xba, 0xcb, 0x67, 0x0a, 0xaf, 0x4e, 0x83, 0xb6, 0xce, 0x86, 0x5e,
9083 0xd0, 0xce, 0xe8, 0xb5, 0x0f, 0x36, 0x39, 0x24, 0x45, 0xc3, 0x8b, 0x6d,
9084 0x3a, 0x0a, 0xef, 0x52, 0x15, 0xd7, 0x22, 0x84, 0xb9, 0x5a, 0x6e, 0x20,
9085 0x0f, 0x31, 0x34, 0x11, 0xc9, 0x5e, 0xf9, 0xc5, 0x1a, 0xaf, 0xd3, 0x46,
9086 0xef, 0xd7, 0x55, 0x7a, 0x57, 0xd7, 0x73, 0x11, 0x9e, 0xea, 0xf1, 0x7b,
9087 0x83, 0xc0, 0x78, 0xbf, 0xa6, 0x27, 0x94, 0xc0, 0xb1, 0x6a, 0xe6, 0x06,
9088 0x7d, 0xa2, 0x46, 0x67, 0xaf, 0x13, 0xd4, 0x93, 0xa9, 0x4e, 0xc8, 0x77,
9089 0x4b, 0x08, 0xfe, 0xf4, 0xcb, 0xc3, 0xdb, 0x57, 0x97, 0xf2, 0x01, 0xdc,
9090 0x39, 0xfe, 0xc5, 0xb2, 0xea, 0x58, 0x2b, 0x24, 0xe8, 0xa9, 0xdf, 0x44,
9091 0x4a, 0xd4, 0x2b, 0x5b, 0x7f, 0x55, 0xc9, 0xe1, 0xe5, 0x04, 0x9a, 0xd1,
9092 0x1f, 0x21, 0x34, 0x1e, 0x5f, 0x75, 0x19, 0xe6, 0xd5, 0xb6, 0xc2, 0x4b,
9093 0x53, 0xbb, 0xdb, 0x5e, 0x75, 0x89, 0x29, 0xf6, 0x4e, 0xcd, 0xa5, 0x13,
9094 0x3f, 0x69, 0x2b, 0xba, 0xfc, 0x3f, 0xb2, 0xea, 0xb2, 0x56, 0x76, 0x89,
9095 0xb1, 0x51, 0x2c, 0xf3, 0x0b, 0x55, 0x5e, 0x3a, 0x4d, 0x04, 0xb8, 0xec,
9096 0x72, 0x59, 0xd5, 0xa5, 0x53, 0x74, 0xb9, 0xa4, 0xe6, 0x92, 0xcc, 0xb2,
9097 0xa5, 0x55, 0x97, 0x4f, 0x2c, 0xbb, 0x6c, 0xa9, 0xba, 0x5c, 0xb9, 0xe8,
9098 0xf2, 0x57, 0xae, 0xba, 0xfc, 0x97, 0x17, 0x0e, 0xfa, 0x67, 0xec, 0x09,
9099 0xe5, 0x83, 0xfe, 0x20, 0xbf, 0x62, 0x11, 0x61, 0x6d, 0xdc, 0xa5, 0x4a,
9100 0xc7, 0xcb, 0x90, 0xfc, 0x40, 0x86, 0x4c, 0x47, 0x82, 0x4e, 0x77, 0xd8,
9101 0xda, 0x2c, 0xd6, 0x80, 0x84, 0xd5, 0xf2, 0xc1, 0x9d, 0x64, 0x44, 0x19,
9102 0x87, 0x4d, 0x4a, 0xeb, 0x25, 0xf1, 0xf1, 0x3d, 0xe4, 0xac, 0x3c, 0x29,
9103 0x30, 0xdd, 0x9c, 0x6f, 0xa7, 0xbc, 0x2e, 0x16, 0x43, 0x90, 0x01, 0xf7,
9104 0x9d, 0xa7, 0x2a, 0x01, 0xb5, 0xf1, 0x96, 0x91, 0x6f, 0x6f, 0x37, 0x48,
9105 0xbe, 0x72, 0xda, 0x23, 0x9a, 0x20, 0x16, 0xa6, 0xe7, 0x8e, 0xb4, 0x17,
9106 0x53, 0xe3, 0xb9, 0xdf, 0xe6, 0x8e, 0x6a, 0x7e, 0xe4, 0x17, 0x2a, 0xb4,
9107 0xcd, 0xe1, 0x56, 0xd7, 0x68, 0x69, 0x84, 0x45, 0x95, 0xf7, 0x46, 0xd3,
9108 0x14, 0xe4, 0x17, 0xc5, 0x05, 0x96, 0x93, 0xa8, 0xf1, 0xf0, 0x6f, 0x48,
9109 0xa7, 0xe6, 0x97, 0x7e, 0x71, 0xe0, 0x2c, 0x38, 0x6a, 0x20, 0xd4, 0xa8,
9110 0xd1, 0xc5, 0x50, 0xe0, 0xec, 0x79, 0xd0, 0x82, 0xae, 0xa6, 0xe5, 0xf6,
9111 0xae, 0x0d, 0x94, 0xc8, 0x5f, 0x16, 0x08, 0xf0, 0x18, 0x0a, 0x9a, 0xc8,
9112 0x75, 0x3f, 0x30, 0x90, 0xa7, 0x92, 0x7f, 0x42, 0xaf, 0x51, 0xf6, 0x44,
9113 0x52, 0xaa, 0x7b, 0xdc, 0xa4, 0x4e, 0xa9, 0x94, 0xf6, 0x13, 0x77, 0x08,
9114 0xd8, 0xd9, 0xa5, 0x3d, 0x69, 0xb1, 0x88, 0x51, 0xa1, 0x1a, 0x5c, 0x49,
9115 0x57, 0xde, 0x76, 0x7f, 0x97, 0x51, 0x79, 0x35, 0xf5, 0x4c, 0xe6, 0xe9,
9116 0xf5, 0xd5, 0xa1, 0xef, 0x73, 0x77, 0x72, 0x5b, 0x40, 0x74, 0x13, 0x4f,
9117 0x53, 0xa0, 0x89, 0xbc, 0xd3, 0x8f, 0xde, 0xa3, 0xb7, 0x68, 0x31, 0xc7,
9118 0x4c, 0x21, 0x19, 0x5c, 0x7e, 0x17, 0x1a, 0xae, 0xde, 0xfc, 0x15, 0xc4,
9119 0xd5, 0x87, 0xf7, 0x67, 0x7e, 0xde, 0xaa, 0x6e, 0x28, 0x95, 0xb7, 0x94,
9120 0xc9, 0xe6, 0x38, 0x1f, 0x95, 0x9b, 0xb8, 0x6b, 0xfa, 0xd1, 0xeb, 0x6a,
9121 0x36, 0x7d, 0x20, 0x8d, 0x5e, 0x60, 0x24, 0xb5, 0xd5, 0xad, 0xad, 0xb5,
9122 0x63, 0xad, 0x2a, 0x35, 0x6d, 0xf0, 0x54, 0xc1, 0xf2, 0x3a, 0xe3, 0x50,
9123 0xe5, 0x3d, 0xac, 0x07, 0xfe, 0x1f, 0x5e, 0x7a, 0x94, 0xf7, 0x16, 0x00,
9124 0xe1, 0x8c, 0x9d, 0xb6, 0x96, 0x4e, 0x65, 0xbd, 0xbf, 0x37, 0xec, 0xf3,
9125 0x2b, 0xee, 0x31, 0x99, 0x9b, 0xd4, 0x85, 0x3a, 0xb9, 0x94, 0xde, 0xa6,
9126 0x08, 0x47, 0x7a, 0xac, 0x33, 0x67, 0x35, 0x15, 0x10, 0x61, 0xb1, 0x96,
9127 0xcc, 0xa1, 0x7f, 0x79, 0x3d, 0x8e, 0xcf, 0xfc, 0xb0, 0xb8, 0x8f, 0x47,
9128 0x27, 0x83, 0x8f, 0xdb, 0x3b, 0x2f, 0x3e, 0x7e, 0x7d, 0xfc, 0xf6, 0xe3,
9129 0xe0, 0xcd, 0x11, 0xea, 0x76, 0x4f, 0x14, 0xfe, 0xf5, 0xb1, 0x25, 0xb8,
9130 0x4d, 0x11, 0xba, 0x3a, 0x52, 0xcf, 0x76, 0xcb, 0xa9, 0x44, 0x53, 0xe5,
9131 0x31, 0x4e, 0x1d, 0xf7, 0xd1, 0xdf, 0x44, 0xa2, 0xb9, 0x1f, 0x18, 0xbc,
9132 0xbf, 0xf8, 0x6d, 0x0c, 0x12, 0xf8, 0x08, 0x81, 0xf1, 0x3c, 0x2c, 0xf7,
9133 0xe1, 0x49, 0x53, 0x98, 0x76, 0xc8, 0x55, 0x67, 0x4b, 0x89, 0x63, 0x1e,
9134 0xfe, 0xad, 0x88, 0x63, 0x3e, 0x50, 0x37, 0x60, 0x7f, 0x47, 0xfa, 0x90,
9135 0x4d, 0x1d, 0xd4, 0xb7, 0x6a, 0x94, 0xa1, 0xc7, 0x7e, 0x2b, 0xaa, 0xd0,
9136 0xe0, 0xe5, 0x0c, 0x1d, 0x08, 0xbf, 0x15, 0x41, 0x6c, 0xf3, 0xf0, 0xc7,
9137 0x10, 0xe5, 0x66, 0x7b, 0x19, 0x2d, 0x6e, 0xb6, 0x7f, 0x33, 0x4a, 0xc0,
9138 0xd0, 0xbf, 0x16, 0x05, 0x96, 0xad, 0xf4, 0x43, 0xb7, 0xee, 0x53, 0x39,
9139 0xac, 0x35, 0x16, 0xf0, 0x18, 0x41, 0xef, 0xc6, 0x3a, 0x5a, 0x7d, 0xbd,
9140 0xec, 0x33, 0x37, 0x59, 0xfa, 0x42, 0xff, 0xa5, 0x3d, 0x1f, 0xda, 0x9a,
9141 0x3a, 0x70, 0xf7, 0x22, 0x85, 0x22, 0x1d, 0x0c, 0x2e, 0x4e, 0x7b, 0xda,
9142 0xbe, 0x8f, 0x1b, 0x60, 0x70, 0xb3, 0x13, 0xae, 0x1e, 0xd3, 0x56, 0x40,
9143 0xd1, 0xbb, 0x16, 0xe5, 0x9e, 0x40, 0x75, 0x83, 0x0e, 0xb0, 0x4a, 0xe3,
9144 0x9e, 0x74, 0x69, 0xb9, 0x80, 0x5d, 0x65, 0x32, 0xf5, 0x93, 0x62, 0x97,
9145 0x2c, 0x9c, 0x8c, 0x5b, 0x52, 0x4d, 0xdc, 0x2e, 0x38, 0x43, 0x13, 0x05,
9146 0xa6, 0x3b, 0xb4, 0xa9, 0x2b, 0x68, 0x37, 0xe2, 0xa9, 0xed, 0x03, 0x60,
9147 0xae, 0xb3, 0x83, 0xa8, 0xd3, 0xfb, 0x10, 0x1d, 0x74, 0x3c, 0x12, 0x9d,
9148 0x63, 0xa9, 0x5d, 0x59, 0x25, 0x33, 0x0a, 0xdb, 0x16, 0x84, 0x48, 0x8c,
9149 0xad, 0x4e, 0x4b, 0xd7, 0xe2, 0xbd, 0xc6, 0x3e, 0x39, 0xd6, 0x71, 0xa7,
9150 0xd6, 0x52, 0x71, 0xe5, 0x25, 0xa1, 0xd2, 0x3c, 0x69, 0xf6, 0xb0, 0x61,
9151 0xd8, 0x7a, 0x94, 0xf4, 0x25, 0x0c, 0x45, 0x9a, 0xe0, 0x34, 0xdb, 0xe4,
9152 0x19, 0xa5, 0xc8, 0xa3, 0x1a, 0x81, 0xb9, 0xb3, 0x04, 0x4a, 0x3b, 0x0a,
9153 0x14, 0xbe, 0x70, 0xba, 0x74, 0xa9, 0xe6, 0xfe, 0x3c, 0x2f, 0xcb, 0x74,
9154 0x08, 0x5a, 0xc9, 0x95, 0xa8, 0x03, 0x65, 0xc2, 0xf5, 0x44, 0x8c, 0xb6,
9155 0x89, 0xd4, 0x34, 0x48, 0xcc, 0x98, 0x6c, 0xdc, 0x24, 0x11, 0xad, 0x54,
9156 0xd0, 0x9f, 0xef, 0xb5, 0x06, 0x12, 0xe6, 0xa7, 0xa5, 0x90, 0x37, 0x29,
9157 0x0e, 0x9f, 0x48, 0x6a, 0x75, 0x8c, 0x25, 0x8f, 0x1c, 0x64, 0x64, 0x7b,
9158 0xbe, 0xa9, 0x50, 0x4c, 0xb1, 0x43, 0x00, 0x9c, 0xfe, 0x01, 0x56, 0x03,
9159 0x97, 0xd8, 0x21, 0x92, 0x4a, 0xc4, 0xa9, 0x06, 0xd2, 0xd6, 0x9f, 0x17,
9160 0x09, 0x26, 0xf2, 0xdf, 0x24, 0xb2, 0xad, 0xe2, 0x2d, 0x6a, 0xad, 0x4d,
9161 0x2d, 0x4c, 0xfb, 0x77, 0xc2, 0x72, 0xa0, 0x96, 0x2e, 0xa6, 0xf5, 0x03,
9162 0x7e, 0x31, 0x42, 0x61, 0xa0, 0x25, 0xc6, 0x16, 0x43, 0xb9, 0xff, 0xef,
9163 0xa0, 0xcf, 0x18, 0x7e, 0x3e, 0x98, 0xff, 0x52, 0xd7, 0x35, 0x1e, 0x06,
9164 0x47, 0xba, 0x38, 0x52, 0x78, 0x05, 0xc0, 0x84, 0x3a, 0xf6, 0xff, 0x32,
9165 0xf8, 0x00, 0xa7, 0x84, 0xdc, 0xeb, 0x95, 0x11, 0xc6, 0x0d, 0x98, 0xa4,
9166 0x77, 0x84, 0x9e, 0xe7, 0x37, 0x9b, 0x6a, 0x56, 0xe0, 0xe7, 0x85, 0x7a,
9167 0x94, 0x0d, 0x89, 0x2b, 0x42, 0x9a, 0x26, 0x08, 0x59, 0x37, 0x41, 0xfb,
9168 0x83, 0xa7, 0x53, 0x5b, 0x5c, 0x81, 0x76, 0x24, 0x01, 0x07, 0x48, 0x80,
9169 0x30, 0x37, 0x38, 0xcd, 0x24, 0xc6, 0x19, 0xf8, 0x4a, 0x30, 0x36, 0xa0,
9170 0x67, 0x10, 0x01, 0xc5, 0x10, 0x70, 0x20, 0x04, 0x3e, 0x0b, 0xe2, 0x30,
9171 0x28, 0xe6, 0x81, 0xa9, 0x3c, 0xb8, 0x49, 0x63, 0xb3, 0xa7, 0x76, 0xc1,
9172 0x4c, 0x13, 0x6a, 0xe3, 0x12, 0x2f, 0x4b, 0x9e, 0xa4, 0xd3, 0x15, 0x82,
9173 0x0e, 0x7b, 0x37, 0x18, 0xf8, 0x60, 0x00, 0x59, 0x91, 0x8c, 0xf2, 0xab,
9174 0x2c, 0xfd, 0x19, 0xa9, 0x85, 0x8d, 0x45, 0x1a, 0xa5, 0xa9, 0x35, 0x30,
9175 0x86, 0x7a, 0x5a, 0x3b, 0x96, 0x36, 0xf8, 0x52, 0x52, 0xfa, 0x9e, 0xe1,
9176 0xe5, 0x45, 0x55, 0x5e, 0x08, 0x9c, 0xa3, 0xb4, 0x28, 0x29, 0xd7, 0x86,
9177 0x6a, 0x7f, 0x92, 0x5a, 0x61, 0x82, 0xf6, 0x34, 0xf9, 0xcc, 0xb7, 0xba,
9178 0x90, 0x06, 0xd2, 0x79, 0xe0, 0xdf, 0x00, 0x3c, 0xa1, 0xe6, 0xd0, 0x72,
9179 0x9a, 0xe5, 0x70, 0x7b, 0x0b, 0x64, 0xef, 0x60, 0x3f, 0x37, 0x69, 0x24,
9180 0x9b, 0x84, 0x2e, 0x29, 0x93, 0x95, 0xb3, 0x40, 0x90, 0x4f, 0x5e, 0x12,
9181 0x36, 0x6d, 0xa3, 0xf2, 0x91, 0xc0, 0x60, 0x91, 0xb1, 0xd6, 0xbc, 0x4b,
9182 0x2a, 0xd0, 0xb2, 0xcd, 0x8c, 0xfe, 0x70, 0x5f, 0xb6, 0x23, 0x4c, 0x71,
9183 0xd1, 0xce, 0x1c, 0x32, 0x65, 0x34, 0x2a, 0x05, 0xea, 0x35, 0xe1, 0x7e,
9184 0x67, 0x06, 0xf3, 0x44, 0x0c, 0x7a, 0x3c, 0x71, 0x54, 0xe4, 0xe7, 0x35,
9185 0xc5, 0x8a, 0xc5, 0xda, 0x1d, 0x26, 0x8a, 0x97, 0xc3, 0xb4, 0xc5, 0xb7,
9186 0xfb, 0xd8, 0x82, 0x0b, 0x81, 0x67, 0x4c, 0x17, 0x23, 0x74, 0x79, 0x20,
9187 0x98, 0x8d, 0xe1, 0x89, 0x26, 0x6b, 0x09, 0x60, 0x87, 0x3b, 0x45, 0xae,
9188 0xb5, 0x90, 0xfc, 0x97, 0x58, 0xeb, 0xf3, 0xea, 0x77, 0x21, 0xb7, 0xf3,
9189 0xf4, 0x58, 0x4b, 0x1a, 0x0d, 0x90, 0x2e, 0xb1, 0xc8, 0x32, 0xc4, 0x2f,
9190 0x16, 0x00, 0x15, 0xb3, 0x27, 0x5d, 0x14, 0x1f, 0x2c, 0xb8, 0x25, 0xb2,
9191 0x26, 0x22, 0xb2, 0xf2, 0x7b, 0xe3, 0xe2, 0x00, 0x2d, 0x96, 0xef, 0xff,
9192 0x1d, 0x78, 0x1b, 0xd4, 0xa1, 0x46, 0xae, 0x23, 0xb8, 0x33, 0x7c, 0x29,
9193 0x6f, 0x2a, 0x94, 0x6e, 0x41, 0x04, 0xc4, 0x4e, 0x47, 0x49, 0x62, 0x72,
9194 0x2f, 0x74, 0xd2, 0x3c, 0x41, 0x5d, 0x49, 0x90, 0x6a, 0x96, 0x34, 0xa9,
9195 0x58, 0xe4, 0xd2, 0x75, 0x10, 0x16, 0x1b, 0xa1, 0xea, 0x50, 0xca, 0xd1,
9196 0x43, 0x04, 0x42, 0xa4, 0x1a, 0xdd, 0xa2, 0x7f, 0x32, 0xdb, 0xf1, 0x6f,
9197 0xe1, 0xaa, 0xa8, 0xc5, 0x44, 0x9f, 0x06, 0x0f, 0x22, 0x70, 0x20, 0x8f,
9198 0x08, 0x46, 0x6f, 0xc3, 0x25, 0x71, 0xe8, 0xdc, 0xec, 0x5f, 0x3c, 0x06,
9199 0x0b, 0x89, 0xce, 0x7c, 0x84, 0xaf, 0xea, 0x6d, 0xda, 0x2a, 0x7d, 0xc3,
9200 0x27, 0x17, 0x0b, 0x77, 0x53, 0xee, 0xbb, 0x27, 0x72, 0x16, 0xeb, 0x86,
9201 0xf1, 0xe5, 0x16, 0x49, 0x2b, 0x4d, 0x4e, 0xd5, 0x97, 0x05, 0x17, 0xcb,
9202 0x30, 0xa9, 0x6e, 0x51, 0x25, 0xa5, 0xed, 0xd1, 0x16, 0x1b, 0x8e, 0x30,
9203 0x32, 0x82, 0x19, 0xf4, 0x99, 0x50, 0xc9, 0x23, 0x9e, 0x69, 0xae, 0x96,
9204 0x43, 0xd1, 0xc6, 0xed, 0x79, 0x8d, 0x3b, 0x53, 0x13, 0x2d, 0x3d, 0x39,
9205 0x40, 0xbb, 0x1b, 0x5c, 0xd3, 0xbd, 0x11, 0x86, 0x48, 0x17, 0xa7, 0xd2,
9206 0xb7, 0x06, 0x84, 0xa2, 0x55, 0x43, 0xf2, 0xe0, 0xf6, 0x93, 0x18, 0x04,
9207 0x3f, 0xf0, 0x2b, 0xe5, 0x5d, 0x75, 0x7d, 0x5e, 0x49, 0x9a, 0xcd, 0x32,
9208 0xe7, 0x5d, 0x47, 0xd8, 0x65, 0x1e, 0x10, 0x38, 0x05, 0x2f, 0xeb, 0x17,
9209 0x81, 0x1e, 0x93, 0xda, 0x87, 0xea, 0x3d, 0xf8, 0xd8, 0x20, 0xc0, 0xac,
9210 0xbe, 0x50, 0x62, 0x69, 0xab, 0x1c, 0x66, 0xcf, 0xb0, 0xfc, 0x36, 0x9e,
9211 0xc3, 0xcf, 0x62, 0xae, 0xa6, 0x9f, 0xc5, 0xe3, 0x24, 0x94, 0x2b, 0xdd,
9212 0xe0, 0x8a, 0x46, 0x06, 0x2d, 0x2d, 0xba, 0xde, 0xf1, 0xbc, 0xb2, 0xc2,
9213 0x0b, 0xa8, 0xe5, 0x05, 0x2f, 0x51, 0xaa, 0x0a, 0x48, 0x80, 0x38, 0xbb,
9214 0x35, 0x69, 0x56, 0x32, 0x54, 0xdc, 0x23, 0x20, 0x9d, 0xd1, 0x33, 0x66,
9215 0xac, 0x96, 0xab, 0xc2, 0xac, 0x31, 0x0f, 0xb5, 0x1c, 0x31, 0x0d, 0x47,
9216 0x9a, 0xf3, 0x97, 0x5a, 0x41, 0xc9, 0x42, 0x74, 0x9c, 0xc7, 0x9c, 0x61,
9217 0x1b, 0x6a, 0x39, 0x22, 0xbd, 0x48, 0xf4, 0x15, 0xe9, 0xb8, 0x2c, 0x1f,
9218 0xe8, 0xc9, 0x72, 0x7a, 0x0f, 0xe4, 0x35, 0x2e, 0xe5, 0x4c, 0xd9, 0x98,
9219 0x5f, 0x2b, 0x29, 0xd0, 0x15, 0x56, 0x92, 0x99, 0x10, 0xc8, 0xed, 0x5a,
9220 0x1f, 0x20, 0xae, 0xc3, 0xe0, 0xf8, 0x62, 0x23, 0xba, 0x68, 0x24, 0x1d,
9221 0x70, 0x37, 0xac, 0xa3, 0xfa, 0x65, 0xc8, 0x77, 0xac, 0x34, 0x9a, 0x6c,
9222 0x8f, 0x4f, 0x6b, 0x0f, 0x63, 0x93, 0x53, 0x4d, 0x69, 0xa9, 0xbf, 0xfa,
9223 0x05, 0xd1, 0x58, 0xcb, 0x11, 0xc1, 0x8b, 0x33, 0x72, 0xab, 0x38, 0x06,
9224 0x5c, 0xe1, 0x84, 0x81, 0x21, 0x04, 0x4e, 0xa2, 0x5e, 0x38, 0x1a, 0xb1,
9225 0xd7, 0x48, 0xfb, 0xd4, 0x2b, 0xb0, 0x64, 0xd4, 0x6b, 0xad, 0xe5, 0x77,
9226 0x00, 0xde, 0x69, 0x31, 0x04, 0x53, 0x89, 0x57, 0x1f, 0x5f, 0xa4, 0x75,
9227 0x9c, 0x9f, 0x24, 0x4b, 0x42, 0xad, 0x3d, 0xee, 0x49, 0x91, 0x92, 0x23,
9228 0x33, 0xee, 0x37, 0x5b, 0x81, 0x3b, 0x39, 0x05, 0x32, 0xb9, 0x94, 0xe0,
9229 0x2f, 0xf8, 0x84, 0xb5, 0xb5, 0xa3, 0x44, 0xe7, 0xc4, 0x90, 0x00, 0x9d,
9230 0xb0, 0x97, 0x04, 0xf5, 0xac, 0x27, 0xab, 0x6a, 0x94, 0xcf, 0xef, 0x91,
9231 0x1c, 0xf0, 0x60, 0x59, 0x5e, 0xef, 0x80, 0xc0, 0xdc, 0xe9, 0xbf, 0x20,
9232 0x1b, 0x0f, 0x14, 0xa6, 0x40, 0xbb, 0x5d, 0xce, 0x64, 0xe7, 0x7e, 0xd0,
9233 0xcd, 0xd1, 0xc4, 0x0a, 0xea, 0x6f, 0xac, 0xca, 0xd7, 0xcc, 0x78, 0xb4,
9234 0xf9, 0xf0, 0xf7, 0xa8, 0x5c, 0xa5, 0xd3, 0x42, 0xd3, 0xb4, 0xfe, 0x2b,
9235 0xf2, 0x36, 0x37, 0x36, 0x3b, 0x14, 0x8f, 0x82, 0xc7, 0xcd, 0xc4, 0xcc,
9236 0xaf, 0xa9, 0xd5, 0x65, 0x92, 0x8d, 0x39, 0x03, 0x7b, 0x98, 0x02, 0x2d,
9237 0x8b, 0x7b, 0xe3, 0x85, 0xa8, 0x8b, 0x1c, 0x7c, 0x83, 0xb0, 0x84, 0xf0,
9238 0xb5, 0x20, 0x66, 0x24, 0x98, 0x5f, 0x7f, 0xa5, 0xaf, 0xca, 0x00, 0x0c,
9239 0xb4, 0x41, 0x59, 0xe2, 0x5f, 0x9d, 0xbc, 0x3e, 0x7f, 0x7f, 0x52, 0x47,
9240 0xbe, 0xaa, 0xa8, 0xb7, 0x03, 0x25, 0x41, 0x37, 0x67, 0x47, 0x0d, 0xaa,
9241 0x18, 0x5d, 0x92, 0xd3, 0xb7, 0x53, 0x74, 0x1b, 0x45, 0x17, 0xdf, 0xbe,
9242 0x32, 0x93, 0x4b, 0xe9, 0x3a, 0xa0, 0x49, 0xe9, 0x88, 0x5d, 0xdd, 0xe3,
9243 0xc6, 0x70, 0x94, 0x30, 0xb2, 0xd1, 0x47, 0x41, 0xc7, 0x09, 0xde, 0x3a,
9244 0x3d, 0x4a, 0x3e, 0xe7, 0x92, 0x01, 0x85, 0xb2, 0xa4, 0x66, 0xf4, 0x65,
9245 0x89, 0xd0, 0x94, 0x66, 0x58, 0xcf, 0xe6, 0x21, 0xfd, 0x8f, 0x30, 0xf4,
9246 0xc5, 0x93, 0x80, 0x4d, 0xa0, 0xb0, 0x33, 0x54, 0xe0, 0x1b, 0x9a, 0x27,
9247 0xcf, 0x1f, 0x08, 0x54, 0xec, 0x5e, 0x63, 0x01, 0x3d, 0xa5, 0x26, 0xb0,
9248 0x76, 0x81, 0xde, 0x3a, 0x3c, 0x2a, 0xa6, 0x4a, 0xb2, 0xcb, 0xfd, 0xba,
9249 0x24, 0x05, 0xa5, 0x46, 0x42, 0xf8, 0x8a, 0xe7, 0xb1, 0x83, 0xaf, 0xae,
9250 0x97, 0x1b, 0x5d, 0x67, 0x9a, 0x86, 0x66, 0x32, 0xdb, 0xb5, 0x3f, 0xad,
9251 0x59, 0x74, 0x0f, 0x29, 0xff, 0x30, 0x36, 0x78, 0x33, 0x2d, 0x07, 0x76,
9252 0x1c, 0xd9, 0xe4, 0xa1, 0xc2, 0x15, 0x5d, 0x6f, 0x3f, 0x00, 0x9d, 0x63,
9253 0xf4, 0x11, 0xb9, 0x76, 0xb9, 0x25, 0x41, 0x95, 0xcf, 0x51, 0x1f, 0x63,
9254 0x3c, 0x4a, 0x6c, 0xc1, 0x48, 0xa9, 0xc9, 0x86, 0x7e, 0xf8, 0x64, 0xa8,
9255 0x5d, 0x7b, 0x9a, 0x2d, 0x10, 0xbc, 0x05, 0x83, 0xba, 0x93, 0xda, 0xe2,
9256 0x70, 0x88, 0x72, 0xc9, 0xb2, 0xa9, 0x8b, 0x4c, 0xc0, 0x18, 0x49, 0xcb,
9257 0x4f, 0xc0, 0x71, 0xff, 0x09, 0x2b, 0x24, 0x64, 0xf0, 0xdb, 0xb4, 0xe4,
9258 0xae, 0x70, 0x4e, 0x02, 0x94, 0x54, 0x66, 0xe8, 0x2c, 0x89, 0x28, 0x39,
9259 0xc1, 0xc2, 0x05, 0xf4, 0x00, 0xa5, 0x44, 0x57, 0x9a, 0xad, 0x57, 0x88,
9260 0xa0, 0x6a, 0x4c, 0x48, 0x23, 0x97, 0x29, 0xeb, 0x28, 0xa0, 0xbb, 0x13,
9261 0x99, 0x71, 0xbf, 0x31, 0xd7, 0x28, 0x2a, 0xef, 0xb3, 0x0a, 0xc5, 0x1b,
9262 0x4b, 0xe2, 0x51, 0x5e, 0x90, 0x4e, 0x80, 0x5c, 0x6f, 0xcf, 0x58, 0x49,
9263 0x98, 0xb1, 0x2f, 0xf7, 0x5f, 0x22, 0xa1, 0x7d, 0xf0, 0xcb, 0x4c, 0x8b,
9264 0x0e, 0xe8, 0xac, 0x48, 0x7b, 0x6a, 0xee, 0x70, 0xcf, 0x6b, 0xa8, 0xcd,
9265 0x9a, 0xfc, 0xbb, 0x68, 0xe8, 0x25, 0x88, 0x6b, 0xe4, 0x5d, 0xee, 0x74,
9266 0x09, 0x9a, 0x16, 0xd7, 0x4f, 0x02, 0x99, 0xf0, 0xcb, 0x44, 0x70, 0x4c,
9267 0x6a, 0x8e, 0x2d, 0x8e, 0x7b, 0x55, 0x6b, 0xfb, 0xd1, 0x87, 0x8c, 0xca,
9268 0x92, 0x84, 0x09, 0xe5, 0xa6, 0x4a, 0x33, 0xd8, 0x35, 0xd8, 0x66, 0x04,
9269 0xee, 0x08, 0xc8, 0x22, 0x16, 0x7c, 0x76, 0x41, 0x2a, 0xa9, 0x9b, 0x39,
9270 0x5c, 0x74, 0x7e, 0x4d, 0x9f, 0x74, 0x96, 0x5f, 0xaf, 0x41, 0xfe, 0x06,
9271 0xaa, 0x4e, 0xd8, 0x8b, 0x04, 0xcb, 0xa1, 0xb1, 0x31, 0x47, 0x2f, 0x99,
9272 0x4e, 0x19, 0xf1, 0x8d, 0x9a, 0x4b, 0xa3, 0x9d, 0xc7, 0xb0, 0x7b, 0x54,
9273 0xdf, 0xa3, 0x06, 0x30, 0xda, 0xbf, 0xde, 0xe5, 0x46, 0xe8, 0x81, 0x7d,
9274 0x84, 0x76, 0x51, 0x48, 0x5e, 0x45, 0xd3, 0xd0, 0x4c, 0x04, 0xc4, 0x79,
9275 0xb2, 0x2e, 0x31, 0xa2, 0xce, 0xdf, 0x55, 0xac, 0x86, 0x4e, 0xbb, 0xdf,
9276 0x68, 0x30, 0x46, 0x42, 0xa3, 0xdb, 0x9a, 0xd5, 0x89, 0x30, 0xd2, 0x0a,
9277 0xaa, 0xb8, 0xfc, 0xa0, 0x9e, 0x93, 0x32, 0xa9, 0x4a, 0xab, 0x44, 0xc4,
9278 0x24, 0x08, 0x69, 0xcf, 0xb4, 0xa5, 0x70, 0xb4, 0x64, 0x38, 0xa4, 0x13,
9279 0x36, 0xa2, 0x95, 0x08, 0x10, 0x29, 0x46, 0xc4, 0xf5, 0xd9, 0x98, 0xd5,
9280 0xe9, 0x43, 0x9a, 0x4f, 0x72, 0x47, 0x7a, 0x20, 0xb0, 0xc8, 0x17, 0xe1,
9281 0x4e, 0x5c, 0x56, 0x09, 0x00, 0xbd, 0xa1, 0xa8, 0x48, 0x51, 0xa1, 0x37,
9282 0xd9, 0x3f, 0x51, 0x32, 0x8c, 0x9b, 0xa4, 0xeb, 0x01, 0x3b, 0x7c, 0xbc,
9283 0x4a, 0x2a, 0xfc, 0xfd, 0xfa, 0xee, 0x06, 0x91, 0x23, 0x3c, 0xdc, 0x1c,
9284 0xa1, 0x17, 0x09, 0xf5, 0xad, 0x3e, 0x09, 0x83, 0x02, 0x07, 0x3a, 0x91,
9285 0x0d, 0x84, 0x61, 0xfb, 0x52, 0xef, 0x06, 0x1f, 0x5d, 0x5f, 0x15, 0xf3,
9286 0xe8, 0x0a, 0xd4, 0xe8, 0xf9, 0x03, 0x54, 0x95, 0x47, 0x3d, 0xb2, 0xf2,
9287 0xbb, 0xa7, 0xaf, 0xf4, 0xcc, 0x19, 0xe5, 0x11, 0xfd, 0x2a, 0xe1, 0xe1,
9288 0x9a, 0xa4, 0x54, 0x86, 0x35, 0x43, 0x59, 0x7b, 0x59, 0x29, 0xcf, 0xbf,
9289 0x0b, 0x0f, 0x57, 0xdb, 0x10, 0x1e, 0x43, 0x07, 0xa6, 0x03, 0x38, 0x86,
9290 0xc1, 0x66, 0x31, 0x1f, 0xb1, 0x2b, 0x10, 0x7c, 0xfa, 0x19, 0xbf, 0x30,
9291 0xef, 0x7a, 0x96, 0x8f, 0x11, 0x00, 0x29, 0x79, 0x98, 0x16, 0xf8, 0xa4,
9292 0x21, 0x86, 0x62, 0x47, 0x95, 0x0e, 0x43, 0xf1, 0x38, 0xc3, 0x94, 0x37,
9293 0xdb, 0xc7, 0x22, 0x6e, 0x5a, 0xf5, 0x52, 0xba, 0x85, 0xc3, 0xd3, 0x9b,
9294 0xee, 0x12, 0xb2, 0x28, 0x1f, 0x55, 0xce, 0x0a, 0xf0, 0x81, 0x16, 0x86,
9295 0xa5, 0xbb, 0x2b, 0xb0, 0x32, 0x84, 0x11, 0x22, 0x8f, 0xcd, 0xf2, 0x95,
9296 0xf1, 0x83, 0xde, 0x26, 0xc3, 0x0f, 0xf9, 0x46, 0xf4, 0x76, 0xb8, 0x7d,
9297 0x65, 0xa1, 0x1d, 0xa6, 0x19, 0x34, 0x37, 0x98, 0x1b, 0xaf, 0x97, 0xd4,
9298 0x01, 0x74, 0xee, 0x6b, 0xce, 0x7a, 0x76, 0x74, 0x87, 0xa5, 0xd1, 0xf7,
9299 0x92, 0x0d, 0x96, 0xaf, 0x78, 0x54, 0x98, 0x66, 0x70, 0xfa, 0x16, 0xc5,
9300 0x28, 0xf9, 0x48, 0x73, 0xe3, 0x86, 0x3a, 0x1f, 0x97, 0x13, 0x64, 0x2a,
9301 0x98, 0xa7, 0xf7, 0x33, 0x54, 0x8a, 0xad, 0x00, 0x96, 0x26, 0x9c, 0xb1,
9302 0x60, 0x80, 0x82, 0xe2, 0x4e, 0xbf, 0x67, 0x2b, 0xb8, 0x85, 0xed, 0xed,
9303 0xf7, 0x22, 0x83, 0xe4, 0x3d, 0xcf, 0x61, 0xd6, 0x02, 0x83, 0x2d, 0xce,
9304 0x22, 0x67, 0x8a, 0xf4, 0x5c, 0x0b, 0x41, 0x82, 0x5e, 0xd2, 0xd9, 0x27,
9305 0xc4, 0xfb, 0x31, 0x5a, 0xd6, 0xc7, 0xcc, 0x8f, 0x2f, 0xba, 0x7c, 0xcc,
9306 0x8f, 0xeb, 0x76, 0xf3, 0x9a, 0x9a, 0xfd, 0xb9, 0xdd, 0x9d, 0x86, 0x1f,
9307 0xb7, 0xcc, 0xc6, 0xfd, 0xa0, 0x39, 0x91, 0xde, 0xec, 0x1e, 0x2b, 0xc2,
9308 0x67, 0x4b, 0x44, 0x78, 0x0d, 0xa0, 0xcc, 0x15, 0xe4, 0x4b, 0xd8, 0xb0,
9309 0xb6, 0x86, 0x47, 0x4a, 0xf1, 0xf0, 0x70, 0xa8, 0xe4, 0x2c, 0x97, 0xe2,
9310 0xd2, 0xea, 0xb8, 0x26, 0xc3, 0x7f, 0x4b, 0x11, 0x8e, 0x31, 0x4c, 0x0d,
9311 0x10, 0xc2, 0x5f, 0x95, 0x68, 0xaa, 0xde, 0x51, 0x51, 0xf2, 0xb0, 0xcc,
9312 0xa7, 0x0b, 0xf4, 0xb0, 0xc4, 0xd5, 0x35, 0xef, 0xd0, 0x44, 0xe7, 0xd9,
9313 0xba, 0x9f, 0x59, 0xe5, 0x6b, 0xed, 0xde, 0x8e, 0xc2, 0x63, 0x38, 0x1c,
9314 0xf3, 0xac, 0x70, 0x78, 0xfb, 0xb6, 0xca, 0xd3, 0x76, 0x8a, 0xac, 0x87,
9315 0xd8, 0x4d, 0x29, 0x02, 0x7c, 0xd7, 0x7e, 0x87, 0xe8, 0x67, 0x9b, 0x52,
9316 0x66, 0x9c, 0x60, 0x0c, 0x49, 0xce, 0x17, 0x96, 0x3f, 0x3c, 0x2c, 0xac,
9317 0xa4, 0xe1, 0x7a, 0x1b, 0xe3, 0x16, 0xb3, 0x07, 0x18, 0x16, 0x1e, 0xb0,
9318 0xab, 0x62, 0x08, 0x62, 0xb3, 0x2a, 0x4f, 0xd8, 0x09, 0x03, 0xb6, 0x50,
9319 0xbe, 0x6d, 0x06, 0xb5, 0x83, 0xbd, 0xe4, 0x4c, 0xf3, 0x93, 0xc1, 0xe9,
9320 0x58, 0xe2, 0xc2, 0xee, 0x16, 0xf7, 0x76, 0x66, 0x2d, 0xbc, 0x7e, 0xdf,
9321 0x78, 0x4b, 0xc8, 0xd3, 0x75, 0x82, 0x2d, 0xe4, 0x36, 0x40, 0x1f, 0x8b,
9322 0xcf, 0x1b, 0x2a, 0x33, 0x57, 0x92, 0xb9, 0xe8, 0x00, 0x98, 0x3a, 0x72,
9323 0xcd, 0x73, 0x31, 0x88, 0x6f, 0x81, 0x95, 0xc7, 0xce, 0xab, 0x93, 0xb3,
9324 0x13, 0xa2, 0x67, 0x27, 0xd0, 0xc6, 0x71, 0x92, 0xe7, 0x66, 0x1c, 0xeb,
9325 0x58, 0xf8, 0xae, 0x6b, 0x9b, 0xaa, 0xb9, 0x6e, 0x32, 0x5c, 0x19, 0xe8,
9326 0xa2, 0x4b, 0x20, 0x3e, 0xb4, 0x9b, 0xf6, 0x75, 0x62, 0xd9, 0x8a, 0x7a,
9327 0xb2, 0xa7, 0x94, 0xd2, 0x42, 0x35, 0x34, 0x54, 0xd0, 0x87, 0xde, 0x14,
9328 0x35, 0x89, 0xa8, 0x1b, 0xc9, 0x38, 0x29, 0x3c, 0x22, 0xc7, 0xd8, 0x09,
9329 0x99, 0xbe, 0x19, 0x71, 0xa5, 0x05, 0x77, 0xbc, 0xc4, 0xb4, 0x0c, 0x51,
9330 0xcc, 0xc9, 0xce, 0xe0, 0x8e, 0xaf, 0x6c, 0x45, 0xcb, 0xe3, 0x49, 0x76,
9331 0x05, 0x06, 0x50, 0xc0, 0xa6, 0xad, 0x97, 0xbb, 0x80, 0xf0, 0x30, 0xab,
9332 0xe6, 0xb0, 0x5b, 0x72, 0x35, 0xee, 0x09, 0xf3, 0x3d, 0x25, 0xfd, 0xdf,
9333 0xa5, 0x10, 0x26, 0xfd, 0xa7, 0xe5, 0xf5, 0x8a, 0xb1, 0x15, 0x9d, 0x80,
9334 0x43, 0xf7, 0xa2, 0xcb, 0x23, 0x83, 0x1c, 0x3c, 0xa4, 0xff, 0x04, 0x61,
9335 0x2b, 0x22, 0x75, 0xed, 0x44, 0xaf, 0x4f, 0xcf, 0x4e, 0x36, 0xa2, 0xf7,
9336 0x92, 0xae, 0x82, 0xf6, 0xd5, 0x7d, 0x45, 0x94, 0x81, 0x01, 0xd6, 0xd3,
9337 0x3e, 0xa8, 0x50, 0x0c, 0x5f, 0x80, 0xb6, 0xca, 0x38, 0x1f, 0x05, 0x93,
9338 0x7f, 0x36, 0x34, 0x55, 0x07, 0xed, 0x67, 0x1c, 0x7e, 0x73, 0xbb, 0xbf,
9339 0xdd, 0x8d, 0x8c, 0x37, 0xc8, 0x31, 0x08, 0xa9, 0xd0, 0x49, 0xfa, 0x6c,
9340 0xe3, 0xa7, 0x9b, 0x5e, 0xc7, 0xf7, 0xf8, 0xe1, 0xd2, 0x8f, 0xd3, 0x51,
9341 0xb0, 0xcf, 0x7a, 0x12, 0x6e, 0xe3, 0x7b, 0xdf, 0x46, 0xdc, 0xea, 0xed,
9342 0xbd, 0x7c, 0x59, 0xd3, 0x02, 0x4b, 0xa7, 0x4f, 0xf9, 0xfe, 0xd6, 0x16,
9343 0xad, 0xcd, 0x43, 0x85, 0x84, 0x5f, 0xf4, 0x5e, 0xd2, 0x8b, 0xf5, 0xd7,
9344 0xca, 0x04, 0xf6, 0x7e, 0xdc, 0xfe, 0x5e, 0x0f, 0x7f, 0x13, 0xf8, 0x1c,
9345 0xdd, 0xaa, 0xad, 0x6f, 0xbd, 0xc4, 0xcf, 0x05, 0xde, 0xa2, 0x87, 0x99,
9346 0x8c, 0xf9, 0x64, 0x82, 0x5e, 0x73, 0x7c, 0x52, 0x31, 0xd7, 0x6f, 0xe3,
9347 0x62, 0xec, 0x2f, 0x77, 0xab, 0xdb, 0xdb, 0x6e, 0x5b, 0x2e, 0x65, 0x08,
9348 0x51, 0x5d, 0x06, 0xee, 0x27, 0xfa, 0x6f, 0xd6, 0xff, 0x73, 0x83, 0x21,
9349 0x4b, 0x9a, 0x03, 0x6d, 0xc3, 0x8c, 0xb6, 0x5f, 0xbe, 0xec, 0xe2, 0xcc,
9350 0xf6, 0x5f, 0xbe, 0x6c, 0xc5, 0xdc, 0x74, 0x3e, 0x73, 0x9b, 0x5b, 0x67,
9351 0x34, 0xbe, 0x6e, 0x99, 0xa6, 0x84, 0xcf, 0x44, 0xe1, 0xef, 0xe0, 0x6f,
9352 0x3e, 0x8f, 0xde, 0x9d, 0x5f, 0x9e, 0x38, 0x6e, 0x5a, 0x3a, 0xd7, 0x9c,
9353 0xbf, 0xe1, 0x38, 0x53, 0x28, 0xa3, 0x65, 0x8e, 0x99, 0xe8, 0xec, 0x8d,
9354 0x42, 0xf7, 0x80, 0xef, 0xe5, 0x21, 0x58, 0x0d, 0x13, 0x80, 0xe8, 0x4a,
9355 0x31, 0x9e, 0x11, 0x15, 0x7c, 0x65, 0x53, 0xbe, 0x0d, 0xf6, 0x8d, 0x94,
9356 0xb0, 0xf4, 0x7f, 0x44, 0x17, 0x71, 0x51, 0xfa, 0x85, 0xaa, 0xe8, 0xea,
9357 0x50, 0xdf, 0x8e, 0x38, 0xcf, 0xf2, 0x62, 0x66, 0xfc, 0xd1, 0x26, 0xcc,
9358 0x21, 0x86, 0xb8, 0xfc, 0x3b, 0x1d, 0xa6, 0xd3, 0xb4, 0xba, 0x6f, 0xf1,
9359 0xf2, 0x60, 0x47, 0xd6, 0x22, 0x90, 0x7e, 0x87, 0xce, 0xb4, 0x71, 0x7a,
9360 0x95, 0x56, 0x6e, 0xb3, 0x80, 0x75, 0x60, 0xc3, 0x0d, 0xf2, 0x86, 0x72,
9361 0xe5, 0x80, 0x04, 0xde, 0xd7, 0x4a, 0x44, 0xc8, 0xe0, 0x72, 0xbe, 0x35,
9362 0x74, 0x88, 0xad, 0x79, 0xde, 0x9b, 0x64, 0x3a, 0x56, 0xab, 0x48, 0x1e,
9363 0xef, 0xd1, 0x83, 0x72, 0x8c, 0xc9, 0x3f, 0x74, 0x47, 0x91, 0xd1, 0x98,
9364 0xda, 0x47, 0xf1, 0xa7, 0xdb, 0x43, 0xef, 0xe4, 0x75, 0xa7, 0xac, 0x3f,
9365 0x05, 0xb1, 0xc1, 0x71, 0xdc, 0x72, 0xbf, 0x35, 0x87, 0x20, 0x26, 0x88,
9366 0x90, 0x21, 0x83, 0x78, 0xad, 0x7d, 0x38, 0xc4, 0x3a, 0x4e, 0xe6, 0x5a,
9367 0x16, 0x97, 0xd5, 0xc7, 0x81, 0x43, 0x36, 0x49, 0xaf, 0x16, 0x45, 0xb8,
9368 0x82, 0xea, 0x6f, 0x16, 0x69, 0x85, 0x64, 0x1e, 0xea, 0x8b, 0xb7, 0xb1,
9369 0x22, 0xbc, 0xcc, 0xd0, 0xbf, 0xa8, 0x02, 0x47, 0x5d, 0x4e, 0x8a, 0xa8,
9370 0x12, 0x5d, 0xc7, 0x1e, 0x64, 0x06, 0x47, 0xfe, 0x26, 0xa0, 0x97, 0x2f,
9371 0x08, 0x99, 0x99, 0x33, 0x42, 0x29, 0xfa, 0x40, 0x03, 0x1a, 0x14, 0x1b,
9372 0x89, 0x74, 0x20, 0x23, 0xa2, 0x22, 0x13, 0x0b, 0x09, 0x02, 0xc5, 0x0a,
9373 0xa6, 0xa9, 0x39, 0xc6, 0x56, 0xf1, 0x59, 0xf2, 0xcf, 0x5e, 0xe7, 0xd8,
9374 0x17, 0x01, 0xe4, 0x25, 0xca, 0x47, 0x1f, 0xb2, 0x57, 0xd0, 0xbf, 0x49,
9375 0x30, 0xf2, 0x26, 0x8d, 0xc1, 0x26, 0x9c, 0xe6, 0x31, 0x6e, 0xa4, 0xeb,
9376 0x6b, 0x55, 0xcd, 0x8c, 0x1b, 0x5d, 0xe8, 0xee, 0x7a, 0x49, 0x84, 0xb8,
9377 0xd9, 0xb2, 0xcf, 0xd8, 0x55, 0xd4, 0x02, 0x4a, 0xd3, 0xf9, 0x71, 0x5c,
9378 0x78, 0x2c, 0x42, 0xe1, 0x23, 0x8c, 0x8f, 0xbc, 0xd1, 0x8f, 0x7c, 0xe7,
9379 0x18, 0x9e, 0x45, 0xde, 0x2f, 0x93, 0x57, 0x99, 0xdc, 0x55, 0xf0, 0xcf,
9380 0x64, 0xec, 0x7a, 0x15, 0xa3, 0xc1, 0xe9, 0xff, 0x3a, 0xf9, 0xbd, 0xd3,
9381 0x14, 0x98, 0x78, 0x3b, 0x3b, 0xbd, 0xbd, 0xbd, 0xd5, 0xee, 0xce, 0x63,
9382 0xc2, 0x2e, 0xcb, 0x33, 0xf2, 0x15, 0xf7, 0x62, 0xa9, 0x05, 0x8b, 0xf1,
9383 0xa7, 0xf1, 0x1c, 0xd7, 0x5e, 0xd7, 0x65, 0x6e, 0x0d, 0xde, 0xd3, 0xb7,
9384 0xdc, 0x87, 0x4a, 0xf2, 0x06, 0x0c, 0x62, 0x72, 0x3c, 0x15, 0xa7, 0x23,
9385 0xd0, 0x9d, 0xc3, 0xbc, 0x94, 0x0e, 0x43, 0x1c, 0x3f, 0x09, 0x3a, 0xa9,
9386 0x29, 0xc7, 0xd4, 0xc1, 0x22, 0xe7, 0xea, 0x5e, 0x42, 0xf0, 0xe1, 0xd8,
9387 0x05, 0xb3, 0xd4, 0x8c, 0x22, 0x20, 0xe4, 0x88, 0xc4, 0x10, 0x0e, 0xb7,
9388 0x30, 0xf0, 0xe3, 0xb7, 0xd4, 0xae, 0x08, 0x27, 0x05, 0x73, 0x5d, 0x9d,
9389 0x88, 0xb7, 0xab, 0x96, 0x99, 0x14, 0x3d, 0x9d, 0xad, 0x43, 0xa7, 0x84,
9390 0x55, 0x41, 0xcc, 0x8b, 0x28, 0xa2, 0xc3, 0x0f, 0xef, 0xcf, 0x5a, 0x20,
9391 0xb3, 0x06, 0xc4, 0x5a, 0xc8, 0x03, 0x9d, 0xf7, 0x09, 0xf5, 0x06, 0x29,
9392 0x40, 0x28, 0x5f, 0x81, 0xd2, 0xe9, 0xb4, 0x63, 0xa9, 0xf5, 0x8a, 0x12,
9393 0xdf, 0x6b, 0xc8, 0x97, 0x8c, 0xaa, 0x82, 0x8a, 0x06, 0xbc, 0x36, 0x9d,
9394 0xb4, 0x28, 0x85, 0xe5, 0x99, 0xc6, 0xb2, 0x09, 0x8b, 0x02, 0x93, 0xd9,
9395 0xcc, 0x0e, 0x86, 0xa0, 0x0a, 0x9c, 0xae, 0x60, 0x9a, 0x89, 0xc5, 0xfc,
9396 0x10, 0x75, 0xfe, 0x8c, 0x21, 0xcf, 0x8e, 0xce, 0xcb, 0xae, 0x94, 0x1b,
9397 0x2b, 0x7b, 0x6e, 0x70, 0x0a, 0x51, 0x48, 0x34, 0xa3, 0x1e, 0x2c, 0x2d,
9398 0x45, 0x4a, 0x80, 0x75, 0x7a, 0x93, 0x22, 0x1a, 0x34, 0x0e, 0xa0, 0x35,
9399 0x68, 0xdc, 0x86, 0xcd, 0x2f, 0xa5, 0x3e, 0x93, 0x69, 0x1d, 0x48, 0xd4,
9400 0x9c, 0xf5, 0x5b, 0x9d, 0x54, 0x3d, 0x8b, 0x95, 0x8e, 0x5c, 0x3c, 0x85,
9401 0xc3, 0xd5, 0xe5, 0x30, 0x08, 0x88, 0xe1, 0x80, 0xe8, 0x12, 0x41, 0x89,
9402 0xd3, 0x89, 0x33, 0x13, 0x40, 0xab, 0x6d, 0xe3, 0xef, 0x5e, 0xaf, 0xac,
9403 0x44, 0xee, 0x28, 0x83, 0x4e, 0x80, 0xac, 0x9a, 0x8a, 0xd4, 0x59, 0xa1,
9404 0x66, 0x79, 0xe9, 0x40, 0x42, 0xc5, 0xde, 0xd9, 0x53, 0x06, 0x5c, 0xfe,
9405 0x72, 0xeb, 0x21, 0x3a, 0xd2, 0x5e, 0xe0, 0xbd, 0xf8, 0x8a, 0x82, 0x7f,
9406 0x28, 0x80, 0xde, 0x74, 0x0d, 0xdf, 0x3a, 0x07, 0xeb, 0xbf, 0x78, 0x47,
9407 0x30, 0xc4, 0x2a, 0xbf, 0xec, 0x05, 0x3c, 0x51, 0x72, 0xba, 0x1a, 0xd9,
9408 0xa0, 0x15, 0x63, 0x24, 0x28, 0xcb, 0xd2, 0x18, 0xe2, 0x55, 0xd2, 0x63,
9409 0x26, 0xca, 0x57, 0x30, 0x5e, 0xdb, 0xb3, 0x3a, 0xf8, 0x31, 0x43, 0x96,
9410 0xf5, 0x5e, 0xa5, 0x70, 0xf3, 0x97, 0xdc, 0x32, 0x80, 0x8c, 0x35, 0x06,
9411 0xdd, 0x52, 0x81, 0x45, 0xfe, 0xa3, 0xe4, 0xae, 0xe7, 0x37, 0x02, 0x1a,
9412 0x19, 0x40, 0x01, 0xfb, 0x96, 0x49, 0x09, 0x80, 0x33, 0x60, 0x92, 0xb7,
9413 0xe4, 0xd3, 0xc6, 0x2c, 0x9e, 0x84, 0x43, 0x2e, 0x2e, 0xd0, 0x02, 0x63,
9414 0xe3, 0x56, 0xae, 0xa9, 0x88, 0x67, 0x02, 0x8e, 0x2e, 0x66, 0x3c, 0x4d,
9415 0xdc, 0xc8, 0x68, 0xeb, 0x70, 0xc2, 0xcc, 0xe1, 0x2c, 0x42, 0x4e, 0xe0,
9416 0x2f, 0xa3, 0x32, 0xbe, 0xb1, 0x59, 0x91, 0x52, 0x3c, 0xe9, 0xc6, 0x61,
9417 0xb1, 0x23, 0x67, 0x56, 0x37, 0xf4, 0xdb, 0x32, 0xcf, 0x54, 0xe2, 0x70,
9418 0x36, 0x4c, 0x0f, 0x7b, 0xbc, 0xb4, 0xe4, 0x12, 0x2b, 0xc8, 0x82, 0xd1,
9419 0xc0, 0x63, 0xeb, 0x88, 0x23, 0xc6, 0x31, 0x70, 0x14, 0x38, 0xa2, 0xe4,
9420 0xae, 0x06, 0x58, 0xc4, 0xb4, 0x33, 0xa0, 0xc4, 0xe0, 0xd2, 0x69, 0x18,
9421 0xef, 0x3a, 0x79, 0xdc, 0xe5, 0xa4, 0x95, 0x0b, 0xe7, 0xd6, 0xd4, 0x99,
9422 0x61, 0x52, 0xb7, 0x05, 0x6a, 0x12, 0xec, 0xd6, 0x55, 0x68, 0x79, 0x01,
9423 0xa6, 0x1b, 0x01, 0x79, 0xfa, 0xb4, 0x86, 0x7a, 0x8b, 0x6e, 0x42, 0x69,
9424 0x68, 0x4d, 0xc9, 0xbb, 0xaf, 0x2d, 0x8e, 0xea, 0x6b, 0x5c, 0x89, 0x83,
9425 0xa1, 0xf0, 0x2c, 0x17, 0xc8, 0xf9, 0xd0, 0x56, 0x51, 0x96, 0x32, 0x3e,
9426 0xe2, 0x2a, 0x71, 0x9c, 0x9b, 0x1a, 0xfd, 0xb1, 0xc7, 0xcd, 0x17, 0x30,
9427 0x08, 0xb7, 0x7e, 0x9f, 0x80, 0xe5, 0x6a, 0xd3, 0x5b, 0x89, 0xd5, 0x3e,
9428 0x6b, 0xf1, 0x76, 0x8a, 0x8a, 0x68, 0xa7, 0x81, 0x3e, 0x05, 0x27, 0x7f,
9429 0x87, 0x09, 0x0f, 0x4a, 0x2c, 0x95, 0xa4, 0x64, 0xc9, 0x1d, 0x36, 0x8b,
9430 0x6d, 0x1f, 0xce, 0x37, 0x5e, 0xbf, 0x3d, 0x7a, 0xff, 0xee, 0xf4, 0xdd,
9431 0xd7, 0x07, 0x28, 0x11, 0x93, 0x62, 0x84, 0x46, 0x48, 0xf4, 0xd3, 0x62,
9432 0x9c, 0x8e, 0xe8, 0x82, 0xd0, 0x66, 0x55, 0x35, 0x74, 0x8a, 0x44, 0x62,
9433 0x88, 0xd4, 0x7d, 0xc0, 0xeb, 0x8d, 0x44, 0x85, 0x4f, 0x08, 0xae, 0x51,
9434 0xe4, 0x57, 0x0b, 0xc3, 0x41, 0x23, 0x52, 0xa5, 0x29, 0x6c, 0x4c, 0x49,
9435 0x48, 0xb8, 0x2d, 0x7c, 0x10, 0xf1, 0xd4, 0xc2, 0xc9, 0x7c, 0x75, 0x76,
9436 0x16, 0xf9, 0xad, 0x19, 0xb9, 0xd4, 0x86, 0x5d, 0x4e, 0x04, 0xf6, 0xa7,
9437 0x75, 0x2e, 0xa8, 0xb2, 0xe2, 0x5d, 0x53, 0xbb, 0xdf, 0xc0, 0xd2, 0xd2,
9438 0xc2, 0x2b, 0x2a, 0x54, 0x98, 0x05, 0xd4, 0x70, 0xaa, 0x5c, 0x2c, 0x2a,
9439 0x6c, 0x4d, 0x37, 0xa9, 0x50, 0xa3, 0x5f, 0x51, 0x69, 0x39, 0xff, 0xaf,
9440 0x90, 0xb4, 0xdd, 0xa4, 0xa3, 0xdd, 0x2a, 0x72, 0xcf, 0xbb, 0x75, 0x19,
9441 0x58, 0xd3, 0xf1, 0xec, 0x8f, 0x11, 0x23, 0x60, 0x59, 0xd8, 0xfa, 0x9a,
9442 0x9d, 0x14, 0x35, 0xec, 0x75, 0x4e, 0x2f, 0xa2, 0x2e, 0x5c, 0xc0, 0xfa,
9443 0x6c, 0x3d, 0x81, 0x48, 0x2b, 0xc3, 0xd9, 0x26, 0xe3, 0x04, 0xf4, 0x35,
9444 0x31, 0x6e, 0x4b, 0x4c, 0x24, 0xa8, 0x8b, 0xe6, 0xdb, 0xa4, 0x90, 0x4b,
9445 0xdc, 0x20, 0x15, 0xc2, 0x45, 0xda, 0x8f, 0x06, 0xb9, 0x64, 0x88, 0x37,
9446 0x35, 0x97, 0x98, 0x41, 0x16, 0xb5, 0xe7, 0x04, 0xed, 0x11, 0xcd, 0xc5,
9447 0x26, 0xa8, 0xa3, 0x8e, 0x21, 0xed, 0x9f, 0x1f, 0x5a, 0x2c, 0x1e, 0xb1,
9448 0x61, 0x62, 0xd4, 0xdc, 0x7b, 0xcd, 0x36, 0x40, 0x26, 0xec, 0xf4, 0x80,
9449 0x8e, 0x1d, 0xdc, 0xd7, 0x5e, 0x2f, 0xcb, 0xc3, 0xc4, 0x7c, 0xa4, 0xd6,
9450 0x59, 0x9f, 0x43, 0xc8, 0xe1, 0x08, 0x9b, 0xb9, 0xdd, 0xf2, 0xf3, 0x9d,
9451 0x27, 0xed, 0x72, 0xf3, 0x57, 0xcd, 0x53, 0x53, 0xa4, 0x54, 0xea, 0xc7,
9452 0xd9, 0x89, 0x84, 0xf2, 0xc3, 0xae, 0x2a, 0x27, 0xea, 0x41, 0xc9, 0x06,
9453 0x4e, 0xca, 0x13, 0xfd, 0xea, 0x36, 0x41, 0xd3, 0xcf, 0x4b, 0xa1, 0x3b,
9454 0xe7, 0x1e, 0x33, 0xf2, 0x90, 0x8b, 0x02, 0xea, 0xbe, 0x2c, 0xd7, 0x4e,
9455 0xd7, 0x7a, 0x42, 0x53, 0x02, 0x35, 0xaa, 0x3c, 0x1c, 0xa0, 0x89, 0x9f,
9456 0x33, 0x66, 0xef, 0x26, 0x73, 0xed, 0x85, 0x2e, 0x28, 0x3f, 0xf4, 0x20,
9457 0x85, 0x92, 0x41, 0x4e, 0x32, 0xae, 0x76, 0x1d, 0x2a, 0x8e, 0x9c, 0xe2,
9458 0x7d, 0xf7, 0x7a, 0x10, 0x2d, 0x97, 0x40, 0x57, 0x03, 0xc3, 0x09, 0x9c,
9459 0x8a, 0x89, 0xc4, 0x87, 0xe7, 0xa2, 0x97, 0x73, 0x9a, 0xdd, 0xe4, 0xf4,
9460 0x1b, 0xa9, 0x42, 0x0c, 0xa4, 0xd0, 0xa6, 0xad, 0xa5, 0xfc, 0x97, 0x0d,
9461 0xaa, 0xaa, 0x37, 0x59, 0x8b, 0x49, 0x61, 0x2d, 0x9a, 0x48, 0x61, 0xf1,
9462 0x85, 0x2c, 0xa4, 0x50, 0x93, 0x15, 0xf8, 0x04, 0xe3, 0xa9, 0xe9, 0xd2,
9463 0x55, 0x75, 0x4d, 0x2f, 0x27, 0x53, 0xf2, 0x33, 0x59, 0xc0, 0x21, 0xbd,
9464 0x50, 0xe5, 0x3e, 0x4d, 0x8d, 0xf6, 0xd1, 0x7e, 0x53, 0x1a, 0x68, 0x04,
9465 0x43, 0x6b, 0xeb, 0xf4, 0xc2, 0x7a, 0x44, 0xae, 0xa6, 0x41, 0xb1, 0x31,
9466 0xba, 0xce, 0x73, 0x49, 0x7a, 0x6f, 0xbb, 0x48, 0x22, 0xd2, 0x42, 0x19,
9467 0xd7, 0xd7, 0x57, 0x10, 0x4d, 0x9f, 0x16, 0x6b, 0x15, 0x50, 0xbf, 0x27,
9468 0xbf, 0xd7, 0x98, 0xb5, 0xb8, 0x9c, 0x1e, 0x6d, 0x75, 0xe5, 0x83, 0x67,
9469 0x53, 0x1a, 0xfd, 0x4d, 0x2f, 0x8e, 0x50, 0x5d, 0x03, 0x88, 0x1f, 0x56,
9470 0x4d, 0xc2, 0xe4, 0x91, 0xda, 0x18, 0x97, 0x28, 0xc1, 0x8b, 0x9c, 0x33,
9471 0xf7, 0x6d, 0x71, 0x09, 0x71, 0x0d, 0x79, 0x33, 0xb2, 0x7a, 0xe8, 0x9c,
9472 0xe6, 0x0a, 0xa3, 0xa3, 0xe4, 0xfa, 0xe3, 0xce, 0x56, 0xdb, 0x05, 0x86,
9473 0x03, 0x29, 0x86, 0x16, 0x9e, 0x46, 0xe3, 0x35, 0xe3, 0x2b, 0xde, 0x62,
9474 0xea, 0xe2, 0xfd, 0xb8, 0x98, 0x47, 0xe2, 0x39, 0x84, 0xff, 0xb4, 0xd1,
9475 0x3f, 0xe8, 0xb0, 0x32, 0xad, 0xc6, 0x5c, 0x85, 0x21, 0x2e, 0xd9, 0x5d,
9476 0xc5, 0x08, 0xaf, 0x52, 0x6a, 0x62, 0x3d, 0xda, 0x74, 0x57, 0xf8, 0x07,
9477 0x08, 0x7d, 0x58, 0xab, 0xde, 0x8c, 0xad, 0x17, 0x23, 0x49, 0xbc, 0x76,
9478 0xa3, 0xbe, 0x21, 0x90, 0x1d, 0xb1, 0xf9, 0xde, 0x11, 0x9b, 0x38, 0xff,
9479 0x50, 0xde, 0xbd, 0x8a, 0x30, 0xf5, 0xe9, 0xda, 0x0c, 0x3d, 0x47, 0x0d,
9480 0x23, 0x4f, 0x5f, 0x82, 0x02, 0x56, 0x64, 0x02, 0x8e, 0xe6, 0xbb, 0xb3,
9481 0x60, 0xda, 0x51, 0x40, 0x52, 0x76, 0xf5, 0xe0, 0x69, 0x7e, 0x6d, 0x6c,
9482 0x9b, 0x9f, 0xc5, 0x22, 0x95, 0xa7, 0x7e, 0xe7, 0x3b, 0x95, 0xdf, 0xec,
9483 0x9c, 0xc3, 0x8a, 0x37, 0x12, 0x0d, 0xb8, 0x0f, 0xf8, 0xa5, 0x27, 0xde,
9484 0x5b, 0x14, 0x2a, 0xef, 0x61, 0xb7, 0xc2, 0x7c, 0x35, 0xbb, 0xaf, 0x79,
9485 0x07, 0xb1, 0xe1, 0xf7, 0x33, 0xfe, 0x94, 0xa8, 0x81, 0x51, 0x87, 0xba,
9486 0x62, 0x42, 0xb1, 0xb5, 0x9e, 0xc4, 0x54, 0x0f, 0xf1, 0x86, 0xf8, 0xe2,
9487 0x31, 0xdd, 0xe2, 0xa9, 0x04, 0x3e, 0xab, 0x35, 0xb2, 0xee, 0xf0, 0x20,
9488 0x9d, 0x68, 0x1d, 0x47, 0xd9, 0x30, 0x46, 0x9b, 0x8f, 0x38, 0x27, 0x05,
9489 0x57, 0x52, 0x84, 0x10, 0xb3, 0xa2, 0xd2, 0x2c, 0x0a, 0x23, 0x9b, 0xed,
9490 0x02, 0xa3, 0x43, 0xa3, 0xc5, 0x34, 0x2e, 0x18, 0x43, 0x66, 0xb2, 0x68,
9491 0xea, 0x13, 0xe4, 0xda, 0x40, 0x69, 0x27, 0x89, 0x19, 0x69, 0x59, 0x2e,
9492 0xc4, 0xb1, 0x63, 0xfb, 0xd2, 0x6b, 0xdb, 0xab, 0x68, 0x0a, 0xf3, 0xa1,
9493 0x4f, 0x97, 0x53, 0xcc, 0x98, 0x6d, 0x3b, 0xcb, 0x1c, 0xda, 0x13, 0x53,
9494 0xc7, 0xe0, 0xbe, 0xb1, 0xf7, 0x44, 0x18, 0xe7, 0x0a, 0x27, 0x45, 0x87,
9495 0x7e, 0x8e, 0x3c, 0x58, 0x80, 0xce, 0x8c, 0xb7, 0x77, 0x63, 0xb8, 0xce,
9496 0xf9, 0xc5, 0xe5, 0xe9, 0xf9, 0xbb, 0x41, 0xf4, 0x9f, 0x9d, 0xd5, 0x59,
9497 0xa1, 0xb6, 0x35, 0x9d, 0xff, 0xec, 0x44, 0xbd, 0xef, 0x22, 0x1d, 0x6f,
9498 0x25, 0xae, 0xa8, 0x85, 0x51, 0x6b, 0x80, 0x0b, 0xf5, 0x4e, 0x9f, 0xee,
9499 0x73, 0xd1, 0x21, 0xf7, 0xf8, 0x69, 0x73, 0xb3, 0x39, 0xd6, 0xe2, 0x08,
9500 0xf4, 0x37, 0xb8, 0xe8, 0xf4, 0x45, 0xe9, 0x0d, 0x24, 0x4c, 0xd2, 0x00,
9501 0xf1, 0xf4, 0x5c, 0xf8, 0xb8, 0x19, 0x6a, 0x58, 0xd6, 0x1d, 0x72, 0x74,
9502 0xeb, 0x5a, 0x7b, 0xb6, 0x31, 0x7c, 0xf8, 0x2a, 0x94, 0x6b, 0xa8, 0x56,
9503 0x8c, 0x24, 0x2f, 0xd8, 0x00, 0x8c, 0x00, 0x63, 0xaf, 0xf3, 0x05, 0xa6,
9504 0x6a, 0x76, 0xa8, 0x0b, 0xdb, 0xd7, 0x27, 0x97, 0x1b, 0x60, 0x64, 0x12,
9505 0xba, 0x92, 0x9d, 0x1f, 0xc5, 0x03, 0x44, 0xf5, 0x8d, 0x8d, 0x6a, 0xae,
9506 0xa0, 0x4a, 0x78, 0xe2, 0xc0, 0x44, 0x9b, 0xc6, 0x59, 0x10, 0x53, 0x02,
9507 0xcc, 0xa6, 0x63, 0xa0, 0x46, 0x6e, 0x5b, 0x23, 0xaa, 0x4f, 0xd7, 0xb0,
9508 0xab, 0xa2, 0xfc, 0x5f, 0x7c, 0xb8, 0x14, 0x44, 0x2c, 0x0c, 0x9d, 0x5f,
9509 0x9e, 0x74, 0xbd, 0x2e, 0x6c, 0xd4, 0xc8, 0x8d, 0xca, 0xbe, 0xab, 0x64,
9510 0x74, 0x9d, 0xe5, 0xd3, 0xfc, 0x0a, 0xb7, 0x84, 0xd4, 0xc8, 0x6f, 0x93,
9511 0xe1, 0xab, 0xa3, 0x6f, 0x50, 0xb1, 0x43, 0x9f, 0xfc, 0xc5, 0xfb, 0xf3,
9512 0x8b, 0xd7, 0xa7, 0xef, 0x5e, 0x75, 0xa3, 0xe3, 0xf3, 0x8b, 0xbf, 0x75,
9513 0xa3, 0xb7, 0xe7, 0xdf, 0x9c, 0x7c, 0xe6, 0x65, 0x6d, 0x51, 0x07, 0x48,
9514 0x8f, 0x51, 0xdf, 0xa1, 0xdb, 0x14, 0x6d, 0x2f, 0xc7, 0xaf, 0xc7, 0xcd,
9515 0x90, 0xdd, 0x0b, 0xfd, 0xc8, 0xa4, 0xda, 0xd0, 0x11, 0x07, 0xd2, 0x81,
9516 0x32, 0xf3, 0xe6, 0xe4, 0xe8, 0x55, 0xd7, 0x6b, 0xe6, 0x3b, 0xb8, 0xa4,
9517 0x8f, 0xe1, 0xfa, 0xcc, 0xa2, 0xa9, 0x0d, 0x2b, 0x9b, 0xb8, 0xa4, 0xaa,
9518 0x71, 0x0a, 0x06, 0x0b, 0x0a, 0xe0, 0x57, 0x02, 0x63, 0x1c, 0xb7, 0x65,
9519 0xa0, 0x4a, 0x93, 0xec, 0x39, 0x13, 0x78, 0x59, 0x5a, 0x30, 0x05, 0x40,
9520 0x5c, 0x23, 0x4b, 0x9a, 0x00, 0x50, 0x95, 0xaa, 0x2a, 0x31, 0x2c, 0x98,
9521 0xb8, 0xfc, 0xaf, 0x05, 0x98, 0xbe, 0x5b, 0x43, 0x84, 0x24, 0x31, 0xc8,
9522 0xc1, 0x99, 0xf8, 0x5e, 0x30, 0x40, 0x12, 0xbc, 0x5e, 0x4b, 0xb2, 0xab,
9523 0x26, 0xb6, 0x8b, 0x62, 0xd8, 0x59, 0xaa, 0x36, 0x16, 0xdd, 0x34, 0xb1,
9524 0x76, 0x07, 0x40, 0xe2, 0x29, 0x81, 0xba, 0x42, 0x0a, 0x10, 0x01, 0xf4,
9525 0x63, 0xa9, 0x2c, 0x0b, 0xf8, 0x39, 0x16, 0x13, 0x60, 0xcb, 0x84, 0xd3,
9526 0xe5, 0xb5, 0x65, 0xb5, 0x46, 0x40, 0xd9, 0xfd, 0xb7, 0x4c, 0xcb, 0xd5,
9527 0xd3, 0xa2, 0x4e, 0x5f, 0x6e, 0x47, 0xa0, 0xae, 0x6f, 0x2b, 0x1d, 0x5c,
9528 0xbf, 0xab, 0x5a, 0xa6, 0xe1, 0x86, 0x6f, 0xb6, 0x19, 0x2c, 0x6b, 0xa6,
9529 0x2e, 0x31, 0xb8, 0x36, 0xcb, 0x38, 0xc5, 0x51, 0xb5, 0x91, 0x72, 0x7b,
9530 0x3f, 0x08, 0x81, 0x01, 0x10, 0x0a, 0x13, 0x45, 0x98, 0xa3, 0xd1, 0x63,
9531 0x1f, 0x4d, 0x19, 0x39, 0x25, 0x61, 0xcd, 0xae, 0xcf, 0x75, 0x89, 0xe1,
9532 0xe5, 0x41, 0x8f, 0x60, 0xcb, 0xe5, 0xd2, 0x30, 0x47, 0x7b, 0x77, 0xeb,
9533 0xce, 0x06, 0x1f, 0x51, 0x97, 0x2b, 0xa3, 0x1e, 0x27, 0x15, 0x32, 0x84,
9534 0x86, 0x47, 0xb3, 0xf5, 0xd7, 0x2d, 0xd2, 0xd0, 0x0d, 0x66, 0x19, 0xf4,
9535 0x38, 0x23, 0x97, 0xce, 0x4e, 0xe1, 0x0c, 0x04, 0xd0, 0xa6, 0xc7, 0x39,
9536 0xce, 0x88, 0xd3, 0x0e, 0x49, 0xab, 0x25, 0xb2, 0xc3, 0x58, 0xfe, 0x87,
9537 0x2f, 0xce, 0x2f, 0x76, 0x83, 0x5f, 0xc6, 0x5f, 0x3c, 0xf4, 0x69, 0xef,
9538 0xde, 0x7b, 0x7f, 0x72, 0xf9, 0xde, 0xff, 0xc6, 0xe9, 0xdb, 0xa3, 0xf0,
9539 0xea, 0xf0, 0x17, 0x6d, 0xdf, 0xa0, 0xe3, 0x8f, 0x5f, 0xf1, 0xab, 0xbe,
9540 0x1c, 0xf0, 0xfb, 0xad, 0x40, 0x7a, 0xdc, 0xfa, 0xe0, 0x6d, 0x0b, 0x35,
9541 0xf1, 0x17, 0x4b, 0xd6, 0xf4, 0xe6, 0xe4, 0xec, 0xc2, 0x5f, 0xd3, 0x37,
9542 0xef, 0x5f, 0xff, 0xad, 0x9e, 0x94, 0xb7, 0xbb, 0x17, 0xf8, 0xea, 0xbf,
9543 0x38, 0xea, 0xf0, 0x1d, 0x67, 0x42, 0x5d, 0x9e, 0xac, 0x10, 0x60, 0xf8,
9544 0x2e, 0x7a, 0x77, 0x06, 0xbb, 0xb6, 0x52, 0x4d, 0x56, 0x5d, 0x7f, 0xa8,
9545 0x2b, 0x7d, 0x65, 0x3e, 0x05, 0x85, 0xed, 0xf0, 0xfb, 0x3f, 0x11, 0xda,
9546 0x09, 0x95, 0x44, 0x1f, 0xc0, 0x75, 0x54, 0x7c, 0xdf, 0xc5, 0x3f, 0x7f,
9547 0xec, 0xf7, 0xfb, 0x5f, 0xf8, 0xbd, 0x8b, 0xc9, 0x1d, 0x69, 0x76, 0x04,
9548 0x1f, 0xc4, 0xf4, 0xfc, 0x86, 0x27, 0x88, 0x2a, 0xe1, 0xa9, 0xf4, 0x1f,
9549 0x03, 0xcc, 0xf3, 0x18, 0x5b, 0x8b, 0x47, 0x1f, 0xca, 0xe0, 0xb5, 0x8f,
9550 0x54, 0xb7, 0xd0, 0x0d, 0x46, 0xcb, 0x96, 0xf6, 0x17, 0x2c, 0x3c, 0xd6,
9551 0xcb, 0x0d, 0x81, 0x5b, 0xb2, 0x9a, 0x40, 0xc0, 0xc6, 0xa4, 0xa9, 0xd0,
9552 0x67, 0x0b, 0x8c, 0x49, 0xb1, 0xe9, 0x6b, 0x6f, 0xfc, 0x4c, 0x6f, 0x30,
9553 0x59, 0xfa, 0xd8, 0x4c, 0x3f, 0xe8, 0x41, 0xa3, 0x6d, 0x8d, 0x30, 0x26,
9554 0x41, 0xe9, 0x60, 0x84, 0x9d, 0x11, 0xd3, 0xe5, 0x86, 0xcc, 0xb6, 0x99,
9555 0x54, 0xa3, 0x4d, 0x5c, 0x67, 0x59, 0x53, 0x7f, 0x8d, 0xfe, 0xea, 0xf9,
9556 0x4b, 0xdd, 0x52, 0x20, 0x02, 0xd6, 0xe1, 0x04, 0x50, 0xa7, 0x82, 0xd6,
9557 0x62, 0xfb, 0x38, 0x86, 0x1b, 0x6b, 0x29, 0x93, 0xbc, 0xf8, 0x2c, 0x94,
9558 0x4e, 0xa9, 0x04, 0x77, 0x3a, 0xb5, 0x6a, 0xef, 0x79, 0x4f, 0x38, 0x3b,
9559 0xd0, 0x13, 0xbe, 0x15, 0x48, 0x77, 0x84, 0x32, 0x3b, 0xe6, 0x1a, 0x52,
9560 0x8f, 0xe0, 0x49, 0xed, 0x5e, 0x52, 0x67, 0xb4, 0xbb, 0xe9, 0x2d, 0x90,
9561 0x48, 0x34, 0x01, 0xee, 0xf7, 0xab, 0x3e, 0x1d, 0x5c, 0x69, 0xb8, 0x2e,
9562 0xcb, 0x41, 0x9f, 0x5a, 0xfb, 0xcf, 0x35, 0xb4, 0x02, 0xe8, 0xf5, 0x20,
9563 0xe4, 0x95, 0x72, 0x2d, 0xda, 0xb9, 0xf8, 0x54, 0x40, 0x7b, 0x31, 0x44,
9564 0x31, 0xcc, 0x67, 0xea, 0x6b, 0x1c, 0xe6, 0xa1, 0x25, 0xf4, 0xa3, 0x6f,
9565 0xd3, 0xe9, 0x78, 0x14, 0x17, 0x94, 0x97, 0xee, 0x5f, 0xf2, 0xc2, 0x26,
9566 0x7c, 0xe4, 0xe1, 0x3c, 0xe1, 0x57, 0xed, 0xc9, 0x91, 0xcc, 0xa1, 0x16,
9567 0xae, 0x0f, 0x14, 0xcf, 0x9b, 0xcd, 0xc0, 0xfc, 0xa9, 0x36, 0xc0, 0x20,
9568 0x66, 0x1f, 0xa5, 0x31, 0x5e, 0xba, 0xf5, 0xc6, 0xf6, 0x72, 0xe7, 0x0f,
9569 0x8d, 0x06, 0xdb, 0x12, 0x7e, 0xed, 0xf5, 0xd2, 0xf9, 0xcd, 0x1e, 0xbb,
9570 0x51, 0xe1, 0x6f, 0xcf, 0xb8, 0xef, 0x91, 0x55, 0x30, 0x88, 0xa2, 0x6c,
9571 0xc0, 0xb1, 0xb9, 0x73, 0x7a, 0xa1, 0x70, 0x35, 0xa1, 0x5d, 0xe2, 0x82,
9572 0x36, 0x45, 0xa1, 0x10, 0x06, 0x33, 0x75, 0x7c, 0xde, 0xf1, 0xe5, 0x74,
9573 0x55, 0x4e, 0xf6, 0xf6, 0xdc, 0x8c, 0xb6, 0x08, 0x71, 0xad, 0x34, 0xfe,
9574 0x6d, 0x7c, 0x16, 0xad, 0xb3, 0xf5, 0xed, 0x68, 0x96, 0x66, 0x8b, 0x2a,
9575 0xd9, 0x20, 0x18, 0xa4, 0x2a, 0x51, 0x0b, 0x8c, 0x33, 0x6b, 0x02, 0x64,
9576 0xe5, 0x74, 0x16, 0x71, 0x13, 0x26, 0x99, 0x78, 0xe3, 0xa6, 0x39, 0xcc,
9577 0xb5, 0x58, 0x64, 0x94, 0xe0, 0x89, 0x89, 0x64, 0xd3, 0x69, 0x62, 0xab,
9578 0x29, 0x4b, 0x9d, 0xfd, 0x34, 0xf7, 0x9d, 0xa0, 0x74, 0xf5, 0x02, 0x73,
9579 0x9c, 0x66, 0x8c, 0x10, 0x82, 0x30, 0x2a, 0xa5, 0x54, 0xe3, 0xf9, 0x57,
9580 0x84, 0x05, 0x34, 0xa3, 0x25, 0xe7, 0x9e, 0x02, 0xc4, 0xdc, 0xc2, 0x27,
9581 0x96, 0x79, 0x84, 0xfc, 0x54, 0x46, 0x1c, 0xdd, 0xd2, 0xb1, 0xcf, 0x11,
9582 0xe8, 0x81, 0xca, 0x2a, 0x85, 0x10, 0xe8, 0x69, 0xf2, 0x83, 0x9c, 0x73,
9583 0x2a, 0x45, 0xf6, 0x24, 0xbe, 0xe4, 0xf2, 0x08, 0xa6, 0x1d, 0xf0, 0x90,
9584 0xee, 0x14, 0xec, 0xaa, 0xf2, 0x12, 0xae, 0x18, 0x2e, 0xc0, 0xef, 0x87,
9585 0x05, 0xe2, 0xa2, 0x56, 0xe5, 0x8f, 0x16, 0x53, 0xc9, 0x13, 0xcc, 0x68,
9586 0x16, 0xd6, 0x70, 0x75, 0x1b, 0x1f, 0x6a, 0x7c, 0xc9, 0xd4, 0xd6, 0xd9,
9587 0xcf, 0x61, 0x51, 0x2d, 0xa5, 0x9c, 0x20, 0x55, 0x96, 0x7f, 0xe8, 0xe5,
9588 0x92, 0x0f, 0x4d, 0x08, 0xe4, 0x1c, 0x49, 0x68, 0x3a, 0x6f, 0xdc, 0xea,
9589 0x99, 0x75, 0x21, 0xa1, 0x10, 0x72, 0x74, 0xef, 0x81, 0x71, 0x28, 0x7b,
9590 0x0d, 0xb8, 0xd5, 0x41, 0x94, 0x6a, 0x0c, 0xf1, 0x7c, 0xbf, 0xbf, 0xf5,
9591 0xf8, 0x82, 0x42, 0xeb, 0x6c, 0x43, 0x47, 0xfe, 0x58, 0x7e, 0x42, 0x5b,
9592 0x2c, 0x79, 0xf2, 0x79, 0x9b, 0x50, 0x59, 0xdd, 0x0f, 0xc0, 0x5c, 0xe4,
9593 0x5c, 0xfb, 0x07, 0x7b, 0x7b, 0xbb, 0x07, 0xdb, 0x3b, 0xb8, 0x4b, 0x5b,
9594 0x60, 0x8b, 0xae, 0xd8, 0x43, 0x50, 0x00, 0x10, 0x70, 0xe2, 0x84, 0x85,
9595 0x01, 0x97, 0x58, 0xaf, 0xbc, 0x19, 0xd5, 0x35, 0x04, 0xd8, 0x3a, 0xf4,
9596 0xd3, 0xf5, 0x28, 0xe4, 0xda, 0xf4, 0x50, 0x62, 0x46, 0x2f, 0x75, 0x25,
9597 0xc7, 0x45, 0x73, 0xbf, 0xef, 0x26, 0xf2, 0xaf, 0xe4, 0x43, 0x83, 0xe6,
9598 0x81, 0x02, 0xc6, 0x18, 0x0f, 0x55, 0x71, 0xff, 0x00, 0xc0, 0x94, 0xa4,
9599 0x40, 0x76, 0xca, 0x69, 0x32, 0xbe, 0x02, 0x1b, 0x6a, 0x36, 0x4b, 0x8a,
9600 0x0e, 0x9e, 0x4c, 0x7a, 0x99, 0x9a, 0xa8, 0xbf, 0x62, 0x13, 0x54, 0x9d,
9601 0xa0, 0xcd, 0x43, 0xcc, 0x03, 0x81, 0xe8, 0x54, 0xf9, 0xb2, 0x9e, 0x50,
9602 0x07, 0x30, 0xa4, 0x67, 0x31, 0xda, 0xe8, 0x32, 0xda, 0x94, 0x49, 0xdc,
9603 0xce, 0x8c, 0x61, 0x81, 0xe9, 0xdf, 0x21, 0x6b, 0x8f, 0x22, 0xba, 0x06,
9604 0x31, 0x28, 0x08, 0xc1, 0x3f, 0x5e, 0xcc, 0xa7, 0xdc, 0x2f, 0x80, 0xd3,
9605 0xc3, 0xed, 0x14, 0x43, 0x79, 0x40, 0xd4, 0xe9, 0x9b, 0x62, 0xb8, 0xdc,
9606 0x18, 0x8c, 0xf2, 0x43, 0x29, 0x2e, 0x44, 0x66, 0xdb, 0x1a, 0x69, 0x02,
9607 0x33, 0xfc, 0xde, 0x30, 0xa9, 0x28, 0xaa, 0x86, 0x59, 0x06, 0x20, 0x16,
9608 0x3c, 0xa3, 0x68, 0x3c, 0x55, 0x23, 0x0d, 0x23, 0xc3, 0x29, 0x4c, 0x16,
9609 0x8f, 0xe6, 0x70, 0x8a, 0xf0, 0x8b, 0x88, 0x84, 0x84, 0x75, 0xa2, 0xd2,
9610 0x65, 0xbe, 0x1f, 0x5d, 0x4c, 0x13, 0x6c, 0xaa, 0x6e, 0x3a, 0x8b, 0xf9,
9611 0x22, 0x86, 0xad, 0x32, 0x2a, 0xbd, 0x6d, 0x0f, 0x22, 0xbf, 0xc6, 0x80,
9612 0x87, 0x46, 0x7c, 0x67, 0x73, 0xd0, 0x7e, 0x24, 0x4f, 0xd5, 0x83, 0x71,
9613 0xa0, 0x2d, 0x8b, 0xa8, 0x6a, 0xd9, 0x0f, 0x57, 0x4f, 0xe3, 0x4f, 0xf7,
9614 0x91, 0x23, 0x95, 0xa9, 0x8f, 0xfb, 0x14, 0x63, 0x12, 0xe8, 0x0c, 0x64,
9615 0x5c, 0x46, 0x0a, 0xb2, 0x5c, 0xb3, 0xcf, 0xed, 0x9e, 0x23, 0x97, 0x94,
9616 0xa4, 0x98, 0x8c, 0x43, 0xbe, 0x90, 0xca, 0xc1, 0xc0, 0x32, 0x03, 0x84,
9617 0x09, 0x4e, 0x38, 0x02, 0x4a, 0x72, 0x5c, 0x91, 0x5f, 0xb1, 0x8f, 0xa4,
9618 0xe8, 0x9a, 0xa2, 0x5d, 0xc3, 0x7e, 0xa4, 0x0c, 0x6a, 0xa1, 0x86, 0x04,
9619 0xf3, 0xc8, 0x5b, 0xa8, 0x58, 0x8c, 0xa1, 0xc5, 0x6a, 0x92, 0xbb, 0x85,
9620 0x1e, 0xa0, 0x5c, 0x12, 0x94, 0x42, 0x92, 0xe1, 0x40, 0x4d, 0xd9, 0x32,
9621 0x13, 0x1e, 0x94, 0x0a, 0xc3, 0xe8, 0x4d, 0x7e, 0x8b, 0x9a, 0x59, 0x28,
9622 0x54, 0xa5, 0x60, 0x5f, 0xc5, 0x22, 0x91, 0xe2, 0xa6, 0xd8, 0x5d, 0x27,
9623 0x05, 0x18, 0xff, 0x37, 0x5c, 0x1a, 0x73, 0xaa, 0xd5, 0xf9, 0x42, 0x9c,
9624 0xdc, 0xa1, 0x96, 0x22, 0xe8, 0x7a, 0x61, 0xb8, 0x0b, 0xd0, 0x12, 0x40,
9625 0x31, 0xa2, 0xec, 0x16, 0xb8, 0x43, 0x31, 0x9b, 0x6c, 0x71, 0x45, 0x1d,
9626 0x34, 0x1d, 0xcf, 0x0f, 0x2e, 0xa6, 0x64, 0xcc, 0x52, 0x3c, 0x00, 0x60,
9627 0x44, 0x87, 0xf1, 0x57, 0x08, 0xd3, 0xcf, 0xcc, 0x88, 0x0e, 0x60, 0x3e,
9628 0x1b, 0x6a, 0x1a, 0x48, 0x13, 0x4f, 0xb4, 0x2b, 0x40, 0x7a, 0xbe, 0x7e,
9629 0x8a, 0xe7, 0x94, 0x0f, 0x5a, 0xd2, 0x3c, 0x66, 0x01, 0x65, 0x45, 0xcf,
9630 0xbc, 0xbd, 0x9a, 0x09, 0x1d, 0x94, 0x12, 0x47, 0x72, 0x0b, 0xe0, 0x53,
9631 0xb3, 0xf1, 0xc5, 0xe5, 0xef, 0x1f, 0x2e, 0xfa, 0x54, 0x69, 0x5e, 0xa2,
9632 0x51, 0x4c, 0x69, 0xbe, 0xd9, 0x4b, 0xdc, 0x46, 0x8b, 0xda, 0xd0, 0xa7,
9633 0xf3, 0x81, 0xfc, 0xe3, 0xdd, 0xdf, 0x53, 0xae, 0xeb, 0x8f, 0x6d, 0x55,
9634 0x3f, 0xac, 0x06, 0xc6, 0xdf, 0xdb, 0xda, 0x43, 0x75, 0x07, 0x5e, 0x5c,
9635 0x64, 0x63, 0x03, 0xf2, 0x24, 0x49, 0xea, 0x14, 0x53, 0x84, 0x71, 0xa7,
9636 0xf7, 0x9e, 0x76, 0x41, 0x34, 0x61, 0xc7, 0x64, 0xa6, 0xaa, 0x92, 0x70,
9637 0x85, 0x26, 0xcb, 0x48, 0x42, 0xa2, 0x88, 0x5e, 0x2b, 0x98, 0x03, 0x7d,
9638 0xae, 0x0c, 0xc1, 0x0a, 0x95, 0xee, 0x98, 0x5c, 0x11, 0x20, 0x57, 0xa9,
9639 0xf4, 0x62, 0xfa, 0xf0, 0x19, 0xf6, 0xae, 0xba, 0x94, 0xa2, 0xb9, 0xec,
9640 0x43, 0xe3, 0x4b, 0xa4, 0x2b, 0x87, 0x34, 0x76, 0x1c, 0x67, 0xea, 0xea,
9641 0x9c, 0xe1, 0xcd, 0xb9, 0x77, 0x67, 0x9d, 0x2f, 0x5e, 0xd7, 0x1b, 0xfc,
9642 0xae, 0x8a, 0x60, 0x20, 0x58, 0x23, 0xd0, 0x99, 0xdb, 0x59, 0x53, 0x8e,
9643 0x84, 0x9d, 0x31, 0xbf, 0x1a, 0x0a, 0x22, 0x3a, 0x2b, 0x70, 0xa7, 0x19,
9644 0xad, 0xe3, 0x3c, 0x70, 0x17, 0xf6, 0xef, 0xee, 0x36, 0x98, 0xb8, 0xcc,
9645 0xb9, 0x22, 0x4c, 0x7a, 0x13, 0x1f, 0x69, 0x0b, 0x4f, 0xfd, 0xea, 0x17,
9646 0x3b, 0xce, 0x78, 0x3f, 0x70, 0xdd, 0xae, 0x78, 0xa3, 0xf3, 0xb5, 0xea,
9647 0xfa, 0xf5, 0x9f, 0x37, 0x20, 0xd8, 0xf9, 0x03, 0x78, 0xf3, 0x83, 0xfe,
9648 0x13, 0xc8, 0x4e, 0x3d, 0xb5, 0xde, 0x68, 0xb5, 0x98, 0xd8, 0x32, 0xc0,
9649 0x78, 0x11, 0xfd, 0x18, 0xe1, 0x7b, 0xd5, 0x1c, 0x3e, 0x41, 0x78, 0xa6,
9650 0xf7, 0x27, 0xaf, 0x3f, 0x0c, 0x4e, 0x5e, 0x51, 0x69, 0x54, 0xec, 0xa7,
9651 0xe3, 0x65, 0xc2, 0x00, 0x7c, 0xf2, 0x60, 0xd0, 0x9c, 0x15, 0x47, 0x33,
9652 0xdb, 0x65, 0xfa, 0x42, 0x38, 0x77, 0x36, 0xac, 0x3d, 0x3c, 0x86, 0xc8,
9653 0xee, 0xca, 0x0d, 0xe1, 0x9f, 0x40, 0x63, 0x51, 0x98, 0x9a, 0xdb, 0xb5,
9654 0x14, 0xad, 0x9b, 0x1f, 0x1e, 0x27, 0x53, 0x10, 0x63, 0x87, 0x5c, 0xf6,
9655 0xe3, 0x75, 0x9c, 0x7a, 0x6b, 0xac, 0x32, 0xd0, 0x7a, 0x92, 0xb9, 0x80,
9656 0xbd, 0xcd, 0x40, 0x1c, 0x70, 0x4e, 0x07, 0xda, 0x52, 0x7a, 0x0f, 0x51,
9657 0xc2, 0x8e, 0xde, 0xac, 0xdc, 0x93, 0x39, 0x48, 0x7e, 0x94, 0x4c, 0x64,
9658 0x48, 0xc8, 0x8d, 0xa4, 0x56, 0x8f, 0xdd, 0x1b, 0xde, 0x9a, 0xf5, 0xb4,
9659 0x6a, 0x24, 0x1d, 0x79, 0x08, 0x1e, 0x24, 0x50, 0xb1, 0xa3, 0x02, 0x6a,
9660 0x21, 0x34, 0x99, 0x78, 0x7a, 0x95, 0xc3, 0xc5, 0x75, 0x3d, 0x33, 0xf8,
9661 0x74, 0x8c, 0x49, 0x5c, 0xa2, 0xe5, 0xd6, 0xd4, 0xe7, 0x82, 0x36, 0x1b,
9662 0xa5, 0xb3, 0x27, 0x8c, 0x1f, 0x2a, 0x29, 0x4a, 0x22, 0xa0, 0x88, 0xe0,
9663 0xec, 0x81, 0x19, 0x08, 0xea, 0x27, 0xd1, 0x83, 0x49, 0xe8, 0x19, 0x59,
9664 0x3f, 0x27, 0x45, 0xde, 0x0c, 0x0a, 0xab, 0xbb, 0x5b, 0x2f, 0x03, 0x77,
9665 0xee, 0xbf, 0x7b, 0x51, 0x81, 0xc3, 0x0f, 0xfb, 0xbf, 0x84, 0x19, 0x7d,
9666 0x26, 0x9b, 0xc5, 0x77, 0x1c, 0x39, 0x6e, 0xe3, 0x33, 0x4e, 0x63, 0x51,
9667 0xf3, 0xbc, 0x60, 0xcf, 0x07, 0xf9, 0x19, 0x6c, 0x02, 0x2b, 0x57, 0x78,
9668 0x19, 0x16, 0x12, 0x75, 0x8e, 0x82, 0x60, 0x7e, 0xd6, 0x2d, 0xc1, 0x28,
9669 0x18, 0xaf, 0x04, 0x65, 0x4f, 0xc4, 0x48, 0x3f, 0x8c, 0xa8, 0xac, 0x63,
9670 0x81, 0xb5, 0x4c, 0x6d, 0x03, 0x7f, 0x4c, 0x66, 0xb9, 0xe4, 0x26, 0xd0,
9671 0xf7, 0x03, 0x99, 0x61, 0xac, 0x86, 0x00, 0x8b, 0x6b, 0x74, 0x89, 0x53,
9672 0x65, 0xa6, 0xe9, 0x2c, 0xad, 0x08, 0x85, 0x2b, 0x1d, 0xe9, 0x75, 0x3d,
9673 0xb1, 0x41, 0x7e, 0xe6, 0xf4, 0xa6, 0x5f, 0x2b, 0xa7, 0xfa, 0x2d, 0x1e,
9674 0x4b, 0xf0, 0x4d, 0x60, 0x94, 0x6e, 0xbd, 0x73, 0xb6, 0xec, 0x24, 0xe1,
9675 0xea, 0x11, 0x54, 0xcf, 0x35, 0x65, 0x53, 0xf9, 0xd0, 0x06, 0x52, 0xb0,
9676 0x45, 0x71, 0x1f, 0x54, 0x49, 0x08, 0xba, 0x09, 0x97, 0xc4, 0xda, 0x5c,
9677 0xa6, 0x5e, 0x0a, 0xc9, 0xed, 0xa1, 0x7d, 0xc0, 0x71, 0xd2, 0x1c, 0x5d,
9678 0x89, 0x97, 0xb9, 0x07, 0x0a, 0x36, 0xc3, 0x32, 0xa9, 0xd8, 0xc0, 0xac,
9679 0xcb, 0x8c, 0xd6, 0x30, 0x93, 0xe3, 0x2e, 0x9d, 0x2d, 0x66, 0x34, 0x44,
9680 0x97, 0x43, 0x24, 0x33, 0x0c, 0xcc, 0xea, 0xf6, 0xd2, 0xb9, 0x68, 0x4f,
9681 0x5e, 0x42, 0x01, 0x4e, 0x87, 0xa2, 0x62, 0x7d, 0x4d, 0x9d, 0x0a, 0x72,
9682 0x42, 0xff, 0x3d, 0xf8, 0xdf, 0xb0, 0xea, 0xee, 0x96, 0x39, 0x03, 0xdb,
9683 0x5b, 0xbf, 0xca, 0x31, 0x88, 0x0e, 0xb3, 0xc5, 0xec, 0x0b, 0x7f, 0x91,
9684 0xbe, 0xe8, 0x23, 0xf6, 0x97, 0x32, 0x3e, 0x1b, 0x45, 0x12, 0xae, 0x26,
9685 0x24, 0x79, 0x86, 0x01, 0x6e, 0x97, 0xb0, 0x02, 0xab, 0xec, 0xa8, 0x4d,
9686 0x44, 0x4a, 0x9b, 0x79, 0xc3, 0x3e, 0x02, 0x39, 0x5e, 0x57, 0x6c, 0x2b,
9687 0x2e, 0xe6, 0x7d, 0x6f, 0x4d, 0x2a, 0xe7, 0x8c, 0xf3, 0x17, 0x3e, 0xbf,
9688 0x25, 0xe5, 0x39, 0x12, 0xdb, 0xc2, 0x64, 0x25, 0xd9, 0x43, 0x13, 0xba,
9689 0x4e, 0xcb, 0x50, 0x02, 0x97, 0x88, 0x3d, 0x92, 0xc5, 0xde, 0x4d, 0xcc,
9690 0x6e, 0x60, 0xee, 0x49, 0x70, 0x80, 0x44, 0x61, 0xf6, 0xe8, 0x2a, 0x98,
9691 0x19, 0x28, 0x3f, 0xbe, 0x1b, 0xcb, 0xd1, 0x95, 0x73, 0x0b, 0x87, 0xbc,
9692 0xb7, 0xf5, 0xa2, 0x1b, 0xed, 0xed, 0xbc, 0xec, 0x62, 0x45, 0x2a, 0xfe,
9693 0xb1, 0x83, 0x7f, 0xec, 0xe2, 0x23, 0xfb, 0xa0, 0xd2, 0x2e, 0x51, 0xe5,
9694 0x5a, 0x5a, 0x03, 0x9a, 0xae, 0x40, 0xf1, 0x30, 0x5f, 0x38, 0x5a, 0x5d,
9695 0xec, 0x10, 0x5c, 0xd3, 0xbc, 0x58, 0x4e, 0xdd, 0xc6, 0x29, 0xb1, 0xa4,
9696 0x57, 0x5e, 0x40, 0xe5, 0xb5, 0xa2, 0x4a, 0xdb, 0xd4, 0x59, 0xf8, 0x6f,
9697 0x75, 0x0d, 0x4c, 0x85, 0xc4, 0x56, 0x5a, 0xea, 0x80, 0x40, 0xe2, 0x05,
9698 0x67, 0xc7, 0x79, 0x04, 0xc5, 0xaf, 0x70, 0xc4, 0x02, 0x59, 0x16, 0x6e,
9699 0xe5, 0x74, 0xca, 0x56, 0x20, 0x0a, 0x97, 0x12, 0x19, 0x97, 0xfd, 0x96,
9700 0xa5, 0xdb, 0x15, 0xdc, 0x00, 0xb3, 0x07, 0xf6, 0x67, 0x4a, 0xbe, 0x07,
9701 0x45, 0x76, 0xa5, 0x82, 0x4f, 0x27, 0x7b, 0x93, 0xcf, 0x29, 0x7b, 0xc8,
9702 0x25, 0x53, 0xa6, 0x76, 0x6f, 0x04, 0x02, 0xc8, 0x91, 0x49, 0xcf, 0x15,
9703 0x31, 0x94, 0xdc, 0x01, 0xed, 0xb9, 0xd9, 0x41, 0x64, 0xee, 0x3f, 0x7b,
9704 0x6f, 0xf7, 0x9d, 0x6e, 0x5c, 0x9e, 0x32, 0xdb, 0x38, 0xa2, 0xb0, 0x0d,
9705 0x2c, 0xad, 0x48, 0x70, 0xe7, 0x95, 0x08, 0x05, 0x06, 0x5f, 0x96, 0xe8,
9706 0x6f, 0x9b, 0x70, 0x19, 0x90, 0x51, 0x47, 0xfb, 0xfa, 0xbc, 0xff, 0xec,
9707 0x99, 0x01, 0x7b, 0xe4, 0xca, 0xdc, 0x7c, 0x66, 0xca, 0x70, 0x59, 0x98,
9708 0x93, 0x63, 0xa9, 0x77, 0x84, 0x4e, 0xe2, 0x83, 0x50, 0xe8, 0x5d, 0x75,
9709 0x7a, 0x29, 0xbe, 0x82, 0x3b, 0x80, 0xc4, 0x11, 0x65, 0x0f, 0x25, 0xda,
9710 0x0d, 0x1e, 0xfb, 0xc4, 0xf3, 0x79, 0x36, 0xe9, 0x40, 0x74, 0xb0, 0x92,
9711 0xbb, 0xca, 0x6f, 0x78, 0x1f, 0xd0, 0x28, 0x7f, 0x0f, 0x81, 0x18, 0x3d,
9712 0x7f, 0x8a, 0xec, 0xb3, 0x57, 0x82, 0x23, 0x04, 0xcb, 0x98, 0x3b, 0xab,
9713 0x5d, 0xff, 0x9c, 0x8e, 0xa3, 0x43, 0xed, 0x84, 0xf9, 0x45, 0xb0, 0x97,
9714 0x01, 0x1e, 0x35, 0x78, 0x12, 0x78, 0xa2, 0x64, 0xb3, 0x5c, 0x1f, 0x8f,
9715 0xd6, 0x65, 0x84, 0x8d, 0x2e, 0x18, 0xdd, 0x94, 0x09, 0x30, 0x38, 0x1a,
9716 0x9c, 0x45, 0x17, 0x67, 0x47, 0xa7, 0xef, 0xe0, 0x9d, 0x9e, 0x1f, 0x93,
9717 0x32, 0x6d, 0x4b, 0xba, 0x11, 0x27, 0x82, 0xd6, 0xed, 0x89, 0x46, 0x6b,
9718 0x93, 0xfa, 0x87, 0xfc, 0xa6, 0x02, 0x63, 0x52, 0x19, 0x6a, 0x70, 0x1c,
9719 0xbd, 0x85, 0x16, 0x35, 0xb5, 0x55, 0xb2, 0xd8, 0x1d, 0xab, 0x01, 0xe2,
9720 0xd7, 0x7a, 0x89, 0xd2, 0x56, 0x01, 0xf3, 0xa4, 0xc6, 0x31, 0x1f, 0x5a,
9721 0x0d, 0xd2, 0xce, 0xa6, 0xef, 0xd2, 0xe4, 0x61, 0x4e, 0x6c, 0xc1, 0x02,
9722 0xd7, 0x39, 0x43, 0x53, 0x93, 0x97, 0x46, 0x01, 0x72, 0xb0, 0xd8, 0x29,
9723 0xa2, 0x32, 0x5b, 0x2c, 0xd9, 0x15, 0x2a, 0x89, 0x22, 0xe1, 0x80, 0x47,
9724 0x08, 0xe2, 0x99, 0x89, 0xcb, 0x10, 0x3a, 0xd2, 0x5a, 0xe9, 0x79, 0xce,
9725 0x87, 0x39, 0x76, 0xc8, 0xd3, 0xd8, 0x88, 0x41, 0x64, 0x32, 0xa9, 0xf5,
9726 0x57, 0x20, 0x2d, 0xa9, 0x17, 0x84, 0x20, 0xa8, 0xe5, 0xdc, 0x03, 0x16,
9727 0x5b, 0xbb, 0xfa, 0xd8, 0x16, 0x33, 0x30, 0x0f, 0x60, 0x40, 0x37, 0x2f,
9728 0x63, 0x55, 0x16, 0xae, 0xb1, 0x1c, 0xfe, 0x2f, 0x9d, 0xc5, 0x2b, 0x44,
9729 0xaa, 0x31, 0x6b, 0x29, 0xeb, 0x69, 0xf6, 0x4e, 0xad, 0x95, 0xd8, 0xb3,
9730 0xba, 0x31, 0x45, 0x1f, 0x4a, 0x9b, 0x8a, 0xe3, 0x09, 0x55, 0x5a, 0x9b,
9731 0x1a, 0x43, 0x5b, 0x4d, 0x9f, 0x31, 0xd3, 0xd6, 0x59, 0xef, 0x49, 0x8b,
9732 0x4b, 0x8b, 0x15, 0xd7, 0xe4, 0x92, 0xa4, 0xb6, 0xa4, 0xdd, 0x86, 0x69,
9733 0xfe, 0xc8, 0x8e, 0xa2, 0x2b, 0x37, 0x14, 0xe5, 0xc6, 0xe2, 0xed, 0xc9,
9734 0x09, 0xf4, 0x71, 0xdb, 0x55, 0xda, 0x9b, 0x0a, 0x37, 0x0a, 0x21, 0xb8,
9735 0x22, 0x8e, 0x52, 0x45, 0xa1, 0x06, 0x7d, 0xf4, 0xcc, 0xa6, 0x94, 0xd4,
9736 0x3d, 0xa5, 0x50, 0xa3, 0xf6, 0x4d, 0x77, 0xb4, 0x15, 0xe5, 0x61, 0xb8,
9737 0x3f, 0xb6, 0x3b, 0xfa, 0xb2, 0xf6, 0xa4, 0x03, 0x02, 0x08, 0xbf, 0xce,
9738 0x6f, 0x7b, 0xa1, 0x16, 0x1f, 0x26, 0x05, 0x59, 0x3c, 0x11, 0x25, 0x3d,
9739 0x8d, 0x39, 0xcf, 0x95, 0x9c, 0x62, 0xa3, 0xa6, 0xe1, 0x18, 0xb6, 0x52,
9740 0x0d, 0x2e, 0x8a, 0x32, 0xbe, 0x0a, 0xf4, 0x61, 0x48, 0x19, 0x70, 0x74,
9741 0x79, 0xaa, 0x1a, 0x5a, 0x3f, 0xd3, 0x7c, 0x18, 0x4f, 0xa5, 0x91, 0x94,
9742 0xb8, 0xcc, 0x34, 0xa7, 0xab, 0x06, 0x61, 0xa2, 0xa5, 0x3c, 0x81, 0x6a,
9743 0x7b, 0x50, 0x2b, 0x7a, 0x07, 0x5d, 0x22, 0xd1, 0xea, 0x2d, 0xbf, 0x2c,
9744 0x4d, 0xcc, 0x92, 0x57, 0xdd, 0x98, 0x1c, 0xf7, 0xe2, 0x8a, 0xb0, 0xb7,
9745 0x67, 0x49, 0x55, 0x2b, 0x3d, 0x75, 0x08, 0xe9, 0xe9, 0x0d, 0x53, 0x2d,
9746 0x61, 0x8f, 0xfe, 0xbe, 0x48, 0x13, 0x82, 0x12, 0x4b, 0x4c, 0x5c, 0x85,
9747 0xc8, 0xac, 0xc3, 0x46, 0x34, 0x2c, 0x3e, 0x6a, 0xa8, 0xee, 0xe9, 0x0d,
9748 0xb0, 0x0b, 0x20, 0x59, 0xde, 0xd2, 0x46, 0x1d, 0xe3, 0xd2, 0x66, 0xa0,
9749 0xae, 0x51, 0x5a, 0x84, 0x60, 0xc1, 0x52, 0x4d, 0xa1, 0x94, 0xe6, 0x50,
9750 0xc9, 0x22, 0x25, 0x00, 0x93, 0x6a, 0x15, 0x97, 0x9f, 0x7c, 0x5b, 0xb0,
9751 0x1b, 0xcd, 0xf3, 0x8a, 0xf5, 0x2b, 0x44, 0xa8, 0xbe, 0x49, 0xcc, 0x45,
9752 0x07, 0x73, 0x01, 0x6d, 0x30, 0x9e, 0x6e, 0x96, 0xd5, 0x18, 0xb5, 0xd8,
9753 0x45, 0x36, 0xc5, 0x49, 0xe2, 0x50, 0xea, 0x0c, 0x6f, 0x32, 0x44, 0x15,
9754 0xea, 0xa0, 0x51, 0xa7, 0xbe, 0x77, 0xa3, 0xd6, 0xec, 0x3d, 0xa3, 0xfc,
9755 0x29, 0x4d, 0x3c, 0x20, 0x9d, 0x4a, 0x1a, 0xe3, 0xf1, 0x4a, 0x89, 0x7e,
9756 0x35, 0x1e, 0x5d, 0x15, 0x08, 0x7d, 0x45, 0x1f, 0xe5, 0x0d, 0xee, 0x34,
9757 0x9c, 0xea, 0x61, 0x5e, 0x52, 0x05, 0x38, 0xd0, 0x06, 0x3e, 0x2f, 0x67,
9758 0x75, 0x19, 0x8b, 0x30, 0x6c, 0xff, 0xde, 0x83, 0xcd, 0x1b, 0xea, 0x49,
9759 0x1e, 0xd4, 0x8e, 0x68, 0xef, 0xc1, 0xae, 0x0d, 0xfc, 0x86, 0x8f, 0x58,
9760 0xfb, 0x40, 0xdf, 0x06, 0xf8, 0xa0, 0xf1, 0x4a, 0x91, 0xcc, 0x22, 0x18,
9761 0x7a, 0x6c, 0x26, 0xd9, 0x8e, 0xf4, 0x1f, 0xc8, 0x05, 0xa8, 0xb7, 0x69,
9762 0x53, 0xfb, 0x4f, 0x43, 0xf6, 0x46, 0x73, 0x0a, 0x35, 0xbc, 0x59, 0x9e,
9763 0xe2, 0x6a, 0x5a, 0xf4, 0x60, 0x78, 0xd6, 0xe0, 0x00, 0xa8, 0x2c, 0x70,
9764 0x9b, 0x15, 0x90, 0xf7, 0x16, 0x63, 0x6b, 0x81, 0x88, 0x10, 0x9c, 0x90,
9765 0x85, 0xc0, 0xaf, 0x8f, 0xa6, 0x60, 0x86, 0x04, 0x22, 0xd7, 0x35, 0x4f,
9766 0x1f, 0x26, 0x99, 0x2c, 0xd0, 0x62, 0x9e, 0x2e, 0xf0, 0x73, 0x26, 0x9c,
9767 0xc3, 0x7d, 0x79, 0x4c, 0xf5, 0xad, 0xec, 0x27, 0x4d, 0x20, 0xec, 0xe7,
9768 0x65, 0x30, 0x7d, 0xed, 0xeb, 0x6a, 0xda, 0x55, 0x35, 0xfb, 0x9f, 0xb4,
9769 0xd8, 0x1a, 0xec, 0x81, 0xed, 0x3a, 0x3d, 0x1e, 0x6a, 0x91, 0x7b, 0x84,
9770 0xe8, 0x32, 0x73, 0xe1, 0xae, 0x55, 0xd2, 0x09, 0xb0, 0x0a, 0xa6, 0x59,
9771 0x69, 0x35, 0x87, 0x99, 0x97, 0x9a, 0x03, 0x8a, 0xe9, 0x4c, 0x08, 0x31,
9772 0x4e, 0x73, 0x45, 0x93, 0x3b, 0xd2, 0x24, 0x29, 0xe5, 0x92, 0x30, 0x37,
9773 0xb0, 0xed, 0x2a, 0x81, 0xf8, 0x52, 0x05, 0x47, 0x6d, 0x36, 0x6a, 0xb9,
9774 0x9a, 0xa7, 0x9a, 0xa9, 0x92, 0xda, 0x4f, 0x81, 0xde, 0xda, 0xa8, 0x25,
9775 0xb1, 0xe6, 0xb5, 0x06, 0xc4, 0xbf, 0xb7, 0x7d, 0x23, 0x1b, 0x8e, 0x2c,
9776 0x4f, 0x7d, 0xdc, 0xf6, 0xb6, 0x5e, 0x3e, 0x7b, 0x4a, 0x9b, 0x97, 0xbd,
9777 0xd8, 0xeb, 0xe2, 0xc1, 0xff, 0xe8, 0xe9, 0xd0, 0xbe, 0xd8, 0x88, 0x9f,
9778 0x24, 0x37, 0xe2, 0xc7, 0x09, 0x8e, 0x16, 0x34, 0xa2, 0x65, 0x82, 0x83,
9779 0x9b, 0x16, 0x95, 0x9f, 0xca, 0x5a, 0xff, 0x0d, 0x74, 0x35, 0xb5, 0x24,
9780 0x8b, 0xd8, 0x94, 0xab, 0xa0, 0x72, 0xd5, 0xd6, 0x9b, 0xeb, 0xc1, 0x83,
9781 0x2f, 0x1d, 0x0b, 0x7f, 0xc1, 0xb1, 0x7f, 0xca, 0xa9, 0x8f, 0x57, 0x3d,
9782 0xf6, 0xf1, 0xef, 0x74, 0xee, 0x9f, 0x78, 0xec, 0xc3, 0xe7, 0xfe, 0x69,
9783 0x07, 0xff, 0xff, 0x90, 0x73, 0x1f, 0xff, 0x0a, 0x07, 0x7f, 0xe5, 0x73,
9784 0xbf, 0xcf, 0x5d, 0xa0, 0x9a, 0x6c, 0xeb, 0x15, 0xb0, 0xa1, 0xd9, 0x8c,
9785 0x03, 0x6c, 0x9a, 0x3e, 0x65, 0x0d, 0x2f, 0xc5, 0xad, 0xb3, 0x13, 0xe1,
9786 0x14, 0xe6, 0x5c, 0xd9, 0x69, 0x5f, 0xf9, 0xc0, 0x00, 0x1f, 0x2f, 0x1d,
9787 0xd9, 0x0b, 0x8b, 0x69, 0x03, 0x59, 0x9b, 0xb7, 0xd4, 0x37, 0x6a, 0x20,
9788 0xaf, 0xe9, 0x0a, 0x14, 0xb5, 0x79, 0x4a, 0xd2, 0x02, 0x14, 0x50, 0xc4,
9789 0x52, 0xfd, 0x7a, 0x30, 0xe8, 0x1d, 0x5d, 0x9c, 0x46, 0x0f, 0x38, 0x64,
9790 0xf0, 0x15, 0x67, 0x8e, 0xe9, 0xca, 0xca, 0x5e, 0x8d, 0xaa, 0x76, 0x33,
9791 0x7e, 0xf1, 0xce, 0xee, 0x2f, 0x2b, 0x46, 0xab, 0x2f, 0x1b, 0xac, 0x97,
9792 0xe6, 0x7e, 0x1e, 0x95, 0x51, 0xad, 0xec, 0x5d, 0xa9, 0xa1, 0xa6, 0x20,
9793 0xd9, 0xcb, 0xda, 0x0d, 0x96, 0xca, 0x4b, 0xd0, 0x7f, 0x8d, 0x02, 0x9c,
9794 0x1e, 0xf0, 0x72, 0x9f, 0xb0, 0x19, 0x02, 0x75, 0x32, 0xd8, 0x7e, 0xf9,
9795 0x6c, 0x1b, 0x44, 0xc0, 0x3d, 0xa7, 0x50, 0xc9, 0xcb, 0x7b, 0xfd, 0xdd,
9796 0xcd, 0xbd, 0xfe, 0x1e, 0x8a, 0x77, 0xc9, 0xd6, 0xa6, 0x44, 0x5c, 0x19,
9797 0x3e, 0x9c, 0x90, 0xc4, 0x52, 0xfe, 0xdd, 0xc9, 0x71, 0xc4, 0xa5, 0xd4,
9798 0xd4, 0xd1, 0xab, 0xe1, 0x07, 0x72, 0x10, 0x4b, 0x84, 0x77, 0xf8, 0x7c,
9799 0x7a, 0x5e, 0x59, 0x8f, 0x1c, 0xea, 0x0c, 0x20, 0xb0, 0xee, 0xcc, 0x4c,
9800 0x04, 0x05, 0x37, 0xfb, 0x05, 0x84, 0x2e, 0x38, 0x47, 0x1f, 0x20, 0xcc,
9801 0x21, 0x89, 0x43, 0xb0, 0x27, 0x32, 0x86, 0x33, 0xa9, 0x5f, 0x93, 0x3b,
9802 0x5a, 0x99, 0x41, 0xbd, 0x1d, 0x2d, 0xfe, 0x12, 0x1b, 0xf9, 0xf5, 0xdc,
9803 0x22, 0x72, 0xb3, 0x18, 0x9f, 0x5c, 0x19, 0x15, 0xa3, 0x99, 0xf1, 0x60,
9804 0x4c, 0xfe, 0x3e, 0xce, 0xfa, 0xab, 0xba, 0x5f, 0xd2, 0x6a, 0x99, 0x97,
9805 0xc5, 0xd0, 0x83, 0xe5, 0x83, 0x38, 0x57, 0xda, 0x16, 0x24, 0x1e, 0x95,
9806 0xe6, 0x0d, 0xc9, 0xfc, 0x86, 0x22, 0x8b, 0x5d, 0x24, 0xce, 0x50, 0x66,
9807 0xfc, 0xc0, 0xcf, 0x74, 0xf4, 0x80, 0x3f, 0x12, 0x3f, 0xc6, 0x63, 0x15,
9808 0x49, 0x3c, 0x95, 0x59, 0x39, 0xdf, 0xf1, 0x7f, 0x49, 0x1d, 0x8c, 0x29,
9809 0x1f, 0xda, 0xaf, 0xc0, 0xb5, 0xbd, 0x4d, 0x75, 0x0a, 0xc6, 0x5d, 0x31,
9810 0x8b, 0xab, 0x91, 0x76, 0x36, 0x83, 0x8b, 0x3a, 0x9d, 0xc3, 0x55, 0xf3,
9811 0x24, 0x47, 0x51, 0x90, 0x5e, 0xec, 0xa3, 0xfa, 0x57, 0xf0, 0x5c, 0xf0,
9812 0x32, 0x89, 0x6c, 0x63, 0x27, 0x24, 0x9a, 0x4a, 0xa0, 0x25, 0xb7, 0x88,
9813 0x14, 0x9c, 0x35, 0x03, 0x8a, 0x81, 0x2b, 0xa4, 0x65, 0x30, 0x84, 0x70,
9814 0xb6, 0x57, 0x85, 0x32, 0x7a, 0x53, 0x4b, 0x48, 0x27, 0x91, 0x69, 0x93,
9815 0x86, 0x61, 0x16, 0x9b, 0x01, 0xa2, 0xc3, 0x0a, 0x06, 0xe4, 0x46, 0xf3,
9816 0x96, 0x09, 0xdd, 0x9c, 0x55, 0x2e, 0x37, 0xce, 0x83, 0xd7, 0xda, 0xaf,
9817 0x75, 0xd3, 0xc8, 0x5d, 0xf7, 0x2f, 0xbe, 0x6a, 0xf4, 0x2b, 0x4f, 0xb1,
9818 0x1a, 0x64, 0xf3, 0xa2, 0x75, 0xaa, 0xf2, 0x49, 0xea, 0x1d, 0xf6, 0x5c,
9819 0xeb, 0x3f, 0x54, 0x2f, 0x43, 0x27, 0x62, 0xa3, 0xff, 0xa8, 0xf6, 0xbe,
9820 0x0d, 0x0b, 0xc3, 0xbb, 0xc5, 0x96, 0x36, 0x98, 0xfc, 0x6f, 0xe5, 0x25,
9821 0xe0, 0x6d, 0xef, 0x85, 0xd0, 0xd4, 0xb4, 0x4b, 0x65, 0x9b, 0xe5, 0xc0,
9822 0xbd, 0xab, 0xff, 0x7f, 0x8f, 0xc1, 0x7f, 0x5f, 0xcb, 0xc1, 0x39, 0x8d,
9823 0xb5, 0x0e, 0xb1, 0x07, 0xcf, 0xb7, 0xb6, 0xb6, 0x7e, 0x49, 0x9b, 0x58,
9824 0xb1, 0x4b, 0xfc, 0xe3, 0xbf, 0x72, 0x83, 0xd8, 0xda, 0xb9, 0xef, 0x49,
9825 0x39, 0x7e, 0xc0, 0x6c, 0x0f, 0xe3, 0x86, 0x4c, 0x1f, 0xf6, 0x4c, 0xf2,
9826 0x71, 0x97, 0xce, 0xdd, 0xb6, 0x59, 0xb7, 0xcf, 0x79, 0x0f, 0x1c, 0xf9,
9827 0xff, 0x36, 0x1e, 0x02, 0xd5, 0x92, 0x1e, 0xed, 0x21, 0xd8, 0xff, 0xff,
9828 0x1d, 0x04, 0xff, 0x46, 0xc7, 0xbc, 0x9d, 0x09, 0xd6, 0xb1, 0xd4, 0x01,
9829 0x6b, 0x51, 0xe0, 0xbf, 0x7a, 0x04, 0x37, 0xac, 0x92, 0x88, 0xa8, 0x5d,
9830 0x4c, 0xb9, 0xd3, 0x8b, 0x6f, 0x9e, 0x31, 0xba, 0xff, 0xc0, 0xc7, 0x50,
9831 0x3f, 0x7b, 0x75, 0x74, 0xd1, 0x7f, 0x8a, 0x2c, 0xf9, 0xb5, 0x44, 0x88,
9832 0x95, 0x49, 0x6d, 0xb2, 0xe4, 0x6f, 0xe4, 0xac, 0x98, 0x27, 0xc9, 0xb8,
9833 0xc7, 0x49, 0x33, 0x87, 0xf4, 0x8f, 0x60, 0x3e, 0x9a, 0xc2, 0x72, 0xd3,
9834 0x11, 0xc1, 0x5c, 0x1a, 0xc9, 0x24, 0x74, 0x12, 0x1f, 0xe9, 0x65, 0x50,
9835 0xe7, 0x32, 0xc1, 0xf0, 0xc7, 0xba, 0xba, 0xd2, 0x77, 0x3d, 0xe6, 0xd9,
9836 0x78, 0x83, 0x81, 0xc8, 0xe8, 0xcb, 0xc4, 0x98, 0x92, 0x03, 0x8a, 0xd2,
9837 0xe3, 0x0a, 0x9b, 0xf2, 0x68, 0xbf, 0x3f, 0xf7, 0x19, 0xed, 0xa2, 0x1b,
9838 0x3e, 0x6f, 0xce, 0x83, 0xd2, 0xbf, 0x69, 0x77, 0x0b, 0xa3, 0x97, 0x82,
9839 0xeb, 0xfb, 0xbb, 0x5f, 0x13, 0x0e, 0x95, 0x77, 0xb7, 0xb6, 0xea, 0x13,
9840 0x5e, 0x35, 0x99, 0xf0, 0xbe, 0x5b, 0x7b, 0x1f, 0xff, 0x45, 0x23, 0xf7,
9841 0x0a, 0x13, 0x53, 0xae, 0x27, 0x61, 0xda, 0x2d, 0x6f, 0xbc, 0xda, 0x9a,
9842 0x7d, 0xbb, 0x74, 0xcf, 0xdd, 0xc5, 0xd4, 0xb6, 0x1a, 0xf3, 0xd8, 0x38,
9843 0x03, 0xc7, 0x93, 0x1b, 0xce, 0x37, 0x39, 0xd1, 0x94, 0x89, 0x6b, 0x3e,
9844 0x51, 0xdf, 0xf6, 0xd3, 0x89, 0xfb, 0x82, 0xe7, 0x7f, 0x62, 0x88, 0x2d,
9845 0xc5, 0x6b, 0x95, 0x76, 0x99, 0xee, 0xac, 0x6c, 0x9e, 0xef, 0xb6, 0xc6,
9846 0x34, 0x2d, 0x2e, 0xc8, 0xdf, 0xfc, 0x92, 0x08, 0xe7, 0xdd, 0xe5, 0x75,
9847 0x95, 0x79, 0x56, 0x15, 0x39, 0x18, 0x53, 0xb6, 0x14, 0x8c, 0x65, 0xdc,
9848 0xa2, 0x74, 0x50, 0x4e, 0xb0, 0x74, 0x18, 0x01, 0x3f, 0x22, 0xa2, 0x9a,
9849 0x97, 0x52, 0x28, 0xf2, 0x32, 0x4a, 0xaa, 0x51, 0xdf, 0x32, 0x22, 0x75,
9850 0x1c, 0x1b, 0x61, 0x79, 0x6d, 0xc1, 0x39, 0x80, 0x70, 0xed, 0x74, 0xb9,
9851 0x56, 0x97, 0xc0, 0x50, 0x5a, 0x3c, 0x7b, 0x9a, 0x31, 0xdb, 0x02, 0x93,
9852 0xf2, 0xdf, 0x99, 0xcd, 0x3d, 0xf1, 0xc4, 0x72, 0xcc, 0xb2, 0x7a, 0x4d,
9853 0x2d, 0xc2, 0x14, 0x16, 0xf4, 0x78, 0xf4, 0x86, 0x49, 0xec, 0x15, 0xdc,
9854 0xbb, 0x7b, 0x58, 0xd5, 0x5c, 0xab, 0x46, 0xa2, 0xc7, 0x05, 0x57, 0x34,
9855 0x21, 0x1f, 0x03, 0x0b, 0x57, 0xf7, 0x58, 0xf5, 0x77, 0x2b, 0x00, 0x5f,
9856 0xcd, 0x39, 0x0e, 0xce, 0x76, 0x69, 0x36, 0x97, 0x67, 0x03, 0xb7, 0xb5,
9857 0x7c, 0x49, 0xf9, 0x7c, 0x04, 0x71, 0xf7, 0xd5, 0xc9, 0xd1, 0xe0, 0xb2,
9858 0x1f, 0xda, 0x00, 0x1f, 0x06, 0xc7, 0x82, 0x5e, 0x62, 0xa3, 0x9d, 0x69,
9859 0x7c, 0x8f, 0xad, 0xf8, 0x04, 0x39, 0x0f, 0xe7, 0xc6, 0x53, 0xd3, 0xc1,
9860 0xd1, 0x99, 0xc3, 0xb8, 0x33, 0x54, 0x97, 0xe0, 0xf7, 0x7b, 0x82, 0x9d,
9861 0x95, 0x22, 0x47, 0x53, 0x5e, 0x49, 0x8c, 0x4f, 0x25, 0x52, 0xf9, 0x14,
9862 0x93, 0x11, 0xf1, 0x3b, 0x75, 0xd7, 0xde, 0x12, 0x20, 0x5e, 0x77, 0xfe,
9863 0x53, 0x84, 0x3e, 0x94, 0xee, 0x5f, 0x38, 0x88, 0x12, 0x8b, 0x73, 0xcb,
9864 0x0c, 0x08, 0x52, 0xa0, 0xd4, 0x95, 0xc0, 0xe7, 0xa9, 0xa3, 0x44, 0xf9,
9865 0x49, 0xf3, 0xb7, 0x46, 0x15, 0xc1, 0x82, 0xc6, 0xab, 0xa7, 0x7a, 0xd4,
9866 0x77, 0x7b, 0xc5, 0xfb, 0x51, 0xf2, 0x6d, 0x1a, 0x63, 0x10, 0x77, 0x7d,
9867 0x42, 0x9e, 0x4b, 0x33, 0x5a, 0x96, 0xcf, 0x5f, 0x8b, 0x2a, 0xef, 0x8d,
9868 0xa6, 0x98, 0xa2, 0xdc, 0x83, 0x63, 0x5a, 0x05, 0xdc, 0x2c, 0xa6, 0x81,
9869 0xb6, 0xd7, 0x18, 0x9c, 0x80, 0x83, 0x58, 0x3a, 0x33, 0x46, 0x48, 0xc4,
9870 0x23, 0xc1, 0x7f, 0x61, 0x28, 0x50, 0x9f, 0x7d, 0xb5, 0xbb, 0x12, 0x4f,
9871 0x56, 0xdd, 0x6f, 0xd1, 0x65, 0x1f, 0x8d, 0xe4, 0xe0, 0xdb, 0xee, 0x5f,
9872 0x16, 0x89, 0x8c, 0xb6, 0x2b, 0x84, 0xe7, 0x85, 0xec, 0x47, 0x25, 0x2d,
9873 0xb6, 0x63, 0x2a, 0xa5, 0x5f, 0xa1, 0x73, 0x10, 0x9b, 0xc4, 0xaf, 0x33,
9874 0x04, 0x24, 0x41, 0x84, 0x28, 0x70, 0x31, 0xee, 0x32, 0xac, 0xaa, 0x39,
9875 0xdc, 0x10, 0x9b, 0x5f, 0x6f, 0xf4, 0xa3, 0x0b, 0x90, 0xe5, 0x94, 0x01,
9876 0xfe, 0xbc, 0xff, 0xfc, 0x39, 0x1c, 0x05, 0xc6, 0x3d, 0x8c, 0xeb, 0xa0,
9877 0xc0, 0x84, 0x2f, 0x95, 0x72, 0x66, 0x88, 0x10, 0x28, 0x74, 0x8b, 0xeb,
9878 0x3c, 0xfa, 0xa2, 0x05, 0xbb, 0x98, 0x9b, 0xb1, 0x59, 0x31, 0x99, 0x03,
9879 0x42, 0x33, 0xa2, 0x11, 0x32, 0x90, 0x07, 0x2c, 0x45, 0xeb, 0x2b, 0x2d,
9880 0x91, 0x1b, 0xbe, 0x1f, 0x05, 0xee, 0x3b, 0x1f, 0xd4, 0x86, 0x2a, 0x2b,
9881 0x82, 0x5f, 0xad, 0x3c, 0x99, 0x2d, 0x88, 0x27, 0x31, 0x37, 0x6c, 0x1f,
9882 0xdd, 0x47, 0xb0, 0x9c, 0xa9, 0xb8, 0xed, 0x71, 0x47, 0x0d, 0xd0, 0xf5,
6214 0x6b, 0x7b, 0xe3, 0xc6, 0x95, 0x2e, 0xfa, 0xdd, 0xbf, 0x02, 0xc3, 0x9c,
6215 0x6c, 0x49, 0x33, 0x24, 0x75, 0xef, 0x8b, 0x22, 0x7b, 0x5b, 0x56, 0xab,
6216 0xdd, 0x4a, 0xd4, 0x2d, 0xa5, 0xa9, 0xb6, 0x9d, 0x6d, 0xfb, 0xe9, 0x07,
6217 0x24, 0x41, 0x09, 0x6e, 0x12, 0x60, 0x00, 0x50, 0x17, 0x67, 0xe7, 0xfc,
6218 0xf6, 0xb3, 0xae, 0x55, 0x05, 0x54, 0x81, 0x12, 0x65, 0x3b, 0xce, 0xec,
6219 0x7d, 0x32, 0x63, 0xb5, 0x44, 0x02, 0x85, 0xc2, 0xaa, 0x55, 0xab, 0xd6,
6220 0xf5, 0x5d, 0x51, 0xf4, 0xd0, 0xff, 0x3e, 0xd2, 0x7f, 0x1f, 0xe1, 0x7f,
6221 0xf0, 0xef, 0x67, 0x51, 0x74, 0x51, 0xe4, 0x3f, 0x25, 0xa3, 0x2a, 0x7c,
6222 0xed, 0xc7, 0x8f, 0xff, 0x3b, 0xe2, 0xff, 0x83, 0x7b, 0x7e, 0x80, 0x7f,
6223 0x3f, 0x5b, 0x3a, 0xf6, 0x66, 0x64, 0x6f, 0xf8, 0xdf, 0x1f, 0x37, 0xa2,
6224 0x87, 0x6e, 0xf8, 0xdf, 0xd1, 0x3a, 0xdd, 0xf0, 0x51, 0x9e, 0x70, 0x88,
6225 0xbf, 0x7f, 0xfc, 0xb8, 0xfc, 0x21, 0x3f, 0xe0, 0xac, 0xf0, 0xc7, 0x26,
6226 0xde, 0xf7, 0xc3, 0x47, 0xfc, 0x15, 0x3e, 0xf9, 0xec, 0xb3, 0x77, 0x47,
6227 0x6f, 0x4f, 0xf4, 0xd6, 0xd1, 0xa2, 0x98, 0x46, 0xbd, 0xa8, 0x2a, 0xe2,
6228 0xac, 0x9c, 0x24, 0x45, 0x14, 0x47, 0x1f, 0xde, 0x9f, 0x7d, 0xf6, 0xd9,
6229 0xe0, 0x6f, 0xef, 0xce, 0x2f, 0x06, 0xa7, 0x83, 0xda, 0x65, 0xdf, 0xe7,
6230 0xf3, 0x2a, 0xcd, 0xb3, 0x12, 0xa6, 0x0f, 0x17, 0x95, 0x3f, 0x7e, 0xf6,
6231 0xd9, 0xab, 0x93, 0xc1, 0xf1, 0xfb, 0xd3, 0x8b, 0xcb, 0xd3, 0xf3, 0x77,
6232 0xb5, 0x2b, 0xa3, 0xb4, 0x8c, 0x60, 0xa8, 0x2a, 0xcf, 0xa7, 0xd1, 0x24,
6233 0x2f, 0xcc, 0xf0, 0x45, 0x9a, 0x5d, 0x45, 0xe3, 0xb8, 0x8a, 0xa3, 0x49,
6234 0x91, 0xcf, 0x22, 0xfc, 0x26, 0x87, 0xeb, 0xca, 0xa4, 0xb8, 0x49, 0x8a,
6235 0x7e, 0x74, 0x5a, 0x45, 0xe5, 0x62, 0x3e, 0xcf, 0x8b, 0xaa, 0xd4, 0xe1,
6236 0xaa, 0xeb, 0xa4, 0x4c, 0xa2, 0x79, 0x91, 0x57, 0xf9, 0x28, 0x9f, 0x96,
6237 0x07, 0xd1, 0xab, 0xd3, 0xe3, 0xcb, 0x6e, 0xf4, 0xfa, 0xf4, 0xec, 0x04,
6238 0x7e, 0x5e, 0x5e, 0xd0, 0x8f, 0x41, 0x37, 0xfa, 0xfa, 0xfc, 0xe2, 0xcd,
6239 0xc9, 0x7b, 0xfd, 0x17, 0x3e, 0x88, 0xde, 0x5c, 0xe2, 0xb7, 0xf4, 0xcf,
6240 0xa0, 0xab, 0xc3, 0x9d, 0xbe, 0x3d, 0xc2, 0x0f, 0xf1, 0x1f, 0xbc, 0xe6,
6241 0xec, 0x15, 0xfd, 0x89, 0xff, 0xc0, 0x9f, 0x6f, 0xff, 0x7a, 0x09, 0x43,
6242 0x5f, 0x9c, 0x5f, 0xec, 0xf2, 0x4f, 0xf8, 0xe8, 0xfd, 0xe5, 0xdb, 0x0b,
6243 0xfe, 0x49, 0x7f, 0x0c, 0xe0, 0x8f, 0xc1, 0xf1, 0x85, 0x19, 0x6e, 0x40,
6244 0x33, 0x18, 0xbc, 0xfd, 0x8a, 0x7e, 0x0c, 0xf0, 0x27, 0x7f, 0x40, 0x73,
6245 0xba, 0x3c, 0x39, 0x7b, 0x77, 0x72, 0x89, 0x6f, 0x79, 0x09, 0xd7, 0xf5,
6246 0xa3, 0xcb, 0xeb, 0x24, 0x1a, 0xe5, 0xb3, 0x59, 0x9c, 0x8d, 0x99, 0x42,
6247 0xe3, 0xa4, 0x4c, 0xaf, 0xb2, 0x64, 0x6c, 0x5e, 0x36, 0x8f, 0x6e, 0xf3,
6248 0xe2, 0x53, 0x74, 0x9b, 0x56, 0xd7, 0xf9, 0xa2, 0x8a, 0x16, 0x40, 0x98,
6249 0x28, 0xcd, 0xaa, 0xa4, 0x88, 0x47, 0x48, 0xf9, 0xfe, 0x67, 0x35, 0x2a,
6250 0xe7, 0x13, 0x20, 0x69, 0x09, 0xf4, 0x1b, 0x2e, 0xca, 0x69, 0x1e, 0x8f,
6251 0xe1, 0x03, 0xbc, 0x65, 0xb2, 0x98, 0x02, 0xc1, 0xd3, 0xd1, 0xa7, 0x32,
6252 0x9a, 0xa6, 0x9f, 0x88, 0x78, 0x77, 0xf7, 0x4a, 0xd8, 0x2e, 0x0f, 0x1a,
6253 0x2f, 0x80, 0xb0, 0x59, 0xcf, 0x3c, 0x38, 0x1d, 0xc5, 0xf8, 0x00, 0xa2,
6254 0x66, 0xb4, 0x98, 0xe3, 0x68, 0x5d, 0x22, 0x5d, 0x34, 0xcf, 0x4b, 0xb8,
6255 0x69, 0x30, 0x38, 0x83, 0xa9, 0x67, 0x59, 0x42, 0xf3, 0x28, 0xbb, 0xf0,
6256 0x47, 0xfe, 0x29, 0x4d, 0xe0, 0x97, 0x49, 0x3a, 0x4d, 0x22, 0x5e, 0x60,
6257 0x33, 0x1c, 0x32, 0x52, 0x91, 0x94, 0x8b, 0x59, 0x12, 0xe1, 0xbb, 0xce,
6258 0xf2, 0x22, 0xe9, 0x47, 0x47, 0x65, 0x74, 0x9f, 0x2f, 0xe0, 0xdd, 0xa6,
6259 0x53, 0x58, 0xf0, 0x24, 0x1a, 0x26, 0xd3, 0xfc, 0xb6, 0x8b, 0x0b, 0x1c,
6260 0x65, 0x8b, 0xd9, 0x10, 0x6e, 0x81, 0xe9, 0x4f, 0x92, 0xb8, 0x5a, 0xc0,
6261 0xad, 0x74, 0x99, 0x0e, 0x37, 0x8b, 0xe1, 0x2d, 0xe0, 0xde, 0x22, 0xba,
6262 0x4e, 0xe0, 0x2d, 0xcb, 0x79, 0xda, 0xa4, 0x04, 0x10, 0x73, 0x9e, 0xdf,
6263 0x26, 0x45, 0x32, 0x8e, 0x86, 0xf7, 0x11, 0xbc, 0xf6, 0x90, 0xd9, 0x10,
6264 0x79, 0x2f, 0x8a, 0xe1, 0x81, 0x86, 0x03, 0x7b, 0x45, 0x32, 0x8d, 0x2b,
6265 0xb8, 0xce, 0x3c, 0xaa, 0x0f, 0xcb, 0x98, 0x24, 0x3a, 0x9c, 0xdc, 0xba,
6266 0xbe, 0xbb, 0x41, 0x37, 0x8f, 0x93, 0x2a, 0x4e, 0xa7, 0x25, 0x3c, 0x0e,
6267 0xb7, 0x85, 0x5c, 0x83, 0xeb, 0x88, 0x3b, 0x20, 0x8a, 0xca, 0xfb, 0xac,
6268 0x8a, 0xef, 0xe8, 0xf1, 0xc2, 0xa1, 0xbd, 0x71, 0x32, 0x4f, 0xb2, 0x71,
6269 0x92, 0x55, 0xfd, 0xe8, 0x6f, 0xf0, 0xba, 0x93, 0x14, 0x08, 0x10, 0xcb,
6270 0x38, 0xf0, 0x58, 0x58, 0xf2, 0x51, 0x91, 0xd2, 0x3e, 0xd2, 0xe1, 0xd2,
6271 0x2c, 0x7a, 0xff, 0xfa, 0x38, 0xda, 0x7d, 0xf9, 0xe2, 0x99, 0x7d, 0x2d,
6272 0xbc, 0x77, 0x14, 0x67, 0xf0, 0xb2, 0xc9, 0x28, 0x9d, 0xdc, 0x47, 0xb3,
6273 0xc5, 0xb4, 0x4a, 0xe7, 0x40, 0x6a, 0xdc, 0x79, 0xc8, 0x52, 0xf3, 0x18,
6274 0x76, 0x09, 0x92, 0x8c, 0x3e, 0xa0, 0xd7, 0xbe, 0x2d, 0xd2, 0x0a, 0x37,
6275 0x18, 0x7d, 0x07, 0x93, 0x4b, 0xec, 0x36, 0x42, 0x8e, 0x82, 0xe7, 0x0c,
6276 0x81, 0x91, 0x80, 0xb8, 0xb8, 0x28, 0x7f, 0x5f, 0xe4, 0x74, 0x31, 0xd2,
6277 0x1f, 0xdf, 0x25, 0x2e, 0x61, 0x22, 0x07, 0x9f, 0x59, 0x91, 0xd2, 0xb9,
6278 0xae, 0xaa, 0xf9, 0xc1, 0xe6, 0x66, 0x99, 0x56, 0x49, 0xff, 0x1f, 0x79,
6279 0x96, 0x74, 0xab, 0xdb, 0xbc, 0x5b, 0x5d, 0x17, 0x49, 0xf2, 0xcf, 0x3e,
6280 0xb0, 0x71, 0xc7, 0x5c, 0x0b, 0xb3, 0xb9, 0x97, 0xe9, 0x5e, 0x25, 0xb0,
6281 0x85, 0x93, 0xbf, 0x2f, 0x92, 0x0c, 0x9f, 0x03, 0xb3, 0x8b, 0xa7, 0xf3,
6282 0xeb, 0x18, 0xd6, 0x37, 0x01, 0x86, 0xc4, 0x7d, 0x0e, 0x3c, 0x83, 0x73,
6283 0x5d, 0x94, 0xf8, 0xec, 0xef, 0x7f, 0x0c, 0x3c, 0x76, 0x42, 0x4f, 0x85,
6284 0x9f, 0xfd, 0xe4, 0x2e, 0x9e, 0xc1, 0x2b, 0xe3, 0xc3, 0x36, 0x91, 0xcd,
6285 0xbe, 0xdf, 0xee, 0x6d, 0x6f, 0x6d, 0xfd, 0xd8, 0xaf, 0xee, 0xaa, 0xce,
6286 0x23, 0xef, 0xd8, 0xda, 0x72, 0xee, 0xc1, 0x8b, 0xd7, 0x91, 0x12, 0xd1,
6287 0x14, 0xf8, 0x08, 0x27, 0xf0, 0x73, 0x52, 0xe4, 0xe5, 0xc6, 0x23, 0xc7,
6288 0x8a, 0x7b, 0x3f, 0x37, 0x9e, 0xfd, 0x2e, 0x29, 0x89, 0x95, 0xec, 0x1b,
6289 0x47, 0x71, 0x01, 0xec, 0x9c, 0x1b, 0x39, 0x96, 0xc0, 0x36, 0x1a, 0xc2,
6290 0x4e, 0x56, 0xfa, 0xc0, 0xe6, 0x83, 0xab, 0x41, 0xd8, 0xc5, 0xb0, 0x7d,
6291 0x33, 0xb8, 0x21, 0x4b, 0xee, 0x2a, 0x67, 0xfb, 0x27, 0xf1, 0xe8, 0x3a,
6292 0xca, 0x61, 0x4d, 0x8a, 0xd0, 0x52, 0xb8, 0x53, 0x8a, 0x8b, 0xd1, 0x75,
6293 0x7a, 0x03, 0x34, 0x79, 0xf9, 0xf2, 0x59, 0x0f, 0x7e, 0xbc, 0xfc, 0x71,
6294 0xf3, 0x26, 0x9f, 0x02, 0x89, 0xf6, 0x7e, 0xdc, 0xc4, 0xf5, 0xff, 0x47,
6295 0xdc, 0x1d, 0x76, 0x47, 0xff, 0xec, 0x5f, 0x57, 0xb3, 0x69, 0xa7, 0x95,
6296 0xad, 0xe2, 0x0c, 0xfe, 0x9b, 0xe5, 0x8b, 0xac, 0x32, 0xac, 0x94, 0x67,
6297 0xc4, 0x13, 0x2a, 0xa8, 0xa6, 0x69, 0x06, 0x9b, 0x17, 0x79, 0x1e, 0x39,
6298 0x0c, 0x37, 0x2f, 0xec, 0x5c, 0xbb, 0xd1, 0xab, 0xd1, 0x35, 0x52, 0x00,
6299 0x78, 0x2b, 0x16, 0x32, 0x54, 0x29, 0xbc, 0x1b, 0xdc, 0x9a, 0x91, 0xec,
6300 0xa2, 0xb1, 0xf8, 0x69, 0x29, 0x5c, 0x98, 0x17, 0x63, 0x14, 0xf4, 0x8d,
6301 0x69, 0x98, 0xbd, 0xec, 0x3c, 0x33, 0xd2, 0xc3, 0x06, 0x3f, 0xa0, 0x89,
6302 0xcd, 0xd2, 0x3b, 0x18, 0x01, 0xff, 0xc4, 0xa7, 0xc1, 0xc4, 0x79, 0xb4,
6303 0x08, 0x67, 0x4c, 0x8f, 0xd1, 0xfb, 0xed, 0x5e, 0x86, 0xa9, 0xd7, 0x5e,
6304 0x9d, 0x1e, 0x6a, 0x5f, 0x3e, 0x82, 0xe5, 0x9b, 0xc3, 0x5d, 0x0b, 0x14,
6305 0xb1, 0x7c, 0x50, 0xc1, 0x30, 0x20, 0x29, 0xae, 0x60, 0x65, 0x60, 0x35,
6306 0x90, 0x9b, 0x71, 0xb1, 0xee, 0xa3, 0x77, 0xc0, 0x34, 0x2c, 0xa5, 0x1c,
6307 0xa6, 0x9f, 0x26, 0x55, 0xf5, 0xf0, 0x42, 0x59, 0xce, 0x3d, 0xd8, 0x0e,
6308 0x30, 0x6f, 0xdb, 0x1d, 0xc0, 0x6d, 0x07, 0x3b, 0x8d, 0xcb, 0xbf, 0x05,
6309 0x99, 0x6d, 0xb7, 0x0e, 0xcc, 0xe0, 0x1f, 0xff, 0x74, 0x78, 0xef, 0x16,
6310 0xbf, 0x4d, 0xb3, 0x9b, 0xfc, 0x13, 0x90, 0x89, 0xce, 0xd7, 0xb8, 0x4e,
6311 0x51, 0x14, 0x52, 0xb3, 0x79, 0x65, 0x4e, 0x2f, 0x64, 0x4a, 0xf8, 0x68,
6312 0x18, 0x0f, 0xa7, 0xf7, 0xd1, 0x75, 0x7c, 0x93, 0xe0, 0x3b, 0xcf, 0x81,
6313 0x5b, 0x91, 0x0a, 0x70, 0x8a, 0x4c, 0x49, 0x30, 0x88, 0xe8, 0x18, 0xe7,
6314 0x8b, 0x21, 0x88, 0x1f, 0x14, 0x1b, 0x4c, 0x9c, 0xf8, 0x26, 0x4f, 0xc7,
6315 0x78, 0xa9, 0x0e, 0x57, 0x5e, 0x27, 0x70, 0x0b, 0x3d, 0x98, 0xce, 0x2c,
6316 0x90, 0xb6, 0x38, 0x53, 0xda, 0x70, 0x69, 0x85, 0xc7, 0x1f, 0xc8, 0xc9,
6317 0x78, 0x5a, 0xe6, 0x51, 0x74, 0x95, 0xe3, 0x5e, 0x21, 0xe9, 0x4c, 0xcc,
6318 0x0e, 0x0b, 0x73, 0x1d, 0xe3, 0x21, 0x07, 0xe7, 0x99, 0xd9, 0x0d, 0x45,
6319 0x42, 0x82, 0x9a, 0x56, 0x2b, 0x9e, 0x76, 0xf9, 0x30, 0xc3, 0x7b, 0x84,
6320 0x56, 0xd1, 0xda, 0xff, 0x58, 0xeb, 0x46, 0x6b, 0xff, 0x73, 0x8d, 0x78,
6321 0x62, 0xed, 0x3f, 0xd7, 0xec, 0x5a, 0x83, 0xae, 0x76, 0x93, 0x8e, 0x13,
6322 0x66, 0x8b, 0xd3, 0x8b, 0x9b, 0x67, 0xd1, 0xcf, 0xb0, 0xdb, 0x60, 0x5a,
6323 0xe3, 0xe4, 0x4e, 0x99, 0x52, 0xdf, 0x0d, 0xee, 0x8e, 0x40, 0x28, 0xc7,
6324 0x73, 0x78, 0xd6, 0x3c, 0x29, 0x46, 0xc0, 0xc1, 0xf1, 0x15, 0xf0, 0x2c,
6325 0x9c, 0xcc, 0x3a, 0x1c, 0x8e, 0x8f, 0xb7, 0xf0, 0x6b, 0x81, 0x08, 0x8d,
6326 0xb2, 0x78, 0x06, 0xbb, 0xe2, 0x0c, 0x67, 0x94, 0x66, 0x81, 0xe5, 0xfc,
6327 0x7e, 0x92, 0xbc, 0xd8, 0x3a, 0x38, 0xd8, 0xfd, 0xe3, 0xce, 0x7e, 0x52,
6328 0x5d, 0x6f, 0xfd, 0xb8, 0x69, 0x17, 0xf1, 0x74, 0x42, 0x84, 0x57, 0x26,
6329 0xd4, 0x69, 0xe0, 0x79, 0xaf, 0x87, 0x08, 0x0c, 0x00, 0xbf, 0x27, 0x93,
6330 0xf4, 0xae, 0xab, 0x0a, 0x15, 0xef, 0xbc, 0x18, 0x18, 0x0e, 0x56, 0x10,
6331 0x45, 0x85, 0x0e, 0x77, 0xb5, 0x48, 0x4a, 0xa0, 0xe5, 0xed, 0x75, 0x5c,
6332 0x45, 0x66, 0x00, 0x5e, 0xdb, 0x59, 0x7a, 0x75, 0x5d, 0x45, 0xb7, 0x31,
6333 0x9e, 0x45, 0xa0, 0x5a, 0xd1, 0x10, 0x78, 0xec, 0xc3, 0x21, 0x34, 0x89,
6334 0xe1, 0x3c, 0xc1, 0x55, 0xa4, 0x33, 0x1e, 0x24, 0x94, 0xa5, 0xfa, 0xbd,
6335 0x2c, 0x89, 0xd1, 0xb9, 0xa2, 0x61, 0x5c, 0xe2, 0xd6, 0xcd, 0x40, 0x44,
6336 0x54, 0xa0, 0x34, 0x2c, 0xf0, 0xaf, 0x6b, 0x50, 0x0b, 0x88, 0x0a, 0x32,
6337 0x51, 0x3a, 0x47, 0x5f, 0xe3, 0x82, 0xe2, 0xea, 0x18, 0x4d, 0x00, 0x96,
6338 0xa9, 0x2b, 0x0b, 0x6d, 0xee, 0x28, 0x61, 0xdb, 0x81, 0x80, 0x32, 0xbc,
6339 0x81, 0x32, 0xb7, 0xdf, 0xe1, 0xf7, 0xa4, 0x39, 0xc6, 0x25, 0xa9, 0x0e,
6340 0xa4, 0x2d, 0xc0, 0xe4, 0x9d, 0x97, 0x05, 0xa2, 0xc5, 0x9f, 0x50, 0x47,
6341 0x69, 0x9c, 0xff, 0x74, 0xdb, 0x38, 0x07, 0x36, 0x83, 0xd9, 0x82, 0x50,
6342 0xc6, 0x37, 0x43, 0x51, 0x4b, 0x54, 0x21, 0x36, 0x87, 0x31, 0xf1, 0xc3,
6343 0xb4, 0xc2, 0x13, 0x87, 0x94, 0x5c, 0x98, 0x2f, 0x10, 0x85, 0xf4, 0x30,
6344 0x10, 0xd8, 0xce, 0xfb, 0xd3, 0x11, 0x0a, 0xd7, 0x46, 0x37, 0xf1, 0x34,
6345 0x05, 0x65, 0x35, 0x31, 0x77, 0xd1, 0x71, 0x3f, 0x42, 0x65, 0x69, 0x0a,
6346 0x3b, 0x66, 0x94, 0x17, 0x05, 0x1a, 0x04, 0xb8, 0x82, 0x43, 0x16, 0xa5,
6347 0xb3, 0x04, 0xb4, 0x0c, 0x97, 0x9c, 0x30, 0xfa, 0x24, 0x4e, 0x0b, 0xb8,
6348 0x1a, 0x14, 0x0b, 0x92, 0xfa, 0xf4, 0xca, 0x34, 0x2f, 0x1c, 0x75, 0x34,
6349 0x4a, 0xe6, 0x55, 0x19, 0x7a, 0x1b, 0x5d, 0x6a, 0x98, 0x48, 0x91, 0x20,
6350 0xcd, 0x5d, 0xfd, 0x8b, 0x28, 0x6a, 0x54, 0x02, 0x52, 0xc1, 0x54, 0xc1,
6351 0x01, 0x95, 0xac, 0xcc, 0xad, 0xf6, 0x8c, 0x5c, 0x01, 0x62, 0x8c, 0xa8,
6352 0x3d, 0xc3, 0x29, 0xe2, 0xc5, 0x25, 0xef, 0x52, 0x12, 0xcd, 0xb8, 0x84,
6353 0xac, 0x7f, 0xf3, 0x73, 0xf1, 0xf0, 0x02, 0x4a, 0x9a, 0xc1, 0xe1, 0xa9,
6354 0x66, 0x35, 0xf1, 0xf1, 0xa8, 0xfd, 0xc3, 0x89, 0x3e, 0x2e, 0xaf, 0x41,
6355 0x2b, 0x2b, 0x65, 0x57, 0xa7, 0x33, 0xe0, 0x96, 0x1b, 0x5c, 0xd9, 0x79,
6356 0x92, 0x8c, 0xfb, 0xd1, 0xf9, 0x04, 0xa5, 0x6a, 0x01, 0x93, 0xae, 0xe8,
6357 0x6b, 0x3c, 0x55, 0x80, 0x06, 0x63, 0xdc, 0x84, 0x56, 0xf1, 0xe1, 0xa9,
6358 0x38, 0xa7, 0x03, 0x49, 0xf2, 0x18, 0x3e, 0x81, 0xd9, 0x4e, 0xeb, 0x47,
6359 0x10, 0xed, 0x41, 0x90, 0xde, 0x38, 0xbd, 0x61, 0x12, 0x11, 0x0f, 0x0e,
6360 0x93, 0xea, 0x36, 0x49, 0xcc, 0x70, 0x65, 0x02, 0xe7, 0x1e, 0x2e, 0x17,
6361 0xab, 0x84, 0x20, 0x08, 0x59, 0xa9, 0x45, 0xf2, 0x9e, 0x7f, 0xb8, 0xbc,
6362 0xf8, 0x70, 0xe9, 0x6c, 0x41, 0x1c, 0xa7, 0xca, 0xa7, 0x63, 0x66, 0xf6,
6363 0xdb, 0xb4, 0x04, 0x3e, 0x65, 0xe2, 0x83, 0x12, 0x85, 0x02, 0x0e, 0x0f,
6364 0x82, 0x64, 0x94, 0xc0, 0x11, 0x3b, 0x66, 0x8b, 0x05, 0x16, 0xa2, 0xac,
6365 0x40, 0x0a, 0xf2, 0x66, 0xc2, 0xb9, 0xe8, 0x70, 0x30, 0x1f, 0x78, 0x5c,
6366 0x59, 0x15, 0x8b, 0x11, 0xa9, 0x03, 0xc8, 0x3b, 0xf8, 0x37, 0x29, 0xab,
6367 0x24, 0x56, 0x71, 0x19, 0x68, 0x10, 0x90, 0x20, 0x68, 0xf0, 0x4c, 0x61,
6368 0x6a, 0x53, 0x7a, 0xff, 0xae, 0xc8, 0x73, 0x47, 0x8e, 0xf6, 0x7a, 0xf0,
6369 0x10, 0x14, 0xc3, 0xb0, 0xc6, 0x3d, 0xd0, 0x57, 0x67, 0x20, 0x71, 0x7b,
6370 0xb4, 0xd5, 0xe4, 0x48, 0xec, 0xe3, 0x0b, 0xa8, 0xde, 0x7b, 0x05, 0x33,
6371 0x04, 0xaa, 0x99, 0xf5, 0x12, 0x7d, 0xd0, 0xee, 0x19, 0x63, 0xda, 0x99,
6372 0x73, 0xd2, 0xa5, 0x6b, 0x17, 0xd9, 0xb0, 0x4c, 0x67, 0xe9, 0x34, 0x46,
6373 0x2e, 0xcd, 0x60, 0xf9, 0x4a, 0x3b, 0x98, 0x9e, 0xc1, 0xc0, 0x6e, 0x46,
6374 0x93, 0x04, 0x72, 0xd1, 0x41, 0x21, 0x6f, 0x96, 0xcc, 0x1a, 0xdc, 0x3b,
6375 0x46, 0xd9, 0x8e, 0xe4, 0x85, 0xd5, 0x00, 0x06, 0x80, 0x97, 0x30, 0x24,
6376 0x8e, 0x3a, 0x0b, 0x90, 0xc0, 0x05, 0x6c, 0xff, 0x6c, 0xdc, 0x91, 0xa9,
6377 0x80, 0x48, 0xcd, 0x70, 0x1b, 0x32, 0x9f, 0x96, 0x78, 0xb0, 0x9a, 0x47,
6378 0xf1, 0x52, 0xe0, 0xde, 0x8b, 0x98, 0x24, 0xbc, 0x67, 0xe5, 0x09, 0x11,
6379 0x1c, 0x7b, 0x39, 0xa9, 0x71, 0xa4, 0xa8, 0xf3, 0xef, 0x40, 0xcf, 0x6c,
6380 0x8a, 0x12, 0x31, 0xb9, 0x9b, 0x4f, 0xd3, 0x51, 0x5a, 0x4d, 0x8d, 0x76,
6381 0x11, 0x97, 0x78, 0x30, 0xa2, 0x8d, 0x85, 0x5b, 0x70, 0x9c, 0x8c, 0xd1,
6382 0xe8, 0x81, 0x4f, 0x42, 0x5a, 0x07, 0xbc, 0xd3, 0xc5, 0xfb, 0xf3, 0xcb,
6383 0xf3, 0xe3, 0xf3, 0xb3, 0xba, 0x0d, 0xac, 0xf6, 0x69, 0x44, 0x3a, 0x6d,
6384 0xbe, 0xb0, 0x9a, 0x3f, 0x6c, 0x3c, 0x54, 0xcb, 0x61, 0xdd, 0xe0, 0x80,
6385 0x21, 0xeb, 0x00, 0x0e, 0x8b, 0x19, 0x58, 0xac, 0x51, 0x09, 0x3a, 0xd2,
6386 0x8c, 0x04, 0x24, 0xe8, 0x20, 0xe6, 0xed, 0x50, 0x49, 0x4b, 0x47, 0x0b,
6387 0xa0, 0x3b, 0x08, 0x8c, 0x14, 0x38, 0x71, 0x16, 0xdf, 0xbb, 0xaa, 0x23,
6388 0xd1, 0x16, 0x8d, 0x17, 0x4b, 0x5f, 0xb4, 0x7d, 0xe1, 0x9f, 0x33, 0xa4,
6389 0x13, 0x4a, 0xb5, 0x29, 0x18, 0x61, 0x8b, 0x39, 0xda, 0x8c, 0xb0, 0x68,
6390 0xcc, 0x47, 0xb0, 0xcf, 0xf0, 0x35, 0xe0, 0xdd, 0xf0, 0x3d, 0x62, 0xd4,
6391 0xb7, 0xed, 0xfd, 0x68, 0x35, 0xc3, 0x3f, 0xef, 0x91, 0x31, 0x71, 0xb2,
6392 0x4c, 0xe1, 0x48, 0xd8, 0x91, 0xf7, 0x63, 0x5f, 0x4f, 0x1c, 0xb3, 0x8e,
6393 0x3a, 0x1f, 0x14, 0x56, 0x25, 0x3e, 0xa4, 0xe1, 0x76, 0xc0, 0xdb, 0xf0,
6394 0xc4, 0xc2, 0x77, 0x66, 0x6e, 0x9d, 0xde, 0xb3, 0xd6, 0x4b, 0x1a, 0x49,
6395 0xb1, 0xc8, 0x32, 0x9e, 0x59, 0xf4, 0x36, 0x1d, 0x81, 0xbe, 0x0d, 0xa7,
6396 0x48, 0xf4, 0x2d, 0x1c, 0xc5, 0xf9, 0x2d, 0xac, 0xeb, 0xc2, 0x5a, 0x8d,
6397 0xc6, 0x1c, 0x62, 0xa3, 0x24, 0x83, 0xcd, 0x0b, 0x1c, 0xf6, 0xe1, 0xdd,
6398 0x71, 0x14, 0xcf, 0x81, 0xc8, 0xa8, 0x19, 0x93, 0x84, 0x42, 0x13, 0xd9,
6399 0x79, 0xa7, 0xcb, 0x8b, 0xf5, 0xc1, 0x86, 0xcc, 0xd9, 0xac, 0x0e, 0xeb,
6400 0x83, 0xaf, 0x51, 0x30, 0x5e, 0x2a, 0xff, 0x5f, 0xe8, 0xe1, 0xc8, 0xa7,
6401 0x3e, 0xbc, 0x35, 0x29, 0xbd, 0x20, 0x43, 0xe2, 0x4f, 0x65, 0x63, 0x12,
6402 0xc4, 0x0f, 0xa8, 0xfa, 0x01, 0x3d, 0xbe, 0xc5, 0xcb, 0xf3, 0xc2, 0xb1,
6403 0xca, 0x71, 0x8a, 0x97, 0x67, 0x03, 0x3b, 0x09, 0xf6, 0x3a, 0xc0, 0x3c,
6404 0x1a, 0xc3, 0xbc, 0x4f, 0xc0, 0x10, 0x87, 0x61, 0x84, 0xb4, 0xe6, 0x7a,
6405 0x3c, 0x75, 0xfd, 0xab, 0xeb, 0x0c, 0x46, 0x27, 0x33, 0x4d, 0xd5, 0xb0,
6406 0x9a, 0xab, 0x12, 0xdf, 0xc0, 0xda, 0xc6, 0x2a, 0x0e, 0xea, 0xf2, 0xa8,
6407 0x76, 0x58, 0xd2, 0x30, 0xf8, 0x22, 0x70, 0x69, 0xb4, 0xd5, 0x7f, 0xd9,
6408 0x8d, 0xb6, 0xfb, 0x5b, 0xf8, 0x63, 0xbb, 0x1b, 0xed, 0xd0, 0x48, 0xbb,
6409 0x11, 0xdb, 0xac, 0xb2, 0x48, 0xcc, 0x8c, 0xf9, 0xbc, 0xb9, 0x2e, 0xf6,
6410 0xd1, 0xbc, 0x71, 0xf9, 0xf0, 0x6b, 0xd9, 0x3c, 0x8e, 0xbb, 0xc5, 0x7f,
6411 0xcf, 0x0f, 0x2a, 0xf1, 0x80, 0xe5, 0xd3, 0x29, 0xf0, 0x0c, 0x1b, 0x63,
6412 0xba, 0x91, 0x44, 0x10, 0xa3, 0xaa, 0xde, 0x01, 0x26, 0xc9, 0xd0, 0x19,
6413 0xd1, 0x89, 0x12, 0xbc, 0x96, 0x95, 0xc6, 0xc6, 0x70, 0xb0, 0x13, 0x1e,
6414 0xb5, 0x48, 0xe8, 0xe5, 0x69, 0x21, 0x3a, 0x3e, 0x0b, 0x0e, 0xbd, 0x71,
6415 0x8a, 0xef, 0x94, 0x83, 0x0a, 0xc4, 0x3b, 0x8b, 0xcf, 0x59, 0x18, 0xbf,
6416 0xcb, 0x0b, 0xe1, 0x8c, 0x5f, 0x1b, 0x19, 0x1d, 0x47, 0xde, 0xfa, 0xd1,
6417 0x87, 0x4a, 0xf8, 0xdd, 0x7e, 0xf4, 0x4a, 0x5e, 0x85, 0xc8, 0x8c, 0xc7,
6418 0x2d, 0x5d, 0x00, 0xda, 0x3b, 0xa8, 0xc4, 0x51, 0xa7, 0x5c, 0x0c, 0x9b,
6419 0x04, 0x47, 0x47, 0xc1, 0x30, 0xe9, 0xb0, 0x8b, 0xac, 0xca, 0xe7, 0x60,
6420 0x40, 0xdf, 0x5e, 0x23, 0x47, 0xb3, 0x7f, 0x06, 0xc6, 0xd9, 0x44, 0xe7,
6421 0x0c, 0x8e, 0xa7, 0xa3, 0xcc, 0x41, 0x47, 0x4f, 0xcb, 0xeb, 0x0e, 0xae,
6422 0x63, 0xdc, 0x5c, 0x3f, 0x1c, 0xa1, 0xcf, 0x4f, 0xa5, 0xe7, 0xc3, 0x2b,
6423 0xe0, 0x01, 0x52, 0xb3, 0x56, 0xa3, 0xf5, 0xfb, 0xa4, 0xda, 0x70, 0x14,
6424 0xe9, 0xf3, 0x8b, 0x5d, 0x9f, 0x66, 0xee, 0xab, 0xb0, 0x2a, 0x81, 0xa7,
6425 0xf6, 0x3c, 0x9f, 0xef, 0x46, 0xaa, 0x4b, 0xb0, 0x26, 0xa4, 0x9a, 0x47,
6426 0x4c, 0x2b, 0x6d, 0x56, 0xa9, 0x31, 0xdc, 0x92, 0x35, 0x43, 0xcf, 0x9b,
6427 0xff, 0x7c, 0x74, 0xc0, 0x80, 0x10, 0x83, 0x43, 0x0a, 0x0e, 0xc5, 0xb7,
6428 0x20, 0x94, 0xe2, 0x2b, 0xbc, 0xd3, 0x6c, 0x70, 0x52, 0xea, 0xe6, 0x45,
6429 0x3a, 0x83, 0x3d, 0x02, 0x87, 0x1a, 0x6b, 0x0b, 0x74, 0x2c, 0xf3, 0xec,
6430 0x9a, 0x84, 0x46, 0x53, 0x63, 0x46, 0x1a, 0x12, 0x1c, 0x0a, 0x31, 0xab,
6431 0x1a, 0x96, 0x2d, 0xf8, 0x5d, 0xd1, 0x84, 0x71, 0xa6, 0x35, 0xb8, 0xf0,
6432 0x16, 0x9c, 0x3e, 0x84, 0xcd, 0x65, 0x6e, 0x71, 0x36, 0xc2, 0xe0, 0xf8,
6433 0xc2, 0xdf, 0xe1, 0x83, 0xc1, 0x1b, 0xc3, 0x20, 0x3b, 0xb0, 0xdc, 0x73,
6434 0xab, 0xc4, 0x39, 0x77, 0xa2, 0x47, 0xce, 0xbb, 0x13, 0x3f, 0x5c, 0x1f,
6435 0x17, 0x31, 0x88, 0xd2, 0xfd, 0x0d, 0xd1, 0xab, 0x90, 0xec, 0xb5, 0x21,
6436 0x9d, 0x41, 0xde, 0x7e, 0x65, 0x84, 0xa4, 0x1d, 0xe4, 0xed, 0x57, 0xe6,
6437 0xda, 0x6d, 0xe2, 0x74, 0x66, 0x2c, 0x7a, 0x7f, 0x7d, 0x07, 0x77, 0x8c,
6438 0x90, 0xcc, 0xfa, 0x30, 0x37, 0x8c, 0x20, 0x67, 0x79, 0xc9, 0x94, 0x46,
6439 0x43, 0x1b, 0x6f, 0xa9, 0x33, 0x44, 0x29, 0x72, 0x06, 0x6d, 0x2e, 0x62,
6440 0x89, 0xc6, 0x70, 0xdf, 0x2e, 0xdb, 0x66, 0xe2, 0x4f, 0xbd, 0x04, 0x33,
6441 0x13, 0xc7, 0xa0, 0xb7, 0x81, 0x47, 0x91, 0x13, 0x02, 0xb7, 0x48, 0x32,
6442 0xcd, 0x12, 0x56, 0xc7, 0xc9, 0xc0, 0x40, 0x61, 0x65, 0xbd, 0xa7, 0x37,
6443 0xa8, 0xe6, 0x96, 0xa5, 0xe3, 0x77, 0xab, 0x29, 0x34, 0xa4, 0x80, 0xe0,
6444 0xec, 0x8c, 0x2d, 0x85, 0x1f, 0xa0, 0x68, 0x2a, 0x49, 0x71, 0x02, 0xd5,
6445 0x8f, 0xbc, 0x0e, 0x63, 0xd1, 0x44, 0x4a, 0xbe, 0xca, 0x51, 0xdb, 0x8c,
6446 0x16, 0x4a, 0xaf, 0xcb, 0x43, 0xb9, 0x3c, 0x73, 0xe9, 0x2c, 0xa4, 0xc8,
6447 0x1b, 0xfa, 0xc8, 0x70, 0x0b, 0x8d, 0xce, 0x4b, 0x20, 0xfa, 0xc7, 0xd7,
6448 0xef, 0x4f, 0x06, 0x83, 0xe8, 0xed, 0xc9, 0xe5, 0xc9, 0xfb, 0x9a, 0x12,
6449 0x92, 0xe5, 0xc5, 0x8c, 0x4c, 0x90, 0x71, 0x5a, 0xce, 0xa7, 0xf1, 0x3d,
6450 0xda, 0x26, 0x20, 0x3d, 0xaf, 0x0a, 0x54, 0x7c, 0x66, 0x09, 0x3a, 0x33,
6451 0xc6, 0x0b, 0x32, 0xbe, 0x41, 0x24, 0xc3, 0xeb, 0x8b, 0xcf, 0x16, 0xed,
6452 0x5f, 0x72, 0xf4, 0xda, 0x23, 0x9c, 0x8e, 0x49, 0x71, 0x00, 0xe1, 0x61,
6453 0x68, 0x3d, 0xf5, 0xb8, 0x63, 0x50, 0x65, 0xed, 0x3a, 0x1a, 0x24, 0x69,
6454 0xf7, 0x3c, 0x4f, 0x30, 0xb2, 0x60, 0x7b, 0xa1, 0xc4, 0xc0, 0x4d, 0x68,
6455 0x3c, 0x2e, 0xc9, 0xa4, 0xea, 0x46, 0xb0, 0x1e, 0xec, 0xec, 0x6e, 0xce,
6456 0x49, 0x67, 0x6b, 0xfd, 0xbd, 0xc3, 0xfb, 0x4a, 0xfc, 0x91, 0x3c, 0x15,
6457 0x7e, 0x82, 0xd1, 0xd8, 0x68, 0x61, 0xb2, 0x48, 0x2e, 0x9b, 0x13, 0x5d,
6458 0x81, 0xcd, 0xc6, 0x3c, 0x7c, 0xb9, 0x98, 0x90, 0xe5, 0x19, 0xad, 0x7f,
6459 0xea, 0x46, 0x6f, 0xbb, 0xd1, 0xd7, 0xdd, 0x08, 0xfd, 0xf7, 0x1b, 0x74,
6460 0xdf, 0xf6, 0xd6, 0xce, 0x1e, 0x5b, 0xae, 0x86, 0xc7, 0x5e, 0x3b, 0xbe,
6461 0x83, 0xed, 0x4f, 0x28, 0x24, 0xf8, 0x22, 0x1c, 0xbc, 0x1f, 0x6d, 0xbf,
6462 0xe5, 0x4f, 0xf6, 0x5e, 0xec, 0x3f, 0x7f, 0x26, 0x1f, 0x36, 0x34, 0x5b,
6463 0x9d, 0x3f, 0x19, 0x35, 0x6a, 0x14, 0xe0, 0xbc, 0x51, 0xd3, 0x4b, 0x33,
6464 0xd0, 0xa1, 0xc0, 0x0e, 0x14, 0xe3, 0x1a, 0xcd, 0x30, 0x98, 0xfc, 0x84,
6465 0x4d, 0x71, 0xf1, 0xcb, 0xd4, 0x83, 0x24, 0x70, 0x33, 0x30, 0x01, 0xb0,
6466 0x82, 0x59, 0x24, 0xf6, 0x6e, 0x55, 0x38, 0x91, 0x78, 0x88, 0xfc, 0x8f,
6467 0xda, 0x2a, 0xe9, 0x68, 0xa1, 0xa7, 0x19, 0x47, 0x0e, 0xdc, 0x01, 0x73,
6468 0x8b, 0x87, 0x53, 0x31, 0x5c, 0x1a, 0x74, 0x07, 0xfd, 0xd9, 0xaa, 0xe0,
6469 0x70, 0xed, 0x6d, 0xbe, 0x40, 0x75, 0x13, 0x2f, 0x00, 0xed, 0x11, 0x6f,
6470 0x60, 0x9e, 0x36, 0xfe, 0xf6, 0xf4, 0x4e, 0xce, 0xe3, 0xda, 0x28, 0x30,
6471 0x35, 0xf8, 0x73, 0x0e, 0xac, 0xc4, 0xd3, 0xe9, 0x37, 0x5d, 0x1a, 0x64,
6472 0xac, 0x7b, 0x9c, 0x88, 0x82, 0x85, 0x94, 0x90, 0x8b, 0xf3, 0x01, 0x05,
6473 0x43, 0xc0, 0x10, 0x83, 0x81, 0xfe, 0xbe, 0x00, 0x16, 0x02, 0xa6, 0xc4,
6474 0x1b, 0xd1, 0xea, 0x70, 0x2c, 0x16, 0xe0, 0x3d, 0x3a, 0x88, 0xc5, 0x08,
6475 0x93, 0x47, 0x8a, 0x51, 0x44, 0xb2, 0x25, 0x12, 0xdb, 0x49, 0x8e, 0x0c,
6476 0x71, 0x3d, 0xd9, 0x1b, 0xa3, 0xf5, 0x2f, 0x36, 0xba, 0x21, 0x7b, 0x4a,
6477 0x2c, 0x1d, 0x67, 0x57, 0x5e, 0x53, 0x20, 0x86, 0xfc, 0x51, 0x78, 0x12,
6478 0x82, 0xaa, 0x09, 0xfb, 0x0a, 0x1e, 0x62, 0x03, 0x21, 0x48, 0x3f, 0xb2,
6479 0xe0, 0xec, 0x32, 0x59, 0xdd, 0x78, 0x0e, 0xf4, 0xcc, 0x2d, 0xe9, 0xd0,
6480 0xc2, 0xae, 0x11, 0xa9, 0xb9, 0x66, 0x35, 0xa2, 0x31, 0x6b, 0xa0, 0x03,
6481 0x05, 0xcd, 0xb3, 0x38, 0xb2, 0xa4, 0x8b, 0x3a, 0xc3, 0xb8, 0xe8, 0x58,
6482 0x33, 0x92, 0xf7, 0x26, 0xee, 0x90, 0x22, 0xb9, 0x22, 0x9b, 0x21, 0x62,
6483 0xf2, 0x3a, 0x6f, 0xa9, 0x37, 0xf7, 0x86, 0xf8, 0x75, 0x5a, 0x72, 0xc8,
6484 0x64, 0x02, 0x0a, 0x28, 0x6e, 0x18, 0x75, 0xb9, 0x92, 0x03, 0x4e, 0xb8,
6485 0x25, 0xc0, 0x2c, 0x8e, 0x2b, 0x16, 0xb6, 0x09, 0xaa, 0xf2, 0xac, 0xfa,
6486 0xe0, 0x95, 0xbd, 0x5e, 0x09, 0x54, 0x47, 0x57, 0xf1, 0x5c, 0xa2, 0x51,
6487 0xe7, 0x14, 0xfa, 0x33, 0x16, 0xd2, 0xb9, 0xe8, 0xa7, 0x24, 0x7e, 0x45,
6488 0x65, 0xca, 0xc8, 0x04, 0xac, 0x6e, 0xe1, 0xa1, 0x31, 0x2c, 0x13, 0x6c,
6489 0xb4, 0xb7, 0x48, 0x24, 0x54, 0xbc, 0xf1, 0x75, 0x54, 0xa5, 0x25, 0x8e,
6490 0x48, 0x71, 0xbf, 0x5b, 0x3d, 0x36, 0x1e, 0x8f, 0x53, 0xb2, 0x62, 0xa6,
6491 0xe8, 0x8a, 0x59, 0x24, 0xe4, 0x2c, 0x17, 0x82, 0xce, 0xdc, 0x25, 0x44,
6492 0xc1, 0x71, 0x8d, 0x26, 0x0a, 0xe8, 0x51, 0xe4, 0x3a, 0xe8, 0xe1, 0xb3,
6493 0x3a, 0xa4, 0x2c, 0xce, 0x22, 0x7d, 0x96, 0x3c, 0xaa, 0x1b, 0xf5, 0xc6,
6494 0xae, 0x1b, 0xb1, 0x4b, 0x86, 0x97, 0xf5, 0x69, 0x93, 0xb2, 0xd0, 0x54,
6495 0xf7, 0x62, 0x58, 0x69, 0xf4, 0xfb, 0x89, 0xcb, 0x81, 0x7c, 0x37, 0xb4,
6496 0x55, 0x4b, 0x9e, 0x5a, 0x17, 0xe8, 0x8a, 0x57, 0x5e, 0x5d, 0xeb, 0xa5,
6497 0x8e, 0x07, 0x28, 0x46, 0x4f, 0x02, 0xe8, 0xc9, 0x18, 0x17, 0x1a, 0xab,
6498 0x9b, 0x22, 0x2f, 0x58, 0x88, 0x4d, 0x73, 0x60, 0xe0, 0x0e, 0x7b, 0x57,
6499 0x65, 0xda, 0x38, 0x6b, 0x98, 0x65, 0x8f, 0x03, 0xa5, 0x34, 0x53, 0xa3,
6500 0x1b, 0xca, 0x94, 0x85, 0x5a, 0xe5, 0x83, 0x13, 0x73, 0xce, 0x6f, 0xa2,
6501 0x90, 0x1e, 0xf8, 0x4a, 0x77, 0x76, 0x4d, 0xe4, 0xc4, 0xcc, 0xb4, 0x0d,
6502 0xc9, 0xb1, 0xee, 0x50, 0x9e, 0x87, 0x29, 0xc5, 0x75, 0xde, 0x20, 0x53,
6503 0x94, 0xce, 0x48, 0x65, 0x22, 0x3e, 0x31, 0xcb, 0x63, 0x83, 0x18, 0x01,
6504 0xa7, 0xed, 0x7d, 0xd8, 0xf5, 0x1f, 0xb3, 0x6f, 0xd2, 0xcc, 0xab, 0x77,
6505 0x0e, 0x14, 0x38, 0xa3, 0x77, 0xe9, 0xdd, 0x44, 0xb8, 0xf9, 0x32, 0x78,
6506 0xcb, 0x18, 0xbf, 0x38, 0xbb, 0x71, 0x36, 0x11, 0x86, 0x9c, 0x32, 0x74,
6507 0xac, 0x75, 0x69, 0x88, 0x61, 0x9e, 0x4f, 0x93, 0xd8, 0xbe, 0x1e, 0x9e,
6508 0x04, 0x49, 0x86, 0xbc, 0x2e, 0x6b, 0x0a, 0xc2, 0x60, 0x6e, 0x24, 0x2d,
6509 0xe8, 0xba, 0x51, 0x7c, 0x15, 0xa7, 0x86, 0xe3, 0x64, 0x5f, 0x8c, 0x59,
6510 0x27, 0xc5, 0x4d, 0x95, 0xe5, 0x72, 0x03, 0xc5, 0x40, 0xd0, 0x6b, 0x27,
6511 0x32, 0x6b, 0x51, 0x26, 0xd6, 0x81, 0x26, 0x63, 0x92, 0x93, 0xc6, 0xf1,
6512 0xfe, 0xb1, 0x6b, 0x94, 0x44, 0x2e, 0x39, 0x3a, 0x61, 0xb0, 0x4e, 0x3f,
6513 0x7a, 0x93, 0xdf, 0xa2, 0x65, 0xd9, 0x65, 0x47, 0x74, 0x8a, 0x51, 0xda,
6514 0x12, 0xae, 0x00, 0x26, 0x9e, 0x81, 0x3a, 0x8f, 0x84, 0x24, 0x67, 0x19,
6515 0x7f, 0x1c, 0x39, 0xf1, 0x0c, 0xe0, 0xf1, 0x5b, 0xd9, 0x88, 0xf2, 0x40,
6516 0xb3, 0x9a, 0x93, 0xc6, 0x9e, 0xe8, 0xf5, 0xe2, 0x21, 0xa8, 0xb5, 0xa0,
6517 0xf8, 0xf4, 0x16, 0x59, 0x7a, 0xd7, 0x2b, 0xf3, 0xd1, 0x27, 0x78, 0xd9,
6518 0xc3, 0x79, 0x5c, 0x5d, 0x7f, 0xd1, 0xd0, 0x58, 0xd6, 0x51, 0x3a, 0x6f,
6519 0x44, 0xd1, 0x31, 0xfb, 0x17, 0x51, 0xce, 0x14, 0xcc, 0xc9, 0x40, 0x25,
6520 0x19, 0x25, 0xfa, 0x00, 0xa3, 0x00, 0x9f, 0x80, 0xce, 0x06, 0x4b, 0x47,
6521 0x83, 0x75, 0x55, 0x38, 0x35, 0x86, 0xa3, 0x20, 0xb4, 0x31, 0xe2, 0x81,
6522 0x2d, 0xd1, 0x5c, 0x8f, 0xa2, 0x77, 0x79, 0x95, 0x1c, 0xe0, 0xdf, 0x20,
6523 0x1c, 0x2a, 0x7a, 0x15, 0x39, 0xab, 0x62, 0x24, 0x34, 0x8a, 0x37, 0xe4,
6524 0xaf, 0xd8, 0xb7, 0x82, 0xf8, 0xf9, 0xf2, 0x50, 0xa5, 0xa9, 0x5d, 0xa2,
6525 0xb5, 0x2f, 0xd7, 0xba, 0xd1, 0x35, 0x93, 0x94, 0x06, 0xe4, 0x77, 0x84,
6526 0x95, 0xbf, 0x02, 0xb3, 0x39, 0xab, 0x9a, 0xc3, 0x5d, 0xd3, 0xe1, 0x87,
6527 0xec, 0xce, 0x11, 0x0f, 0x5a, 0x00, 0xb1, 0x40, 0x4d, 0x10, 0xa2, 0xff,
6528 0x59, 0xe3, 0xb6, 0x13, 0xe6, 0xde, 0x83, 0x66, 0xc6, 0x05, 0xa7, 0x4f,
6529 0x84, 0x89, 0xcd, 0xff, 0xd0, 0xfb, 0x61, 0x54, 0xa0, 0xac, 0x47, 0x79,
6530 0x9a, 0x4f, 0x18, 0x24, 0x09, 0xcb, 0xe6, 0x9e, 0x3b, 0x48, 0x3f, 0x3a,
6531 0x1a, 0xa3, 0xd0, 0x00, 0xaa, 0x3f, 0xef, 0xef, 0xef, 0xf6, 0xb7, 0x6a,
6532 0x4b, 0x3c, 0xad, 0x7a, 0xe5, 0xcd, 0x28, 0x3a, 0x24, 0x07, 0x30, 0x32,
6533 0x5f, 0x70, 0x69, 0x41, 0xf1, 0xa7, 0x53, 0x4e, 0x78, 0x86, 0xb7, 0x03,
6534 0x13, 0x5f, 0x47, 0x20, 0x57, 0x1d, 0x85, 0xeb, 0xf0, 0x85, 0xfa, 0x7c,
6535 0x38, 0xf9, 0xba, 0xad, 0x79, 0x0e, 0xd8, 0x7a, 0x29, 0x6a, 0xfa, 0x15,
6536 0xa9, 0x2f, 0xc9, 0x5d, 0xca, 0x66, 0xa8, 0x0e, 0x37, 0x02, 0x01, 0x90,
6537 0xc8, 0x11, 0x4d, 0x02, 0x86, 0xfc, 0x36, 0xc3, 0xe6, 0x70, 0x28, 0x42,
6538 0xe0, 0x05, 0x27, 0xa4, 0x5d, 0x98, 0x13, 0x67, 0x6c, 0xf4, 0x4d, 0x4e,
6539 0x0e, 0xe0, 0xc1, 0x64, 0x04, 0xf2, 0x3a, 0x8e, 0xe5, 0x0c, 0x68, 0x9d,
6540 0x1d, 0xed, 0x69, 0xd4, 0xbd, 0x52, 0x5c, 0x65, 0x0c, 0x09, 0x80, 0x64,
6541 0x9c, 0xe5, 0x63, 0xf2, 0x32, 0x7b, 0x6b, 0x3b, 0x30, 0xe1, 0xc0, 0x4e,
6542 0xc7, 0x19, 0x64, 0x1d, 0x83, 0xc3, 0xc0, 0x1a, 0xd9, 0x55, 0x75, 0xbd,
6543 0x61, 0x03, 0x5e, 0x6a, 0x7a, 0xc3, 0x44, 0xd8, 0x90, 0x69, 0xf2, 0x3f,
6544 0x65, 0x2b, 0x10, 0x5f, 0xfc, 0xb4, 0x28, 0x2b, 0xf2, 0x95, 0xcb, 0x49,
6545 0xcb, 0x6f, 0x02, 0x33, 0x9b, 0x25, 0xb3, 0xbc, 0xb8, 0xf7, 0x26, 0x72,
6546 0x3a, 0x61, 0x76, 0x94, 0x85, 0x4a, 0x4b, 0x16, 0xb2, 0x1a, 0x2f, 0x46,
6547 0x45, 0xbb, 0xec, 0xd6, 0xe2, 0x41, 0xa4, 0x9e, 0x18, 0xc3, 0xab, 0x49,
6548 0x0f, 0x0a, 0x01, 0x8a, 0x5c, 0x65, 0x5f, 0xfb, 0x50, 0x82, 0x7b, 0xd3,
6549 0xb8, 0xac, 0xe8, 0x68, 0x56, 0xb2, 0xd2, 0x83, 0x50, 0x4c, 0xf3, 0x6b,
6550 0xad, 0xcc, 0xff, 0xb2, 0xf0, 0xf0, 0x1f, 0x46, 0x2c, 0x57, 0xe4, 0x77,
6551 0x38, 0xc7, 0xf2, 0xe9, 0x0d, 0xbb, 0xf8, 0x7b, 0x3d, 0x09, 0x73, 0xf4,
6552 0xaa, 0xbc, 0xc6, 0xfc, 0xcf, 0xf6, 0xfa, 0xdb, 0x35, 0xe6, 0xcf, 0xee,
6553 0x31, 0x89, 0x25, 0x2c, 0xcb, 0xd0, 0x44, 0x2c, 0xad, 0x81, 0x98, 0x5e,
6554 0x2d, 0x0a, 0x52, 0x20, 0x25, 0xef, 0x45, 0xd3, 0x5d, 0x50, 0xe5, 0xb9,
6555 0xce, 0x29, 0x67, 0x04, 0x0e, 0xcc, 0x64, 0x3a, 0xe9, 0x06, 0xdc, 0x80,
6556 0x2a, 0xe8, 0x51, 0x38, 0xa3, 0xf9, 0x41, 0x43, 0x65, 0x89, 0x28, 0xa7,
6557 0xe8, 0xee, 0x8c, 0x30, 0x45, 0x22, 0x1a, 0x4d, 0xe3, 0x74, 0x26, 0xc6,
6558 0xaf, 0xd8, 0xd8, 0x7d, 0xcf, 0x6f, 0xc1, 0xc1, 0x10, 0xb2, 0xd7, 0x87,
6559 0x18, 0x8b, 0x29, 0x4a, 0x3c, 0x7d, 0xd9, 0x45, 0x22, 0x3a, 0x31, 0xbb,
6560 0x1f, 0xae, 0x93, 0xd1, 0x27, 0x15, 0xa2, 0xaa, 0x50, 0x36, 0x45, 0x23,
6561 0x66, 0xc3, 0x50, 0xc0, 0xa7, 0xba, 0x46, 0x3f, 0x74, 0x0e, 0xd6, 0x2d,
6562 0x46, 0x72, 0xc1, 0xca, 0x5b, 0x8c, 0x48, 0x2d, 0x46, 0x89, 0x0a, 0x67,
6563 0x72, 0x11, 0x47, 0x2a, 0x88, 0x41, 0xcf, 0x02, 0x5b, 0x6f, 0xdc, 0xab,
6564 0x8a, 0x74, 0x1e, 0x9c, 0x1d, 0xb9, 0x4e, 0xe4, 0x6c, 0x77, 0x75, 0xcf,
6565 0x52, 0x3c, 0x39, 0x14, 0x9e, 0xe1, 0x80, 0xcd, 0xa8, 0x41, 0xcd, 0xe6,
6566 0x3e, 0x20, 0xda, 0x76, 0xd1, 0x67, 0x05, 0xea, 0x80, 0x1e, 0xfb, 0xe3,
6567 0xdc, 0x1c, 0xad, 0x60, 0x9c, 0xa5, 0xa3, 0x2e, 0xfe, 0x36, 0x4e, 0xaf,
6568 0x12, 0xcc, 0x32, 0xc2, 0xf3, 0xb6, 0x9a, 0x82, 0xee, 0x13, 0xd8, 0x56,
6569 0xf0, 0x55, 0x72, 0x95, 0x57, 0xa8, 0x6b, 0x78, 0xdc, 0xc9, 0x0e, 0x45,
6570 0xc3, 0x13, 0xea, 0xd5, 0x72, 0xb5, 0xae, 0x94, 0x4d, 0x14, 0x78, 0xbc,
6571 0x58, 0xd8, 0xbc, 0x3d, 0xc8, 0xac, 0x6f, 0xae, 0x3a, 0x8c, 0x36, 0x22,
6572 0x43, 0x09, 0x15, 0x43, 0xd5, 0x4b, 0x55, 0x99, 0x47, 0x19, 0x84, 0x3a,
6573 0x70, 0x75, 0x9b, 0x8e, 0x12, 0x75, 0x87, 0x9a, 0x04, 0x84, 0x69, 0xea,
6574 0x1f, 0x39, 0x33, 0x14, 0x03, 0x78, 0x1f, 0xab, 0xdc, 0x18, 0xcf, 0xbb,
6575 0x4d, 0x51, 0x25, 0x3f, 0x9d, 0xc8, 0x19, 0x89, 0x9b, 0x9c, 0xcf, 0xa5,
6576 0xb8, 0x48, 0x29, 0x6c, 0x89, 0x71, 0x7e, 0xf5, 0xac, 0x84, 0xb6, 0x35,
6577 0xcf, 0x9b, 0x6e, 0x17, 0x23, 0xc5, 0x1a, 0x27, 0xb4, 0xa7, 0x27, 0xe4,
6578 0x5c, 0xf1, 0xe8, 0x44, 0xb2, 0xf3, 0x2a, 0xa1, 0x00, 0x2f, 0xeb, 0x43,
6579 0x0b, 0xd4, 0x34, 0x31, 0x27, 0x6c, 0xe5, 0x3d, 0x2f, 0xc4, 0xe6, 0xbb,
6580 0x61, 0xb9, 0x0f, 0xe6, 0xb7, 0xe3, 0x15, 0x77, 0x3e, 0xa5, 0xa6, 0xe9,
6581 0x48, 0x5d, 0xe5, 0x09, 0x11, 0x04, 0xcc, 0x15, 0xce, 0x9e, 0x8f, 0xf1,
6582 0x0a, 0x30, 0xd0, 0x12, 0x8f, 0x39, 0xd6, 0xd1, 0x5a, 0x43, 0xa7, 0xd8,
6583 0x86, 0xe6, 0x48, 0x24, 0x92, 0x25, 0x62, 0x92, 0xd9, 0x48, 0xb2, 0xa2,
6584 0x6c, 0x16, 0xb9, 0xc0, 0xe3, 0x84, 0x4f, 0x12, 0x30, 0x5f, 0x30, 0xf5,
6585 0x43, 0x72, 0xdb, 0x74, 0x1f, 0xc0, 0x36, 0x40, 0x1f, 0x9b, 0x66, 0x59,
6586 0x61, 0x4a, 0x83, 0xac, 0xa0, 0x88, 0x01, 0xba, 0x1c, 0x4d, 0xc3, 0xc6,
6587 0x70, 0xc8, 0x8b, 0x74, 0x46, 0x76, 0x59, 0x15, 0x64, 0x91, 0x3b, 0xe2,
6588 0xfc, 0x86, 0x3e, 0x69, 0x46, 0x7c, 0x4c, 0xd2, 0x1c, 0x27, 0xd3, 0xf8,
6589 0x0a, 0x39, 0x38, 0xbd, 0xca, 0x72, 0x4e, 0x68, 0x6b, 0xb2, 0x67, 0x0e,
6590 0xa7, 0x13, 0x79, 0x00, 0xd9, 0xd7, 0x54, 0x46, 0xeb, 0xc0, 0xb0, 0xd3,
6591 0x05, 0xa9, 0x30, 0xe7, 0xf0, 0x56, 0x83, 0xc1, 0x9b, 0x8d, 0x55, 0x57,
6592 0x93, 0xc9, 0xd4, 0xa3, 0x57, 0xe0, 0x70, 0x90, 0x92, 0x3a, 0x9a, 0x78,
6593 0x09, 0x2a, 0xed, 0x2b, 0x5a, 0xe0, 0x12, 0x51, 0x02, 0x0d, 0x2f, 0xe2,
6594 0x71, 0x97, 0x25, 0x3a, 0x50, 0x6c, 0x91, 0xf4, 0xe2, 0xaa, 0x26, 0xc1,
6595 0x6f, 0x4b, 0x30, 0x28, 0xaf, 0x6e, 0xf6, 0x40, 0x65, 0xe3, 0x7c, 0x8d,
6596 0x62, 0xfb, 0xfb, 0x03, 0xfd, 0x75, 0xe7, 0xfb, 0x03, 0x30, 0x75, 0x81,
6597 0x9f, 0xbf, 0x3f, 0xc0, 0xd7, 0x84, 0xcd, 0xf6, 0xe3, 0x8f, 0x3f, 0x7e,
6598 0xe1, 0x33, 0x74, 0x74, 0xf4, 0xed, 0x20, 0xfa, 0x66, 0x8f, 0xf2, 0x35,
6599 0x28, 0xa1, 0xaf, 0x29, 0xe3, 0x25, 0xdd, 0x43, 0x95, 0x0a, 0x8f, 0x30,
6600 0x64, 0x3e, 0xea, 0x53, 0x8d, 0xda, 0xc8, 0x76, 0x1b, 0x68, 0x75, 0x2c,
6601 0x84, 0x49, 0xf1, 0x97, 0xa8, 0xf3, 0xbd, 0xa8, 0x4e, 0x57, 0x39, 0x70,
6602 0xc2, 0xf5, 0xcc, 0x77, 0x27, 0x66, 0xbc, 0xb6, 0xe4, 0xe8, 0x5f, 0x54,
6603 0x57, 0x2c, 0xde, 0xeb, 0x93, 0x12, 0xd1, 0x1d, 0x9c, 0x0c, 0xbf, 0xf6,
6604 0x92, 0x99, 0x38, 0xca, 0x17, 0x58, 0x3f, 0x60, 0xbd, 0xc7, 0xf3, 0x6b,
6605 0xdc, 0x35, 0xf0, 0x50, 0x5f, 0x17, 0xa7, 0x83, 0xa5, 0xcc, 0x17, 0x05,
6606 0xa6, 0x08, 0x8d, 0xf2, 0xe9, 0x94, 0x53, 0x08, 0xa2, 0x75, 0x7e, 0x0c,
6607 0x2c, 0xce, 0x38, 0xd9, 0xe0, 0x59, 0x57, 0xf6, 0xe1, 0xa4, 0x01, 0xa5,
6608 0x4d, 0x46, 0xce, 0x67, 0x69, 0x55, 0x69, 0x72, 0x11, 0x5e, 0x0d, 0xec,
6609 0x41, 0x93, 0x09, 0xbe, 0x87, 0x2c, 0xdb, 0x23, 0x5f, 0x64, 0xb2, 0xc8,
6610 0x78, 0x62, 0xb8, 0x16, 0xcd, 0x93, 0x0e, 0xd7, 0x86, 0x28, 0x0f, 0x6a,
6611 0xe2, 0x34, 0x5f, 0x8c, 0xa3, 0x75, 0x19, 0xbc, 0x39, 0x7d, 0x7d, 0xa6,
6612 0xcc, 0x5f, 0x67, 0x1c, 0x12, 0xa1, 0x4b, 0xe7, 0xff, 0x90, 0xec, 0x33,
6613 0xac, 0xdb, 0x81, 0x5f, 0x0f, 0xe2, 0xd9, 0xcf, 0x07, 0x09, 0xa8, 0x54,
6614 0xbd, 0x9d, 0x83, 0xa4, 0xec, 0xa8, 0x44, 0xec, 0x7c, 0x4a, 0xee, 0x81,
6615 0x77, 0x81, 0x17, 0xaa, 0xce, 0x8a, 0x72, 0xd1, 0x11, 0x83, 0x56, 0x3e,
6616 0xbb, 0xda, 0xd0, 0xf3, 0xfd, 0xba, 0x29, 0x40, 0x37, 0x3c, 0x46, 0x17,
6617 0x42, 0x6d, 0x86, 0xbc, 0x71, 0x5f, 0xf1, 0x23, 0xea, 0x6c, 0x69, 0x5c,
6618 0x3d, 0x98, 0x73, 0xd2, 0x3c, 0xc6, 0x50, 0x4c, 0x61, 0x12, 0x4f, 0xdf,
6619 0xe8, 0x31, 0x78, 0xa5, 0xe6, 0x12, 0xf1, 0x49, 0xd8, 0xd0, 0x5e, 0x17,
6620 0xe4, 0xa5, 0x26, 0x12, 0x37, 0x87, 0xc3, 0x20, 0xbd, 0x09, 0xd6, 0xab,
6621 0x41, 0x9d, 0x92, 0xff, 0x00, 0xa5, 0x6c, 0x81, 0xe9, 0x5b, 0xe8, 0x4b,
6622 0x4c, 0x6e, 0xd2, 0x7c, 0x51, 0xc2, 0x28, 0xa0, 0x81, 0xe8, 0xd8, 0xc8,
6623 0x3c, 0x9e, 0xdb, 0xbd, 0xa2, 0x94, 0x73, 0x30, 0xe1, 0x31, 0x2b, 0x9a,
6624 0x72, 0x0a, 0xc2, 0xca, 0xde, 0x7a, 0xb9, 0xc0, 0x70, 0x41, 0x69, 0x94,
6625 0x0d, 0x3c, 0x69, 0x9a, 0xb3, 0x63, 0x7d, 0x84, 0x12, 0x30, 0x8c, 0xda,
6626 0xb1, 0xf1, 0x9b, 0x9e, 0xa7, 0x0b, 0xe2, 0xd9, 0x03, 0x4c, 0x54, 0xc2,
6627 0x78, 0xbe, 0x61, 0x82, 0xa7, 0x1c, 0xa8, 0x74, 0xa7, 0xcb, 0x1e, 0x60,
6628 0x79, 0x24, 0x45, 0xc5, 0x86, 0xa2, 0x67, 0x23, 0x5e, 0x9e, 0x0d, 0x42,
6629 0x5c, 0x52, 0x4f, 0xdc, 0xc4, 0xfb, 0x51, 0xe7, 0x8b, 0xf5, 0x9c, 0x83,
6630 0xab, 0x60, 0x99, 0x1c, 0x0f, 0x8e, 0x1b, 0x51, 0x98, 0x27, 0xc8, 0xaf,
6631 0x2c, 0x5a, 0xf9, 0x10, 0x45, 0x55, 0x0a, 0xcf, 0x01, 0x34, 0xcc, 0x4c,
6632 0x7a, 0xc9, 0xf1, 0x91, 0x3b, 0x2e, 0x25, 0x13, 0x35, 0x8f, 0x62, 0xe7,
6633 0xfb, 0xf5, 0x72, 0x83, 0x75, 0xa9, 0x21, 0x19, 0x51, 0x17, 0x27, 0x6f,
6634 0xc9, 0x53, 0x06, 0x87, 0x0a, 0x1c, 0xa1, 0x12, 0x10, 0xd1, 0xac, 0x18,
6635 0x0c, 0x62, 0xd7, 0xd2, 0xe4, 0xac, 0xc9, 0x49, 0xd9, 0xd8, 0xcc, 0xb3,
6636 0x34, 0x35, 0x4e, 0xfb, 0x4c, 0x29, 0x6f, 0xaa, 0xc9, 0xc1, 0xd5, 0xfd,
6637 0x5c, 0x92, 0xbd, 0x16, 0x65, 0xcd, 0x45, 0x6d, 0xbc, 0x56, 0x15, 0x79,
6638 0x1d, 0xd0, 0x87, 0xe6, 0x8c, 0xe9, 0x2d, 0x3d, 0x4d, 0x0b, 0xd5, 0xd1,
6639 0xab, 0x2c, 0xfd, 0x59, 0x6c, 0xef, 0x24, 0xbb, 0x49, 0x8b, 0x3c, 0x23,
6640 0xc9, 0x48, 0xc1, 0xfc, 0xa1, 0x58, 0x9e, 0xa0, 0x71, 0xaf, 0x1d, 0x7f,
6641 0x78, 0x7f, 0xf6, 0xf1, 0xf8, 0xe8, 0xe3, 0x57, 0x1f, 0xde, 0xbd, 0x3a,
6642 0x3b, 0x59, 0x6b, 0xa6, 0x48, 0x4c, 0x38, 0x3c, 0x85, 0xba, 0x7a, 0x89,
6643 0x9e, 0x18, 0x35, 0x54, 0x78, 0x64, 0x4e, 0x09, 0x22, 0xc7, 0x03, 0xa5,
6644 0xad, 0xd1, 0x6f, 0x24, 0x64, 0x85, 0xe0, 0x8d, 0xe1, 0x86, 0x0b, 0x34,
6645 0x51, 0xfb, 0x35, 0x2f, 0x81, 0xee, 0x41, 0xf1, 0x10, 0xea, 0x04, 0x83,
6646 0x82, 0xfe, 0x56, 0x92, 0x39, 0x1c, 0x6f, 0x94, 0x93, 0xc7, 0xb6, 0xa8,
6647 0x72, 0x58, 0x23, 0x21, 0x23, 0x05, 0xd6, 0x35, 0x2f, 0x3f, 0x82, 0xf9,
6648 0x04, 0x96, 0xbb, 0xb4, 0x46, 0xf8, 0x38, 0x5a, 0xc3, 0x91, 0x80, 0x7f,
6649 0x7b, 0x32, 0xc9, 0x51, 0x51, 0xad, 0x75, 0xa3, 0x24, 0xa5, 0x1d, 0xa7,
6650 0xe9, 0xc5, 0x28, 0xec, 0xc9, 0xf3, 0xef, 0xe5, 0x2c, 0x60, 0x2c, 0x3f,
6651 0x66, 0xbe, 0xee, 0x27, 0x77, 0x09, 0x6d, 0x69, 0xb9, 0xeb, 0x78, 0x51,
6652 0x90, 0x98, 0xf8, 0x16, 0xcc, 0x22, 0x3c, 0x91, 0x5e, 0x69, 0xf0, 0x5f,
6653 0x2f, 0x02, 0xb5, 0xb4, 0x79, 0x6e, 0xe4, 0x53, 0xd2, 0x11, 0xc8, 0x67,
6654 0x4b, 0xde, 0xf5, 0x8b, 0xa3, 0xcb, 0x37, 0x21, 0x3b, 0xde, 0x29, 0x83,
6655 0x11, 0x56, 0x24, 0x9f, 0x44, 0x59, 0xc9, 0x06, 0x79, 0x37, 0x18, 0x44,
6656 0x54, 0x54, 0x31, 0x4d, 0x87, 0x45, 0x8c, 0xcf, 0xc4, 0x8f, 0xf1, 0x53,
6657 0x60, 0xeb, 0xc6, 0x70, 0x17, 0x7f, 0x39, 0x1e, 0xfc, 0x61, 0x7b, 0x1b,
6658 0x1d, 0x18, 0x0b, 0xa0, 0xcb, 0x3a, 0xdc, 0x92, 0x95, 0xb0, 0x33, 0x67,
6659 0xfd, 0x32, 0xdf, 0x90, 0x8c, 0x2d, 0x36, 0x4c, 0xe2, 0x1b, 0xd0, 0xfa,
6660 0x89, 0x8f, 0x94, 0xa9, 0x5b, 0xf2, 0x38, 0x4c, 0xa5, 0x09, 0xc8, 0x0b,
6661 0xb0, 0x1b, 0xa6, 0xbe, 0x2f, 0x62, 0x3d, 0x3d, 0x1f, 0x30, 0x5b, 0xcd,
6662 0xe2, 0x11, 0xfc, 0x8a, 0x2e, 0xc9, 0x0d, 0x37, 0xef, 0x8c, 0x5f, 0x4b,
6663 0xdf, 0x6a, 0xc0, 0x76, 0x31, 0xe5, 0xda, 0x50, 0x99, 0x89, 0x2f, 0x15,
6664 0xb2, 0xe6, 0xe6, 0xb2, 0x49, 0x07, 0xc4, 0x0e, 0xc3, 0x78, 0xf4, 0xe9,
6665 0x36, 0x2e, 0xc6, 0x1c, 0x7b, 0x00, 0x8e, 0x19, 0xa6, 0xd3, 0xb4, 0xba,
6666 0x67, 0x3f, 0x5f, 0x53, 0x11, 0xe1, 0xa4, 0x61, 0x24, 0x20, 0xec, 0xa3,
6667 0xab, 0x34, 0x43, 0xc7, 0x08, 0x79, 0x37, 0xd2, 0xca, 0x75, 0xf1, 0x91,
6668 0xb1, 0x66, 0xf5, 0x74, 0xf3, 0xec, 0x80, 0x82, 0x4e, 0xfb, 0x88, 0xa6,
6669 0x69, 0x79, 0x57, 0xc5, 0xa0, 0x2b, 0xa4, 0x94, 0x7d, 0xa2, 0xf2, 0x1e,
6670 0xcc, 0x82, 0x59, 0xc8, 0x54, 0xa5, 0xd3, 0x3f, 0xfa, 0x4b, 0x72, 0x3f,
6671 0xba, 0x46, 0x71, 0x67, 0x24, 0x25, 0xfb, 0x3b, 0x13, 0x74, 0x6c, 0xb1,
6672 0x51, 0x9c, 0x6a, 0xb8, 0x2e, 0x91, 0x88, 0x2b, 0x1f, 0x51, 0xbe, 0x12,
6673 0xc7, 0xf7, 0xab, 0x3f, 0x00, 0x87, 0x58, 0x2b, 0x6b, 0x22, 0x99, 0x9e,
6674 0xe4, 0x2f, 0xe2, 0x00, 0x3e, 0xcf, 0xb2, 0x64, 0x2a, 0xcb, 0x77, 0xb9,
6675 0x6c, 0x01, 0xcc, 0xb5, 0x30, 0x65, 0x49, 0xcf, 0x6a, 0x0c, 0xf7, 0x9c,
6676 0xb3, 0xde, 0xe3, 0x4a, 0x0f, 0x3b, 0xad, 0xb3, 0x79, 0xde, 0x7f, 0xb6,
6677 0x65, 0xbe, 0xea, 0xb7, 0x3e, 0xc6, 0xdb, 0x4d, 0x85, 0x5d, 0xf4, 0xfa,
6678 0x9a, 0x73, 0xf8, 0x85, 0x16, 0x19, 0xd7, 0x58, 0x96, 0xf8, 0x4f, 0xc6,
6679 0x14, 0xa3, 0x10, 0x69, 0x63, 0x38, 0xd7, 0xda, 0xd7, 0x33, 0x4c, 0xde,
6680 0x63, 0x0d, 0xb4, 0xce, 0x1c, 0xdd, 0x36, 0x93, 0xa8, 0xc8, 0x61, 0xad,
6681 0x6b, 0xeb, 0xb9, 0xce, 0x5a, 0x4c, 0x73, 0x9b, 0x88, 0x34, 0x77, 0x08,
6682 0xb3, 0xf1, 0x44, 0x87, 0x5d, 0xab, 0xc3, 0x6d, 0x55, 0xad, 0x53, 0x4e,
6683 0xf1, 0xe3, 0x23, 0x32, 0xd3, 0x9e, 0xe0, 0x68, 0x1b, 0xc5, 0x7c, 0x28,
6684 0xa0, 0x5e, 0xf9, 0x09, 0xf5, 0x14, 0xa0, 0x27, 0x6d, 0xdc, 0xba, 0xae,
6685 0x40, 0x17, 0x1d, 0x82, 0x40, 0xfd, 0xe5, 0xaa, 0x82, 0x93, 0x52, 0xe5,
6686 0x9f, 0x9e, 0xb2, 0x2b, 0x6a, 0x2a, 0xc3, 0x5b, 0xd5, 0x0d, 0x70, 0x12,
6687 0x25, 0xb9, 0x8c, 0x86, 0x89, 0x9a, 0x67, 0x64, 0x02, 0x48, 0xfc, 0xcc,
6688 0x77, 0x8c, 0x50, 0xbe, 0x24, 0x07, 0x5a, 0x0e, 0x3a, 0xd1, 0x7a, 0xd2,
6689 0xbf, 0x82, 0xf1, 0x3a, 0x38, 0xce, 0xf6, 0x01, 0xfe, 0xdc, 0xa1, 0x9f,
6690 0xbb, 0x9d, 0x0d, 0xa9, 0xc4, 0x73, 0x99, 0x00, 0xf5, 0x8a, 0xe6, 0xa9,
6691 0xc8, 0xb9, 0x07, 0x56, 0xcd, 0xe8, 0x72, 0x64, 0xad, 0x4d, 0x04, 0xb2,
6692 0xe5, 0x7d, 0xc6, 0xeb, 0xed, 0x6b, 0x94, 0x4a, 0x86, 0x19, 0x3b, 0x85,
6693 0x6f, 0x12, 0xf6, 0x4a, 0xc3, 0x9b, 0x61, 0x56, 0x65, 0x32, 0x76, 0x82,
6694 0x26, 0xa3, 0x8f, 0x45, 0x72, 0x1d, 0x97, 0xd7, 0xd1, 0xa2, 0xe2, 0xed,
6695 0x00, 0x3b, 0xa8, 0x39, 0xdc, 0x7c, 0x9a, 0xda, 0x18, 0x88, 0x3c, 0xba,
6696 0xaf, 0x9e, 0x30, 0xbb, 0x8a, 0x1c, 0xf1, 0x9d, 0xe6, 0xb7, 0x7a, 0x4d,
6697 0x4f, 0xea, 0xe4, 0x42, 0x0a, 0x0a, 0xac, 0x26, 0x39, 0xaf, 0xf1, 0x32,
6698 0x37, 0xd9, 0x7c, 0x86, 0x0a, 0x33, 0x16, 0xf1, 0x81, 0xb0, 0x9d, 0x00,
6699 0xc5, 0xd0, 0xc7, 0x35, 0xa5, 0x75, 0x43, 0x07, 0xe3, 0x22, 0x90, 0x12,
6700 0x6a, 0x78, 0x35, 0x9d, 0x48, 0xc0, 0x4a, 0xfe, 0xa6, 0x93, 0x5d, 0xf4,
6701 0xc0, 0x92, 0x13, 0xd2, 0x9b, 0x4a, 0xe0, 0xc3, 0x9b, 0x4c, 0x45, 0xb5,
6702 0xd1, 0xb9, 0xe4, 0x65, 0x39, 0x48, 0xac, 0x3b, 0x4c, 0xfc, 0x27, 0x21,
6703 0x97, 0x2e, 0x47, 0x06, 0x7e, 0xfb, 0xed, 0x4a, 0xb3, 0xda, 0x24, 0x77,
6704 0xca, 0xa6, 0xdd, 0x08, 0xab, 0xee, 0x59, 0x22, 0xdc, 0x03, 0x7b, 0x16,
6705 0x2e, 0xe9, 0x61, 0x60, 0x6d, 0x51, 0x3e, 0x62, 0xcb, 0x3a, 0xa7, 0x11,
6706 0xdf, 0xa3, 0x11, 0x72, 0xc9, 0x5d, 0x72, 0xd7, 0xa3, 0xb9, 0x29, 0xee,
6707 0x1d, 0x3e, 0x3d, 0x76, 0x36, 0xfa, 0x80, 0x07, 0x7a, 0x2f, 0x3e, 0xec,
6708 0xf5, 0xf8, 0x53, 0xdc, 0x8f, 0xce, 0x8f, 0x07, 0x17, 0xf8, 0x88, 0x39,
6709 0xe6, 0x6b, 0x6d, 0x60, 0x32, 0x57, 0x63, 0xb8, 0xe4, 0xae, 0x4a, 0xb2,
6710 0xb2, 0x56, 0xd9, 0xda, 0xba, 0xea, 0x1a, 0xc6, 0xd5, 0x0c, 0xd4, 0x5a,
6711 0xa2, 0x15, 0x65, 0x7a, 0x51, 0xbd, 0x46, 0xc4, 0x3b, 0xdf, 0x7b, 0xd0,
6712 0x1c, 0xe8, 0x3f, 0xde, 0x30, 0xbe, 0xf4, 0xae, 0xb2, 0xa6, 0xc9, 0xd6,
6713 0x28, 0x17, 0x57, 0x68, 0xf5, 0x95, 0xea, 0x8a, 0x33, 0x4f, 0x00, 0x6a,
6714 0xf8, 0x3a, 0x94, 0xbc, 0xb6, 0x89, 0x2e, 0x81, 0x9d, 0x8a, 0x75, 0x57,
6715 0xa4, 0x3b, 0x66, 0xb9, 0x1d, 0x15, 0x33, 0xc9, 0xa8, 0x00, 0x35, 0xa5,
6716 0x1c, 0x07, 0x2e, 0x28, 0x08, 0x68, 0x47, 0xbc, 0x28, 0x6a, 0xaa, 0x4e,
6717 0xa4, 0xe8, 0xb4, 0xcd, 0x41, 0x3f, 0x62, 0xdd, 0xd5, 0xc4, 0x8a, 0x53,
6718 0x64, 0x24, 0xb4, 0x24, 0xd8, 0x3f, 0x80, 0xe3, 0x19, 0x71, 0xf4, 0x75,
6719 0xb6, 0xc0, 0x4c, 0x4f, 0x5f, 0x4d, 0x41, 0x6d, 0x13, 0xcf, 0x5f, 0x24,
6720 0xe0, 0xca, 0xbc, 0x6d, 0x19, 0x6e, 0x55, 0x0b, 0x35, 0x05, 0xc1, 0x32,
6721 0x9e, 0x2f, 0x86, 0x9f, 0x92, 0xfb, 0x9a, 0x4b, 0x63, 0x6f, 0xbb, 0xee,
6722 0xd2, 0xa0, 0x47, 0x80, 0x01, 0x96, 0x44, 0x87, 0xf8, 0xf3, 0xc1, 0xb3,
6723 0x88, 0xf3, 0xf1, 0xf0, 0x7a, 0xc9, 0x6a, 0xe1, 0x13, 0x43, 0x7c, 0xf2,
6724 0x51, 0xfd, 0x58, 0xf2, 0xb4, 0x07, 0xe2, 0xea, 0x3e, 0x4a, 0xfb, 0x6e,
6725 0xf4, 0x0a, 0x0b, 0xc9, 0x4f, 0xde, 0x7d, 0x4d, 0xac, 0x76, 0xb1, 0xbd,
6726 0x43, 0x59, 0x04, 0xc6, 0x7a, 0x1b, 0xd3, 0x43, 0xc2, 0xae, 0x3b, 0x5b,
6727 0x59, 0x85, 0xf3, 0xe0, 0xb4, 0x6a, 0x53, 0x51, 0x89, 0xab, 0x20, 0xf4,
6728 0x66, 0x29, 0x64, 0x3d, 0x24, 0xf8, 0xd8, 0x66, 0x70, 0x47, 0x42, 0xda,
6729 0xa4, 0x81, 0x34, 0xb4, 0x6b, 0xba, 0xdd, 0xea, 0x6b, 0x24, 0xca, 0x60,
6730 0x9e, 0x12, 0xb7, 0x65, 0xd2, 0x35, 0x4d, 0x46, 0x32, 0x04, 0x3f, 0x8d,
6731 0xca, 0xed, 0xed, 0x83, 0xe8, 0xc3, 0xfb, 0x53, 0x56, 0x75, 0xf1, 0x25,
6732 0x1b, 0x7e, 0x1c, 0x9c, 0xf9, 0xef, 0xae, 0xe8, 0x98, 0xa5, 0xc7, 0xd3,
6733 0x97, 0xff, 0xe6, 0xa3, 0x63, 0x25, 0x5e, 0x3b, 0xe9, 0xca, 0xbd, 0xf8,
6734 0x2f, 0xb0, 0x9b, 0xc4, 0x15, 0xe0, 0xb7, 0x5e, 0xfd, 0x2d, 0xed, 0x95,
6735 0xd1, 0xa1, 0xc3, 0x26, 0xdf, 0x1b, 0x6f, 0xcc, 0x8f, 0x61, 0xee, 0x13,
6736 0xf6, 0xb3, 0xe9, 0x7c, 0x01, 0x65, 0x88, 0xb9, 0xaf, 0xe9, 0x3e, 0x09,
6737 0x39, 0x8d, 0x6d, 0xb2, 0x34, 0xbd, 0x2a, 0x1d, 0xed, 0x8c, 0x5e, 0x40,
6738 0x18, 0x07, 0x28, 0x59, 0xe2, 0xcc, 0x28, 0xc5, 0x3d, 0xae, 0xca, 0xa3,
6739 0xa4, 0xf9, 0xa6, 0x78, 0x1a, 0xe5, 0x53, 0xf5, 0xbe, 0xb8, 0x0f, 0x76,
6740 0x9d, 0x27, 0x64, 0x53, 0xee, 0x88, 0x66, 0x83, 0xb2, 0x90, 0xc5, 0x3a,
6741 0x73, 0x5a, 0x93, 0xb3, 0x8d, 0x55, 0x47, 0xe9, 0x7b, 0x46, 0x21, 0xb2,
6742 0xb7, 0x51, 0x46, 0x17, 0xcd, 0x8c, 0x55, 0xf5, 0xbe, 0x26, 0x10, 0x44,
6743 0x2d, 0x06, 0x28, 0x26, 0x16, 0x19, 0x57, 0x97, 0x26, 0xa1, 0x2b, 0xd1,
6744 0x6a, 0x61, 0x12, 0x38, 0x4f, 0x8a, 0x54, 0x4c, 0x14, 0xde, 0x48, 0xcd,
6745 0xe1, 0x34, 0xb3, 0xae, 0x19, 0x48, 0x11, 0x66, 0x95, 0x72, 0x42, 0xf6,
6746 0x0e, 0x76, 0x1c, 0x7a, 0x74, 0xa2, 0xd0, 0x52, 0xa8, 0xaf, 0x9f, 0x85,
6747 0x48, 0x7a, 0x83, 0x84, 0x53, 0xde, 0x21, 0xe5, 0xcc, 0x5f, 0x50, 0xd0,
6748 0x67, 0xf0, 0xdf, 0x0c, 0xc3, 0x39, 0xff, 0x11, 0xe0, 0x46, 0x61, 0x2d,
6749 0xc3, 0x7d, 0x54, 0x3d, 0x25, 0x49, 0x07, 0xa4, 0xb4, 0x62, 0x5d, 0xaa,
6750 0xa0, 0x06, 0x4c, 0x83, 0x69, 0x01, 0x61, 0x8d, 0x53, 0x5d, 0x06, 0x8e,
6751 0x1f, 0x21, 0x32, 0xd1, 0x48, 0x3c, 0x26, 0xf2, 0x79, 0x20, 0x2e, 0x4b,
6752 0x79, 0x5c, 0x15, 0xe6, 0x4b, 0xb2, 0x3e, 0x80, 0x11, 0xc8, 0x74, 0xf4,
6753 0x89, 0x0b, 0xcc, 0x26, 0x4d, 0x7b, 0xd7, 0x54, 0x52, 0x72, 0x15, 0xb0,
6754 0x4f, 0x7e, 0x9c, 0x00, 0xc6, 0x46, 0x91, 0x1d, 0x51, 0x88, 0xc0, 0xea,
6755 0x9b, 0x18, 0x49, 0xd0, 0xc5, 0x05, 0xb3, 0xfd, 0xf8, 0xea, 0xf4, 0x7d,
6756 0xb4, 0x4e, 0x46, 0x7f, 0xd3, 0xc5, 0xa2, 0x62, 0x28, 0xda, 0x4c, 0xaa,
6757 0xd1, 0xe6, 0xfc, 0x53, 0xba, 0x99, 0x95, 0xe5, 0x78, 0xb8, 0x61, 0x73,
6758 0x52, 0x22, 0x75, 0x93, 0x84, 0x1c, 0x23, 0x4d, 0x5e, 0x73, 0x1c, 0x25,
6759 0x28, 0x01, 0x8d, 0x7f, 0x84, 0xa8, 0x44, 0x9c, 0x4c, 0x79, 0x11, 0xe8,
6760 0x9d, 0x24, 0x85, 0x1f, 0x83, 0x60, 0x18, 0x93, 0xd3, 0xec, 0xcc, 0xe6,
6761 0x3e, 0xe5, 0x72, 0x54, 0x71, 0x23, 0xb2, 0xfb, 0x50, 0x63, 0x09, 0x72,
6762 0x26, 0x5b, 0x8b, 0xa7, 0x8b, 0xd5, 0xaf, 0x31, 0xa1, 0x97, 0xc0, 0xb9,
6763 0x3f, 0x46, 0xef, 0x76, 0xa0, 0xf0, 0x21, 0xea, 0xf4, 0x37, 0x3b, 0xa6,
6764 0xda, 0x17, 0x48, 0xcc, 0x45, 0xed, 0x26, 0xdf, 0x04, 0x98, 0x6b, 0xb2,
6765 0x28, 0x8d, 0x73, 0x1e, 0x99, 0x58, 0x97, 0xab, 0x1f, 0xf0, 0x3b, 0xd5,
6766 0x96, 0xd3, 0x28, 0xda, 0x60, 0x10, 0xd1, 0xa6, 0x72, 0x9d, 0x45, 0x32,
6767 0x2b, 0x5a, 0xac, 0xce, 0x0f, 0x1d, 0xa7, 0x6a, 0xb4, 0xb6, 0x13, 0x2a,
6768 0x37, 0x9a, 0x2e, 0x07, 0x20, 0x28, 0x3d, 0x66, 0xf3, 0x8e, 0x93, 0x69,
6769 0x3a, 0x4b, 0xc9, 0xee, 0xd7, 0x78, 0xb6, 0x3c, 0xde, 0x13, 0x4a, 0x32,
6770 0x19, 0x7c, 0x5a, 0x37, 0x6a, 0x4e, 0x47, 0x4b, 0xb0, 0x61, 0xec, 0xce,
6771 0x0f, 0x34, 0x9d, 0xc6, 0x04, 0x02, 0xe6, 0xbe, 0x9d, 0x8e, 0xa9, 0xe1,
6772 0x5e, 0x92, 0xc3, 0x75, 0xfa, 0x80, 0xe5, 0x66, 0x7d, 0x71, 0xba, 0xd7,
6773 0x59, 0x98, 0x45, 0x72, 0x6e, 0x06, 0x4e, 0x54, 0xe5, 0x27, 0xf1, 0x1c,
6774 0xc5, 0x86, 0x25, 0xf1, 0x84, 0x5d, 0x47, 0x54, 0x8f, 0xe7, 0xfb, 0xdb,
6775 0x3b, 0x1b, 0x6a, 0xc6, 0x8a, 0x13, 0x99, 0x36, 0xbf, 0x57, 0xf6, 0x46,
6776 0x19, 0x48, 0xee, 0xce, 0x43, 0xbb, 0x41, 0x14, 0x3a, 0x3b, 0xf0, 0x38,
6777 0xc1, 0xf8, 0x16, 0x28, 0x4e, 0x91, 0x46, 0xd2, 0x60, 0x60, 0x98, 0xa5,
6778 0xc7, 0xf8, 0xf4, 0x15, 0xb3, 0x4c, 0x47, 0xce, 0xfd, 0x8e, 0xb5, 0x8d,
6779 0xb0, 0x2a, 0x02, 0x18, 0xa0, 0x12, 0xea, 0xb9, 0xf3, 0xa6, 0x75, 0x8c,
6780 0x5b, 0x7c, 0x90, 0xf8, 0x5e, 0x8c, 0x76, 0x42, 0xda, 0x55, 0x57, 0x1d,
6781 0x7b, 0x28, 0xe4, 0x84, 0x5a, 0x22, 0x76, 0x4d, 0xc2, 0x16, 0xe6, 0x58,
6782 0x36, 0xb5, 0x2d, 0x99, 0x51, 0x07, 0x4f, 0x90, 0x8c, 0xb4, 0x85, 0xd8,
6783 0x0e, 0x6a, 0xc8, 0xef, 0x2a, 0x02, 0xf5, 0x51, 0xfd, 0xe0, 0x0f, 0xf1,
6784 0x0d, 0xa8, 0x33, 0xe1, 0x21, 0xc3, 0xee, 0xcd, 0x55, 0xbd, 0x9b, 0x0f,
6785 0xba, 0x37, 0xeb, 0x92, 0x53, 0xd6, 0x07, 0xd7, 0x5e, 0xfc, 0xd5, 0xc3,
6786 0x44, 0x2a, 0x1b, 0x59, 0xd4, 0x9a, 0xe5, 0xf6, 0xce, 0x6f, 0xb8, 0x7d,
6787 0xd3, 0x3d, 0x7c, 0xd4, 0xd1, 0xcd, 0x2e, 0x47, 0xac, 0xd4, 0x41, 0x17,
6788 0xe3, 0x27, 0xf1, 0x30, 0xd2, 0xb1, 0x6c, 0x73, 0x29, 0xfd, 0x28, 0x85,
6789 0xae, 0xdf, 0x4e, 0x8f, 0x4a, 0x66, 0x49, 0x2b, 0x76, 0xb5, 0x61, 0x24,
6790 0x84, 0xf3, 0xb8, 0x7e, 0x2d, 0xa1, 0xbf, 0x25, 0x86, 0xf2, 0x58, 0xe1,
6791 0x67, 0xa4, 0x1f, 0x45, 0x2c, 0x02, 0xbe, 0xdc, 0xd5, 0xe4, 0x5f, 0xec,
6792 0x48, 0xbf, 0x56, 0x6f, 0xa7, 0xac, 0xe7, 0xb1, 0x77, 0x54, 0x97, 0x46,
6793 0x07, 0xb2, 0x1a, 0x1a, 0x45, 0x95, 0x91, 0x72, 0xbe, 0xc9, 0x58, 0x70,
6794 0xc1, 0x10, 0xc7, 0x4e, 0xea, 0x4b, 0x4b, 0x90, 0x46, 0xd1, 0xfa, 0x99,
6795 0x16, 0x3f, 0x5d, 0xbc, 0xfe, 0xce, 0x60, 0x09, 0x44, 0x41, 0x87, 0x0d,
6796 0xb9, 0x40, 0xff, 0x64, 0x12, 0xa1, 0xc0, 0x64, 0x43, 0x4d, 0x9e, 0x23,
6797 0x9e, 0xb1, 0x38, 0x28, 0x29, 0x21, 0x6c, 0xc3, 0x26, 0xeb, 0x23, 0xa9,
6798 0x3b, 0x87, 0xf4, 0x5d, 0x33, 0x7c, 0x2a, 0xc5, 0xed, 0x5f, 0xfc, 0xc0,
6799 0x5f, 0x73, 0xfa, 0xe7, 0x0f, 0x87, 0xd5, 0xf5, 0x62, 0x36, 0x84, 0xb5,
6800 0xcc, 0xaa, 0x2f, 0x3a, 0x9c, 0x6b, 0x34, 0x61, 0x6a, 0x22, 0x17, 0xb4,
6801 0xdb, 0xf5, 0x58, 0x64, 0xc3, 0x87, 0xab, 0xf1, 0x6b, 0xd7, 0xc8, 0xc6,
6802 0xf3, 0x53, 0x28, 0x07, 0x93, 0x39, 0x1f, 0x75, 0x38, 0x8a, 0xe2, 0xa9,
6803 0x78, 0x1f, 0x80, 0x3f, 0x7f, 0x78, 0xfb, 0xb7, 0x1f, 0x5e, 0xee, 0xee,
6804 0xc5, 0xcf, 0xe3, 0xd1, 0xb3, 0xc9, 0x8b, 0x78, 0x7f, 0xbc, 0xff, 0xfc,
6805 0xe5, 0xce, 0x8b, 0xfd, 0xf8, 0xf9, 0xde, 0x24, 0x7e, 0xb6, 0x9d, 0x6c,
6806 0xbf, 0x9c, 0xec, 0xec, 0x8e, 0xc7, 0x93, 0xe4, 0xc5, 0xf8, 0x79, 0xdc,
6807 0xe9, 0x93, 0x05, 0xa5, 0x73, 0xf7, 0x45, 0xad, 0x31, 0x95, 0xe0, 0x3d,
6808 0x06, 0x6f, 0x8e, 0x7a, 0xdb, 0xd1, 0x75, 0x72, 0xa7, 0x5b, 0xac, 0x9e,
6809 0x62, 0x86, 0xe0, 0x52, 0x98, 0xc9, 0xda, 0xfa, 0xb2, 0x0a, 0xea, 0x14,
6810 0xbd, 0xce, 0xd1, 0x35, 0x86, 0x23, 0x30, 0x0d, 0x95, 0xa8, 0x9c, 0x37,
6811 0x6e, 0x1d, 0xd7, 0x07, 0x91, 0x46, 0x8b, 0xf0, 0xbd, 0x9a, 0x9b, 0xff,
6812 0x0c, 0xfd, 0x3b, 0x6f, 0xe3, 0xd1, 0x35, 0x95, 0xd3, 0xeb, 0x95, 0x03,
6813 0xce, 0x44, 0xe8, 0x46, 0xf2, 0x0b, 0xd8, 0x47, 0xce, 0x18, 0x5f, 0x17,
6814 0xf9, 0x62, 0x7e, 0x91, 0x4f, 0xd3, 0xd1, 0xfd, 0xb2, 0xe1, 0xdc, 0xcb,
6815 0x6a, 0x5f, 0x9c, 0xb0, 0x00, 0x4f, 0xcb, 0x7f, 0x0b, 0x5b, 0x8d, 0x68,
6816 0x4d, 0x02, 0x81, 0xf5, 0x5b, 0xf8, 0x6f, 0x75, 0x6b, 0xcd, 0x0a, 0xfb,
6817 0x07, 0xcd, 0xb5, 0xde, 0x28, 0x9d, 0x5f, 0x63, 0xe2, 0xd3, 0x21, 0xe5,
6818 0xc8, 0x63, 0xbc, 0x91, 0x3f, 0x08, 0x9b, 0x69, 0x03, 0xd9, 0xeb, 0xa5,
6819 0x30, 0x8a, 0xde, 0x2d, 0x8a, 0x5c, 0xaa, 0x80, 0x47, 0xea, 0xf1, 0x94,
6820 0xc2, 0x8c, 0xd4, 0x73, 0x09, 0x63, 0x3a, 0x8d, 0xde, 0x2c, 0x69, 0x7d,
6821 0xaa, 0xc7, 0x33, 0x58, 0x88, 0x7e, 0xdb, 0xe7, 0x1a, 0xfb, 0xc5, 0x1c,
6822 0x4d, 0x16, 0xc2, 0x4e, 0xa3, 0xcf, 0x9b, 0x7b, 0x18, 0x27, 0x2f, 0xcc,
6823 0xc8, 0xb6, 0x0d, 0x2c, 0xd6, 0x87, 0xf7, 0x67, 0x07, 0x4d, 0x22, 0x19,
6824 0x42, 0x52, 0x1c, 0xb3, 0x4c, 0x36, 0xc7, 0xf9, 0xa8, 0xdc, 0x2c, 0xcb,
6825 0xa9, 0x12, 0x82, 0x50, 0x9e, 0x7e, 0x6f, 0x46, 0x10, 0xc2, 0x9c, 0x1c,
6826 0xbf, 0x7a, 0x73, 0xd2, 0x83, 0x9f, 0x83, 0xa3, 0xde, 0xd1, 0xc9, 0x60,
6827 0x67, 0xff, 0x59, 0xef, 0xf8, 0xf8, 0xed, 0x8b, 0x15, 0x99, 0xa1, 0x9a,
6828 0x96, 0x37, 0xdb, 0xfd, 0xdd, 0xda, 0xa2, 0xe7, 0x33, 0x92, 0xc8, 0xc9,
6829 0xb8, 0x57, 0x96, 0x5e, 0xe2, 0x2f, 0x56, 0xd8, 0x72, 0x06, 0xe0, 0x89,
6830 0x24, 0xb8, 0xd3, 0x19, 0xde, 0x4b, 0x33, 0x2a, 0x8a, 0xd5, 0x9b, 0xb5,
6831 0x92, 0x83, 0x13, 0x58, 0x4c, 0xd2, 0x6d, 0x37, 0x10, 0x11, 0x8c, 0xe5,
6832 0x2c, 0xfa, 0x93, 0xeb, 0x0c, 0x44, 0x4b, 0x21, 0x2f, 0x0c, 0x56, 0x03,
6833 0x61, 0xce, 0xac, 0x4c, 0xa9, 0xda, 0x8b, 0x44, 0xe5, 0x2a, 0x09, 0x76,
6834 0xce, 0xcd, 0xf5, 0xda, 0x80, 0x67, 0x0d, 0xef, 0x99, 0xb9, 0x2c, 0x9c,
6835 0x15, 0xa4, 0x8e, 0xda, 0x38, 0xb2, 0x57, 0x5a, 0xaf, 0xa5, 0x62, 0x49,
6836 0x18, 0x8b, 0xd0, 0x64, 0xbb, 0x95, 0xcb, 0x30, 0x0b, 0x58, 0x73, 0xae,
6837 0x47, 0xfc, 0x11, 0x98, 0x83, 0x1f, 0xe0, 0x02, 0x7e, 0xf4, 0xa3, 0x37,
6838 0x9c, 0x01, 0xd7, 0x54, 0x55, 0x04, 0x3e, 0xad, 0x35, 0x59, 0x9f, 0x6d,
6839 0x1c, 0x6b, 0xdc, 0x1a, 0xb6, 0x6e, 0x73, 0x0b, 0x2f, 0x32, 0x1b, 0xe6,
6840 0xf4, 0x0f, 0x2a, 0x05, 0x0d, 0xb1, 0x31, 0xdf, 0x22, 0x11, 0x0f, 0x5b,
6841 0x94, 0x14, 0x45, 0x5e, 0xf4, 0x03, 0xbc, 0x62, 0xb9, 0xa3, 0xe7, 0x9d,
6842 0x2c, 0xcb, 0xb9, 0x05, 0x6c, 0x25, 0xfc, 0x98, 0x72, 0x89, 0x9d, 0x85,
6843 0x7c, 0x32, 0xff, 0xac, 0x2a, 0x61, 0x6b, 0x8c, 0xe7, 0xb0, 0xcb, 0x5f,
6844 0x24, 0x4d, 0x73, 0x92, 0x5e, 0x85, 0x93, 0x84, 0xb4, 0x46, 0x02, 0xb5,
6845 0x88, 0x0a, 0xcb, 0xbc, 0x14, 0xf7, 0x31, 0xa7, 0x1a, 0x69, 0x49, 0xa9,
6846 0x95, 0x44, 0x3f, 0xce, 0xad, 0xae, 0xe1, 0x5d, 0x7a, 0x92, 0x2f, 0x4b,
6847 0xdc, 0xcb, 0x31, 0x27, 0xdd, 0x24, 0x6a, 0xe2, 0xf0, 0xe2, 0x01, 0x73,
6848 0x8a, 0x13, 0x08, 0x05, 0x26, 0x65, 0x0b, 0xb7, 0xe9, 0x34, 0xc0, 0x88,
6849 0x96, 0x35, 0x1f, 0x42, 0x00, 0x76, 0x4d, 0xa2, 0x68, 0xa5, 0xa2, 0xb2,
6850 0x4d, 0x4a, 0x80, 0x8a, 0x31, 0x95, 0x40, 0x86, 0x94, 0xc4, 0xdc, 0xc9,
6851 0x34, 0xc1, 0x01, 0x7d, 0xf5, 0xa9, 0x32, 0x15, 0x2f, 0x8a, 0x43, 0x44,
6852 0xaa, 0x25, 0x9c, 0x38, 0xa0, 0x3f, 0x61, 0x89, 0x1e, 0x62, 0x66, 0x4e,
6853 0x73, 0xab, 0xac, 0x0b, 0x66, 0x03, 0xe6, 0xad, 0xf6, 0x3d, 0x15, 0x80,
6854 0x4b, 0xb7, 0xd9, 0x7f, 0xc5, 0x98, 0x59, 0xec, 0xb7, 0xe1, 0xcf, 0x68,
6855 0x63, 0x0d, 0x35, 0xd1, 0xc7, 0x9e, 0x5f, 0xb8, 0x7c, 0x21, 0xef, 0xa2,
6856 0x14, 0x31, 0x32, 0x84, 0x59, 0x4a, 0x00, 0x7d, 0x02, 0xe7, 0xc6, 0x35,
6857 0x99, 0x1a, 0x14, 0x2b, 0x73, 0x29, 0xb9, 0xc1, 0x89, 0xe2, 0x3c, 0x79,
6858 0x8e, 0xcd, 0x3d, 0x63, 0xa0, 0xda, 0x6a, 0x76, 0x6d, 0x5c, 0xda, 0xd2,
6859 0xc6, 0xd2, 0x4f, 0xb9, 0xb0, 0xc4, 0x0c, 0x39, 0x41, 0xbc, 0x32, 0x51,
6860 0x9a, 0x48, 0x91, 0xe8, 0x13, 0xb2, 0xbc, 0x39, 0x29, 0x9d, 0x47, 0xcf,
6861 0x77, 0x07, 0x9a, 0x62, 0x48, 0x67, 0x02, 0x5a, 0x14, 0x69, 0x56, 0xb9,
6862 0x45, 0xb2, 0x24, 0x91, 0xbd, 0xc4, 0xf1, 0x59, 0xd8, 0x65, 0x24, 0xbf,
6863 0x95, 0xe0, 0x0b, 0xd0, 0xd4, 0x0f, 0x70, 0x4e, 0x9f, 0x6f, 0x84, 0x62,
6864 0x3a, 0x76, 0x24, 0xe5, 0x28, 0xc4, 0x2c, 0x9a, 0xe6, 0xa5, 0x86, 0x6e,
6865 0x51, 0xed, 0x66, 0x44, 0xbd, 0x3e, 0x63, 0x1f, 0xe0, 0x07, 0xbc, 0x34,
6866 0x8d, 0xe1, 0xf8, 0xaa, 0xae, 0x4c, 0x71, 0x62, 0x14, 0x57, 0x75, 0x7b,
6867 0x58, 0x18, 0x40, 0x14, 0xa1, 0xc6, 0x31, 0x71, 0x10, 0xfd, 0xf0, 0x43,
6868 0x37, 0xfa, 0xa1, 0xd3, 0x9c, 0xdd, 0x0f, 0x20, 0xc5, 0x7e, 0x00, 0x5e,
6869 0xfc, 0x81, 0xeb, 0xba, 0x7f, 0xb8, 0x41, 0x8f, 0x02, 0x06, 0x27, 0xca,
6870 0x29, 0x06, 0x9e, 0xd9, 0x66, 0xab, 0x7b, 0x76, 0x19, 0xed, 0x90, 0x33,
6871 0xd3, 0x3d, 0x6f, 0x03, 0x46, 0x5a, 0xdb, 0x29, 0xca, 0x75, 0x2e, 0xb8,
6872 0x82, 0x8b, 0x59, 0x16, 0x89, 0xe9, 0xcb, 0xec, 0x4a, 0x92, 0x80, 0xa4,
6873 0xeb, 0xda, 0x1f, 0xd6, 0x2c, 0x6b, 0x75, 0x03, 0x9e, 0xc6, 0x22, 0x61,
6874 0x5d, 0x8f, 0x34, 0x96, 0xd4, 0xd1, 0x56, 0x14, 0x29, 0x90, 0x3c, 0x19,
6875 0x9c, 0x04, 0xe2, 0x9f, 0xc9, 0xe7, 0x18, 0x27, 0xe3, 0x5a, 0xfa, 0xdc,
6876 0x7a, 0x29, 0x10, 0x52, 0x60, 0x7e, 0x7d, 0x5f, 0xe2, 0x61, 0x25, 0x73,
6877 0xf1, 0x76, 0x53, 0x6b, 0xc1, 0x98, 0x6e, 0x79, 0xb2, 0xe7, 0xab, 0xdc,
6878 0x8a, 0x50, 0x98, 0xc8, 0x5a, 0x6f, 0xcd, 0xc4, 0xd3, 0x25, 0x3e, 0x40,
6879 0x82, 0xb2, 0xad, 0x6e, 0xcd, 0x56, 0x75, 0x78, 0x8f, 0x23, 0xb7, 0xb6,
6880 0x40, 0xb9, 0xa1, 0x21, 0xe7, 0x54, 0x92, 0x58, 0x24, 0x4b, 0x44, 0xbd,
6881 0xf0, 0xa7, 0xde, 0x0d, 0xf8, 0x30, 0xa5, 0xd8, 0xde, 0xdc, 0x9b, 0x56,
6882 0x4e, 0x48, 0xb7, 0xd7, 0x23, 0x60, 0xe1, 0x39, 0x83, 0x01, 0x33, 0x30,
6883 0x03, 0x59, 0xb4, 0x88, 0x2f, 0x5b, 0x62, 0x98, 0xd1, 0x93, 0xbd, 0x0a,
6884 0x3a, 0x5b, 0x19, 0x54, 0x5c, 0xdc, 0xef, 0x88, 0x4d, 0x7b, 0x9b, 0x09,
6885 0x7a, 0xe8, 0x20, 0x27, 0xef, 0xe3, 0x88, 0xf2, 0xb2, 0x28, 0x03, 0x50,
6886 0xea, 0xf0, 0x7d, 0xe7, 0x02, 0x9e, 0xed, 0x9e, 0xfe, 0x8b, 0x73, 0xfa,
6887 0x9c, 0xb1, 0x15, 0x3d, 0x2d, 0xb8, 0xe3, 0x29, 0xcb, 0x7f, 0x80, 0xb7,
6888 0xe8, 0xe9, 0x19, 0x1a, 0x89, 0x59, 0xd2, 0xf3, 0xaf, 0xaa, 0xcc, 0xc1,
6889 0x2e, 0x3c, 0xd3, 0xbc, 0x44, 0x1e, 0xeb, 0x9c, 0xad, 0x9d, 0xe6, 0x25,
6890 0x82, 0x2c, 0x00, 0x57, 0xe1, 0xa4, 0x50, 0x62, 0x09, 0xe0, 0x6a, 0xe4,
6891 0xa7, 0x84, 0xf5, 0xe2, 0x2b, 0x74, 0x47, 0x7c, 0x8e, 0x60, 0x3f, 0x58,
6892 0xac, 0x83, 0x7f, 0x6d, 0x6e, 0xf7, 0xb7, 0x42, 0x6f, 0x80, 0x84, 0x17,
6893 0x5c, 0x13, 0x09, 0xf9, 0x20, 0x65, 0xab, 0x3c, 0x7f, 0x78, 0x8e, 0x4c,
6894 0x16, 0x38, 0xfa, 0xe6, 0xf0, 0x84, 0xf0, 0x6c, 0x7a, 0xe7, 0xcd, 0x4f,
6895 0xc8, 0x4d, 0x00, 0x4f, 0xf9, 0xdc, 0x20, 0x58, 0x66, 0x39, 0x01, 0xa3,
6896 0x80, 0xa6, 0x32, 0x9d, 0xd6, 0xb0, 0x70, 0x3b, 0x2d, 0xf4, 0xce, 0xa8,
6897 0x42, 0x26, 0x69, 0x92, 0xbd, 0x09, 0xf0, 0x62, 0x32, 0xec, 0x90, 0xf8,
6898 0x99, 0x04, 0xcd, 0x81, 0x39, 0xd6, 0x25, 0x15, 0x1c, 0xb3, 0xb1, 0x19,
6899 0x9c, 0x40, 0x34, 0xbb, 0x0d, 0x2e, 0x86, 0x63, 0x2c, 0xa6, 0xb8, 0x2d,
6900 0x5c, 0xe0, 0x30, 0xbd, 0x4d, 0x86, 0x4d, 0x29, 0x44, 0x45, 0xda, 0x45,
6901 0x17, 0x81, 0x5c, 0x33, 0x0e, 0xb4, 0x99, 0x7d, 0x1a, 0x88, 0x02, 0x27,
6902 0x82, 0x2d, 0x62, 0x52, 0x4b, 0x9c, 0x71, 0x61, 0x42, 0x34, 0x15, 0xcd,
6903 0x58, 0x4c, 0xb3, 0xa6, 0x38, 0xf6, 0x92, 0x74, 0x08, 0x6e, 0x59, 0xeb,
6904 0xbc, 0xc9, 0x9a, 0xf0, 0x98, 0x7b, 0x7b, 0x23, 0xea, 0xfc, 0x3f, 0x94,
6905 0xef, 0xfb, 0xe6, 0xfc, 0xed, 0xc9, 0x66, 0x1f, 0x89, 0x53, 0x8c, 0x3c,
6906 0xa6, 0xd8, 0xc1, 0xcb, 0xbe, 0x7b, 0xf5, 0xf5, 0xc7, 0xe3, 0xf3, 0x77,
6907 0xaf, 0x4f, 0xbf, 0xae, 0x5f, 0x1c, 0xad, 0xbb, 0xb5, 0x01, 0xbb, 0xfd,
6908 0xad, 0x8d, 0xe6, 0xed, 0xbb, 0x78, 0xfb, 0xd2, 0x07, 0xec, 0x6d, 0x68,
6909 0xba, 0xdc, 0x41, 0xd4, 0xf9, 0xe3, 0x87, 0xc1, 0xc9, 0xfb, 0x8b, 0xf7,
6910 0xe7, 0x88, 0x18, 0xf7, 0xc7, 0x1f, 0xda, 0x6e, 0xd9, 0xaf, 0xdd, 0x72,
6911 0x74, 0x71, 0xf1, 0xea, 0xe8, 0xf2, 0xa8, 0xfd, 0xf2, 0x67, 0xed, 0x4f,
6912 0x38, 0x9a, 0x23, 0x5a, 0x1f, 0x27, 0x3f, 0xbc, 0x02, 0x9e, 0x6b, 0x1d,
6913 0xe3, 0xf9, 0x06, 0xc8, 0xc3, 0xac, 0x67, 0xc6, 0x41, 0x03, 0xfe, 0x2a,
6914 0xa9, 0xe6, 0xb7, 0x8b, 0x74, 0xcc, 0xb5, 0x9e, 0x62, 0x07, 0x5c, 0xe7,
6915 0x9a, 0x14, 0x8c, 0xee, 0xc8, 0xe6, 0x30, 0x2f, 0x36, 0xf0, 0x44, 0x88,
6916 0x74, 0x3e, 0x5d, 0x49, 0x09, 0xc2, 0xbb, 0x09, 0x5a, 0x50, 0x1e, 0x2f,
6917 0xeb, 0xae, 0xb5, 0x25, 0x7c, 0xc4, 0x06, 0x92, 0x05, 0x19, 0xaa, 0x6b,
6918 0x8c, 0xa0, 0x2d, 0x37, 0x0c, 0xa9, 0xe8, 0xf0, 0x6c, 0x6e, 0x4f, 0x15,
6919 0xcd, 0x54, 0x96, 0x6a, 0x41, 0x3a, 0x16, 0x92, 0x3b, 0x6f, 0xb8, 0xd1,
6920 0xa2, 0xd2, 0x1d, 0x40, 0x2c, 0x34, 0x0e, 0x9c, 0x66, 0x91, 0xc5, 0xd0,
6921 0x43, 0xad, 0x49, 0xcf, 0x21, 0x3e, 0xff, 0x95, 0x4d, 0xf1, 0x78, 0x53,
6922 0xa7, 0xd6, 0x81, 0x79, 0x29, 0x5f, 0x1f, 0xff, 0xc8, 0xdf, 0x74, 0x15,
6923 0x8c, 0xa4, 0xb0, 0x12, 0x1d, 0x43, 0xbd, 0x94, 0x99, 0x77, 0x4e, 0xb9,
6924 0xcf, 0x9a, 0xe4, 0xcd, 0xa8, 0x48, 0x2d, 0x89, 0xa2, 0xee, 0x2e, 0x91,
6925 0xa1, 0xc9, 0x25, 0xdb, 0x92, 0xd1, 0xa2, 0x8a, 0xae, 0xab, 0x4d, 0x9a,
6926 0x1a, 0x01, 0x72, 0x53, 0xe0, 0xca, 0x52, 0x95, 0xa3, 0x0b, 0x4b, 0x0a,
6927 0xfb, 0x32, 0x70, 0x92, 0xae, 0x9e, 0xca, 0xe2, 0x9c, 0xf4, 0x2b, 0xa7,
6928 0x54, 0xfe, 0xbd, 0x6b, 0x05, 0x56, 0xdd, 0xfc, 0x96, 0x22, 0x66, 0x98,
6929 0x3d, 0xaa, 0xde, 0x87, 0x13, 0x81, 0xf0, 0x8f, 0xa7, 0x02, 0x61, 0xe4,
6930 0xf9, 0xaa, 0xde, 0xc6, 0x77, 0xe9, 0x6c, 0x31, 0xa3, 0x17, 0x46, 0x7e,
6931 0x91, 0xcb, 0xe4, 0xe0, 0x27, 0xa4, 0x18, 0xce, 0xe4, 0xa3, 0x89, 0xaf,
6932 0x95, 0x91, 0xe3, 0xb1, 0x0a, 0x38, 0xfd, 0x2b, 0xd0, 0x3c, 0xfa, 0x96,
6933 0xc4, 0x82, 0x28, 0x31, 0x4b, 0xab, 0xb2, 0xe1, 0xed, 0x02, 0xfd, 0x27,
6934 0xc6, 0x7c, 0x28, 0x78, 0x1d, 0xcd, 0x6d, 0x74, 0x31, 0x5f, 0x6b, 0xd0,
6935 0xaf, 0x36, 0x0a, 0xac, 0x45, 0x06, 0x49, 0x91, 0xe6, 0x63, 0x13, 0xaf,
6936 0xd7, 0x4a, 0xbf, 0xa8, 0xc7, 0x61, 0x98, 0x4a, 0x9c, 0xfe, 0x16, 0xcb,
6937 0xdf, 0x38, 0xd7, 0xb1, 0x7c, 0x32, 0x1a, 0x50, 0xa5, 0xad, 0xd6, 0x0d,
6938 0x3c, 0xef, 0xef, 0xee, 0x20, 0x36, 0xa1, 0xeb, 0xb5, 0x12, 0x84, 0x5c,
6939 0x74, 0x23, 0xa4, 0x33, 0x05, 0x82, 0x29, 0xfb, 0xff, 0x1a, 0x57, 0x57,
6940 0xb9, 0x84, 0x67, 0x6a, 0xcb, 0xbb, 0xb3, 0x15, 0x64, 0x9b, 0xc7, 0xdd,
6941 0xbc, 0xdb, 0xdf, 0xde, 0x5b, 0x8d, 0xeb, 0xa8, 0x68, 0x69, 0x16, 0xdf,
6942 0xd1, 0x10, 0x41, 0xb6, 0xcb, 0xa3, 0xc3, 0x37, 0xe7, 0x83, 0xcb, 0xed,
6943 0x83, 0x8b, 0xf3, 0xf7, 0xf0, 0x13, 0x7f, 0xdf, 0xa1, 0xdf, 0x77, 0xbe,
6944 0x68, 0x0e, 0xfb, 0x5a, 0x6a, 0x31, 0xb4, 0xfc, 0x9c, 0x74, 0x4c, 0xda,
6945 0xfa, 0x02, 0x2d, 0xeb, 0x0c, 0x84, 0xc6, 0x51, 0x5a, 0x74, 0x0d, 0xeb,
6946 0x05, 0xf8, 0xce, 0x79, 0x94, 0xa6, 0x6b, 0xab, 0xc3, 0xcd, 0x4d, 0x09,
6947 0x4f, 0x2b, 0xd5, 0x61, 0x05, 0xb2, 0x49, 0x11, 0xa1, 0x9a, 0x0e, 0x21,
6948 0xc6, 0xde, 0x91, 0x82, 0x73, 0x76, 0xab, 0xc0, 0x59, 0x8e, 0xb9, 0xbd,
6949 0xf5, 0xaf, 0x46, 0x53, 0x30, 0xb1, 0x12, 0x4c, 0xbe, 0x1b, 0x27, 0x1c,
6950 0x32, 0xc5, 0x4f, 0x42, 0xd6, 0x21, 0x68, 0x29, 0x52, 0x38, 0xeb, 0xa5,
6951 0xaa, 0xd3, 0x36, 0xd1, 0x28, 0x2d, 0xcc, 0x26, 0x26, 0x38, 0x45, 0x21,
6952 0x47, 0x96, 0x78, 0x45, 0x6c, 0x5c, 0x52, 0xef, 0x7a, 0x8e, 0x09, 0x8b,
6953 0x93, 0xe0, 0xa1, 0xde, 0x9d, 0x5f, 0x46, 0xf1, 0x64, 0xa2, 0x38, 0x56,
6954 0x58, 0x39, 0x87, 0x02, 0x7a, 0x53, 0xb0, 0x5d, 0xe3, 0x2a, 0xac, 0x7e,
6955 0x90, 0xd0, 0xbc, 0x3c, 0x1b, 0x6c, 0xa2, 0xdb, 0x98, 0x93, 0x98, 0x07,
6956 0xef, 0x4e, 0xbb, 0xb5, 0xf0, 0x93, 0x9b, 0x2b, 0xb8, 0x81, 0xe6, 0xa7,
6957 0x40, 0xd7, 0x37, 0x69, 0xe7, 0x1c, 0xaa, 0x16, 0xa6, 0x16, 0x93, 0xa2,
6958 0x69, 0x49, 0x3b, 0xa2, 0xdf, 0x77, 0x68, 0x69, 0x3b, 0x91, 0xe0, 0x20,
6959 0xb1, 0x73, 0x62, 0x36, 0xaf, 0xee, 0x7d, 0x24, 0x16, 0xf2, 0x95, 0x21,
6960 0x92, 0x1f, 0x9e, 0x0f, 0x1d, 0xb4, 0x0d, 0xf1, 0xb5, 0xe8, 0x95, 0x3a,
6961 0x7d, 0x1e, 0x76, 0xa7, 0x43, 0xa3, 0xd2, 0xa0, 0xf0, 0x3b, 0x8e, 0x49,
6962 0x4c, 0x3b, 0x4c, 0x42, 0x85, 0x62, 0xfc, 0x20, 0x67, 0xf0, 0xc8, 0x0c,
6963 0x0f, 0x13, 0xc3, 0xc3, 0x5d, 0xcb, 0x11, 0x89, 0x3b, 0xd6, 0x08, 0x1f,
6964 0x38, 0xbd, 0xc2, 0x7c, 0x1f, 0x2f, 0x5f, 0xce, 0x4c, 0xa4, 0xc9, 0xe1,
6965 0x47, 0xa0, 0xd4, 0xc2, 0xb7, 0x1d, 0xc7, 0x9f, 0x53, 0x79, 0xa5, 0x5e,
6966 0x54, 0x80, 0x50, 0xa8, 0x15, 0xa9, 0xd3, 0x41, 0xa1, 0x58, 0x05, 0x0c,
6967 0x28, 0xc1, 0x79, 0x98, 0xc5, 0xa8, 0xa2, 0xdb, 0xa0, 0xae, 0xd6, 0x9d,
6968 0xeb, 0x5e, 0x22, 0x98, 0xf1, 0xd3, 0x4a, 0x4f, 0x36, 0x0e, 0x03, 0x37,
6969 0x87, 0xe3, 0xe6, 0x18, 0x78, 0x30, 0x48, 0x61, 0x62, 0x67, 0x7b, 0xe7,
6970 0x79, 0x7f, 0x0b, 0xfe, 0x0f, 0x16, 0x45, 0x9c, 0x45, 0x84, 0xc6, 0x6f,
6971 0x31, 0xd7, 0xcd, 0x95, 0x0e, 0x32, 0x94, 0x0b, 0x10, 0xd5, 0xcf, 0x8b,
6972 0xab, 0x4e, 0xf8, 0xb4, 0x95, 0x37, 0xae, 0x9d, 0xb5, 0xb8, 0x90, 0xe6,
6973 0x9c, 0x8d, 0xc7, 0xf2, 0x89, 0xee, 0xf1, 0x62, 0xf1, 0xb4, 0x53, 0x55,
6974 0x25, 0x91, 0x23, 0xd2, 0x0e, 0xf6, 0xf6, 0x76, 0x0f, 0xf4, 0x6f, 0xd8,
6975 0x4f, 0x07, 0x2f, 0xe0, 0x83, 0x5f, 0x82, 0x16, 0xf2, 0x06, 0x25, 0x21,
6976 0x17, 0x53, 0xd7, 0x93, 0x49, 0x5f, 0xd6, 0xdc, 0xe1, 0xcd, 0x32, 0xf4,
6977 0xe8, 0x30, 0x9f, 0x4c, 0xca, 0xa4, 0x6a, 0x9e, 0xc1, 0xc7, 0x72, 0xc9,
6978 0xe6, 0x7b, 0xee, 0x5e, 0xc3, 0x98, 0x6c, 0x5c, 0x82, 0x1a, 0xd5, 0x71,
6979 0xd6, 0x23, 0x49, 0x12, 0x66, 0x21, 0xc9, 0xc3, 0xf5, 0x03, 0x29, 0xa1,
6980 0xee, 0xf7, 0x9a, 0x57, 0x06, 0x2f, 0x8a, 0xb2, 0x53, 0x60, 0x10, 0x29,
6981 0xac, 0xc4, 0x08, 0x87, 0x72, 0xd8, 0x37, 0xdb, 0x6c, 0xe8, 0x06, 0xfc,
6982 0x94, 0xce, 0xe7, 0x68, 0x2e, 0x71, 0xcb, 0x0a, 0x8b, 0xbe, 0x8a, 0x63,
6983 0x52, 0x16, 0x08, 0x03, 0x2d, 0x4b, 0x32, 0x37, 0xd5, 0x7c, 0xf3, 0xa4,
6984 0x87, 0xc9, 0xc4, 0x0f, 0x21, 0x73, 0x66, 0x8d, 0x0b, 0xf8, 0x28, 0x58,
6985 0x75, 0x63, 0x04, 0x77, 0xcc, 0x62, 0x16, 0x68, 0xa7, 0x13, 0x07, 0x11,
6986 0x4d, 0xb0, 0x33, 0xba, 0x21, 0x37, 0x86, 0x05, 0x24, 0x30, 0xae, 0xd7,
6987 0xc1, 0xe9, 0xff, 0x3a, 0xb1, 0xa8, 0xf2, 0x06, 0xb6, 0x9d, 0xcb, 0x34,
6988 0x43, 0xd5, 0xb4, 0xb0, 0xe7, 0x7b, 0xc7, 0xb0, 0x5e, 0x14, 0xba, 0x76,
6989 0x72, 0xd4, 0xf2, 0x46, 0x50, 0x81, 0xb4, 0xfc, 0x9c, 0x11, 0xa6, 0x8b,
6990 0x64, 0x93, 0x70, 0xb1, 0x72, 0xdf, 0x5d, 0x84, 0x4b, 0x58, 0xab, 0xfd,
6991 0xc7, 0xbd, 0x58, 0x09, 0x40, 0x84, 0x5b, 0x2b, 0x29, 0x76, 0xfc, 0x66,
6992 0x9a, 0xa1, 0x35, 0xcf, 0x7a, 0xa4, 0x57, 0x4a, 0xa8, 0x38, 0x32, 0x8c,
6993 0x05, 0xb8, 0xa8, 0xfe, 0x55, 0x91, 0xd7, 0x36, 0x2d, 0xe4, 0x18, 0xb4,
6994 0xac, 0x47, 0x6b, 0x1d, 0xc7, 0xd1, 0xde, 0xd6, 0xd6, 0x6a, 0x3b, 0xcd,
6995 0x62, 0x39, 0x38, 0x3b, 0x69, 0xc4, 0x3b, 0x09, 0x9b, 0x3f, 0xf5, 0x7e,
6996 0x8a, 0x0b, 0x8e, 0x16, 0xb4, 0x42, 0x4f, 0x6d, 0x38, 0xce, 0xb2, 0x5c,
6997 0xa2, 0xaf, 0xc4, 0x90, 0x26, 0xbb, 0x44, 0xd7, 0x97, 0x3d, 0x73, 0x31,
6998 0xe9, 0x90, 0xd4, 0x59, 0xaa, 0x29, 0xd6, 0x3c, 0x94, 0x28, 0x03, 0x78,
6999 0xd2, 0xc7, 0xc0, 0xba, 0x01, 0xee, 0xa7, 0x64, 0x7b, 0x19, 0x43, 0xc1,
7000 0x89, 0x53, 0x4f, 0xad, 0x48, 0xb3, 0x1e, 0x83, 0x30, 0xe9, 0xb5, 0x94,
7001 0x01, 0x80, 0x7d, 0x3f, 0x64, 0x0f, 0x30, 0x5f, 0xb0, 0x3b, 0xa1, 0x52,
7002 0xac, 0x00, 0x82, 0x00, 0xc1, 0xc7, 0x06, 0xb1, 0xb1, 0xfb, 0xdc, 0x57,
7003 0xc0, 0x3c, 0x1c, 0x0d, 0xb1, 0x4f, 0x59, 0x7e, 0x9b, 0x61, 0xc0, 0x88,
7004 0x63, 0x3e, 0x66, 0x67, 0xb3, 0xdf, 0xac, 0x4a, 0x38, 0x18, 0x19, 0xf4,
7005 0x08, 0xda, 0x6b, 0xe5, 0x52, 0xc7, 0x4d, 0xf7, 0x2e, 0xa9, 0x24, 0xdb,
7006 0x8d, 0x27, 0xaf, 0x85, 0xcc, 0x54, 0x0c, 0x7d, 0x3a, 0xf1, 0x01, 0xb2,
7007 0x29, 0x45, 0x4a, 0xfd, 0x95, 0x91, 0x3a, 0x2c, 0x63, 0xed, 0xb4, 0x80,
7008 0x3e, 0xf7, 0x2e, 0xec, 0xbd, 0x8e, 0xfa, 0xff, 0xf9, 0x0d, 0xc2, 0xd9,
7009 0x56, 0x3a, 0x1d, 0xdb, 0x10, 0x21, 0x6c, 0xd6, 0x99, 0x56, 0x67, 0xdc,
7010 0x7c, 0xc6, 0xcd, 0xe0, 0x22, 0x40, 0x5e, 0xca, 0x2e, 0x35, 0x4f, 0xd3,
7011 0x64, 0xbb, 0x40, 0x6d, 0xbf, 0x83, 0xda, 0x82, 0x59, 0x7f, 0xc5, 0xd8,
7012 0xe0, 0x32, 0xc9, 0x44, 0x41, 0xf4, 0x8b, 0x97, 0xec, 0x36, 0x26, 0x4e,
7013 0x33, 0xe3, 0x87, 0x0a, 0x05, 0x9d, 0x3c, 0x6d, 0x65, 0x65, 0x8b, 0x68,
7014 0xd9, 0xe2, 0xc1, 0x96, 0xcb, 0x22, 0x64, 0x79, 0xa7, 0x0d, 0x85, 0x60,
7015 0xb8, 0x10, 0x52, 0xa4, 0xa1, 0x0a, 0xd3, 0xf0, 0xf6, 0x3a, 0xf7, 0x9c,
7016 0xf8, 0xdc, 0xb5, 0xad, 0x0e, 0xd4, 0x83, 0x23, 0x61, 0xb9, 0x07, 0x45,
7017 0x36, 0x6e, 0xa8, 0x92, 0x84, 0x34, 0x44, 0x06, 0x6f, 0xc2, 0x10, 0x24,
7018 0x96, 0x30, 0x24, 0x31, 0x15, 0xe9, 0x86, 0x60, 0x8f, 0xe0, 0x25, 0x40,
7019 0xbe, 0x0c, 0xf3, 0xd2, 0xb0, 0x0c, 0x62, 0xd7, 0xc4, 0x40, 0x8a, 0x82,
7020 0x8e, 0x03, 0x41, 0xad, 0xd5, 0x4e, 0x54, 0x4e, 0x7e, 0x73, 0x33, 0xbb,
7021 0x01, 0x95, 0xdf, 0x9b, 0x14, 0x41, 0xa4, 0x80, 0x4f, 0x40, 0xc9, 0xc1,
7022 0x78, 0x00, 0x31, 0x0f, 0x0d, 0xc8, 0x78, 0xb4, 0xd7, 0xa9, 0x83, 0x34,
7023 0x05, 0x1b, 0xf1, 0x1a, 0x33, 0xb9, 0xcb, 0xb4, 0x5a, 0x04, 0xf7, 0xc4,
7024 0xc3, 0xe1, 0xdb, 0x07, 0xa5, 0xa4, 0xd5, 0xd9, 0x02, 0x91, 0x2d, 0x62,
7025 0xe4, 0x5f, 0x22, 0x43, 0x47, 0x9c, 0xf9, 0xd3, 0x23, 0xcf, 0x6d, 0x9b,
7026 0xf5, 0xff, 0xb8, 0x3b, 0x7b, 0x43, 0xf2, 0xf0, 0xf7, 0xb8, 0x63, 0xe1,
7027 0x4a, 0x92, 0x76, 0x68, 0x85, 0xaa, 0x23, 0x6a, 0x9d, 0x4f, 0xa3, 0x43,
7028 0x14, 0x1f, 0xff, 0xfb, 0x01, 0x59, 0x7b, 0x11, 0x4b, 0x90, 0xdd, 0x05,
7029 0x9e, 0x25, 0xb0, 0x0f, 0x39, 0x97, 0xb5, 0xf2, 0x9d, 0xc7, 0x54, 0xb5,
7030 0xe9, 0x34, 0x94, 0x6e, 0x45, 0x41, 0x73, 0x20, 0xe8, 0xf4, 0xde, 0x8e,
7031 0xe8, 0x80, 0x71, 0x98, 0xd6, 0x28, 0xb6, 0x91, 0x8c, 0x79, 0x44, 0xd3,
7032 0x47, 0xdb, 0x19, 0x80, 0xe1, 0xc4, 0xcf, 0x3c, 0xe8, 0x44, 0x4e, 0x43,
7033 0xb1, 0x48, 0x84, 0xa2, 0x14, 0x6c, 0xb3, 0x5c, 0x74, 0x53, 0xd1, 0x58,
7034 0xa2, 0x35, 0x87, 0xc3, 0xf6, 0x95, 0xdb, 0x9f, 0x7f, 0x73, 0x74, 0xf6,
7035 0xe1, 0x64, 0xfb, 0x4f, 0x51, 0x84, 0x7f, 0xee, 0xf0, 0x9f, 0x3b, 0x1d,
7036 0x35, 0x35, 0x45, 0x66, 0xf0, 0x5a, 0x99, 0x32, 0x6e, 0x9a, 0x43, 0x10,
7037 0x44, 0x4d, 0x91, 0x4f, 0xc8, 0x10, 0xe0, 0x96, 0x24, 0xb6, 0x81, 0x08,
7038 0xbd, 0x14, 0xf0, 0x98, 0x01, 0xf3, 0x51, 0xfd, 0x7e, 0xbd, 0xdc, 0x08,
7039 0xe5, 0x60, 0xdb, 0x5e, 0x2c, 0x6a, 0xd4, 0x72, 0x62, 0x03, 0xc1, 0xbe,
7040 0x8d, 0x17, 0x89, 0xe8, 0x33, 0x0e, 0x36, 0x49, 0x57, 0x5c, 0xc8, 0x5e,
7041 0x70, 0x54, 0x11, 0x8d, 0x4b, 0x07, 0xbc, 0x98, 0x36, 0xc7, 0xbd, 0x08,
7042 0x52, 0xf8, 0xef, 0x2a, 0xa9, 0x74, 0xe6, 0xb4, 0xae, 0x98, 0x9a, 0x4d,
7043 0x21, 0xeb, 0xd0, 0xee, 0x83, 0x93, 0x68, 0xed, 0xf3, 0xb5, 0xa8, 0xbc,
7044 0x9f, 0x0d, 0xf3, 0xa9, 0xd9, 0x7c, 0xc2, 0x18, 0x1a, 0x91, 0xef, 0x8a,
7045 0x6e, 0x68, 0x10, 0xe0, 0x24, 0xc2, 0xd6, 0x3c, 0x93, 0x4b, 0xc9, 0x03,
7046 0xd5, 0xf3, 0x84, 0x22, 0x5c, 0x2e, 0x64, 0x4b, 0x45, 0x08, 0x56, 0x7a,
7047 0x48, 0x49, 0x52, 0x80, 0xd1, 0x90, 0x3c, 0x30, 0x8d, 0xd2, 0x4a, 0xee,
7048 0x32, 0x70, 0x34, 0xb0, 0xfe, 0x40, 0xef, 0x6d, 0x41, 0x16, 0xe5, 0x44,
7049 0x48, 0x03, 0xa9, 0x1d, 0x04, 0xe9, 0x6f, 0x1a, 0x55, 0xf2, 0xdd, 0x62,
7050 0xe3, 0x22, 0x2a, 0xe3, 0xbd, 0x82, 0xc2, 0xe1, 0xda, 0xe8, 0xd9, 0x4a,
7051 0x6f, 0x8d, 0xf7, 0x36, 0x87, 0x1b, 0x8a, 0x46, 0xec, 0xc2, 0x21, 0xab,
7052 0x6b, 0xd5, 0x80, 0x66, 0x14, 0xb5, 0xd6, 0x49, 0x14, 0xb2, 0x51, 0x44,
7053 0x7f, 0x4f, 0xd8, 0x2a, 0xe2, 0x39, 0x21, 0x15, 0x51, 0x20, 0xc4, 0x04,
7054 0xcd, 0xed, 0x21, 0x8d, 0x75, 0x8f, 0x68, 0x2c, 0x4c, 0x31, 0xc6, 0x07,
7055 0xef, 0x03, 0x66, 0xc8, 0x3a, 0x1c, 0xd3, 0x5e, 0xb4, 0xd9, 0xe6, 0xaf,
7056 0xe8, 0x9a, 0xd1, 0x5a, 0x38, 0x19, 0x37, 0xe5, 0xb2, 0x10, 0xe3, 0xe5,
7057 0x75, 0x4d, 0x87, 0x50, 0x13, 0x42, 0x81, 0x5e, 0x38, 0xc5, 0x43, 0x94,
7058 0x02, 0x1e, 0x86, 0xb7, 0x2c, 0x96, 0x11, 0x4c, 0x1d, 0xfc, 0x5c, 0xf5,
7059 0x01, 0xa1, 0xcc, 0x51, 0x8c, 0x2b, 0xcc, 0xcd, 0x32, 0x02, 0x00, 0x9e,
7060 0x7f, 0x3f, 0x4d, 0x36, 0xd4, 0xac, 0x55, 0x3d, 0x66, 0xf3, 0x6d, 0xfe,
7061 0x33, 0x4c, 0x3e, 0x0e, 0x6f, 0x51, 0x57, 0xbb, 0x69, 0x9d, 0xb9, 0x3d,
7062 0x27, 0x04, 0xe7, 0x57, 0x78, 0xa7, 0xe6, 0xd5, 0xa1, 0x6e, 0x93, 0xd4,
7063 0x47, 0xe8, 0x1d, 0xeb, 0x69, 0x5e, 0x16, 0x3e, 0x0a, 0x0d, 0x4f, 0x49,
7064 0x73, 0x7c, 0x62, 0xe4, 0x26, 0x8e, 0x2e, 0x73, 0xc9, 0x18, 0x35, 0xdc,
7065 0x25, 0x32, 0xc6, 0xaf, 0x83, 0xb6, 0xaa, 0x72, 0xbb, 0x8e, 0xe1, 0xe2,
7066 0x09, 0x3b, 0xb4, 0x72, 0x57, 0x84, 0x7b, 0x32, 0x38, 0x75, 0x52, 0x9c,
7067 0x8b, 0x33, 0xf6, 0x6a, 0xbf, 0x08, 0xa1, 0xb7, 0x86, 0x49, 0x28, 0xaa,
7068 0x8b, 0x56, 0x59, 0xa1, 0x6c, 0x63, 0x84, 0x43, 0x12, 0xec, 0x0c, 0xe9,
7069 0xcb, 0xaa, 0x48, 0xe2, 0xf7, 0xc6, 0x20, 0x0f, 0x07, 0xbd, 0x70, 0x3c,
7070 0x1e, 0x4b, 0x16, 0x17, 0x61, 0xe5, 0x90, 0x8e, 0x21, 0x77, 0x63, 0x8e,
7071 0x9d, 0x9d, 0xb6, 0xe8, 0x7b, 0xeb, 0x84, 0x6b, 0x19, 0xaa, 0x29, 0x11,
7072 0x02, 0x33, 0x68, 0x1d, 0x3a, 0x33, 0x86, 0x3d, 0x1e, 0xa8, 0x24, 0xc6,
7073 0xe0, 0x10, 0x04, 0x36, 0x25, 0x3c, 0x30, 0x54, 0x51, 0x46, 0xf1, 0x21,
7074 0x24, 0xc2, 0x4c, 0xd1, 0xe2, 0xe8, 0xa8, 0x05, 0x15, 0x42, 0x06, 0x68,
7075 0x51, 0x72, 0x93, 0x3b, 0x53, 0xe9, 0x33, 0x04, 0xbd, 0x32, 0xc0, 0xff,
7076 0xb1, 0x8d, 0x34, 0x4a, 0x0f, 0x25, 0x3f, 0xe3, 0x7b, 0xcc, 0x7d, 0x66,
7077 0x8d, 0x2d, 0x42, 0xea, 0x54, 0x03, 0xbf, 0x1e, 0x7b, 0x04, 0x08, 0x86,
7078 0x3d, 0x3d, 0xc9, 0xb0, 0x6d, 0x08, 0x00, 0xd3, 0xe1, 0x25, 0x37, 0x9e,
7079 0x54, 0x6b, 0xc1, 0xc3, 0x9e, 0xac, 0x59, 0x80, 0xcf, 0x1e, 0xd0, 0x84,
7080 0x86, 0x32, 0xd1, 0xd6, 0xc4, 0xdd, 0x87, 0xef, 0x02, 0x9d, 0xe8, 0x81,
7081 0x31, 0x5a, 0x35, 0xa0, 0xa6, 0x59, 0x49, 0xce, 0x9d, 0x9f, 0xf0, 0xc3,
7082 0x9f, 0x16, 0xd9, 0xa7, 0x9e, 0x74, 0xee, 0xe8, 0xa9, 0xbe, 0xef, 0xba,
7083 0xbc, 0xe9, 0x68, 0xea, 0xc1, 0x31, 0x59, 0x86, 0x42, 0xcd, 0x7a, 0xbc,
7084 0x81, 0x14, 0xfc, 0x49, 0x11, 0xe6, 0x2c, 0xca, 0x99, 0x69, 0x0d, 0x60,
7085 0x53, 0x1e, 0x2c, 0xbc, 0x6e, 0x53, 0xc4, 0xd2, 0x83, 0x8c, 0x2f, 0x18,
7086 0x51, 0x1b, 0x62, 0xea, 0x14, 0x84, 0xae, 0x3b, 0xa7, 0xba, 0x3f, 0x05,
7087 0xde, 0x2d, 0x46, 0xd7, 0x84, 0x3b, 0x84, 0xae, 0x42, 0x8e, 0x28, 0xfb,
7088 0x58, 0x7a, 0xc2, 0x9e, 0x34, 0xaa, 0xa8, 0x6d, 0x32, 0x08, 0x72, 0x0b,
7089 0x1e, 0xc3, 0xf0, 0xbd, 0x8a, 0x33, 0x6f, 0xb6, 0x21, 0x6d, 0x9b, 0x12,
7090 0x13, 0xaf, 0xa9, 0x1f, 0xd0, 0xb4, 0xb4, 0xa7, 0x89, 0xb9, 0xcd, 0x1e,
7091 0x2b, 0xe4, 0xfe, 0xc8, 0x9c, 0x86, 0x47, 0xcd, 0xf3, 0x04, 0x11, 0x90,
7092 0x26, 0xde, 0xa4, 0x10, 0x12, 0x95, 0xe7, 0x85, 0x76, 0x36, 0xee, 0x8a,
7093 0x7b, 0x05, 0xb6, 0x84, 0xc1, 0xdc, 0x4b, 0xbd, 0x1c, 0xaf, 0x3a, 0xe6,
7094 0x65, 0x93, 0x11, 0x8e, 0xc5, 0x8e, 0xc2, 0x55, 0xa4, 0xe3, 0x78, 0x06,
7095 0x47, 0x07, 0xbf, 0xf9, 0x0c, 0xfd, 0xf9, 0x5b, 0xcf, 0xf7, 0xb7, 0xf0,
7096 0xc8, 0x44, 0x64, 0x6c, 0x3e, 0x42, 0x44, 0xe8, 0x53, 0xad, 0x82, 0x17,
7097 0x0e, 0x02, 0x69, 0xa5, 0xcb, 0x25, 0xd0, 0x9c, 0xee, 0x5b, 0xdc, 0xda,
7098 0x2e, 0xaa, 0xe8, 0xb3, 0xc2, 0xfa, 0x6a, 0x6a, 0xe3, 0x8d, 0xad, 0x2f,
7099 0x7b, 0xbd, 0x49, 0xe5, 0xd1, 0xd6, 0x61, 0xb1, 0x95, 0xdd, 0xa0, 0xf6,
7100 0x56, 0xbb, 0x0e, 0x06, 0x10, 0x62, 0xf3, 0x09, 0x59, 0xf2, 0x38, 0x3f,
7101 0x77, 0x54, 0x4e, 0x92, 0xe7, 0x91, 0xf1, 0x93, 0xc0, 0xde, 0xc0, 0xa7,
7102 0xf4, 0x88, 0x8e, 0x87, 0xf8, 0xd3, 0xb3, 0x1e, 0x08, 0x4b, 0x14, 0xf3,
7103 0xa7, 0x31, 0x16, 0xbf, 0x51, 0x4f, 0xd1, 0xd0, 0x60, 0x88, 0x90, 0x93,
7104 0xcb, 0x25, 0xb5, 0xcb, 0x5b, 0x10, 0xfb, 0x23, 0x27, 0x63, 0x5f, 0x0c,
7105 0x67, 0x9b, 0x7b, 0xeb, 0xb4, 0xc9, 0xab, 0xc5, 0xf7, 0x50, 0xed, 0x65,
7106 0xf6, 0xa7, 0x9a, 0x26, 0xcf, 0x8d, 0x87, 0x07, 0x0d, 0xab, 0x6e, 0x6b,
7107 0x38, 0x79, 0xca, 0xaa, 0x22, 0x28, 0x40, 0x9b, 0x72, 0x89, 0x1e, 0x1a,
7108 0x46, 0xdc, 0xc4, 0x0f, 0x41, 0xb4, 0x77, 0x1d, 0xcc, 0xd6, 0x40, 0xd4,
7109 0x41, 0x73, 0x3b, 0xb6, 0x9e, 0xed, 0xed, 0x2d, 0x3d, 0x3b, 0x2a, 0x32,
7110 0x22, 0x30, 0xd3, 0x77, 0x54, 0xc1, 0x26, 0x17, 0x7f, 0x2d, 0xaa, 0xbd,
7111 0xa2, 0x28, 0xff, 0xee, 0xc5, 0x17, 0xcd, 0x05, 0xde, 0x7a, 0xfe, 0xfc,
7112 0x79, 0xd4, 0xbb, 0x64, 0x16, 0xe3, 0x2d, 0xe2, 0x67, 0x97, 0x67, 0xc9,
7113 0xed, 0xe3, 0x19, 0x6c, 0x29, 0xec, 0xe4, 0xa8, 0x98, 0x4e, 0x18, 0x7c,
7114 0x97, 0x7a, 0x3d, 0x71, 0x13, 0x81, 0x1b, 0xac, 0x08, 0x89, 0xce, 0x5e,
7115 0xf3, 0x59, 0x77, 0xfc, 0x1e, 0x7f, 0x43, 0x9d, 0x84, 0x9d, 0xc7, 0x04,
7116 0x52, 0x43, 0x3d, 0xea, 0x29, 0x6a, 0xf5, 0xf6, 0x9b, 0x26, 0x26, 0xc8,
7117 0xfa, 0xf9, 0x60, 0x73, 0xf7, 0xe5, 0xd6, 0x46, 0xa0, 0xbe, 0x0b, 0xdb,
7118 0x49, 0xc5, 0x8e, 0x93, 0x7f, 0x2b, 0x90, 0xe8, 0xf2, 0x20, 0xc5, 0x60,
7119 0xc6, 0x40, 0x20, 0xd6, 0xad, 0x56, 0x48, 0xbc, 0xff, 0x4a, 0x70, 0x1d,
7120 0x7b, 0x71, 0x39, 0x4a, 0xd3, 0x26, 0x11, 0x70, 0xb4, 0x25, 0xe8, 0x8a,
7121 0xda, 0x8f, 0x58, 0xd4, 0x06, 0x16, 0x3e, 0x4e, 0x21, 0xbd, 0x94, 0xb6,
7122 0xb9, 0x80, 0x2a, 0xef, 0x13, 0xec, 0x5f, 0x1a, 0x04, 0x6f, 0x3b, 0x4b,
7123 0x4b, 0xf1, 0xe3, 0xa0, 0x35, 0xa3, 0xea, 0x20, 0x02, 0x28, 0xd5, 0x8b,
7124 0xb6, 0xe8, 0x92, 0x98, 0xbb, 0x75, 0x0e, 0x93, 0x50, 0x54, 0xbf, 0x44,
7125 0xcc, 0x5b, 0x4a, 0xfc, 0xa7, 0x44, 0xac, 0xdf, 0x9f, 0x9d, 0x99, 0x92,
7126 0x45, 0xf2, 0x13, 0xda, 0xbc, 0x4f, 0x42, 0xb8, 0x72, 0x4a, 0xed, 0x19,
7127 0x80, 0xa7, 0xb6, 0x54, 0x8b, 0x02, 0xbb, 0xd4, 0x1e, 0x9a, 0x72, 0x06,
7128 0xaa, 0xc1, 0x79, 0x0c, 0xcc, 0x95, 0x46, 0xf4, 0x6c, 0xbc, 0x99, 0x87,
7129 0xaa, 0x72, 0x2e, 0x88, 0x34, 0x0d, 0xb7, 0x06, 0x83, 0x33, 0x4f, 0x82,
7130 0x71, 0x15, 0xa1, 0x0d, 0x28, 0x53, 0x41, 0x7c, 0x3c, 0x42, 0xc3, 0x95,
7131 0xac, 0xce, 0x3c, 0xc2, 0x52, 0xe1, 0x17, 0x7b, 0x3b, 0x3b, 0xdd, 0x68,
7132 0xbf, 0xbf, 0xed, 0xc2, 0x60, 0xc5, 0x53, 0x0f, 0x9a, 0x54, 0x0a, 0x31,
7133 0x3c, 0x6c, 0x2c, 0xce, 0xd1, 0x34, 0xe8, 0x58, 0x02, 0x88, 0xa5, 0x35,
7134 0xc0, 0xe8, 0x7a, 0x09, 0x21, 0xe3, 0x74, 0xbe, 0xdb, 0xd9, 0xdf, 0xdf,
7135 0x7e, 0x79, 0x70, 0xd1, 0xdb, 0xdf, 0xd9, 0x46, 0x6c, 0x2c, 0xb6, 0xa9,
7136 0x6c, 0xea, 0x72, 0xad, 0x6e, 0x3e, 0x1d, 0xb3, 0xd3, 0x62, 0x3a, 0xd5,
7137 0xa2, 0xd4, 0xe6, 0x70, 0xf9, 0x3c, 0xc9, 0xca, 0x72, 0x1a, 0x95, 0x1f,
7138 0x19, 0x29, 0x61, 0xb3, 0xfc, 0xc8, 0xae, 0xa1, 0x8e, 0xc0, 0x59, 0xa5,
7139 0x01, 0xcd, 0xdb, 0xac, 0x8c, 0x1c, 0x07, 0xb1, 0xa9, 0xc9, 0x16, 0xb8,
7140 0x2a, 0xb3, 0x0e, 0x92, 0x51, 0xdb, 0x80, 0xa8, 0x0a, 0xa5, 0x94, 0x1b,
7141 0xc3, 0x99, 0x95, 0xa7, 0xf5, 0x93, 0xe3, 0x0d, 0x5e, 0x34, 0x5d, 0x4b,
7142 0x8b, 0x53, 0xc0, 0x33, 0xed, 0x72, 0xc5, 0xa9, 0x7f, 0xa2, 0x65, 0x60,
7143 0x41, 0x53, 0xe5, 0x6f, 0x4c, 0x35, 0xae, 0xfa, 0x5e, 0xec, 0xf0, 0x52,
7144 0x78, 0xd8, 0x7a, 0xe3, 0xcb, 0xd6, 0xfd, 0x23, 0x78, 0x9d, 0x95, 0x0b,
7145 0x16, 0xa3, 0xbc, 0x24, 0x1d, 0x5f, 0x04, 0x30, 0x12, 0x5b, 0x05, 0x7b,
7146 0x3a, 0x23, 0xd3, 0xb6, 0x01, 0x71, 0xb5, 0xf2, 0x36, 0xe3, 0xc7, 0xf1,
7147 0xc2, 0xaf, 0xba, 0xc1, 0xb4, 0xc0, 0xad, 0x91, 0x70, 0xe8, 0xee, 0x32,
7148 0xf4, 0xea, 0xb1, 0x98, 0x64, 0xbf, 0x65, 0x8b, 0xbb, 0x52, 0x0b, 0x6b,
7149 0xa8, 0x4d, 0x06, 0xe1, 0x94, 0xa5, 0x31, 0x67, 0xcc, 0xf5, 0xc6, 0xda,
7150 0xfe, 0x68, 0xd5, 0x57, 0x73, 0x1e, 0xfd, 0xe5, 0x13, 0x94, 0x2b, 0xba,
7151 0x1d, 0x3d, 0x3d, 0x58, 0xc0, 0x2c, 0x7f, 0x16, 0xf1, 0xad, 0x02, 0xd2,
7152 0xe3, 0x9f, 0xf0, 0x1c, 0x2e, 0xa2, 0xf6, 0xde, 0x98, 0xef, 0x5b, 0xfa,
7153 0xca, 0xe2, 0x9c, 0xc4, 0xb6, 0x9d, 0xd2, 0x40, 0xce, 0x78, 0x77, 0xca,
7154 0xa6, 0x07, 0x03, 0x1b, 0x1c, 0x53, 0xef, 0x86, 0x00, 0x1e, 0xb6, 0x34,
7155 0xe2, 0x25, 0xcc, 0xa3, 0x32, 0x47, 0x69, 0xdc, 0xe6, 0x56, 0xe0, 0x56,
7156 0x5c, 0xc6, 0x85, 0x6b, 0x8c, 0x09, 0xc9, 0xe6, 0xff, 0xb2, 0xab, 0x20,
7157 0x58, 0x95, 0xf5, 0xc3, 0xa2, 0xe7, 0x23, 0x0e, 0xf8, 0x60, 0xb8, 0xe9,
7158 0xfd, 0x2b, 0xea, 0x63, 0x4d, 0x51, 0x00, 0x83, 0x4e, 0xa0, 0xe9, 0xdc,
7159 0x33, 0xac, 0xbf, 0x2e, 0x18, 0x5c, 0x99, 0x9e, 0x87, 0x99, 0x30, 0xdd,
7160 0xc8, 0xcf, 0x52, 0xc0, 0xa4, 0x2e, 0x3e, 0x9f, 0x40, 0x19, 0x41, 0xc3,
7161 0xb5, 0x94, 0x06, 0xdf, 0x45, 0x91, 0x62, 0x14, 0xae, 0x48, 0xaa, 0x45,
7162 0x21, 0x75, 0xb8, 0x58, 0xb2, 0x84, 0x7b, 0x6d, 0x2c, 0xf9, 0x2a, 0x81,
7163 0x73, 0xcc, 0x24, 0x25, 0x52, 0xfd, 0x18, 0xe1, 0x26, 0xa1, 0xb3, 0xd5,
7164 0x23, 0xca, 0x19, 0x76, 0xa3, 0xd2, 0xb9, 0xd5, 0x21, 0xe4, 0xd8, 0x4b,
7165 0xc6, 0x60, 0x03, 0xdc, 0xe0, 0x21, 0xaf, 0xf9, 0xb5, 0x61, 0xec, 0x10,
7166 0x08, 0x1f, 0x3b, 0x00, 0x37, 0xef, 0x7a, 0xb7, 0xb7, 0xb7, 0x3d, 0x3c,
7167 0xcd, 0x2d, 0x83, 0x8c, 0x4d, 0x1d, 0x3d, 0x7b, 0x13, 0x64, 0xd3, 0xf3,
7168 0xa3, 0xf3, 0x40, 0x7c, 0xdf, 0xad, 0x63, 0x28, 0x86, 0x69, 0x45, 0x80,
7169 0x2e, 0xc2, 0x55, 0x74, 0x9b, 0x88, 0x2b, 0x99, 0x12, 0xf9, 0x78, 0x34,
7170 0xae, 0x17, 0x20, 0x8a, 0x7d, 0x1f, 0xc4, 0xd4, 0x1e, 0x55, 0x09, 0x22,
7171 0x76, 0x61, 0xa7, 0xd3, 0x83, 0xa8, 0xf7, 0x26, 0xea, 0x1c, 0xcb, 0x1b,
7172 0x5f, 0xc2, 0x15, 0x07, 0xb5, 0x64, 0xa1, 0x4d, 0xbe, 0x38, 0xd8, 0x25,
7173 0xb5, 0xf3, 0xb8, 0x90, 0x4e, 0xab, 0x9e, 0x90, 0xe3, 0x52, 0xdb, 0xf2,
7174 0x95, 0x50, 0x35, 0x04, 0xd6, 0x8a, 0xb0, 0x73, 0x9b, 0xfb, 0x0f, 0xd0,
7175 0xab, 0xc7, 0x98, 0x02, 0xa8, 0x69, 0xb6, 0xc0, 0x73, 0xbf, 0x50, 0x44,
7176 0x08, 0x55, 0xbf, 0x34, 0xde, 0xeb, 0x27, 0xc8, 0x09, 0x4f, 0x11, 0x34,
7177 0xe2, 0xe2, 0x41, 0xa9, 0xe7, 0x08, 0x00, 0xdb, 0x7b, 0xbd, 0xd2, 0x91,
7178 0xb9, 0x77, 0xb6, 0x53, 0xb4, 0x85, 0xa2, 0xc1, 0xdb, 0x41, 0x58, 0xc5,
7179 0x65, 0x70, 0x3c, 0xc4, 0x0d, 0xcd, 0x26, 0xfb, 0x97, 0x0f, 0x37, 0xb2,
7180 0x2a, 0x97, 0x52, 0x07, 0xdf, 0xa1, 0x83, 0x2d, 0x15, 0xf3, 0xce, 0x0a,
7181 0x79, 0x8d, 0xf6, 0xd6, 0x2f, 0xe3, 0x0a, 0xff, 0x7f, 0x45, 0xd4, 0x7b,
7182 0xbb, 0xa2, 0xb5, 0x4c, 0x9e, 0xd0, 0xe1, 0x62, 0xf6, 0xd8, 0x2a, 0xa4,
7183 0xee, 0x3a, 0x55, 0x27, 0xcc, 0x8b, 0x14, 0x32, 0x16, 0x9a, 0x6b, 0xc7,
7184 0xb8, 0x00, 0x42, 0x05, 0xa7, 0xec, 0xa0, 0xc8, 0x52, 0xf0, 0x79, 0x89,
7185 0x83, 0x26, 0x05, 0xee, 0x78, 0xaa, 0xd9, 0xee, 0x69, 0x33, 0x7a, 0xdf,
7186 0xa0, 0x24, 0xe5, 0xfb, 0xf8, 0xeb, 0x53, 0x2a, 0xbf, 0x84, 0x33, 0x2e,
7187 0x13, 0xf4, 0x4a, 0x9e, 0x3a, 0xf5, 0x81, 0xb7, 0xfe, 0xf4, 0x2b, 0xb4,
7188 0x94, 0x2c, 0xd2, 0x8f, 0x0f, 0xa3, 0xa3, 0x81, 0xa2, 0x88, 0x81, 0x2b,
7189 0x4c, 0xc9, 0x1d, 0x97, 0xde, 0x9a, 0xe8, 0x95, 0xea, 0xa9, 0xb1, 0x2d,
7190 0x68, 0x0f, 0x92, 0x8a, 0x9e, 0xae, 0x9a, 0x24, 0x07, 0x8e, 0xd0, 0xda,
7191 0xe7, 0xb0, 0x59, 0xa3, 0x08, 0xd8, 0x6e, 0xdb, 0xf2, 0x3e, 0xab, 0xe2,
7192 0xbb, 0xc4, 0xaf, 0xd4, 0x91, 0xc7, 0x37, 0x39, 0xc4, 0x31, 0xad, 0x1b,
7193 0xe1, 0x1b, 0x43, 0xba, 0xc4, 0x0d, 0x56, 0x30, 0x22, 0x09, 0x86, 0x33,
7194 0x43, 0xf9, 0x00, 0xc6, 0xd1, 0x00, 0xca, 0xea, 0x9f, 0xa5, 0xb0, 0x0e,
7195 0x4e, 0x0e, 0x32, 0x2a, 0x15, 0x36, 0xc8, 0x1d, 0xcc, 0x74, 0xeb, 0x94,
7196 0x72, 0xbe, 0xf0, 0x70, 0x98, 0xf2, 0xf6, 0x39, 0x7a, 0x83, 0xbe, 0x94,
7197 0xe8, 0x18, 0x96, 0x33, 0x97, 0x4e, 0xff, 0x32, 0x71, 0xaa, 0xb3, 0x02,
7198 0x2a, 0x10, 0xd0, 0x48, 0x86, 0xf0, 0x70, 0x9c, 0x1a, 0xe8, 0x50, 0x8f,
7199 0xb9, 0x6d, 0x14, 0xa3, 0xeb, 0x6d, 0x98, 0x00, 0x21, 0xff, 0xa3, 0x49,
7200 0xbc, 0xcf, 0x1f, 0xa6, 0xde, 0xaa, 0xe4, 0x5b, 0x4e, 0x3d, 0xee, 0xd1,
7201 0xab, 0xa5, 0x7e, 0x9f, 0x3b, 0x51, 0x41, 0x4a, 0xdd, 0x66, 0xff, 0xbc,
7202 0x89, 0x0e, 0x06, 0x85, 0x2d, 0x72, 0xe8, 0xe7, 0xbf, 0xd6, 0xaa, 0x13,
7203 0x33, 0xd2, 0x19, 0x8f, 0x93, 0x0f, 0x0f, 0xc7, 0x11, 0x04, 0x5a, 0x7b,
7204 0x17, 0xef, 0x4d, 0xfb, 0xd2, 0xe1, 0x08, 0x14, 0x34, 0x03, 0xfe, 0xaf,
7205 0x98, 0x99, 0x87, 0x14, 0x89, 0xeb, 0x85, 0x87, 0x53, 0x40, 0x1c, 0x71,
7206 0x67, 0x7a, 0xef, 0x67, 0x4e, 0x88, 0xc7, 0xbf, 0x1c, 0x15, 0x2a, 0x70,
7207 0xef, 0x4e, 0x0d, 0x8e, 0x6b, 0x9a, 0x19, 0x27, 0xf6, 0xac, 0xfb, 0xc1,
7208 0x4a, 0xdd, 0x3e, 0xd2, 0xc5, 0x87, 0xbb, 0x70, 0xaa, 0x6a, 0xb4, 0xd1,
7209 0xad, 0x13, 0x0c, 0xbb, 0x0d, 0xd0, 0x99, 0xa8, 0xab, 0x9c, 0xb6, 0xae,
7210 0xb1, 0xae, 0x1d, 0xf6, 0xde, 0x0d, 0xae, 0xdd, 0xff, 0x49, 0xef, 0x47,
7211 0xfc, 0x6c, 0xd9, 0x00, 0x03, 0xe3, 0xa5, 0xe4, 0xd1, 0x60, 0xc9, 0x70,
7212 0x44, 0xb5, 0xd6, 0x51, 0x40, 0x8f, 0x53, 0x59, 0x48, 0xe0, 0xe1, 0x5d,
7213 0x4e, 0x1d, 0x9c, 0xb2, 0x0d, 0x9d, 0x72, 0x2f, 0x9c, 0xcf, 0xad, 0x56,
7214 0xc7, 0xde, 0x36, 0x83, 0x63, 0x80, 0x4c, 0xb8, 0x84, 0x53, 0x0d, 0x67,
7215 0x86, 0x99, 0xb2, 0x95, 0xfd, 0xfc, 0x73, 0xda, 0x3d, 0x65, 0xed, 0xf9,
7216 0x47, 0x93, 0xbb, 0x81, 0x97, 0x5b, 0x76, 0x4e, 0x87, 0x6f, 0xfd, 0x9c,
7217 0xff, 0xa5, 0xa3, 0x6c, 0xf5, 0xbb, 0x0d, 0xf3, 0x3c, 0xe1, 0x5e, 0xba,
7218 0x8f, 0xa2, 0xb2, 0xcb, 0x14, 0x84, 0x80, 0x66, 0xe0, 0x1a, 0x62, 0xa0,
7219 0x69, 0x38, 0x7a, 0x81, 0xbd, 0xa4, 0x5d, 0x23, 0x88, 0xde, 0xfe, 0xf5,
7220 0xf2, 0x72, 0x03, 0xc6, 0xe5, 0xb2, 0x1a, 0x37, 0x66, 0x4c, 0x77, 0x32,
7221 0xd0, 0x1a, 0x76, 0xa9, 0xf6, 0x8a, 0x21, 0x42, 0x01, 0x6e, 0x2d, 0x46,
7222 0x70, 0x63, 0x71, 0x94, 0x7f, 0x46, 0x6e, 0xb7, 0x68, 0x58, 0xe4, 0xb7,
7223 0x25, 0x19, 0x22, 0x1a, 0x73, 0x88, 0xd9, 0xc5, 0x7d, 0xed, 0xc1, 0xa1,
7224 0x01, 0x39, 0xa6, 0xa6, 0x61, 0xd9, 0x9b, 0xcb, 0xb7, 0x67, 0xdc, 0xb8,
7225 0x98, 0x61, 0xb9, 0x10, 0xaf, 0x41, 0xa6, 0xbb, 0x18, 0xce, 0xd2, 0x0a,
7226 0xb5, 0xc3, 0x8a, 0xa5, 0xb7, 0x1e, 0x08, 0x1e, 0x7c, 0x18, 0xe5, 0xc6,
7227 0x89, 0xc7, 0x64, 0x1e, 0xca, 0x0a, 0x12, 0x13, 0xc2, 0xc1, 0x1c, 0x77,
7228 0xec, 0x9f, 0xf6, 0x32, 0x82, 0x36, 0x3b, 0xe7, 0x98, 0x93, 0xe7, 0x49,
7229 0x85, 0x7d, 0x8d, 0x2b, 0x81, 0x57, 0x04, 0xbc, 0x3c, 0x46, 0x45, 0x44,
7230 0x73, 0x6a, 0x4a, 0x1d, 0x15, 0x0d, 0xe9, 0x50, 0xe9, 0x35, 0x27, 0x35,
7231 0x01, 0xa4, 0x4b, 0x75, 0x87, 0xea, 0xb9, 0x9e, 0xf5, 0x65, 0xf4, 0x5e,
7232 0xdb, 0x1d, 0xdb, 0x55, 0x7d, 0x51, 0xf3, 0x42, 0xed, 0x4f, 0x92, 0x97,
7233 0x16, 0x05, 0x46, 0x2c, 0xd4, 0xb8, 0xf7, 0xeb, 0xa2, 0x45, 0x05, 0xd3,
7234 0xc8, 0x81, 0x4d, 0x11, 0x74, 0x0d, 0x06, 0xed, 0x05, 0x8c, 0x11, 0x26,
7235 0x47, 0x66, 0x05, 0x58, 0x84, 0xc1, 0xc8, 0xa9, 0xd4, 0x9d, 0x16, 0x13,
7236 0xd8, 0x0c, 0x46, 0x47, 0x6b, 0x10, 0x9d, 0xb6, 0x38, 0x7a, 0xbb, 0x43,
7237 0xc1, 0xb1, 0xac, 0x6c, 0xaf, 0xec, 0xd2, 0x36, 0x47, 0x56, 0x3f, 0x2c,
7238 0x61, 0xb2, 0x13, 0x0a, 0x3b, 0x75, 0x47, 0xce, 0xeb, 0x41, 0x61, 0x3f,
7239 0x33, 0x40, 0x82, 0xc4, 0x5d, 0x27, 0xa5, 0x2b, 0xc5, 0x40, 0x66, 0xcd,
7240 0xf5, 0xc0, 0xae, 0xa5, 0x59, 0x52, 0x5c, 0xa9, 0x27, 0x82, 0xb5, 0x4c,
7241 0x0f, 0xd0, 0x5e, 0xbc, 0x8c, 0xff, 0xa3, 0xc7, 0x6a, 0x03, 0xa5, 0x5e,
7242 0x2d, 0x4a, 0xdb, 0x94, 0x7d, 0xad, 0x37, 0x66, 0xf1, 0x34, 0x8e, 0x33,
7243 0x78, 0x79, 0x6c, 0xbb, 0x5d, 0x7e, 0x82, 0xe1, 0x3f, 0x9f, 0xe6, 0x8b,
7244 0xf2, 0x7e, 0xcd, 0x2b, 0xa5, 0xe1, 0x1c, 0x30, 0xe9, 0xe7, 0x8c, 0x91,
7245 0x56, 0x52, 0x81, 0xd9, 0x5b, 0xc2, 0x55, 0x85, 0x8b, 0xec, 0x93, 0x55,
7246 0x01, 0xb8, 0x97, 0x4c, 0xc9, 0x70, 0x22, 0x9f, 0x9a, 0xe4, 0x5f, 0x73,
7247 0x9e, 0xfc, 0x3f, 0xdc, 0xc7, 0x06, 0xa9, 0x4c, 0x46, 0x3a, 0xbb, 0x4a,
7248 0x1e, 0xe7, 0x2b, 0xb1, 0xf9, 0x2f, 0x71, 0x6b, 0x17, 0x5a, 0x4d, 0x9c,
7249 0x31, 0x03, 0xe2, 0x71, 0xc9, 0x4d, 0xa5, 0x34, 0xf3, 0xc8, 0xa6, 0x40,
7250 0x93, 0xa0, 0x29, 0xfc, 0x6e, 0xca, 0x8e, 0xcf, 0x80, 0x73, 0x99, 0x39,
7251 0x81, 0x27, 0x8a, 0x2e, 0x72, 0xee, 0xb9, 0x6b, 0x0f, 0xe2, 0xb8, 0xd6,
7252 0x37, 0x67, 0x92, 0xe7, 0xc3, 0xb8, 0x08, 0x53, 0x99, 0xfa, 0x85, 0x0e,
7253 0x25, 0x21, 0x8d, 0xd3, 0x65, 0xac, 0xfc, 0xfc, 0x92, 0xef, 0xec, 0x73,
7254 0x1c, 0x50, 0x3e, 0x4c, 0xa9, 0xe0, 0x65, 0x3a, 0xf6, 0x53, 0x69, 0x05,
7255 0xd6, 0x80, 0x27, 0x27, 0x89, 0x0d, 0xdc, 0xf5, 0x1b, 0x97, 0xa9, 0x1b,
7256 0x70, 0xe9, 0x00, 0x17, 0xea, 0xc9, 0xdf, 0x12, 0x26, 0xc6, 0xea, 0x1b,
7257 0xac, 0x74, 0xa0, 0x2c, 0x7b, 0x75, 0xa2, 0x48, 0xf6, 0x0b, 0x27, 0x66,
7258 0xd4, 0xad, 0x5c, 0x9c, 0x07, 0x4a, 0x0c, 0x0f, 0xf7, 0xb0, 0x26, 0x3f,
7259 0xac, 0xbc, 0x70, 0x76, 0x1f, 0x09, 0x23, 0x29, 0x53, 0x5b, 0xd1, 0x56,
7260 0x1e, 0x47, 0x1d, 0xd6, 0x7e, 0xe1, 0xaf, 0x15, 0xec, 0xe4, 0xfa, 0x6d,
7261 0xf8, 0x67, 0x95, 0xe7, 0xd3, 0xcf, 0x47, 0xb3, 0x31, 0x92, 0x64, 0xa5,
7262 0x81, 0x56, 0x76, 0x5f, 0xf0, 0x79, 0xda, 0x74, 0x74, 0xfa, 0x07, 0x74,
7263 0xe3, 0x98, 0x5d, 0x92, 0xbf, 0x80, 0x4d, 0x35, 0x17, 0x15, 0x43, 0xf3,
7264 0x81, 0x8d, 0x3c, 0x85, 0xbd, 0x7f, 0xd3, 0x38, 0x07, 0x58, 0xa3, 0xef,
7265 0x9d, 0xd2, 0x83, 0xae, 0x89, 0x5b, 0x02, 0xd9, 0x2d, 0x97, 0xdd, 0x7a,
7266 0x17, 0xca, 0x9a, 0xcd, 0x9f, 0x4c, 0x93, 0x2b, 0x5e, 0xba, 0xc3, 0xb3,
7267 0x93, 0x6f, 0x4e, 0xce, 0xbc, 0xe3, 0xfd, 0xeb, 0xc1, 0x60, 0xf3, 0x53,
7268 0x52, 0x0c, 0x93, 0x22, 0x2f, 0xb1, 0xe8, 0x00, 0xbb, 0x77, 0xd2, 0x95,
7269 0xa6, 0x90, 0xc4, 0x39, 0xf5, 0x6e, 0x2d, 0xae, 0x6c, 0x1c, 0xcc, 0xba,
7270 0xc4, 0xaa, 0x44, 0x7e, 0xa4, 0xf4, 0x62, 0x25, 0xf0, 0x0a, 0xa9, 0x8f,
7271 0xa2, 0x33, 0x7c, 0x54, 0x24, 0x14, 0x09, 0x89, 0x03, 0x30, 0xfd, 0x84,
7272 0x3e, 0x1a, 0x45, 0xaf, 0x98, 0x5f, 0xb9, 0x66, 0x17, 0xc5, 0xb8, 0x7d,
7273 0x0b, 0xef, 0x96, 0x39, 0x41, 0xfc, 0x45, 0xaf, 0xe4, 0xa1, 0x25, 0xca,
7274 0x07, 0xa4, 0x1a, 0x83, 0xfb, 0xb3, 0xfd, 0x78, 0xfe, 0x97, 0xde, 0xd1,
7275 0xa0, 0xf7, 0xea, 0xe4, 0xec, 0xe4, 0xeb, 0xa3, 0xcb, 0x13, 0x6e, 0x13,
7276 0xaa, 0x11, 0x85, 0xb0, 0x02, 0x6a, 0xf0, 0x09, 0xfe, 0x22, 0x94, 0x89,
7277 0x4c, 0x7f, 0xc4, 0xa8, 0x4a, 0xb9, 0x87, 0xbb, 0xed, 0x44, 0x14, 0xa3,
7278 0xc9, 0xca, 0xf5, 0x91, 0xe1, 0xe1, 0x60, 0xa3, 0x4f, 0x67, 0x32, 0x55,
7279 0xef, 0x0d, 0xe2, 0x29, 0xa8, 0x3e, 0x65, 0xf4, 0x21, 0xc3, 0xa2, 0xe5,
7280 0xd4, 0x80, 0x14, 0xf1, 0xdb, 0xbb, 0x4e, 0x4b, 0x4b, 0x5a, 0x3b, 0xc6,
7281 0xaf, 0x16, 0x66, 0xf4, 0x5c, 0x7f, 0xaa, 0x7f, 0x5a, 0x06, 0xea, 0xe0,
7282 0xf2, 0x74, 0x1e, 0xa9, 0x78, 0xd6, 0x1a, 0x6e, 0xc8, 0xae, 0x28, 0xcb,
7283 0x69, 0x8d, 0x37, 0xa9, 0x4b, 0x6d, 0xd8, 0x01, 0xa5, 0x48, 0x74, 0xa4,
7284 0x2e, 0xbe, 0xa2, 0x0b, 0x1b, 0x89, 0xbf, 0x0e, 0xbc, 0x58, 0x66, 0x1b,
7285 0x16, 0x06, 0xf0, 0x60, 0x49, 0xcd, 0x29, 0x47, 0xd7, 0xc9, 0xcc, 0x60,
7286 0xc1, 0x60, 0xa2, 0x2d, 0x25, 0x76, 0x32, 0xd4, 0x90, 0xe0, 0x31, 0x93,
7287 0x20, 0x1e, 0x26, 0xe4, 0xa5, 0x41, 0x9b, 0x3a, 0xf7, 0x73, 0xfa, 0xa8,
7288 0x3c, 0x01, 0x7b, 0x1a, 0x63, 0x5e, 0x14, 0x96, 0x16, 0x10, 0xe6, 0x56,
7289 0x9f, 0x0a, 0xb0, 0x9c, 0x0c, 0x58, 0x3f, 0xe3, 0x15, 0x71, 0x7e, 0x66,
7290 0x5e, 0xe5, 0xa5, 0xb4, 0xbb, 0xd4, 0x9c, 0x09, 0x4e, 0xcf, 0xa0, 0x8f,
7291 0xb8, 0x19, 0xbb, 0x58, 0x71, 0x38, 0xbb, 0x55, 0x9c, 0xc7, 0xcd, 0xe5,
7292 0xa7, 0xbd, 0xc0, 0x29, 0x1f, 0x85, 0x30, 0x41, 0x18, 0xbf, 0xe3, 0x97,
7293 0xf6, 0x5d, 0xe4, 0x15, 0x5d, 0xcd, 0x77, 0x69, 0xba, 0x3e, 0x76, 0x4d,
7294 0x13, 0x46, 0x19, 0x86, 0x99, 0x46, 0x5a, 0x1c, 0xf7, 0xeb, 0x90, 0x07,
7295 0x7e, 0xde, 0x7d, 0x8b, 0x2c, 0xad, 0xf5, 0x45, 0xc6, 0xae, 0x95, 0xfa,
7296 0xab, 0xdf, 0x12, 0xdb, 0xc0, 0x11, 0xf4, 0x92, 0xb9, 0xd7, 0x05, 0x62,
7297 0xfd, 0xb5, 0x76, 0x04, 0x35, 0xe6, 0x81, 0xa2, 0xad, 0x48, 0x06, 0x8e,
7298 0x7a, 0xab, 0x4e, 0x2e, 0xde, 0x5f, 0xd2, 0x43, 0xce, 0xf0, 0x17, 0x49,
7299 0x31, 0x2c, 0x43, 0x6d, 0x0b, 0xa4, 0x7d, 0x39, 0xe6, 0x6d, 0x27, 0x94,
7300 0x50, 0x65, 0x52, 0x9e, 0xb5, 0x30, 0x8b, 0xcb, 0x5c, 0xa4, 0x43, 0xa3,
7301 0x08, 0x0a, 0x5a, 0x44, 0xaf, 0xd6, 0xbb, 0xc2, 0x72, 0x60, 0x53, 0xa1,
7302 0x83, 0x73, 0x10, 0x84, 0x69, 0x9a, 0x05, 0x57, 0x31, 0x6a, 0xf6, 0xc4,
7303 0x39, 0x7e, 0xa9, 0x9e, 0x72, 0x62, 0xa2, 0xe0, 0x09, 0x65, 0x9b, 0x09,
7304 0xe0, 0x90, 0x78, 0x57, 0x54, 0xa4, 0x57, 0xd7, 0xb0, 0x30, 0x30, 0x8f,
7305 0xbe, 0x7d, 0x4f, 0x7e, 0x04, 0x03, 0xbf, 0x52, 0x5b, 0x1a, 0x3f, 0x57,
7306 0x82, 0x50, 0x2f, 0x4c, 0x26, 0xb0, 0xd6, 0x21, 0x73, 0xe5, 0xa3, 0xc9,
7307 0x6f, 0xea, 0x0a, 0xac, 0x34, 0x23, 0xfe, 0x51, 0x81, 0x38, 0xa7, 0x39,
7308 0x79, 0x59, 0x01, 0x54, 0x82, 0xae, 0x45, 0x39, 0xc9, 0xbd, 0x34, 0xb8,
7309 0x61, 0xa5, 0x5e, 0xbb, 0xe1, 0xc6, 0xd4, 0xff, 0x89, 0x0c, 0xd3, 0x21,
7310 0x6b, 0xa1, 0x62, 0x61, 0x66, 0x81, 0x3d, 0x0d, 0x84, 0x57, 0xd1, 0xcb,
7311 0x2f, 0x2a, 0xcb, 0x16, 0x30, 0xc4, 0x90, 0x37, 0x9a, 0xa8, 0xe4, 0x4e,
7312 0xc1, 0x83, 0x4c, 0x85, 0x89, 0x83, 0x20, 0xd8, 0xca, 0x6f, 0x79, 0x88,
7313 0xab, 0x58, 0x7a, 0x39, 0xe1, 0xdb, 0x1a, 0x0b, 0x86, 0x83, 0xe2, 0xb5,
7314 0xc0, 0xda, 0xa8, 0xd6, 0x02, 0xeb, 0xf4, 0xe2, 0xe6, 0x59, 0x3d, 0x49,
7315 0x8c, 0xdd, 0xaf, 0x64, 0x13, 0x02, 0x55, 0x9b, 0x50, 0x12, 0x5c, 0x63,
7316 0x0f, 0xcf, 0xa6, 0xe9, 0xa2, 0xf3, 0xd2, 0x24, 0x67, 0x22, 0xef, 0x78,
7317 0xcf, 0x7f, 0x45, 0x93, 0x23, 0x13, 0x85, 0xee, 0x20, 0xc1, 0x82, 0xd0,
7318 0xd1, 0x57, 0x62, 0x67, 0x0b, 0x2f, 0x0f, 0x13, 0x78, 0x62, 0x9a, 0x17,
7319 0x0f, 0xc0, 0x61, 0x97, 0xc0, 0x7f, 0xa3, 0x6b, 0xb5, 0xb4, 0xf1, 0x46,
7320 0xca, 0xc4, 0xc2, 0x1b, 0x14, 0x6a, 0x0b, 0x39, 0x81, 0x75, 0x4e, 0x4c,
7321 0xae, 0xe2, 0xf2, 0x2e, 0xac, 0xeb, 0x02, 0x62, 0x8d, 0x02, 0x55, 0xb9,
7322 0x92, 0xc0, 0x4e, 0xd7, 0xc6, 0xe5, 0xcd, 0xca, 0x01, 0x2e, 0x87, 0xf8,
7323 0x2b, 0xa5, 0x38, 0x39, 0x77, 0x96, 0x37, 0xbc, 0xe2, 0x17, 0x5d, 0x67,
7324 0xd2, 0x61, 0x21, 0x53, 0xde, 0x04, 0x85, 0xcc, 0x23, 0xa5, 0xcc, 0xe0,
7325 0x1b, 0x93, 0xbf, 0x2c, 0xd2, 0xc4, 0x4b, 0xc9, 0x87, 0x85, 0x52, 0xca,
7326 0x3e, 0x5a, 0xbc, 0x28, 0xe4, 0x5c, 0x5c, 0xf9, 0x51, 0x51, 0x14, 0x31,
7327 0x46, 0xc2, 0xc0, 0xf3, 0x45, 0xac, 0x5c, 0x1c, 0x0d, 0xbe, 0x69, 0x08,
7328 0x14, 0x4f, 0x84, 0xf8, 0x6d, 0x08, 0x30, 0x69, 0x94, 0xd9, 0x16, 0xc7,
7329 0x0a, 0xee, 0x34, 0xa0, 0xe5, 0x23, 0x76, 0x1a, 0x4c, 0xc4, 0xdb, 0x69,
7330 0x1e, 0x69, 0x97, 0xed, 0xb4, 0x00, 0xa3, 0x98, 0xf2, 0x45, 0x67, 0xaf,
7331 0x65, 0xb4, 0xbf, 0x08, 0x4b, 0x20, 0xb0, 0xc9, 0x68, 0x8f, 0x61, 0xe6,
7332 0x01, 0x6d, 0x2a, 0xbf, 0xde, 0x87, 0xe6, 0xb9, 0xca, 0x16, 0xa3, 0x1b,
7333 0xbc, 0x1d, 0xa6, 0xeb, 0xb9, 0xf2, 0x16, 0x93, 0xad, 0xe9, 0xed, 0x30,
7334 0xda, 0x5d, 0x2d, 0xcc, 0xba, 0xea, 0xae, 0x81, 0xf5, 0x7a, 0xe2, 0xae,
7335 0xd1, 0xcc, 0xb3, 0xb6, 0x5d, 0xe3, 0xa2, 0x05, 0x05, 0x96, 0xca, 0xe0,
7336 0x9c, 0x5a, 0x2d, 0xc7, 0xa6, 0x61, 0x05, 0x50, 0x4d, 0xbb, 0x0a, 0xbd,
7337 0x3f, 0x2d, 0x46, 0x7e, 0x1c, 0xce, 0xc0, 0x96, 0xb9, 0x05, 0xf8, 0x64,
7338 0xac, 0x4b, 0xf5, 0xec, 0xb8, 0x4f, 0x6f, 0xa1, 0x75, 0xb0, 0x7c, 0x03,
7339 0x8a, 0x25, 0x1f, 0xdf, 0xca, 0x81, 0xa8, 0x0e, 0x43, 0xa3, 0x95, 0x09,
7340 0xe6, 0xbc, 0x47, 0xf5, 0x7c, 0xbb, 0x47, 0x11, 0xfe, 0xef, 0xab, 0x29,
7341 0x5a, 0x0e, 0x52, 0x6d, 0x53, 0x1c, 0xa1, 0xa9, 0x41, 0x3a, 0x18, 0x2a,
7342 0x74, 0xa0, 0xb5, 0xa3, 0x3d, 0xbb, 0x34, 0x0d, 0xa7, 0x6a, 0x74, 0x6f,
7343 0x22, 0x54, 0x22, 0x34, 0xb7, 0x24, 0x10, 0xca, 0xa8, 0x8a, 0x12, 0x34,
7344 0x24, 0x25, 0x27, 0xd0, 0xe8, 0x95, 0x93, 0x62, 0x54, 0x8b, 0x07, 0x2d,
7345 0x60, 0x88, 0x95, 0x2b, 0x11, 0xf9, 0x36, 0x17, 0x9c, 0xe8, 0x7a, 0x6b,
7346 0x8b, 0x71, 0x08, 0x1f, 0x91, 0xba, 0x02, 0x27, 0x01, 0xb8, 0x38, 0xd3,
7347 0x00, 0x03, 0x41, 0x37, 0x32, 0x02, 0x82, 0xb2, 0x65, 0x7f, 0x4f, 0x61,
7348 0xe8, 0x10, 0x49, 0x56, 0xef, 0x28, 0x5e, 0xe5, 0xb5, 0x88, 0xfc, 0xb3,
7349 0x46, 0xa3, 0xb6, 0x71, 0x56, 0xf6, 0xc8, 0xc1, 0x32, 0x41, 0x78, 0xd4,
7350 0x43, 0xf3, 0xab, 0x67, 0xa4, 0xbf, 0x7a, 0xa7, 0x3d, 0xb3, 0x1c, 0xa2,
7351 0x97, 0x09, 0x43, 0x39, 0x70, 0x65, 0x25, 0x5c, 0x62, 0x8b, 0x26, 0xab,
7352 0xeb, 0x22, 0x5f, 0x5c, 0x5d, 0xcb, 0x90, 0x7e, 0x83, 0x56, 0x78, 0x84,
7353 0x87, 0xe0, 0x13, 0x33, 0x36, 0x46, 0x52, 0x50, 0x08, 0x88, 0x74, 0x67,
7354 0x3b, 0xb7, 0x68, 0x9d, 0xad, 0x5d, 0xf2, 0x33, 0x07, 0x10, 0xbf, 0x15,
7355 0xaf, 0x07, 0xa7, 0x21, 0x5d, 0x42, 0x31, 0x81, 0x9d, 0x5a, 0x6d, 0x4a,
7356 0xab, 0x01, 0x05, 0x72, 0xa5, 0x86, 0x83, 0x3a, 0x6e, 0x20, 0x7e, 0xb6,
7357 0x2e, 0x18, 0xd1, 0x52, 0x35, 0xb5, 0xb1, 0xf2, 0xea, 0xd5, 0x88, 0x9a,
7358 0x54, 0xd7, 0x5b, 0xab, 0xa6, 0xa8, 0xe0, 0x00, 0xf3, 0x9b, 0xbd, 0x1e,
7359 0xce, 0x40, 0x32, 0xa7, 0xcc, 0xa7, 0xcf, 0xe8, 0xd3, 0xbe, 0xb7, 0x7a,
7360 0x5e, 0xf5, 0xe9, 0xdf, 0x17, 0x60, 0x27, 0x1a, 0x5c, 0x12, 0x62, 0xe1,
7361 0x45, 0x36, 0xc6, 0x8e, 0xd1, 0xa4, 0x3f, 0x69, 0x03, 0x60, 0xec, 0xb5,
7362 0xc2, 0x69, 0x8b, 0xb8, 0xa2, 0x9c, 0xf3, 0x1f, 0x79, 0xd0, 0xbc, 0xa0,
7363 0x5b, 0xd7, 0x13, 0x07, 0x77, 0x77, 0x03, 0x9c, 0x64, 0xe6, 0x7c, 0x28,
7364 0xb4, 0x0b, 0xf3, 0x51, 0x4d, 0xbd, 0x18, 0x12, 0xea, 0x5f, 0x0e, 0x9c,
7365 0x32, 0xef, 0xe9, 0x5d, 0xbc, 0xed, 0x66, 0xf1, 0x27, 0xd1, 0x29, 0xf7,
7366 0x84, 0xb9, 0x7a, 0x1e, 0xb2, 0x2e, 0x32, 0x9b, 0xd4, 0x62, 0xd9, 0xf7,
7367 0xac, 0x71, 0xa2, 0xe8, 0xfa, 0x95, 0xe9, 0x78, 0x82, 0x9c, 0xc6, 0xcf,
7368 0x09, 0x61, 0xbe, 0x68, 0x79, 0x80, 0xeb, 0x26, 0x56, 0xa8, 0x05, 0x9a,
7369 0x89, 0xb9, 0xf7, 0xf7, 0xcd, 0xb7, 0xae, 0xd3, 0x7b, 0x7b, 0xab, 0xbf,
7370 0xdd, 0xdf, 0xe9, 0xef, 0x3e, 0x85, 0xd1, 0xec, 0x16, 0x5b, 0xce, 0x68,
7371 0xfa, 0xb0, 0x7f, 0x0f, 0x46, 0x7b, 0xf6, 0x9b, 0x30, 0xda, 0xb3, 0x7f,
7372 0x1b, 0x46, 0x7b, 0xf6, 0x6f, 0xc6, 0x68, 0x42, 0xef, 0x9d, 0x78, 0x6b,
7373 0xef, 0x60, 0x2f, 0xd9, 0xdb, 0x39, 0x38, 0xd8, 0x7f, 0xb6, 0xfd, 0x6b,
7374 0xb2, 0xdb, 0x9e, 0xc7, 0x6e, 0xcf, 0xfe, 0x5d, 0xd8, 0x4d, 0xec, 0x7d,
7375 0xc3, 0x6c, 0x89, 0xc7, 0x6e, 0x03, 0x49, 0xe5, 0xd4, 0x9e, 0x26, 0xc8,
7376 0x18, 0x7a, 0x17, 0x67, 0x0c, 0x48, 0x31, 0xa3, 0x96, 0x36, 0xb9, 0x3d,
7377 0xa1, 0x5a, 0x1a, 0x98, 0x6b, 0x3a, 0xbf, 0x19, 0xf4, 0xf4, 0x22, 0x32,
7378 0x13, 0x70, 0xb8, 0xc6, 0x62, 0xd6, 0x93, 0xf1, 0x13, 0x8c, 0x1e, 0xc2,
7379 0x3b, 0x5e, 0xe0, 0xfb, 0x73, 0x19, 0x54, 0x69, 0xa1, 0xdd, 0x42, 0xa0,
7380 0xf4, 0x40, 0xb8, 0x83, 0x43, 0x24, 0x57, 0x8f, 0x2f, 0xff, 0x22, 0x88,
7381 0xe7, 0x93, 0xc4, 0x70, 0x1a, 0xdb, 0x29, 0xfd, 0x3b, 0xb0, 0xa9, 0x52,
7382 0x7c, 0xfb, 0xe5, 0x4e, 0x7f, 0xfb, 0xd9, 0x0b, 0x44, 0x61, 0xeb, 0xda,
7383 0xdf, 0x77, 0x56, 0x8b, 0xb4, 0x34, 0xd9, 0x55, 0xe2, 0x2a, 0x75, 0x66,
7384 0xad, 0x3f, 0x37, 0x24, 0x37, 0x88, 0x57, 0x4d, 0x3a, 0x89, 0xc3, 0xa8,
7385 0x4b, 0xf9, 0x14, 0x18, 0x95, 0x38, 0xb3, 0x89, 0x86, 0xb7, 0x84, 0x4f,
7386 0xf3, 0xeb, 0x25, 0xad, 0xa4, 0x07, 0xe4, 0xcd, 0x2d, 0x1b, 0xdd, 0x7f,
7387 0xd1, 0x60, 0x36, 0xb8, 0x85, 0xaf, 0xf2, 0x37, 0x24, 0x35, 0x7b, 0xe8,
7388 0x75, 0xee, 0x51, 0xf3, 0xd2, 0xd5, 0x35, 0x9f, 0xfa, 0x24, 0xe4, 0x13,
7389 0x57, 0x71, 0x85, 0xbf, 0x15, 0x91, 0x7a, 0x55, 0xe1, 0x01, 0x23, 0x99,
7390 0xfe, 0xd9, 0xb5, 0x12, 0x86, 0x67, 0x3e, 0x25, 0xf4, 0xc2, 0x56, 0x32,
7391 0x98, 0xc0, 0xc0, 0x6f, 0x42, 0x03, 0x33, 0xfa, 0xaf, 0x4d, 0x00, 0xc4,
7392 0x5e, 0x7b, 0xe8, 0xdd, 0xf1, 0x69, 0x87, 0x60, 0xac, 0x84, 0xfb, 0x80,
7393 0x30, 0x4a, 0x02, 0xab, 0xd2, 0xf5, 0x37, 0xc5, 0x43, 0x33, 0x7f, 0xb3,
7394 0xe1, 0x44, 0x7b, 0x28, 0x8f, 0x82, 0x1a, 0x62, 0x23, 0x6a, 0x5f, 0x00,
7395 0xb4, 0x91, 0x50, 0x8b, 0xdd, 0x8a, 0x4d, 0x27, 0x2b, 0x45, 0x4d, 0x4d,
7396 0x0a, 0x24, 0xc8, 0x10, 0x45, 0x34, 0x4b, 0xd0, 0x97, 0x90, 0x96, 0xb3,
7397 0xd0, 0x91, 0x88, 0x16, 0x96, 0x2a, 0xe9, 0x34, 0x25, 0x1f, 0xbe, 0x1f,
7398 0x91, 0xa1, 0xa9, 0x2b, 0x93, 0x49, 0xa8, 0xe0, 0xcd, 0xa5, 0x38, 0x59,
7399 0xb8, 0x8a, 0xf0, 0x7b, 0x61, 0xb1, 0xfe, 0x34, 0x1d, 0x9d, 0xb2, 0xb4,
7400 0x9b, 0xbe, 0x0e, 0x58, 0x6f, 0x8b, 0xa7, 0x40, 0x33, 0xc5, 0xc4, 0x84,
7401 0xc5, 0xbc, 0xa4, 0xfa, 0x51, 0x46, 0x70, 0x8e, 0x28, 0x0e, 0x43, 0x4f,
7402 0x05, 0x91, 0xfc, 0x86, 0x7b, 0x3b, 0x07, 0x61, 0xf4, 0x6a, 0x8d, 0xf9,
7403 0x6a, 0x4d, 0xc1, 0x71, 0x6e, 0x18, 0xf2, 0x2f, 0x4d, 0x97, 0x9c, 0x34,
7404 0xbb, 0x4e, 0x10, 0x7d, 0x60, 0x2c, 0xc5, 0x13, 0x99, 0x5f, 0x53, 0x80,
7405 0xd6, 0x6b, 0x91, 0x53, 0x7a, 0x91, 0xca, 0x78, 0x42, 0x79, 0x8a, 0x9b,
7406 0x5c, 0x26, 0xa2, 0xa9, 0xbe, 0xf9, 0x7e, 0x77, 0x81, 0xfc, 0xdb, 0xef,
7407 0xfc, 0x67, 0x3b, 0x35, 0xee, 0x7f, 0x45, 0x2e, 0x9a, 0xc5, 0x6c, 0x2e,
7408 0xa8, 0x92, 0x0f, 0x00, 0xdc, 0x45, 0xe4, 0xeb, 0xfc, 0x96, 0x20, 0x20,
7409 0x38, 0x39, 0x44, 0x70, 0x91, 0x34, 0x1c, 0x60, 0x50, 0x50, 0x24, 0xf1,
7410 0xaa, 0xb5, 0x0d, 0x0a, 0x03, 0x8b, 0x90, 0x1f, 0x08, 0x6b, 0xe9, 0xf5,
7411 0x36, 0x69, 0x3d, 0xce, 0x6d, 0xe3, 0xeb, 0xee, 0xd3, 0xba, 0xeb, 0x2e,
7412 0x8c, 0x56, 0x80, 0x6d, 0x8c, 0x08, 0x61, 0x35, 0xd8, 0xc8, 0xa2, 0x86,
7413 0x90, 0xc0, 0x35, 0xf0, 0xd7, 0x89, 0x0b, 0xe4, 0x68, 0x1a, 0x42, 0x71,
7414 0x89, 0x0e, 0x47, 0x47, 0x80, 0xa5, 0xa4, 0x6e, 0xb4, 0x09, 0x91, 0x43,
7415 0x51, 0xc7, 0x8e, 0x4c, 0xbd, 0x23, 0xbd, 0x75, 0x16, 0xfc, 0x12, 0x65,
7416 0x8c, 0x64, 0xa1, 0xa6, 0x2e, 0xbf, 0x3b, 0x57, 0x39, 0xcb, 0xcb, 0x9d,
7417 0x1c, 0x57, 0x2e, 0x34, 0xcd, 0xbb, 0xa6, 0xe8, 0xde, 0x15, 0x9d, 0xc9,
7418 0x15, 0x27, 0x2f, 0x2c, 0xab, 0x05, 0xb6, 0xbd, 0x94, 0xa4, 0xdb, 0x0c,
7419 0xe6, 0xfa, 0x93, 0xd8, 0x50, 0x1e, 0x39, 0xc1, 0x2d, 0x3b, 0xbf, 0x8f,
7420 0xbe, 0x8e, 0x91, 0x5c, 0xe4, 0x16, 0x89, 0x93, 0x99, 0x17, 0x2e, 0x2c,
7421 0x73, 0x0c, 0xe1, 0x8b, 0x9b, 0x82, 0x7e, 0x77, 0x0b, 0xf6, 0xcb, 0x84,
7422 0xc9, 0x8d, 0x89, 0x5a, 0xd9, 0x18, 0x93, 0x73, 0xb4, 0x9b, 0x2d, 0xf9,
7423 0xf8, 0xfc, 0x32, 0x55, 0xa7, 0x9c, 0x72, 0x55, 0x82, 0x9a, 0xd7, 0xde,
7424 0xe4, 0x67, 0x6d, 0x52, 0xeb, 0x9e, 0x15, 0x61, 0x5d, 0xe9, 0x4e, 0x2f,
7425 0xf5, 0x43, 0x26, 0x7d, 0x18, 0xdc, 0x81, 0x42, 0xcf, 0x64, 0xaa, 0x20,
7426 0xcb, 0x5a, 0x35, 0x3a, 0x2a, 0xee, 0xe7, 0xe8, 0x67, 0x17, 0x48, 0x41,
7427 0x3e, 0x85, 0xf0, 0xbd, 0xb9, 0x7c, 0x71, 0x29, 0x88, 0xe3, 0x87, 0xd2,
7428 0x69, 0x66, 0x4b, 0x6a, 0x33, 0x86, 0x76, 0xb0, 0x2b, 0x25, 0xd8, 0x56,
7429 0xaa, 0x46, 0xa3, 0xb2, 0x35, 0x26, 0xf8, 0x6d, 0x0b, 0x71, 0xd0, 0x8c,
7430 0x4b, 0xd1, 0x08, 0x65, 0xbf, 0xde, 0xc0, 0x45, 0x52, 0x42, 0xa2, 0x75,
7431 0x0a, 0x8b, 0x2b, 0x90, 0x1e, 0xe6, 0x24, 0x6c, 0xa8, 0x46, 0x2f, 0x37,
7432 0x7a, 0xfa, 0x37, 0x69, 0xd7, 0xb6, 0x14, 0xd7, 0x3a, 0x09, 0x57, 0x5e,
7433 0x2e, 0x7e, 0xb7, 0xc9, 0x34, 0xbe, 0x01, 0x92, 0x3c, 0xa9, 0xfe, 0x53,
7434 0x2b, 0xac, 0xa9, 0x92, 0xb4, 0xb6, 0x5e, 0x55, 0x7c, 0xd5, 0x13, 0x2c,
7435 0xe5, 0x96, 0x5d, 0xe0, 0x14, 0xe7, 0xc8, 0x86, 0x67, 0xb0, 0x36, 0x2a,
7436 0x5e, 0x31, 0x01, 0x4c, 0x92, 0xae, 0x9a, 0x86, 0x2b, 0xf8, 0xd6, 0xe1,
7437 0x3a, 0x28, 0xac, 0xc6, 0x3e, 0xb9, 0x8c, 0xaf, 0xd8, 0xb9, 0x6d, 0x72,
7438 0xd2, 0x1d, 0x04, 0xcf, 0xe1, 0x3d, 0xb9, 0x19, 0xc9, 0x85, 0x0b, 0x44,
7439 0x80, 0x3d, 0x3f, 0x03, 0x99, 0xd3, 0x7b, 0x07, 0x54, 0xef, 0x79, 0x28,
7440 0xfc, 0x18, 0x69, 0x10, 0xe1, 0x60, 0x15, 0x11, 0x41, 0x32, 0xc3, 0xc7,
7441 0xf4, 0x43, 0x00, 0xea, 0xa3, 0xbc, 0x10, 0x14, 0x73, 0xcc, 0x1c, 0x07,
7442 0x61, 0x45, 0xe9, 0xf2, 0xa5, 0x81, 0x8b, 0xad, 0x67, 0x1b, 0x73, 0x9a,
7443 0xbc, 0x36, 0x97, 0x0a, 0xc1, 0x30, 0x62, 0x26, 0x9d, 0xd8, 0xf1, 0x02,
7444 0xa7, 0xc4, 0x35, 0x41, 0x52, 0x37, 0x5c, 0xa6, 0x66, 0x36, 0xd1, 0x91,
7445 0x2b, 0xe2, 0xfd, 0x94, 0x08, 0x58, 0x88, 0xd2, 0xf6, 0xc8, 0xa6, 0x0b,
7446 0x83, 0x6f, 0xf1, 0x41, 0xf2, 0x5d, 0x65, 0x49, 0x64, 0x25, 0x51, 0x6a,
7447 0x33, 0xf4, 0x2d, 0x46, 0x23, 0xf8, 0x2f, 0x9c, 0x02, 0xd1, 0xdb, 0x26,
7448 0xfd, 0xf9, 0x46, 0x0b, 0x9f, 0x1b, 0xda, 0x42, 0x88, 0x2b, 0x67, 0x16,
7449 0x9a, 0x5f, 0x62, 0x53, 0x45, 0x94, 0x53, 0xdc, 0x96, 0xf6, 0x74, 0x52,
7450 0x34, 0x39, 0x1a, 0x9f, 0xc7, 0xa5, 0xa6, 0x8b, 0x21, 0x37, 0xe2, 0x30,
7451 0x90, 0xf1, 0x2b, 0xb3, 0xbf, 0xcb, 0xa2, 0xf8, 0xc7, 0x13, 0x70, 0x06,
7452 0x2c, 0x71, 0x68, 0x23, 0xfc, 0x8c, 0xc7, 0x01, 0x6e, 0x45, 0x0c, 0x4d,
7453 0xd4, 0x1b, 0x33, 0x92, 0xd9, 0xd8, 0xdc, 0x20, 0x74, 0xe7, 0x63, 0x77,
7454 0x07, 0x5e, 0x5c, 0x72, 0x66, 0x38, 0x6c, 0x09, 0xa2, 0x84, 0x66, 0x71,
7455 0xd7, 0x38, 0x0a, 0x24, 0xcd, 0x51, 0x16, 0xa2, 0x1b, 0x05, 0x1c, 0xb0,
7456 0xfd, 0x2f, 0xf5, 0x8e, 0x25, 0xf8, 0xc2, 0x29, 0x63, 0x53, 0x31, 0x9f,
7457 0x77, 0x4d, 0x73, 0x5d, 0xce, 0xd1, 0xd4, 0xaa, 0xde, 0xb6, 0x55, 0x6d,
7458 0xc1, 0x15, 0xe4, 0x35, 0x2a, 0x39, 0xed, 0xa8, 0x56, 0xaa, 0xda, 0xad,
7459 0xeb, 0x21, 0x04, 0x52, 0xd5, 0x82, 0x04, 0xf4, 0x98, 0xb5, 0x23, 0xea,
7460 0xd1, 0x8e, 0xfc, 0x05, 0x8b, 0x27, 0x0c, 0xb0, 0x7c, 0xad, 0xa8, 0x60,
7461 0x63, 0x7b, 0x6b, 0xcb, 0xf6, 0xf1, 0x68, 0x69, 0xde, 0x21, 0xcb, 0xb6,
7462 0xb4, 0x87, 0x07, 0x41, 0x0d, 0x52, 0x3e, 0x9c, 0x01, 0x3d, 0x8e, 0xd3,
7463 0x2a, 0xd8, 0xd6, 0x08, 0x1f, 0x69, 0x7a, 0x69, 0x58, 0x2d, 0x8c, 0x3d,
7464 0x8d, 0x74, 0x77, 0x42, 0x9d, 0x3c, 0x80, 0xac, 0x27, 0x34, 0xc7, 0xf2,
7465 0xa0, 0x76, 0x4f, 0x18, 0xe3, 0x32, 0xe5, 0xbe, 0x5c, 0xba, 0x6d, 0xa2,
7466 0xaf, 0xee, 0x6d, 0x2c, 0xcf, 0xa0, 0x5e, 0x45, 0x3c, 0x2b, 0x86, 0xf1,
7467 0xe1, 0xf9, 0xf7, 0x97, 0x75, 0x6d, 0x09, 0x37, 0xe8, 0xf8, 0x0f, 0x07,
7468 0x45, 0x08, 0x56, 0x0a, 0x6c, 0x21, 0x1c, 0x95, 0x20, 0xf5, 0xbd, 0x62,
7469 0x9e, 0x7a, 0xe7, 0x90, 0xb8, 0xd4, 0x84, 0x47, 0xf3, 0xda, 0xd7, 0xe8,
7470 0xdd, 0x48, 0x08, 0x1a, 0x97, 0x15, 0xe1, 0x95, 0xb9, 0xc6, 0x5b, 0xc7,
7471 0x9d, 0xfe, 0xbe, 0x41, 0x81, 0x59, 0xb5, 0x87, 0x66, 0xad, 0x7b, 0x47,
7472 0xbd, 0x56, 0xf5, 0x79, 0x9d, 0x7f, 0x10, 0xd7, 0xb7, 0x47, 0xd0, 0xbd,
7473 0xcd, 0x23, 0x03, 0x01, 0x7f, 0x51, 0x72, 0x50, 0xc4, 0xd1, 0x40, 0x19,
7474 0x15, 0xdc, 0x0f, 0x58, 0x8a, 0x84, 0xd4, 0xf8, 0xe4, 0x3e, 0xa4, 0x4b,
7475 0x1b, 0x69, 0xa9, 0xd2, 0xe7, 0xa2, 0x4f, 0x9a, 0x3c, 0x89, 0x66, 0xe8,
7476 0x98, 0x63, 0xc7, 0xa1, 0xb4, 0x13, 0x34, 0x72, 0x2b, 0x93, 0x20, 0xc1,
7477 0x40, 0xc5, 0x54, 0x56, 0x40, 0x7e, 0x3a, 0x3e, 0x50, 0xc1, 0xbe, 0xee,
7478 0x12, 0x73, 0xc0, 0x0e, 0xc7, 0x12, 0x7b, 0xe6, 0xa2, 0xa0, 0xf3, 0xd1,
7479 0xe6, 0x4d, 0x30, 0x50, 0x05, 0xbf, 0x89, 0xae, 0x2f, 0x4a, 0xfd, 0x42,
7480 0xd2, 0x9d, 0x70, 0xd4, 0xd2, 0x54, 0x91, 0xf9, 0xd9, 0xc1, 0x74, 0xe6,
7481 0x90, 0xee, 0x8f, 0x57, 0xae, 0x11, 0x3e, 0x2d, 0x25, 0x0d, 0xf1, 0xf0,
7482 0x48, 0xb3, 0x62, 0xc6, 0xe8, 0xd1, 0xf2, 0x94, 0x88, 0xf2, 0x98, 0x05,
7483 0x21, 0xd4, 0xd3, 0xf4, 0x30, 0x11, 0x1d, 0xdb, 0xd2, 0x45, 0xb4, 0x38,
7484 0x84, 0xbf, 0xbc, 0x28, 0x2c, 0xe0, 0x35, 0xd8, 0x30, 0x29, 0xac, 0x6a,
7485 0xd6, 0x21, 0xcd, 0xc1, 0x1e, 0x38, 0xf2, 0x50, 0xef, 0x65, 0x17, 0x53,
7486 0x27, 0x2b, 0xe5, 0xb3, 0x30, 0x4a, 0xb3, 0x9b, 0xe5, 0x58, 0x83, 0x99,
7487 0x8b, 0x1c, 0xc8, 0x4e, 0x9c, 0x98, 0x69, 0x3d, 0x2b, 0xeb, 0x16, 0xac,
7488 0x8f, 0x37, 0xcc, 0x41, 0x92, 0x05, 0xe7, 0x4f, 0x2e, 0x94, 0x71, 0x42,
7489 0x35, 0x6c, 0x59, 0x65, 0x2b, 0x62, 0xe2, 0x19, 0xc6, 0x43, 0xb9, 0x44,
7490 0x06, 0xa9, 0x1c, 0x04, 0x64, 0xc4, 0x85, 0x90, 0x46, 0x05, 0x81, 0xe6,
7491 0xa9, 0x52, 0x05, 0x18, 0xdf, 0x13, 0xcc, 0x9b, 0x79, 0x34, 0x71, 0xb7,
7492 0xd7, 0xa9, 0x0f, 0xa8, 0x78, 0x95, 0x93, 0x8f, 0x52, 0xf8, 0x18, 0x49,
7493 0x38, 0x2a, 0xd2, 0x79, 0xc5, 0x4a, 0x63, 0x5b, 0x34, 0xbb, 0x11, 0xc7,
7494 0xbd, 0x9a, 0xe6, 0xc3, 0x78, 0x2a, 0xb0, 0x97, 0x52, 0x14, 0xa4, 0xc9,
7495 0x1e, 0xb5, 0xce, 0xac, 0x28, 0x3e, 0x91, 0x3d, 0xfd, 0xd0, 0x3c, 0xbe,
7496 0x72, 0xef, 0xa0, 0x4b, 0x69, 0x92, 0x77, 0xcb, 0x41, 0x22, 0xcd, 0x23,
7497 0xa8, 0xc3, 0x61, 0xd4, 0x9b, 0x74, 0x65, 0xf7, 0x2a, 0x6c, 0x2c, 0x95,
7498 0x54, 0x95, 0xce, 0x9e, 0xf2, 0xdc, 0x40, 0x84, 0xe1, 0x2d, 0xe0, 0xbe,
7499 0xf6, 0xe4, 0x5b, 0x93, 0xe4, 0x5f, 0xf1, 0x65, 0x52, 0x99, 0x4f, 0xf4,
7500 0x37, 0x69, 0x54, 0x2f, 0x49, 0xb6, 0xc1, 0xf2, 0x21, 0xec, 0xe9, 0xa5,
7501 0xee, 0xa9, 0x6e, 0x74, 0xcd, 0x0e, 0x23, 0x9c, 0x62, 0x22, 0x33, 0xd3,
7502 0x2a, 0x5d, 0x87, 0x50, 0x8c, 0xea, 0x5d, 0x84, 0x7a, 0x3d, 0x88, 0xae,
7503 0xc9, 0xcb, 0xb1, 0x84, 0x28, 0x0f, 0x08, 0x52, 0x2b, 0xd0, 0x42, 0x52,
7504 0xd3, 0x7c, 0x06, 0x93, 0x57, 0x37, 0x4d, 0xbb, 0x24, 0x35, 0x34, 0x16,
7505 0x5b, 0x82, 0xc6, 0x46, 0x2d, 0xb7, 0x37, 0xcc, 0xc7, 0xf7, 0xf5, 0xe6,
7506 0xd6, 0x3b, 0x01, 0xb9, 0x6a, 0x2e, 0x6d, 0x6b, 0x70, 0xed, 0x6d, 0x26,
7507 0x71, 0x6a, 0x88, 0x14, 0xa2, 0xd6, 0x11, 0x16, 0x22, 0xdb, 0x1c, 0x37,
7508 0x7e, 0x87, 0x68, 0x06, 0x4f, 0xa5, 0x06, 0x0a, 0x94, 0xb6, 0x77, 0x45,
7509 0xba, 0x4b, 0xb1, 0xd1, 0x8f, 0x4e, 0x33, 0xc9, 0x3c, 0x93, 0xba, 0x6e,
7510 0x2e, 0xf3, 0xcb, 0xdc, 0xfa, 0xc0, 0x00, 0x9b, 0x94, 0x92, 0x05, 0x4f,
7511 0xbd, 0xa0, 0x11, 0x23, 0x65, 0x64, 0x51, 0x97, 0x6d, 0x95, 0x0c, 0x17,
7512 0x02, 0xea, 0x97, 0xc4, 0x41, 0x7e, 0xca, 0x08, 0x86, 0x12, 0x35, 0xa9,
7513 0x81, 0x81, 0x4b, 0xa5, 0xc4, 0x43, 0xc1, 0x32, 0x70, 0x4e, 0xf7, 0x9c,
7514 0x92, 0x0a, 0x5c, 0xb1, 0x21, 0x7b, 0x99, 0x8a, 0x07, 0x02, 0x5e, 0xa3,
7515 0xb2, 0x12, 0x50, 0x69, 0x47, 0x49, 0x11, 0xd0, 0x42, 0xda, 0xbb, 0xac,
7516 0xff, 0xc7, 0x06, 0x2e, 0x85, 0x3c, 0xdf, 0xf4, 0x40, 0x72, 0xf1, 0x86,
7517 0xe4, 0xac, 0x90, 0x7f, 0x67, 0xa7, 0xa5, 0x4b, 0x40, 0x2a, 0x25, 0xba,
7518 0xf1, 0xb4, 0xc2, 0x34, 0x15, 0x4a, 0xef, 0xb2, 0xf6, 0x81, 0x70, 0x88,
7519 0x62, 0x37, 0x9b, 0x3e, 0x00, 0xf8, 0xa9, 0x8f, 0x05, 0xeb, 0x94, 0xbf,
7520 0xa5, 0x05, 0xd0, 0x0d, 0x68, 0x46, 0x2d, 0x71, 0x5d, 0x3c, 0x0d, 0x78,
7521 0x87, 0x46, 0xcd, 0xe3, 0x93, 0x36, 0x81, 0xe1, 0xbe, 0xd5, 0xd4, 0x07,
7522 0xc3, 0xf4, 0xcb, 0x3c, 0xf0, 0xe6, 0xa2, 0x30, 0x67, 0x93, 0xf2, 0x30,
7523 0x89, 0xcb, 0xca, 0xe0, 0x04, 0xe9, 0x12, 0xb1, 0x6b, 0xa1, 0xc9, 0xe9,
7524 0x26, 0x3b, 0xc9, 0x17, 0x91, 0x04, 0xc3, 0x47, 0x99, 0x4f, 0x9c, 0x86,
7525 0x58, 0x93, 0xd4, 0x8b, 0xd2, 0x44, 0x1e, 0x29, 0xf3, 0x78, 0x9c, 0xc4,
7526 0x53, 0x7e, 0x24, 0xce, 0xcd, 0x47, 0x03, 0x67, 0xcd, 0xa1, 0x7c, 0xd4,
7527 0xae, 0x08, 0xec, 0x83, 0x26, 0x7a, 0xae, 0xd9, 0x15, 0xd4, 0x43, 0x4e,
7528 0xf7, 0x45, 0xeb, 0xc6, 0xc0, 0xad, 0x20, 0x3b, 0x81, 0x36, 0x42, 0x08,
7529 0x5c, 0xfc, 0x91, 0x9b, 0x42, 0x2b, 0x2b, 0xf4, 0x94, 0x46, 0x33, 0xb7,
7530 0x69, 0xa4, 0x13, 0xc5, 0x2b, 0xe6, 0x24, 0x81, 0x67, 0x96, 0xe3, 0xfb,
7531 0x01, 0x7e, 0x9f, 0x25, 0xc0, 0x87, 0x63, 0x95, 0xde, 0xc4, 0x4b, 0x65,
7532 0x3c, 0x49, 0xb4, 0x11, 0xb9, 0x68, 0x45, 0xf9, 0x08, 0x48, 0xc7, 0x78,
7533 0x24, 0xf4, 0x59, 0x16, 0xc0, 0xee, 0x63, 0x65, 0x04, 0x97, 0xd0, 0x68,
7534 0xca, 0x28, 0xac, 0x44, 0x8b, 0x29, 0xa7, 0xe9, 0x5c, 0x33, 0xa8, 0xba,
7535 0x51, 0x22, 0x95, 0x70, 0xd8, 0x03, 0x99, 0x56, 0x63, 0xd1, 0xf3, 0x55,
7536 0x2c, 0x53, 0x95, 0xa2, 0xbd, 0x59, 0xa7, 0xe8, 0xb2, 0x5d, 0x6f, 0x8c,
7537 0xbe, 0xb7, 0xb5, 0x4d, 0x93, 0xdd, 0xdb, 0x7a, 0xbe, 0xf1, 0x94, 0xad,
7538 0xb3, 0x2a, 0xde, 0x69, 0xfd, 0x58, 0xa8, 0x9d, 0x02, 0xd3, 0x32, 0xe9,
7539 0x51, 0xd5, 0x66, 0xd8, 0x31, 0x78, 0xd9, 0xc8, 0xef, 0x23, 0x27, 0x20,
7540 0xde, 0x24, 0xa5, 0x9e, 0x02, 0xd9, 0x87, 0xa2, 0x00, 0x6e, 0x20, 0x4c,
7541 0xf8, 0xf2, 0x1a, 0xdb, 0x26, 0x7a, 0xda, 0xba, 0xbd, 0x87, 0x0b, 0xa5,
7542 0xf0, 0x4c, 0xe0, 0x85, 0x89, 0xe9, 0x56, 0x86, 0x84, 0x13, 0xc2, 0xd3,
7543 0x75, 0xea, 0x6f, 0x5a, 0x86, 0x1a, 0xa5, 0x85, 0x9d, 0x92, 0x80, 0x4c,
7544 0xc1, 0x9e, 0x7b, 0xe3, 0x71, 0x52, 0xfd, 0xe1, 0x75, 0x9a, 0xa5, 0xe5,
7545 0x35, 0x56, 0xfb, 0x62, 0xc6, 0xed, 0x55, 0xe2, 0x37, 0x1a, 0x07, 0xc5,
7546 0x42, 0xa4, 0x1a, 0xd8, 0xec, 0xd8, 0xec, 0x36, 0xc2, 0xfa, 0x49, 0x5e,
7547 0x68, 0xc1, 0xa8, 0xe1, 0x2f, 0xb9, 0x8b, 0x98, 0x7d, 0xcd, 0x10, 0x83,
7548 0xa6, 0x24, 0x61, 0x11, 0xe8, 0x6e, 0x7a, 0x2f, 0xf5, 0x67, 0xb8, 0x4a,
7549 0xb8, 0xd5, 0x2c, 0x14, 0xc8, 0xbb, 0xc1, 0x80, 0x78, 0x60, 0xc0, 0xb1,
7550 0xa3, 0xe8, 0x12, 0xf5, 0x22, 0xef, 0x3d, 0x31, 0x08, 0xbd, 0x8e, 0xdc,
7551 0x74, 0x3e, 0x00, 0x21, 0xb7, 0x85, 0x67, 0x27, 0xfa, 0x1d, 0x0a, 0xaa,
7552 0x81, 0x85, 0xcf, 0xbe, 0xc3, 0x94, 0xa3, 0x97, 0xe6, 0xe3, 0x0d, 0x42,
7553 0xc8, 0xc6, 0xe2, 0xfc, 0xd5, 0xd9, 0xca, 0x70, 0xc2, 0x8a, 0xdc, 0x55,
7554 0x8d, 0xe6, 0x3d, 0x14, 0xa5, 0x88, 0xac, 0x57, 0x37, 0xe5, 0x9a, 0x2a,
7555 0x07, 0x96, 0xbc, 0x27, 0x21, 0x0c, 0x72, 0x93, 0x53, 0x5a, 0xc3, 0x8b,
7556 0xa4, 0xaa, 0xfb, 0x9c, 0xc1, 0x23, 0x10, 0x53, 0x5c, 0xec, 0x32, 0x9c,
7557 0xa1, 0x2d, 0x07, 0x2f, 0x03, 0xa6, 0x0e, 0x23, 0xec, 0xb2, 0xe7, 0xd1,
7558 0x34, 0x64, 0xe7, 0x27, 0xe3, 0x47, 0x4e, 0x98, 0x14, 0x96, 0x76, 0x84,
7559 0x25, 0xfb, 0xad, 0xc8, 0x43, 0x0f, 0x51, 0xcd, 0xbe, 0x92, 0x56, 0x6a,
7560 0xae, 0xd1, 0xb4, 0x7e, 0x30, 0xf5, 0xa9, 0x6b, 0xf8, 0xc9, 0x34, 0xf9,
7561 0xfc, 0x4b, 0x2c, 0xcb, 0xec, 0xa0, 0x09, 0xb3, 0xb6, 0x1a, 0x81, 0x2d,
7562 0x18, 0x80, 0x4b, 0xdc, 0x17, 0xdb, 0x01, 0xe2, 0x4a, 0x82, 0x25, 0x79,
7563 0xfa, 0x3f, 0xe7, 0x3f, 0xc2, 0x21, 0x37, 0x82, 0x81, 0x3d, 0x7d, 0x7b,
7564 0x04, 0x44, 0x1f, 0x58, 0x40, 0x27, 0x79, 0x03, 0xc6, 0x69, 0xb2, 0x4e,
7565 0x57, 0x2e, 0xc3, 0x97, 0xec, 0xcd, 0x80, 0xc6, 0x20, 0x75, 0x6d, 0x54,
7566 0x33, 0x5d, 0xc3, 0xbc, 0x24, 0x93, 0x7a, 0x9a, 0x56, 0x18, 0x81, 0x9a,
7567 0x82, 0x3a, 0x7a, 0x06, 0x54, 0xc7, 0xf9, 0xad, 0x7d, 0xb9, 0x46, 0xac,
7568 0xbf, 0x76, 0xb8, 0xe6, 0x75, 0xbd, 0x95, 0x72, 0xe4, 0xb2, 0xab, 0xd2,
7569 0x3c, 0x5a, 0xfb, 0x13, 0x02, 0x2a, 0x60, 0xc3, 0x0d, 0x7e, 0x3b, 0xd9,
7570 0x3f, 0x3c, 0x2b, 0x4d, 0xb6, 0x17, 0xd9, 0xdc, 0x74, 0xf8, 0x73, 0x1f,
7571 0xc4, 0x7e, 0x54, 0xab, 0xcb, 0x63, 0x70, 0x7c, 0x6a, 0x43, 0x6c, 0x5f,
7572 0x5a, 0x0d, 0xea, 0xb5, 0x92, 0x0a, 0x4d, 0x29, 0xac, 0xe0, 0xf7, 0xaf,
7573 0xa0, 0x52, 0x22, 0xeb, 0x8d, 0xe6, 0x09, 0xf1, 0x4c, 0x28, 0x95, 0x67,
7574 0x34, 0x22, 0x74, 0x4f, 0x3a, 0x24, 0xe0, 0xcb, 0xab, 0x2b, 0xc6, 0x98,
7575 0xa3, 0x37, 0xce, 0x9b, 0x7a, 0x2c, 0xbc, 0x7e, 0x34, 0x01, 0x35, 0x98,
7576 0x0c, 0x3e, 0x34, 0xb4, 0xda, 0x61, 0x1f, 0x1e, 0xc3, 0x86, 0x32, 0x9b,
7577 0x0e, 0x0a, 0xc4, 0xce, 0x53, 0x59, 0xcc, 0x72, 0x94, 0xad, 0x3d, 0x3e,
7578 0x74, 0x01, 0x8a, 0xc2, 0xfc, 0xc4, 0x0c, 0x25, 0x1c, 0x85, 0xce, 0x7c,
7579 0xfa, 0xd4, 0x04, 0x70, 0x27, 0x31, 0xf0, 0xd8, 0xbd, 0xd4, 0x4a, 0x4c,
7580 0x11, 0x52, 0x46, 0x1c, 0x70, 0xde, 0x11, 0x3a, 0xa5, 0x88, 0xab, 0xa0,
7581 0x79, 0xf4, 0x60, 0xb1, 0x78, 0x71, 0x32, 0x51, 0x5f, 0x05, 0xfe, 0x83,
7582 0xdc, 0x59, 0x82, 0xeb, 0x31, 0xd6, 0xfa, 0x0c, 0x42, 0xf6, 0x68, 0xae,
7583 0x98, 0xe0, 0x7c, 0x68, 0x3b, 0x2d, 0x36, 0x41, 0xed, 0x71, 0x46, 0x48,
7584 0x25, 0x74, 0x82, 0xd8, 0x38, 0x85, 0x0b, 0xea, 0xd7, 0xe4, 0x27, 0x15,
7585 0x40, 0x9b, 0x44, 0x71, 0x86, 0x53, 0x69, 0x62, 0xd0, 0xee, 0xec, 0xbe,
7586 0x78, 0x11, 0x0c, 0x70, 0x30, 0xf6, 0x32, 0x70, 0x35, 0x92, 0xc9, 0x03,
7587 0xf3, 0x96, 0xbe, 0x86, 0xc8, 0xb2, 0xa5, 0xba, 0xf5, 0xb1, 0x21, 0x55,
7588 0x8c, 0x4f, 0xf5, 0xe3, 0x6c, 0x24, 0x06, 0x67, 0xa8, 0x0b, 0xc8, 0x99,
7589 0x46, 0x46, 0x33, 0x9e, 0x21, 0x40, 0x85, 0x16, 0xbd, 0x29, 0x91, 0x5a,
7590 0x5a, 0x81, 0x91, 0x96, 0x46, 0x87, 0x02, 0xcb, 0xc1, 0x42, 0x33, 0xa9,
7591 0x46, 0x84, 0xcc, 0x41, 0x65, 0x55, 0xcc, 0xba, 0x2d, 0xb0, 0x88, 0x6b,
7592 0x91, 0xa6, 0x87, 0x0f, 0x15, 0x94, 0xb9, 0x4b, 0x5b, 0x2b, 0xbd, 0x6b,
7593 0x34, 0x60, 0x61, 0x00, 0x8c, 0x0c, 0x41, 0xc1, 0xd2, 0x2b, 0x02, 0xfe,
7594 0x68, 0x0c, 0x47, 0xe8, 0xa5, 0x57, 0x49, 0xe5, 0x03, 0x59, 0x39, 0xa0,
7595 0x0c, 0x4b, 0x06, 0x0f, 0x78, 0xba, 0x04, 0x86, 0xeb, 0x50, 0x3a, 0xd1,
7596 0xa7, 0x13, 0xdd, 0xf1, 0xa0, 0x88, 0xdf, 0xa2, 0x1f, 0xf4, 0x4b, 0x8e,
7597 0xaa, 0x1c, 0xb2, 0xf5, 0xa4, 0xbd, 0x3e, 0xd0, 0x91, 0xf3, 0x65, 0xb0,
7598 0x75, 0x9a, 0xc1, 0x65, 0xe0, 0x4e, 0x5e, 0x55, 0x15, 0x8f, 0xae, 0xed,
7599 0x61, 0x4e, 0xf8, 0x1a, 0xa6, 0x97, 0x8f, 0xd0, 0x97, 0x1c, 0x1f, 0xd3,
7600 0x50, 0xcf, 0xd6, 0x43, 0x13, 0xae, 0xc3, 0xaa, 0x61, 0xc1, 0x35, 0xc1,
7601 0xf9, 0x84, 0x28, 0x51, 0x8a, 0x59, 0x86, 0x42, 0x07, 0xae, 0xf6, 0xce,
7602 0x3a, 0xbc, 0xd7, 0xa1, 0x93, 0xbf, 0xf6, 0xb6, 0x58, 0xc0, 0xf6, 0xa1,
7603 0x61, 0x1a, 0xdb, 0x76, 0x36, 0xee, 0xa1, 0x18, 0x9b, 0x88, 0x5f, 0x08,
7604 0x9b, 0xbe, 0x87, 0xef, 0x69, 0xa1, 0x4c, 0x89, 0xb3, 0xae, 0xf2, 0x84,
7605 0x67, 0x49, 0x0d, 0x38, 0x98, 0xb4, 0x87, 0x94, 0xe4, 0x50, 0x15, 0x0b,
7606 0x44, 0xa1, 0x66, 0x57, 0x2b, 0x3d, 0xc9, 0x2f, 0xc7, 0xc2, 0x63, 0xa2,
7607 0x5b, 0x7f, 0xe3, 0x14, 0x0d, 0x4e, 0x5a, 0x33, 0x22, 0xb1, 0xf4, 0x19,
7608 0x64, 0xbf, 0x9d, 0xf4, 0xbe, 0x64, 0xc3, 0x27, 0xd0, 0x9c, 0x98, 0x9c,
7609 0x98, 0xe8, 0xa4, 0x2f, 0xd3, 0x9f, 0xd9, 0x26, 0x10, 0xfc, 0x00, 0x8d,
7610 0x15, 0x93, 0x5b, 0x3c, 0xc1, 0x18, 0xd3, 0x2b, 0x60, 0x28, 0xae, 0x4a,
7611 0x61, 0x14, 0xbf, 0xb5, 0xd2, 0xef, 0x3f, 0x62, 0x90, 0x41, 0xf8, 0x80,
7612 0x43, 0x2b, 0xa2, 0x48, 0xae, 0x16, 0x78, 0x64, 0x12, 0x99, 0xd6, 0xb5,
7613 0x91, 0xac, 0x5e, 0x31, 0x4f, 0xe7, 0x5a, 0x73, 0xe2, 0xd5, 0xe1, 0xc1,
7614 0x5d, 0x1b, 0xf4, 0xca, 0x19, 0x50, 0xab, 0x5a, 0x64, 0x9c, 0x4a, 0x44,
7615 0x3d, 0x65, 0x16, 0xc3, 0x9f, 0x28, 0x04, 0x9f, 0xcb, 0x9b, 0xd3, 0xb4,
7616 0x32, 0x8b, 0x26, 0x13, 0x25, 0x13, 0xcf, 0x69, 0x9a, 0x50, 0x29, 0x17,
7617 0xc6, 0x3a, 0xb9, 0x28, 0xa9, 0x52, 0x09, 0xc0, 0x68, 0xd9, 0xe8, 0x5f,
7618 0xff, 0x93, 0x93, 0x58, 0x45, 0xba, 0x2b, 0x51, 0x85, 0xa6, 0xd0, 0x1c,
7619 0x8e, 0x1a, 0x2d, 0xaa, 0x26, 0xed, 0xf6, 0xfc, 0x64, 0x7d, 0x1c, 0x3b,
7620 0xd6, 0xe0, 0xab, 0x2a, 0x98, 0x09, 0xc5, 0xa8, 0xe0, 0xbd, 0x09, 0x53,
7621 0x06, 0xd6, 0xeb, 0x3e, 0x04, 0xf0, 0xc4, 0x46, 0xdd, 0x4f, 0xc6, 0x8d,
7622 0x89, 0xa2, 0xaf, 0xf5, 0x74, 0xe3, 0x42, 0x16, 0x2c, 0x0b, 0x99, 0x89,
7623 0x40, 0xab, 0x5b, 0xbc, 0x5d, 0x31, 0x18, 0xd6, 0x40, 0x76, 0x22, 0xed,
7624 0xd7, 0xc2, 0x4d, 0xf8, 0x48, 0x2e, 0x18, 0xbc, 0xc5, 0x02, 0x13, 0x22,
7625 0x70, 0x8f, 0x98, 0xee, 0x99, 0x46, 0x80, 0x90, 0x7a, 0x5d, 0xc4, 0x20,
7626 0x2f, 0x7f, 0x9a, 0x5f, 0xb5, 0xb6, 0x8c, 0xc5, 0xcb, 0xa9, 0xe3, 0x91,
7627 0x87, 0xd4, 0x28, 0xc7, 0xef, 0xeb, 0x48, 0xe6, 0xf3, 0xf9, 0x97, 0xb5,
7628 0x01, 0x03, 0x47, 0xf0, 0xa6, 0x00, 0xf8, 0x8f, 0xae, 0xd2, 0x56, 0x22,
7629 0x30, 0x15, 0x28, 0x79, 0xce, 0x14, 0xff, 0x97, 0xd7, 0x79, 0x22, 0x2b,
7630 0x97, 0x91, 0x5f, 0xd3, 0xca, 0x0d, 0x4d, 0x8b, 0x0a, 0xd6, 0x46, 0xb7,
7631 0x4f, 0x99, 0xce, 0xf4, 0x3f, 0xe7, 0xd7, 0x19, 0xfe, 0x81, 0xc3, 0xe3,
7632 0xe8, 0x9f, 0x6f, 0x07, 0x53, 0xc9, 0x37, 0x97, 0x2f, 0x18, 0x4d, 0x15,
7633 0x0f, 0x21, 0xa9, 0xb2, 0x76, 0x64, 0x5a, 0xcd, 0x91, 0xdb, 0x27, 0xd8,
7634 0xb0, 0xc8, 0x8f, 0x5e, 0xc5, 0x24, 0x5e, 0xa9, 0x0b, 0x96, 0x73, 0x33,
7635 0x17, 0x92, 0x06, 0x85, 0x61, 0x6a, 0x4e, 0x06, 0x6a, 0xd2, 0x10, 0x50,
7636 0xff, 0xdb, 0x5f, 0xbc, 0x83, 0x51, 0xcf, 0xfb, 0xcf, 0x0f, 0xaf, 0x17,
7637 0x57, 0xd4, 0x64, 0x07, 0x83, 0x9f, 0x9d, 0x47, 0xbd, 0xb5, 0xfa, 0x9c,
7638 0xd9, 0x3b, 0x58, 0x39, 0x35, 0x58, 0x84, 0x86, 0x52, 0x53, 0x1c, 0x22,
7639 0x8b, 0x6a, 0x8f, 0x90, 0xf2, 0x21, 0x41, 0xba, 0xc6, 0x6a, 0x6d, 0x97,
7640 0x89, 0x26, 0xb0, 0xcf, 0x16, 0x5e, 0x75, 0xc9, 0x1b, 0xdc, 0x26, 0xc3,
7641 0xcf, 0xbf, 0xc4, 0x48, 0xc5, 0x5d, 0xff, 0xba, 0x9a, 0x4d, 0x59, 0x3f,
7642 0x46, 0xc2, 0x6d, 0xe2, 0x9f, 0x9d, 0x68, 0x89, 0xce, 0x07, 0x4a, 0x68,
7643 0xeb, 0xb0, 0x0e, 0xdc, 0x93, 0x33, 0xe4, 0x24, 0xcf, 0x97, 0x8e, 0x88,
7644 0x54, 0x61, 0x57, 0x3c, 0xd1, 0xc5, 0xa9, 0xcb, 0xe5, 0x6a, 0x55, 0x9b,
7645 0xd2, 0xc9, 0x2c, 0x61, 0x0f, 0x18, 0xde, 0x0b, 0x21, 0x30, 0x55, 0x4a,
7646 0x36, 0x61, 0xd7, 0x90, 0x9e, 0x34, 0x9f, 0x77, 0x15, 0x11, 0x29, 0x2d,
7647 0x97, 0x90, 0x46, 0x4d, 0x2d, 0x69, 0xdd, 0xf1, 0x27, 0x73, 0x3b, 0xfe,
7648 0x80, 0x5d, 0x4c, 0x3d, 0xcc, 0x97, 0xbc, 0xcd, 0xe9, 0xc4, 0x3c, 0x71,
7649 0x93, 0xd2, 0xca, 0x34, 0xc3, 0x24, 0x5a, 0xeb, 0xa2, 0x0a, 0x0f, 0xd6,
7650 0xc8, 0x1a, 0x39, 0x99, 0x35, 0x3f, 0xf6, 0xef, 0x8b, 0x5c, 0x44, 0x5b,
7651 0x34, 0xce, 0x3d, 0x75, 0x16, 0x6b, 0x5a, 0xe9, 0x8a, 0x92, 0x66, 0xff,
7652 0xe0, 0xc4, 0x7f, 0xe8, 0xd0, 0xd4, 0xbb, 0xf8, 0xd7, 0x0f, 0x1d, 0x3b,
7653 0xfb, 0x1f, 0x68, 0x71, 0xfe, 0x94, 0x66, 0x7f, 0xc2, 0x37, 0xf8, 0xa1,
7654 0xf3, 0xd4, 0x35, 0x16, 0x53, 0xd4, 0x79, 0x8a, 0xf3, 0x90, 0xda, 0x33,
7655 0x3a, 0x6b, 0x51, 0x3b, 0x7a, 0x92, 0x9b, 0x8d, 0x95, 0x4e, 0x8c, 0x6e,
7656 0x64, 0xa9, 0x06, 0x72, 0xd9, 0x12, 0x06, 0xe8, 0x62, 0xe9, 0x80, 0x76,
7657 0xdd, 0xbd, 0xe7, 0xa7, 0xb4, 0x17, 0x20, 0x8d, 0x8d, 0xcd, 0x4e, 0xda,
7658 0x5d, 0x6a, 0xbb, 0xd4, 0x10, 0x1b, 0x29, 0xe5, 0xd9, 0xec, 0x1e, 0xfb,
7659 0x07, 0x8f, 0xb9, 0xdd, 0x3b, 0x68, 0xfe, 0x0a, 0x4f, 0x20, 0x8f, 0x12,
7660 0x8d, 0x21, 0x1b, 0x99, 0xa0, 0xda, 0xa5, 0x42, 0x91, 0x80, 0x06, 0x32,
7661 0x4e, 0xc4, 0xe3, 0x73, 0x6e, 0xc2, 0xc0, 0x45, 0xc1, 0x34, 0xa3, 0x32,
7662 0x99, 0xa5, 0xa0, 0xc1, 0x53, 0x78, 0x69, 0xca, 0xb6, 0xed, 0x26, 0x8a,
7663 0x7f, 0xaa, 0xda, 0x2e, 0xe7, 0x31, 0xfa, 0xcd, 0xd1, 0x33, 0x23, 0x66,
7664 0x2f, 0xbf, 0x26, 0x13, 0x66, 0x09, 0x0f, 0xaf, 0xe1, 0x90, 0x45, 0xf9,
7665 0x79, 0x07, 0x94, 0x9f, 0x3f, 0x61, 0xa0, 0x24, 0xc9, 0xfe, 0x04, 0x8c,
7666 0xb4, 0x80, 0xa5, 0xb2, 0xbb, 0xf2, 0xae, 0x37, 0xbb, 0x87, 0x49, 0xaf,
7667 0x3d, 0xb4, 0x33, 0x47, 0x5c, 0x3f, 0xa9, 0x19, 0x5b, 0xcd, 0x4c, 0x5a,
7668 0xde, 0x92, 0xd2, 0xf5, 0x82, 0x37, 0x9c, 0x5e, 0xf3, 0x79, 0xd3, 0x49,
7669 0x46, 0x08, 0x71, 0x1e, 0xac, 0x91, 0x15, 0xab, 0x64, 0x7f, 0x7d, 0x7e,
7670 0xfe, 0x97, 0x3f, 0xe9, 0x00, 0x3f, 0x74, 0xbe, 0xeb, 0xf1, 0xa7, 0x04,
7671 0x89, 0x78, 0x10, 0x9d, 0xff, 0x65, 0x75, 0xce, 0x5d, 0xf6, 0x80, 0x2f,
7672 0xf9, 0x17, 0x62, 0xe3, 0x65, 0xc3, 0x52, 0xf5, 0x8e, 0xde, 0x04, 0x7a,
7673 0x4e, 0x72, 0x4f, 0x30, 0x35, 0x64, 0xb1, 0xcf, 0xe7, 0x08, 0xde, 0xa3,
7674 0x28, 0x80, 0x15, 0xa3, 0x00, 0x92, 0xd2, 0x38, 0xcc, 0xc9, 0xb5, 0x50,
7675 0xf9, 0x7d, 0xb4, 0xa9, 0x8d, 0xef, 0xdf, 0x85, 0x97, 0x28, 0xa5, 0x5d,
7676 0x14, 0xdc, 0x7a, 0xc6, 0xb1, 0x66, 0xd2, 0x39, 0xbd, 0xea, 0x4e, 0x30,
7677 0x81, 0xc7, 0xa3, 0xab, 0x42, 0xf7, 0xf3, 0x6f, 0xa4, 0x6c, 0x51, 0x67,
7678 0x02, 0xb4, 0x9b, 0xd6, 0xfe, 0xb0, 0x46, 0xc3, 0x61, 0x34, 0x99, 0xce,
7679 0x3f, 0x8a, 0x52, 0x72, 0xd3, 0x8a, 0x3f, 0x85, 0xa2, 0xb6, 0x92, 0xa8,
7680 0x22, 0x70, 0x09, 0x93, 0x7c, 0x3a, 0x96, 0x00, 0x32, 0x70, 0x38, 0xaf,
7681 0xb0, 0x9a, 0x40, 0xa8, 0x47, 0x20, 0x21, 0x24, 0xa8, 0x2c, 0x8f, 0x0d,
7682 0xa5, 0x0d, 0x48, 0x66, 0x89, 0x78, 0x5c, 0x9d, 0x64, 0xba, 0x98, 0xd9,
7683 0x1c, 0x26, 0x32, 0x1b, 0x26, 0xe4, 0x9c, 0x52, 0xac, 0xba, 0x9e, 0x44,
7684 0x1b, 0x9a, 0xb4, 0x23, 0xcf, 0x6a, 0x7d, 0x8b, 0x50, 0x6a, 0xb3, 0xc0,
7685 0xd5, 0x61, 0xb1, 0xd5, 0x1b, 0xd4, 0xf1, 0x4c, 0x50, 0x4b, 0x73, 0xd5,
7686 0x29, 0xfa, 0x1e, 0x87, 0x5f, 0x96, 0xf6, 0xab, 0x6a, 0x08, 0xfe, 0xce,
7687 0x8a, 0xfe, 0x20, 0xd1, 0x09, 0xbd, 0x2c, 0x16, 0x2d, 0x4a, 0xd6, 0xab,
7688 0xef, 0xdd, 0xf0, 0x9d, 0xe4, 0x36, 0xf7, 0xb6, 0x0f, 0x8c, 0x75, 0x1e,
7689 0xcb, 0xe5, 0xe1, 0xe1, 0x5d, 0x68, 0x6f, 0xcd, 0x15, 0x2a, 0x85, 0xfc,
7690 0x4b, 0xc6, 0xdf, 0x31, 0xe3, 0xfb, 0x80, 0x61, 0xb1, 0x34, 0xe4, 0x0e,
7691 0x3f, 0x16, 0xe1, 0x33, 0x4d, 0x99, 0x92, 0x71, 0x95, 0x5b, 0x17, 0xa9,
7692 0xeb, 0x1b, 0x90, 0xcc, 0x6f, 0xc6, 0xda, 0x66, 0x18, 0xdd, 0x80, 0x49,
7693 0x3f, 0xe6, 0x1c, 0x47, 0x7e, 0x0f, 0x0f, 0xb1, 0xaf, 0xc7, 0x87, 0xb8,
7694 0xf0, 0x55, 0x3e, 0xc3, 0xae, 0x9e, 0xe3, 0x03, 0xce, 0x16, 0x21, 0x68,
7695 0x60, 0x42, 0x06, 0x4e, 0x5d, 0xe4, 0x05, 0x0b, 0x2e, 0x18, 0x6e, 0x22,
7696 0x66, 0x7a, 0xe5, 0x7a, 0x8f, 0xa2, 0x53, 0x45, 0x3a, 0x1b, 0x93, 0xed,
7697 0x21, 0x9b, 0x61, 0x7d, 0x4d, 0xbc, 0x25, 0xf8, 0xb0, 0x98, 0xa3, 0x5f,
7698 0xec, 0xb3, 0x8e, 0x11, 0x10, 0x91, 0x5f, 0xbf, 0x17, 0x50, 0x29, 0x0e,
7699 0x48, 0x8c, 0x9b, 0x3d, 0xc1, 0xf0, 0xef, 0x84, 0xfe, 0xae, 0xb6, 0x30,
7700 0x77, 0xad, 0xa8, 0x41, 0xbe, 0xfb, 0x96, 0xaf, 0x43, 0x5f, 0x19, 0x8c,
7701 0x0d, 0x4e, 0x5b, 0xf6, 0x17, 0x47, 0x6b, 0x9f, 0x6f, 0xac, 0xb5, 0x77,
7702 0x37, 0x33, 0xaa, 0x73, 0x1d, 0x0d, 0x5e, 0x93, 0x45, 0x4a, 0x02, 0xd6,
7703 0x85, 0xa1, 0xc9, 0x59, 0x34, 0xc3, 0x1c, 0xb8, 0x84, 0x56, 0x92, 0x2a,
7704 0x06, 0xca, 0x2a, 0x84, 0xec, 0xc2, 0x98, 0xb7, 0x69, 0x46, 0xfb, 0x92,
7705 0xd1, 0xbb, 0x99, 0xbd, 0xdd, 0x78, 0x30, 0x77, 0xc9, 0x2a, 0x0f, 0x5c,
7706 0x35, 0xdb, 0xf7, 0x9c, 0x63, 0x58, 0x10, 0xbb, 0x59, 0xab, 0x83, 0xc3,
7707 0x71, 0x51, 0x2c, 0xd3, 0xa9, 0xd7, 0x3e, 0x5f, 0xe7, 0xb3, 0xc9, 0x3a,
7708 0xc8, 0x9c, 0x67, 0xaf, 0x45, 0x3f, 0x04, 0xd1, 0xf0, 0xe8, 0x46, 0x67,
7709 0x3a, 0xc2, 0xac, 0x4b, 0x2f, 0x8f, 0x0e, 0x31, 0x84, 0xf5, 0x05, 0x85,
7710 0x2f, 0xe5, 0xfa, 0xc3, 0x4d, 0xfa, 0xa8, 0xa1, 0x05, 0x2f, 0x1d, 0x05,
7711 0x16, 0x88, 0xfe, 0xfd, 0x12, 0x2f, 0x57, 0x23, 0x60, 0x2d, 0xea, 0xf7,
7712 0x41, 0xfc, 0x94, 0xb3, 0x26, 0x70, 0x89, 0x87, 0xcc, 0x82, 0x7c, 0x29,
7713 0xcb, 0xaf, 0xe0, 0xd3, 0xe4, 0xa2, 0x51, 0x73, 0x99, 0x7d, 0x89, 0xfc,
7714 0x55, 0xf1, 0x39, 0xe6, 0x94, 0x9a, 0x8c, 0xf3, 0x28, 0x09, 0x34, 0x59,
7715 0x1e, 0x9b, 0x8a, 0x24, 0xf1, 0xc5, 0x21, 0x27, 0xbc, 0x18, 0xa6, 0xe2,
7716 0x83, 0x67, 0xd4, 0x4e, 0xd3, 0x94, 0x92, 0xd1, 0x6a, 0xe1, 0x50, 0x0f,
7717 0x37, 0xff, 0xa0, 0x34, 0x6a, 0x8c, 0x36, 0xd2, 0xf7, 0xc6, 0x26, 0x91,
7718 0xb9, 0xf5, 0x4e, 0x24, 0xd2, 0x61, 0xf2, 0x56, 0x9f, 0xe3, 0x73, 0x0c,
7719 0x24, 0xbc, 0x97, 0x66, 0x27, 0x7d, 0xc4, 0xa2, 0x17, 0x3d, 0xbc, 0xce,
7720 0xfa, 0xe7, 0x95, 0xdb, 0xeb, 0x29, 0x76, 0x5d, 0x51, 0xfb, 0x7a, 0x94,
7721 0xec, 0x1f, 0xc0, 0x68, 0xc1, 0x37, 0x1b, 0xc6, 0x65, 0xf2, 0x6c, 0x8f,
7722 0x1f, 0xc9, 0x44, 0x2a, 0x75, 0xb3, 0x5b, 0x67, 0xaa, 0x05, 0x09, 0xab,
7723 0xbd, 0x50, 0x53, 0x03, 0x23, 0x34, 0x3f, 0x54, 0xbf, 0xc0, 0x6e, 0xaa,
7724 0xb8, 0x9c, 0x13, 0xcf, 0x50, 0x50, 0x15, 0xaf, 0x2a, 0x42, 0xbb, 0x79,
7725 0xfe, 0xcc, 0x99, 0x74, 0xff, 0x01, 0xa3, 0xbb, 0x29, 0x3e, 0xe5, 0x1d,
7726 0x9b, 0xef, 0x64, 0xd8, 0xd5, 0x8b, 0x27, 0xa3, 0xdb, 0x82, 0x9b, 0x48,
7727 0xc8, 0x4b, 0x1a, 0x47, 0xe1, 0x43, 0x1b, 0xc8, 0xdd, 0x01, 0x7f, 0x52,
7728 0xd6, 0x69, 0x3e, 0x78, 0x29, 0x53, 0x3b, 0x56, 0x8f, 0xde, 0xcf, 0x93,
7729 0x60, 0xc6, 0x7e, 0x98, 0xaf, 0x31, 0x1e, 0x30, 0x59, 0x14, 0x74, 0xe6,
7730 0xc8, 0x65, 0xac, 0x1a, 0x8c, 0x13, 0x06, 0xaf, 0x11, 0x4d, 0xfc, 0xed,
7731 0xd1, 0xbb, 0x0f, 0x47, 0x67, 0xbf, 0x56, 0xc7, 0xe0, 0x47, 0x84, 0x36,
7732 0xea, 0x68, 0xaf, 0xf2, 0x91, 0x0d, 0xaa, 0xe1, 0x81, 0xf0, 0xd4, 0x3e,
7733 0x29, 0xdd, 0x46, 0xf4, 0x44, 0xf2, 0xa8, 0x6c, 0x58, 0xcf, 0x81, 0x1b,
7734 0x0c, 0x36, 0x12, 0x5c, 0x82, 0x38, 0xd8, 0x80, 0x5c, 0x3f, 0xed, 0x2a,
7735 0x76, 0x2b, 0xfd, 0x79, 0xd9, 0xf5, 0x31, 0x20, 0xc3, 0xd0, 0xad, 0x88,
7736 0x82, 0x84, 0x1b, 0x03, 0x73, 0x10, 0xc3, 0xc8, 0xec, 0x5c, 0x41, 0x27,
7737 0x29, 0x22, 0x4e, 0xed, 0x59, 0x5c, 0x7e, 0x62, 0x87, 0x49, 0x47, 0xef,
7738 0xe7, 0xe0, 0x10, 0x57, 0x8e, 0x1b, 0x7c, 0xc9, 0xc0, 0x1e, 0xb5, 0x60,
7739 0x98, 0x26, 0x73, 0x58, 0xa1, 0x75, 0xe4, 0x04, 0xae, 0xb9, 0x01, 0xf3,
7740 0x89, 0x53, 0x72, 0xda, 0x2c, 0x96, 0x3e, 0x3e, 0x6e, 0x87, 0xd1, 0xfb,
7741 0x17, 0x97, 0xad, 0xb9, 0xa4, 0xec, 0xcc, 0x8a, 0x7e, 0x91, 0x0f, 0xf3,
7742 0xaa, 0xb3, 0x12, 0x56, 0x95, 0x81, 0xa9, 0xf4, 0x96, 0xc8, 0x9e, 0x78,
7743 0xbd, 0x2a, 0x67, 0x40, 0xcf, 0x43, 0x79, 0xef, 0xf0, 0x8a, 0xc1, 0xcb,
7744 0xbb, 0x50, 0xa6, 0xaa, 0xf2, 0xe3, 0xdb, 0x7e, 0x18, 0x9c, 0xbc, 0xa7,
7745 0x85, 0xb8, 0x38, 0x1a, 0x0c, 0x22, 0x03, 0x1e, 0x29, 0xc9, 0x6f, 0x5d,
7746 0xcf, 0x10, 0xe5, 0x0a, 0x11, 0x8a, 0x71, 0x09, 0xa5, 0x35, 0xbf, 0xd9,
7747 0x14, 0xa5, 0xa9, 0x50, 0xbd, 0x5c, 0xcc, 0x40, 0x94, 0x80, 0x05, 0x30,
7748 0x5e, 0x2b, 0x25, 0xfb, 0xa0, 0xb9, 0x93, 0xa9, 0x53, 0x5f, 0x4e, 0x29,
7749 0x18, 0xc4, 0x47, 0x54, 0x78, 0xfb, 0x1a, 0x6b, 0x93, 0x05, 0x97, 0x1c,
7750 0x2b, 0x21, 0x38, 0x5f, 0xc3, 0x2d, 0xb6, 0xed, 0x86, 0x1d, 0x5d, 0x9d,
7751 0xc1, 0xe9, 0xe5, 0x09, 0xf0, 0xc1, 0x87, 0xcb, 0x37, 0x1d, 0xf1, 0xb2,
7752 0x36, 0xe1, 0x84, 0x29, 0x30, 0x01, 0x3b, 0x30, 0xb9, 0x31, 0xf8, 0x76,
7753 0x05, 0xfb, 0x8c, 0xfc, 0xbc, 0x21, 0xf2, 0x06, 0xda, 0x87, 0x3e, 0x89,
7754 0x05, 0x02, 0x4b, 0xd5, 0xf9, 0xb0, 0xbf, 0x5b, 0x04, 0x58, 0xe1, 0x81,
7755 0x36, 0xaf, 0xca, 0x4d, 0xb4, 0xa7, 0x5b, 0x79, 0xa3, 0xbd, 0xc3, 0x36,
7756 0x75, 0x7e, 0x1d, 0x78, 0x1b, 0x58, 0x3a, 0x2a, 0x63, 0xba, 0xf1, 0x26,
7757 0x27, 0x91, 0x0b, 0xe8, 0x36, 0x47, 0xa2, 0xb8, 0xe2, 0x31, 0xd0, 0x99,
7758 0xc6, 0xf6, 0xe9, 0x31, 0x09, 0x28, 0xd4, 0x5d, 0xda, 0x00, 0xdb, 0x8b,
7759 0x23, 0x9d, 0xc3, 0xd7, 0x30, 0xe9, 0xb8, 0x18, 0x1b, 0x08, 0x39, 0x5f,
7760 0x4b, 0xd7, 0xe4, 0x78, 0x2c, 0x5f, 0xa2, 0x8c, 0xbb, 0x0f, 0xb2, 0xc9,
7761 0x1d, 0x60, 0xbf, 0x91, 0x41, 0x10, 0xd4, 0x18, 0x92, 0x4d, 0x80, 0x0f,
7762 0x57, 0xd4, 0x52, 0x7c, 0x02, 0x1d, 0x22, 0xb6, 0xa3, 0xf4, 0x53, 0x56,
7763 0xb1, 0xd6, 0x18, 0xba, 0xb5, 0x1d, 0x2d, 0x37, 0x5a, 0x26, 0xb7, 0x14,
7764 0xf5, 0x8a, 0x5e, 0x56, 0x97, 0x10, 0x6a, 0x52, 0xcd, 0xcf, 0x92, 0x94,
7765 0xb3, 0x43, 0xfe, 0x37, 0xbc, 0x9d, 0x49, 0xd9, 0x2a, 0xf2, 0x29, 0xbb,
7766 0x83, 0xe5, 0x0e, 0x2e, 0xdf, 0x60, 0x90, 0x10, 0x53, 0xc7, 0x1f, 0x53,
7767 0x28, 0x9b, 0x26, 0x8c, 0xe5, 0x1f, 0xcd, 0x98, 0x18, 0x8c, 0xb6, 0x3e,
7768 0xd8, 0x30, 0x5e, 0xf3, 0x4b, 0x0a, 0x0b, 0xd3, 0x68, 0x01, 0xb0, 0x1a,
7769 0xa7, 0x3d, 0x92, 0xd8, 0x13, 0x21, 0x1b, 0xc1, 0xe1, 0x78, 0xdf, 0x40,
7770 0xa6, 0x13, 0x7a, 0x74, 0x3b, 0x6e, 0x69, 0x38, 0x43, 0x2e, 0x6e, 0x62,
7771 0x2c, 0xa7, 0xa4, 0xee, 0xf8, 0xdb, 0x57, 0x91, 0x65, 0x4c, 0xcd, 0x20,
7772 0x67, 0xc6, 0x14, 0x1b, 0xa4, 0xad, 0xa5, 0x4b, 0x62, 0xcb, 0x20, 0xfa,
7773 0x14, 0x18, 0x1f, 0x27, 0xc9, 0xdc, 0x34, 0x7d, 0x4f, 0x09, 0xa7, 0x03,
7774 0x4f, 0x55, 0x8a, 0x84, 0xcf, 0xa8, 0xcd, 0x4d, 0x00, 0x4c, 0xc5, 0x44,
7775 0x67, 0x31, 0xd9, 0xc9, 0x26, 0x5e, 0x5d, 0xe7, 0xb7, 0x14, 0x85, 0xdf,
7776 0x7e, 0xbe, 0xfb, 0x02, 0xf4, 0xb1, 0x7b, 0xea, 0xb8, 0x6e, 0xa9, 0x45,
7777 0x2d, 0x0d, 0x43, 0x58, 0xec, 0x36, 0x1c, 0xe9, 0x82, 0x26, 0x08, 0xb0,
7778 0x6c, 0x54, 0xa2, 0xc1, 0x48, 0x6e, 0x47, 0x01, 0x5b, 0xf4, 0x01, 0xcb,
7779 0x81, 0x7e, 0x42, 0x2b, 0xd9, 0x83, 0x44, 0x22, 0xce, 0x27, 0xed, 0x3b,
7780 0x9b, 0x04, 0xb4, 0xf9, 0x68, 0x70, 0xfa, 0xbf, 0x4e, 0x40, 0x58, 0xbe,
7781 0x3f, 0xb9, 0x7c, 0x0f, 0xff, 0x0c, 0x2e, 0xcf, 0xdf, 0xb7, 0x74, 0x56,
7782 0xaa, 0x18, 0xb0, 0x18, 0xe9, 0xa5, 0xb9, 0x67, 0x44, 0xe1, 0x7a, 0x0b,
7783 0x12, 0x2a, 0x7f, 0x62, 0x81, 0x5a, 0x26, 0x0f, 0xd3, 0xea, 0xd2, 0x49,
7784 0x37, 0xc0, 0xc4, 0xad, 0xa5, 0x2f, 0xc6, 0xcb, 0xbd, 0x9c, 0x39, 0xe8,
7785 0x85, 0x91, 0x0f, 0xf1, 0x8d, 0xcd, 0x11, 0x46, 0xb3, 0x05, 0xdb, 0x1c,
7786 0x23, 0x38, 0xba, 0xd3, 0xef, 0x35, 0xab, 0xa7, 0x85, 0x39, 0xa4, 0x5e,
7787 0xa6, 0xa4, 0xbe, 0x44, 0xea, 0xa2, 0x44, 0xb3, 0xa9, 0xa3, 0xe8, 0xa4,
7788 0x9d, 0x68, 0x9d, 0xe2, 0x00, 0xa2, 0x8b, 0x3e, 0xc0, 0xba, 0xa0, 0xff,
7789 0x6e, 0xd8, 0x17, 0x2e, 0xf3, 0x59, 0xc2, 0xa1, 0x1a, 0xae, 0x98, 0x51,
7790 0x01, 0xc8, 0xa7, 0x26, 0xf7, 0x95, 0x8b, 0x42, 0xc8, 0xc0, 0x1a, 0xb1,
7791 0xa1, 0x55, 0x5e, 0xf3, 0x7a, 0x0b, 0xf2, 0xba, 0x24, 0x19, 0x6c, 0x32,
7792 0xea, 0x34, 0xb2, 0xa6, 0xb3, 0x5a, 0x7b, 0x44, 0x33, 0x22, 0x47, 0xba,
7793 0xe8, 0x6d, 0x01, 0x29, 0x06, 0x04, 0xdc, 0xc6, 0x1f, 0x3b, 0x2c, 0xc3,
7794 0xda, 0xc7, 0x60, 0x46, 0xfc, 0x05, 0x03, 0x98, 0x05, 0x7f, 0x78, 0x10,
7795 0x1f, 0xec, 0x7d, 0x8a, 0x07, 0x20, 0x16, 0x78, 0xf7, 0xd0, 0x94, 0x6c,
7796 0x0a, 0x51, 0x44, 0xe2, 0x0d, 0x4b, 0x4e, 0x4c, 0xcf, 0xaa, 0x63, 0xff,
7797 0x6a, 0x2a, 0x3a, 0xa9, 0x99, 0xb6, 0xae, 0xbe, 0x1f, 0x5d, 0xc8, 0x55,
7798 0xc1, 0xd0, 0x2f, 0xc1, 0x04, 0x61, 0xe9, 0xb3, 0xd9, 0xc0, 0xc2, 0xd7,
7799 0x5d, 0x01, 0x98, 0x69, 0x9c, 0x5e, 0x35, 0x43, 0xc5, 0x3f, 0xaf, 0x50,
7800 0xef, 0x29, 0xb8, 0xe9, 0x38, 0xe6, 0x33, 0xa7, 0x39, 0x61, 0xe9, 0x18,
7801 0x00, 0x62, 0xe9, 0x64, 0xf3, 0xaf, 0x00, 0x64, 0x8f, 0x3e, 0x64, 0x02,
7802 0x12, 0x9e, 0x81, 0xcd, 0x4c, 0xd9, 0x39, 0x63, 0x43, 0x30, 0xec, 0x2a,
7803 0x80, 0x49, 0xa6, 0x7c, 0xf2, 0x8f, 0x73, 0xf6, 0x34, 0xe0, 0x0b, 0x07,
7804 0x7a, 0xf4, 0x50, 0xe8, 0x83, 0xf2, 0x5d, 0xf4, 0xb8, 0x96, 0xf1, 0x24,
7805 0xcc, 0xca, 0x45, 0xd8, 0xce, 0x5b, 0x52, 0x5d, 0xb1, 0xf7, 0x92, 0x17,
7806 0xee, 0x62, 0x49, 0xd2, 0x12, 0x55, 0x35, 0x18, 0x41, 0x57, 0x31, 0xb2,
7807 0x6d, 0x1d, 0xa0, 0x98, 0xdf, 0x33, 0x58, 0x9d, 0x96, 0x09, 0x7c, 0xf0,
7808 0x22, 0x9b, 0x62, 0x55, 0x5a, 0x03, 0x4e, 0x56, 0x2c, 0x83, 0xa7, 0xe8,
7809 0x09, 0xc8, 0x76, 0x4f, 0x07, 0x71, 0x36, 0x5e, 0xc0, 0x3a, 0x24, 0x6d,
7810 0x3b, 0xe2, 0xdd, 0x6b, 0x2e, 0x9d, 0x41, 0x24, 0xaa, 0xa4, 0x7e, 0x9a,
7811 0xa4, 0x59, 0x8a, 0x48, 0xf3, 0x79, 0xb1, 0x89, 0x5b, 0x04, 0x7b, 0xf4,
7812 0x44, 0x11, 0xe8, 0x0b, 0x8c, 0x04, 0x24, 0xaa, 0x7a, 0x53, 0x74, 0x1b,
7813 0xd5, 0x9d, 0x8b, 0xd7, 0x61, 0xf0, 0x7e, 0xa0, 0xee, 0x5f, 0x9a, 0x4d,
7814 0x26, 0x2e, 0xb8, 0x2f, 0x1f, 0x3a, 0x21, 0x3a, 0x33, 0x68, 0x6b, 0x5d,
7815 0xfd, 0x96, 0x2d, 0x46, 0xc1, 0x33, 0x3d, 0x5e, 0x58, 0xc5, 0xa7, 0x52,
7816 0xc1, 0x16, 0xc4, 0x15, 0xa1, 0x01, 0x37, 0x28, 0x00, 0xaa, 0x48, 0xca,
7817 0x53, 0x7d, 0x2b, 0x93, 0x15, 0x5a, 0x7f, 0x5a, 0x99, 0x54, 0x8b, 0xb9,
7818 0xaf, 0xf8, 0x58, 0x18, 0x33, 0x33, 0xa2, 0xc6, 0xfb, 0x9d, 0x29, 0x22,
7819 0x96, 0xaa, 0x25, 0xbf, 0xdb, 0x73, 0xd9, 0x83, 0x01, 0x40, 0xd5, 0xc8,
7820 0x53, 0x77, 0xda, 0xa0, 0x3a, 0xf5, 0xd0, 0xed, 0x63, 0xc2, 0x68, 0x07,
7821 0xf1, 0x42, 0x3b, 0x0c, 0xaf, 0x2a, 0x60, 0x23, 0xd2, 0xe6, 0x43, 0xef,
7822 0x06, 0xba, 0x38, 0xf3, 0xf5, 0x37, 0x9a, 0x96, 0xe6, 0x32, 0x1c, 0x33,
7823 0xad, 0xce, 0xfa, 0x87, 0x2c, 0xbd, 0xa3, 0x4d, 0xbf, 0xf1, 0x59, 0xeb,
7824 0xab, 0x2f, 0x99, 0x55, 0x47, 0x51, 0xd4, 0x10, 0x67, 0xb2, 0xe3, 0xce,
7825 0x8d, 0xfb, 0xab, 0xc2, 0xea, 0xbb, 0x03, 0x05, 0x90, 0xa2, 0xa2, 0xf6,
7826 0x3e, 0x85, 0xfc, 0x84, 0xd9, 0x7d, 0x1f, 0xaf, 0xeb, 0x8f, 0xf3, 0x19,
7827 0x6c, 0x7b, 0xef, 0x19, 0x33, 0xaa, 0x7f, 0xf7, 0x94, 0xe8, 0x9e, 0x4d,
7828 0x95, 0x63, 0x5e, 0x9c, 0xa7, 0xc8, 0x46, 0x5a, 0x4a, 0xe4, 0xd0, 0x89,
7829 0x84, 0x04, 0xc5, 0x76, 0xb8, 0x5d, 0x1f, 0xcb, 0xb7, 0xf0, 0x8c, 0xf4,
7830 0x0c, 0x10, 0x00, 0x26, 0xe7, 0x18, 0x70, 0xdb, 0x9e, 0xd4, 0x65, 0xed,
7831 0xca, 0x1e, 0x04, 0x04, 0xda, 0x36, 0x9b, 0xae, 0x09, 0xb0, 0x4e, 0x2d,
7832 0x00, 0x9a, 0x58, 0xf2, 0x02, 0xcd, 0xcd, 0x17, 0xba, 0x0d, 0x17, 0x38,
7833 0xdf, 0xc3, 0x39, 0x95, 0x08, 0x1b, 0xdf, 0x16, 0x0d, 0xab, 0xc0, 0x35,
7834 0x23, 0x6b, 0x8a, 0x5d, 0x13, 0xee, 0xdf, 0xc0, 0xf0, 0xb3, 0x64, 0xd7,
7835 0xe1, 0xf0, 0x9e, 0xff, 0xfa, 0x2f, 0x2b, 0x02, 0x6b, 0x09, 0x29, 0xd2,
7836 0xe9, 0xb9, 0x73, 0xf0, 0x3d, 0x05, 0x44, 0x7e, 0xec, 0x7d, 0x0f, 0x7f,
7837 0xfe, 0xd8, 0xd1, 0xbd, 0xcc, 0x0d, 0x1b, 0x6c, 0x49, 0x2b, 0x2f, 0x47,
7838 0xd7, 0x3d, 0xf4, 0xfc, 0x8c, 0x96, 0xcb, 0xe3, 0x0b, 0xa9, 0x41, 0x28,
7839 0x38, 0x95, 0x83, 0xd8, 0x18, 0x05, 0x10, 0x19, 0x38, 0x28, 0xf4, 0x09,
7840 0xf0, 0x4b, 0x18, 0x24, 0xa6, 0x6b, 0x75, 0x38, 0xba, 0xa5, 0x6b, 0x13,
7841 0x75, 0x6e, 0x79, 0xeb, 0xc7, 0xa0, 0xe9, 0x5f, 0xa1, 0x8b, 0x91, 0x41,
7842 0x0d, 0xfb, 0xd1, 0x91, 0x9a, 0x14, 0xfc, 0x01, 0xf5, 0x7b, 0x28, 0x29,
7843 0x27, 0xe8, 0x16, 0x26, 0x64, 0x5c, 0x1d, 0x74, 0x9c, 0xa1, 0xf2, 0x9c,
7844 0xd9, 0xe4, 0x83, 0x94, 0x3a, 0xac, 0x02, 0x91, 0x54, 0xd2, 0x16, 0x69,
7845 0xf9, 0x09, 0x5f, 0x52, 0xaa, 0x91, 0x9d, 0xdc, 0x37, 0x7a, 0x8b, 0x59,
7846 0x6c, 0x68, 0x29, 0x60, 0xde, 0x06, 0x0b, 0xe6, 0x61, 0x4d, 0xed, 0x02,
7847 0xb8, 0x9c, 0x4e, 0x91, 0xf6, 0x26, 0x8d, 0x17, 0x8c, 0x32, 0xfc, 0xe0,
7848 0x55, 0x2e, 0x18, 0xa2, 0x77, 0xf1, 0x67, 0x61, 0x47, 0x03, 0x9d, 0x62,
7849 0x82, 0x30, 0x16, 0x6c, 0x0d, 0x21, 0x97, 0x15, 0xc9, 0x23, 0x3a, 0x96,
7850 0x70, 0xa2, 0x5d, 0x74, 0x01, 0x16, 0x88, 0x61, 0x4f, 0x07, 0xc3, 0x3f,
7851 0x62, 0x6c, 0x1d, 0x3a, 0xba, 0x37, 0x9a, 0x61, 0xb0, 0xe3, 0xa4, 0xa0,
7852 0x00, 0x2a, 0xf7, 0xec, 0x30, 0x3d, 0x38, 0xd0, 0x63, 0x8e, 0xda, 0xcc,
7853 0xb8, 0x80, 0x69, 0x8c, 0xbb, 0x0a, 0x10, 0xca, 0xbb, 0x13, 0x93, 0x2a,
7854 0x54, 0xdb, 0xf6, 0xe2, 0x15, 0xa2, 0x19, 0xa0, 0x21, 0x68, 0xcc, 0x04,
7855 0x3c, 0x20, 0x39, 0x2a, 0x52, 0x12, 0x1b, 0xe0, 0xbf, 0x70, 0x62, 0xb0,
7856 0x6f, 0x72, 0x9c, 0xdf, 0x66, 0xe8, 0x29, 0xc5, 0xd2, 0xc7, 0xe6, 0x11,
7857 0x42, 0xd3, 0x9f, 0x85, 0x5a, 0x01, 0x3e, 0x46, 0x53, 0x28, 0x92, 0xd5,
7858 0xda, 0x3d, 0xd4, 0x55, 0x02, 0x71, 0x1e, 0x7b, 0x3d, 0x27, 0xf8, 0xb3,
7859 0xf2, 0x53, 0xca, 0x5f, 0xf4, 0xd2, 0xf9, 0xc3, 0x2b, 0xa4, 0xfd, 0x2e,
7860 0x90, 0x77, 0x6b, 0xe2, 0xd3, 0x1c, 0xa3, 0xe5, 0xe2, 0xea, 0x8a, 0x00,
7861 0x6f, 0xfd, 0x9c, 0x5a, 0x42, 0xa8, 0x90, 0x8a, 0x33, 0x69, 0x45, 0x0d,
7862 0xa7, 0x15, 0x91, 0xa6, 0xd6, 0x29, 0x82, 0x1e, 0x26, 0x52, 0xb5, 0xb4,
7863 0x7d, 0xf2, 0x5a, 0x51, 0xad, 0x10, 0x5c, 0x4d, 0x64, 0x98, 0xd5, 0xf3,
7864 0x8a, 0xa4, 0xa7, 0x13, 0x6d, 0x0a, 0xfb, 0x14, 0xad, 0x5f, 0xaf, 0xe9,
7865 0x21, 0x89, 0x7d, 0x72, 0x65, 0xb5, 0x0b, 0x78, 0x1f, 0x71, 0x90, 0x76,
7866 0x32, 0x3d, 0xf5, 0x79, 0xff, 0xf9, 0x5e, 0x7f, 0xab, 0xe9, 0x37, 0xe6,
7867 0xe4, 0x76, 0x4e, 0x38, 0x62, 0x7d, 0x6b, 0x69, 0x84, 0x02, 0xdd, 0xda,
7868 0xa6, 0x49, 0x03, 0x86, 0x9b, 0xb9, 0x19, 0x0e, 0x77, 0x33, 0x29, 0x4c,
7869 0x93, 0x06, 0xd6, 0xda, 0x45, 0x70, 0x37, 0xd5, 0x8b, 0x09, 0x91, 0xb4,
7870 0xbf, 0x3a, 0x9f, 0xb9, 0xac, 0xb0, 0x9a, 0x66, 0xda, 0xca, 0x5c, 0xe5,
7871 0xb4, 0x37, 0x1a, 0x8d, 0x7a, 0xa4, 0x70, 0x1d, 0xb2, 0x16, 0xb8, 0x29,
7872 0x5a, 0x58, 0x8b, 0xb7, 0x6a, 0x90, 0xc8, 0x9a, 0x1f, 0x1f, 0x1f, 0x8b,
7873 0xc2, 0x78, 0x79, 0xdd, 0x50, 0xdd, 0x4c, 0xdf, 0x03, 0x51, 0x5d, 0x93,
7874 0x50, 0xa6, 0xe9, 0xf5, 0xa2, 0xc2, 0x1d, 0xc9, 0x26, 0x96, 0x9e, 0x71,
7875 0x06, 0x97, 0xa5, 0xd1, 0xb8, 0x2c, 0x07, 0xa6, 0xe8, 0xda, 0xc4, 0x66,
7876 0xbf, 0x1b, 0x48, 0x91, 0x30, 0x44, 0x24, 0xdf, 0x28, 0x63, 0x5b, 0x48,
7877 0x2a, 0xd7, 0x29, 0xe6, 0x76, 0xb2, 0xd0, 0x09, 0x96, 0xa1, 0x62, 0x00,
7878 0x1d, 0x85, 0x1e, 0x1b, 0xa7, 0x92, 0x45, 0x1a, 0xcb, 0xb3, 0x9a, 0x63,
7879 0x3f, 0x41, 0x70, 0xd4, 0xc8, 0x2f, 0xd3, 0xaa, 0x7d, 0x83, 0xab, 0x5c,
7880 0xae, 0xb6, 0xcc, 0x72, 0x67, 0xcb, 0x4a, 0x07, 0xd7, 0x14, 0xcd, 0x68,
7881 0x5c, 0xcd, 0xf5, 0x63, 0x6a, 0x49, 0x76, 0x2c, 0x7b, 0xfd, 0xf8, 0x1a,
7882 0x93, 0x4b, 0xa7, 0xb8, 0xe6, 0x40, 0x89, 0x92, 0x05, 0xa8, 0x28, 0x02,
7883 0x83, 0xc1, 0xd9, 0xe6, 0xe5, 0xd9, 0xc0, 0x2b, 0xc3, 0xb9, 0xc7, 0xf0,
7884 0x11, 0x85, 0x89, 0xea, 0x21, 0x0a, 0xa6, 0x3c, 0x35, 0xf0, 0x14, 0xaf,
7885 0xa3, 0xd9, 0xbc, 0xfc, 0x94, 0x20, 0xf0, 0xf1, 0x22, 0xd3, 0x7a, 0x4d,
7886 0xa3, 0x7b, 0x65, 0x49, 0x46, 0x10, 0x73, 0xa8, 0x82, 0xd1, 0xc6, 0xa4,
7887 0x2c, 0xfd, 0x32, 0x7a, 0x77, 0x74, 0x89, 0x15, 0x98, 0x95, 0xa4, 0xa9,
7888 0xa1, 0x4f, 0xd3, 0x2b, 0x12, 0x92, 0x7e, 0x78, 0xa6, 0x95, 0x4d, 0x3c,
7889 0xd2, 0x46, 0x70, 0xd6, 0xd8, 0x62, 0xae, 0x28, 0x95, 0x9f, 0x7f, 0xc1,
7890 0xaa, 0x06, 0xd7, 0xae, 0x75, 0xe9, 0xe0, 0x26, 0xe7, 0x20, 0x70, 0x19,
7891 0x23, 0xb8, 0x92, 0x4c, 0xbc, 0xf0, 0x0e, 0x7d, 0x2f, 0x47, 0xa8, 0x2e,
7892 0x92, 0x53, 0x6e, 0x87, 0xaf, 0x3e, 0xcd, 0xaf, 0x52, 0xf4, 0xbf, 0xd3,
7893 0x5a, 0xbb, 0x09, 0x08, 0x1e, 0x5c, 0x31, 0x53, 0x56, 0x51, 0x4a, 0x6b,
7894 0xdd, 0xf3, 0x78, 0xd7, 0xe2, 0xf9, 0x6c, 0xd6, 0x43, 0x83, 0xf1, 0x06,
7895 0xa9, 0x23, 0x54, 0xf3, 0x07, 0x82, 0x33, 0x1d, 0x81, 0x79, 0x38, 0xba,
7896 0xef, 0x33, 0x16, 0x4f, 0x59, 0x2f, 0x19, 0x48, 0x6b, 0x1d, 0xaa, 0x4c,
7897 0x58, 0xa2, 0x5c, 0xcc, 0x83, 0x35, 0xae, 0xf2, 0x86, 0x4f, 0x5e, 0x25,
7898 0xe1, 0xc1, 0x55, 0xa2, 0x37, 0xf5, 0x26, 0x84, 0x5f, 0xe3, 0x49, 0x7e,
7899 0xe5, 0xe9, 0x4e, 0x06, 0xde, 0x33, 0xd0, 0xe8, 0x87, 0xac, 0x1d, 0xf4,
7900 0xbb, 0x6a, 0xa6, 0x92, 0x01, 0x54, 0x11, 0x63, 0xbd, 0x37, 0xee, 0x06,
7901 0xdb, 0x37, 0x77, 0xa3, 0x66, 0x4b, 0xe4, 0xc2, 0xef, 0x1f, 0x5a, 0x83,
7902 0x2b, 0xd7, 0x42, 0x88, 0xc6, 0x70, 0x5f, 0x83, 0xfa, 0xa6, 0xf8, 0x7e,
7903 0x0d, 0x4c, 0x73, 0xaa, 0x6c, 0xd3, 0xef, 0x38, 0xb3, 0x11, 0x03, 0xfb,
7904 0xb7, 0x29, 0x88, 0x88, 0xdb, 0x16, 0x7b, 0x99, 0xed, 0xa1, 0x4b, 0xdb,
7905 0xbc, 0x97, 0xb7, 0x2a, 0x5b, 0x16, 0x89, 0xc9, 0xe6, 0x47, 0x78, 0x60,
7906 0xcd, 0x75, 0xfa, 0x9f, 0x6b, 0x8a, 0x89, 0x9b, 0x7b, 0x6c, 0x67, 0xfb,
7907 0xf1, 0x84, 0x9a, 0x21, 0xda, 0x78, 0x78, 0xd7, 0x4e, 0xd8, 0x3e, 0x37,
7908 0xf5, 0x8b, 0xf5, 0xe9, 0xf5, 0x96, 0xcf, 0xe7, 0xcd, 0xc9, 0xd1, 0xab,
7909 0x56, 0x4c, 0xbb, 0xc7, 0xc5, 0x9a, 0x05, 0x3c, 0x50, 0x7c, 0xcf, 0xd4,
7910 0x01, 0x8b, 0x70, 0xbc, 0x5a, 0xfc, 0x72, 0xea, 0x5b, 0x1e, 0x26, 0xdc,
7911 0x32, 0x7c, 0xa1, 0x7e, 0x3a, 0x5a, 0x1c, 0xc3, 0xf7, 0x8c, 0x65, 0x98,
7912 0x10, 0x9e, 0x1f, 0x6e, 0xb8, 0xd6, 0xde, 0xd9, 0xad, 0x9e, 0x39, 0x37,
7913 0x99, 0x4b, 0x5c, 0xb5, 0x68, 0x7b, 0x71, 0x31, 0xeb, 0xaa, 0x7d, 0x77,
7914 0x91, 0xd3, 0x1f, 0xdf, 0x25, 0x97, 0xae, 0xb6, 0x5d, 0x76, 0x4d, 0xd3,
7915 0xdd, 0xf8, 0x2a, 0xf9, 0x3c, 0x9f, 0x8e, 0x3b, 0xab, 0x8e, 0x74, 0xda,
7916 0x1c, 0xec, 0x69, 0xb9, 0x1b, 0x2c, 0x66, 0xbf, 0xc3, 0x3f, 0xbd, 0x25,
7917 0xef, 0x5d, 0xd1, 0x7e, 0x9e, 0xe6, 0xc3, 0x7c, 0x32, 0x59, 0xa2, 0x06,
7918 0x72, 0x5b, 0x2c, 0xaa, 0xbf, 0xe5, 0x7d, 0xd3, 0x41, 0x6e, 0xc2, 0xfb,
7919 0x86, 0xdc, 0x34, 0xad, 0x00, 0x09, 0xd6, 0x91, 0xf4, 0x5e, 0x01, 0xb7,
7920 0xf6, 0x34, 0x0c, 0x17, 0x95, 0xea, 0x5e, 0x6c, 0x72, 0xb5, 0x89, 0x09,
7921 0x95, 0xcb, 0xe0, 0xbd, 0xc4, 0x12, 0xb6, 0xe0, 0x76, 0xd8, 0x65, 0xf4,
7922 0x8f, 0x7f, 0x7e, 0xff, 0xa3, 0x07, 0xe5, 0xc6, 0x81, 0x85, 0x6b, 0x86,
7923 0x23, 0xe0, 0x08, 0x6c, 0x55, 0x26, 0xd3, 0x89, 0x6d, 0xc1, 0x8c, 0x63,
7924 0xcc, 0xfa, 0x9c, 0x86, 0xaf, 0xd5, 0xc8, 0xe8, 0x7a, 0x80, 0x61, 0x03,
7925 0x05, 0x71, 0x0a, 0x3a, 0x4c, 0xed, 0x79, 0x04, 0x55, 0x04, 0x7b, 0xb9,
7926 0x4e, 0x4d, 0x6f, 0x26, 0x4a, 0x2c, 0x36, 0x4d, 0x14, 0x6d, 0xb4, 0x2c,
7927 0x98, 0xac, 0x86, 0x59, 0xa2, 0x6e, 0xcd, 0x2b, 0x6f, 0xc1, 0x53, 0x13,
7928 0x4d, 0x59, 0x51, 0x86, 0x23, 0xda, 0x71, 0xa0, 0xf8, 0xe6, 0x1f, 0xdf,
7929 0xff, 0xf8, 0x4f, 0xf8, 0x5f, 0xe7, 0x51, 0x6d, 0xac, 0x98, 0x13, 0xdc,
7930 0xd6, 0x60, 0xee, 0x59, 0x7b, 0x0d, 0x02, 0xe3, 0xbe, 0x97, 0xdc, 0x27,
7931 0x43, 0x10, 0xd6, 0xa5, 0xa2, 0xce, 0xf5, 0x66, 0x65, 0x74, 0x38, 0x03,
7932 0x51, 0x93, 0xb6, 0xe0, 0x11, 0xbe, 0xc1, 0xdb, 0xa2, 0x13, 0xb9, 0xcd,
7933 0xf4, 0x8d, 0xbb, 0xca, 0x0b, 0x58, 0xa1, 0x99, 0x60, 0x96, 0x08, 0x60,
7934 0x4b, 0xdd, 0x3d, 0x19, 0x51, 0x1d, 0xa4, 0xe7, 0xe0, 0xbb, 0xd9, 0x13,
7935 0xfb, 0x95, 0xda, 0x8a, 0x38, 0x3d, 0x24, 0xa4, 0x65, 0xd8, 0x02, 0x6c,
7936 0x25, 0x20, 0xe2, 0xe8, 0x13, 0x79, 0xea, 0x40, 0x14, 0x5d, 0xa5, 0x37,
7937 0xa6, 0x1f, 0x4a, 0x28, 0xf3, 0x59, 0xe0, 0x1a, 0xb4, 0x8b, 0x85, 0x39,
7938 0x7e, 0xc4, 0x91, 0x82, 0x88, 0x09, 0xce, 0xfb, 0xf5, 0xb5, 0x6b, 0x24,
7939 0x0d, 0xd8, 0xe2, 0xc8, 0x45, 0xde, 0x15, 0xd7, 0x88, 0xbc, 0x0f, 0xcb,
7940 0x59, 0x53, 0x88, 0x81, 0xcc, 0x06, 0x04, 0x94, 0x9e, 0xa2, 0x1a, 0x9a,
7941 0x09, 0xa6, 0x46, 0xa9, 0x6b, 0x0c, 0x63, 0xb9, 0xf1, 0xd8, 0xa0, 0x7a,
7942 0xb9, 0xdd, 0x7b, 0xa8, 0x1c, 0x3f, 0x46, 0x78, 0x80, 0x64, 0xca, 0x27,
7943 0x4f, 0xb0, 0xab, 0xa9, 0xb5, 0x0b, 0xe5, 0x58, 0x84, 0xbd, 0x8e, 0xcd,
7944 0xf1, 0x08, 0xd3, 0x43, 0x22, 0x99, 0x79, 0x96, 0x18, 0xe7, 0x62, 0x30,
7945 0x52, 0x70, 0x29, 0x40, 0xce, 0x57, 0xe4, 0xd9, 0x13, 0xeb, 0x99, 0x3a,
7946 0x66, 0x12, 0x86, 0x0f, 0x83, 0x2e, 0xe2, 0xdd, 0x94, 0x4b, 0x88, 0xb2,
7947 0xbd, 0xce, 0x01, 0x8d, 0xe1, 0x30, 0xc8, 0xfc, 0x6c, 0x7f, 0x7f, 0x9f,
7948 0x83, 0xcc, 0x9d, 0x53, 0x7a, 0xf0, 0xfb, 0x93, 0xe3, 0xf3, 0xb7, 0x6f,
7949 0x4f, 0xde, 0xbd, 0x3a, 0x79, 0xa5, 0x39, 0x95, 0xce, 0xdc, 0x2d, 0xbb,
7950 0xf8, 0x67, 0x2f, 0xa6, 0xc2, 0x03, 0x6b, 0x6c, 0xef, 0x6f, 0xf5, 0x76,
7951 0xf6, 0xb7, 0x22, 0x60, 0xce, 0xd8, 0xd4, 0x57, 0xc7, 0x53, 0xc4, 0x60,
7952 0x8a, 0xae, 0x17, 0xa0, 0xcd, 0x63, 0xcf, 0xae, 0x0a, 0xb1, 0xb7, 0x14,
7953 0xee, 0x35, 0x4b, 0x2a, 0xf4, 0x98, 0x79, 0x2a, 0x72, 0x3c, 0xee, 0x77,
7954 0x4c, 0x73, 0x0b, 0x9b, 0x0d, 0x22, 0xea, 0x31, 0x71, 0xec, 0xce, 0x16,
7955 0x3e, 0xa8, 0x1f, 0xbd, 0x4e, 0x11, 0xf0, 0xec, 0x8e, 0x99, 0xf3, 0xf8,
7956 0x1a, 0xcc, 0xa1, 0xc4, 0xcf, 0x03, 0xa9, 0xdf, 0x8f, 0xb7, 0xef, 0xf2,
7957 0xed, 0xbf, 0x73, 0x4a, 0x57, 0xfb, 0xee, 0xde, 0xdf, 0x5a, 0xb1, 0xe1,
7958 0xd7, 0x0c, 0x05, 0xc8, 0x2c, 0xbe, 0x63, 0x50, 0x6a, 0x81, 0x67, 0x5e,
7959 0x82, 0x55, 0xb9, 0xff, 0xb2, 0x8e, 0xc1, 0x01, 0x53, 0xa1, 0xb6, 0xc5,
7960 0x5a, 0xda, 0xdf, 0x82, 0x72, 0x32, 0x60, 0xe7, 0xdb, 0x9b, 0xa3, 0x0b,
7961 0xbc, 0x3a, 0xba, 0x78, 0x7f, 0xfe, 0xdd, 0xdf, 0x2c, 0x56, 0xc2, 0xcd,
7962 0xb6, 0xd6, 0x0f, 0x08, 0xca, 0xc4, 0x30, 0x01, 0x35, 0x3f, 0xf3, 0xd3,
7963 0xaa, 0xac, 0xf9, 0x65, 0xbc, 0x33, 0xaa, 0x8c, 0x10, 0xc1, 0xb1, 0xe6,
7964 0x23, 0xa7, 0x4e, 0x0a, 0xa8, 0x36, 0x31, 0x0f, 0xd1, 0x59, 0x80, 0xab,
7965 0xec, 0x03, 0x8d, 0x51, 0xbc, 0x0a, 0xa7, 0x71, 0x97, 0x72, 0x93, 0xf6,
7966 0x34, 0x1b, 0x73, 0x0b, 0x85, 0x5a, 0x28, 0xa8, 0x2a, 0x16, 0x49, 0x28,
7967 0x4e, 0xb3, 0x14, 0xe0, 0x94, 0xba, 0xfa, 0xa5, 0xb3, 0xb8, 0x48, 0xa7,
7968 0xf7, 0xb5, 0x8e, 0x7e, 0x5a, 0xb7, 0x40, 0x39, 0x08, 0xb6, 0x69, 0x5d,
7969 0xee, 0x89, 0x3b, 0x6d, 0xba, 0xce, 0x49, 0xc3, 0x8c, 0xd7, 0xca, 0x6c,
7970 0xc6, 0xc4, 0x7a, 0x02, 0xd7, 0xd4, 0x96, 0x6a, 0x35, 0x46, 0xb9, 0x33,
7971 0x2d, 0xaa, 0xeb, 0xd8, 0xb7, 0x5b, 0x35, 0x7e, 0x30, 0x0a, 0x6e, 0x5b,
7972 0xd7, 0x83, 0xe8, 0xf5, 0xe9, 0xd9, 0xc9, 0x46, 0xf4, 0x3a, 0xa9, 0xa4,
7973 0x2a, 0x59, 0xeb, 0x87, 0x50, 0x05, 0xfd, 0x0f, 0x52, 0xf8, 0x4d, 0x4f,
7974 0x1b, 0x01, 0x0a, 0x09, 0x26, 0x7c, 0x4b, 0x78, 0x81, 0x94, 0x5f, 0x2d,
7975 0x71, 0x66, 0x2e, 0x20, 0x5a, 0xa2, 0xce, 0xa5, 0x09, 0xe4, 0x9a, 0xd0,
7976 0x22, 0x2c, 0x86, 0xc5, 0x98, 0x2d, 0xa0, 0x61, 0x7d, 0xa7, 0xb5, 0x41,
7977 0xee, 0xe6, 0xa5, 0xe1, 0xa4, 0xb5, 0x9e, 0x49, 0x72, 0x83, 0xd2, 0x72,
7978 0x3e, 0xa5, 0x96, 0xb1, 0x21, 0xac, 0xcd, 0x69, 0x62, 0x2b, 0xf1, 0x69,
7979 0xc7, 0x83, 0x2d, 0x6c, 0x3b, 0x72, 0x70, 0x87, 0xc6, 0x5a, 0xb2, 0xc0,
7980 0xa3, 0x56, 0xf0, 0x74, 0xb5, 0x15, 0x53, 0xf3, 0x0e, 0xfe, 0xb9, 0xc1,
7981 0x5f, 0x81, 0xa6, 0x43, 0x42, 0xd7, 0xa0, 0x4d, 0x0e, 0x56, 0xeb, 0x28,
7982 0xe9, 0xc5, 0xe5, 0x28, 0x4d, 0x9d, 0xf5, 0x7b, 0xa3, 0xeb, 0x87, 0x89,
7983 0x9c, 0xfc, 0xef, 0xe6, 0x97, 0x4b, 0x00, 0xa7, 0x61, 0xc6, 0x30, 0x90,
7984 0x92, 0x96, 0x76, 0xd0, 0x68, 0xba, 0x18, 0x9b, 0x5c, 0x15, 0xb5, 0xc6,
7985 0x6a, 0x9c, 0x1f, 0xb0, 0xea, 0x28, 0x48, 0xa2, 0x7e, 0x2e, 0x8c, 0xf1,
7986 0x60, 0xa1, 0x9a, 0x89, 0xb1, 0x64, 0xf7, 0xce, 0xf9, 0x9e, 0xd0, 0x13,
7987 0x4d, 0x1d, 0x13, 0x57, 0x66, 0x86, 0xe0, 0x49, 0x53, 0xee, 0x0d, 0x2b,
7988 0xaa, 0x1d, 0x56, 0x04, 0xc6, 0xf5, 0x9a, 0x40, 0xbe, 0xec, 0x5a, 0x3a,
7989 0xa7, 0x92, 0x23, 0x97, 0xab, 0xcf, 0xcb, 0x60, 0x50, 0x55, 0xaa, 0xe2,
7990 0x25, 0xdb, 0x22, 0xcf, 0x34, 0x06, 0x2d, 0xa6, 0xe5, 0x82, 0x70, 0xcb,
7991 0xa9, 0x30, 0x9c, 0x3a, 0x81, 0x17, 0xdc, 0xda, 0x2a, 0xa0, 0x3d, 0xcb,
7992 0xd3, 0xdd, 0x13, 0xa0, 0x69, 0xca, 0xba, 0x8f, 0xa9, 0xfb, 0x8a, 0x7c,
7993 0x2b, 0x0a, 0x68, 0x47, 0xa6, 0x16, 0x82, 0xcf, 0x21, 0x02, 0xcf, 0xe8,
7994 0x53, 0x4a, 0xf8, 0x05, 0x0b, 0x52, 0xef, 0xe3, 0x4c, 0xc3, 0x5b, 0x3c,
7995 0x4d, 0xd3, 0xf2, 0x18, 0xb8, 0xbe, 0x4f, 0xf1, 0xb4, 0xb0, 0x51, 0xc6,
7996 0xaa, 0x33, 0x7a, 0x0b, 0xb1, 0x0f, 0x8d, 0xce, 0x67, 0x4a, 0x55, 0xca,
7997 0x66, 0xd3, 0xaa, 0xe2, 0x8e, 0x30, 0x0a, 0x64, 0x3b, 0x04, 0xfa, 0x6d,
7998 0x82, 0xd8, 0x42, 0xf8, 0x38, 0x74, 0xf4, 0xdf, 0x1a, 0x3c, 0xeb, 0x22,
7999 0xe1, 0x06, 0xf0, 0xfd, 0xe8, 0x7d, 0x32, 0xc3, 0xa2, 0x43, 0xaa, 0x7b,
8000 0x33, 0x6f, 0xad, 0x24, 0xf2, 0x0b, 0x5d, 0x45, 0x3f, 0x64, 0xf4, 0x78,
8001 0x9a, 0x1b, 0xe5, 0x06, 0x9a, 0x99, 0x68, 0x69, 0x93, 0xe4, 0x7e, 0x72,
8002 0x08, 0x10, 0xfb, 0x8e, 0x08, 0x65, 0x3d, 0x41, 0x32, 0x45, 0x0b, 0x06,
8003 0xd1, 0xa3, 0xb3, 0x03, 0x60, 0xff, 0xa8, 0xf3, 0x06, 0xf4, 0xd0, 0x83,
8004 0x8e, 0xe9, 0x2c, 0x4c, 0x51, 0x23, 0xee, 0x97, 0xeb, 0x72, 0x8e, 0x40,
8005 0x28, 0x7a, 0x07, 0x0a, 0xc3, 0x46, 0xb1, 0x41, 0x5b, 0xa9, 0xa0, 0x36,
8006 0xe5, 0xbb, 0x7e, 0xe1, 0x94, 0x29, 0xa7, 0x65, 0xa0, 0x09, 0x1f, 0x24,
8007 0x00, 0xa7, 0xf4, 0x5d, 0xef, 0x98, 0x1e, 0xde, 0x7b, 0x43, 0xc3, 0xfd,
8008 0xa9, 0x63, 0xc2, 0x59, 0xcd, 0xaf, 0x60, 0xe2, 0x9f, 0x85, 0xd2, 0x59,
8009 0xad, 0xef, 0xc6, 0xf6, 0x16, 0xa0, 0xdc, 0x45, 0xa5, 0x33, 0xbe, 0x2a,
8010 0x6e, 0x91, 0x4d, 0x5d, 0x70, 0x8a, 0x57, 0x63, 0x9e, 0x7b, 0xc0, 0x54,
8011 0xe3, 0xe0, 0x62, 0x81, 0x89, 0x6b, 0x60, 0x2e, 0x8d, 0x7b, 0xf9, 0xa4,
8012 0x47, 0x75, 0x58, 0x70, 0xd8, 0x7d, 0xc2, 0x44, 0x5b, 0x67, 0xd7, 0x11,
8013 0xca, 0x1c, 0x35, 0xaf, 0x18, 0x8f, 0x43, 0xb9, 0xbb, 0x84, 0x21, 0x32,
8014 0x77, 0x34, 0x7a, 0x2d, 0xe5, 0xe4, 0x65, 0x3c, 0x90, 0x42, 0x20, 0xba,
8015 0x3d, 0x4b, 0x6e, 0xb9, 0xd2, 0x05, 0x61, 0x9a, 0xa5, 0xe4, 0xd2, 0x73,
8016 0xa4, 0x53, 0x01, 0x66, 0x97, 0x8d, 0x3a, 0x7a, 0x6b, 0x72, 0x6d, 0xcc,
8017 0x38, 0x8e, 0x44, 0xd1, 0xb5, 0xc5, 0x5c, 0x3b, 0x35, 0xb5, 0x40, 0x06,
8018 0x39, 0x69, 0x52, 0xd4, 0x89, 0x09, 0x4d, 0x20, 0xcd, 0x41, 0x05, 0xb1,
8019 0xf6, 0xa5, 0xa9, 0xca, 0x2e, 0xab, 0x7b, 0x3c, 0x11, 0x0c, 0xc2, 0x46,
8020 0xe6, 0x1b, 0x18, 0xb6, 0x84, 0xd2, 0xe6, 0x8b, 0x12, 0xad, 0x44, 0x3e,
8021 0x12, 0xc8, 0x86, 0xe9, 0xe2, 0x23, 0x98, 0xcf, 0x5f, 0xf6, 0xa2, 0x10,
8022 0xca, 0xaa, 0xcd, 0x34, 0xa0, 0x3a, 0x5b, 0x87, 0x5a, 0x9c, 0x06, 0x6c,
8023 0x80, 0x6d, 0xea, 0x0a, 0xdb, 0xbe, 0x7b, 0x40, 0xbb, 0x00, 0x06, 0x84,
8024 0x8b, 0xac, 0x87, 0x7a, 0xcf, 0x8a, 0x70, 0xe2, 0xac, 0x46, 0xf1, 0x34,
8025 0xee, 0xcc, 0x4c, 0x8b, 0xbe, 0xbc, 0x1c, 0x16, 0x45, 0xbe, 0x6a, 0xe8,
8026 0x06, 0xbb, 0xcf, 0x03, 0x8f, 0xa6, 0x24, 0x2a, 0x44, 0x61, 0x42, 0x4b,
8027 0xaa, 0xe3, 0xd5, 0x68, 0x1d, 0x30, 0xb6, 0x4a, 0x82, 0x1e, 0x16, 0xd9,
8028 0x6a, 0x94, 0x26, 0xc4, 0x1e, 0xa6, 0x96, 0x47, 0x9b, 0x63, 0x46, 0xb7,
8029 0x95, 0xfe, 0x8d, 0x55, 0x72, 0x5d, 0x87, 0xfb, 0x39, 0x33, 0x59, 0xb7,
8030 0x74, 0x20, 0xee, 0xc7, 0xa9, 0x09, 0x32, 0x85, 0xa8, 0x15, 0x22, 0xef,
8031 0xdb, 0xa3, 0xf7, 0xef, 0x4e, 0xdf, 0x7d, 0x7d, 0x60, 0xe8, 0x83, 0x42,
8032 0xb1, 0xd9, 0xff, 0xdd, 0xc2, 0xd8, 0xe0, 0xb7, 0x48, 0x12, 0xf6, 0x9c,
8033 0xb6, 0xb5, 0xf8, 0xc4, 0x94, 0x12, 0x92, 0xe1, 0x1c, 0x83, 0x28, 0x12,
8034 0x0e, 0x0d, 0x73, 0x95, 0x9c, 0x16, 0x70, 0x0a, 0x24, 0x04, 0x11, 0xa5,
8035 0xca, 0xa7, 0xe3, 0x10, 0x18, 0x54, 0xef, 0x8c, 0x52, 0x12, 0x73, 0x29,
8036 0xe9, 0x64, 0xb6, 0x46, 0x76, 0x9e, 0x12, 0xdf, 0xe4, 0x2e, 0xeb, 0x70,
8037 0xf3, 0x25, 0x2a, 0x68, 0x41, 0x23, 0x9e, 0x1c, 0xa6, 0x81, 0x1c, 0x1a,
8038 0xee, 0x75, 0xa6, 0x01, 0x14, 0x69, 0x37, 0x3a, 0x8d, 0xa4, 0x1f, 0x7c,
8039 0x49, 0x4c, 0x53, 0xa6, 0xe4, 0xa8, 0x33, 0x24, 0x51, 0x97, 0x4a, 0xc0,
8040 0x87, 0x28, 0xed, 0x22, 0xe3, 0x05, 0xef, 0x34, 0xc6, 0xb3, 0x96, 0x4f,
8041 0x6d, 0x81, 0xa8, 0xa1, 0xc0, 0xa3, 0xeb, 0xae, 0x6c, 0xe1, 0x15, 0xdb,
8042 0x5c, 0x9c, 0xa2, 0xe2, 0xc8, 0x35, 0x4a, 0x8d, 0xbf, 0x09, 0x63, 0x9c,
8043 0x4d, 0x13, 0x5b, 0x1c, 0xbd, 0x9a, 0x6b, 0x91, 0x64, 0xf4, 0x6b, 0x34,
8044 0xe2, 0x7b, 0xef, 0x40, 0x30, 0x1c, 0x44, 0x7f, 0xce, 0x93, 0x15, 0x3c,
8045 0x84, 0x70, 0xfb, 0x07, 0xd0, 0x7d, 0x7a, 0x47, 0x57, 0x24, 0xf2, 0xee,
8046 0x93, 0xb2, 0x07, 0xd7, 0xc7, 0x65, 0xb2, 0x09, 0xd6, 0xea, 0xd6, 0x6a,
8047 0x03, 0xf1, 0xf1, 0xb5, 0x9a, 0xa2, 0x78, 0xa4, 0x25, 0x1c, 0xbd, 0xf8,
8048 0x2a, 0xd1, 0xba, 0x8e, 0x84, 0x7d, 0x8c, 0x88, 0x47, 0xe5, 0x96, 0x76,
8049 0x5c, 0xb3, 0x82, 0x38, 0x9d, 0x47, 0x87, 0x68, 0x28, 0x5d, 0xe5, 0xc5,
8050 0xfd, 0x17, 0x1e, 0x72, 0x3d, 0x96, 0x04, 0x46, 0x78, 0x91, 0xa9, 0x24,
8051 0xc3, 0xdc, 0x06, 0x52, 0x61, 0x6c, 0x59, 0x8f, 0x08, 0x7c, 0x3b, 0x4c,
8052 0x5f, 0x3a, 0x82, 0x78, 0x6d, 0x52, 0xaf, 0xa8, 0x51, 0xa5, 0xad, 0xc5,
8053 0x72, 0x12, 0xcb, 0x59, 0x0b, 0xe7, 0x34, 0x2d, 0x4c, 0xf5, 0x42, 0xd4,
8054 0x51, 0xb0, 0xcc, 0x28, 0xa9, 0x59, 0x9e, 0x14, 0x80, 0x1e, 0x88, 0x8c,
8055 0x40, 0x47, 0xfd, 0x51, 0x7d, 0x44, 0x46, 0xc8, 0x77, 0x60, 0x9e, 0x9d,
8056 0xb6, 0x67, 0x36, 0x4d, 0x07, 0x99, 0x01, 0x21, 0x28, 0x4b, 0x5b, 0x40,
8057 0x9b, 0x60, 0xe3, 0x8f, 0x1d, 0x75, 0xf4, 0x7d, 0xb1, 0x2e, 0xc8, 0xd3,
8058 0x34, 0x97, 0xbd, 0x24, 0x51, 0x8f, 0x6f, 0x4e, 0xa5, 0x4a, 0x11, 0x86,
8059 0x4e, 0x0b, 0x85, 0x7c, 0x5c, 0xb9, 0xa0, 0x84, 0x96, 0x11, 0x46, 0x6d,
8060 0xe7, 0x0c, 0xd7, 0x6e, 0xa8, 0x59, 0xfd, 0x40, 0xeb, 0xf9, 0x62, 0x38,
8061 0x1b, 0xef, 0x47, 0x87, 0xf0, 0xc3, 0x33, 0x0e, 0xa8, 0x8e, 0x27, 0x1a,
8062 0x1c, 0xa3, 0x85, 0x80, 0x02, 0x1f, 0x35, 0x1d, 0x2e, 0x36, 0x14, 0x8f,
8063 0x30, 0xfe, 0xba, 0xbb, 0x03, 0x3c, 0x72, 0x17, 0x6b, 0x07, 0x90, 0x31,
8064 0xc8, 0x94, 0x8a, 0x52, 0xf5, 0xbd, 0x68, 0x3b, 0xdf, 0x6a, 0x7d, 0xb4,
8065 0x48, 0xd1, 0xed, 0x9d, 0x17, 0x11, 0x96, 0xe7, 0xbe, 0x7d, 0xb5, 0x0f,
8066 0xf2, 0x3a, 0x19, 0x7d, 0x2a, 0x17, 0x33, 0x53, 0x14, 0xc2, 0x05, 0x30,
8067 0x2c, 0x9e, 0x3c, 0x80, 0x33, 0x98, 0xf8, 0x34, 0x1d, 0x21, 0x24, 0x46,
8068 0xb7, 0x96, 0xd2, 0x31, 0xd1, 0x94, 0x0e, 0xc7, 0x7d, 0x65, 0xd4, 0x1d,
8069 0x4a, 0x24, 0xe4, 0x34, 0xdd, 0x40, 0xb4, 0x1d, 0x68, 0x00, 0x8f, 0x47,
8070 0x9f, 0x1f, 0x98, 0xb5, 0x2b, 0x2f, 0x83, 0x25, 0x66, 0xb2, 0x3f, 0xda,
8071 0x1e, 0xed, 0xbd, 0xdc, 0xda, 0xd9, 0x7a, 0xb6, 0xb7, 0x15, 0xef, 0xc7,
8072 0xc3, 0xad, 0xc9, 0xce, 0xd6, 0xee, 0xde, 0x8b, 0xfd, 0xbd, 0xd1, 0xee,
8073 0xce, 0x76, 0xfc, 0x22, 0x2a, 0x57, 0xca, 0x9c, 0x90, 0x91, 0xcb, 0xeb,
8074 0x78, 0x67, 0xff, 0x59, 0x60, 0xfd, 0xf8, 0x8b, 0xe8, 0x90, 0xff, 0x0d,
8075 0xaf, 0x22, 0x2d, 0x62, 0xeb, 0x1a, 0xc6, 0xd1, 0x57, 0x54, 0x6f, 0xdb,
8076 0xd3, 0xa2, 0xf0, 0xc1, 0x9b, 0x23, 0x1c, 0x12, 0x8c, 0xaa, 0xeb, 0xb0,
8077 0xef, 0x46, 0x96, 0x86, 0x57, 0xc6, 0x59, 0x8b, 0x7e, 0x74, 0xbc, 0x7c,
8078 0x2d, 0xda, 0x14, 0x51, 0x67, 0x65, 0xf8, 0x6f, 0x78, 0x74, 0xf2, 0xcb,
8079 0x96, 0x42, 0xe8, 0xf2, 0xee, 0xd5, 0x37, 0x9f, 0xde, 0x5e, 0xfe, 0xf5,
8080 0xee, 0xed, 0xd7, 0x7f, 0xdd, 0x3e, 0x7f, 0x35, 0x9e, 0xbd, 0xfd, 0xe9,
8081 0xaf, 0xbb, 0x6f, 0x7f, 0x1a, 0xfd, 0xfc, 0xb7, 0x9f, 0x8e, 0xee, 0xcf,
8082 0x2f, 0xff, 0xb6, 0xff, 0x76, 0xf6, 0xfe, 0xd3, 0xdb, 0x9f, 0xbe, 0x99,
8083 0xbd, 0x7b, 0xf5, 0xd7, 0xcf, 0x9f, 0xb6, 0x32, 0xb0, 0xe6, 0x75, 0x84,
8084 0xdb, 0xad, 0x86, 0x77, 0x0d, 0xa5, 0xe6, 0xa1, 0x41, 0x7e, 0x0c, 0x1a,
8085 0xe1, 0x83, 0x7a, 0xdb, 0x27, 0x05, 0xbc, 0x7c, 0x33, 0xb8, 0x1c, 0x98,
8086 0x64, 0x14, 0x13, 0x25, 0x97, 0xe4, 0x51, 0xa9, 0x31, 0x09, 0x81, 0xc8,
8087 0x45, 0x73, 0xd0, 0xb4, 0x2a, 0x3e, 0x39, 0x31, 0xf1, 0xfe, 0x8e, 0xb3,
8088 0xd2, 0x78, 0x3c, 0x6c, 0x05, 0x95, 0x88, 0x23, 0x84, 0x8c, 0x88, 0xba,
8089 0x17, 0xb3, 0x11, 0x82, 0xe7, 0x54, 0x0a, 0xae, 0x33, 0x49, 0xdc, 0xde,
8090 0x34, 0x82, 0x7c, 0x48, 0x83, 0xe9, 0x08, 0xd2, 0xe8, 0x31, 0x5f, 0x3e,
8091 0x3b, 0xf2, 0x00, 0x0b, 0x42, 0x91, 0xa9, 0xd2, 0x65, 0xe7, 0x4a, 0xc0,
8092 0x8d, 0x3a, 0x30, 0x49, 0x9a, 0x9d, 0x8e, 0x83, 0x9f, 0xb9, 0xfe, 0x73,
8093 0x52, 0xe4, 0x52, 0x2f, 0xbf, 0x41, 0xef, 0x79, 0x93, 0xa7, 0xe3, 0x48,
8094 0xf0, 0x41, 0x37, 0x15, 0x14, 0xdb, 0x3b, 0x3a, 0xac, 0x0a, 0x49, 0x98,
8095 0x95, 0x88, 0x88, 0x0d, 0x43, 0x12, 0x61, 0x0c, 0x60, 0xe3, 0x13, 0x5d,
8096 0xc3, 0x6e, 0x5f, 0x17, 0x72, 0x5e, 0x9a, 0x18, 0x55, 0xd3, 0x9c, 0xa6,
8097 0xd4, 0x52, 0xa9, 0x24, 0x65, 0xfc, 0x52, 0xf5, 0x6f, 0x05, 0x5d, 0xcb,
8098 0xc4, 0x02, 0xfc, 0x46, 0x2b, 0x6f, 0x06, 0x64, 0x3e, 0x5a, 0xa4, 0x27,
8099 0x34, 0xcb, 0x22, 0x27, 0x63, 0xbd, 0x5b, 0xc1, 0x5e, 0x83, 0xb7, 0x61,
8100 0xbc, 0xad, 0xfe, 0xcb, 0x96, 0x46, 0x66, 0x35, 0x54, 0x6c, 0x04, 0x30,
8101 0x49, 0x33, 0x41, 0x55, 0x25, 0x8d, 0x1f, 0xfd, 0x83, 0x48, 0x4e, 0x04,
8102 0x02, 0xd7, 0xb4, 0x3f, 0xef, 0xfd, 0xf0, 0xca, 0x4d, 0xbc, 0x42, 0x3a,
8103 0x99, 0x29, 0x23, 0x62, 0x1b, 0x12, 0x52, 0xf4, 0x48, 0x66, 0x98, 0xac,
8104 0x41, 0x03, 0xa5, 0x4f, 0x39, 0xa1, 0xbe, 0x9f, 0xc5, 0xa4, 0x1d, 0x6b,
8105 0xd4, 0xcb, 0x2a, 0xfc, 0x82, 0xa1, 0xe5, 0xe0, 0x36, 0x2a, 0xc0, 0x10,
8106 0xad, 0x28, 0x7a, 0x23, 0x3d, 0xa7, 0xa3, 0x79, 0x6e, 0x69, 0xd3, 0xfc,
8107 0x18, 0x09, 0x9e, 0xbb, 0xc9, 0xd0, 0x66, 0xc1, 0x5e, 0x63, 0x1c, 0x83,
8108 0xc8, 0x6f, 0xb3, 0xab, 0x02, 0x43, 0x4a, 0x3d, 0x64, 0xff, 0x38, 0x94,
8109 0x20, 0x14, 0xda, 0x01, 0x6e, 0x0a, 0xe1, 0xb3, 0x67, 0xfd, 0xad, 0xae,
8110 0xa5, 0x0a, 0x16, 0xb4, 0x73, 0xe4, 0x70, 0x69, 0x06, 0xe1, 0x43, 0x5c,
8111 0xc2, 0xcb, 0xb8, 0x22, 0x7b, 0xe0, 0xd5, 0xdb, 0xfd, 0xed, 0xae, 0xfc,
8112 0xba, 0x23, 0x4e, 0x49, 0xfc, 0x7d, 0xb7, 0xee, 0x5f, 0xae, 0x73, 0xcd,
8113 0x56, 0xd7, 0xdc, 0xbc, 0xf5, 0x18, 0xce, 0xc1, 0x63, 0xa4, 0xc6, 0x30,
8114 0x70, 0x9f, 0xeb, 0x6b, 0xd3, 0xe2, 0xee, 0xd4, 0xdb, 0x68, 0x8e, 0xc7,
8115 0x8b, 0xf3, 0x0d, 0x10, 0x97, 0xd5, 0x1d, 0xea, 0x29, 0x84, 0xc2, 0xa7,
8116 0xaf, 0x4e, 0x28, 0x24, 0xaf, 0xa5, 0x0f, 0x90, 0xad, 0xdf, 0x6c, 0x7b,
8117 0x54, 0x47, 0x63, 0xf0, 0xb2, 0x48, 0x14, 0x9d, 0x41, 0xef, 0x77, 0x46,
8118 0xdb, 0x91, 0xe0, 0x88, 0xfc, 0x85, 0xb8, 0x1b, 0x79, 0xd1, 0x43, 0x7f,
8119 0x1e, 0xb0, 0xc5, 0x55, 0x12, 0xea, 0xaa, 0xa5, 0xcb, 0xd4, 0xd8, 0xcb,
8120 0x30, 0xee, 0x13, 0x57, 0x64, 0xfb, 0x69, 0xa4, 0xdc, 0x7e, 0x2c, 0x29,
8121 0x05, 0xf4, 0x0e, 0x99, 0xc7, 0x59, 0x07, 0x4b, 0x03, 0xa0, 0x6f, 0x2b,
8122 0x45, 0x9b, 0xdd, 0x59, 0x6b, 0x68, 0x17, 0x2e, 0x37, 0xd6, 0x68, 0xda,
8123 0x46, 0xd2, 0xe6, 0xca, 0x10, 0x89, 0xdb, 0x58, 0x7f, 0x77, 0xd7, 0x17,
8124 0x98, 0xde, 0x02, 0x2d, 0xed, 0x2a, 0x60, 0x41, 0xbf, 0xe1, 0x95, 0x4a,
8125 0xf4, 0x4c, 0xa2, 0x53, 0x92, 0x44, 0x15, 0xa6, 0xd6, 0xb9, 0xbd, 0x52,
8126 0xcb, 0x20, 0x8c, 0x01, 0xc9, 0x8a, 0x1d, 0xe3, 0x5c, 0xa5, 0x3f, 0x91,
8127 0xf0, 0x1f, 0xe6, 0x24, 0x8b, 0xd0, 0xbe, 0xa9, 0x22, 0x4d, 0x7b, 0x27,
8128 0x78, 0x72, 0x2c, 0xa9, 0x8f, 0xda, 0x66, 0xc7, 0xd1, 0x61, 0x86, 0x2e,
8129 0xe7, 0x24, 0x39, 0x85, 0xf3, 0x2a, 0xf5, 0x51, 0x25, 0x22, 0xa5, 0xa1,
8130 0xcf, 0x36, 0xbe, 0x8d, 0x41, 0x27, 0xe4, 0xee, 0xf0, 0x3a, 0xc7, 0x50,
8131 0x07, 0x40, 0x16, 0xb1, 0xe3, 0x5c, 0x07, 0xa8, 0x55, 0xf9, 0xc3, 0x18,
8132 0x92, 0x97, 0x96, 0x81, 0xd9, 0x44, 0xc9, 0xb2, 0xe3, 0x28, 0x6a, 0x89,
8133 0x55, 0x2a, 0x43, 0x8a, 0x6b, 0xae, 0xd1, 0xdb, 0x63, 0x75, 0x0e, 0xf5,
8134 0x37, 0xd3, 0x8a, 0xfc, 0x1a, 0x12, 0x8d, 0x6d, 0x43, 0xeb, 0x1a, 0x84,
8135 0x28, 0x4e, 0xc5, 0x3d, 0x19, 0x9e, 0x77, 0xf7, 0x0c, 0x17, 0xc4, 0x01,
8136 0x72, 0x34, 0x70, 0xb1, 0x21, 0x31, 0x7b, 0x7e, 0x0c, 0xae, 0x1a, 0xd3,
8137 0x51, 0x2c, 0xf7, 0xa6, 0x0e, 0x3f, 0x7f, 0x08, 0x00, 0xa6, 0x2e, 0x62,
8138 0x9a, 0x1b, 0x24, 0x28, 0x49, 0xda, 0x85, 0xff, 0xde, 0xcb, 0xc0, 0x0e,
8139 0x78, 0x92, 0x90, 0xd9, 0x09, 0xa2, 0xd3, 0x13, 0x77, 0x75, 0xdd, 0xd2,
8140 0x7b, 0x7b, 0x0a, 0x3b, 0x1d, 0x0d, 0x0d, 0xef, 0x98, 0x0d, 0xe1, 0xd7,
8141 0x1f, 0xf8, 0x1c, 0xe3, 0xd4, 0x89, 0xd3, 0x03, 0x96, 0x1c, 0xb1, 0x3a,
8142 0x97, 0x87, 0xa7, 0xb2, 0xe0, 0x8d, 0x57, 0x8b, 0xad, 0x79, 0x25, 0xbc,
8143 0x32, 0x49, 0x0b, 0xef, 0x2f, 0xdb, 0xf5, 0xc0, 0xdc, 0xd2, 0x12, 0x40,
8144 0xb6, 0xcd, 0x21, 0x29, 0x8e, 0x2a, 0xe3, 0x10, 0x12, 0x8a, 0x90, 0x2a,
8145 0xad, 0x9c, 0xa6, 0x77, 0x9c, 0xa1, 0x85, 0xc7, 0x69, 0xca, 0x29, 0x83,
8146 0x4d, 0x2f, 0x1d, 0xd0, 0x63, 0xbb, 0xbf, 0x83, 0xfe, 0x7a, 0xa9, 0x7f,
8147 0xe2, 0x10, 0xd5, 0x35, 0x36, 0x17, 0x32, 0x89, 0x2b, 0xc2, 0xb9, 0x63,
8148 0xd3, 0xfb, 0x55, 0xf1, 0xe8, 0x42, 0x09, 0x36, 0x58, 0x3a, 0x45, 0xd0,
8149 0x25, 0x0a, 0xf2, 0x49, 0x04, 0xd3, 0x55, 0x96, 0xa1, 0x66, 0xdc, 0x54,
8150 0x87, 0x2a, 0xd8, 0xaa, 0x69, 0x79, 0x03, 0x73, 0x78, 0xd2, 0xfe, 0x7d,
8151 0x9a, 0x4e, 0x13, 0xdc, 0xaf, 0x56, 0x46, 0xd6, 0x77, 0xa4, 0xa7, 0xc5,
8152 0xd1, 0x0e, 0x0d, 0x6f, 0x51, 0xdd, 0xa1, 0xba, 0x41, 0x03, 0x27, 0x56,
8153 0xcf, 0x6b, 0x5f, 0xb5, 0xe2, 0x06, 0x6d, 0xc8, 0x97, 0x00, 0x5a, 0xfa,
8154 0x74, 0xe5, 0x33, 0x6b, 0xb7, 0xe5, 0x8c, 0x32, 0x4e, 0xf4, 0x66, 0x55,
8155 0xcb, 0xdd, 0x3c, 0x29, 0xd2, 0x19, 0xf5, 0x14, 0xe9, 0x47, 0xaf, 0x6c,
8156 0x5d, 0x10, 0xf5, 0x31, 0xf1, 0x62, 0x6e, 0xe3, 0x45, 0xb8, 0x7a, 0xe6,
8157 0x01, 0x89, 0xb0, 0x2b, 0x95, 0x57, 0xb6, 0xf0, 0x82, 0x1c, 0x09, 0x82,
8158 0x04, 0x95, 0x7b, 0xcd, 0xa1, 0x24, 0x00, 0xad, 0xc9, 0xc9, 0x92, 0x84,
8159 0x8b, 0xfc, 0x28, 0xe9, 0x85, 0xb4, 0x2c, 0xbb, 0x6e, 0x72, 0xbe, 0x31,
8160 0xc4, 0x10, 0x81, 0x23, 0x14, 0xf0, 0xa6, 0x27, 0x2a, 0x3a, 0x04, 0x59,
8161 0x09, 0xea, 0xf2, 0x86, 0x87, 0xdc, 0xa4, 0x71, 0x74, 0x34, 0xad, 0x7a,
8162 0x83, 0x9b, 0x11, 0xe7, 0xcf, 0xd6, 0xb2, 0x2e, 0xfd, 0x85, 0xc6, 0xe0,
8163 0x30, 0x86, 0x45, 0x69, 0x7b, 0x60, 0x6e, 0x1e, 0xf5, 0xb2, 0xa3, 0x86,
8164 0x64, 0x6c, 0xaa, 0x6b, 0x3a, 0x27, 0xae, 0xa2, 0x65, 0x43, 0x46, 0xab,
8165 0xf0, 0x1a, 0x36, 0x27, 0xf1, 0xa7, 0x52, 0x5f, 0x49, 0x62, 0xa9, 0x8c,
8166 0x60, 0x62, 0xe6, 0xcc, 0x19, 0x30, 0x4b, 0x1c, 0xf3, 0x8d, 0xb0, 0x0b,
8167 0x77, 0x9f, 0x44, 0x24, 0xec, 0xbf, 0x7e, 0x38, 0x3d, 0xae, 0xe5, 0x88,
8168 0x49, 0x02, 0x9e, 0x1f, 0x2b, 0x70, 0x72, 0xde, 0xb8, 0xa1, 0x9b, 0x5c,
8169 0x39, 0x41, 0x0b, 0x58, 0xcb, 0xb6, 0xb5, 0xd0, 0xb2, 0xb6, 0xbc, 0x79,
8170 0x16, 0xd0, 0xe9, 0xc1, 0x86, 0x7a, 0x8a, 0x20, 0xd8, 0xfd, 0xc5, 0x82,
8171 0x60, 0xa7, 0x6f, 0x86, 0xfa, 0xb5, 0x05, 0xc1, 0xee, 0x6f, 0x20, 0x08,
8172 0x6a, 0xfa, 0x6b, 0xbb, 0x09, 0xe0, 0x69, 0x21, 0x75, 0xcb, 0xad, 0xde,
8173 0x9d, 0xb0, 0xc7, 0x00, 0xbe, 0x3d, 0xf1, 0x6b, 0xf4, 0xd8, 0xfd, 0x12,
8174 0x42, 0x86, 0x8a, 0x44, 0x3e, 0xd8, 0x53, 0xf1, 0x94, 0xfb, 0x00, 0xbb,
8175 0x9d, 0x6a, 0xce, 0x18, 0xed, 0x50, 0x0e, 0xb2, 0x96, 0x56, 0x85, 0x18,
8176 0x58, 0x4e, 0x47, 0xd8, 0xb7, 0xc2, 0xe6, 0x60, 0x91, 0x3f, 0x44, 0x4c,
8177 0xf4, 0x62, 0x41, 0x49, 0x66, 0xd1, 0xd1, 0x9c, 0x5c, 0x51, 0xdb, 0xfd,
8178 0xbb, 0x6e, 0x24, 0xe1, 0xdc, 0x90, 0xaf, 0xbf, 0x48, 0x58, 0x43, 0x02,
8179 0x9b, 0x5a, 0x20, 0x23, 0x9a, 0xd3, 0xa1, 0xd1, 0xd9, 0x2b, 0x33, 0xc5,
8180 0x7d, 0x55, 0x70, 0xd4, 0x6c, 0x07, 0xf6, 0xce, 0x95, 0x77, 0x9e, 0x0d,
8181 0xef, 0xab, 0x00, 0x08, 0x14, 0xbe, 0x35, 0x52, 0x61, 0x9d, 0xdd, 0x02,
8182 0xa0, 0x04, 0x01, 0x1d, 0x37, 0xba, 0x11, 0xd6, 0xcf, 0x11, 0x05, 0x10,
8183 0x41, 0xc7, 0x24, 0x40, 0x21, 0x48, 0x55, 0x7a, 0x85, 0x31, 0xfd, 0x9c,
8184 0x25, 0x84, 0xe7, 0x3b, 0xc7, 0x34, 0x24, 0x29, 0x73, 0xd5, 0x1a, 0x52,
8185 0xe9, 0xea, 0x16, 0x6c, 0x9c, 0x52, 0xc3, 0xf0, 0x30, 0x47, 0x3d, 0x66,
8186 0x5b, 0xd2, 0xbb, 0xd1, 0x1e, 0x83, 0x4d, 0x1c, 0xe4, 0xcb, 0x85, 0xd7,
8187 0x05, 0xf5, 0xfa, 0x7e, 0xbe, 0x7a, 0x9e, 0x5a, 0x90, 0x51, 0x56, 0x6d,
8188 0xff, 0xd7, 0xa8, 0x38, 0x74, 0x18, 0x31, 0x45, 0x4e, 0x97, 0x34, 0xa5,
8189 0xa6, 0xaf, 0x4e, 0x92, 0x97, 0x4c, 0x77, 0x57, 0xdb, 0x4b, 0xdc, 0xc4,
8190 0xc1, 0x39, 0xf1, 0x96, 0xfa, 0x38, 0xf6, 0x25, 0xc1, 0x56, 0x63, 0xd0,
8191 0xe1, 0xb6, 0xf7, 0x26, 0x55, 0x49, 0x5a, 0x06, 0x68, 0x86, 0x94, 0xe6,
8192 0x23, 0x50, 0x3c, 0x57, 0xcc, 0x21, 0x74, 0x4f, 0x76, 0x61, 0x71, 0xf3,
8193 0x4f, 0x69, 0xe2, 0x21, 0xde, 0x8d, 0xa9, 0xab, 0x36, 0x7b, 0xd1, 0x6d,
8194 0x9b, 0xcb, 0x9a, 0xd4, 0xd3, 0xde, 0x94, 0xfd, 0x7e, 0x3f, 0x80, 0x9d,
8195 0x7c, 0x93, 0x26, 0xb7, 0x35, 0xcd, 0x51, 0x26, 0xd6, 0x65, 0xa4, 0xdd,
8196 0xb1, 0x34, 0xee, 0xb2, 0x99, 0x62, 0x2d, 0x60, 0x2f, 0xcb, 0xd7, 0x2f,
8197 0x5d, 0x6d, 0xa9, 0x5a, 0x42, 0x4c, 0x9f, 0x78, 0x95, 0xca, 0x10, 0x56,
8198 0x1f, 0xf6, 0x69, 0x8c, 0x6c, 0x70, 0xc2, 0xf6, 0xa3, 0xef, 0xa2, 0x82,
8199 0x59, 0xdc, 0x6b, 0xd5, 0x97, 0x73, 0xc4, 0xd0, 0xd4, 0x18, 0x37, 0xc4,
8200 0x93, 0x12, 0xd4, 0x40, 0x31, 0x65, 0x30, 0x1c, 0xf2, 0x44, 0xf3, 0xdd,
8201 0xa1, 0xa6, 0x30, 0x15, 0x8d, 0x40, 0x91, 0x64, 0x23, 0x76, 0x83, 0x79,
8202 0xe0, 0x0e, 0x44, 0x89, 0xd9, 0xb8, 0xfc, 0x1c, 0xc9, 0x01, 0x2c, 0xab,
8203 0x64, 0x2e, 0xba, 0x46, 0x91, 0x8f, 0x12, 0x2d, 0xa0, 0x02, 0xc6, 0xf2,
8204 0xda, 0xc3, 0x25, 0xa3, 0x4f, 0xc1, 0x1c, 0x04, 0x4a, 0x01, 0xa8, 0x8b,
8205 0x7e, 0xd1, 0x94, 0xd8, 0xeb, 0x6b, 0xba, 0x6d, 0x89, 0x25, 0x00, 0x54,
8206 0x13, 0x47, 0x33, 0xce, 0xa4, 0xe7, 0x37, 0x55, 0x2a, 0xeb, 0x1d, 0x24,
8207 0xa9, 0x43, 0xa5, 0x05, 0x1d, 0x54, 0x82, 0x48, 0x6f, 0x80, 0x34, 0x03,
8208 0x16, 0x3a, 0xb0, 0x26, 0x7d, 0x73, 0xda, 0xce, 0x8d, 0xb6, 0xa1, 0x84,
8209 0x4d, 0xc9, 0xe2, 0x46, 0x56, 0xd2, 0x9f, 0x97, 0xcb, 0x51, 0x8c, 0x0e,
8210 0x16, 0xc0, 0xeb, 0x68, 0xa8, 0x5d, 0xa2, 0x34, 0xc9, 0x01, 0xea, 0x3e,
8211 0xcb, 0x04, 0x05, 0x10, 0x2d, 0x5b, 0xf1, 0xae, 0x8f, 0x8f, 0x96, 0xcc,
8212 0x6e, 0x4e, 0x9d, 0x91, 0x2a, 0x1d, 0x1d, 0xbf, 0x8a, 0xb0, 0x5f, 0x0a,
8213 0x7a, 0x37, 0x90, 0x4d, 0x99, 0xc4, 0x8c, 0x34, 0x0d, 0x97, 0xe6, 0x8b,
8214 0xc2, 0x43, 0x51, 0x21, 0xa9, 0x2f, 0x28, 0xb2, 0x02, 0x1c, 0xeb, 0x6d,
8215 0x0e, 0xdd, 0x14, 0xb8, 0x00, 0xfd, 0x32, 0xd9, 0x84, 0x1d, 0x5c, 0x6e,
8216 0x96, 0xe5, 0x14, 0x9f, 0x57, 0x52, 0x4f, 0x93, 0x60, 0xff, 0xb4, 0xd7,
8217 0xd2, 0x50, 0x08, 0x38, 0xbd, 0x5e, 0x8e, 0xe7, 0x70, 0x18, 0xb3, 0x18,
8218 0xfb, 0x55, 0xa8, 0xa1, 0xd1, 0x47, 0x4a, 0xd9, 0x08, 0xb2, 0xb9, 0xe6,
8219 0x84, 0xd4, 0xae, 0x54, 0x07, 0xb9, 0x00, 0x8f, 0x99, 0x14, 0x41, 0x22,
8220 0x83, 0xd2, 0xdd, 0x5f, 0x11, 0x64, 0x92, 0x6b, 0x4c, 0xb7, 0xb6, 0x18,
8221 0x06, 0x42, 0xc4, 0x7e, 0x59, 0x5e, 0x63, 0x7b, 0x27, 0xf3, 0x85, 0x3d,
8222 0x57, 0x5b, 0xfa, 0x4a, 0x98, 0x85, 0x77, 0x03, 0xdb, 0x36, 0x3a, 0x58,
8223 0xb6, 0xa7, 0xe0, 0xf8, 0x00, 0x57, 0x4c, 0x9a, 0x7a, 0x69, 0xa6, 0x48,
8224 0x92, 0x95, 0xcf, 0x22, 0xb9, 0x6f, 0xf5, 0xe8, 0xc7, 0xdd, 0xbd, 0xb9,
8225 0x99, 0x8a, 0x76, 0x62, 0x62, 0x2c, 0x49, 0xb0, 0x8f, 0x11, 0xd1, 0xae,
8226 0xa6, 0x1c, 0x29, 0xc2, 0x0e, 0x77, 0x1e, 0x6c, 0x06, 0xfa, 0x2e, 0xb8,
8227 0x1d, 0x2b, 0x65, 0x49, 0xba, 0xd0, 0x98, 0x7c, 0x92, 0xdb, 0x2a, 0x18,
8228 0x33, 0x8c, 0xed, 0x16, 0x8f, 0x0d, 0x58, 0x8b, 0x36, 0x34, 0x20, 0x39,
8229 0x70, 0x9c, 0xdc, 0x76, 0xb4, 0xd5, 0x75, 0x29, 0x40, 0x9d, 0xcb, 0x6c,
8230 0x2f, 0x82, 0x11, 0xa7, 0x85, 0x4e, 0xe1, 0x70, 0x0a, 0x74, 0xc9, 0x68,
8231 0xc3, 0x79, 0x76, 0xde, 0x0c, 0x71, 0x42, 0x0e, 0xac, 0xd3, 0xf6, 0xf6,
8232 0xf6, 0xb6, 0xbf, 0x2c, 0x5a, 0xfa, 0x8b, 0x6b, 0x2a, 0xea, 0xc3, 0x9d,
8233 0xc3, 0xd1, 0x7b, 0x06, 0x42, 0xeb, 0x2e, 0x72, 0x60, 0xf1, 0x69, 0x44,
8234 0x07, 0xee, 0x27, 0x8e, 0xbe, 0x79, 0xff, 0xba, 0x6b, 0x22, 0x6a, 0x52,
8235 0xaa, 0x8a, 0x89, 0x72, 0xa5, 0x6f, 0xbf, 0x25, 0x29, 0xb7, 0x2a, 0xc0,
8236 0x76, 0x9c, 0xc7, 0x47, 0x17, 0x1f, 0xdf, 0x9d, 0x5c, 0x7e, 0x7c, 0x7f,
8237 0xf4, 0x2d, 0x92, 0x90, 0x0f, 0x12, 0x50, 0x2f, 0x31, 0xc1, 0xb1, 0xc8,
8238 0x73, 0x54, 0x15, 0xde, 0x12, 0xfe, 0x5e, 0x9a, 0x11, 0x2a, 0x7d, 0x18,
8239 0x57, 0x59, 0xda, 0x6c, 0xe8, 0x3c, 0x61, 0x2e, 0x07, 0x51, 0x8d, 0x5e,
8240 0x9f, 0x92, 0x22, 0x4b, 0xa6, 0xfd, 0xbc, 0xb8, 0x42, 0xf9, 0xb1, 0xf9,
8241 0x4a, 0xb4, 0x80, 0xe0, 0x70, 0x9b, 0x52, 0x25, 0x83, 0x21, 0xcd, 0x9b,
8242 0x62, 0x82, 0x31, 0xbc, 0x95, 0x99, 0xdf, 0x5d, 0xba, 0x15, 0xb7, 0xc0,
8243 0x38, 0x2b, 0xed, 0x00, 0x0e, 0xab, 0xef, 0xd1, 0xc1, 0x3e, 0xbf, 0xd9,
8244 0x5b, 0x62, 0x39, 0x56, 0x9e, 0xe9, 0xee, 0x16, 0x50, 0x25, 0x5c, 0x2c,
8245 0xc0, 0x88, 0x0a, 0x9c, 0xa6, 0x3c, 0xf1, 0x1a, 0x8d, 0x2a, 0xdb, 0x22,
8246 0x22, 0x1b, 0xd6, 0x7e, 0xad, 0xbc, 0xf1, 0x61, 0x86, 0x4f, 0xf2, 0xd7,
8247 0x7a, 0x86, 0xdf, 0xd3, 0x42, 0x35, 0xcf, 0x84, 0x4c, 0x6e, 0xda, 0x86,
8248 0xf9, 0x6c, 0x55, 0xd2, 0x3d, 0xfb, 0x25, 0xa4, 0xdb, 0x7b, 0x02, 0xe9,
8249 0x9e, 0xfd, 0x9e, 0xa4, 0x33, 0x1c, 0xe6, 0x0a, 0xd8, 0x9f, 0x4a, 0x18,
8250 0x23, 0x8c, 0x24, 0xce, 0xe6, 0xe6, 0x80, 0xba, 0x50, 0xd4, 0x8b, 0x0a,
8251 0xff, 0x3c, 0x38, 0x7f, 0x27, 0xa0, 0xdf, 0x98, 0xad, 0x4a, 0xe5, 0xda,
8252 0x36, 0xd7, 0x54, 0xd0, 0xfa, 0x83, 0x09, 0xa9, 0x5a, 0xca, 0xa0, 0x4f,
8253 0x16, 0x84, 0x27, 0xce, 0x77, 0x2e, 0xaf, 0xc1, 0x8c, 0x1c, 0x2d, 0x18,
8254 0x2b, 0x64, 0x6e, 0xf3, 0x61, 0xa9, 0xa2, 0xd5, 0xf3, 0x2b, 0x17, 0x89,
8255 0x2a, 0xe2, 0x81, 0x36, 0x2f, 0x52, 0x15, 0xfc, 0x3d, 0x18, 0x9b, 0x3f,
8256 0xfa, 0xdf, 0x49, 0x8e, 0x67, 0xc7, 0xed, 0xd2, 0x76, 0xc0, 0x8d, 0x9f,
8257 0x58, 0x0f, 0xd8, 0xc4, 0xc9, 0x75, 0xda, 0x6f, 0x3c, 0x1a, 0x61, 0x5b,
8258 0xe4, 0xd0, 0x2d, 0x7e, 0xa1, 0x61, 0x91, 0xb0, 0x06, 0x5a, 0xd7, 0x73,
8259 0x8d, 0x92, 0x86, 0xef, 0xc9, 0xba, 0x84, 0xa2, 0xa8, 0xc7, 0x23, 0x5c,
8260 0xce, 0x88, 0xa8, 0xec, 0x35, 0x45, 0x72, 0x3a, 0x0e, 0x9b, 0x0e, 0x2e,
8261 0x62, 0x75, 0x07, 0xc1, 0x27, 0x29, 0x81, 0x9d, 0x6b, 0x43, 0x2d, 0x86,
8262 0xa6, 0xc9, 0x11, 0xe2, 0xda, 0xe3, 0xe8, 0xcb, 0xae, 0x98, 0x3f, 0xa5,
8263 0x8b, 0x8f, 0x1b, 0x87, 0xca, 0x77, 0x48, 0x3f, 0xd5, 0xde, 0xa1, 0x66,
8264 0x40, 0xcc, 0xbe, 0xa0, 0x36, 0xe4, 0xb1, 0x02, 0x78, 0xc1, 0xe7, 0xa0,
8265 0xea, 0x44, 0xeb, 0xbd, 0x0d, 0x6e, 0xe0, 0xe2, 0xa7, 0x0d, 0xdc, 0x72,
8266 0x32, 0xa2, 0xdb, 0x8b, 0xb4, 0x36, 0x9e, 0xe6, 0x6c, 0x5f, 0xe4, 0x9c,
8267 0x68, 0xe3, 0xf6, 0xdf, 0x6c, 0x49, 0x83, 0x19, 0x47, 0x6b, 0x93, 0x3c,
8268 0x1f, 0xc6, 0xc5, 0x9a, 0x54, 0x75, 0x50, 0x9a, 0xbd, 0x38, 0x1a, 0xd5,
8269 0xf3, 0x4d, 0x7c, 0xf7, 0x25, 0x5f, 0x17, 0x89, 0xaf, 0xa0, 0x0d, 0x61,
8270 0xa0, 0x6d, 0x56, 0x5d, 0x92, 0x20, 0x3a, 0x56, 0xaf, 0x1d, 0xf6, 0xb3,
8271 0x71, 0x48, 0x6b, 0x6f, 0xa9, 0x8c, 0x7b, 0x4b, 0x29, 0x10, 0x37, 0x35,
8272 0xd3, 0x11, 0xcf, 0x05, 0xea, 0xd3, 0xdd, 0x50, 0x83, 0x9c, 0xf1, 0x38,
8273 0xc5, 0xb1, 0x30, 0x23, 0x10, 0x27, 0x33, 0x4f, 0x13, 0x6c, 0x98, 0xa4,
8274 0x47, 0x3b, 0xa8, 0x8f, 0xa8, 0xb5, 0x73, 0x11, 0x85, 0x66, 0x0b, 0x29,
8275 0x50, 0x69, 0xd3, 0xc1, 0xc2, 0x06, 0x8b, 0x94, 0x1d, 0xf5, 0x97, 0xb5,
8276 0xc8, 0xaa, 0xbd, 0x45, 0x49, 0xdd, 0x9a, 0xa5, 0xe9, 0x0f, 0xc3, 0xa1,
8277 0x8e, 0x13, 0x85, 0x70, 0xd0, 0xbd, 0x11, 0xfb, 0xd8, 0x08, 0xc0, 0xcd,
8278 0x2b, 0x83, 0x12, 0x10, 0x65, 0xd7, 0xfe, 0x11, 0x75, 0xc6, 0x45, 0x9a,
8279 0x7d, 0xea, 0x1c, 0x44, 0x9d, 0x51, 0x3e, 0x99, 0x24, 0x9d, 0xe8, 0x9f,
8280 0x6b, 0x2b, 0x40, 0x0c, 0x34, 0x47, 0x59, 0x33, 0x9f, 0xfd, 0x82, 0xf1,
8281 0xbe, 0x04, 0xb2, 0x62, 0xfe, 0xc9, 0x78, 0xe5, 0x1b, 0x7b, 0xa1, 0x3b,
8282 0xa2, 0xc3, 0x08, 0xbf, 0x0d, 0xe9, 0x21, 0xae, 0xda, 0xe0, 0x40, 0x84,
8283 0x08, 0xf2, 0x1b, 0x7e, 0x52, 0xc4, 0xb7, 0xf5, 0xe3, 0x80, 0x2c, 0x96,
8284 0x07, 0x83, 0xf4, 0x24, 0xa3, 0xb1, 0xad, 0xb7, 0xb6, 0xd0, 0x08, 0x77,
8285 0xa5, 0x68, 0xf6, 0xa1, 0x68, 0xe4, 0xb1, 0x39, 0xf9, 0x79, 0x3b, 0x35,
8286 0x9f, 0xe6, 0x4f, 0x78, 0xe7, 0x4f, 0x8b, 0xec, 0x53, 0x0f, 0x4e, 0x56,
8287 0x74, 0xc0, 0xf4, 0xc4, 0x75, 0x13, 0x3e, 0x62, 0x6c, 0x78, 0x8d, 0x52,
8288 0x86, 0xb8, 0x57, 0xa8, 0x34, 0x27, 0xa6, 0xdb, 0x74, 0xdb, 0xb3, 0xa7,
8289 0x5d, 0xd3, 0xec, 0xda, 0xa2, 0xb0, 0xd6, 0xbf, 0x8e, 0x51, 0xb9, 0xb4,
8290 0x1c, 0x61, 0xc4, 0x1b, 0x1d, 0xe3, 0x1d, 0x99, 0x8d, 0x0e, 0xdb, 0x11,
8291 0xd2, 0xf1, 0x1e, 0x8a, 0xfd, 0x83, 0x73, 0x44, 0xa7, 0x2a, 0x29, 0xb2,
8292 0x66, 0x9f, 0x0a, 0x4a, 0x18, 0x56, 0x46, 0xa1, 0xcf, 0x9e, 0x5a, 0x4d,
8293 0x45, 0x3a, 0x30, 0x57, 0x07, 0xa1, 0xb4, 0xf5, 0x15, 0x6d, 0x38, 0x64,
8294 0x70, 0x40, 0xd8, 0x7e, 0x45, 0x7e, 0x5b, 0x72, 0xf9, 0xed, 0xf4, 0x96,
8295 0x4a, 0x25, 0x75, 0x92, 0x8d, 0xf9, 0x49, 0x35, 0x03, 0x96, 0xec, 0xc4,
8296 0x9e, 0xb3, 0x67, 0x34, 0xcd, 0x51, 0xa2, 0x8c, 0x9f, 0xe0, 0xbb, 0x0f,
8297 0xad, 0x4c, 0xd4, 0x1b, 0xea, 0x63, 0x57, 0xcf, 0x6a, 0x1b, 0x32, 0xfc,
8298 0x02, 0xde, 0xcd, 0xac, 0x33, 0xb2, 0x1f, 0xf4, 0x7e, 0x8a, 0x6b, 0x2d,
8299 0x10, 0x3e, 0x25, 0xb0, 0x79, 0xa6, 0xd4, 0x6d, 0x01, 0xcb, 0x3d, 0x0f,
8300 0x5b, 0x10, 0x17, 0x2e, 0x9b, 0x72, 0x87, 0xcc, 0x56, 0xaa, 0xc5, 0x76,
8301 0xfd, 0x57, 0x64, 0x82, 0x30, 0xbb, 0xcc, 0x28, 0x03, 0x72, 0x4c, 0x70,
8302 0xc7, 0x9e, 0xcb, 0x71, 0xc2, 0x20, 0xdf, 0xda, 0x1a, 0xcd, 0x4c, 0x82,
8303 0xdc, 0x4c, 0x43, 0x6b, 0x5c, 0xf3, 0x23, 0xb4, 0x2b, 0x1e, 0x96, 0x3d,
8304 0xdf, 0xa4, 0x08, 0xc6, 0xd0, 0x0c, 0xf8, 0x99, 0xfb, 0xf9, 0x76, 0xea,
8305 0x93, 0x95, 0x96, 0x6e, 0xa7, 0x85, 0x89, 0x74, 0x64, 0x46, 0x21, 0x2f,
8306 0xa6, 0x29, 0xe6, 0x6a, 0xdf, 0xc3, 0xc1, 0x32, 0xf3, 0x18, 0x57, 0x9b,
8307 0x3c, 0xb3, 0xd8, 0xbe, 0x3c, 0xbe, 0xf8, 0xf8, 0x97, 0x93, 0x93, 0x8b,
8308 0xd3, 0x57, 0x67, 0x27, 0x12, 0x73, 0x30, 0x1f, 0xbd, 0xbb, 0xfc, 0xe6,
8309 0x0c, 0x5e, 0x24, 0x1f, 0x7d, 0xc2, 0xdc, 0x39, 0xd1, 0x7f, 0x9a, 0xdb,
8310 0x4a, 0x12, 0xdf, 0xd9, 0x5e, 0x42, 0xf8, 0xc5, 0x11, 0x3a, 0x72, 0x8e,
8311 0x4e, 0xbf, 0xeb, 0x46, 0x6f, 0x2e, 0x7a, 0x1f, 0xbe, 0x93, 0x41, 0xf1,
8312 0x34, 0xda, 0x40, 0x97, 0xc7, 0x5f, 0xf4, 0x75, 0x18, 0x1e, 0x24, 0xe4,
8313 0x63, 0xd2, 0x28, 0x34, 0xc2, 0x80, 0x32, 0x30, 0x05, 0xf5, 0xdc, 0xae,
8314 0x08, 0x27, 0xb8, 0xc8, 0x3f, 0x25, 0x99, 0xa2, 0x0f, 0x94, 0x14, 0x63,
8315 0x1a, 0x4f, 0x93, 0x25, 0x78, 0x10, 0x9c, 0xce, 0x5e, 0x03, 0xa7, 0x20,
8316 0x2d, 0xc8, 0x5f, 0x17, 0x3d, 0xac, 0xe0, 0x59, 0xa3, 0x69, 0x5c, 0xb4,
8317 0x37, 0x25, 0x34, 0x41, 0x33, 0x06, 0x34, 0xc3, 0x8d, 0x78, 0x3e, 0x80,
8318 0xbb, 0x08, 0x1f, 0x48, 0x8a, 0x37, 0x48, 0x57, 0x9a, 0xcd, 0xa8, 0xf4,
8319 0xed, 0x25, 0xaa, 0x2b, 0xdb, 0x5b, 0xfd, 0x55, 0x70, 0x01, 0x7b, 0xbd,
8320 0x2c, 0xb7, 0x0c, 0xdc, 0x8a, 0x2e, 0xf1, 0x2b, 0x5b, 0xe8, 0x30, 0xdc,
8321 0x22, 0x33, 0xca, 0x37, 0xdf, 0x28, 0x43, 0xbb, 0x08, 0x0e, 0xcf, 0xb6,
8322 0x22, 0x45, 0xf7, 0x58, 0x51, 0x1e, 0x34, 0xb6, 0xe4, 0xce, 0xaa, 0x26,
8323 0x6d, 0x8d, 0x28, 0xb4, 0xff, 0x6b, 0xe8, 0x09, 0xf5, 0xdd, 0x7f, 0x4f,
8324 0x0d, 0x40, 0xa3, 0x43, 0xfc, 0xf9, 0x45, 0xc0, 0x81, 0x8d, 0x95, 0x11,
8325 0x45, 0x7a, 0x83, 0x1e, 0x48, 0xb8, 0x98, 0x95, 0x4e, 0xbc, 0xb6, 0x6f,
8326 0xb2, 0x96, 0xa5, 0xae, 0x10, 0x47, 0xa1, 0xaa, 0x62, 0x1a, 0x35, 0x14,
8327 0x01, 0xa7, 0x8a, 0x11, 0xcc, 0xbd, 0x32, 0xa3, 0xa5, 0xc0, 0x78, 0xaf,
8328 0x4e, 0xde, 0x77, 0xa3, 0x8b, 0x93, 0xb7, 0x6c, 0xec, 0x9d, 0xbc, 0xfb,
8329 0x9a, 0x11, 0x71, 0x24, 0x78, 0x48, 0x6d, 0x27, 0x51, 0x7d, 0xf3, 0xd1,
8330 0x08, 0x9d, 0x25, 0x80, 0xdb, 0x49, 0x53, 0x2f, 0xcb, 0xc5, 0x2c, 0xf9,
8331 0xdd, 0x3b, 0x19, 0x19, 0xa2, 0xc2, 0xab, 0x09, 0x35, 0xc8, 0xec, 0x58,
8332 0x6d, 0x15, 0xb1, 0xd6, 0xa0, 0xbe, 0x52, 0xd1, 0x21, 0xfc, 0xf8, 0x22,
8333 0x18, 0x64, 0x18, 0xbc, 0xd9, 0xf0, 0x97, 0x49, 0x7c, 0x63, 0xa6, 0x1e,
8334 0x1b, 0xb9, 0x52, 0x0a, 0x77, 0x78, 0xa5, 0xe6, 0xbe, 0x7b, 0xdd, 0x2e,
8335 0x8d, 0x38, 0xed, 0x05, 0x42, 0x2c, 0x91, 0xda, 0x4f, 0x72, 0xf6, 0x0e,
8336 0xde, 0x74, 0x71, 0xfb, 0x11, 0x68, 0x9c, 0x5d, 0x84, 0x20, 0xa6, 0x39,
8337 0x95, 0x00, 0x45, 0x6e, 0x0b, 0x14, 0x92, 0xab, 0xa0, 0xb5, 0x8e, 0xd3,
8338 0x31, 0xb7, 0x93, 0xc0, 0x82, 0xc3, 0xbc, 0xc0, 0xaa, 0xe0, 0x28, 0x5a,
8339 0xfb, 0x7f, 0x37, 0xd1, 0x27, 0xbb, 0x99, 0x8e, 0x3f, 0x16, 0x65, 0xbc,
8340 0xd6, 0x54, 0xbc, 0x9d, 0xaf, 0xc7, 0xf8, 0x75, 0xb4, 0xd6, 0x37, 0x97,
8341 0xca, 0xef, 0xf8, 0x79, 0x88, 0x01, 0x54, 0x9f, 0xe1, 0x28, 0xa0, 0x22,
8342 0xb4, 0x9c, 0x83, 0x38, 0x1a, 0x0c, 0xce, 0x30, 0x4e, 0x58, 0xc4, 0x85,
8343 0x38, 0x1c, 0x08, 0xb0, 0x3b, 0xbb, 0xa2, 0x02, 0xac, 0xf9, 0xa7, 0x51,
8344 0xb9, 0xdd, 0x4c, 0x18, 0x4d, 0x9d, 0xda, 0x29, 0x83, 0xb6, 0x73, 0xf1,
8345 0x97, 0xe3, 0xc1, 0x1f, 0xb6, 0xb7, 0x09, 0x6f, 0x69, 0x1d, 0x11, 0x68,
8346 0x9e, 0xef, 0x6f, 0xef, 0x6c, 0x84, 0x3c, 0x78, 0x5e, 0x13, 0x18, 0xc6,
8347 0x67, 0x76, 0x96, 0x8f, 0x6a, 0x22, 0x05, 0x5d, 0xce, 0x0c, 0x3c, 0x4e,
8348 0x10, 0x66, 0x03, 0x33, 0x39, 0xb4, 0xc0, 0x85, 0xf1, 0x47, 0x3c, 0x58,
8349 0x7a, 0x07, 0x93, 0xbe, 0xc3, 0xf3, 0x3f, 0xe8, 0x18, 0x86, 0x36, 0x40,
8350 0x55, 0xdc, 0x51, 0xb4, 0x36, 0x6f, 0x2a, 0xbb, 0x68, 0x9a, 0x99, 0xee,
8351 0x7b, 0xa5, 0x65, 0xad, 0xd5, 0x18, 0x6b, 0x43, 0xc0, 0x9c, 0x42, 0xad,
8352 0x46, 0x3d, 0x29, 0x96, 0x93, 0x7a, 0xe6, 0x87, 0xcc, 0xa8, 0x13, 0x31,
8353 0x07, 0xe1, 0x56, 0x73, 0x0a, 0xd8, 0x0c, 0xfd, 0x9d, 0x5d, 0x54, 0x1f,
8354 0xd5, 0x03, 0x1f, 0x21, 0xdd, 0xaf, 0x03, 0x72, 0xa3, 0x13, 0x1c, 0xf1,
8355 0xf1, 0xbc, 0xc0, 0xfd, 0xb6, 0x9c, 0x0e, 0x5b, 0xc8, 0xea, 0x8a, 0x9c,
8356 0x49, 0x2f, 0xbb, 0x44, 0xc9, 0xc5, 0xb0, 0x3e, 0x77, 0xfe, 0x25, 0x6f,
8357 0x09, 0x6e, 0x4a, 0x1b, 0xd7, 0x5a, 0x97, 0xac, 0xb4, 0xa4, 0x1a, 0x51,
8358 0xcb, 0x13, 0x8c, 0x59, 0x62, 0x56, 0x08, 0xba, 0x72, 0x3c, 0x9b, 0x60,
8359 0x4e, 0x40, 0x55, 0x54, 0xb9, 0x6e, 0x19, 0x82, 0x1d, 0xb5, 0x8a, 0xcb,
8360 0xde, 0x08, 0x05, 0xc1, 0x05, 0x30, 0x4d, 0xde, 0x46, 0xc1, 0xc5, 0xdb,
8361 0xa9, 0xb5, 0xd7, 0xd5, 0x6c, 0xbb, 0x65, 0x8d, 0xba, 0xfe, 0xc5, 0x12,
8362 0x93, 0x62, 0x0e, 0x6e, 0xb0, 0xeb, 0x97, 0x48, 0x4d, 0xe6, 0x1a, 0x3a,
8363 0xf7, 0x4e, 0xba, 0x32, 0x78, 0x4d, 0x92, 0x16, 0xc3, 0xe8, 0x70, 0x0a,
8364 0x6f, 0x32, 0x6d, 0x41, 0xdf, 0x3d, 0xa1, 0xd2, 0x24, 0xd0, 0xc2, 0x0a,
8365 0xd0, 0x86, 0xf2, 0xb2, 0x81, 0xca, 0x49, 0x23, 0x0b, 0xd4, 0x3a, 0x7a,
8366 0x6c, 0x60, 0x1c, 0x05, 0x4e, 0x68, 0xae, 0x25, 0x6e, 0x35, 0xe1, 0x69,
8367 0xaf, 0x29, 0xd4, 0x1a, 0x61, 0x83, 0xa2, 0xd8, 0x2a, 0xe3, 0x49, 0x82,
8368 0xff, 0x12, 0x5e, 0x1a, 0xea, 0x46, 0x69, 0x3c, 0x5d, 0xeb, 0xfa, 0x6b,
8369 0xb9, 0x26, 0x0c, 0xb1, 0x86, 0x01, 0x3f, 0x01, 0xbf, 0x20, 0x77, 0x12,
8370 0x41, 0xdb, 0xc7, 0x91, 0xcc, 0x45, 0xf3, 0x15, 0x51, 0x3a, 0x5b, 0x40,
8371 0x90, 0xd2, 0x73, 0x62, 0x98, 0xe1, 0xea, 0x0d, 0xc2, 0xda, 0x56, 0xf0,
8372 0x5f, 0x7d, 0x86, 0xc2, 0x22, 0x09, 0x7a, 0xea, 0x4a, 0xdd, 0x41, 0x12,
8373 0x44, 0xcf, 0x33, 0xcb, 0xc4, 0x48, 0xa2, 0x32, 0x9c, 0x9f, 0xd1, 0xb4,
8374 0x2c, 0xa5, 0x69, 0x69, 0x46, 0x93, 0xb2, 0x86, 0xcb, 0x56, 0x7a, 0xc3,
8375 0x61, 0x08, 0x86, 0xe6, 0x88, 0x3b, 0x00, 0x34, 0x7a, 0xcf, 0x50, 0xe9,
8376 0x1a, 0x42, 0x8c, 0x8e, 0xd9, 0x91, 0x20, 0x98, 0xdf, 0x8e, 0xe3, 0x89,
8377 0xde, 0x22, 0xe0, 0xab, 0x43, 0xca, 0x62, 0x1e, 0x9e, 0x3c, 0xb4, 0xc7,
8378 0x21, 0xb6, 0xe3, 0x88, 0xc3, 0xbe, 0x04, 0x05, 0x18, 0xdd, 0x16, 0xd8,
8379 0x07, 0x3a, 0xb3, 0xdd, 0x5a, 0x39, 0x6a, 0xda, 0xd6, 0x99, 0x4e, 0xba,
8380 0x45, 0x03, 0x4f, 0x4c, 0xb9, 0x6d, 0xa4, 0x81, 0x41, 0x29, 0x74, 0x4e,
8381 0x0c, 0x9f, 0x61, 0x03, 0x7b, 0x78, 0xdf, 0x7f, 0x2c, 0x4b, 0xad, 0x83,
8382 0xdf, 0x10, 0xaf, 0x31, 0x66, 0xd8, 0x5d, 0x93, 0xa6, 0x43, 0x88, 0x0e,
8383 0x92, 0xc4, 0x60, 0x9c, 0xd8, 0x8a, 0x3b, 0xe1, 0x5b, 0x3b, 0x38, 0x97,
8384 0xde, 0x01, 0x6e, 0xe5, 0x2c, 0xb9, 0xab, 0x7e, 0x29, 0x67, 0xb2, 0xd3,
8385 0x42, 0x43, 0xc8, 0x7e, 0x08, 0xff, 0x97, 0x70, 0xad, 0xc1, 0x74, 0x23,
8386 0x48, 0xae, 0xfe, 0xe8, 0x57, 0x49, 0x31, 0xe9, 0x11, 0xe8, 0x5d, 0x8f,
8387 0x94, 0xb0, 0x43, 0xa0, 0x57, 0xe2, 0xf5, 0xb8, 0x53, 0x4d, 0x9c, 0x97,
8388 0x19, 0xf4, 0xfc, 0x74, 0xb6, 0x98, 0x59, 0x90, 0x60, 0x84, 0xd6, 0xab,
8389 0x48, 0xe5, 0x63, 0x27, 0xaf, 0x1b, 0x75, 0xe9, 0x05, 0x02, 0x2b, 0x88,
8390 0x90, 0xe8, 0x00, 0xf9, 0x93, 0xbc, 0x23, 0xb7, 0x93, 0x36, 0x28, 0x53,
8391 0xc0, 0x2b, 0x26, 0x35, 0x66, 0xab, 0x09, 0x86, 0x11, 0xb9, 0x66, 0x62,
8392 0x2f, 0xec, 0x4a, 0x98, 0x7d, 0xa0, 0x4b, 0xa5, 0xf3, 0x44, 0x4c, 0x5d,
8393 0x9a, 0x0b, 0x89, 0x30, 0x4a, 0x2b, 0x22, 0x26, 0x33, 0xd3, 0x45, 0x16,
8394 0x91, 0xe9, 0xe1, 0x17, 0xbe, 0x54, 0x45, 0xe0, 0xe5, 0x21, 0x8c, 0x73,
8395 0x9b, 0x8e, 0xab, 0xeb, 0x3e, 0xa6, 0x0c, 0xa9, 0x7b, 0xa9, 0x94, 0x5e,
8396 0x16, 0xe8, 0xd2, 0x4d, 0x7d, 0x5c, 0xdd, 0x61, 0x12, 0xf4, 0xae, 0x32,
8397 0x4b, 0x10, 0x69, 0x23, 0xce, 0x6b, 0x47, 0xf8, 0x19, 0x52, 0xbf, 0x28,
8398 0xf9, 0x6d, 0x93, 0x0d, 0x39, 0xd3, 0xff, 0x28, 0x06, 0x41, 0x30, 0x99,
8399 0xa4, 0x77, 0x01, 0xe4, 0x59, 0x05, 0xc0, 0xed, 0x9b, 0x4d, 0x4f, 0xda,
8400 0xd8, 0xda, 0xa7, 0x35, 0x54, 0x27, 0xd6, 0xfe, 0x22, 0xd2, 0x96, 0x1b,
8401 0x53, 0x56, 0xd6, 0xe6, 0x06, 0x29, 0xf3, 0x29, 0x9d, 0xe6, 0xc1, 0xdc,
8402 0x3b, 0x38, 0x1b, 0x66, 0x7c, 0xfb, 0xdb, 0x35, 0x4d, 0x0e, 0xc2, 0x1e,
8403 0x1f, 0x57, 0xb1, 0x7c, 0xcd, 0x8d, 0x7d, 0xd6, 0xae, 0xf8, 0xa2, 0xaf,
8404 0xf5, 0x22, 0xb8, 0xca, 0x43, 0x25, 0x92, 0x7b, 0x24, 0x25, 0x8c, 0x5f,
8405 0x03, 0x2e, 0x5d, 0xff, 0xd4, 0x8d, 0xc0, 0x02, 0xfb, 0xba, 0x1b, 0x5d,
8406 0x82, 0x35, 0xb5, 0x41, 0x26, 0xd8, 0xf6, 0xd6, 0xce, 0x1e, 0xf5, 0x4a,
8407 0x1e, 0xb3, 0xda, 0xef, 0x37, 0xa6, 0xe7, 0xf8, 0xdb, 0xf6, 0x27, 0x24,
8408 0x1a, 0x5e, 0xdd, 0xb7, 0x6e, 0x64, 0x04, 0x30, 0xfc, 0x4b, 0x37, 0xda,
8409 0x65, 0x57, 0xe6, 0xf6, 0xd7, 0x41, 0xba, 0x13, 0x5b, 0xda, 0xf6, 0xd0,
8410 0xf9, 0x55, 0x3a, 0x8a, 0x8c, 0xcb, 0x22, 0xc6, 0xed, 0x7b, 0xa5, 0xca,
8411 0x8a, 0x61, 0x0e, 0x5e, 0x25, 0xaf, 0x96, 0x20, 0xcb, 0xb5, 0x73, 0x9c,
8412 0xc5, 0xff, 0x28, 0x09, 0x8d, 0x15, 0x24, 0xfe, 0x35, 0xfa, 0x30, 0xa9,
8413 0x3c, 0x20, 0x46, 0xe8, 0xa7, 0x34, 0xa7, 0x9a, 0x3a, 0x83, 0xa6, 0x51,
8414 0xfa, 0x2a, 0x79, 0xd0, 0x6c, 0x17, 0xa8, 0x25, 0xda, 0xac, 0x5a, 0xf7,
8415 0x0d, 0x27, 0x0c, 0x4e, 0x88, 0xf7, 0xa8, 0x41, 0x9a, 0x65, 0x50, 0x67,
8416 0x47, 0x6f, 0xa5, 0x8c, 0x2c, 0x0f, 0x43, 0x21, 0x19, 0x25, 0x70, 0xde,
8417 0x8f, 0x58, 0x59, 0x99, 0x51, 0xbe, 0xd1, 0xa8, 0x48, 0xe7, 0x73, 0xe9,
8418 0x5f, 0x83, 0xe4, 0xe9, 0x19, 0xf2, 0x94, 0x53, 0xbc, 0x00, 0x83, 0xa2,
8419 0xb0, 0x37, 0x10, 0x12, 0x21, 0xe0, 0x03, 0x53, 0x6a, 0xb9, 0x73, 0xb2,
8420 0x64, 0x0d, 0x05, 0x17, 0x7e, 0xa3, 0x63, 0xbd, 0x6c, 0x97, 0x90, 0x46,
8421 0x96, 0x6d, 0x03, 0x87, 0xac, 0xe0, 0xb2, 0xaf, 0xdf, 0xb9, 0xf5, 0xd4,
8422 0x3b, 0xdf, 0xae, 0x26, 0x93, 0xff, 0xd6, 0x6d, 0x2c, 0x31, 0xa9, 0x15,
8423 0xf7, 0xf6, 0xd3, 0x86, 0x47, 0xa5, 0xde, 0x65, 0x2f, 0x94, 0x36, 0x7c,
8424 0x71, 0x7e, 0xb1, 0xbb, 0xe1, 0xf6, 0x85, 0x96, 0x7e, 0x2a, 0x0c, 0x2d,
8425 0x46, 0x89, 0xc5, 0x6e, 0x3a, 0x12, 0x6b, 0x0c, 0x8c, 0x85, 0xec, 0x3b,
8426 0x51, 0x47, 0xd2, 0xf9, 0x13, 0xcf, 0x31, 0x7a, 0x22, 0x25, 0x4f, 0x5a,
8427 0xb4, 0xc9, 0x84, 0xce, 0x57, 0x72, 0x9b, 0x5b, 0x49, 0xad, 0x5d, 0x7c,
8428 0x03, 0x01, 0xc0, 0x92, 0x51, 0xda, 0xa8, 0x91, 0x54, 0x8f, 0x10, 0x96,
8429 0x4d, 0x1f, 0x01, 0x02, 0x22, 0x46, 0x50, 0x42, 0x6f, 0x96, 0x11, 0x97,
8430 0x06, 0x87, 0x1c, 0x81, 0x52, 0x73, 0xe0, 0x5c, 0x4b, 0xc9, 0x9d, 0x46,
8431 0x13, 0xa0, 0xbe, 0x68, 0xb6, 0x0e, 0x0e, 0x93, 0x76, 0x50, 0x86, 0x4d,
8432 0xfc, 0x9a, 0x8e, 0x59, 0x5c, 0x83, 0x3d, 0xa4, 0x63, 0x03, 0x69, 0x53,
8433 0xf3, 0xbf, 0x11, 0xce, 0x37, 0x81, 0x01, 0xbf, 0x3b, 0x1b, 0xb8, 0xed,
8434 0x9d, 0x3c, 0x79, 0x41, 0xe6, 0x29, 0x83, 0x09, 0x39, 0x58, 0xf8, 0x4e,
8435 0xc5, 0xed, 0xd9, 0xe9, 0xe0, 0xd2, 0xe3, 0x6e, 0x84, 0xf0, 0x3b, 0x00,
8436 0xf6, 0xc0, 0x64, 0xb2, 0x5a, 0x8f, 0x1d, 0x46, 0x8e, 0x11, 0x80, 0x72,
8437 0x4e, 0xac, 0x66, 0xe3, 0x2c, 0x2d, 0xdc, 0x76, 0x2f, 0xcd, 0xe1, 0x60,
8438 0x92, 0x7f, 0xe2, 0x80, 0x82, 0xe0, 0x87, 0x69, 0xd2, 0x6d, 0xb9, 0x18,
8439 0xf6, 0x9c, 0x16, 0xbc, 0x6c, 0x42, 0xdc, 0xcf, 0x86, 0x39, 0xe6, 0x99,
8440 0x81, 0x16, 0xf6, 0xc9, 0x97, 0x4e, 0xeb, 0xcc, 0x58, 0x44, 0x22, 0x69,
8441 0xd8, 0x5c, 0x4b, 0xbb, 0x1a, 0x45, 0xe8, 0x92, 0x9f, 0x72, 0xec, 0x06,
8442 0xaf, 0x7d, 0x34, 0x73, 0x21, 0x29, 0xdc, 0x4c, 0x6e, 0xa0, 0xdd, 0x9c,
8443 0x13, 0xbd, 0xea, 0x80, 0x80, 0x98, 0xf1, 0xbd, 0x4a, 0x8a, 0xbb, 0xc3,
8444 0x8a, 0x96, 0xf9, 0x4a, 0xd8, 0x7a, 0x14, 0xc9, 0x31, 0xd3, 0x46, 0x54,
8445 0x34, 0x2f, 0x16, 0x14, 0x5f, 0x25, 0xbd, 0x74, 0xcc, 0xb0, 0x0f, 0x65,
8446 0xbd, 0x83, 0x32, 0xb7, 0x12, 0x41, 0x09, 0x4c, 0x49, 0xe5, 0xd8, 0x88,
8447 0xaa, 0x6c, 0x5b, 0x49, 0x0e, 0x75, 0xd5, 0x70, 0x9d, 0x6a, 0xa8, 0xe5,
8448 0xdd, 0xb6, 0x8e, 0x94, 0x7e, 0x9a, 0x95, 0xf4, 0x6d, 0xfa, 0x70, 0xfa,
8449 0xea, 0xcc, 0x10, 0x4b, 0x88, 0x43, 0xc8, 0x53, 0xe6, 0x55, 0x11, 0x32,
8450 0x52, 0x8f, 0x0f, 0x5e, 0x13, 0x0f, 0xfa, 0x65, 0x91, 0xa5, 0x7f, 0xa7,
8451 0x32, 0x58, 0x32, 0x07, 0x27, 0xa9, 0xe8, 0x70, 0x98, 0xc6, 0x25, 0xe7,
8452 0x1b, 0x16, 0xc8, 0x22, 0x5a, 0x9c, 0xd0, 0x41, 0xb1, 0x15, 0x39, 0x6d,
8453 0x20, 0x88, 0xdb, 0xb5, 0xba, 0x2e, 0x2b, 0x42, 0x2c, 0xdc, 0x6c, 0xb4,
8454 0xbd, 0xcd, 0xc6, 0x5f, 0x91, 0x7e, 0x7f, 0x5f, 0x20, 0x7a, 0xca, 0x32,
8455 0x14, 0x78, 0x02, 0xfe, 0x9a, 0x4a, 0xc3, 0x46, 0xd0, 0x82, 0x36, 0x09,
8456 0xff, 0xd9, 0x53, 0x6d, 0xd1, 0xbf, 0xe3, 0x54, 0xb6, 0xd7, 0xfb, 0x91,
8457 0x81, 0xa8, 0x60, 0xd4, 0xe8, 0xf5, 0xd7, 0xef, 0xcf, 0xdf, 0xf6, 0x2e,
8458 0xcf, 0x37, 0xa8, 0x58, 0x9e, 0x46, 0x5e, 0x52, 0x1d, 0x55, 0xaa, 0x7a,
8459 0xe9, 0x34, 0x39, 0x92, 0x78, 0xc5, 0x7a, 0xb9, 0x21, 0x50, 0x9d, 0x7c,
8460 0x88, 0xd3, 0xf4, 0xf4, 0x2e, 0x0f, 0xe5, 0x31, 0x63, 0x3d, 0x18, 0xb5,
8461 0x25, 0x60, 0xd8, 0x51, 0x8c, 0xb6, 0x97, 0xe6, 0xde, 0xd6, 0x81, 0x47,
8462 0x86, 0x8b, 0xf2, 0x3e, 0x12, 0x80, 0x6e, 0xec, 0x76, 0x4b, 0x9e, 0x2b,
8463 0x3f, 0x14, 0xc3, 0x31, 0x27, 0xac, 0x36, 0xd4, 0xa6, 0x6e, 0x88, 0x13,
8464 0xcc, 0xf8, 0xb0, 0x55, 0x0e, 0x32, 0x22, 0x2e, 0x8a, 0xfc, 0x56, 0x75,
8465 0x05, 0xe9, 0x6a, 0x90, 0x61, 0xe6, 0x41, 0x09, 0x06, 0x64, 0x3b, 0x34,
8466 0x37, 0x37, 0x75, 0x94, 0xd6, 0x6b, 0x2b, 0x07, 0x24, 0x9c, 0x95, 0xc2,
8467 0xa3, 0xb7, 0xb7, 0xbb, 0xb5, 0x2a, 0x7c, 0xb3, 0x0b, 0xf9, 0xdf, 0xe4,
8468 0x01, 0x9c, 0x60, 0xaf, 0x2a, 0x16, 0x88, 0xf8, 0x1d, 0x0e, 0x48, 0x9f,
8469 0xa1, 0xb0, 0xaf, 0xa3, 0xc5, 0x75, 0xa5, 0xd3, 0x2f, 0x96, 0x9d, 0xa2,
8470 0x57, 0xd9, 0xc6, 0x12, 0xf9, 0xdc, 0x21, 0x88, 0x98, 0xff, 0xf2, 0x84,
8471 0x50, 0x59, 0x82, 0x22, 0x44, 0xdb, 0x05, 0x03, 0xd0, 0x9c, 0x54, 0x6c,
8472 0x33, 0x78, 0x52, 0x6c, 0x80, 0x0e, 0xbb, 0x53, 0xab, 0xdb, 0xa8, 0x9d,
8473 0x25, 0xc9, 0x33, 0xfc, 0xd4, 0xb3, 0x93, 0xf0, 0x43, 0x16, 0xda, 0x55,
8474 0x91, 0x8f, 0x17, 0x23, 0x62, 0x02, 0x74, 0x22, 0xa6, 0xd5, 0x7d, 0x34,
8475 0xe4, 0x56, 0xe2, 0xda, 0x6b, 0x05, 0x87, 0xb6, 0x48, 0x79, 0xec, 0x8c,
8476 0x6f, 0x6a, 0xd3, 0x7c, 0x15, 0x22, 0xba, 0x53, 0x44, 0x85, 0x6c, 0x24,
8477 0x2a, 0x1d, 0x4f, 0xd8, 0x09, 0x50, 0x34, 0x3d, 0x51, 0x98, 0xa4, 0x19,
8478 0xad, 0x4b, 0xef, 0x4b, 0x4f, 0xe2, 0x4e, 0x63, 0xf4, 0xf5, 0xde, 0xd9,
8479 0x8c, 0xf1, 0x98, 0x4d, 0x69, 0xca, 0xfc, 0xfa, 0x2a, 0x2e, 0x41, 0xb4,
8480 0xd6, 0xc7, 0xdb, 0x78, 0x0a, 0x5f, 0xb8, 0xab, 0x17, 0xf5, 0x16, 0x24,
8481 0xe2, 0x0e, 0x0c, 0xa1, 0x57, 0x62, 0x92, 0x85, 0xe2, 0xbb, 0x39, 0x1c,
8482 0x52, 0x5b, 0xf4, 0x30, 0x77, 0x9c, 0xd6, 0xda, 0xd9, 0x70, 0xf1, 0x93,
8483 0xb3, 0xaa, 0x22, 0x79, 0xa8, 0x27, 0x2f, 0xe1, 0xbd, 0x61, 0xfb, 0x42,
8484 0x04, 0xd7, 0x1b, 0x87, 0x4a, 0x1d, 0xc7, 0x29, 0xc6, 0x7e, 0x51, 0x33,
8485 0xd0, 0x87, 0x46, 0xeb, 0x8a, 0xb6, 0x6d, 0xd0, 0x50, 0xcf, 0xe4, 0xab,
8486 0x03, 0x03, 0x07, 0x8e, 0xa2, 0xbf, 0x31, 0xdc, 0xee, 0x77, 0xdf, 0xd9,
8487 0xa3, 0x1f, 0x1d, 0x32, 0x1b, 0x6d, 0x7d, 0x6a, 0x04, 0x2b, 0x73, 0x9c,
8488 0x2b, 0x28, 0x18, 0x4d, 0xd8, 0xb3, 0x48, 0xd8, 0x5c, 0x04, 0xed, 0x49,
8489 0xea, 0x3a, 0x30, 0x0e, 0xc9, 0x51, 0x85, 0xab, 0x84, 0x8e, 0x06, 0x49,
8490 0xfc, 0x51, 0x1d, 0x02, 0x3b, 0xd7, 0xd8, 0x46, 0x2e, 0x41, 0x6c, 0xdf,
8491 0xd2, 0xe2, 0xf4, 0xd4, 0xc9, 0x64, 0x13, 0x99, 0xc0, 0x78, 0xba, 0xcd,
8492 0x44, 0xf3, 0xb2, 0xec, 0x12, 0xce, 0x0b, 0xd6, 0x5e, 0xca, 0x06, 0x7d,
8493 0x9a, 0x8e, 0x8f, 0x92, 0x32, 0x16, 0xf1, 0xc0, 0x1a, 0x15, 0x89, 0xf8,
8494 0x37, 0x4b, 0x55, 0xbc, 0xb8, 0x37, 0xd8, 0x34, 0x90, 0x65, 0xcf, 0xc1,
8495 0x08, 0x67, 0x2f, 0xda, 0x42, 0x82, 0xc6, 0x4a, 0x31, 0xb8, 0x63, 0x2a,
8496 0xe2, 0x20, 0x10, 0x29, 0x44, 0x6c, 0x4b, 0x6e, 0xbc, 0x4c, 0x10, 0x13,
8497 0xe8, 0x96, 0xc5, 0x7c, 0xc1, 0xc8, 0x9c, 0xc9, 0xff, 0xa5, 0x0c, 0xdb,
8498 0x77, 0x9d, 0x89, 0x86, 0xbd, 0xbd, 0xa0, 0x16, 0x73, 0x3b, 0x86, 0xa4,
8499 0xb1, 0x44, 0x35, 0xa7, 0xfe, 0x5a, 0x57, 0xac, 0x8f, 0xda, 0x8c, 0x76,
8500 0xb6, 0x17, 0x28, 0x57, 0x6c, 0x46, 0xe6, 0x3e, 0xec, 0x3d, 0x7c, 0x1b,
8501 0xbf, 0xe9, 0xde, 0x88, 0x55, 0x1f, 0x8e, 0x8f, 0xd9, 0xce, 0xa3, 0x6c,
8502 0x5f, 0x62, 0xd8, 0x96, 0x88, 0x50, 0xb6, 0xd5, 0x39, 0x7d, 0xcb, 0x0d,
8503 0x8a, 0x89, 0xe2, 0x3c, 0x06, 0xe9, 0x6d, 0x86, 0x72, 0xa4, 0x89, 0x4c,
8504 0x6a, 0x15, 0x55, 0x69, 0x29, 0x79, 0xa2, 0x5d, 0xdf, 0x49, 0x60, 0x65,
8505 0x0e, 0x61, 0x37, 0x39, 0x30, 0x97, 0x82, 0x91, 0xcd, 0x9b, 0x00, 0x7b,
8506 0xe8, 0xc8, 0xa8, 0x5a, 0x58, 0xc6, 0xcc, 0xee, 0x99, 0x15, 0x30, 0x9b,
8507 0xdd, 0xad, 0xed, 0x2e, 0xfe, 0xdc, 0xe9, 0x52, 0xd2, 0x24, 0xfc, 0xb6,
8508 0x6b, 0x7a, 0x5e, 0xd4, 0x36, 0x09, 0x5d, 0x4e, 0x4e, 0x51, 0x62, 0xe9,
8509 0xdd, 0xbb, 0xbb, 0x40, 0x97, 0x93, 0x3a, 0x1e, 0x5e, 0x6f, 0xc9, 0x5c,
8510 0x2d, 0x21, 0x29, 0x59, 0x68, 0xe1, 0xad, 0xa5, 0x62, 0x72, 0x49, 0xdf,
8511 0x9e, 0x20, 0x02, 0x2d, 0x21, 0xec, 0x36, 0x1b, 0x40, 0xca, 0x92, 0xbb,
8512 0xbd, 0x9c, 0x68, 0x11, 0x91, 0x2c, 0xd2, 0x9c, 0x0d, 0xde, 0xf2, 0xae,
8513 0x0d, 0x4c, 0xa9, 0xb6, 0xc8, 0xe3, 0x44, 0x05, 0x8c, 0xc1, 0x66, 0xd4,
8514 0x76, 0x62, 0x71, 0x75, 0x40, 0xd8, 0xb7, 0xc0, 0xe2, 0x48, 0x43, 0xaf,
8515 0xbe, 0x95, 0xbf, 0x50, 0x68, 0x0a, 0xfe, 0x6b, 0x37, 0x9c, 0x42, 0x28,
8516 0x9d, 0x89, 0x18, 0xe5, 0x55, 0x64, 0x85, 0xd2, 0x49, 0xbb, 0xa9, 0xb3,
8517 0x1b, 0x58, 0xae, 0xb4, 0xa8, 0xe1, 0x4d, 0x59, 0x64, 0xdc, 0x6a, 0x65,
8518 0x32, 0x95, 0xbe, 0x2a, 0x8b, 0x72, 0xd5, 0xa2, 0x95, 0xb3, 0x15, 0x43,
8519 0x3b, 0xa8, 0x58, 0x4d, 0x35, 0xa3, 0xa1, 0x17, 0x4f, 0xab, 0x5e, 0x79,
8520 0x33, 0xaa, 0x2b, 0x13, 0x18, 0x0d, 0x55, 0x0a, 0x1e, 0xca, 0x2f, 0x5e,
8521 0x90, 0xe7, 0xf4, 0xed, 0xd1, 0x45, 0x74, 0xf6, 0xea, 0x88, 0x4d, 0xf1,
8522 0x68, 0xf0, 0x96, 0xd2, 0xaa, 0x9d, 0x46, 0xca, 0x34, 0x8e, 0x5d, 0x09,
8523 0xd3, 0x3d, 0x78, 0xbc, 0x08, 0xe4, 0xbb, 0xa8, 0xcd, 0x51, 0x3b, 0x49,
8524 0xc3, 0x40, 0xc6, 0x54, 0x56, 0x89, 0x23, 0xd5, 0x1f, 0xe0, 0xd4, 0x75,
8525 0x98, 0x96, 0x07, 0xc6, 0xf8, 0x09, 0x67, 0x14, 0xd1, 0xe1, 0x86, 0xea,
8526 0x87, 0x46, 0x96, 0x79, 0x6a, 0xcd, 0x59, 0x44, 0x47, 0x55, 0x64, 0x82,
8527 0x85, 0xd2, 0x3c, 0x0b, 0xdf, 0xbe, 0xc9, 0x46, 0x44, 0x07, 0x2e, 0xdf,
8528 0x7a, 0x8b, 0xc8, 0x60, 0x12, 0xe5, 0xa8, 0x4d, 0x93, 0x7d, 0x80, 0xe4,
8529 0x62, 0x93, 0xda, 0x10, 0x8e, 0xb2, 0x0c, 0xfd, 0x52, 0xc0, 0xfa, 0xeb,
8530 0x31, 0x44, 0x2c, 0xd9, 0x75, 0x18, 0x15, 0x8f, 0x76, 0x76, 0x5f, 0xec,
8531 0x75, 0xb9, 0x47, 0x4b, 0xb4, 0xbf, 0xf5, 0x52, 0x81, 0x9d, 0x4e, 0x4f,
8532 0x2e, 0x5f, 0x03, 0x89, 0x0b, 0xd8, 0x3b, 0xcd, 0xe8, 0x04, 0x7e, 0xd6,
8533 0x4b, 0xe2, 0xe2, 0x1a, 0x6c, 0x48, 0xec, 0xc2, 0xd6, 0x2b, 0x67, 0xd5,
8534 0xbc, 0xb7, 0xb5, 0x15, 0x4a, 0xd1, 0xfc, 0x17, 0x87, 0xa9, 0xea, 0x2c,
8535 0xb7, 0x76, 0xf4, 0xe1, 0xf2, 0xcd, 0xe7, 0xff, 0xb9, 0x16, 0xa5, 0xb3,
8536 0x78, 0xbe, 0xba, 0xd6, 0x53, 0x03, 0xa8, 0x68, 0xa0, 0xd0, 0xa1, 0x99,
8537 0xd8, 0xc3, 0xe5, 0x6d, 0x6f, 0x6e, 0xcf, 0x8c, 0x6c, 0x83, 0x01, 0x71,
8538 0xa4, 0xd6, 0x92, 0xdc, 0x51, 0x4b, 0xaf, 0xf4, 0x8a, 0x8a, 0x42, 0x39,
8539 0xce, 0x8d, 0xc0, 0xa7, 0xd4, 0x5e, 0xad, 0xb3, 0x59, 0x5a, 0xdd, 0x6f,
8540 0x10, 0x5a, 0x26, 0x3d, 0x68, 0x31, 0x9c, 0x61, 0xb4, 0x69, 0x1c, 0xa9,
8541 0x55, 0x1a, 0xec, 0x74, 0x50, 0x0a, 0x8e, 0x73, 0x91, 0x60, 0x17, 0x4b,
8542 0xd6, 0xc3, 0x33, 0x96, 0xf4, 0x4f, 0x6b, 0xf0, 0x69, 0xc9, 0x82, 0x14,
8543 0xfc, 0xd2, 0x21, 0x38, 0x1c, 0x9d, 0x97, 0x11, 0x39, 0x3c, 0x90, 0x5b,
8544 0x1e, 0x1f, 0x41, 0xa4, 0x11, 0x8b, 0xd1, 0x5c, 0x6b, 0xe0, 0xe8, 0x6f,
8545 0xd4, 0x92, 0xbc, 0xd5, 0x20, 0xd5, 0x69, 0x85, 0xd5, 0xa8, 0x2f, 0x86,
8546 0x55, 0x50, 0x39, 0xfa, 0xc0, 0x53, 0xe5, 0xb0, 0x6e, 0x00, 0xe8, 0x02,
8547 0x77, 0x70, 0x7d, 0x16, 0x2b, 0x10, 0x88, 0x66, 0xda, 0x24, 0xd0, 0xaf,
8548 0x49, 0x1f, 0x5c, 0x01, 0x8f, 0x3e, 0x78, 0x51, 0x8f, 0x8c, 0x33, 0xb4,
8549 0x3b, 0xcb, 0x30, 0x81, 0xbe, 0x75, 0x1b, 0x6e, 0x50, 0x22, 0x3d, 0xba,
8550 0x32, 0xd4, 0x33, 0x0f, 0xea, 0x4b, 0x3a, 0xc7, 0x50, 0x1a, 0xec, 0x59,
8551 0x8b, 0x4b, 0x14, 0x4a, 0x34, 0x62, 0xd5, 0x0f, 0xa4, 0x11, 0x16, 0x56,
8552 0x90, 0x14, 0x03, 0xeb, 0x17, 0x3d, 0x73, 0x62, 0x29, 0x4d, 0xd0, 0xf8,
8553 0x46, 0x49, 0xe4, 0x06, 0xc5, 0x9d, 0xf1, 0x3d, 0x0c, 0x45, 0x72, 0x24,
8554 0xbe, 0x3f, 0xbe, 0xb8, 0x8c, 0x2e, 0xcf, 0x5d, 0xe7, 0x17, 0x43, 0xf7,
8555 0x13, 0xe4, 0x28, 0x98, 0xe2, 0x45, 0xf0, 0xa8, 0xd5, 0x79, 0x0e, 0x13,
8556 0xec, 0x14, 0x97, 0x17, 0xea, 0x38, 0x62, 0x9d, 0x81, 0x8a, 0x7d, 0x4d,
8557 0x3d, 0x4d, 0x83, 0x5a, 0x01, 0xb8, 0x44, 0xa2, 0x5e, 0xd4, 0x8c, 0xc1,
8558 0xb2, 0x0d, 0x41, 0xa6, 0x5f, 0xc3, 0x92, 0xe0, 0x3c, 0x14, 0x9e, 0x9e,
8559 0x17, 0x9e, 0x42, 0x40, 0x14, 0x29, 0xe4, 0x36, 0x55, 0x27, 0x9c, 0xab,
8560 0x8b, 0x93, 0xb9, 0x89, 0xa7, 0xe9, 0xd8, 0xa1, 0x4a, 0x28, 0x5c, 0xc0,
8561 0xc6, 0x82, 0x5e, 0x81, 0x19, 0x5e, 0x57, 0x08, 0x20, 0xa1, 0xa4, 0x32,
8562 0x4e, 0x06, 0x91, 0xeb, 0xec, 0x62, 0x9c, 0x4c, 0xe3, 0xab, 0x40, 0xb4,
8563 0xac, 0x99, 0x3d, 0x56, 0xc3, 0x4a, 0xe3, 0xc5, 0xc4, 0x09, 0xfa, 0xeb,
8564 0x89, 0x43, 0xfb, 0x7e, 0x2e, 0x5a, 0x19, 0x8a, 0x63, 0xe3, 0xbb, 0x53,
8565 0x9e, 0x6d, 0x8a, 0x68, 0xad, 0xdc, 0x45, 0x38, 0xb7, 0x62, 0xbf, 0xb1,
8566 0xae, 0x4f, 0xda, 0x54, 0x0d, 0xf6, 0xae, 0x6d, 0x0d, 0x50, 0xa4, 0xaa,
8567 0xda, 0x5e, 0xf3, 0xf7, 0xd8, 0x63, 0xb6, 0x58, 0x1d, 0xa7, 0xe4, 0x65,
8568 0xe0, 0x44, 0xa0, 0xa7, 0x3d, 0x20, 0x83, 0x2c, 0xba, 0xac, 0x48, 0x20,
8569 0xf6, 0x03, 0xcb, 0x4d, 0x5d, 0x76, 0x4a, 0x92, 0xc3, 0x04, 0x0f, 0x78,
8570 0xf8, 0x8a, 0xd3, 0x1f, 0x3c, 0x0b, 0x94, 0xd3, 0x09, 0xa3, 0xf7, 0xc9,
8571 0x3c, 0x89, 0xab, 0xa8, 0x51, 0x89, 0xe2, 0x1c, 0xaf, 0xc6, 0x19, 0x5a,
8572 0xdf, 0xc9, 0x5e, 0xbb, 0xc2, 0x36, 0x1e, 0x23, 0x91, 0x20, 0x0e, 0x66,
8573 0x06, 0xb8, 0x35, 0x32, 0xb3, 0x56, 0xb2, 0xb5, 0xfe, 0xcd, 0xfb, 0xd7,
8574 0x7f, 0xd3, 0x25, 0xdc, 0xe8, 0xaa, 0xf1, 0xdc, 0xf2, 0x1c, 0xdb, 0x30,
8575 0x86, 0x3a, 0x1d, 0x98, 0xb4, 0x03, 0xe9, 0xaa, 0x53, 0x23, 0x82, 0xfd,
8576 0xc3, 0x87, 0x94, 0x19, 0xe7, 0x94, 0xd8, 0xbe, 0x8e, 0x29, 0x66, 0x70,
8577 0xd5, 0x40, 0x1c, 0x6c, 0xbb, 0xfd, 0x7d, 0x72, 0x81, 0xbf, 0x3e, 0xde,
8578 0xdf, 0xdd, 0xd9, 0xde, 0xe8, 0x47, 0xeb, 0x8d, 0xc3, 0x7c, 0xe3, 0xc1,
8579 0xd7, 0xac, 0xd1, 0x1e, 0x13, 0xc1, 0x90, 0xc9, 0xd7, 0x4f, 0xbe, 0xbb,
8580 0x78, 0xd7, 0x78, 0x49, 0xda, 0x7d, 0x5e, 0x12, 0xe1, 0x92, 0x77, 0xb4,
8581 0x96, 0x46, 0xed, 0x11, 0x5c, 0x54, 0x8d, 0xfd, 0x5c, 0x02, 0x69, 0x7a,
8582 0xaf, 0x8b, 0x14, 0xed, 0xf6, 0x0e, 0xd2, 0xa3, 0x73, 0x96, 0x67, 0x63,
8583 0xb0, 0x83, 0xcf, 0xb1, 0xb1, 0x70, 0xd2, 0x01, 0x26, 0x78, 0xf0, 0xed,
8584 0x1e, 0xbb, 0x83, 0xea, 0xc7, 0x52, 0x06, 0xa6, 0xc9, 0xd3, 0xb6, 0x8a,
8585 0xb3, 0x13, 0x9d, 0x4d, 0xf2, 0x96, 0xf3, 0x9e, 0x33, 0xbf, 0x62, 0xe0,
8586 0x2d, 0x7d, 0xd8, 0x8f, 0x5e, 0x39, 0xc8, 0xfc, 0xd7, 0x0b, 0xc4, 0x3e,
8587 0x44, 0xb0, 0xf9, 0x2a, 0x94, 0x67, 0xf2, 0xe0, 0x2b, 0xd1, 0x63, 0x1e,
8588 0x95, 0xdd, 0xd1, 0x75, 0x72, 0x45, 0x9c, 0x36, 0x57, 0xf5, 0xed, 0x7d,
8589 0x47, 0x55, 0x3e, 0x14, 0xc3, 0x38, 0xa4, 0xa0, 0x7d, 0x28, 0x5d, 0x8d,
8590 0x6d, 0xef, 0xb7, 0x7f, 0xbd, 0xbc, 0xac, 0xdb, 0x30, 0x9a, 0x04, 0x42,
8591 0xb7, 0xaf, 0x6b, 0x22, 0x03, 0xb9, 0xc7, 0x63, 0x49, 0xe2, 0xce, 0x3d,
8592 0xce, 0xe6, 0x8c, 0x8f, 0x7e, 0x64, 0xd0, 0xb7, 0xe9, 0x42, 0xeb, 0x19,
8593 0x4a, 0xeb, 0x70, 0x41, 0x8c, 0x69, 0x87, 0xad, 0x84, 0xba, 0x81, 0x02,
8594 0x53, 0x13, 0xb1, 0x37, 0x8d, 0xea, 0xb9, 0xec, 0x31, 0xce, 0xc6, 0x35,
8595 0xf3, 0x9d, 0x84, 0x36, 0x9d, 0x45, 0xc9, 0x1d, 0x61, 0x76, 0x8c, 0x93,
8596 0xe8, 0x99, 0x6f, 0xc2, 0x1e, 0xf1, 0xab, 0x88, 0xbd, 0x5e, 0xb8, 0xd6,
8597 0x8f, 0xa6, 0x27, 0xd0, 0xf2, 0x74, 0x9d, 0xb4, 0x0b, 0xcc, 0xba, 0x20,
8598 0x77, 0xc3, 0xda, 0x5f, 0xd6, 0x82, 0xfa, 0x02, 0xa7, 0x61, 0x88, 0xcb,
8599 0x98, 0x43, 0x0a, 0x28, 0x10, 0x28, 0x15, 0x43, 0x72, 0x2b, 0x28, 0xf7,
8600 0x82, 0x07, 0x79, 0xbb, 0x16, 0x99, 0xf4, 0x8b, 0xa6, 0x1b, 0xe1, 0xc1,
8601 0x64, 0x8c, 0xb4, 0x72, 0xb3, 0x2f, 0x6c, 0x9e, 0x04, 0x27, 0x4a, 0x34,
8602 0x7d, 0x87, 0x26, 0x6d, 0xa2, 0xb6, 0xd3, 0xf6, 0x5f, 0x04, 0x76, 0xda,
8603 0xbb, 0xf3, 0xcb, 0x93, 0x83, 0x48, 0x1b, 0x74, 0x6a, 0x47, 0x37, 0x49,
8604 0x00, 0x94, 0x8a, 0x26, 0xc2, 0xd0, 0x10, 0xd4, 0x53, 0xac, 0x13, 0x91,
8605 0x95, 0xee, 0x06, 0xe4, 0x1b, 0xe1, 0x4e, 0xa1, 0x48, 0xe0, 0x28, 0x66,
8606 0xd5, 0x5a, 0x7f, 0x41, 0x18, 0x89, 0xe2, 0x00, 0x62, 0x86, 0xc2, 0x05,
8607 0xf7, 0xdb, 0x6a, 0x51, 0xef, 0x25, 0x6a, 0x67, 0xc4, 0xba, 0xbf, 0xc7,
8608 0x41, 0xac, 0xff, 0x92, 0xb7, 0xac, 0xff, 0x88, 0x5d, 0xe6, 0x6c, 0x8b,
8609 0xd6, 0x0c, 0x82, 0x76, 0x81, 0x61, 0x73, 0x01, 0x9a, 0x9b, 0x4d, 0x7c,
8610 0x6c, 0x18, 0x8a, 0xfa, 0xa2, 0xb5, 0x3b, 0x64, 0x65, 0x36, 0x96, 0xad,
8611 0x95, 0x51, 0x3f, 0x9b, 0x1a, 0xf3, 0xec, 0x85, 0x12, 0x97, 0x29, 0x9a,
8612 0x88, 0xde, 0x89, 0x14, 0xbb, 0xb6, 0x69, 0x97, 0xd3, 0xf2, 0x13, 0x42,
8613 0xc0, 0x63, 0x04, 0x3a, 0x54, 0x57, 0x9c, 0x64, 0x79, 0x0c, 0xfc, 0xc0,
8614 0x73, 0xb3, 0xfb, 0xa8, 0xdd, 0x7f, 0xd8, 0xa5, 0x8a, 0x20, 0x0b, 0x30,
8615 0xc4, 0xba, 0x0e, 0x79, 0x20, 0x53, 0x6e, 0xfb, 0x03, 0x4f, 0xd9, 0xdf,
8616 0x72, 0x7a, 0xd5, 0xd0, 0xdb, 0xb4, 0x27, 0x34, 0x63, 0x85, 0xfa, 0xb6,
8617 0x89, 0x2b, 0xa6, 0xd4, 0xba, 0x40, 0x9a, 0xaf, 0xfe, 0xce, 0x36, 0xb7,
8618 0xb3, 0x58, 0xbb, 0x8e, 0x97, 0x76, 0x35, 0x46, 0xa8, 0xb7, 0x1e, 0xb2,
8619 0xac, 0x50, 0xef, 0x33, 0x7a, 0x38, 0x29, 0x18, 0x22, 0x31, 0x9e, 0x46,
8620 0x2d, 0x85, 0x71, 0x6f, 0x85, 0x1f, 0xe8, 0xfa, 0x34, 0xd3, 0xcb, 0xd8,
8621 0xbc, 0xe3, 0x74, 0xa1, 0x69, 0xce, 0x70, 0x56, 0x20, 0x1a, 0x72, 0x74,
8622 0x42, 0xdb, 0x04, 0x4a, 0x5f, 0x08, 0x57, 0x04, 0xc9, 0x1a, 0xb9, 0xed,
8623 0x42, 0x15, 0x0d, 0x4e, 0x78, 0x04, 0x59, 0x82, 0x82, 0x41, 0x43, 0xc4,
8624 0x23, 0x8a, 0x7e, 0xca, 0x87, 0xe2, 0xc5, 0x47, 0xe3, 0xc2, 0xd3, 0x0a,
8625 0xe0, 0xe2, 0x09, 0x61, 0xa5, 0x2c, 0x80, 0x5c, 0xe3, 0x05, 0x87, 0x14,
8626 0x71, 0x42, 0xb6, 0x3a, 0xac, 0xe0, 0x84, 0x82, 0xe8, 0x8a, 0x5b, 0x57,
8627 0x51, 0x05, 0x63, 0x24, 0x90, 0xec, 0x8d, 0xe1, 0xe0, 0xb0, 0xdf, 0x41,
8628 0x6c, 0x76, 0x77, 0xb9, 0x63, 0xaa, 0xbd, 0x2f, 0x23, 0xed, 0x8f, 0xc2,
8629 0xcd, 0x7a, 0x2d, 0x38, 0x89, 0x94, 0xcf, 0x23, 0x7d, 0xbc, 0x2c, 0x2b,
8630 0x0d, 0xe1, 0xc1, 0xbd, 0x05, 0x79, 0x89, 0x52, 0x1a, 0x6f, 0x01, 0x54,
8631 0xbf, 0x57, 0xcd, 0xcc, 0xaa, 0x31, 0xd2, 0xe7, 0x15, 0x93, 0x24, 0xe8,
8632 0x6a, 0x1f, 0x0a, 0xdd, 0x4c, 0x02, 0x73, 0xab, 0xd2, 0x20, 0xfa, 0xf9,
8633 0xbf, 0x3a, 0xe1, 0xc9, 0xf0, 0xd2, 0xf6, 0x2a, 0x29, 0x4b, 0xe6, 0xae,
8634 0x9d, 0xfe, 0xcb, 0x55, 0xf1, 0x5d, 0x9b, 0x6d, 0x71, 0x5d, 0x39, 0x97,
8635 0x54, 0x31, 0x2e, 0xf6, 0x32, 0x34, 0x3d, 0x2e, 0x9e, 0xe0, 0x42, 0x75,
8636 0xce, 0xd5, 0x68, 0x40, 0xcf, 0xe8, 0x20, 0x26, 0xd2, 0xdd, 0x2c, 0x90,
8637 0x7b, 0xab, 0x17, 0xa8, 0x23, 0xd1, 0x80, 0x5d, 0x19, 0x1c, 0xff, 0x54,
8638 0x0a, 0x8c, 0x15, 0x3c, 0xf0, 0x39, 0x9c, 0x6c, 0xec, 0xf2, 0x2e, 0x7d,
8639 0x05, 0x9e, 0x03, 0xaa, 0xb8, 0xe4, 0xe8, 0x87, 0x5c, 0x55, 0x5a, 0xe8,
8640 0x64, 0xe8, 0x8c, 0x5a, 0x89, 0x92, 0xff, 0x8b, 0x5a, 0xc9, 0x6a, 0x0b,
8641 0x6c, 0x87, 0x8c, 0x06, 0x68, 0x39, 0x7c, 0x4e, 0x9c, 0x48, 0x6b, 0x93,
8642 0x77, 0x06, 0x8f, 0x79, 0x7d, 0x70, 0xf1, 0xee, 0xe4, 0xeb, 0xf3, 0x8d,
8643 0x87, 0xdc, 0xc4, 0x75, 0x58, 0x43, 0x93, 0xb0, 0x1e, 0x6b, 0x7d, 0x92,
8644 0x64, 0xa2, 0x93, 0xb6, 0xf4, 0xf5, 0x60, 0xd0, 0x3b, 0xba, 0x38, 0xa5,
8645 0x2a, 0x95, 0x01, 0xfc, 0x0b, 0xc4, 0x6e, 0x52, 0x8e, 0xa0, 0x4f, 0xa3,
8646 0x0f, 0xa5, 0x60, 0xe5, 0x95, 0x22, 0xd7, 0x25, 0xc5, 0x86, 0x33, 0xbb,
8647 0x69, 0x15, 0x14, 0xdc, 0x5c, 0xc6, 0xdc, 0xa4, 0x01, 0xbd, 0x78, 0x37,
8648 0xbf, 0x44, 0x4b, 0xf8, 0xc9, 0x83, 0xb7, 0xe2, 0xfe, 0x8a, 0x54, 0x19,
8649 0x41, 0xe4, 0xd4, 0xca, 0x33, 0x50, 0x3f, 0xf1, 0x44, 0x61, 0x9f, 0x67,
8650 0x1b, 0x2e, 0x1d, 0x3a, 0x06, 0xb1, 0x5c, 0x57, 0x7b, 0x1c, 0x37, 0x3c,
8651 0x91, 0xa4, 0x24, 0x72, 0x67, 0xc7, 0xe9, 0x7d, 0x9f, 0x30, 0x51, 0xd8,
8652 0x84, 0x5a, 0xeb, 0x35, 0x53, 0xe5, 0x0f, 0xd6, 0x38, 0x2e, 0x99, 0x64,
8653 0x84, 0xe6, 0xec, 0x99, 0x7b, 0xe4, 0x11, 0xd1, 0x70, 0x35, 0x3b, 0x0a,
8654 0xae, 0x1f, 0x9a, 0x1d, 0xe6, 0x7b, 0x90, 0x76, 0x35, 0x12, 0xa0, 0x97,
8655 0x5f, 0x50, 0x31, 0x21, 0x6e, 0xf9, 0xca, 0xf4, 0x57, 0xe7, 0x36, 0xae,
8656 0xbe, 0xaf, 0xe4, 0x29, 0x47, 0xa5, 0x45, 0x04, 0xef, 0x2d, 0xa2, 0x83,
8657 0x15, 0xe5, 0xc8, 0x10, 0x53, 0x04, 0x28, 0xeb, 0xbe, 0x9a, 0xd2, 0xb1,
8658 0x08, 0x1a, 0x08, 0xb9, 0x5a, 0x25, 0xd6, 0x44, 0xd8, 0x61, 0xe6, 0x09,
8659 0xf5, 0xfd, 0x51, 0x15, 0x23, 0x52, 0xd3, 0xb8, 0x1a, 0x22, 0x04, 0x15,
8660 0x56, 0x67, 0x75, 0xd4, 0x51, 0x40, 0xbb, 0x00, 0xdd, 0x90, 0x14, 0x8f,
8661 0xac, 0xab, 0xa3, 0x74, 0x11, 0x25, 0x01, 0x63, 0xb5, 0xe6, 0x3c, 0x15,
8662 0x3e, 0x0a, 0xb8, 0xab, 0x11, 0xac, 0x0c, 0x0c, 0xf3, 0x61, 0x99, 0x4f,
8663 0x17, 0x15, 0x19, 0xf2, 0xe8, 0x67, 0xc6, 0xa2, 0xef, 0x0d, 0x5b, 0x04,
8664 0x41, 0xa3, 0xba, 0xb5, 0x10, 0xc1, 0xba, 0x45, 0xb5, 0xa3, 0xa9, 0xce,
8665 0x47, 0x63, 0x80, 0x1c, 0xcd, 0x16, 0x39, 0x88, 0x8b, 0xc4, 0x63, 0xd1,
8666 0x50, 0x73, 0xca, 0x1e, 0xbc, 0x31, 0x0a, 0x85, 0xc7, 0x0a, 0xba, 0xec,
8667 0x35, 0xea, 0x98, 0x4e, 0x6c, 0x45, 0x52, 0x2f, 0xac, 0xb3, 0x87, 0x4f,
8668 0x08, 0xe0, 0xb5, 0xb5, 0x46, 0x47, 0x33, 0x62, 0x86, 0xb8, 0xd1, 0x40,
8669 0x1f, 0xd4, 0x87, 0xf1, 0x73, 0x62, 0x4a, 0xb9, 0x33, 0xe7, 0xe9, 0xea,
8670 0xcc, 0x64, 0xe6, 0xcd, 0x2f, 0xbe, 0x22, 0x76, 0x92, 0xbb, 0xa8, 0x36,
8671 0xea, 0xc1, 0xdc, 0xf4, 0x17, 0x06, 0x28, 0xc8, 0x26, 0xe9, 0x55, 0x0d,
8672 0x3f, 0xc3, 0x2f, 0xbc, 0x6c, 0xc1, 0xf3, 0xb7, 0x83, 0xfb, 0x8c, 0xa8,
8673 0x6f, 0xef, 0xf5, 0x9c, 0x09, 0x33, 0x1c, 0x2b, 0x2e, 0x21, 0x98, 0xbe,
8674 0xa8, 0x2f, 0xdc, 0xb3, 0x08, 0x44, 0x38, 0x0c, 0x8d, 0xf1, 0x85, 0x50,
8675 0x3a, 0xa0, 0xc7, 0x26, 0xa6, 0x9c, 0x57, 0x11, 0x3a, 0xf2, 0x04, 0x53,
8676 0x2c, 0x9e, 0xaf, 0x9e, 0x89, 0xd5, 0x58, 0xce, 0x95, 0x56, 0xc0, 0x5d,
8677 0xc1, 0x07, 0x30, 0xab, 0x1c, 0xb2, 0x7a, 0x11, 0xe7, 0x26, 0x91, 0x2d,
8678 0xe9, 0x3c, 0xcd, 0xd8, 0x62, 0x8b, 0x52, 0x08, 0x1d, 0x01, 0x17, 0x85,
8679 0x80, 0xeb, 0x1f, 0xe5, 0x17, 0xdc, 0xfc, 0xdf, 0xa6, 0x19, 0x28, 0x9d,
8680 0xe5, 0x86, 0xee, 0xca, 0x34, 0x8b, 0x1e, 0x0d, 0xe4, 0x88, 0x3a, 0x03,
8681 0xc7, 0x1b, 0x3d, 0x69, 0x6e, 0xb3, 0xa0, 0xab, 0xfb, 0x79, 0xea, 0x1b,
8682 0x61, 0x2a, 0xb8, 0x69, 0x0c, 0x6a, 0xa0, 0x9e, 0x45, 0x1f, 0xb2, 0xf4,
8683 0xce, 0x66, 0xd6, 0x98, 0x3e, 0x4e, 0x6e, 0xc2, 0x81, 0x74, 0x2e, 0x0b,
8684 0xcc, 0x2e, 0xf2, 0xe2, 0xaf, 0x48, 0x7c, 0x7a, 0xd1, 0xf5, 0xfd, 0x0d,
8685 0x9a, 0xdb, 0xa4, 0x9a, 0xaf, 0x6f, 0x6f, 0xd0, 0x13, 0x05, 0x80, 0x53,
8686 0x12, 0x7b, 0x42, 0xd8, 0x4e, 0x1c, 0x65, 0x75, 0x1b, 0xce, 0x51, 0xe2,
8687 0x01, 0x76, 0x87, 0x92, 0xee, 0x62, 0x24, 0xbf, 0xe8, 0x5a, 0xca, 0xa8,
8688 0x66, 0xa4, 0x34, 0x2c, 0xc2, 0x09, 0xe5, 0x62, 0x33, 0xa0, 0x29, 0x4a,
8689 0x2a, 0x44, 0x77, 0xe0, 0xd8, 0xf6, 0x7a, 0xea, 0x22, 0x4c, 0x65, 0x02,
8690 0x15, 0x08, 0xd4, 0x9b, 0x8e, 0x7b, 0x98, 0xbc, 0x1d, 0x5d, 0x15, 0xb9,
8691 0xaf, 0x57, 0x60, 0x15, 0x2a, 0xd2, 0x60, 0x83, 0x6b, 0x20, 0x93, 0xec,
8692 0x26, 0x2d, 0xf2, 0x8c, 0xda, 0x19, 0xdc, 0xc4, 0x45, 0x4a, 0xa9, 0x36,
8693 0x9d, 0x37, 0xe7, 0x6f, 0x4f, 0x3a, 0xe6, 0xd4, 0x43, 0xf9, 0x3b, 0x49,
8694 0x39, 0x20, 0xe0, 0xa1, 0x2f, 0xd7, 0x96, 0x34, 0xe0, 0xf9, 0x89, 0x40,
8695 0x0f, 0x1a, 0x7d, 0x92, 0x80, 0x02, 0xb5, 0x9d, 0x4a, 0x2c, 0xfc, 0x1b,
8696 0x58, 0xe0, 0x92, 0x85, 0xc3, 0x49, 0x8e, 0xb1, 0x32, 0x19, 0x27, 0xf9,
8697 0xe5, 0xb7, 0xa1, 0x46, 0xd3, 0xf0, 0x1d, 0xae, 0xb8, 0xc4, 0x04, 0x24,
8698 0xe1, 0x9d, 0xd3, 0x8e, 0xd8, 0xc1, 0x4b, 0x5e, 0x7b, 0x5a, 0x7f, 0x5e,
8699 0x59, 0x4e, 0x28, 0x5c, 0x9b, 0xdd, 0x7b, 0x99, 0xc8, 0xc9, 0x74, 0xb2,
8700 0x56, 0xd7, 0x22, 0xd6, 0x4a, 0x34, 0x67, 0xaa, 0x35, 0x81, 0xa2, 0xa4,
8701 0xa4, 0x76, 0x7b, 0xba, 0xf9, 0xe0, 0x68, 0x2d, 0x8f, 0x6f, 0x5e, 0xc6,
8702 0x6c, 0x3e, 0xbb, 0xc7, 0x27, 0x36, 0xbf, 0x33, 0xcf, 0xe6, 0x47, 0x77,
8703 0x9e, 0x22, 0x56, 0x56, 0x45, 0x99, 0x30, 0xc2, 0xa4, 0x5b, 0x93, 0xdf,
8704 0x2c, 0xd0, 0x43, 0xb9, 0x7c, 0xa6, 0x84, 0xef, 0xc1, 0x0e, 0x08, 0xb1,
8705 0x85, 0x1d, 0xb0, 0xc6, 0xb2, 0x26, 0xeb, 0x5a, 0xcf, 0x88, 0x20, 0xec,
8706 0x7a, 0xbd, 0xba, 0xcb, 0x7c, 0xc4, 0x2d, 0x74, 0x4c, 0xee, 0x42, 0xa3,
8707 0x33, 0x3d, 0x27, 0x75, 0x50, 0x90, 0xc2, 0x1c, 0xcc, 0x34, 0x5a, 0x6b,
8708 0xd3, 0x63, 0x50, 0xd4, 0x28, 0x9f, 0x53, 0x83, 0x66, 0x69, 0x81, 0x28,
8709 0xfd, 0x5e, 0x9e, 0x46, 0x97, 0xcb, 0x18, 0xd5, 0x15, 0x19, 0xee, 0x95,
8710 0x6e, 0x33, 0xd7, 0x8c, 0x1a, 0xca, 0xcd, 0xc2, 0xb9, 0x97, 0xb5, 0xc9,
8711 0x26, 0xd2, 0x8a, 0x48, 0x6f, 0x47, 0x30, 0x15, 0xd5, 0x81, 0x4a, 0x25,
8712 0xf0, 0xf0, 0x1b, 0x67, 0x3d, 0x1b, 0x95, 0x22, 0x1b, 0x8b, 0x6a, 0x29,
8713 0x15, 0x98, 0xa8, 0x4d, 0x94, 0x41, 0x75, 0x82, 0xaa, 0xf6, 0xe4, 0xa5,
8714 0xc4, 0x7c, 0xc7, 0x88, 0x7e, 0x71, 0x43, 0x70, 0x39, 0x37, 0xdc, 0xa6,
8715 0x81, 0xab, 0x2c, 0xec, 0x5a, 0xe8, 0x1a, 0xf8, 0xdb, 0x59, 0x66, 0x47,
8716 0xc9, 0xef, 0x85, 0x34, 0xbd, 0x88, 0xa2, 0xaf, 0x75, 0x16, 0x9a, 0x56,
8717 0x63, 0xf0, 0xc5, 0xd1, 0x33, 0x1e, 0x39, 0xbe, 0x71, 0x6f, 0x38, 0xf2,
8718 0x8d, 0x77, 0xf5, 0x97, 0x5e, 0x5c, 0x8e, 0xd2, 0x54, 0x94, 0x50, 0x74,
8719 0xf8, 0x63, 0x6a, 0xc8, 0xf4, 0x3e, 0x08, 0x50, 0x6f, 0x57, 0x82, 0x56,
8720 0x1d, 0x4f, 0xa1, 0x71, 0xce, 0xf5, 0x8d, 0x9c, 0xc0, 0x46, 0x89, 0x9b,
8721 0x9c, 0xc4, 0x45, 0x58, 0x0b, 0x12, 0x21, 0x03, 0xce, 0xf7, 0xeb, 0x4f,
8722 0xa4, 0x26, 0xb7, 0x05, 0x41, 0xf6, 0xf6, 0xf6, 0x76, 0xbb, 0x5f, 0x0b,
8723 0xaf, 0x33, 0x19, 0x7a, 0xd8, 0x81, 0xa2, 0xac, 0x48, 0xa1, 0x80, 0x6b,
8724 0x76, 0xfa, 0x4b, 0x76, 0xd7, 0x72, 0x5f, 0x42, 0x08, 0xab, 0xec, 0x31,
8725 0x0f, 0x09, 0x6e, 0xf9, 0xd3, 0x65, 0xc3, 0x35, 0xbf, 0x82, 0xad, 0xbe,
8726 0xf9, 0x48, 0x33, 0x39, 0xa0, 0xce, 0xb9, 0xa1, 0xa2, 0x46, 0xaf, 0x85,
8727 0x2c, 0xef, 0xc5, 0xd3, 0x79, 0xd6, 0xd2, 0x2e, 0xf4, 0x15, 0x7b, 0x0b,
8728 0x88, 0xf5, 0x8e, 0xce, 0x2e, 0xde, 0x11, 0xaa, 0x02, 0xcc, 0x0f, 0x5b,
8729 0x78, 0x53, 0x76, 0x13, 0x7e, 0x86, 0x45, 0x4e, 0x19, 0x3b, 0x15, 0xc4,
8730 0x03, 0xea, 0xb9, 0xa0, 0x29, 0x16, 0x4f, 0xa8, 0x87, 0x1a, 0x73, 0xe1,
8731 0xa4, 0x44, 0xc7, 0x98, 0x06, 0xc6, 0x70, 0x60, 0x40, 0xf8, 0x5c, 0x55,
8732 0xab, 0xb8, 0x79, 0x1c, 0xc1, 0x53, 0xed, 0xb3, 0xe9, 0x70, 0x23, 0xf0,
8733 0x6e, 0x1d, 0xbb, 0x76, 0xaf, 0xe9, 0xf6, 0x95, 0x6b, 0x6b, 0x2f, 0xaf,
8734 0x86, 0xb2, 0x4a, 0x4c, 0x4f, 0x31, 0x71, 0x97, 0x98, 0xc0, 0xbc, 0xe4,
8735 0x96, 0x49, 0x72, 0x17, 0xad, 0x8a, 0x62, 0x92, 0xad, 0xae, 0x39, 0x32,
8736 0xa9, 0x57, 0x06, 0x3c, 0x85, 0xfb, 0xb2, 0x79, 0xd6, 0xec, 0x11, 0xa2,
8737 0xa3, 0x85, 0xba, 0x84, 0x78, 0x8d, 0x6f, 0x96, 0x36, 0xf4, 0xd2, 0x97,
8738 0x86, 0xb5, 0x5d, 0xc6, 0x2a, 0xef, 0xba, 0xfc, 0xd4, 0xe1, 0x02, 0x65,
8739 0x67, 0xe3, 0x09, 0xc2, 0x28, 0xac, 0x65, 0xf3, 0x15, 0x04, 0x55, 0x3a,
8740 0x71, 0x9a, 0x20, 0x20, 0x66, 0x4a, 0x12, 0xcf, 0x40, 0xb9, 0xcb, 0xb4,
8741 0x2a, 0x8d, 0xba, 0x45, 0x94, 0xa9, 0x57, 0x86, 0xb1, 0x88, 0x45, 0x96,
8742 0xd7, 0xda, 0x9d, 0x36, 0x4a, 0xd5, 0xf8, 0x31, 0x78, 0xc6, 0xb8, 0xc3,
8743 0x87, 0xaa, 0xeb, 0xe9, 0x76, 0x03, 0x5a, 0x27, 0xd1, 0x13, 0xce, 0x87,
8744 0x12, 0x19, 0x2e, 0x43, 0x18, 0x60, 0x4b, 0xf4, 0x8e, 0x5d, 0x2f, 0xb2,
8745 0x4f, 0x30, 0x05, 0x3f, 0x99, 0x59, 0xab, 0x3d, 0x52, 0x94, 0xed, 0xb0,
8746 0x8a, 0xd4, 0x1a, 0x88, 0xa1, 0xe9, 0xec, 0x08, 0x71, 0x51, 0x20, 0x7c,
8747 0x58, 0x1f, 0xbb, 0x9c, 0x37, 0xfc, 0x32, 0xa1, 0xd9, 0x8d, 0xcd, 0x4e,
8748 0x83, 0x59, 0x19, 0x02, 0x06, 0x8b, 0xa6, 0x74, 0xa5, 0x45, 0xb3, 0xa6,
8749 0x94, 0xf4, 0x2b, 0xe7, 0xb0, 0x15, 0x4d, 0x49, 0x1b, 0x3f, 0x50, 0x25,
8750 0xb4, 0x66, 0x3f, 0x7a, 0x5a, 0xe9, 0xa2, 0x14, 0xe0, 0x4e, 0x7e, 0x26,
8751 0xa1, 0x55, 0x67, 0x54, 0x79, 0x56, 0x5f, 0xca, 0x27, 0x30, 0xbb, 0x8c,
8752 0xb8, 0x92, 0x4e, 0xf3, 0x87, 0x2e, 0xfb, 0x35, 0xae, 0x30, 0xd9, 0xa0,
8753 0x37, 0xac, 0x03, 0xe5, 0xc1, 0x98, 0x23, 0x38, 0xc3, 0x86, 0x1e, 0xf7,
8754 0xa9, 0xff, 0x0b, 0x25, 0x10, 0x9a, 0x2e, 0x20, 0xf7, 0x7e, 0x5a, 0x64,
8755 0x8d, 0xbe, 0xdc, 0xbd, 0x1c, 0xc7, 0xe6, 0x85, 0x86, 0xdf, 0xfe, 0xcc,
8756 0x35, 0x51, 0xd8, 0x62, 0xba, 0x17, 0xcc, 0xcc, 0xef, 0x71, 0x70, 0xbe,
8757 0x77, 0xee, 0x5c, 0xc8, 0x1f, 0x51, 0x2c, 0xb2, 0xf6, 0x19, 0xc6, 0xbe,
8758 0xcd, 0xc1, 0xda, 0x0d, 0xa9, 0xbb, 0xd4, 0x38, 0xb8, 0xa4, 0xb3, 0x1c,
8759 0x51, 0x21, 0x28, 0x2a, 0x20, 0xe1, 0xbd, 0xb8, 0x32, 0xb0, 0x32, 0x54,
8760 0x4c, 0x87, 0x1b, 0x44, 0x8a, 0xd6, 0x62, 0x58, 0xc5, 0x2a, 0x90, 0x40,
8761 0x14, 0x6b, 0xf0, 0xeb, 0x0a, 0x81, 0x00, 0xb5, 0xe2, 0x5d, 0x95, 0x04,
8762 0x4e, 0xa2, 0x70, 0xe3, 0x82, 0x54, 0x07, 0x25, 0x36, 0x46, 0x73, 0x76,
8763 0xf0, 0xe4, 0x8a, 0xd2, 0x7f, 0x40, 0x73, 0xe7, 0x2e, 0x31, 0xec, 0x2e,
8764 0xea, 0x6f, 0x6f, 0x6d, 0x49, 0x1e, 0xb5, 0xd4, 0xb7, 0x54, 0x8e, 0x09,
8765 0x44, 0x77, 0x61, 0x9a, 0x78, 0xc0, 0x6c, 0xfa, 0x05, 0x5c, 0x5b, 0x63,
8766 0xda, 0xa5, 0x5c, 0x2b, 0x6c, 0x2b, 0x0c, 0xd1, 0xe4, 0x5b, 0xf9, 0x18,
8767 0xc8, 0xdc, 0x35, 0x61, 0xd2, 0x47, 0x2c, 0x37, 0x55, 0x6c, 0xfc, 0x99,
8768 0x7c, 0x61, 0x4f, 0xf6, 0xd1, 0x18, 0x26, 0x35, 0xdc, 0xc6, 0x7a, 0x21,
8769 0x95, 0xec, 0xb5, 0xba, 0xc0, 0xdb, 0x36, 0x84, 0xc3, 0xb4, 0x7c, 0x02,
8770 0x34, 0xd9, 0xb1, 0xde, 0x15, 0x7c, 0xd7, 0x3b, 0xdd, 0x0d, 0x0e, 0xdd,
8771 0x32, 0x89, 0x2d, 0x10, 0x1f, 0x16, 0xb3, 0x4e, 0x52, 0x48, 0xc9, 0x36,
8772 0x36, 0x10, 0x8c, 0x6e, 0x3d, 0x5b, 0x3f, 0xc4, 0xe4, 0x36, 0x2b, 0x5d,
8773 0x7b, 0x8b, 0xc3, 0x07, 0xb3, 0x65, 0xfd, 0x0c, 0x89, 0x33, 0x4c, 0x6b,
8774 0x90, 0x94, 0xfb, 0x4b, 0x3c, 0x86, 0x39, 0xc4, 0x23, 0xd8, 0x2e, 0xcf,
8775 0xec, 0xbb, 0x38, 0xac, 0x61, 0x3e, 0x7c, 0xc2, 0xaa, 0xda, 0x01, 0x57,
8776 0xc5, 0x43, 0x72, 0xb1, 0x04, 0x1b, 0xab, 0x93, 0x3d, 0x4a, 0xf5, 0x7a,
8777 0xe7, 0x6b, 0x5e, 0xef, 0xea, 0x8a, 0x97, 0x25, 0xb1, 0x87, 0x6c, 0x16,
8778 0x6a, 0x0d, 0xf6, 0xa0, 0xc6, 0x85, 0xe3, 0xd3, 0x43, 0x7c, 0xf7, 0xdf,
8779 0x23, 0xf5, 0x2d, 0x47, 0xe1, 0x72, 0xfa, 0x61, 0x36, 0x4d, 0xf7, 0xdf,
8780 0x58, 0xdf, 0xca, 0x9e, 0xa6, 0x6e, 0x91, 0x62, 0xe5, 0xeb, 0x5b, 0xd9,
8781 0xbf, 0x52, 0xdd, 0xc2, 0x07, 0x9a, 0x83, 0x70, 0x96, 0xf8, 0xad, 0x39,
8782 0xce, 0x4d, 0x96, 0x00, 0x57, 0x8f, 0x23, 0x66, 0xaa, 0xa0, 0x96, 0xf1,
8783 0x5d, 0x11, 0xdd, 0xa5, 0xaa, 0x8d, 0x76, 0xe6, 0x9d, 0x2d, 0xe8, 0xf0,
8784 0xf1, 0x42, 0x4b, 0x76, 0xef, 0x82, 0xd0, 0x27, 0xa4, 0x56, 0xc2, 0xb0,
8785 0x8b, 0x8b, 0x4c, 0x90, 0x11, 0xc6, 0x91, 0x5b, 0x76, 0x80, 0x86, 0xa4,
8786 0x11, 0x12, 0x08, 0x05, 0xe0, 0xd9, 0x8c, 0x65, 0x4a, 0x28, 0x46, 0x41,
8787 0x1f, 0xeb, 0x6f, 0xa7, 0xc6, 0xd4, 0x49, 0xc6, 0x7b, 0xdf, 0xec, 0xa3,
8788 0x06, 0x65, 0x08, 0x76, 0xee, 0x09, 0x5c, 0xd5, 0x78, 0x46, 0x2f, 0xe7,
8789 0xf6, 0x37, 0x4f, 0x87, 0x1a, 0x62, 0x5e, 0x2b, 0xbb, 0x86, 0x6a, 0xf5,
8790 0xb4, 0xd3, 0xe7, 0x1e, 0x63, 0xc8, 0x96, 0x48, 0xc7, 0x61, 0xb8, 0x50,
8791 0x95, 0x1d, 0x34, 0xe7, 0xb5, 0x52, 0xc5, 0x3b, 0xee, 0x76, 0x05, 0x39,
8792 0x3e, 0x7d, 0x05, 0x74, 0x44, 0xa7, 0x17, 0x98, 0x87, 0x5f, 0xb5, 0x09,
8793 0x0f, 0xd4, 0x6a, 0x34, 0x89, 0x8c, 0x43, 0x24, 0x04, 0x1b, 0x6f, 0x93,
8794 0x19, 0x71, 0x08, 0x38, 0x81, 0xec, 0x72, 0x72, 0xea, 0x15, 0xaa, 0x08,
8795 0xd7, 0x81, 0x42, 0x1d, 0x09, 0xe9, 0x24, 0xd4, 0xcf, 0x99, 0x5a, 0xdd,
8796 0x5f, 0x2f, 0x30, 0x5b, 0x1c, 0xa5, 0x09, 0x77, 0xae, 0xe5, 0x2a, 0x6b,
8797 0xd8, 0x65, 0x38, 0xe5, 0xfa, 0x7c, 0xcb, 0x00, 0x06, 0x3c, 0x61, 0xb6,
8798 0x27, 0x33, 0x81, 0x44, 0x10, 0xd4, 0x5d, 0xbc, 0x8d, 0x3c, 0x94, 0xd4,
8799 0xf0, 0x84, 0x7d, 0x1d, 0x52, 0x80, 0x0b, 0xfa, 0xcb, 0xd8, 0x94, 0xee,
8800 0x78, 0x2e, 0x55, 0xda, 0xd9, 0x0a, 0xd3, 0x69, 0x15, 0xf2, 0x94, 0x6e,
8801 0x27, 0x7c, 0x4c, 0x72, 0x08, 0xc9, 0x05, 0xe5, 0x62, 0x84, 0x49, 0xdc,
8802 0xff, 0xc2, 0x23, 0xcd, 0xac, 0xba, 0x7b, 0xa4, 0x05, 0x16, 0x74, 0x75,
8803 0x8e, 0xb6, 0x23, 0xaf, 0xc4, 0xc3, 0xb5, 0xd6, 0x6b, 0x75, 0x16, 0xa5,
8804 0xd8, 0x64, 0x74, 0xc8, 0xbb, 0xe5, 0xee, 0x9e, 0xb0, 0x0c, 0x9a, 0x01,
8805 0xc8, 0x63, 0xcc, 0xa9, 0xed, 0xa9, 0x9f, 0x71, 0xcc, 0x29, 0xb1, 0xe4,
8806 0x4c, 0x56, 0xdf, 0x1b, 0x2b, 0x9e, 0x0e, 0x1a, 0x55, 0x4c, 0x30, 0xc8,
8807 0x77, 0x08, 0xcb, 0x92, 0x4e, 0xbc, 0xfa, 0xdc, 0x44, 0xe0, 0xc6, 0x8d,
8808 0xee, 0x26, 0x49, 0x79, 0xe4, 0x85, 0xc3, 0xb5, 0x27, 0x4c, 0x71, 0xaa,
8809 0xbc, 0x14, 0x37, 0xd3, 0x7f, 0x62, 0x45, 0x00, 0x66, 0x18, 0x25, 0x45,
8810 0x93, 0xbd, 0xea, 0x2d, 0xc7, 0x4c, 0xb1, 0xba, 0x74, 0x44, 0x31, 0x68,
8811 0xd6, 0x68, 0xfa, 0x8d, 0x55, 0x97, 0xd2, 0x26, 0x03, 0x30, 0xc3, 0xa6,
8812 0x82, 0x74, 0x82, 0xbe, 0x4b, 0x5e, 0x74, 0x05, 0x76, 0xa5, 0xf7, 0xa5,
8813 0xd2, 0x76, 0x7c, 0x06, 0x25, 0x42, 0x8b, 0xfb, 0x3f, 0xd6, 0x24, 0x67,
8814 0x9e, 0xc4, 0x28, 0x50, 0x01, 0x6b, 0xba, 0xa4, 0xe1, 0xac, 0xd8, 0x2e,
8815 0x11, 0xef, 0xac, 0x7e, 0x10, 0x49, 0xdf, 0xe5, 0xbe, 0xe7, 0x89, 0x0b,
8816 0x25, 0xc4, 0x4d, 0xc9, 0xfd, 0x24, 0x56, 0x02, 0xcd, 0x88, 0xd5, 0x56,
8817 0xfc, 0xb8, 0x6b, 0x7f, 0x3d, 0x78, 0xb1, 0xc5, 0x14, 0xc0, 0x26, 0x43,
8818 0xf6, 0x82, 0x66, 0x78, 0x14, 0x0e, 0x1a, 0xea, 0x06, 0x09, 0x17, 0xc1,
8819 0xbf, 0xe6, 0x3a, 0x8f, 0x35, 0x07, 0x92, 0x7d, 0xb2, 0xbf, 0x8b, 0x49,
8820 0x4d, 0x6e, 0x44, 0xcc, 0xd6, 0x43, 0x0a, 0x4c, 0x87, 0x13, 0xe2, 0x30,
8821 0x31, 0x8e, 0x60, 0x55, 0x9e, 0xd9, 0xba, 0x2a, 0xf3, 0x81, 0x11, 0xd7,
8822 0xd7, 0xb2, 0xfc, 0x23, 0xfd, 0xca, 0x91, 0x82, 0xb5, 0x77, 0xe7, 0x1f,
8823 0x2f, 0xde, 0x9f, 0x7f, 0xf7, 0xb7, 0xb5, 0x0d, 0xad, 0x82, 0x2d, 0x92,
8824 0x35, 0xbf, 0x56, 0x23, 0x1c, 0x59, 0xe1, 0x07, 0x70, 0xbe, 0x83, 0xb0,
8825 0xa3, 0x3a, 0x37, 0xa9, 0xb4, 0x53, 0x80, 0x77, 0xbc, 0x64, 0x10, 0x9a,
8826 0x0a, 0xad, 0x3a, 0xb0, 0x73, 0xa7, 0x83, 0x3f, 0xf5, 0x35, 0x61, 0xad,
8827 0x56, 0xdf, 0xb7, 0x3c, 0x60, 0xc7, 0xe9, 0x8f, 0xd5, 0x59, 0x6d, 0x03,
8828 0xdf, 0x75, 0x35, 0x8d, 0xa0, 0xb6, 0x7b, 0xab, 0xe9, 0xac, 0x77, 0x3b,
8829 0x7c, 0x20, 0xb5, 0xe6, 0xf2, 0xec, 0x2d, 0x28, 0x13, 0x68, 0x17, 0x0a,
8830 0xf4, 0x4b, 0x75, 0x3f, 0x4d, 0xe4, 0x6e, 0x3a, 0xf5, 0x39, 0x8e, 0x7b,
8831 0x4d, 0x6e, 0xf0, 0x1b, 0x4f, 0x7d, 0x09, 0xe4, 0x94, 0x18, 0x24, 0x20,
8832 0x09, 0x3c, 0x48, 0x73, 0x87, 0x08, 0x47, 0xa4, 0xb4, 0x07, 0xb7, 0xbb,
8833 0x4c, 0x4b, 0x75, 0x5b, 0x72, 0x07, 0xc2, 0x88, 0x80, 0x02, 0xae, 0x13,
8834 0x06, 0xc3, 0x7f, 0x82, 0x09, 0xc7, 0xef, 0xff, 0x0b, 0xb1, 0x14, 0x98,
8835 0x10, 0xb5, 0x4c, 0x0d, 0xf8, 0xa0, 0x49, 0x67, 0x93, 0xd9, 0xaa, 0x74,
8836 0x65, 0xc2, 0x7a, 0x71, 0x4c, 0x16, 0x64, 0xf4, 0x5d, 0xfd, 0x2b, 0x2f,
8837 0x0d, 0x9a, 0x0a, 0x87, 0x51, 0xe3, 0x84, 0xbd, 0x63, 0x3a, 0x1b, 0xbe,
8838 0x4d, 0x47, 0x45, 0x5e, 0xe6, 0x13, 0x83, 0xfa, 0xae, 0x5a, 0xfc, 0xe9,
8839 0xe9, 0x20, 0xba, 0x4d, 0x86, 0x8a, 0xa2, 0xd4, 0xf7, 0xf3, 0x19, 0x58,
8840 0x5e, 0x62, 0xaa, 0x4f, 0x91, 0x26, 0x15, 0x2e, 0x88, 0xd6, 0xc8, 0x22,
8841 0x8e, 0x3e, 0xde, 0x94, 0x08, 0xfa, 0x70, 0x22, 0xbd, 0xd9, 0x47, 0x53,
8842 0x3a, 0xe1, 0xe7, 0x89, 0xbf, 0x03, 0xa6, 0xac, 0xeb, 0x98, 0xe3, 0xd9,
8843 0x49, 0x44, 0x23, 0x9c, 0x3b, 0x89, 0xc5, 0xa6, 0x05, 0x0a, 0x58, 0x34,
8844 0x27, 0x24, 0x70, 0xf4, 0x09, 0x03, 0x97, 0xf9, 0xc4, 0xcb, 0xc2, 0x90,
8845 0xea, 0x2e, 0xa3, 0x5a, 0xa0, 0xd0, 0x19, 0xa2, 0xf9, 0x39, 0xce, 0x0b,
8846 0xca, 0xec, 0xc5, 0x7d, 0x29, 0x5f, 0x26, 0xd9, 0x28, 0x5f, 0x14, 0x88,
8847 0x40, 0x41, 0xbd, 0x3f, 0xfd, 0x4e, 0xdb, 0xb7, 0xd7, 0x39, 0xb7, 0xb3,
8848 0x27, 0x32, 0x5b, 0xc5, 0x9a, 0xc0, 0x0e, 0xa4, 0xc3, 0x20, 0x09, 0x7f,
8849 0x7b, 0x6a, 0x47, 0x0f, 0x21, 0x32, 0xc8, 0x7a, 0x58, 0x18, 0x22, 0xae,
8850 0xf5, 0x00, 0x15, 0xed, 0x2a, 0x84, 0x08, 0x64, 0x1a, 0x14, 0x11, 0x4c,
8851 0xa4, 0xd5, 0x5e, 0x69, 0x46, 0xa2, 0x7c, 0x14, 0x22, 0x48, 0xea, 0x7c,
8852 0xc0, 0x68, 0xd0, 0x01, 0xe8, 0xce, 0x30, 0xf7, 0xfd, 0x1b, 0x65, 0x48,
8853 0xe1, 0x2e, 0x78, 0xea, 0x56, 0x33, 0x56, 0x9b, 0xf3, 0x8e, 0x66, 0x6b,
8854 0x59, 0x63, 0xcd, 0x36, 0x1f, 0x65, 0xc0, 0x59, 0x32, 0xcf, 0x3c, 0x90,
8855 0xcc, 0x87, 0x8c, 0xb5, 0xa7, 0x35, 0x19, 0xe3, 0x2c, 0x2e, 0x11, 0x04,
8856 0xd6, 0x20, 0x96, 0x96, 0x35, 0xc4, 0x06, 0x5a, 0x50, 0xcf, 0xd9, 0x5d,
8857 0xae, 0x88, 0xc8, 0xf1, 0x83, 0x9d, 0xde, 0x30, 0x01, 0xe5, 0xbb, 0x88,
8858 0x0e, 0x2b, 0x54, 0x70, 0xc3, 0xe5, 0xf4, 0x5c, 0x4f, 0x2f, 0x85, 0xe4,
8859 0x54, 0xae, 0x27, 0xdd, 0xca, 0x9c, 0x92, 0x94, 0xaf, 0x78, 0x98, 0x4b,
8860 0x52, 0x93, 0x91, 0x9b, 0xce, 0xb1, 0x5c, 0xba, 0x31, 0xdc, 0x4e, 0x7f,
8861 0xab, 0xa5, 0xa4, 0x9e, 0x64, 0x50, 0x6d, 0x0c, 0xe5, 0x17, 0xc7, 0xe9,
8862 0x1a, 0xc6, 0x25, 0x61, 0x2c, 0x74, 0x46, 0xfc, 0x35, 0x89, 0x7f, 0xa2,
8863 0xdc, 0x70, 0x65, 0x66, 0xad, 0x1e, 0x0c, 0xb1, 0xca, 0xc4, 0x83, 0xe9,
8864 0xd9, 0x95, 0xe4, 0x68, 0x2a, 0x6c, 0x7e, 0x60, 0x15, 0xf4, 0x0d, 0x78,
8865 0x53, 0x15, 0xcc, 0x68, 0xcd, 0x39, 0x2c, 0x34, 0xb9, 0x83, 0x37, 0xf1,
8866 0x68, 0x44, 0x10, 0xc0, 0x57, 0xec, 0xb6, 0x78, 0xff, 0xfa, 0xb8, 0x31,
8867 0xdc, 0xb3, 0xe7, 0xfb, 0x5b, 0xbf, 0x77, 0xd6, 0x7d, 0x9d, 0x17, 0x3a,
8868 0xb3, 0xd7, 0x1f, 0x5f, 0xf6, 0xbf, 0xda, 0x9f, 0xf4, 0xf6, 0xfa, 0xdb,
8869 0x7f, 0xfe, 0xfb, 0xdb, 0xce, 0x2f, 0xc9, 0x2d, 0xac, 0x71, 0x63, 0xdd,
8870 0x2b, 0xd1, 0xf0, 0x28, 0xb2, 0x37, 0x01, 0x91, 0xf1, 0xa2, 0x43, 0xf8,
8871 0xf1, 0xc5, 0xf2, 0xfc, 0x59, 0x5d, 0x54, 0x55, 0xe2, 0x6a, 0xed, 0x5f,
8872 0x79, 0xf9, 0xd9, 0x0b, 0x6e, 0x32, 0x60, 0xbc, 0xa6, 0x63, 0x08, 0xe8,
8873 0xde, 0xe5, 0xd3, 0xbc, 0xe6, 0xf7, 0x64, 0x1e, 0x50, 0xcf, 0x68, 0xd1,
8874 0x42, 0x52, 0x8b, 0x2d, 0x2b, 0x57, 0x3a, 0x33, 0x28, 0x6d, 0xee, 0x11,
8875 0x6a, 0xf7, 0x1f, 0xde, 0x9f, 0x71, 0xcc, 0x5e, 0x2f, 0x6d, 0xc9, 0x3d,
8876 0x35, 0x58, 0x77, 0x75, 0x98, 0xe8, 0xc5, 0x1c, 0x44, 0x4b, 0x95, 0x4e,
8877 0xc5, 0xeb, 0x8e, 0x42, 0x72, 0x39, 0x62, 0x72, 0x33, 0xb5, 0x1e, 0x8b,
8878 0x72, 0xdc, 0xf9, 0x19, 0x84, 0x46, 0x0a, 0x0a, 0x74, 0xeb, 0xe1, 0xff,
8879 0x50, 0x08, 0x09, 0x23, 0xf1, 0x8a, 0x8f, 0xdb, 0xeb, 0xb1, 0x87, 0xbe,
8880 0x47, 0x45, 0x1a, 0x94, 0x79, 0xc1, 0x90, 0xa9, 0x8f, 0x4e, 0x92, 0x35,
8881 0x75, 0xa3, 0x4d, 0x36, 0xb6, 0x53, 0xa6, 0xb9, 0x7a, 0x24, 0xc2, 0xb9,
8882 0xff, 0x22, 0x36, 0xb7, 0x1c, 0xd6, 0xa9, 0x66, 0xf3, 0x4e, 0xd4, 0x3b,
8883 0x5f, 0xf5, 0x34, 0x68, 0xfa, 0xc8, 0x99, 0xbd, 0xdd, 0x88, 0x8f, 0xe3,
8884 0xf3, 0x17, 0x76, 0xf7, 0x2b, 0x19, 0x9e, 0xf7, 0x9f, 0xd7, 0x99, 0xdf,
8885 0xf5, 0xc5, 0x07, 0x31, 0xc6, 0xbf, 0x2d, 0x10, 0x3e, 0x4c, 0x63, 0x89,
8886 0xb9, 0x5c, 0xe4, 0x02, 0x34, 0x96, 0xd5, 0x18, 0x0b, 0x02, 0x0c, 0x90,
8887 0x6d, 0xa1, 0xde, 0x94, 0x7f, 0xfc, 0xd3, 0x77, 0xc9, 0x7d, 0xff, 0x23,
8888 0xc5, 0x63, 0x12, 0xd4, 0x41, 0xcc, 0x72, 0xa8, 0xee, 0x51, 0xd6, 0x74,
8889 0x1b, 0x06, 0xfb, 0x73, 0x7b, 0x5e, 0xfb, 0x90, 0xe5, 0x28, 0x68, 0x51,
8890 0x21, 0x58, 0xfb, 0xc3, 0x9a, 0x64, 0x8f, 0xa8, 0x23, 0x57, 0x82, 0x49,
8891 0xa2, 0xc8, 0xcb, 0xac, 0xcd, 0x42, 0x17, 0xa4, 0x7d, 0x7a, 0x41, 0x55,
8892 0x63, 0x0d, 0x49, 0x74, 0x76, 0x48, 0xb5, 0xbf, 0x84, 0x8c, 0xe5, 0x54,
8893 0xb6, 0x4b, 0xff, 0x27, 0xed, 0x97, 0xa1, 0x19, 0x44, 0x30, 0x4b, 0x4f,
8894 0x97, 0xa3, 0xef, 0x13, 0x32, 0x85, 0xfb, 0x0c, 0x38, 0x97, 0x66, 0x2d,
8895 0xa9, 0x1e, 0x1d, 0x64, 0x08, 0xe0, 0x87, 0x7f, 0x80, 0x4c, 0xed, 0x56,
8896 0xb7, 0xf9, 0x3f, 0xdd, 0x74, 0x8b, 0x0e, 0x7a, 0xe4, 0x3a, 0xf8, 0x12,
8897 0x1f, 0xff, 0xb0, 0x8d, 0x08, 0x25, 0x5e, 0x2e, 0x16, 0x17, 0x18, 0x1b,
8898 0x41, 0x6d, 0xac, 0xc9, 0x65, 0xfd, 0x89, 0xcd, 0x23, 0x11, 0x22, 0xae,
8899 0x8b, 0x36, 0xf6, 0x3f, 0xfb, 0xf8, 0xf3, 0xfb, 0xed, 0xde, 0xfe, 0x8f,
8900 0xf6, 0xb1, 0x7f, 0xd8, 0xfe, 0xf8, 0x87, 0x9d, 0x4e, 0x08, 0x7c, 0xc6,
8901 0x82, 0x4e, 0x3a, 0x95, 0x3b, 0x25, 0x57, 0x95, 0x71, 0xd5, 0xb6, 0x24,
8902 0xa9, 0xda, 0xba, 0x36, 0x12, 0x49, 0x81, 0x95, 0xc4, 0x50, 0xb6, 0x67,
8903 0xd5, 0x0b, 0x00, 0xb8, 0x66, 0x47, 0x03, 0x55, 0xf8, 0xfe, 0x40, 0x4b,
8904 0x45, 0x4f, 0xf3, 0x41, 0x01, 0xa6, 0x16, 0x2c, 0xce, 0x11, 0x41, 0x8b,
8905 0x15, 0xde, 0xd5, 0xa7, 0x87, 0xec, 0x54, 0xd0, 0x8a, 0xe3, 0xa8, 0x96,
8906 0xbb, 0x92, 0x47, 0xc3, 0x61, 0xe4, 0xa4, 0xac, 0x7c, 0x16, 0x08, 0x5d,
8907 0x92, 0x18, 0x23, 0x5f, 0x9a, 0x44, 0x28, 0xe1, 0x2e, 0x37, 0x63, 0x4a,
8908 0xb8, 0xa3, 0x8c, 0xdc, 0x84, 0x4a, 0x3a, 0xa7, 0x3d, 0x0f, 0xcd, 0x4f,
8909 0x0b, 0x6a, 0xae, 0x6a, 0x54, 0x3b, 0x15, 0xbb, 0x39, 0x0a, 0x31, 0x93,
8910 0xab, 0x46, 0x9f, 0xe9, 0xae, 0x00, 0xf1, 0x80, 0xaa, 0x32, 0x83, 0x81,
8911 0x36, 0x67, 0x37, 0x04, 0x33, 0xb5, 0x26, 0xd5, 0x89, 0x1e, 0x24, 0x53,
8912 0x86, 0x16, 0xcc, 0x3f, 0x2e, 0x5b, 0x08, 0xe2, 0x92, 0xc2, 0x2d, 0xa7,
8913 0x66, 0x42, 0x11, 0x71, 0x5a, 0xcf, 0x63, 0x4e, 0x4e, 0x76, 0x65, 0xb6,
8914 0x2d, 0x02, 0x94, 0x58, 0x2b, 0xbd, 0xa1, 0xe0, 0x6a, 0xca, 0x29, 0xe1,
8915 0x65, 0x85, 0xd2, 0x49, 0x3b, 0xbe, 0x07, 0xb1, 0xc6, 0x9d, 0xfa, 0xfa,
8916 0x06, 0xfe, 0x44, 0x3d, 0xb6, 0x7a, 0x60, 0x96, 0xd1, 0x5a, 0x6f, 0x2d,
8917 0x5a, 0x37, 0x8e, 0x30, 0x6c, 0x4e, 0xba, 0x11, 0x3c, 0x55, 0x4c, 0x4c,
8918 0xd5, 0xca, 0x35, 0xed, 0x1f, 0x8a, 0x0a, 0x32, 0x0b, 0x34, 0xef, 0xdc,
8919 0xcd, 0x39, 0xb8, 0x43, 0xde, 0x76, 0x8b, 0xb9, 0x15, 0x0d, 0xf3, 0x71,
8920 0x4a, 0x16, 0xc5, 0xbd, 0x81, 0x63, 0x32, 0x20, 0x69, 0xe6, 0xdc, 0xf5,
8921 0x6b, 0xf2, 0x36, 0xc7, 0xc9, 0xcd, 0x66, 0xb6, 0x98, 0x4e, 0x0f, 0x1e,
8922 0x41, 0x7b, 0xa0, 0xb4, 0xb9, 0xbe, 0x79, 0xf9, 0x39, 0xbb, 0x70, 0x25,
8923 0xdf, 0x99, 0x78, 0x1d, 0x2e, 0x3b, 0x78, 0xd4, 0xa0, 0x70, 0xe1, 0x8a,
8924 0xa5, 0x67, 0x79, 0xf4, 0xc8, 0x78, 0xef, 0xd3, 0xa4, 0xda, 0x2f, 0x17,
8925 0x53, 0x2b, 0xce, 0x5a, 0xbf, 0xdb, 0x09, 0xe5, 0xa7, 0x2d, 0x49, 0x7b,
8926 0xf7, 0x53, 0x28, 0xfc, 0xec, 0x09, 0xef, 0x88, 0x6e, 0x8f, 0xd2, 0xbb,
8927 0xfa, 0xa8, 0x66, 0xbd, 0xf5, 0xd2, 0xd9, 0x0c, 0x18, 0xc9, 0xaf, 0x08,
8928 0xa3, 0xdc, 0x90, 0x31, 0x15, 0x56, 0x9a, 0x0c, 0x39, 0x13, 0xd3, 0xa8,
8929 0xd7, 0x51, 0xca, 0x41, 0xa6, 0x59, 0x93, 0xe1, 0x76, 0x5a, 0x92, 0x35,
8930 0x24, 0xe7, 0xae, 0x40, 0x02, 0x33, 0x3a, 0x2e, 0xaa, 0x67, 0x14, 0x2d,
8931 0x03, 0x5d, 0x90, 0x60, 0xba, 0x6c, 0xb8, 0x9c, 0x42, 0x08, 0xf0, 0xfc,
8932 0x9e, 0x1f, 0x61, 0xc1, 0x8c, 0xbd, 0x8a, 0xbb, 0xdf, 0xca, 0x68, 0x54,
8933 0x98, 0x7d, 0x1b, 0xa7, 0x1a, 0x0d, 0x91, 0x6a, 0x31, 0x04, 0x9e, 0xb4,
8934 0xd1, 0x18, 0x36, 0x9b, 0x9a, 0xc3, 0x91, 0xe2, 0x8e, 0xa7, 0x8a, 0xa8,
8935 0x0b, 0x77, 0x68, 0x8f, 0x50, 0x5e, 0x14, 0x23, 0xfa, 0x0b, 0xd4, 0x93,
8936 0x1b, 0xc7, 0xff, 0xbd, 0x9b, 0x87, 0x3c, 0xa0, 0x0e, 0xfa, 0x0b, 0x1c,
8937 0xf5, 0xfe, 0xd7, 0x32, 0xe6, 0xdc, 0x5e, 0xca, 0xb9, 0x2b, 0x25, 0x51,
8938 0xda, 0x87, 0xcf, 0xe2, 0xbb, 0x7a, 0x4c, 0xee, 0x45, 0xdd, 0x2c, 0x72,
8939 0x2f, 0x0c, 0x16, 0xb0, 0x33, 0x7a, 0x67, 0xf9, 0x89, 0x29, 0x37, 0xce,
8940 0x83, 0xcc, 0xc8, 0xaa, 0x60, 0x7d, 0x26, 0xdd, 0x65, 0x3d, 0xaf, 0x10,
8941 0x15, 0xbe, 0xc0, 0xfe, 0x56, 0x2e, 0xe0, 0x84, 0xc5, 0xba, 0xb4, 0xdc,
8942 0xc2, 0xcf, 0x2c, 0x53, 0xe4, 0x8b, 0x38, 0x0b, 0x94, 0x01, 0x97, 0x81,
8943 0xfc, 0xdd, 0xdf, 0x9e, 0x15, 0xda, 0x81, 0x9b, 0xe0, 0x79, 0x01, 0x8b,
8944 0xfb, 0xb1, 0xbc, 0x82, 0xab, 0x80, 0xe9, 0x4b, 0x2d, 0x9c, 0xb2, 0x4a,
8945 0x43, 0xa3, 0x7a, 0x09, 0x6a, 0x8d, 0x07, 0xea, 0x01, 0xfb, 0xda, 0x85,
8946 0xc1, 0x42, 0x1c, 0x9e, 0xa6, 0x00, 0xce, 0x10, 0x1c, 0xab, 0x5d, 0x20,
8947 0x16, 0x0f, 0xc2, 0x7b, 0xd4, 0x94, 0x93, 0x1b, 0x2a, 0x57, 0x21, 0x4d,
8948 0xa5, 0x48, 0xae, 0x10, 0xc7, 0x1d, 0xdd, 0x34, 0x69, 0x8c, 0xc0, 0x53,
8949 0xb0, 0x9b, 0x8b, 0xff, 0x36, 0x3b, 0xf9, 0xb7, 0xd8, 0xbc, 0x66, 0x52,
8950 0xbc, 0x71, 0x6b, 0x7d, 0x7c, 0x96, 0xac, 0x59, 0x0f, 0xfd, 0x8d, 0xd1,
8951 0xe1, 0xfc, 0xba, 0x88, 0x4b, 0xbf, 0xf7, 0xe6, 0x60, 0xf0, 0x26, 0xa2,
8952 0x80, 0xfa, 0x05, 0x5c, 0xc5, 0xd7, 0x18, 0xb5, 0xd2, 0x69, 0x0d, 0xf7,
8953 0x7b, 0xfb, 0x85, 0xe8, 0x1d, 0xb8, 0xea, 0x44, 0xba, 0xb6, 0xad, 0x5e,
8954 0x68, 0x4d, 0xb7, 0xb5, 0x96, 0x8d, 0xf4, 0xb0, 0xae, 0xb3, 0x17, 0x97,
8955 0x3d, 0x4f, 0x0e, 0x61, 0xe1, 0x88, 0x26, 0xe9, 0x52, 0xc2, 0x4f, 0xce,
8956 0x11, 0x1f, 0xea, 0xe9, 0xf2, 0xf7, 0x05, 0xb6, 0x56, 0xa1, 0x96, 0x15,
8957 0x9b, 0xfd, 0xfe, 0x26, 0x9a, 0x5d, 0x9b, 0xf0, 0x8f, 0x98, 0x99, 0xe4,
8958 0x96, 0x69, 0x0c, 0x87, 0x6a, 0x3a, 0x3e, 0x0b, 0x53, 0x0a, 0x30, 0x41,
8959 0x78, 0x7a, 0xef, 0x94, 0x7d, 0x95, 0x7f, 0x5f, 0x80, 0x92, 0x4a, 0x10,
8960 0x59, 0x49, 0x41, 0x58, 0xbf, 0xc9, 0xac, 0xe1, 0xba, 0xf3, 0xbc, 0x47,
8961 0x9c, 0x2a, 0x5c, 0x0a, 0x54, 0x39, 0xd9, 0xa4, 0xb5, 0x2e, 0xca, 0x1c,
8962 0xcc, 0xc7, 0x97, 0x48, 0x2b, 0x8d, 0x33, 0x13, 0x0a, 0x74, 0xfc, 0x04,
8963 0xf6, 0x56, 0x1a, 0x85, 0x48, 0x8f, 0x04, 0x80, 0xff, 0x07, 0xf3, 0x76,
8964 0x93, 0x7c, 0xdc, 0xe3, 0xa5, 0x30, 0xab, 0x54, 0x7e, 0xd2, 0x63, 0x97,
8965 0x50, 0x8d, 0x7f, 0xf7, 0x76, 0x1a, 0xfc, 0x9b, 0xc2, 0xd6, 0x1f, 0xcf,
8966 0x17, 0x43, 0x6a, 0x4e, 0x7a, 0x0d, 0xf4, 0x09, 0x80, 0x14, 0x71, 0x52,
8967 0x08, 0xd7, 0xf8, 0x38, 0x6b, 0x45, 0x88, 0xaa, 0x64, 0x55, 0xd8, 0xbd,
8968 0xaf, 0x61, 0x0e, 0xc3, 0x45, 0xeb, 0x9e, 0x57, 0x82, 0x1f, 0x42, 0xf5,
8969 0xbc, 0x04, 0x06, 0xc6, 0xae, 0xe5, 0x79, 0x82, 0x7e, 0x02, 0x12, 0x39,
8970 0xe2, 0xd0, 0x8d, 0xb9, 0x1a, 0x98, 0x82, 0x27, 0x52, 0x56, 0x48, 0x1e,
8971 0x3f, 0x1f, 0x22, 0x9f, 0x63, 0xd9, 0xc6, 0x14, 0x71, 0xa6, 0x00, 0xef,
8972 0x8c, 0x8d, 0x65, 0x61, 0xc9, 0xb1, 0x91, 0x2b, 0x3b, 0x6c, 0x29, 0xce,
8973 0x8d, 0x46, 0x33, 0xdb, 0xc9, 0x5e, 0xe3, 0x68, 0x0a, 0x24, 0x3d, 0xdb,
8974 0xa3, 0x70, 0x0f, 0xd2, 0xad, 0xbc, 0x8e, 0x77, 0xf6, 0x9f, 0xc9, 0xb4,
8975 0xb5, 0xe5, 0x0f, 0x39, 0x3e, 0xd6, 0xf8, 0xab, 0xcd, 0x4d, 0x8e, 0x09,
8976 0x63, 0xdc, 0xd1, 0xb3, 0xa8, 0x28, 0x31, 0x01, 0xaf, 0xfd, 0xd3, 0x5a,
8977 0x4b, 0xd9, 0xbd, 0xba, 0xf4, 0x39, 0x4d, 0x2a, 0xa2, 0x44, 0x3d, 0x86,
8978 0x04, 0x38, 0x73, 0xf4, 0xac, 0xae, 0x9b, 0xde, 0xc6, 0x78, 0xdc, 0x4d,
8979 0xb8, 0x72, 0xb7, 0xfb, 0xa2, 0x00, 0x9e, 0xe3, 0x98, 0x78, 0x4e, 0x28,
8980 0xdc, 0x27, 0xb6, 0x1e, 0x75, 0xc8, 0xc3, 0x65, 0xf5, 0x77, 0x15, 0x25,
8981 0x30, 0x78, 0x30, 0x42, 0x58, 0x49, 0xcf, 0xfc, 0xee, 0x8e, 0x2c, 0x50,
8982 0xd4, 0x69, 0xe5, 0x3a, 0x18, 0x39, 0x85, 0x9d, 0xa3, 0xfe, 0xb4, 0x9a,
8983 0x8b, 0xa1, 0x07, 0x83, 0x28, 0xcf, 0x34, 0x7d, 0x42, 0xe9, 0x64, 0x72,
8984 0xb0, 0x06, 0xec, 0x46, 0xb5, 0xb0, 0x81, 0x0e, 0x01, 0x3c, 0x77, 0x0f,
8985 0x35, 0xb1, 0x56, 0xdc, 0x49, 0x83, 0x15, 0xc8, 0x70, 0x73, 0xf7, 0x94,
8986 0x43, 0xef, 0x11, 0x1c, 0x78, 0x61, 0x13, 0x19, 0x41, 0xa2, 0x32, 0x9e,
8987 0x31, 0xf8, 0xbc, 0xbf, 0xfb, 0xb2, 0xbf, 0x75, 0xa0, 0x3d, 0x65, 0xbb,
8988 0xd1, 0xd7, 0xd9, 0x02, 0x97, 0x03, 0xdf, 0xf9, 0xeb, 0xc1, 0x5f, 0xd2,
8989 0xca, 0xbf, 0x61, 0x6f, 0x17, 0x6f, 0x78, 0x37, 0xe0, 0x8b, 0x6e, 0xf3,
8990 0xe9, 0x04, 0x6e, 0x0c, 0x5c, 0xf6, 0x1c, 0x2f, 0x03, 0x7e, 0x1b, 0x57,
8991 0x1e, 0x8e, 0xa6, 0x30, 0x58, 0xfb, 0xa4, 0xf6, 0xf6, 0x02, 0x93, 0xea,
8992 0xae, 0xfa, 0xd0, 0xa6, 0x25, 0x4b, 0x8a, 0x3c, 0x32, 0x99, 0xf6, 0x31,
8993 0x65, 0x84, 0x2f, 0xd3, 0xb4, 0xf9, 0xf7, 0x86, 0x5d, 0xa9, 0x89, 0x26,
8994 0xf8, 0x6f, 0x25, 0x53, 0xb8, 0x71, 0xbb, 0xd9, 0xa9, 0xa3, 0x64, 0x7b,
8995 0xfb, 0xc5, 0x70, 0x7f, 0xfb, 0xc5, 0xcb, 0xe7, 0x93, 0xbd, 0xbd, 0xfd,
8996 0x9d, 0xf1, 0x68, 0x6d, 0xc5, 0x83, 0x0e, 0x8d, 0x61, 0x18, 0x95, 0x07,
8997 0xac, 0x87, 0x3a, 0x1a, 0xf0, 0x8e, 0x82, 0xf8, 0x1d, 0x4e, 0x83, 0xa8,
8998 0x57, 0x4c, 0x16, 0xd4, 0xe5, 0xa9, 0x22, 0x48, 0xe5, 0xe7, 0x3b, 0xbb,
8999 0xdb, 0x9b, 0xcf, 0xfa, 0x7b, 0xfd, 0x1d, 0x53, 0x87, 0xce, 0xc0, 0x99,
9000 0x15, 0x55, 0xb9, 0x05, 0xb2, 0xce, 0xa8, 0xd4, 0x30, 0xcd, 0x04, 0xba,
9001 0xdc, 0x7c, 0x42, 0x31, 0x0f, 0x5b, 0xe6, 0x87, 0x60, 0xe6, 0xdb, 0x2e,
9002 0xd4, 0x15, 0xc5, 0xe3, 0xbc, 0x26, 0x6c, 0x59, 0x0f, 0x27, 0x61, 0x22,
9003 0xe3, 0xb8, 0xcc, 0xc3, 0xf4, 0xef, 0x8b, 0xb4, 0x02, 0x1d, 0x9f, 0xa2,
9004 0x2e, 0xc9, 0x10, 0x13, 0xe5, 0x6e, 0x4b, 0xb2, 0x38, 0x80, 0x24, 0xf4,
9005 0x0e, 0xda, 0x7f, 0xd2, 0x17, 0xce, 0x8a, 0x5a, 0xe2, 0x80, 0xbf, 0x12,
9006 0x24, 0x55, 0x4a, 0x62, 0x1b, 0xaf, 0x28, 0xd3, 0xb2, 0x02, 0x61, 0x0b,
9007 0xc2, 0xe9, 0x4d, 0x7e, 0x8b, 0xdc, 0xd4, 0xa5, 0xea, 0xd1, 0xc2, 0xcf,
9008 0xf9, 0x40, 0x17, 0xa8, 0xc9, 0xb3, 0x43, 0x59, 0x49, 0x65, 0x7f, 0x44,
9009 0x3f, 0xca, 0x76, 0x92, 0x3a, 0x40, 0x2e, 0x3a, 0xe0, 0x48, 0x79, 0xed,
9010 0x85, 0x97, 0x2b, 0xb8, 0xb3, 0x24, 0x46, 0xeb, 0x1b, 0xc1, 0x9a, 0x38,
9011 0xe1, 0x8b, 0x5b, 0x55, 0x91, 0x49, 0xd5, 0x02, 0x36, 0xf5, 0xc8, 0x93,
9012 0x9d, 0x19, 0xc1, 0x45, 0xba, 0xea, 0x8d, 0xa3, 0x0e, 0x8a, 0xa8, 0x55,
9013 0xa3, 0x6e, 0x02, 0x16, 0xdf, 0xb5, 0x48, 0xf1, 0xac, 0x75, 0xb5, 0x81,
9014 0x61, 0xe9, 0x0d, 0x4f, 0x66, 0xc2, 0xdd, 0x5f, 0x9f, 0x09, 0x77, 0xfe,
9015 0xfb, 0x33, 0xa1, 0xf2, 0x60, 0xbc, 0x94, 0x03, 0x99, 0x05, 0x91, 0x4f,
9016 0xff, 0x6d, 0x98, 0x70, 0xe7, 0xd7, 0x63, 0xc2, 0xed, 0x55, 0x99, 0x70,
9017 0xf7, 0x31, 0x4c, 0x08, 0xeb, 0x3d, 0x45, 0x35, 0xa3, 0xc6, 0x84, 0x7b,
9018 0xbf, 0x2e, 0x13, 0x62, 0xef, 0x8a, 0xda, 0x9a, 0x60, 0x95, 0xdd, 0x51,
9019 0xb8, 0x2b, 0xc0, 0xe3, 0x57, 0x3b, 0xa6, 0x61, 0x75, 0x54, 0x0f, 0xc6,
9020 0x8d, 0x59, 0xfd, 0x5f, 0xb9, 0xd6, 0xbb, 0xbf, 0x89, 0xc0, 0xd9, 0x7e,
9021 0x68, 0xad, 0x8b, 0x84, 0xd3, 0x8b, 0xbe, 0xd7, 0x34, 0x2f, 0x78, 0xd6,
9022 0x8f, 0xe4, 0x42, 0x3e, 0x40, 0xcd, 0xe2, 0xc7, 0xa6, 0xc9, 0x26, 0x7d,
9023 0xd4, 0xac, 0x0d, 0x31, 0x38, 0x3f, 0xfe, 0xcb, 0x40, 0x72, 0x94, 0x44,
9024 0xcd, 0x53, 0x35, 0x90, 0xfd, 0x99, 0xd4, 0xc0, 0x90, 0x3b, 0x96, 0x78,
9025 0xd6, 0x05, 0x55, 0xbf, 0x44, 0x94, 0x99, 0x68, 0x52, 0x13, 0x23, 0xac,
9026 0x18, 0xd5, 0xf3, 0x80, 0x7a, 0x28, 0x31, 0x48, 0x23, 0x45, 0x76, 0x64,
9027 0xe8, 0x32, 0xec, 0x29, 0x71, 0xe7, 0x22, 0xd1, 0xa5, 0xcc, 0xde, 0xb2,
9028 0x5e, 0x5d, 0x17, 0x84, 0x49, 0x45, 0x97, 0x6d, 0x44, 0x16, 0xa3, 0x68,
9029 0xe9, 0xec, 0x64, 0x56, 0x6f, 0xa8, 0x71, 0xe8, 0xbc, 0x48, 0xa2, 0x46,
9030 0x06, 0xa5, 0xe3, 0xce, 0x32, 0xdf, 0x6a, 0x00, 0xd4, 0x42, 0x7d, 0x58,
9031 0x82, 0x49, 0x3b, 0x17, 0x87, 0xde, 0x78, 0x9f, 0x57, 0x44, 0x9d, 0xde,
9032 0x31, 0x66, 0x82, 0xc1, 0xb3, 0x9f, 0x02, 0xdb, 0x66, 0x84, 0xae, 0xa4,
9033 0xb9, 0xa5, 0xb6, 0xe3, 0x7d, 0x9f, 0x57, 0x06, 0x64, 0xeb, 0xe8, 0x53,
9034 0xb9, 0x07, 0x43, 0x36, 0x83, 0x67, 0xfc, 0x45, 0x8c, 0xdf, 0xc8, 0x1f,
9035 0xfb, 0xf8, 0x60, 0xaa, 0x6d, 0xe4, 0x3f, 0xaf, 0xe9, 0x6f, 0x7c, 0xa4,
9036 0xf6, 0x28, 0x71, 0xd6, 0x79, 0x14, 0x24, 0xb4, 0x03, 0x71, 0x66, 0x90,
9037 0x61, 0xdf, 0xe5, 0x5e, 0x53, 0x0d, 0x7a, 0x67, 0x74, 0x1c, 0x10, 0xb2,
9038 0x65, 0xc8, 0xcd, 0xee, 0x48, 0x79, 0x1a, 0x79, 0xaf, 0x35, 0x83, 0xc2,
9039 0xed, 0x0f, 0xa7, 0x98, 0xab, 0xf6, 0x31, 0xe2, 0x6b, 0x70, 0x97, 0xa0,
9040 0xcb, 0xfd, 0x08, 0x7d, 0xc8, 0x8a, 0xc5, 0xcc, 0x38, 0xc3, 0xb6, 0xb7,
9041 0x5e, 0xf8, 0xce, 0xc7, 0x0f, 0x8a, 0x95, 0x64, 0x9b, 0x98, 0x51, 0x25,
9042 0x01, 0x81, 0xba, 0x0c, 0x2d, 0x7c, 0x54, 0xe8, 0xa1, 0x18, 0xe9, 0x0f,
9043 0xf8, 0x3a, 0x10, 0x2d, 0x31, 0x17, 0x6b, 0x14, 0xa9, 0xe0, 0xc3, 0x64,
9044 0x20, 0x32, 0x29, 0xfa, 0x77, 0x52, 0x41, 0xba, 0x00, 0x4d, 0x9d, 0x33,
9045 0xd6, 0xbd, 0xbc, 0x0b, 0xf4, 0x22, 0x6a, 0x76, 0xe1, 0x97, 0xb6, 0xbb,
9046 0xcd, 0x1f, 0xf7, 0xb6, 0x70, 0x4d, 0x75, 0x10, 0xd8, 0x40, 0xf9, 0x54,
9047 0xcb, 0x62, 0xff, 0xb8, 0x1b, 0xff, 0xee, 0xce, 0x2b, 0x15, 0x37, 0x86,
9048 0x05, 0x79, 0x33, 0x29, 0xb6, 0x4c, 0xef, 0x2e, 0x92, 0x88, 0x16, 0xfe,
9049 0x63, 0x3e, 0x7e, 0x62, 0x96, 0xb3, 0xb6, 0xa4, 0xa7, 0x67, 0xd5, 0x94,
9050 0xff, 0xfd, 0xba, 0x63, 0xc5, 0xab, 0x43, 0x0e, 0x38, 0x74, 0x45, 0x69,
9051 0x51, 0xf8, 0x6a, 0x05, 0x5b, 0x36, 0x45, 0x46, 0x31, 0xfb, 0x34, 0x68,
9052 0xbe, 0xe6, 0x43, 0x18, 0x0a, 0x1e, 0xe8, 0x25, 0x0b, 0x6a, 0x7e, 0x08,
9053 0x27, 0x52, 0xb3, 0xd7, 0xaa, 0xeb, 0xf5, 0x7a, 0x89, 0xa7, 0x5d, 0x2e,
9054 0x5d, 0x6a, 0x81, 0x2d, 0x34, 0x4f, 0xa1, 0xc7, 0x8c, 0x8b, 0xf8, 0xd6,
9055 0x71, 0xab, 0x70, 0xd7, 0x82, 0x09, 0xa5, 0x7f, 0x98, 0xa2, 0x07, 0xf8,
9056 0x1e, 0x13, 0x83, 0xcb, 0x40, 0x72, 0x76, 0x39, 0x2a, 0x12, 0xc9, 0x9b,
9057 0xc3, 0x0e, 0x64, 0x25, 0x77, 0x6e, 0x1e, 0x61, 0x4d, 0xcd, 0x55, 0xa2,
9058 0xb0, 0xc3, 0xb6, 0x29, 0xb4, 0x40, 0x1e, 0x13, 0xce, 0x71, 0x3f, 0x04,
9059 0x04, 0x62, 0x7d, 0xdd, 0xa6, 0x16, 0x0d, 0x55, 0x2b, 0x06, 0x46, 0xc6,
9060 0xdb, 0xbb, 0x52, 0xd1, 0x63, 0xfa, 0x9e, 0xcd, 0x63, 0xac, 0x6f, 0xb9,
9061 0x4e, 0x9b, 0x7d, 0x96, 0xd7, 0x7b, 0x9f, 0xe7, 0x9f, 0xf7, 0x36, 0x64,
9062 0xfb, 0xe5, 0x37, 0x49, 0x49, 0x36, 0x30, 0xc3, 0x3b, 0x81, 0x34, 0xb8,
9063 0x26, 0x77, 0x9f, 0x1c, 0xc9, 0x04, 0xcd, 0x84, 0x05, 0xf9, 0xe4, 0x2c,
9064 0xa1, 0x2c, 0x93, 0x16, 0x98, 0x6c, 0x4e, 0x34, 0x63, 0x59, 0x8c, 0xae,
9065 0x41, 0xa0, 0xd5, 0x84, 0xeb, 0xf8, 0xd0, 0x77, 0x14, 0x61, 0x32, 0xb5,
9066 0x74, 0x80, 0xe5, 0xa4, 0x8a, 0x7c, 0xfe, 0xef, 0xee, 0x72, 0xff, 0xc3,
9067 0x0a, 0xb9, 0x53, 0xa2, 0x2f, 0x50, 0x16, 0xff, 0x58, 0xb2, 0x9c, 0xea,
9068 0x7a, 0x01, 0xc8, 0xf0, 0x9e, 0xca, 0xe5, 0x43, 0x15, 0xe9, 0x5f, 0x3c,
9069 0x88, 0x24, 0x64, 0x84, 0xff, 0x44, 0xfc, 0x76, 0x28, 0xf8, 0x08, 0xff,
9070 0x8a, 0x7b, 0xe3, 0x8e, 0xae, 0x93, 0x19, 0xd7, 0xac, 0xfb, 0xb8, 0x53,
9071 0xa0, 0x4e, 0x65, 0xcc, 0x20, 0x98, 0xb2, 0x93, 0x19, 0xe7, 0x86, 0x3d,
9072 0xe8, 0x4c, 0xa3, 0x10, 0xe9, 0x38, 0x11, 0x1d, 0xc3, 0xf0, 0x27, 0x1f,
9073 0x3f, 0xbc, 0x1b, 0x7c, 0xb8, 0xe8, 0x79, 0x4d, 0x96, 0xde, 0x5f, 0x9e,
9074 0xbc, 0xc2, 0xba, 0x8f, 0xcb, 0xf3, 0xe3, 0xf3, 0xb3, 0x68, 0x7d, 0x7b,
9075 0x63, 0xe9, 0x0a, 0x9a, 0x35, 0x33, 0xcd, 0xe5, 0x6c, 0x7c, 0x8a, 0xc5,
9076 0x89, 0x99, 0xc5, 0x3a, 0x52, 0xd9, 0x1f, 0xed, 0x5b, 0x61, 0xf4, 0x86,
9077 0xd7, 0x59, 0x9c, 0x65, 0x57, 0x70, 0xa8, 0x96, 0xe4, 0x93, 0x94, 0x51,
9078 0xdc, 0x14, 0x78, 0x2a, 0xe3, 0x09, 0xf4, 0x7f, 0xe8, 0x52, 0x38, 0x98,
9079 0xd3, 0x60, 0x1d, 0x10, 0xb3, 0xd5, 0xe5, 0xae, 0xbb, 0x9c, 0x5c, 0x68,
9080 0x3b, 0xb1, 0x02, 0xf6, 0x21, 0xad, 0x12, 0xef, 0xb6, 0xb5, 0x0d, 0x30,
9081 0x12, 0xe9, 0xcd, 0x75, 0x57, 0xf5, 0x7e, 0xc3, 0x9d, 0x62, 0xaf, 0xb3,
9082 0xec, 0x53, 0x2e, 0xe7, 0x1f, 0x86, 0xcf, 0xa6, 0x4e, 0xc2, 0xe6, 0x0e,
9083 0x3c, 0xbe, 0x35, 0x97, 0x2a, 0xcf, 0x8c, 0xc2, 0x0e, 0x0a, 0xcf, 0x45,
9084 0x91, 0xfb, 0xd9, 0x88, 0x74, 0x0b, 0x50, 0x29, 0x4b, 0xf9, 0x98, 0x35,
9085 0x93, 0x17, 0x04, 0x51, 0x29, 0xc0, 0x81, 0x0b, 0xf0, 0x5b, 0x67, 0xa1,
9086 0x08, 0x3b, 0xce, 0xef, 0xf6, 0x46, 0x37, 0x33, 0xa0, 0xf3, 0xad, 0x33,
9087 0x29, 0x1c, 0x0e, 0x8f, 0x32, 0xea, 0xf4, 0xd5, 0x7e, 0x0c, 0x76, 0x05,
9088 0x8c, 0x9a, 0x84, 0x13, 0x29, 0x99, 0x48, 0x44, 0x56, 0x2b, 0x9d, 0x97,
9089 0x69, 0xc9, 0x41, 0xab, 0x13, 0x11, 0xd3, 0x26, 0xba, 0xb8, 0x72, 0x5d,
9090 0x5e, 0x3e, 0x39, 0x27, 0x97, 0xac, 0xe0, 0x57, 0xf5, 0x06, 0x3e, 0x02,
9091 0x7d, 0x82, 0x53, 0xe1, 0x59, 0x31, 0xd0, 0x1e, 0xcd, 0xa6, 0x4b, 0xe8,
9092 0x6c, 0x38, 0xb9, 0xd7, 0x66, 0x6e, 0x5e, 0x9d, 0x33, 0xe7, 0xed, 0xac,
9093 0x2b, 0x84, 0xf0, 0xb3, 0xfd, 0xfe, 0xce, 0x46, 0xdf, 0xcd, 0x38, 0xc2,
9094 0xc4, 0x0e, 0x20, 0xd5, 0x7f, 0xe1, 0xbf, 0x0a, 0x09, 0x80, 0xbf, 0xf3,
9095 0x6b, 0x78, 0x76, 0x3e, 0x0b, 0x56, 0x03, 0x90, 0xde, 0x55, 0xe0, 0x09,
9096 0xde, 0x85, 0x57, 0x79, 0xce, 0x92, 0x52, 0x3b, 0xbc, 0x3e, 0x8d, 0xe7,
9097 0x99, 0x78, 0x9f, 0x37, 0x08, 0xb7, 0x82, 0x45, 0x85, 0xa3, 0x78, 0x8c,
9098 0xfd, 0x8b, 0x59, 0x9a, 0x9d, 0x63, 0x14, 0x93, 0x99, 0xd4, 0x8e, 0xcb,
9099 0xe6, 0x61, 0x7a, 0x61, 0xee, 0x22, 0xa6, 0x4b, 0x10, 0x2e, 0x8c, 0xcb,
9100 0x27, 0x93, 0x09, 0x29, 0xcc, 0x84, 0x32, 0xd8, 0xa5, 0x2f, 0x29, 0x99,
9101 0xcd, 0x14, 0x54, 0x05, 0xbb, 0x0d, 0xd0, 0x18, 0xf1, 0xc8, 0x35, 0x40,
9102 0x4c, 0x17, 0x96, 0x35, 0x58, 0xab, 0xb5, 0xae, 0xc1, 0xd5, 0x9c, 0xde,
9103 0x53, 0xa2, 0x4b, 0x7a, 0xa7, 0x48, 0x4f, 0x3f, 0x27, 0x45, 0xee, 0xa7,
9104 0x56, 0x92, 0xd6, 0xa2, 0x5d, 0x22, 0xc0, 0x10, 0x39, 0xba, 0x01, 0x01,
9105 0x45, 0x99, 0xa2, 0xe6, 0x43, 0x7c, 0xaa, 0xc7, 0xe3, 0xff, 0x05, 0xef,
9106 0x86, 0xc8, 0x88, 0x22, 0x2e, 0xcd, 0x6c, 0x52, 0xea, 0x3e, 0x93, 0x6a,
9107 0x3a, 0x9c, 0xb3, 0xe7, 0x04, 0x35, 0x85, 0xf0, 0x14, 0x3d, 0x8b, 0x9d,
9108 0x74, 0xe2, 0x31, 0xda, 0x78, 0xb6, 0xc2, 0xdc, 0x64, 0x17, 0x4c, 0xb0,
9109 0x8d, 0x82, 0xe9, 0x64, 0x21, 0x4a, 0xae, 0x2f, 0xbf, 0x7b, 0x51, 0xf4,
9110 0x2a, 0xc9, 0xee, 0xeb, 0x13, 0xc2, 0xb2, 0x27, 0xd0, 0x3a, 0x38, 0x36,
9111 0x63, 0x01, 0x8b, 0xb5, 0xff, 0xfc, 0xc4, 0xb1, 0xc2, 0xfc, 0x29, 0xd5,
9112 0xe7, 0x1c, 0x92, 0x14, 0x9f, 0x1b, 0x32, 0xf0, 0xd6, 0xac, 0x13, 0x63,
9113 0x9d, 0x7a, 0x4b, 0x69, 0x36, 0x1f, 0x3d, 0xf2, 0x31, 0x64, 0xa0, 0xbe,
9114 0x35, 0x64, 0xea, 0x96, 0x8b, 0xe1, 0x4f, 0xd2, 0x30, 0x12, 0x1d, 0x35,
9115 0x85, 0x50, 0x41, 0xdc, 0x0c, 0xb0, 0xaa, 0x70, 0x01, 0x87, 0x6e, 0x2b,
9116 0x2c, 0xba, 0x0c, 0x0d, 0x47, 0x69, 0x86, 0xa9, 0x93, 0x04, 0x1f, 0xd5,
9117 0x6b, 0x78, 0x83, 0x40, 0x70, 0x89, 0xee, 0xcd, 0x16, 0x91, 0xda, 0x9b,
9118 0xe0, 0x56, 0xe4, 0xfa, 0xab, 0xc6, 0x41, 0xcb, 0xb4, 0xe4, 0x72, 0x42,
9119 0x53, 0x6a, 0x8b, 0x97, 0xb7, 0x8e, 0xa5, 0x92, 0xb1, 0xec, 0xfe, 0x17,
9120 0xfe, 0xe3, 0xbf, 0x43, 0xbd, 0x6e, 0x18, 0x6b, 0x78, 0x44, 0x3a, 0xe1,
9121 0xe5, 0x24, 0xf6, 0xe8, 0xf6, 0xb6, 0x07, 0x38, 0xd2, 0x63, 0xf9, 0xd8,
9122 0x24, 0x33, 0x56, 0x78, 0xc0, 0x07, 0x51, 0x77, 0x1c, 0x2e, 0xc7, 0x5f,
9123 0xa9, 0xb5, 0x35, 0x6a, 0xcb, 0x82, 0xc7, 0xd0, 0x8f, 0x6a, 0x86, 0x22,
9124 0xa8, 0xea, 0xe9, 0x9c, 0x5c, 0x20, 0x4d, 0xbb, 0x22, 0x9e, 0x60, 0x81,
9125 0x72, 0x81, 0x3f, 0x70, 0x75, 0x29, 0xc7, 0x9a, 0xcb, 0xda, 0x6d, 0x85,
9126 0xfb, 0x3c, 0xaf, 0xb8, 0x25, 0xf0, 0x14, 0xc3, 0x6e, 0xa0, 0xe8, 0x14,
9127 0xe8, 0xa5, 0xc5, 0xc7, 0x86, 0x4f, 0xd3, 0xae, 0xa3, 0xc0, 0xe3, 0xc8,
9128 0xe4, 0x92, 0x5b, 0xcc, 0xa9, 0xde, 0x43, 0xca, 0xa5, 0x38, 0x4b, 0xc2,
9129 0x11, 0x71, 0x41, 0xc5, 0x9b, 0xab, 0xac, 0xc8, 0xdd, 0x67, 0x9a, 0x0a,
9130 0x23, 0x4c, 0xd2, 0xb2, 0xd6, 0x6e, 0x56, 0x8f, 0x92, 0x30, 0x73, 0xb0,
9131 0x58, 0xc1, 0x56, 0x4e, 0xc7, 0xa5, 0x0b, 0xfa, 0xe5, 0xa3, 0x99, 0xd8,
9132 0xdc, 0x68, 0xca, 0xba, 0xc9, 0x30, 0x46, 0x9a, 0x71, 0xe0, 0x55, 0x6c,
9133 0x78, 0x15, 0xd1, 0x38, 0x4d, 0xb4, 0x76, 0x31, 0x3d, 0x30, 0xc6, 0x03,
9134 0xcf, 0x2b, 0x47, 0xe4, 0x0a, 0x8d, 0x27, 0x39, 0xfc, 0x9a, 0x5c, 0xd5,
9135 0x2d, 0x81, 0xbf, 0x9f, 0x72, 0x30, 0xc9, 0xf1, 0xe6, 0xaa, 0x66, 0x1e,
9136 0xf6, 0x8e, 0x56, 0xcb, 0x49, 0xbd, 0xd9, 0xd2, 0xe3, 0x6a, 0x8e, 0xb0,
9137 0xaf, 0xb0, 0xc1, 0x17, 0x69, 0x45, 0xcc, 0xd2, 0x28, 0xd9, 0xd5, 0x72,
9138 0x53, 0xee, 0x7f, 0x0c, 0xb2, 0xc0, 0xab, 0x83, 0xcb, 0x34, 0x8e, 0xed,
9139 0xd6, 0x80, 0x71, 0x49, 0x0e, 0xe9, 0x3f, 0xe2, 0x4c, 0xe3, 0x1e, 0xef,
9140 0xe4, 0x4a, 0x21, 0x85, 0x9e, 0x78, 0x00, 0x23, 0xdb, 0x61, 0x2f, 0xf1,
9141 0xa6, 0x49, 0x29, 0x06, 0x66, 0xcd, 0xc6, 0x3d, 0x90, 0x49, 0xf3, 0x27,
9142 0x10, 0xdd, 0x12, 0xc1, 0xfc, 0x4d, 0x35, 0x62, 0xb6, 0x16, 0x71, 0x8c,
9143 0x1e, 0x08, 0x56, 0xf6, 0x9f, 0xe8, 0x73, 0x30, 0xbf, 0xd4, 0x0a, 0x01,
9144 0xf9, 0x93, 0x71, 0xa3, 0x0a, 0xb4, 0x76, 0xe5, 0x83, 0x96, 0x55, 0x6b,
9145 0x1b, 0xf9, 0xc8, 0x5d, 0x10, 0x5d, 0x00, 0x2f, 0xb9, 0x5b, 0x2a, 0x34,
9146 0x78, 0x2d, 0x64, 0x19, 0xb8, 0x53, 0x01, 0x4f, 0x94, 0x8c, 0xd2, 0x4c,
9147 0x0a, 0xdd, 0x9d, 0x67, 0xb1, 0x89, 0xec, 0xad, 0x0b, 0x26, 0xed, 0x4a,
9148 0xdb, 0x70, 0xbe, 0x4e, 0xce, 0x5c, 0x23, 0xc9, 0xbd, 0x49, 0x6a, 0x3b,
9149 0xe4, 0x80, 0xff, 0x8f, 0x8e, 0x01, 0x7a, 0x10, 0x4e, 0x2c, 0x4d, 0xca,
9150 0xa7, 0x2d, 0x2e, 0xbf, 0xc8, 0xbf, 0x60, 0x69, 0x43, 0xc0, 0xfc, 0x6d,
9151 0x8b, 0x3b, 0x8a, 0x31, 0x1f, 0x23, 0x5c, 0x41, 0x34, 0x10, 0x49, 0xd4,
9152 0xd3, 0xab, 0xf0, 0xcc, 0xd3, 0x12, 0x4b, 0xc7, 0xfb, 0x4c, 0x69, 0x33,
9153 0x4f, 0xc9, 0xc1, 0x73, 0x67, 0x70, 0x7c, 0xc4, 0x48, 0xe4, 0x15, 0xe2,
9154 0x97, 0xde, 0x19, 0x22, 0xac, 0x44, 0x92, 0x46, 0x01, 0xee, 0x28, 0xc6,
9155 0xa4, 0x1f, 0xf2, 0xdd, 0xf3, 0x43, 0xe4, 0x57, 0x4a, 0x05, 0x22, 0xe2,
9156 0xb8, 0x90, 0x03, 0x0d, 0x6b, 0xbf, 0xd5, 0x1b, 0x57, 0x1b, 0x5c, 0xea,
9157 0x0e, 0xdb, 0xe9, 0x46, 0x17, 0xfd, 0x46, 0x74, 0xa3, 0xb1, 0x37, 0x0d,
9158 0x9e, 0x9b, 0x94, 0xea, 0x3d, 0x95, 0x78, 0x56, 0x70, 0x9b, 0x45, 0xe9,
9159 0xd6, 0x42, 0x1f, 0x82, 0xbb, 0xa4, 0x6f, 0xd5, 0x57, 0x22, 0xc1, 0x5b,
9160 0x79, 0xd9, 0x22, 0x2d, 0x34, 0x83, 0x31, 0x7b, 0xd5, 0xfd, 0x3c, 0x89,
9161 0x0e, 0xf1, 0xe7, 0x12, 0xba, 0x99, 0x0b, 0x7f, 0x1b, 0xd2, 0x99, 0xe1,
9162 0x31, 0xa1, 0xcb, 0xfd, 0x94, 0x73, 0xc3, 0x7e, 0x1d, 0x12, 0x26, 0x45,
9163 0xd5, 0x7f, 0x04, 0x1f, 0xd1, 0xf6, 0xc3, 0x9f, 0xdf, 0x8b, 0x24, 0xf8,
9164 0x71, 0x39, 0x5d, 0x7e, 0x3b, 0x92, 0xfc, 0xca, 0x2f, 0x4f, 0x14, 0x7e,
9165 0x0c, 0x05, 0xd2, 0xf9, 0x35, 0x9a, 0x61, 0x87, 0x21, 0x58, 0x1e, 0xe7,
9166 0xdd, 0xe5, 0xb2, 0xdf, 0xe6, 0xf5, 0x65, 0xf0, 0x93, 0xe3, 0x57, 0x6f,
9167 0x4e, 0x7a, 0xf0, 0x73, 0x70, 0xd4, 0x3b, 0x3a, 0x19, 0xec, 0xec, 0x3f,
9168 0xeb, 0x1d, 0x1f, 0xbf, 0x7d, 0xf1, 0x4b, 0x89, 0x22, 0xc3, 0x13, 0x0c,
9169 0xf2, 0xa2, 0x40, 0x1f, 0x71, 0x53, 0xfc, 0x3c, 0x82, 0x4c, 0xc5, 0xd4,
9170 0xb6, 0x50, 0x59, 0x42, 0x26, 0xb9, 0xec, 0xb7, 0x21, 0x93, 0x0c, 0x5e,
9171 0x24, 0x3f, 0x51, 0xd3, 0xb8, 0x5f, 0x22, 0xac, 0x95, 0x34, 0x32, 0xe4,
9172 0xea, 0x04, 0xe1, 0x23, 0x2d, 0xa8, 0x98, 0xf8, 0x9a, 0xc9, 0x2b, 0xc1,
9173 0x36, 0xa8, 0x9f, 0xfa, 0xb7, 0x1c, 0x81, 0x7d, 0x9a, 0x62, 0x22, 0x70,
9174 0x09, 0xbe, 0x66, 0x22, 0xcf, 0xc2, 0x7b, 0x9b, 0xfe, 0x8d, 0x9a, 0x6a,
9175 0xf2, 0xa4, 0x25, 0x90, 0xa7, 0xfe, 0x4e, 0x6a, 0x04, 0xe9, 0x30, 0xfe,
9176 0x52, 0x70, 0x3d, 0x54, 0x74, 0xc8, 0xff, 0x6e, 0x7e, 0x19, 0x62, 0x51,
9177 0x83, 0x2d, 0x83, 0x8a, 0xb4, 0x54, 0x50, 0xe1, 0x12, 0x29, 0xf0, 0xbb,
9178 0xd8, 0xf0, 0x1a, 0xde, 0xbd, 0x75, 0x3b, 0x81, 0xe3, 0xad, 0x9e, 0xf9,
9179 0xa7, 0x78, 0x47, 0x7d, 0x53, 0xd1, 0x6a, 0x9a, 0x92, 0x99, 0x84, 0x5c,
9180 0xf4, 0x80, 0x24, 0xce, 0x03, 0x4b, 0xd3, 0x05, 0x24, 0x60, 0x2e, 0x61,
9181 0x66, 0xc6, 0x4d, 0x4c, 0x40, 0x81, 0x4e, 0xd7, 0x43, 0x7d, 0x39, 0xdc,
9182 0x50, 0x52, 0xca, 0xa9, 0x3b, 0xc9, 0xf0, 0x8d, 0x97, 0x51, 0x4a, 0x56,
9183 0xf6, 0x94, 0xcb, 0x86, 0xa3, 0xe3, 0xf3, 0x77, 0xef, 0x4e, 0x8e, 0x9b,
9184 0x29, 0x24, 0x18, 0x50, 0x25, 0x60, 0x15, 0x34, 0xa5, 0x0d, 0xcc, 0x90,
9185 0xcc, 0x33, 0xd4, 0xef, 0x5d, 0x10, 0x89, 0xf8, 0xe1, 0xf0, 0xc7, 0xad,
9186 0xa0, 0x0c, 0xb9, 0x5f, 0x4a, 0x77, 0xbd, 0x65, 0x5c, 0xe6, 0x82, 0x58,
9187 0x73, 0xc8, 0xbb, 0x5c, 0x14, 0x0a, 0x12, 0x47, 0xce, 0x37, 0x79, 0x61,
9188 0xaa, 0x09, 0x1f, 0x8f, 0x37, 0xa5, 0x8e, 0x5a, 0x1f, 0xd5, 0xb6, 0x43,
9189 0xb8, 0xff, 0x16, 0xa2, 0xdd, 0xf4, 0xf2, 0x09, 0xb7, 0x25, 0x9f, 0xc5,
9190 0xc5, 0x27, 0x4c, 0x7e, 0x72, 0x6a, 0xc3, 0x09, 0x41, 0x8e, 0x9a, 0x65,
9191 0x8d, 0xc7, 0x21, 0x74, 0x6c, 0x8a, 0x53, 0x3a, 0x88, 0x1b, 0x3a, 0x19,
9192 0x12, 0x5b, 0x59, 0x75, 0x80, 0x09, 0xf1, 0x7a, 0x7b, 0x96, 0xdc, 0xe2,
9193 0x63, 0xb8, 0x59, 0x02, 0x42, 0x5c, 0xfb, 0x5d, 0x78, 0xb8, 0x9f, 0x2c,
9194 0xc7, 0x88, 0xef, 0x1d, 0x17, 0x33, 0xa2, 0x45, 0x46, 0x04, 0x0b, 0x48,
9195 0xad, 0x48, 0x05, 0xcc, 0xc6, 0xa3, 0xd5, 0x1b, 0x66, 0x9a, 0x66, 0x7a,
9196 0x84, 0x1b, 0x41, 0x31, 0x28, 0xc4, 0xc3, 0x44, 0x59, 0x59, 0x80, 0x9f,
9197 0xdb, 0x7a, 0x47, 0x30, 0xa5, 0x69, 0x19, 0xd0, 0xbf, 0x52, 0xd6, 0x86,
9198 0xd0, 0xc5, 0x8c, 0x5b, 0xf2, 0x38, 0x06, 0xd8, 0x34, 0x97, 0x2c, 0x58,
9199 0x7c, 0x04, 0x88, 0xc6, 0xfd, 0x66, 0x03, 0x46, 0xea, 0xad, 0x83, 0xeb,
9200 0x8a, 0xe5, 0xc2, 0xc5, 0x15, 0xd5, 0xe7, 0xe3, 0xc5, 0xb4, 0x29, 0x7b,
9201 0x81, 0x20, 0x0e, 0x83, 0x65, 0xa9, 0x7f, 0x9b, 0x92, 0x52, 0x80, 0xba,
9202 0xb8, 0x0e, 0x42, 0x7b, 0x0d, 0x08, 0x72, 0xd4, 0x56, 0xf6, 0x29, 0xfc,
9203 0x3b, 0x5f, 0x54, 0x21, 0xc0, 0x65, 0xc1, 0x18, 0xff, 0xb2, 0xd7, 0xec,
9204 0x44, 0x8f, 0x9e, 0x41, 0x77, 0x4d, 0xb9, 0xab, 0x0d, 0xba, 0x2c, 0xcb,
9205 0x6a, 0x9c, 0x3e, 0xd4, 0xfe, 0x8e, 0xea, 0x73, 0x87, 0x49, 0x14, 0x72,
9206 0xb2, 0x10, 0xc5, 0x2c, 0xab, 0x6e, 0x92, 0x4f, 0xb4, 0xc9, 0x0b, 0xe6,
9207 0x16, 0x15, 0x05, 0x2b, 0x27, 0x11, 0xbb, 0xb2, 0xae, 0xf3, 0x5d, 0xef,
9208 0x35, 0xe6, 0xfc, 0xf4, 0xde, 0x01, 0x09, 0x0f, 0xa2, 0x3f, 0xe7, 0x49,
9209 0xc7, 0xc9, 0x0f, 0x68, 0x17, 0xc1, 0x8f, 0x19, 0x1a, 0x93, 0x3b, 0x7a,
9210 0x47, 0x57, 0xc4, 0xef, 0xb0, 0x39, 0xe7, 0x45, 0x5a, 0xfe, 0x8a, 0xa3,
9211 0xbf, 0x01, 0xa9, 0x70, 0xf0, 0xb8, 0xe1, 0x1e, 0x83, 0xd5, 0x56, 0xcb,
9212 0x5a, 0x7e, 0x1e, 0x3a, 0xa8, 0x15, 0x94, 0xb1, 0x55, 0x67, 0xd1, 0x0b,
9213 0x7e, 0x1b, 0xa5, 0xc5, 0x8c, 0xfe, 0xcb, 0x34, 0x95, 0x66, 0xe2, 0x46,
9214 0x1d, 0x6f, 0xf2, 0x61, 0x75, 0xe5, 0x53, 0x72, 0xff, 0x28, 0xdb, 0xc7,
9215 0x5c, 0xf7, 0x9b, 0x10, 0xc3, 0x8c, 0x8e, 0xa5, 0x0b, 0xce, 0x87, 0x11,
9216 0x65, 0x3b, 0xfc, 0x2a, 0xba, 0xbf, 0xa9, 0xde, 0x5a, 0x49, 0x9b, 0xa3,
9217 0x9a, 0x21, 0xf8, 0xb1, 0x94, 0x30, 0xbf, 0x19, 0x4d, 0x7e, 0xdd, 0xd7,
9218 0x67, 0x0a, 0xaf, 0x4e, 0x83, 0xb6, 0x46, 0xa2, 0x2d, 0xde, 0x36, 0xdb,
9219 0x50, 0xd4, 0x76, 0x14, 0x0d, 0x3a, 0xdf, 0xbc, 0xd8, 0xa6, 0xa3, 0xf0,
9220 0x2e, 0x55, 0x71, 0x2d, 0x42, 0x98, 0xab, 0xe5, 0x06, 0xf2, 0x10, 0x43,
9221 0xcd, 0x4d, 0x25, 0x7b, 0xe5, 0x17, 0x6b, 0xbc, 0x4e, 0xd7, 0xca, 0x5f,
9222 0x57, 0xe9, 0x5d, 0x5d, 0xcf, 0x45, 0x78, 0xaa, 0x47, 0xae, 0x4d, 0x00,
9223 0x38, 0xf1, 0x97, 0x7a, 0x42, 0x09, 0x1c, 0xab, 0x66, 0x6e, 0xd0, 0x53,
9224 0x6a, 0x74, 0xf6, 0x7a, 0xa9, 0x3d, 0x99, 0xea, 0x84, 0x84, 0xb7, 0x84,
9225 0xe0, 0x4f, 0x3f, 0x3c, 0xbc, 0x75, 0x75, 0x29, 0x1f, 0xc0, 0x9d, 0xe3,
9226 0x2f, 0x96, 0x55, 0xc7, 0x5a, 0x21, 0x41, 0x57, 0xfd, 0x26, 0x52, 0xa2,
9227 0x5e, 0xd9, 0xfa, 0xab, 0x4a, 0x0e, 0x2f, 0x27, 0xd0, 0x8c, 0xfe, 0x08,
9228 0xa1, 0xf1, 0xf8, 0xaa, 0xcb, 0x3a, 0xab, 0x2e, 0x2d, 0xb9, 0xe4, 0x8a,
9229 0x3e, 0x2e, 0x94, 0x6c, 0xaf, 0xba, 0x6c, 0x96, 0x5d, 0x3a, 0xd1, 0x93,
9230 0x40, 0xdd, 0x25, 0x8d, 0xf6, 0x7f, 0x62, 0xd5, 0xa5, 0x5b, 0x74, 0x19,
9231 0x53, 0xc9, 0x65, 0xa0, 0xe2, 0x52, 0x28, 0xcd, 0x85, 0x00, 0x52, 0x74,
9232 0xb9, 0xb4, 0xea, 0xd2, 0x2d, 0xbb, 0x5c, 0x56, 0x77, 0x49, 0x38, 0xb3,
9233 0x4b, 0xaa, 0x2e, 0x9f, 0x56, 0x74, 0xd9, 0x56, 0x75, 0xb9, 0x7a, 0xd9,
9234 0xe5, 0xaf, 0x5b, 0x75, 0xf9, 0x2f, 0x2f, 0x1c, 0xf4, 0xf7, 0xd8, 0x13,
9235 0xca, 0x07, 0xfd, 0x41, 0x7e, 0xc5, 0x22, 0xc2, 0xda, 0xb8, 0x4b, 0x95,
9236 0x8e, 0x97, 0x21, 0xf9, 0x81, 0x2c, 0x99, 0x8e, 0x04, 0x9b, 0xee, 0xb0,
9237 0xb5, 0x37, 0xb3, 0x82, 0x84, 0xd5, 0xb2, 0xc1, 0x9d, 0x5c, 0x44, 0x19,
9238 0x86, 0x2d, 0x4a, 0xeb, 0x24, 0x89, 0x7c, 0x7c, 0x0f, 0xd9, 0x2c, 0x4f,
9239 0x0a, 0x4c, 0x37, 0xe7, 0xdb, 0x29, 0xaf, 0x8b, 0x05, 0xf6, 0xb7, 0xb9,
9240 0xef, 0x3c, 0x55, 0x09, 0xa8, 0x8d, 0xb7, 0x8c, 0x7c, 0x7b, 0xbb, 0x41,
9241 0xf2, 0x95, 0xd3, 0x1e, 0x11, 0x05, 0xb1, 0x30, 0x3d, 0x77, 0xa4, 0x3d,
9242 0x98, 0x1a, 0xd7, 0xfd, 0x36, 0x67, 0x54, 0xf3, 0x21, 0xbf, 0x50, 0xa1,
9243 0x6d, 0x0e, 0xb7, 0xba, 0x46, 0x4b, 0x23, 0x2c, 0x2a, 0x6c, 0x43, 0x94,
9244 0x82, 0xf4, 0xa2, 0xb8, 0xc0, 0x72, 0x12, 0x35, 0x2e, 0xfe, 0x0d, 0xe9,
9245 0xd4, 0x7c, 0xd2, 0x2f, 0x8e, 0x3a, 0x06, 0x47, 0x95, 0xa0, 0x59, 0xbd,
9246 0x84, 0xa8, 0x3d, 0x70, 0xf6, 0x3c, 0x68, 0x41, 0x57, 0xd3, 0x72, 0x7b,
9247 0xd7, 0x06, 0x4a, 0xe4, 0x97, 0x05, 0x02, 0x3c, 0x86, 0x82, 0x26, 0x7c,
9248 0xdc, 0x0f, 0x0c, 0xde, 0xa9, 0xa4, 0x9f, 0xd0, 0x5d, 0x94, 0x3d, 0xc1,
9249 0x1e, 0x13, 0x02, 0xd7, 0xcb, 0x1a, 0x42, 0x3a, 0x80, 0x5c, 0x41, 0x30,
9250 0xcf, 0x2e, 0xed, 0x49, 0x8d, 0x45, 0x8c, 0x0a, 0xd5, 0xe0, 0x4a, 0x3a,
9251 0xf5, 0xb6, 0xfb, 0xbb, 0x0c, 0xcb, 0xab, 0xbd, 0x13, 0x64, 0x9e, 0x5e,
9252 0x9f, 0x1d, 0x9a, 0xc0, 0x6c, 0x61, 0xf0, 0x3b, 0xef, 0xb1, 0xcd, 0x68,
9253 0x3a, 0xd6, 0xeb, 0xfb, 0xd1, 0x7b, 0xf4, 0x14, 0x61, 0x0b, 0x30, 0x9c,
9254 0x0f, 0x61, 0x18, 0xc0, 0xd8, 0x91, 0x7c, 0x1f, 0x1a, 0xae, 0xde, 0x3e,
9255 0x19, 0xc4, 0xd5, 0x87, 0xf7, 0x67, 0x7e, 0xde, 0xaa, 0x2e, 0x28, 0x55,
9256 0xb7, 0x94, 0xc9, 0xe6, 0x38, 0x1f, 0x95, 0x9b, 0xb8, 0x6a, 0xfa, 0xe0,
9257 0xeb, 0x6a, 0x36, 0xfd, 0xec, 0xa1, 0xce, 0xf4, 0x0a, 0x23, 0x39, 0xbd,
9258 0x17, 0x5f, 0x94, 0xad, 0xb7, 0x23, 0x26, 0x4b, 0x1d, 0xc8, 0x66, 0xf8,
9259 0xde, 0xeb, 0x94, 0x43, 0x95, 0xf7, 0xf0, 0x42, 0xf0, 0x7f, 0x78, 0xe8,
9260 0x51, 0xe2, 0x5b, 0x00, 0x84, 0x33, 0x76, 0x1a, 0xc3, 0x3a, 0x95, 0xf5,
9261 0xfe, 0xda, 0xb0, 0x6b, 0xac, 0x2a, 0xee, 0x31, 0x9b, 0x9b, 0xd4, 0x05,
9262 0x59, 0x8c, 0xc6, 0x8a, 0x9b, 0x2a, 0x1c, 0xc6, 0xf7, 0x63, 0xce, 0x6a,
9263 0x2a, 0x20, 0xc2, 0x62, 0x2d, 0x99, 0x43, 0xff, 0xf2, 0x7a, 0x1c, 0x9f,
9264 0xf9, 0xe1, 0xdd, 0x3e, 0x1e, 0x9d, 0x0c, 0x3e, 0x6e, 0xef, 0xbc, 0xf8,
9265 0xf8, 0xf5, 0xf1, 0xdb, 0x8f, 0x83, 0x37, 0x47, 0xa8, 0xdb, 0x3d, 0x51,
9266 0xf8, 0xd7, 0xc7, 0x66, 0xe5, 0x9b, 0x23, 0x74, 0x75, 0xa4, 0x9e, 0xed,
9267 0x96, 0x5d, 0x89, 0xa6, 0xca, 0x63, 0x9c, 0x3a, 0xee, 0xa5, 0xbf, 0x89,
9268 0x44, 0x73, 0x1f, 0x30, 0x78, 0x7f, 0xf1, 0xdb, 0x18, 0x24, 0xf0, 0x10,
9269 0x02, 0xe3, 0x79, 0x58, 0xee, 0xc3, 0x95, 0xa6, 0x30, 0xed, 0x90, 0xab,
9270 0xce, 0x96, 0x12, 0xc7, 0x5c, 0xfc, 0x5b, 0x11, 0xc7, 0x3c, 0xa0, 0x6e,
9271 0xc0, 0xfe, 0x8e, 0xf4, 0x21, 0x9b, 0x3a, 0xa8, 0x6f, 0xd5, 0x28, 0x43,
9272 0x97, 0xfd, 0x56, 0x54, 0xa1, 0xc1, 0xcb, 0x19, 0x3a, 0x10, 0x7e, 0x2b,
9273 0x82, 0x28, 0xe1, 0x1f, 0x47, 0x94, 0x9b, 0xed, 0x65, 0xb4, 0xb8, 0xd9,
9274 0xfe, 0xcd, 0x28, 0x01, 0x43, 0xff, 0x5a, 0x14, 0x58, 0xf6, 0xa6, 0x1f,
9275 0xba, 0x75, 0x9f, 0xca, 0x61, 0xad, 0xd1, 0x80, 0xc7, 0x08, 0x0e, 0x5c,
9276 0xbe, 0x03, 0x17, 0x5f, 0xab, 0xfa, 0xe4, 0x63, 0xdc, 0x51, 0xb8, 0x97,
9277 0xf7, 0x80, 0x68, 0x6d, 0xf2, 0xc0, 0x0d, 0x8d, 0x14, 0x8b, 0x74, 0x30,
9278 0xb8, 0x38, 0xed, 0x69, 0x3f, 0x3f, 0xee, 0x88, 0xc1, 0xfd, 0x4f, 0xb8,
9279 0x7c, 0x4c, 0x5b, 0x03, 0xbd, 0x6b, 0x51, 0xee, 0x29, 0x61, 0x3f, 0xd0,
9280 0x1f, 0x84, 0xa3, 0x4b, 0x0a, 0xee, 0x4b, 0x50, 0x57, 0xc6, 0x1d, 0x51,
9281 0x26, 0x53, 0x3f, 0x29, 0x76, 0xc9, 0x9b, 0x93, 0x71, 0x4b, 0xaa, 0x89,
9282 0xdb, 0x16, 0x67, 0x68, 0xa2, 0xc0, 0x74, 0x86, 0x7a, 0x7d, 0x10, 0xa4,
9283 0x9f, 0xf7, 0xd4, 0x36, 0x63, 0x35, 0xc7, 0xd9, 0x41, 0xd4, 0xe9, 0x7d,
9284 0x88, 0x0e, 0x3a, 0x1e, 0x89, 0xce, 0xb1, 0xd4, 0xae, 0xac, 0x92, 0x19,
9285 0x45, 0x6e, 0x0b, 0x42, 0x24, 0xc6, 0x66, 0xc1, 0xa5, 0x6b, 0xf0, 0x5e,
9286 0x63, 0xdf, 0x1c, 0xeb, 0xb8, 0x53, 0x73, 0xa9, 0xb8, 0xf2, 0x92, 0x50,
9287 0xb9, 0x6b, 0x10, 0x23, 0x22, 0xc1, 0x9a, 0x61, 0xfb, 0x5e, 0xd2, 0x98,
9288 0x30, 0x18, 0x69, 0xc2, 0xd3, 0x6c, 0x96, 0x67, 0x94, 0x25, 0x2f, 0x75,
9289 0x06, 0x98, 0x28, 0x3f, 0x0a, 0x14, 0xbe, 0x70, 0xbe, 0x74, 0xc9, 0x23,
9290 0xce, 0xf3, 0xb2, 0x4c, 0x87, 0xa0, 0x8f, 0x5c, 0x89, 0x2e, 0x50, 0x26,
9291 0x5c, 0x4c, 0xc4, 0x58, 0x9b, 0x48, 0x4b, 0xa7, 0x8f, 0x26, 0xe6, 0x1a,
9292 0x37, 0x49, 0x44, 0x6f, 0x4a, 0x81, 0x58, 0x0e, 0x9a, 0x4a, 0xa8, 0x18,
9293 0xe6, 0xa7, 0xc0, 0xda, 0x37, 0x29, 0x3e, 0x42, 0x6b, 0x43, 0xe2, 0x68,
9294 0x96, 0x33, 0xe9, 0xc9, 0x9e, 0x6f, 0x2a, 0x14, 0x53, 0xec, 0x10, 0x00,
9295 0xbb, 0x7f, 0x80, 0xd5, 0xc0, 0x25, 0x76, 0x8c, 0xa4, 0x1a, 0x71, 0xaa,
9296 0x82, 0xb4, 0xf5, 0xe7, 0x45, 0x82, 0x89, 0xfc, 0x37, 0x89, 0x2c, 0xab,
9297 0x38, 0x8b, 0x5a, 0x6b, 0x53, 0xb1, 0xc4, 0x73, 0x96, 0x22, 0xea, 0x20,
9298 0x61, 0x39, 0x50, 0x87, 0x17, 0x95, 0x0a, 0xf4, 0xc4, 0x08, 0x85, 0x81,
9299 0x96, 0x18, 0x5b, 0x0c, 0xe5, 0xfe, 0xbf, 0x83, 0x3e, 0x63, 0xf8, 0xf9,
9300 0x60, 0xfe, 0x4b, 0x5d, 0xd7, 0xb8, 0x19, 0x1c, 0xe9, 0xe2, 0x48, 0xe1,
9301 0x27, 0x03, 0x26, 0xb4, 0xc3, 0x07, 0xd4, 0x6b, 0xc8, 0xbd, 0x4e, 0x19,
9302 0x61, 0xe0, 0x80, 0x49, 0x7a, 0x87, 0x55, 0xf7, 0x7e, 0xf3, 0xa9, 0x66,
9303 0x0d, 0x7e, 0x5e, 0xa8, 0x47, 0xd9, 0x90, 0xb8, 0xe2, 0x6e, 0xc0, 0xc8,
9304 0x8a, 0x6e, 0x76, 0xf6, 0x07, 0x4f, 0xa7, 0xb6, 0xb8, 0x02, 0x35, 0x24,
9305 0x01, 0x0b, 0x24, 0x80, 0x0c, 0x63, 0x61, 0x04, 0x08, 0x73, 0x83, 0xb3,
9306 0x4c, 0x62, 0x9c, 0x81, 0xaf, 0x04, 0x4f, 0xd2, 0x51, 0x3b, 0x88, 0xc0,
9307 0x67, 0xed, 0x38, 0x0c, 0xa6, 0xe6, 0xe0, 0x26, 0x8d, 0xcd, 0x82, 0xda,
9308 0xb7, 0x65, 0x7a, 0x48, 0xbb, 0xf9, 0x78, 0x69, 0xf2, 0x24, 0x77, 0x44,
9309 0x09, 0x40, 0x87, 0xbd, 0x1b, 0x0c, 0x7c, 0x30, 0x80, 0xac, 0x48, 0x46,
9310 0xf9, 0x55, 0x96, 0xfe, 0x4c, 0xfd, 0x43, 0xd0, 0xe0, 0x6c, 0xd6, 0xa7,
9311 0xd6, 0xf0, 0x18, 0x22, 0x27, 0xad, 0x1d, 0x4b, 0x1b, 0x7c, 0x29, 0xc9,
9312 0x7d, 0xd0, 0xf0, 0xec, 0xc2, 0x1a, 0x2f, 0x84, 0xcd, 0x11, 0x42, 0x94,
9313 0x94, 0x68, 0x43, 0x75, 0x3f, 0x89, 0x69, 0x30, 0x27, 0xc5, 0xaf, 0xfc,
9314 0x60, 0x6f, 0x75, 0x74, 0x59, 0xa5, 0xf3, 0xc0, 0xbf, 0x01, 0x78, 0x42,
9315 0xb8, 0xb5, 0x1b, 0xb5, 0xb6, 0x40, 0xd6, 0x0e, 0x77, 0x77, 0x53, 0x70,
9316 0x77, 0x30, 0xb2, 0x02, 0x87, 0x94, 0xd2, 0x98, 0xcf, 0x63, 0xb7, 0x8d,
9317 0x5b, 0x6b, 0xe3, 0x36, 0xb5, 0xd6, 0xe2, 0x50, 0x67, 0xb6, 0x7a, 0x13,
9318 0x37, 0x93, 0xf3, 0xf3, 0x70, 0x9f, 0xb6, 0x23, 0x4c, 0x71, 0xd1, 0xce,
9319 0x1c, 0xda, 0xd1, 0x1b, 0x81, 0x3f, 0x18, 0xe9, 0x35, 0xe1, 0xfe, 0x67,
9320 0x38, 0x29, 0xbb, 0xa7, 0x78, 0xc7, 0x51, 0x91, 0x9f, 0xd7, 0x24, 0x2b,
9321 0x56, 0x53, 0x77, 0x98, 0x28, 0xfa, 0x11, 0xf1, 0x14, 0x4c, 0x03, 0x07,
9322 0xe8, 0x63, 0x57, 0x2e, 0xc4, 0x9e, 0xd1, 0xb4, 0x16, 0xf8, 0x1a, 0xd1,
9323 0x6c, 0x94, 0x2b, 0x9a, 0xac, 0x25, 0x80, 0x1d, 0xee, 0x14, 0xb9, 0xd0,
9324 0x42, 0xf2, 0x5f, 0x62, 0xad, 0xcf, 0xab, 0x9f, 0x84, 0xdc, 0xdf, 0xd3,
9325 0x63, 0x2d, 0x69, 0x33, 0x40, 0xca, 0xc4, 0x22, 0xcb, 0x10, 0xc0, 0x58,
9326 0x40, 0x54, 0x0c, 0xaf, 0x74, 0x51, 0x7c, 0xb0, 0xe0, 0xd6, 0xde, 0xeb,
9327 0x2c, 0x22, 0x2b, 0xbf, 0x57, 0x2e, 0x0e, 0xd0, 0x62, 0xf9, 0xfe, 0xdf,
9328 0x81, 0xb7, 0x71, 0x69, 0x66, 0x8e, 0x47, 0x86, 0x2f, 0xe3, 0x4d, 0x7d,
9329 0xd2, 0x2d, 0x08, 0x01, 0xe9, 0x10, 0x21, 0x8c, 0x8f, 0x2c, 0xee, 0x85,
9330 0x4e, 0xbc, 0x4d, 0x84, 0xad, 0x32, 0x29, 0x49, 0xaa, 0x59, 0xd3, 0xa4,
9331 0xb2, 0x71, 0x5d, 0xa4, 0xc5, 0x46, 0xa0, 0x3a, 0x94, 0x72, 0xf4, 0x10,
9332 0x81, 0x10, 0x89, 0x46, 0xa7, 0xe8, 0x7f, 0x99, 0xe5, 0xf8, 0xb7, 0x70,
9333 0x55, 0xd4, 0x62, 0xa2, 0x4f, 0x83, 0x07, 0x11, 0x38, 0x90, 0x47, 0x04,
9334 0xa3, 0xb7, 0xe1, 0x90, 0x38, 0x74, 0x4e, 0xf6, 0x2f, 0x1e, 0x3c, 0xda,
9335 0x69, 0xc3, 0xe3, 0x6d, 0x72, 0x90, 0xd6, 0x05, 0xaf, 0x4a, 0x5e, 0x72,
9336 0x71, 0xc1, 0x9e, 0x0b, 0xef, 0x5c, 0xac, 0xdb, 0x25, 0xa9, 0x6b, 0xe4,
9337 0x2c, 0x16, 0xd6, 0xe1, 0xfd, 0x2d, 0x92, 0x56, 0x3b, 0x9e, 0x1a, 0x6f,
9338 0x16, 0x1c, 0x2d, 0xc3, 0xa4, 0xba, 0x45, 0xb5, 0x94, 0x16, 0x48, 0xfb,
9339 0x6c, 0x38, 0xe2, 0x48, 0xd6, 0x0c, 0xf4, 0x99, 0x50, 0xc9, 0x23, 0xee,
9340 0xe9, 0x54, 0x25, 0x1b, 0x77, 0xea, 0x35, 0xee, 0x4c, 0x4d, 0xb5, 0xf4,
9341 0xc4, 0x00, 0xab, 0xb1, 0xc1, 0x77, 0xba, 0x37, 0xc2, 0x50, 0x68, 0xa3,
9342 0x95, 0xbe, 0x35, 0x20, 0x14, 0x2d, 0x1c, 0x92, 0x0b, 0xb7, 0x9f, 0xc4,
9343 0x20, 0xf8, 0x80, 0x5f, 0x29, 0xef, 0xaa, 0xeb, 0xf3, 0x4a, 0xd2, 0x6c,
9344 0x9e, 0x39, 0xef, 0x3a, 0xc2, 0x2e, 0xf3, 0x80, 0xc0, 0x19, 0x32, 0xd6,
9345 0xe2, 0x5f, 0xf1, 0x7c, 0x74, 0xa7, 0xd4, 0x9e, 0xe5, 0x65, 0x3c, 0x62,
9346 0x56, 0x5f, 0x28, 0xb1, 0xb4, 0x4d, 0x0c, 0xb3, 0x63, 0x58, 0xbe, 0x8d,
9347 0xe7, 0xf0, 0x59, 0xcc, 0xc5, 0xf4, 0xb3, 0x78, 0x9c, 0x44, 0xa1, 0x5c,
9348 0x69, 0x07, 0xfa, 0x8a, 0x27, 0xd6, 0x48, 0xa3, 0xa5, 0xd7, 0xf6, 0x3b,
9349 0xa0, 0x8b, 0x13, 0x62, 0xea, 0x05, 0x2f, 0x51, 0xa8, 0x0a, 0x48, 0x80,
9350 0x78, 0xbb, 0x35, 0x69, 0x56, 0x32, 0x54, 0x5c, 0xf5, 0x43, 0x9a, 0xef,
9351 0x65, 0x02, 0xe5, 0x15, 0x3e, 0x2a, 0xcc, 0x4b, 0xe6, 0x0f, 0xb4, 0x1c,
9352 0x69, 0xce, 0x5f, 0xaa, 0x05, 0x25, 0x0f, 0xb1, 0xee, 0x3a, 0xc6, 0xe3,
9353 0xde, 0xf3, 0xc0, 0x4b, 0x33, 0x12, 0xbd, 0x41, 0x3a, 0x30, 0xcb, 0xf8,
9354 0x3d, 0x79, 0x9d, 0xde, 0x03, 0x79, 0x8d, 0x4b, 0x39, 0x53, 0x56, 0xe6,
9355 0xd7, 0x4a, 0x0a, 0x74, 0x85, 0x95, 0x64, 0x26, 0x04, 0x72, 0xbb, 0xd6,
9356 0x07, 0x88, 0xeb, 0x30, 0x38, 0xbe, 0xd8, 0x88, 0x2e, 0x1a, 0x50, 0xcf,
9357 0xd2, 0x0c, 0xab, 0x7e, 0x16, 0xf2, 0x19, 0x2b, 0x6d, 0x27, 0xdb, 0x51,
9358 0x81, 0xb5, 0xa5, 0xb1, 0x49, 0xaa, 0xa6, 0xb4, 0xd4, 0x5f, 0xfd, 0x80,
9359 0x68, 0xbc, 0xcb, 0x11, 0x61, 0x8b, 0x33, 0x72, 0xab, 0x38, 0x06, 0x5c,
9360 0xe9, 0x84, 0x81, 0x21, 0x04, 0x4e, 0x1a, 0x49, 0x97, 0x46, 0x8a, 0xd8,
9361 0x2b, 0xbe, 0xf1, 0xd4, 0x2b, 0xb0, 0x24, 0x42, 0x68, 0x35, 0xbf, 0x83,
9362 0xef, 0x4e, 0xef, 0x42, 0x28, 0x95, 0x78, 0xf2, 0xf1, 0x29, 0x5a, 0x7b,
9363 0x09, 0x30, 0xfc, 0xb3, 0x24, 0xd4, 0xda, 0xe3, 0x9e, 0x14, 0x29, 0xd9,
9364 0x30, 0xe3, 0x7e, 0xb3, 0xed, 0xbd, 0x93, 0x51, 0x20, 0x93, 0x4b, 0x09,
9365 0xfe, 0x82, 0xf7, 0x57, 0x4b, 0x7b, 0x4a, 0xd6, 0xb1, 0xc1, 0xb2, 0xc6,
9366 0x56, 0x12, 0xd4, 0xc1, 0x9e, 0x6c, 0xaa, 0x51, 0x3e, 0xbf, 0x47, 0x62,
9367 0xc0, 0x65, 0x65, 0x79, 0xbd, 0x03, 0xe2, 0x72, 0xa7, 0xff, 0x82, 0xd1,
9368 0xdc, 0xae, 0x41, 0x61, 0x0a, 0xb4, 0xdf, 0xe5, 0x4c, 0x76, 0x6e, 0x11,
9369 0xdd, 0x1c, 0x4f, 0xac, 0xa0, 0xfe, 0xc6, 0xaa, 0x7c, 0xcd, 0x8c, 0x47,
9370 0x8b, 0x0f, 0xbf, 0x47, 0xe5, 0x2a, 0x9d, 0x16, 0x9a, 0xa6, 0xf5, 0x5f,
9371 0x91, 0xb7, 0xb9, 0xb1, 0xd9, 0xa1, 0x78, 0x14, 0x3c, 0x6e, 0x46, 0x66,
9372 0x8e, 0x90, 0xa5, 0x37, 0x70, 0xa4, 0x6c, 0xcc, 0x19, 0xd8, 0xc3, 0x14,
9373 0xa8, 0x59, 0xdc, 0x1b, 0x3f, 0x44, 0x5d, 0xe8, 0xe0, 0x3d, 0x98, 0x2d,
9374 0xf2, 0xda, 0x2b, 0x70, 0xe0, 0x54, 0x91, 0x7e, 0xf4, 0x57, 0x7a, 0xa8,
9375 0xdc, 0xcd, 0xd8, 0x2e, 0x94, 0x24, 0xfe, 0xd5, 0xc9, 0xeb, 0xf3, 0xf7,
9376 0x27, 0x75, 0xe0, 0xab, 0x8a, 0x5b, 0x3b, 0x50, 0x12, 0x74, 0x73, 0x76,
9377 0xdc, 0xa0, 0x4a, 0xc0, 0x44, 0x25, 0x83, 0x3b, 0x45, 0xcf, 0x51, 0x74,
9378 0xf1, 0xed, 0x2b, 0x33, 0x3b, 0xd4, 0x12, 0x33, 0x9a, 0x95, 0x0e, 0xda,
9379 0xe5, 0x55, 0x6e, 0x0c, 0x47, 0x19, 0x23, 0x1b, 0x7d, 0x14, 0x74, 0x9c,
9380 0xe0, 0xad, 0xf3, 0xa3, 0xd4, 0x73, 0x2e, 0x18, 0x50, 0x28, 0x4b, 0x6a,
9381 0x4e, 0x5f, 0x96, 0x08, 0x4d, 0x69, 0x06, 0xf5, 0x6c, 0x1e, 0xd2, 0xfe,
9382 0x08, 0x45, 0x5f, 0x1c, 0x09, 0xd8, 0x04, 0x0a, 0xfb, 0x42, 0x79, 0x1b,
9383 0x97, 0xe9, 0x8c, 0x4a, 0xc5, 0x46, 0xe4, 0x3f, 0x5f, 0x73, 0xe8, 0xf9,
9384 0xe1, 0xc4, 0x0a, 0xd7, 0x58, 0x4d, 0x4f, 0x99, 0x0a, 0xe3, 0x00, 0x2a,
9385 0x23, 0x7a, 0xf2, 0x70, 0x1f, 0x99, 0x0a, 0xca, 0x2e, 0xf7, 0xf2, 0x92,
9386 0xf4, 0x14, 0x6d, 0xe6, 0x45, 0x2d, 0xbc, 0x95, 0xce, 0xfa, 0xb8, 0xf5,
9387 0x72, 0xa3, 0xe5, 0x4d, 0x6a, 0x4d, 0x19, 0xe5, 0x8d, 0xd6, 0xfe, 0x6b,
9388 0xad, 0x6e, 0xd5, 0x58, 0x9b, 0x8c, 0x8e, 0x00, 0x8c, 0xf8, 0x79, 0x2a,
9389 0xb4, 0x54, 0x75, 0x8a, 0x83, 0x10, 0xef, 0x34, 0x77, 0xf5, 0xdb, 0x3a,
9390 0xbb, 0x85, 0xeb, 0x60, 0x94, 0x44, 0xfd, 0x47, 0x21, 0xf1, 0x94, 0x55,
9391 0x3e, 0x47, 0xdd, 0x8e, 0x81, 0x2d, 0xb1, 0x9d, 0x23, 0xa5, 0x39, 0xe3,
9392 0xc1, 0x66, 0x81, 0x12, 0xa3, 0x60, 0x37, 0xf8, 0x34, 0x5b, 0x60, 0x8f,
9393 0x74, 0x74, 0x83, 0x0a, 0x32, 0x9b, 0x12, 0x02, 0x87, 0x01, 0xa1, 0x6a,
9394 0x57, 0xbb, 0x41, 0x22, 0xec, 0x4a, 0x13, 0xb0, 0x6d, 0xd2, 0xf2, 0x53,
9395 0xb4, 0xfe, 0x9f, 0xc0, 0x6d, 0x84, 0x33, 0x7e, 0x9b, 0x96, 0xdc, 0x61,
9396 0xce, 0x01, 0xb1, 0x97, 0x3a, 0x0f, 0x9d, 0x27, 0x79, 0x4f, 0xa8, 0x2b,
9397 0x70, 0x10, 0x17, 0x41, 0x29, 0xc1, 0xe2, 0x1d, 0xfd, 0xa7, 0x85, 0xd3,
9398 0xce, 0xd2, 0x88, 0x79, 0xca, 0x61, 0x6a, 0x21, 0xb3, 0x84, 0xaf, 0x71,
9399 0x97, 0x97, 0xf7, 0x59, 0x85, 0xe2, 0x92, 0x25, 0xfb, 0x28, 0x2f, 0x48,
9400 0xc7, 0x40, 0x26, 0xb5, 0x9b, 0xb6, 0x24, 0x0c, 0xda, 0x97, 0xfb, 0x2f,
9401 0x81, 0xd2, 0x3e, 0x96, 0x66, 0xc6, 0xf1, 0x78, 0xbc, 0x45, 0x5a, 0x5f,
9402 0x53, 0x86, 0x5b, 0xce, 0x18, 0x79, 0x82, 0x5d, 0x2f, 0x43, 0x11, 0x27,
9403 0x10, 0xe6, 0x4d, 0x82, 0x28, 0x49, 0xbe, 0xae, 0x30, 0x70, 0x86, 0x79,
9404 0x22, 0x66, 0x85, 0x5f, 0x75, 0x42, 0x5b, 0x8e, 0x7a, 0x6f, 0x4b, 0x1c,
9405 0x40, 0xd5, 0xe4, 0x7e, 0xf4, 0x21, 0xa3, 0x3a, 0x27, 0xa4, 0xf8, 0x6b,
9406 0x44, 0x6c, 0x62, 0x45, 0x26, 0x83, 0x65, 0x83, 0x65, 0x86, 0xb3, 0x2f,
9407 0x20, 0xda, 0xfe, 0x5e, 0x17, 0x69, 0x22, 0xf6, 0x1b, 0xf9, 0x60, 0x24,
9408 0x0b, 0x0c, 0x06, 0xaa, 0x4a, 0xc3, 0xe8, 0x35, 0xec, 0xc4, 0x40, 0x11,
9409 0x0b, 0xfb, 0xa5, 0xe0, 0x75, 0x68, 0x6c, 0x4c, 0xf9, 0x4b, 0xa6, 0x53,
9410 0x06, 0x90, 0xa3, 0xce, 0xd5, 0x68, 0x36, 0x32, 0x88, 0x1f, 0x95, 0x0b,
9411 0xb9, 0xe6, 0xb4, 0x77, 0x56, 0x12, 0x16, 0x61, 0x3f, 0x7a, 0x6d, 0x30,
9412 0x7e, 0x05, 0x3c, 0x40, 0xd3, 0x1a, 0x10, 0x34, 0xca, 0x7a, 0xd7, 0x98,
9413 0x36, 0xfc, 0x4a, 0xf8, 0x4e, 0x9e, 0xbb, 0x1f, 0xdf, 0xd1, 0xcb, 0x45,
9414 0x88, 0x91, 0xd0, 0xe8, 0x05, 0x67, 0xed, 0x24, 0x0c, 0xdc, 0x42, 0xd6,
9415 0x13, 0x5f, 0x69, 0x36, 0x4a, 0x99, 0x54, 0xa5, 0xd5, 0x4a, 0x62, 0x92,
9416 0xac, 0xb4, 0x6a, 0xca, 0x2a, 0xed, 0xc3, 0x21, 0x9d, 0xc6, 0x0c, 0x2c,
9417 0xc6, 0x97, 0x31, 0xcf, 0x67, 0x63, 0x56, 0xce, 0x0f, 0x69, 0x36, 0xc9,
9418 0x1d, 0x29, 0x95, 0xc0, 0x20, 0x5f, 0x98, 0x9a, 0x9b, 0xcf, 0x5a, 0xe0,
9419 0x64, 0x30, 0x2c, 0x80, 0x7d, 0xd1, 0x19, 0x68, 0x88, 0x6e, 0x67, 0x8f,
9420 0x47, 0xc9, 0xc0, 0x70, 0xd2, 0x73, 0x73, 0xfa, 0xf1, 0x2a, 0xa9, 0xf0,
9421 0xdb, 0xf5, 0xdd, 0x0d, 0x24, 0x47, 0x78, 0xb8, 0x39, 0x22, 0x39, 0x12,
9422 0x88, 0x5c, 0x7d, 0x1a, 0x06, 0x54, 0x0e, 0x54, 0x2c, 0x1b, 0x57, 0xc3,
9423 0x6e, 0xa8, 0x9e, 0x42, 0x30, 0xba, 0xbe, 0x2a, 0xe6, 0xd1, 0x15, 0x68,
9424 0xe5, 0xf3, 0x07, 0xa8, 0xca, 0x57, 0x7a, 0x34, 0xe5, 0x5b, 0x4f, 0x5f,
9425 0xb9, 0xb4, 0x14, 0xb2, 0x01, 0xdd, 0xc2, 0xc3, 0x39, 0xe7, 0x83, 0x90,
9426 0x53, 0x8f, 0x78, 0x33, 0x9a, 0x35, 0xc1, 0x85, 0xf8, 0xf4, 0x4d, 0x78,
9427 0xb8, 0xda, 0x92, 0xf0, 0x08, 0x3a, 0x2c, 0xed, 0xbf, 0x31, 0x0c, 0x35,
9428 0x8b, 0x79, 0x87, 0x5d, 0x81, 0xe4, 0xd3, 0x87, 0xf8, 0x75, 0x7e, 0xd7,
9429 0xb3, 0x7c, 0x8c, 0x80, 0x4a, 0xc9, 0x83, 0xb4, 0xc0, 0x0b, 0x95, 0x16,
9430 0x82, 0x43, 0x55, 0xba, 0xef, 0x45, 0x83, 0xc0, 0xce, 0xd7, 0x95, 0xf6,
9431 0x0f, 0xd1, 0xa6, 0x93, 0x40, 0x2a, 0xc1, 0x70, 0x78, 0xba, 0xd9, 0x7d,
9432 0x85, 0x2c, 0xca, 0x47, 0x95, 0xf3, 0x06, 0x78, 0x41, 0x0b, 0xc3, 0xd2,
9433 0xd9, 0x15, 0x78, 0x33, 0x44, 0x25, 0x22, 0x07, 0xd0, 0x43, 0x6f, 0x86,
9434 0x17, 0x7a, 0xab, 0x0c, 0x1f, 0xda, 0x8e, 0x9f, 0xce, 0x12, 0xf3, 0xe2,
9435 0x84, 0x87, 0xab, 0x2f, 0xb0, 0xae, 0x30, 0xcd, 0x21, 0xb4, 0xc0, 0xd2,
9436 0x0e, 0xdc, 0x57, 0xc4, 0x75, 0xef, 0xe8, 0x0a, 0x9b, 0x0b, 0x5b, 0x17,
9437 0x58, 0x9e, 0xe1, 0x51, 0x61, 0x9a, 0xc1, 0xe6, 0x5b, 0x14, 0xa3, 0xe4,
9438 0x23, 0xcd, 0x8d, 0xfb, 0xf3, 0x7c, 0x5c, 0x4e, 0x90, 0xa9, 0x40, 0xa8,
9439 0xde, 0xcf, 0x50, 0xc7, 0xb6, 0x12, 0x58, 0xba, 0x7a, 0xc6, 0x02, 0x29,
9440 0x0a, 0x76, 0x00, 0x7d, 0xcf, 0x26, 0x75, 0x0b, 0xdb, 0xdb, 0xe7, 0x71,
9441 0x27, 0x50, 0xce, 0x8f, 0x9a, 0xe7, 0x30, 0x6f, 0xed, 0x5d, 0x4e, 0x07,
9442 0xb4, 0x33, 0x47, 0xbc, 0xac, 0x85, 0x20, 0x41, 0xa7, 0xeb, 0xec, 0x13,
9443 0xc2, 0x07, 0x19, 0xc5, 0xec, 0x63, 0xe6, 0x87, 0x2b, 0x9d, 0x97, 0xe3,
9444 0xab, 0x75, 0xb5, 0xf9, 0x95, 0x04, 0xbe, 0xcb, 0x80, 0x63, 0xd4, 0x44,
9445 0x60, 0x40, 0xdd, 0xaa, 0x6b, 0x5d, 0x1f, 0x19, 0x7b, 0x4e, 0x76, 0xa4,
9446 0x37, 0xbb, 0x47, 0x8b, 0x70, 0xbe, 0x32, 0x2c, 0xc1, 0x6b, 0x88, 0x67,
9447 0x8e, 0x1c, 0x5f, 0xc2, 0x86, 0x2b, 0xcb, 0xf1, 0x51, 0x9b, 0xcc, 0x45,
9448 0x25, 0x07, 0x0f, 0x33, 0x12, 0xe2, 0xf0, 0xdc, 0xdf, 0x5f, 0x84, 0x63,
9449 0x48, 0x54, 0x1d, 0xd1, 0xb7, 0x56, 0x2a, 0xa9, 0x7e, 0x47, 0x35, 0xce,
9450 0xc3, 0x32, 0x9f, 0x2e, 0xd0, 0x61, 0x13, 0x57, 0xd7, 0xbc, 0x42, 0x13,
9451 0x9d, 0x67, 0xeb, 0x7a, 0x66, 0x95, 0xaf, 0xe8, 0x7b, 0x2b, 0x0a, 0x97,
9452 0x51, 0x3d, 0x2c, 0xb1, 0xac, 0x70, 0x78, 0xfb, 0xb2, 0xca, 0xd5, 0x76,
9453 0x8a, 0xac, 0x87, 0xd8, 0x45, 0x29, 0x02, 0x8c, 0xd7, 0x7e, 0x86, 0xc8,
9454 0x53, 0x1b, 0x67, 0xc8, 0x38, 0x41, 0xbd, 0x9f, 0xb9, 0x83, 0x4a, 0x29,
9455 0xcc, 0x69, 0x14, 0x3d, 0xb4, 0x37, 0x5b, 0x19, 0xb7, 0x98, 0x3d, 0xc0,
9456 0xb0, 0x70, 0x81, 0x7d, 0x2b, 0xc6, 0x34, 0x36, 0x6f, 0xe5, 0x89, 0x3a,
9457 0x61, 0xc0, 0x16, 0xca, 0xb7, 0xcd, 0xa0, 0xb6, 0xb1, 0x97, 0xcd, 0xc4,
9458 0xdd, 0xd3, 0xee, 0x64, 0x2c, 0x69, 0x51, 0x81, 0xc7, 0x7f, 0xcc, 0xcc,
9459 0x5a, 0x78, 0xfd, 0xbe, 0x71, 0x9f, 0x90, 0xa7, 0xeb, 0xc4, 0x6e, 0xc8,
9460 0x0b, 0x81, 0x2e, 0x1b, 0x9f, 0x37, 0x54, 0x66, 0xae, 0x24, 0x73, 0xd1,
9461 0x9f, 0x30, 0x75, 0xe4, 0x9a, 0xe7, 0xb1, 0x10, 0x57, 0x05, 0x6b, 0x8f,
9462 0x9d, 0x57, 0x27, 0x67, 0x27, 0x44, 0xcf, 0x4e, 0xa0, 0x2b, 0xe4, 0x24,
9463 0xcf, 0xcd, 0x38, 0xd6, 0x4f, 0xf1, 0x5d, 0xd7, 0xf6, 0x68, 0x73, 0xbd,
9464 0x6e, 0xf8, 0x66, 0xa0, 0x8b, 0x2e, 0x41, 0x0c, 0x71, 0x72, 0x8b, 0x0c,
9465 0x63, 0x51, 0x8b, 0xf7, 0x94, 0x32, 0x64, 0xa8, 0x24, 0x87, 0xea, 0x03,
9466 0xd1, 0x39, 0xa3, 0x26, 0x11, 0x35, 0x37, 0x19, 0x27, 0x85, 0x47, 0x64,
9467 0xb0, 0x70, 0xf8, 0x91, 0x5c, 0xb6, 0xc1, 0xed, 0x33, 0x31, 0xc7, 0x43,
9468 0xd4, 0x72, 0xb2, 0x32, 0xb8, 0x7d, 0x2c, 0xbb, 0xfb, 0xf5, 0x72, 0x58,
9469 0xbd, 0x2b, 0x30, 0x80, 0x9a, 0x36, 0x91, 0x57, 0x41, 0x53, 0xf6, 0x9b,
9470 0x0d, 0xaa, 0x93, 0xab, 0x71, 0x4f, 0x98, 0xef, 0x29, 0xd5, 0x04, 0x2e,
9471 0x85, 0xb0, 0x86, 0x20, 0x2d, 0xaf, 0x57, 0x0c, 0xd5, 0xe8, 0x04, 0x1c,
9472 0xba, 0x17, 0x5d, 0x1e, 0x19, 0xe4, 0xe0, 0x21, 0xfd, 0x13, 0x44, 0xc1,
9473 0x20, 0x4b, 0x8f, 0xec, 0x86, 0xd7, 0xa7, 0x67, 0x27, 0x1b, 0xd1, 0x7b,
9474 0xc9, 0x7e, 0x41, 0xf3, 0xea, 0xbe, 0xc2, 0xd6, 0xbb, 0x38, 0xc0, 0x7a,
9475 0xda, 0x07, 0x15, 0x8a, 0xd1, 0x10, 0xd0, 0x56, 0x19, 0xe7, 0xa3, 0x60,
9476 0x2e, 0xd1, 0x86, 0xe4, 0xcc, 0x70, 0x10, 0x63, 0x73, 0xbb, 0xbf, 0xdd,
9477 0x75, 0xdd, 0x4a, 0xb6, 0xe8, 0x88, 0xb3, 0x75, 0xb4, 0x6d, 0x37, 0x3e,
9478 0xba, 0xe9, 0xc4, 0x7c, 0x8f, 0x0f, 0x2e, 0xfd, 0xb8, 0x1f, 0xc5, 0x0e,
9479 0xad, 0x27, 0xe1, 0x36, 0xbe, 0xf7, 0x6d, 0xc4, 0xad, 0xde, 0xde, 0xcb,
9480 0x97, 0x35, 0x2d, 0xb0, 0x74, 0x7a, 0x9e, 0xef, 0x6f, 0x6d, 0xd1, 0xbb,
9481 0x79, 0x20, 0x93, 0xf0, 0x45, 0xef, 0x25, 0xdd, 0x58, 0xbf, 0xad, 0x4c,
9482 0x60, 0xed, 0xc7, 0xed, 0xf7, 0xf5, 0xf0, 0x9b, 0xc0, 0xe3, 0xe8, 0x50,
9483 0x6d, 0xbd, 0xeb, 0x25, 0x3e, 0x2e, 0x70, 0x17, 0x5d, 0xcc, 0x74, 0xcc,
9484 0x27, 0x13, 0xf4, 0xc1, 0xe3, 0x95, 0x0a, 0xe2, 0x7e, 0x1b, 0x17, 0x63,
9485 0xff, 0x75, 0xb7, 0xba, 0xbd, 0xed, 0xb6, 0xd7, 0xa5, 0x84, 0x23, 0x2a,
9486 0xf3, 0xc0, 0xf5, 0x44, 0x5f, 0xd5, 0xfa, 0x7f, 0x6e, 0x30, 0x02, 0x4a,
9487 0x73, 0xa0, 0x6d, 0x98, 0xd1, 0xf6, 0xcb, 0x97, 0x5d, 0x9c, 0xd9, 0xfe,
9488 0xcb, 0x97, 0xad, 0x10, 0x9e, 0xce, 0x63, 0x6e, 0x73, 0xeb, 0xdb, 0xc6,
9489 0xdb, 0x2d, 0xd3, 0x94, 0xf0, 0x98, 0x28, 0xfc, 0x1c, 0xfc, 0x26, 0xfa,
9490 0x3c, 0x7a, 0x77, 0x7e, 0x79, 0xe2, 0xb8, 0x7d, 0x69, 0x63, 0x73, 0x36,
9491 0x88, 0xe3, 0x4e, 0xa1, 0x0c, 0x99, 0x39, 0x66, 0xb5, 0xb3, 0xe7, 0x6a,
9492 0xb6, 0x98, 0xfa, 0x5e, 0x1e, 0x42, 0xe9, 0xd0, 0x60, 0x86, 0xc2, 0x47,
9493 0xa8, 0xa0, 0xe0, 0x03, 0x9b, 0x92, 0x77, 0xb0, 0x09, 0x25, 0x1e, 0x57,
9494 0xb8, 0xef, 0xfe, 0x23, 0x8a, 0x2e, 0xe2, 0xa2, 0xf4, 0xeb, 0x5e, 0xd1,
9495 0xdd, 0xa1, 0xce, 0x1d, 0xf1, 0xb3, 0xe5, 0xc5, 0xcc, 0xf8, 0xb7, 0x4d,
9496 0xcc, 0x44, 0x4c, 0x71, 0xf9, 0x3b, 0x1d, 0xa6, 0xd3, 0xb4, 0xba, 0x6f,
9497 0xf1, 0xf2, 0x60, 0x83, 0xd7, 0x22, 0x90, 0xcd, 0x87, 0xd0, 0xa2, 0xe9,
9498 0x55, 0x5a, 0xb9, 0x9d, 0x07, 0xd6, 0x81, 0x0b, 0x37, 0xc8, 0xb9, 0xca,
9499 0xa5, 0x08, 0x12, 0xc6, 0x5f, 0x2b, 0x11, 0x6f, 0x83, 0x8b, 0x03, 0xf1,
9500 0x8f, 0x7c, 0xbe, 0xe6, 0x79, 0x6f, 0x92, 0xe9, 0x98, 0xed, 0x22, 0x7b,
9501 0x43, 0x8f, 0xae, 0x94, 0x7d, 0x4c, 0xfe, 0xa1, 0x3b, 0x0a, 0xb7, 0xc6,
9502 0xd4, 0x8e, 0xca, 0x7d, 0x78, 0xc0, 0xdb, 0x45, 0x60, 0xfd, 0x94, 0x44,
9503 0xa8, 0x90, 0x38, 0x38, 0x8c, 0xdb, 0xb3, 0x71, 0xcd, 0x21, 0x88, 0x89,
9504 0x49, 0x64, 0xc8, 0x20, 0x5e, 0xa7, 0x20, 0x8e, 0xd8, 0x8e, 0x93, 0xb9,
9505 0x56, 0xd9, 0x65, 0xf5, 0x71, 0x60, 0x93, 0x4d, 0xd2, 0xab, 0x45, 0x11,
9506 0x2e, 0xc8, 0x22, 0x4f, 0x97, 0x64, 0xe9, 0x91, 0xd0, 0x43, 0x85, 0xf1,
9507 0x36, 0x2e, 0x24, 0x70, 0x30, 0x43, 0x07, 0xa3, 0x0a, 0x1d, 0xf5, 0x39,
9508 0x29, 0x42, 0xcb, 0x75, 0xec, 0x21, 0x70, 0xd0, 0x52, 0x4e, 0x40, 0x2f,
9509 0x47, 0x17, 0x9d, 0x64, 0x97, 0x52, 0x2c, 0x83, 0x46, 0x33, 0xa8, 0x38,
9510 0x12, 0x36, 0x41, 0x2e, 0x44, 0x35, 0x86, 0x7a, 0x5e, 0x11, 0x09, 0x02,
9511 0xb5, 0x0f, 0xf4, 0xfa, 0x1a, 0xaa, 0xc5, 0xab, 0xf1, 0xed, 0x6e, 0xaf,
9512 0x73, 0x6c, 0xb4, 0x00, 0xf2, 0x12, 0xe5, 0xa3, 0x8f, 0x00, 0x8c, 0x42,
9513 0x91, 0x56, 0x94, 0xe5, 0x23, 0x2f, 0x13, 0x5c, 0x7f, 0x9b, 0x4d, 0xf3,
9514 0x78, 0x5c, 0x72, 0xc0, 0x5a, 0x53, 0xb9, 0x88, 0x5c, 0xdc, 0x38, 0x43,
9515 0x16, 0xd7, 0xcb, 0x49, 0xc4, 0xb5, 0xe6, 0x55, 0x8e, 0xd6, 0x1d, 0x7c,
9516 0x6a, 0xda, 0x3c, 0x8e, 0x13, 0x8f, 0x05, 0x28, 0xf2, 0x0a, 0xa3, 0x2d,
9517 0x6f, 0xf4, 0x69, 0x2e, 0x81, 0x3e, 0x0b, 0xbc, 0x5e, 0xa5, 0xae, 0x56,
9518 0x72, 0x57, 0xc1, 0x9f, 0xc9, 0xd8, 0x75, 0x2a, 0x46, 0x83, 0xd3, 0xff,
9519 0x75, 0xf2, 0x7b, 0x67, 0x3d, 0x30, 0xe5, 0x76, 0x76, 0x7a, 0x7b, 0x7b,
9520 0xab, 0x9d, 0x9d, 0xc7, 0x04, 0x85, 0x96, 0x67, 0xe4, 0x2b, 0xee, 0xc5,
9521 0x52, 0x5a, 0x16, 0xe3, 0xa7, 0xf1, 0x1c, 0xdf, 0xbd, 0xae, 0xcb, 0xdc,
9522 0x1a, 0xf8, 0xa8, 0x6f, 0xb9, 0xad, 0x95, 0xa4, 0x21, 0x18, 0x00, 0xe6,
9523 0x78, 0x2a, 0x3e, 0x47, 0xa0, 0x3c, 0x07, 0x8d, 0x29, 0xb9, 0x86, 0x38,
9524 0x7e, 0x12, 0x74, 0x52, 0x13, 0xca, 0x53, 0x61, 0x5d, 0xfa, 0x54, 0x2b,
9525 0x4c, 0x78, 0x40, 0x1c, 0x06, 0x61, 0x8e, 0x9a, 0x51, 0x40, 0x85, 0x5c,
9526 0x91, 0x18, 0x10, 0xe2, 0x86, 0x08, 0x91, 0x1f, 0x0e, 0xa6, 0xf6, 0x47,
9527 0x38, 0x29, 0x98, 0xeb, 0xea, 0x44, 0xbc, 0x5d, 0xb5, 0x6a, 0xa5, 0xe8,
9528 0xe9, 0x74, 0x1d, 0x3a, 0x25, 0xac, 0x0a, 0x62, 0x92, 0x45, 0x11, 0x1d,
9529 0x7e, 0x78, 0x7f, 0xd6, 0x82, 0xc0, 0x35, 0x20, 0xd6, 0x42, 0x1e, 0xe8,
9530 0xbc, 0x4f, 0xa8, 0xd5, 0x48, 0x01, 0x42, 0xf9, 0x0a, 0x94, 0x4e, 0xa7,
9531 0xbb, 0x8b, 0xda, 0x1f, 0x44, 0x4b, 0x71, 0xbe, 0x86, 0x7c, 0xc9, 0xa8,
9532 0x2a, 0xa8, 0x64, 0xc0, 0x63, 0xd3, 0xc9, 0xb2, 0x52, 0x94, 0x9f, 0x69,
9533 0x2c, 0x8b, 0xb0, 0x28, 0x30, 0x33, 0xce, 0xac, 0x60, 0x08, 0xf9, 0xc0,
9534 0xed, 0x32, 0x66, 0x52, 0xbb, 0x98, 0x23, 0xa2, 0xce, 0x9f, 0x30, 0x86,
9535 0xda, 0xd1, 0x99, 0xd9, 0x77, 0xc5, 0x64, 0x2a, 0xcf, 0x0d, 0x6e, 0x61,
9536 0x87, 0xea, 0x91, 0xd7, 0x32, 0xd1, 0x3c, 0x81, 0xe4, 0x26, 0x45, 0x6c,
9537 0x69, 0xbc, 0x5b, 0x0b, 0xda, 0xa4, 0xaf, 0x5b, 0xa0, 0x32, 0xfb, 0x4c,
9538 0x66, 0x75, 0xa0, 0x08, 0x5d, 0xac, 0xe2, 0xea, 0x9c, 0xea, 0x49, 0xb1,
9539 0xb4, 0xe7, 0xe2, 0x29, 0xec, 0xae, 0xae, 0x86, 0x41, 0x02, 0xa2, 0x4b,
9540 0xe4, 0x24, 0x4e, 0x28, 0xce, 0x4c, 0x30, 0xae, 0xb6, 0x8c, 0xbf, 0x7b,
9541 0xf9, 0xb3, 0x92, 0xb8, 0xa3, 0x0c, 0x3a, 0x01, 0xb2, 0x6a, 0x66, 0x53,
9542 0x67, 0x85, 0x12, 0xe8, 0xa5, 0x03, 0x09, 0x11, 0x7b, 0x67, 0x4f, 0x19,
9543 0x70, 0xf9, 0xcd, 0xad, 0x9b, 0xe8, 0x48, 0x5b, 0x8b, 0xf7, 0xe2, 0x2b,
9544 0x8a, 0x17, 0xa2, 0x00, 0x7a, 0xd3, 0x35, 0x7c, 0xeb, 0x6c, 0xac, 0x3f,
9545 0xf3, 0x8a, 0x60, 0xbc, 0x56, 0xbe, 0xec, 0x05, 0x3c, 0x51, 0xda, 0x81,
9546 0xd0, 0x59, 0x9e, 0x8a, 0x00, 0x17, 0x94, 0x59, 0xe9, 0x7e, 0xb2, 0xb2,
9547 0x4c, 0x35, 0xa1, 0x0b, 0xc3, 0x10, 0x0c, 0xff, 0xf6, 0x1c, 0x68, 0x86,
9548 0x63, 0x86, 0x40, 0xeb, 0xbd, 0x4a, 0xe1, 0xe8, 0x2f, 0xb9, 0x05, 0x01,
9549 0x59, 0x6b, 0x3c, 0xa6, 0x8a, 0x2c, 0x86, 0xbc, 0xeb, 0xf9, 0x7d, 0x85,
9550 0x46, 0x02, 0x50, 0x60, 0x6e, 0x31, 0xf9, 0x05, 0xb0, 0x05, 0x9c, 0x6c,
9551 0x30, 0x79, 0xb2, 0xb1, 0x8a, 0x43, 0xce, 0x02, 0x7e, 0xa4, 0x03, 0xdc,
9552 0xc0, 0x48, 0xbb, 0x95, 0x6b, 0x2b, 0xe2, 0x9e, 0x80, 0x9d, 0x8b, 0x19,
9553 0x54, 0x26, 0xb8, 0xd3, 0x12, 0xa0, 0xa0, 0xe1, 0x84, 0x99, 0x83, 0x39,
9554 0x64, 0x5c, 0x0e, 0x50, 0x46, 0x65, 0x7c, 0x63, 0x73, 0x2c, 0xa5, 0x0e,
9555 0xd3, 0x8d, 0xdc, 0x62, 0x7f, 0xcf, 0x4c, 0x9d, 0x7b, 0x61, 0xef, 0x42,
9556 0x23, 0x63, 0xbd, 0x27, 0xed, 0x85, 0x7a, 0xd8, 0x32, 0xa6, 0x35, 0x35,
9557 0xd9, 0xe0, 0x36, 0x18, 0x25, 0x3c, 0xb6, 0xbe, 0x38, 0xe2, 0x1d, 0xc5,
9558 0xb7, 0x60, 0xf9, 0x07, 0x64, 0x08, 0xb0, 0x88, 0x36, 0x47, 0xa0, 0x4c,
9559 0x63, 0xd3, 0xb5, 0xc0, 0x75, 0xf1, 0xb8, 0xef, 0x42, 0x02, 0x89, 0x8b,
9560 0x2f, 0x50, 0x4e, 0xf8, 0x71, 0x18, 0x4c, 0xe4, 0xbd, 0x2d, 0x50, 0x95,
9561 0xc8, 0x44, 0x9f, 0xc1, 0x70, 0x8d, 0xb4, 0x1e, 0xe2, 0x1b, 0xf3, 0x11,
9562 0x10, 0x49, 0xb3, 0x91, 0xf5, 0x2d, 0x14, 0xf6, 0xa1, 0x2d, 0x1b, 0xce,
9563 0x79, 0x33, 0xaa, 0xd7, 0x71, 0x25, 0x0e, 0xc6, 0xd2, 0xb3, 0x5c, 0x10,
9564 0xec, 0x43, 0x4b, 0x45, 0x29, 0xcf, 0x70, 0x85, 0xa3, 0xc4, 0x71, 0x9e,
9565 0x6b, 0xf4, 0xc7, 0x1e, 0xb7, 0x72, 0xc0, 0x10, 0xdc, 0xfa, 0x7d, 0x02,
9566 0x76, 0x6b, 0x9a, 0xd9, 0xe4, 0x69, 0xe2, 0xb5, 0xcf, 0x5a, 0xbc, 0x9d,
9567 0xa2, 0x24, 0xda, 0x69, 0xa0, 0x57, 0xc1, 0x49, 0x07, 0x62, 0xb2, 0x83,
9568 0x12, 0x4b, 0x35, 0x2e, 0x59, 0x72, 0x87, 0xbd, 0x67, 0xdb, 0x87, 0xf3,
9569 0x8d, 0xd7, 0x6f, 0x8f, 0xde, 0xbf, 0x3b, 0x7d, 0xf7, 0xf5, 0x01, 0x08,
9570 0xc4, 0xa4, 0x18, 0xa1, 0x0d, 0xf2, 0xd3, 0x62, 0x9c, 0x8e, 0xe8, 0x80,
9571 0x90, 0xc6, 0x57, 0x95, 0x53, 0x07, 0x0c, 0x8b, 0x93, 0x48, 0x08, 0x11,
9572 0x53, 0x1b, 0x3d, 0x68, 0x0b, 0x29, 0xa3, 0xc2, 0x4a, 0x6f, 0xcc, 0x82,
9573 0xbd, 0x5a, 0x38, 0x2c, 0x34, 0x22, 0x6d, 0x9a, 0x43, 0xc7, 0x94, 0xd8,
9574 0x74, 0x2d, 0xb4, 0xc6, 0xc8, 0x62, 0xf4, 0xea, 0xec, 0xcc, 0xef, 0xf4,
9575 0xc8, 0xb5, 0x3b, 0xec, 0x72, 0xa2, 0x24, 0x6b, 0x2d, 0x9b, 0x41, 0x75,
9576 0x15, 0x8f, 0x9a, 0xda, 0x09, 0x07, 0xb6, 0x96, 0x96, 0x71, 0x51, 0xdd,
9577 0xc3, 0x2c, 0xa0, 0x86, 0x53, 0x21, 0x64, 0x51, 0x61, 0xa7, 0xbb, 0x49,
9578 0x85, 0x0a, 0xfd, 0x8a, 0x4a, 0xcb, 0xf9, 0x9f, 0x43, 0xd2, 0x76, 0x93,
9579 0xb6, 0x76, 0xab, 0xc8, 0x3d, 0xef, 0xd6, 0xe5, 0x60, 0x4d, 0xc7, 0xb3,
9580 0x1f, 0x23, 0xe4, 0xc0, 0xb2, 0x1a, 0x6c, 0x4e, 0xe5, 0xa8, 0x37, 0xe6,
9581 0x90, 0x74, 0x25, 0xea, 0xea, 0x05, 0x7c, 0xcf, 0xe6, 0x13, 0x88, 0xb5,
9582 0x32, 0x98, 0xbc, 0x32, 0x4e, 0x40, 0x5f, 0x13, 0xdb, 0xb6, 0xc4, 0x4c,
9583 0x82, 0xba, 0x78, 0xbe, 0x4d, 0x0a, 0x39, 0xc3, 0x0d, 0xf2, 0x21, 0x1c,
9584 0xa4, 0xfd, 0x68, 0x90, 0x4b, 0xc2, 0x79, 0x53, 0x73, 0x21, 0x14, 0x4f,
9585 0xa7, 0x89, 0x05, 0x2d, 0x12, 0xcd, 0xc5, 0x26, 0xbc, 0xa3, 0x9a, 0xc1,
9586 0x39, 0x29, 0x0f, 0xbd, 0x2c, 0x6e, 0xb1, 0x61, 0x62, 0xd4, 0x5c, 0xe4,
9587 0x11, 0x4a, 0x36, 0x40, 0x3e, 0xec, 0xf4, 0x80, 0x8e, 0x1d, 0x5c, 0xd7,
9588 0x5e, 0x2f, 0xcb, 0xc3, 0xc4, 0x7c, 0xa4, 0xd6, 0x59, 0x9f, 0x43, 0xc8,
9589 0xe1, 0x08, 0x8b, 0xb9, 0xdd, 0xf2, 0xf9, 0xce, 0x93, 0x56, 0xb9, 0xf9,
9590 0x55, 0x73, 0xd7, 0x14, 0x58, 0xc9, 0x2f, 0xb9, 0x8e, 0x04, 0x19, 0xc4,
9591 0xae, 0x2a, 0x27, 0xe8, 0x41, 0xa9, 0x06, 0x4e, 0xfa, 0x14, 0xcb, 0x5c,
9592 0x6c, 0xe2, 0x90, 0x54, 0x5e, 0x46, 0x1e, 0x59, 0xfa, 0xd6, 0x47, 0xed,
9593 0xa2, 0x8a, 0xba, 0xb7, 0xcb, 0xb9, 0xd3, 0xb5, 0xae, 0x50, 0xd4, 0x6b,
9594 0x3d, 0x6c, 0x4b, 0x38, 0xc5, 0xfc, 0x14, 0x34, 0x73, 0x36, 0x99, 0x43,
9595 0x2f, 0x74, 0x40, 0xf9, 0x91, 0x07, 0x2d, 0xbb, 0x0c, 0x73, 0x92, 0x8d,
9596 0xbc, 0xf2, 0x70, 0x24, 0x28, 0x5d, 0x3c, 0x00, 0xe7, 0x94, 0x20, 0x3d,
9597 0x97, 0x10, 0x5c, 0xfd, 0xe1, 0x1c, 0x78, 0x96, 0xd6, 0xa9, 0xe8, 0xc9,
9598 0x9c, 0x66, 0x37, 0x39, 0x7d, 0x63, 0x00, 0x62, 0x03, 0x19, 0xb9, 0x69,
9599 0x2b, 0x32, 0x00, 0xc5, 0xb9, 0x84, 0xaa, 0x32, 0x77, 0xd6, 0x11, 0x9c,
9600 0x02, 0x55, 0x78, 0x19, 0xc9, 0xa6, 0x30, 0x80, 0x45, 0x46, 0x07, 0x69,
9601 0x96, 0x91, 0xea, 0x06, 0xee, 0xe2, 0x41, 0x75, 0x4d, 0x55, 0x39, 0x53,
9602 0xf4, 0x32, 0x59, 0xf0, 0x22, 0x3d, 0x4c, 0xf5, 0x34, 0x75, 0x8e, 0xcb,
9603 0x65, 0x27, 0x65, 0xdf, 0x96, 0xbc, 0x3a, 0xe4, 0xb6, 0x7e, 0x2f, 0xca,
9604 0xfb, 0xe1, 0xa4, 0x91, 0xd1, 0x75, 0x9e, 0xb3, 0x5f, 0xac, 0xed, 0x20,
9605 0x89, 0x48, 0x0b, 0x65, 0x98, 0x60, 0x5f, 0x41, 0x34, 0x6d, 0x5f, 0xac,
9606 0x51, 0x40, 0xed, 0xa3, 0xfc, 0xd6, 0x65, 0x56, 0x1b, 0x74, 0x4f, 0x99,
9607 0x7e, 0xd4, 0x38, 0xb8, 0x79, 0x42, 0x9e, 0xee, 0x11, 0xca, 0xa6, 0xe4,
9608 0xef, 0x1a, 0xfa, 0x46, 0x55, 0x83, 0x9a, 0x75, 0x89, 0x12, 0x3c, 0xc8,
9609 0x39, 0x4d, 0x8d, 0x24, 0x97, 0xb1, 0xa6, 0xc7, 0xe4, 0xcf, 0xc8, 0xea,
9610 0xa1, 0x73, 0x62, 0xe7, 0xb4, 0x22, 0xc9, 0xf5, 0xc7, 0x9d, 0xad, 0xb6,
9611 0x03, 0x8c, 0xab, 0x5e, 0x14, 0x94, 0x0b, 0xb7, 0x63, 0x69, 0x5c, 0x23,
9612 0x74, 0xc8, 0x5b, 0x90, 0x5e, 0x3c, 0x1c, 0x17, 0x73, 0x71, 0x1e, 0xc6,
9613 0x65, 0x1b, 0xfd, 0x5b, 0x33, 0xe0, 0xd8, 0x9f, 0xe9, 0xc0, 0x16, 0x95,
9614 0xec, 0xac, 0x62, 0xb4, 0x58, 0xa9, 0x5c, 0xb1, 0x0e, 0x6d, 0x3a, 0x29,
9615 0x02, 0x1b, 0x08, 0x7d, 0x58, 0xab, 0x9e, 0x8c, 0xad, 0x07, 0x23, 0x49,
9616 0xbc, 0x76, 0xa3, 0xbe, 0x21, 0x90, 0x1d, 0xb1, 0xf9, 0xde, 0x11, 0x9b,
9617 0xf8, 0x02, 0xc1, 0x34, 0x7e, 0x16, 0x61, 0x8e, 0x53, 0xd7, 0x31, 0x80,
9618 0xad, 0x2a, 0x46, 0xbe, 0x3e, 0x92, 0xb1, 0x9c, 0x38, 0x0a, 0xa3, 0xf9,
9619 0xee, 0x2c, 0x98, 0x76, 0x40, 0x4e, 0x9a, 0xbd, 0xa7, 0xd9, 0xba, 0xb1,
9620 0x6d, 0xa5, 0x16, 0x8b, 0x54, 0x06, 0x81, 0xed, 0x15, 0x53, 0xaa, 0x00,
9621 0x67, 0xe7, 0x1c, 0xdc, 0x4a, 0x05, 0x44, 0xb4, 0x10, 0xf8, 0xa4, 0x27,
9622 0x9e, 0x5b, 0x14, 0x29, 0xef, 0x61, 0xf3, 0xc3, 0x7c, 0x35, 0xbb, 0xaf,
9623 0x79, 0x06, 0xb1, 0xe1, 0xf7, 0x33, 0x7e, 0x4a, 0xd4, 0xc0, 0xa8, 0x43,
9624 0x53, 0x31, 0xb9, 0x49, 0x7a, 0x79, 0xd6, 0x0b, 0x95, 0x4a, 0x32, 0xed,
9625 0x59, 0x62, 0x6a, 0x8c, 0x5a, 0xab, 0x2a, 0xd9, 0xab, 0x50, 0xe5, 0x53,
9626 0x0e, 0x7c, 0x01, 0x2b, 0xe9, 0xd9, 0x46, 0xe1, 0x14, 0x3a, 0xdb, 0x02,
9627 0x8c, 0x5d, 0x2f, 0xb6, 0xb0, 0x21, 0x4f, 0xa2, 0xdc, 0x8d, 0xa4, 0xd6,
9628 0x98, 0xec, 0x54, 0xd8, 0xda, 0x95, 0xed, 0xc1, 0xe5, 0xe7, 0xa2, 0x82,
9629 0x18, 0xad, 0x14, 0x0f, 0x9f, 0x64, 0xed, 0x34, 0x61, 0x29, 0x6c, 0xe3,
9630 0x4a, 0x52, 0x6a, 0x6d, 0x6a, 0xec, 0x48, 0x11, 0xc5, 0x77, 0xf0, 0xcb,
9631 0xb9, 0xc0, 0x76, 0x58, 0x70, 0xbf, 0x37, 0x71, 0x9b, 0x85, 0x1d, 0x14,
9632 0xf6, 0x45, 0x05, 0xeb, 0x3b, 0xf0, 0x62, 0xcb, 0x0d, 0x89, 0x47, 0x30,
9633 0x81, 0xb3, 0x28, 0xc8, 0x08, 0x5a, 0x22, 0xb1, 0x0a, 0x2f, 0x4c, 0x70,
9634 0xd5, 0x31, 0x65, 0xb4, 0x06, 0xd9, 0xf0, 0xa2, 0x81, 0xf3, 0x25, 0xd1,
9635 0xd5, 0x9e, 0x44, 0xd5, 0x0f, 0x51, 0x45, 0x68, 0x71, 0xad, 0xf9, 0x60,
9636 0xa0, 0xe4, 0x1e, 0xb3, 0xad, 0xd1, 0x3b, 0x3c, 0x48, 0x27, 0x5a, 0xc7,
9637 0x51, 0x36, 0x8c, 0xd5, 0xee, 0x43, 0x18, 0x4a, 0x05, 0x9f, 0xd8, 0x47,
9638 0x31, 0xab, 0xaa, 0xcd, 0x2a, 0x43, 0x32, 0xdc, 0x2f, 0x70, 0x1d, 0x47,
9639 0x8b, 0x69, 0x5c, 0x4c, 0x49, 0xf0, 0x4d, 0x16, 0x4d, 0xb6, 0x22, 0x46,
9640 0xc4, 0xc3, 0x4e, 0x7a, 0xde, 0xa7, 0x65, 0xb9, 0x10, 0xd7, 0x9e, 0xc1,
9641 0xa4, 0xb7, 0x6d, 0xd4, 0x80, 0x43, 0x48, 0xd4, 0x47, 0xe5, 0x14, 0x53,
9642 0xb0, 0x5b, 0xa5, 0x39, 0x37, 0x32, 0xe6, 0xa2, 0x58, 0x83, 0x24, 0xc8,
9643 0x0e, 0x34, 0x91, 0x1d, 0x57, 0x38, 0x29, 0x92, 0xfa, 0x73, 0x94, 0x41,
9644 0x05, 0xd8, 0x4d, 0xa8, 0xc0, 0x35, 0x86, 0xeb, 0x9c, 0x5f, 0x5c, 0x9e,
9645 0x9e, 0xbf, 0x1b, 0x44, 0xff, 0xd9, 0x59, 0x9d, 0x0f, 0x6a, 0x4b, 0xd3,
9646 0xf9, 0xcf, 0x4e, 0xd4, 0xfb, 0x2e, 0xd2, 0xf1, 0x56, 0xe2, 0x85, 0x5a,
9647 0x20, 0xbd, 0x86, 0xe0, 0x51, 0x6f, 0x1d, 0xeb, 0x5e, 0x17, 0x1d, 0x72,
9648 0xd7, 0xa8, 0x36, 0x47, 0xab, 0xe3, 0x2c, 0x18, 0x81, 0x06, 0x0f, 0xbb,
9649 0x4f, 0x6f, 0x94, 0x6e, 0x53, 0xc2, 0x24, 0x8d, 0x36, 0x14, 0x5e, 0x10,
9650 0xa7, 0xde, 0xb0, 0xcc, 0x75, 0xc9, 0x92, 0xde, 0x65, 0x3d, 0x1a, 0x8d,
9651 0xe1, 0x45, 0x29, 0xf5, 0x03, 0x0c, 0xe3, 0x66, 0x75, 0x9b, 0xdc, 0x60,
9652 0x43, 0x70, 0x7c, 0x55, 0xb4, 0xce, 0x2a, 0x8c, 0xda, 0x59, 0x65, 0x20,
9653 0xdf, 0xf8, 0xeb, 0x93, 0x4b, 0x0c, 0x64, 0x10, 0x64, 0x97, 0x9d, 0x1f,
9654 0x05, 0x84, 0xc4, 0xf6, 0x89, 0x8d, 0x6d, 0xa6, 0x28, 0x5d, 0x28, 0x73,
9655 0xc1, 0x48, 0x9f, 0xc6, 0x59, 0x10, 0xa4, 0x04, 0x0c, 0xe7, 0x63, 0xa0,
9656 0x46, 0x6e, 0x7b, 0x6d, 0xaa, 0x57, 0xdf, 0xb0, 0xab, 0x76, 0x8d, 0xb8,
9657 0xf8, 0x70, 0x29, 0xbe, 0x0f, 0x4c, 0x9e, 0xb8, 0x3c, 0xe9, 0x7a, 0x6d,
9658 0xfd, 0x30, 0x46, 0x39, 0x25, 0x1c, 0x81, 0x2a, 0x19, 0x5d, 0x67, 0xf9,
9659 0x34, 0xbf, 0xc2, 0x25, 0x21, 0x4b, 0xe2, 0xdb, 0x64, 0xf8, 0xea, 0xe8,
9660 0x1b, 0x54, 0xed, 0x31, 0x2e, 0x73, 0xf1, 0xfe, 0xfc, 0xe2, 0xf5, 0xe9,
9661 0xbb, 0x57, 0xdd, 0xe8, 0xf8, 0xfc, 0xe2, 0x6f, 0xdd, 0xe8, 0xed, 0xf9,
9662 0x37, 0x27, 0x9f, 0x79, 0x79, 0x7b, 0xd4, 0x52, 0xd4, 0x63, 0xd4, 0x77,
9663 0xe8, 0x38, 0x47, 0xeb, 0xdb, 0xf1, 0xec, 0x72, 0x77, 0x6d, 0xb7, 0x89,
9664 0xef, 0x91, 0x49, 0xb6, 0xa2, 0x2d, 0x0e, 0xa4, 0x83, 0x23, 0xfb, 0xcd,
9665 0xc9, 0xd1, 0xab, 0xae, 0xd7, 0x1d, 0x7a, 0x70, 0x49, 0x0f, 0xc3, 0xf7,
9666 0x33, 0x2f, 0x4d, 0x7d, 0x7d, 0xd9, 0xc9, 0x41, 0xea, 0x3a, 0x27, 0xe1,
9667 0xb0, 0xa0, 0x00, 0x7e, 0x25, 0x78, 0xcf, 0x71, 0x5b, 0x0e, 0xb2, 0xf4,
9668 0x5c, 0x9f, 0x33, 0x81, 0x97, 0x96, 0xc4, 0xa3, 0xdd, 0xe4, 0x5a, 0xd9,
9669 0xd2, 0x55, 0x82, 0xca, 0x9e, 0x55, 0x8d, 0x75, 0xeb, 0xf3, 0x5a, 0x3a,
9670 0x1d, 0x74, 0x6b, 0x18, 0xa3, 0x24, 0x06, 0x39, 0x3c, 0x17, 0xdf, 0x0b,
9671 0xa6, 0x4c, 0x82, 0x0a, 0x56, 0x49, 0x96, 0xf5, 0xc4, 0xb6, 0xe5, 0x0c,
9672 0xbb, 0xcb, 0x49, 0x59, 0xaf, 0xa4, 0xdc, 0x23, 0xd6, 0x76, 0x13, 0x48,
9673 0x3c, 0x25, 0x50, 0x57, 0x48, 0x01, 0x22, 0x80, 0x3e, 0xb6, 0xce, 0x33,
9674 0x0f, 0x32, 0x6e, 0x02, 0x6c, 0x99, 0x70, 0xe3, 0x10, 0xed, 0x81, 0xae,
9675 0x21, 0x70, 0x76, 0x00, 0x2f, 0xb5, 0x73, 0xb4, 0x57, 0x9c, 0x78, 0xfd,
9676 0xb9, 0xbf, 0x85, 0x06, 0x3f, 0xac, 0x74, 0x70, 0x3d, 0xef, 0xea, 0x9a,
9677 0x08, 0x77, 0x10, 0xb4, 0xdd, 0x85, 0xb9, 0xa0, 0xdd, 0x25, 0x06, 0x17,
9678 0xfb, 0x99, 0xa8, 0x08, 0x6a, 0xb7, 0x1c, 0xaf, 0x0f, 0x84, 0xa1, 0x30,
9679 0x04, 0x46, 0x81, 0xc2, 0x08, 0xb3, 0x74, 0x7a, 0x7c, 0xb8, 0x96, 0x91,
9680 0x53, 0x61, 0xd8, 0x6c, 0x23, 0x5e, 0x97, 0x18, 0x5e, 0x26, 0xfc, 0x08,
9681 0x96, 0x5c, 0x0e, 0x0d, 0xb3, 0xb5, 0x77, 0xb7, 0xee, 0x6c, 0xf8, 0x19,
9682 0x75, 0xf9, 0x32, 0xea, 0x71, 0x5a, 0x29, 0x63, 0xb2, 0x04, 0x0b, 0x76,
9683 0x82, 0xd2, 0xd0, 0x0d, 0x67, 0x1a, 0x3c, 0x42, 0x23, 0x97, 0xce, 0x4e,
9684 0x61, 0x0f, 0x04, 0xe0, 0xcb, 0xc7, 0x39, 0xce, 0x88, 0x13, 0x4a, 0xc9,
9685 0xae, 0x21, 0xb2, 0xc3, 0x58, 0xfe, 0x83, 0x2f, 0xce, 0x2f, 0x76, 0x83,
9686 0x4f, 0xc6, 0x2f, 0x1e, 0x7a, 0xb4, 0x77, 0xee, 0xbd, 0x3f, 0xb9, 0x7c,
9687 0xef, 0x3f, 0xe3, 0xf4, 0xed, 0x51, 0xf8, 0xed, 0xf0, 0x8b, 0xb6, 0x67,
9688 0xd0, 0xf6, 0xc7, 0xa7, 0xf8, 0x65, 0x84, 0x4e, 0x37, 0x85, 0xad, 0x40,
9689 0x82, 0xe4, 0xfa, 0xe0, 0x6d, 0x0b, 0x35, 0xf1, 0x8b, 0x25, 0xef, 0xf4,
9690 0xe6, 0xe4, 0xec, 0xc2, 0x7f, 0xa7, 0x6f, 0xde, 0xbf, 0xfe, 0x5b, 0x3d,
9691 0x2d, 0x73, 0x77, 0x2f, 0xf0, 0xd4, 0x7f, 0x71, 0xdc, 0xe9, 0x3b, 0xce,
9692 0x85, 0xbb, 0x3c, 0x59, 0x21, 0xc4, 0xf4, 0x5d, 0xf4, 0xee, 0x0c, 0x56,
9693 0x6d, 0xa5, 0x22, 0xbf, 0xba, 0xfe, 0x50, 0x57, 0xfa, 0xca, 0x7c, 0x0a,
9694 0x0a, 0xdb, 0xe1, 0xf7, 0xff, 0x45, 0xf0, 0x39, 0x54, 0x63, 0x7f, 0x00,
9695 0xc7, 0x51, 0xf1, 0x7d, 0x17, 0x7f, 0xfe, 0xd8, 0xef, 0xf7, 0xbf, 0xf0,
9696 0x9b, 0x61, 0x93, 0x43, 0xda, 0xac, 0x08, 0x5e, 0x88, 0xe5, 0x19, 0x0d,
9697 0x57, 0x20, 0x61, 0x2b, 0x10, 0x96, 0x04, 0xe6, 0x17, 0xcc, 0x63, 0xec,
9698 0x55, 0x1f, 0x7d, 0x28, 0x83, 0xc7, 0x3e, 0x52, 0xdd, 0x62, 0x81, 0x18,
9699 0x43, 0x4b, 0xfa, 0xa9, 0xb0, 0xf0, 0x58, 0x2f, 0x37, 0x04, 0xbe, 0xcb,
9700 0x6a, 0x02, 0x01, 0x2f, 0x03, 0x4d, 0x85, 0x1e, 0xcb, 0x66, 0x01, 0x2b,
9701 0xea, 0xe6, 0xc4, 0xcf, 0xf4, 0x04, 0x93, 0x57, 0x1f, 0x9b, 0xe9, 0xa3,
9702 0x5f, 0x22, 0xa8, 0x45, 0xf4, 0x29, 0x28, 0x45, 0x09, 0x81, 0xe4, 0x7e,
9703 0x89, 0xe9, 0x70, 0x43, 0x66, 0xdb, 0x4c, 0xaa, 0xd1, 0x26, 0xbe, 0x67,
9704 0x59, 0x53, 0x7f, 0x8d, 0xfe, 0xea, 0x79, 0xcc, 0xdd, 0x5a, 0x30, 0x42,
9705 0x6a, 0xe2, 0x14, 0x60, 0xa7, 0x24, 0xdb, 0x82, 0x45, 0x39, 0xb6, 0x3b,
9706 0x6b, 0x29, 0x93, 0xbc, 0x08, 0x15, 0x8f, 0x1b, 0x82, 0x3b, 0x18, 0x35,
9707 0xd4, 0x7e, 0x26, 0x0f, 0x08, 0x67, 0x07, 0xc8, 0xc4, 0xf7, 0x03, 0xd0,
9708 0x19, 0xa1, 0xcc, 0x8e, 0xe9, 0xa6, 0xd4, 0x74, 0x7a, 0x52, 0x3b, 0x97,
9709 0x34, 0x1c, 0xe1, 0x2e, 0xba, 0xe2, 0x65, 0x04, 0x50, 0xf9, 0xa5, 0x81,
9710 0xb4, 0x7a, 0xf4, 0xf0, 0x4d, 0x83, 0x95, 0x79, 0x2e, 0x9c, 0xd9, 0xda,
9711 0x7f, 0xae, 0xa1, 0x15, 0x40, 0xb7, 0x07, 0x41, 0xd4, 0x94, 0x6b, 0xd1,
9712 0xd5, 0x81, 0x57, 0x05, 0xb4, 0x17, 0x43, 0x14, 0xc3, 0x7c, 0x26, 0x53,
9713 0xdf, 0x61, 0x1e, 0x7a, 0x85, 0x7e, 0xf4, 0x6d, 0x3a, 0x1d, 0x8f, 0xe2,
9714 0x82, 0x2a, 0x13, 0xfc, 0x43, 0x5e, 0xd8, 0x84, 0xb7, 0x3c, 0xec, 0x27,
9715 0x7c, 0xaa, 0xdd, 0x39, 0x92, 0x3a, 0xd6, 0xc2, 0xf5, 0x01, 0x34, 0x06,
9716 0xb3, 0x18, 0x98, 0x41, 0xd7, 0x06, 0x4d, 0xc2, 0xec, 0xa3, 0x34, 0xc6,
9717 0x43, 0x77, 0x78, 0xef, 0xa3, 0x13, 0xd8, 0x3e, 0x41, 0x1c, 0x7f, 0xf7,
9718 0x35, 0x8a, 0x5e, 0x2f, 0x9d, 0xdf, 0xec, 0xb1, 0x23, 0x1d, 0x7e, 0x7b,
9719 0x66, 0x4b, 0xef, 0x1d, 0xc7, 0x09, 0x1b, 0x70, 0x6c, 0xee, 0x9c, 0x5e,
9720 0x28, 0x04, 0x52, 0x68, 0x95, 0xb8, 0xa2, 0x51, 0x41, 0x4d, 0x84, 0xc1,
9721 0xb4, 0xe8, 0xd3, 0xdf, 0xbe, 0x9c, 0xb1, 0xcc, 0xd9, 0xfe, 0x9e, 0xa3,
9722 0xd9, 0x56, 0xae, 0xae, 0x95, 0x26, 0xc0, 0x81, 0xd7, 0xa2, 0x75, 0xb6,
9723 0xbe, 0x1d, 0xcd, 0xd2, 0x6c, 0x51, 0x25, 0xa8, 0x73, 0x53, 0x09, 0xb7,
9724 0x58, 0x60, 0xec, 0x38, 0x0c, 0x90, 0x95, 0xd1, 0x37, 0xa4, 0xd3, 0x57,
9725 0x92, 0x89, 0x2f, 0x76, 0x9a, 0xc3, 0x5c, 0x8b, 0x45, 0x46, 0x29, 0xbe,
9726 0x98, 0x4a, 0x38, 0x9d, 0x26, 0xb6, 0x3c, 0xb7, 0xd4, 0xd9, 0x4f, 0x73,
9727 0xdf, 0x0d, 0x4e, 0x47, 0x2f, 0x30, 0xc7, 0x69, 0xc6, 0x90, 0x33, 0xe8,
9728 0x33, 0x28, 0xa5, 0x20, 0xd3, 0x3f, 0x22, 0x6c, 0x45, 0x29, 0xbd, 0x72,
9729 0xee, 0x29, 0x40, 0xcc, 0x2d, 0xbc, 0x63, 0x99, 0x47, 0xc8, 0x53, 0x69,
9730 0xc4, 0xd1, 0x2d, 0x6d, 0xfb, 0x1c, 0x71, 0x43, 0xd4, 0x65, 0x85, 0x84,
9731 0x40, 0xff, 0x81, 0x1f, 0xe6, 0x9e, 0x53, 0x6d, 0xbb, 0x27, 0xf1, 0x9d,
9732 0x4e, 0xe0, 0xcc, 0x43, 0xba, 0x52, 0xb0, 0xaa, 0xca, 0x4b, 0xf8, 0xc6,
9733 0x70, 0x00, 0x7e, 0x3f, 0x2c, 0x10, 0x68, 0xb7, 0x2a, 0x7f, 0x24, 0x98,
9734 0x2e, 0x42, 0xe9, 0xf2, 0x04, 0x33, 0x9a, 0x85, 0x35, 0xa0, 0xe6, 0xc6,
9735 0x83, 0x1a, 0x4f, 0x32, 0xd5, 0x95, 0xf6, 0x71, 0x09, 0xd5, 0xf1, 0x0a,
9736 0x23, 0x2c, 0x7f, 0xd0, 0xcb, 0x25, 0x0f, 0x9a, 0x10, 0x6a, 0x3e, 0x92,
9737 0xd0, 0xb4, 0x72, 0xb9, 0xd5, 0x3d, 0x6b, 0x46, 0x15, 0x0c, 0xdb, 0xbd,
9738 0x07, 0xc6, 0xa1, 0xf4, 0x45, 0xe0, 0x56, 0xa9, 0xce, 0xc5, 0xdb, 0x1b,
9739 0x43, 0x3c, 0xdf, 0xef, 0x6f, 0x3d, 0xbe, 0xa4, 0xd4, 0xfa, 0x5b, 0xb9,
9740 0x3b, 0x17, 0x7f, 0x42, 0x4b, 0x2c, 0x95, 0x12, 0x79, 0x9b, 0x50, 0x59,
9741 0xdd, 0x0f, 0xc0, 0x5c, 0xe4, 0x1c, 0xfb, 0x07, 0x7b, 0x7b, 0xbb, 0x07,
9742 0xdb, 0x3b, 0xb8, 0x4a, 0x5b, 0x60, 0x8b, 0xae, 0xd8, 0x94, 0x52, 0x10,
9743 0x35, 0x70, 0xe2, 0x04, 0xae, 0x02, 0x87, 0x58, 0xaf, 0xbc, 0x19, 0xd5,
9744 0x35, 0x04, 0x58, 0x3a, 0xf4, 0xd4, 0xb2, 0x0f, 0xaa, 0xe9, 0x7b, 0xc3,
9745 0x9c, 0x6e, 0xea, 0x73, 0x8f, 0x2f, 0xcd, 0x0d, 0xe4, 0x6b, 0xa4, 0xd2,
9746 0xfd, 0x51, 0xe5, 0xa0, 0x79, 0xa0, 0x80, 0x31, 0xc6, 0x43, 0x55, 0xdc,
9747 0xf7, 0x1f, 0x04, 0xa1, 0xa6, 0xf4, 0xad, 0x72, 0x9a, 0x8c, 0xaf, 0xc0,
9748 0x86, 0x9a, 0xcd, 0x92, 0xa2, 0x83, 0x3b, 0x93, 0x6e, 0x26, 0x77, 0xe0,
9749 0x2b, 0x36, 0x41, 0xd5, 0x0f, 0xde, 0xdc, 0xc4, 0x3c, 0xd0, 0xd0, 0x16,
9750 0x7e, 0xaf, 0x27, 0x57, 0x04, 0x9e, 0x08, 0xf4, 0x2c, 0x46, 0x1b, 0x5d,
9751 0x06, 0x2f, 0x33, 0xc9, 0xfb, 0x99, 0x31, 0x2c, 0xb0, 0x00, 0x20, 0x64,
9752 0xed, 0x51, 0x54, 0xdf, 0x40, 0x50, 0x05, 0x7b, 0x3a, 0x8c, 0x17, 0xf3,
9753 0x29, 0x77, 0xa0, 0xe0, 0x12, 0x01, 0x3b, 0xc5, 0x50, 0x26, 0x18, 0xb5,
9754 0x8e, 0xa7, 0x28, 0x3e, 0x77, 0x9a, 0xa3, 0x0c, 0x61, 0xf2, 0xf1, 0x91,
9755 0xd9, 0xb6, 0x46, 0x9a, 0xc0, 0x0c, 0x9f, 0x37, 0x4c, 0x2a, 0xc2, 0x34,
9756 0xc0, 0x34, 0x13, 0x10, 0x0b, 0x9e, 0x51, 0x34, 0x9e, 0xaa, 0x91, 0x86,
9757 0xb9, 0x01, 0x29, 0x4c, 0x16, 0xb7, 0xe6, 0x70, 0x8a, 0x78, 0x9e, 0x88,
9758 0xac, 0x85, 0x95, 0xc2, 0x51, 0x39, 0x2a, 0xd2, 0x39, 0x0c, 0x7d, 0x31,
9759 0x4d, 0xd0, 0x05, 0x6a, 0x5a, 0xd5, 0xf9, 0x22, 0x86, 0xad, 0x32, 0xaa,
9760 0xbe, 0x6e, 0x4f, 0x23, 0x78, 0x8d, 0xe1, 0x2e, 0x09, 0xda, 0xe4, 0xb3,
9761 0x39, 0x68, 0x3f, 0x92, 0xa9, 0xec, 0xe1, 0x82, 0xd0, 0x92, 0x45, 0x54,
9762 0xb8, 0xee, 0x27, 0x2c, 0x4c, 0xe3, 0x4f, 0xf7, 0x91, 0x23, 0x95, 0x91,
9763 0xb6, 0xa3, 0x29, 0x06, 0xa5, 0xd0, 0x19, 0xc8, 0x50, 0x9f, 0x14, 0xaa,
9764 0xba, 0x66, 0x9f, 0xdb, 0x3d, 0xc7, 0xae, 0x29, 0x4d, 0x35, 0x19, 0x87,
9765 0x7c, 0x21, 0x95, 0x0b, 0x3f, 0xa0, 0x03, 0x84, 0x09, 0x4e, 0xf5, 0x02,
9766 0x4a, 0x72, 0x7c, 0x23, 0x1f, 0x02, 0x02, 0x49, 0xd1, 0x35, 0x9d, 0x3c,
9767 0x0c, 0xfb, 0x91, 0x32, 0xa8, 0x9e, 0x6b, 0x71, 0xcc, 0x92, 0xb7, 0x50,
9768 0xc1, 0x3d, 0x43, 0x2f, 0xab, 0xee, 0x68, 0x0b, 0x66, 0x41, 0xc9, 0x44,
9769 0x28, 0x85, 0x24, 0xc7, 0x05, 0xf5, 0x50, 0xcc, 0x70, 0x91, 0x11, 0xa5,
9770 0xc6, 0x34, 0x7a, 0x93, 0xdf, 0xa2, 0x66, 0x16, 0x0a, 0x56, 0x2a, 0x7a,
9771 0x5c, 0xb1, 0x48, 0xa4, 0xbc, 0x2d, 0x76, 0xdf, 0x93, 0x62, 0xcc, 0xff,
9772 0x1b, 0x0e, 0x8d, 0x39, 0x55, 0x6b, 0x7d, 0x21, 0x6e, 0xea, 0x50, 0x8f,
9773 0x1a, 0x74, 0xbd, 0x30, 0x7e, 0x0a, 0x68, 0x09, 0xa0, 0x18, 0x51, 0x7a,
9774 0x13, 0x9c, 0xa1, 0x94, 0x28, 0x7c, 0x45, 0x2d, 0x59, 0x1d, 0xcf, 0x0f,
9775 0xbe, 0x0c, 0x5a, 0xe8, 0x48, 0x41, 0x84, 0x66, 0x2c, 0xc6, 0x61, 0x40,
9776 0x1f, 0xc2, 0x89, 0x34, 0x33, 0xa2, 0x0d, 0x98, 0xcf, 0x86, 0x9a, 0x0c,
9777 0xd4, 0x04, 0xa8, 0xed, 0x0a, 0x32, 0xa3, 0xaf, 0x9f, 0xe2, 0x3e, 0xe5,
9778 0x8d, 0x96, 0x34, 0xb7, 0xd9, 0xa3, 0xc0, 0x1e, 0x08, 0x6c, 0x96, 0x3c,
9779 0xe9, 0x24, 0xb0, 0xd4, 0xd7, 0xe6, 0xd8, 0xf8, 0x12, 0xf5, 0xf1, 0x37,
9780 0x17, 0x3d, 0xaa, 0x34, 0x37, 0xd1, 0x28, 0x06, 0x9d, 0xc1, 0xac, 0x25,
9781 0x2e, 0xa3, 0x85, 0x01, 0xe9, 0xd3, 0xfe, 0x40, 0xfe, 0xf1, 0xce, 0xef,
9782 0x29, 0x43, 0x3b, 0xc4, 0x16, 0xd8, 0x01, 0xde, 0x06, 0xc6, 0xdf, 0xdb,
9783 0xda, 0x43, 0x75, 0x07, 0x6e, 0x5c, 0x10, 0xb0, 0x8a, 0x16, 0x11, 0x51,
9784 0x95, 0x02, 0xe1, 0xde, 0xc0, 0xb8, 0xd3, 0x7b, 0x1f, 0x3d, 0x03, 0x69,
9785 0xc2, 0x8e, 0xc9, 0x4c, 0x55, 0x25, 0x8d, 0x4a, 0x64, 0x2a, 0x97, 0x29,
9786 0x8a, 0x23, 0xa2, 0xd7, 0x0a, 0xe6, 0x40, 0xe3, 0x34, 0x43, 0xb0, 0x42,
9787 0xa5, 0x3b, 0xa6, 0xd7, 0x04, 0xc8, 0x55, 0x2a, 0xbd, 0xc6, 0xd2, 0xcc,
9788 0x07, 0x29, 0xe1, 0x1d, 0x75, 0x29, 0x81, 0xe3, 0xb1, 0x0f, 0x8d, 0x0f,
9789 0x91, 0xae, 0x6c, 0xd2, 0xd8, 0x71, 0x9c, 0xa9, 0xab, 0x73, 0x86, 0x27,
9790 0xe7, 0xde, 0x9d, 0x75, 0xbe, 0x78, 0x6d, 0x94, 0xf0, 0xb9, 0x2a, 0x82,
9791 0x81, 0x60, 0xa6, 0xa9, 0x80, 0x9a, 0x28, 0x66, 0xd6, 0x5c, 0xbb, 0x6f,
9792 0x66, 0xcc, 0xb7, 0x86, 0xc2, 0xc8, 0xce, 0x1b, 0xb8, 0xd3, 0x8c, 0xd6,
9793 0x71, 0x1e, 0xb8, 0x0a, 0xfb, 0x77, 0x77, 0x1b, 0x4c, 0x5c, 0xe6, 0x5c,
9794 0x11, 0x26, 0xbd, 0x89, 0x0f, 0xdd, 0x46, 0x81, 0x96, 0x95, 0x0f, 0x76,
9795 0x9c, 0xf1, 0x7e, 0xe0, 0xb8, 0x5d, 0xf1, 0x44, 0xe7, 0x63, 0xd5, 0xf5,
9796 0xeb, 0x3f, 0xdf, 0x6e, 0x86, 0x79, 0xf0, 0x01, 0x78, 0xf2, 0x83, 0xfe,
9797 0x13, 0xc8, 0x4f, 0x3e, 0xb5, 0xde, 0x68, 0xb5, 0x98, 0xd8, 0x32, 0xc0,
9798 0x88, 0x21, 0x7d, 0x8c, 0x78, 0xd0, 0x6a, 0x0e, 0x9f, 0x20, 0xda, 0xd7,
9799 0xfb, 0x93, 0xd7, 0x1f, 0x06, 0x27, 0xaf, 0x08, 0x4b, 0x39, 0xf6, 0x13,
9800 0x32, 0x33, 0x61, 0x00, 0xc9, 0xd8, 0xab, 0xf2, 0x9c, 0x15, 0x47, 0x33,
9801 0xdb, 0x65, 0xfa, 0x42, 0xe8, 0xcc, 0x6c, 0xd3, 0x1e, 0x1e, 0x43, 0x64,
9802 0xf7, 0xcd, 0x0d, 0xe1, 0x9f, 0x40, 0x63, 0x51, 0x98, 0x9a, 0xcb, 0xb5,
9803 0x14, 0xfe, 0x9d, 0x2f, 0x1e, 0x27, 0x53, 0x10, 0x63, 0x87, 0x5c, 0xf8,
9804 0xe5, 0xb5, 0x30, 0x7b, 0x6b, 0xac, 0x32, 0xd0, 0x7a, 0x92, 0xb9, 0x60,
9805 0x07, 0xce, 0x40, 0x1c, 0x70, 0x52, 0x0f, 0xda, 0x52, 0x26, 0x28, 0x8a,
9806 0x29, 0x5b, 0x7a, 0xb2, 0x72, 0xcf, 0xbd, 0x20, 0xf9, 0x09, 0xca, 0x07,
9807 0x0d, 0x09, 0x39, 0x91, 0xd4, 0xea, 0xb1, 0x6b, 0xc3, 0x4b, 0xb3, 0x9e,
9808 0x56, 0x8d, 0xac, 0x33, 0x0f, 0xc3, 0x85, 0x04, 0x2a, 0xb6, 0xe8, 0x40,
9809 0x2d, 0x84, 0x26, 0x13, 0x4f, 0xaf, 0x72, 0x38, 0xb8, 0xae, 0x67, 0x06,
9810 0xee, 0x90, 0x41, 0xae, 0xcb, 0x8d, 0xbe, 0xaf, 0xcf, 0x05, 0x6d, 0x36,
9811 0x2a, 0x68, 0x48, 0x04, 0xf7, 0x67, 0xe2, 0x0a, 0x28, 0x22, 0x38, 0x7b,
9812 0x60, 0x06, 0x82, 0x22, 0x4b, 0xf4, 0x60, 0x12, 0x7a, 0x46, 0xd6, 0xcf,
9813 0x49, 0x91, 0x37, 0x93, 0x02, 0xd4, 0xdd, 0xad, 0x87, 0x81, 0x3b, 0xf7,
9814 0xdf, 0xbd, 0xac, 0xc4, 0xe1, 0x87, 0xfd, 0x5f, 0xc2, 0x8c, 0x3e, 0x93,
9815 0xcd, 0xe2, 0x3b, 0xce, 0x1d, 0x68, 0xe3, 0x33, 0xae, 0xec, 0x56, 0xf3,
9816 0xbc, 0x60, 0xcf, 0x07, 0xf9, 0x19, 0xdc, 0x0c, 0x66, 0xac, 0xf1, 0x33,
9817 0x2c, 0x24, 0xea, 0x1c, 0x05, 0xc1, 0xfc, 0xbc, 0x6b, 0x3c, 0xbd, 0xac,
9818 0x57, 0x82, 0xf2, 0x67, 0x62, 0xa4, 0x1f, 0x46, 0x54, 0xd6, 0xb1, 0xc4,
9819 0x5e, 0xa6, 0xb6, 0x81, 0x1f, 0x93, 0x59, 0x2e, 0xe9, 0x29, 0xf4, 0xfc,
9820 0x40, 0x6e, 0x20, 0xab, 0x21, 0xc0, 0xe2, 0x1a, 0x5d, 0xe2, 0x64, 0xa9,
9821 0x69, 0x3a, 0x4b, 0x2b, 0x82, 0x75, 0x4b, 0x47, 0x7a, 0x5c, 0x0b, 0x78,
9822 0x10, 0xbf, 0x09, 0xde, 0xdc, 0xf4, 0x6b, 0xa1, 0xae, 0xa2, 0x63, 0x09,
9823 0xc6, 0x0d, 0x8c, 0xd2, 0xad, 0x77, 0x62, 0x97, 0x95, 0x24, 0xa4, 0x46,
9824 0xc2, 0x6a, 0xba, 0xa6, 0x74, 0x3a, 0x3f, 0x41, 0x40, 0x4a, 0xf6, 0x28,
9825 0xee, 0x83, 0x2a, 0x09, 0x61, 0x81, 0xe1, 0x2b, 0xb1, 0x36, 0x97, 0xa9,
9826 0x97, 0x82, 0x27, 0xcc, 0xdb, 0x04, 0xc7, 0x49, 0x73, 0x74, 0x25, 0x5e,
9827 0xe6, 0x1e, 0xca, 0xdc, 0x2c, 0x95, 0xf6, 0xe8, 0x8c, 0xdb, 0x2f, 0x33,
9828 0x5a, 0xc3, 0x64, 0x9e, 0xbb, 0x74, 0xb6, 0x98, 0xd1, 0x10, 0x5d, 0x0e,
9829 0x91, 0xcc, 0x30, 0x30, 0xab, 0xcb, 0x4b, 0xfb, 0xa2, 0x3d, 0x7d, 0x0d,
9830 0x05, 0x38, 0x6d, 0x8a, 0x8a, 0xf5, 0x35, 0x75, 0x2a, 0xc8, 0x0e, 0xfd,
9831 0xf7, 0xe0, 0x7f, 0xc3, 0xaa, 0xbb, 0x5b, 0x66, 0x0f, 0x6c, 0x6f, 0xfd,
9832 0x2a, 0xdb, 0x20, 0x3a, 0xcc, 0x16, 0xb3, 0x2f, 0xfc, 0x97, 0xf4, 0x45,
9833 0x1f, 0xb1, 0xbf, 0x94, 0x72, 0xda, 0x28, 0x92, 0x70, 0x35, 0x2a, 0xe4,
9834 0x82, 0x46, 0xd6, 0x2e, 0x61, 0xdd, 0x44, 0x76, 0xd9, 0x58, 0x48, 0x4a,
9835 0x9b, 0x7c, 0xc5, 0x3e, 0x02, 0xd9, 0x5e, 0x57, 0x6c, 0x2b, 0x2e, 0xe6,
9836 0x7d, 0xef, 0x9d, 0x54, 0xce, 0x19, 0xe7, 0x2f, 0x3c, 0x7e, 0x4b, 0x2a,
9837 0xb4, 0x24, 0xb6, 0x85, 0x19, 0x25, 0xb2, 0x86, 0x26, 0x74, 0x9d, 0x96,
9838 0xa1, 0xf2, 0x0a, 0x11, 0x7b, 0x24, 0x8b, 0xbd, 0x93, 0x98, 0xdd, 0xc0,
9839 0xdc, 0xe3, 0xe2, 0x00, 0x89, 0xc2, 0xec, 0xd1, 0x55, 0x68, 0x3c, 0x50,
9840 0x7e, 0x7c, 0x37, 0x96, 0xa3, 0x2b, 0xe7, 0x16, 0x5f, 0x7b, 0x6f, 0xeb,
9841 0x45, 0x37, 0xda, 0xdb, 0x79, 0xd9, 0xc5, 0x9a, 0x64, 0xfc, 0xb1, 0x83,
9842 0x3f, 0x76, 0xf1, 0x92, 0x7d, 0x50, 0x69, 0x97, 0xa8, 0x72, 0xe1, 0x5e,
9843 0x93, 0x92, 0x6b, 0x84, 0x67, 0xc0, 0x30, 0x5f, 0x38, 0x5a, 0x5d, 0xec,
9844 0x10, 0x5c, 0x13, 0xfd, 0x58, 0x4e, 0xdd, 0xc6, 0x29, 0xb1, 0xa4, 0x57,
9845 0x60, 0x42, 0x05, 0xd6, 0xa2, 0x4a, 0xdb, 0xdc, 0x69, 0xf8, 0xb7, 0xba,
9846 0x06, 0xa6, 0x42, 0x62, 0x2b, 0x2d, 0x75, 0x40, 0x20, 0xf1, 0x82, 0x3a,
9847 0x3f, 0x04, 0x60, 0xf4, 0xe2, 0x54, 0x70, 0x5f, 0x90, 0x65, 0xe1, 0x54,
9848 0x4e, 0xa7, 0x6c, 0x05, 0xa2, 0x70, 0x29, 0x91, 0x71, 0xd9, 0x6f, 0x59,
9849 0xba, 0x7d, 0xe6, 0x0d, 0xd2, 0x7f, 0x60, 0x7d, 0xa6, 0xe4, 0x7b, 0x50,
9850 0xa0, 0x60, 0x2a, 0xf9, 0x75, 0xd2, 0x77, 0x79, 0x9f, 0xb2, 0x87, 0x5c,
9851 0x32, 0x65, 0x6a, 0xe7, 0x46, 0xa8, 0x4d, 0x96, 0xc9, 0xcf, 0x16, 0x31,
9852 0x94, 0xdc, 0x01, 0xed, 0xb9, 0x7b, 0x46, 0x64, 0xce, 0x3f, 0x7b, 0x6e,
9853 0xf7, 0x9d, 0xf6, 0x6e, 0x9e, 0x32, 0xdb, 0xd8, 0xa2, 0xb0, 0x0c, 0x2c,
9854 0xad, 0x48, 0x70, 0xe7, 0x95, 0x08, 0x05, 0x06, 0xf3, 0x96, 0xe8, 0x6f,
9855 0x9b, 0x70, 0x19, 0x90, 0x51, 0x47, 0xeb, 0xfa, 0xbc, 0xff, 0xec, 0x99,
9856 0x41, 0x0f, 0xe5, 0xd2, 0xec, 0x7c, 0x66, 0xea, 0xb0, 0x59, 0x98, 0x93,
9857 0x63, 0xa9, 0x77, 0x84, 0x4e, 0xe2, 0x83, 0x50, 0xe8, 0x5d, 0x75, 0x7a,
9858 0x29, 0xbf, 0x83, 0x33, 0x80, 0xc4, 0x11, 0x65, 0x0f, 0x25, 0x04, 0x8d,
9859 0x08, 0x93, 0xfd, 0x94, 0xe5, 0xb7, 0x9a, 0x9f, 0x26, 0xe9, 0x40, 0xb4,
9860 0xb1, 0x92, 0xbb, 0xca, 0xe3, 0xec, 0x90, 0x46, 0xf9, 0x7b, 0x08, 0xc4,
9861 0xe8, 0xf9, 0x53, 0x64, 0x9f, 0x3d, 0x12, 0x1c, 0x21, 0x58, 0xc6, 0xdc,
9862 0xaa, 0xef, 0xfa, 0xe7, 0x74, 0x1c, 0x1d, 0x6a, 0x63, 0xd5, 0x30, 0x82,
9863 0x36, 0x6e, 0x35, 0xb8, 0x12, 0x78, 0xe2, 0x67, 0x36, 0xcb, 0xf5, 0xf2,
9864 0x68, 0x5d, 0x46, 0xd8, 0xe8, 0x6a, 0x5a, 0xdc, 0xe0, 0x68, 0x70, 0x16,
9865 0x5d, 0x9c, 0x1d, 0x9d, 0xbe, 0x83, 0x7b, 0x7a, 0x7e, 0x4c, 0xca, 0x34,
9866 0xc2, 0x21, 0x1c, 0x74, 0xcf, 0x9e, 0x68, 0x34, 0xcb, 0xa9, 0x3f, 0xc8,
9867 0xef, 0x52, 0x31, 0x26, 0x95, 0xa1, 0x06, 0xc8, 0xd2, 0x5b, 0x68, 0x59,
9868 0x5b, 0x6b, 0x66, 0x9e, 0x59, 0xb1, 0x5a, 0x7f, 0x05, 0xb7, 0xbc, 0x9c,
9869 0x97, 0x0a, 0x98, 0x27, 0x35, 0x8e, 0xf9, 0xd0, 0xdb, 0x20, 0xed, 0xa4,
9870 0x8d, 0x8d, 0x4e, 0x1e, 0xe6, 0xc4, 0x16, 0x2c, 0x70, 0x9d, 0x33, 0x34,
9871 0x35, 0x0d, 0x6a, 0x94, 0xa0, 0x07, 0xcb, 0xdd, 0x22, 0xaa, 0xb3, 0xc6,
9872 0xa2, 0x6d, 0xa1, 0x92, 0x28, 0x12, 0x0e, 0x80, 0x88, 0x20, 0xde, 0x99,
9873 0xb8, 0x0c, 0xe1, 0x63, 0xad, 0x95, 0x9e, 0xe7, 0x7c, 0x98, 0xdf, 0x75,
9874 0x6d, 0x6c, 0x84, 0xc3, 0x41, 0x85, 0x53, 0x5c, 0x71, 0x05, 0xd2, 0x92,
9875 0x9a, 0x8b, 0x08, 0x82, 0x5e, 0xce, 0x4d, 0x85, 0xb1, 0x57, 0xb0, 0x8f,
9876 0x6e, 0x32, 0x03, 0xf3, 0x00, 0x06, 0x74, 0xf3, 0x32, 0x56, 0x65, 0xe1,
9877 0x1a, 0xcb, 0xe1, 0x7f, 0xe9, 0x2c, 0x5e, 0x21, 0x52, 0x8d, 0x59, 0x4b,
9878 0x59, 0x4f, 0xb3, 0x77, 0x6a, 0xbd, 0xe9, 0x9e, 0xd5, 0x8d, 0x29, 0x7a,
9879 0x50, 0xda, 0x54, 0x1c, 0x4f, 0xa8, 0xda, 0xde, 0x54, 0x99, 0x5a, 0x3c,
9880 0x85, 0x8c, 0x99, 0xb6, 0xce, 0x7a, 0x4f, 0x7a, 0xb9, 0xb4, 0x58, 0xf1,
9881 0x9d, 0x5c, 0x92, 0xd4, 0x5e, 0x69, 0xb7, 0x61, 0x9a, 0xff, 0x56, 0x2d,
9882 0x6a, 0xb9, 0x53, 0x7d, 0x7b, 0x72, 0x02, 0x3d, 0xdc, 0xb6, 0x29, 0xf7,
9883 0xa6, 0xc2, 0x9d, 0x67, 0x08, 0xb0, 0x8a, 0xa3, 0x54, 0x51, 0xa8, 0xff,
9884 0x09, 0x5d, 0xb3, 0x29, 0x55, 0x95, 0x4f, 0x29, 0xd5, 0xa9, 0x3d, 0xd3,
9885 0x1d, 0x6d, 0x45, 0x79, 0x18, 0x6e, 0xb8, 0xee, 0x8e, 0xbe, 0xac, 0xdf,
9886 0xed, 0x80, 0x10, 0xe7, 0xaf, 0xf3, 0xdb, 0xf6, 0x44, 0x68, 0xda, 0xa3,
9887 0xec, 0x89, 0x28, 0xe9, 0x6a, 0xcc, 0x7a, 0xaf, 0x64, 0x17, 0x1b, 0x35,
9888 0x0d, 0xc7, 0xb0, 0x49, 0xd2, 0x70, 0x50, 0x94, 0xf1, 0x55, 0xa0, 0xb1,
9889 0x47, 0xca, 0xa8, 0xb3, 0xcb, 0x53, 0xd5, 0xd0, 0xfa, 0x99, 0xe6, 0x43,
9890 0xe0, 0x68, 0x6e, 0x4c, 0x26, 0x2e, 0x33, 0xcd, 0xe9, 0xaa, 0x81, 0xd8,
9891 0x68, 0x31, 0x57, 0x00, 0x6f, 0x01, 0xd4, 0x8a, 0xde, 0x41, 0x97, 0x48,
9892 0xb4, 0x7a, 0x0f, 0x39, 0x4b, 0x13, 0xf3, 0xca, 0xab, 0x2e, 0x4c, 0x8e,
9893 0x6b, 0x71, 0x45, 0x60, 0xee, 0xb3, 0xa4, 0xaa, 0x15, 0x1f, 0x3b, 0x84,
9894 0xf4, 0xf4, 0x06, 0x7a, 0x14, 0x39, 0x99, 0xff, 0xbe, 0x48, 0x13, 0xc2,
9895 0x92, 0x4b, 0x4c, 0x5c, 0x85, 0xc8, 0xac, 0xc3, 0x46, 0x34, 0x2c, 0x5e,
9896 0x6a, 0xa8, 0xee, 0xe9, 0x0d, 0xb0, 0x0a, 0x20, 0x59, 0xde, 0xd2, 0x42,
9897 0x1d, 0xe3, 0xab, 0xcd, 0x40, 0x5d, 0xa3, 0xb4, 0x08, 0x01, 0x04, 0xc6,
9898 0x9f, 0x5a, 0x9d, 0x45, 0x15, 0xb6, 0x94, 0x00, 0x4c, 0xaa, 0x55, 0x5c,
9899 0x7e, 0xf2, 0x6d, 0xc1, 0x6e, 0x34, 0xcf, 0x2b, 0xd6, 0xaf, 0x10, 0xf2,
9900 0xfc, 0x26, 0x31, 0x07, 0x1d, 0xcc, 0x05, 0xb4, 0xc1, 0x78, 0xba, 0x59,
9901 0x56, 0x63, 0xd4, 0x62, 0x17, 0xd9, 0x14, 0x27, 0x89, 0x43, 0xa9, 0x33,
9902 0xbc, 0xc9, 0x10, 0x55, 0xa8, 0x25, 0x4b, 0x9d, 0xfa, 0xde, 0x89, 0x5a,
9903 0xb3, 0xf7, 0x8c, 0xf2, 0xa7, 0x34, 0xf1, 0xa0, 0x94, 0x2a, 0xe9, 0xb4,
9904 0xc8, 0x6f, 0x4a, 0xf4, 0xab, 0xf1, 0xe8, 0xaa, 0xc8, 0xfa, 0x2b, 0xfa,
9905 0x28, 0x6f, 0x70, 0xa5, 0x61, 0x57, 0x0f, 0xf3, 0x92, 0x30, 0x00, 0x80,
9906 0x36, 0xf0, 0x78, 0xd9, 0xab, 0xcb, 0x58, 0x84, 0xfb, 0x40, 0xec, 0xad,
9907 0xd8, 0x0d, 0x84, 0xfa, 0x5b, 0xed, 0x39, 0xbd, 0x40, 0xaa, 0x46, 0xc2,
9908 0x8d, 0xab, 0x22, 0xf8, 0x98, 0xc5, 0x0f, 0x34, 0x02, 0x81, 0x07, 0x1a,
9909 0xaf, 0x14, 0xc9, 0x2c, 0x04, 0x72, 0xa1, 0xee, 0xa4, 0xad, 0xad, 0x23,
9910 0x42, 0xb9, 0x00, 0xf5, 0xbe, 0x7f, 0x6a, 0xff, 0x69, 0xc8, 0xde, 0x68,
9911 0x4e, 0xa1, 0x0e, 0x4a, 0x8f, 0xec, 0xfa, 0x84, 0xe1, 0x59, 0x83, 0x05,
9912 0xa1, 0xb2, 0xc0, 0x6d, 0x7d, 0x61, 0x3a, 0xe1, 0x05, 0x22, 0x42, 0xb0,
9913 0x43, 0x16, 0x82, 0xe7, 0x3f, 0x9a, 0x82, 0x19, 0x12, 0x88, 0x5c, 0xd7,
9914 0x3c, 0x7d, 0x98, 0x64, 0xb2, 0x40, 0x8b, 0x79, 0xba, 0xc0, 0xc7, 0x99,
9915 0x70, 0x0e, 0x37, 0x7a, 0x32, 0xf5, 0xd7, 0xb2, 0x9e, 0x34, 0x81, 0xb0,
9916 0x9f, 0x97, 0xbb, 0x33, 0x68, 0xa3, 0x60, 0xd3, 0xff, 0xac, 0xd9, 0x4e,
9917 0xa7, 0xc5, 0xd6, 0x60, 0x0f, 0x6c, 0xd7, 0x69, 0x1a, 0x52, 0x8b, 0xdc,
9918 0x63, 0xb5, 0x8a, 0x99, 0x0b, 0xb7, 0x41, 0x93, 0xae, 0x1a, 0xc1, 0xce,
9919 0x57, 0xa6, 0x9e, 0xc7, 0xcc, 0x4b, 0xcd, 0x01, 0x05, 0xf5, 0x26, 0x88,
9920 0x20, 0xa7, 0x4d, 0x9a, 0xc9, 0x1d, 0x69, 0x92, 0x94, 0xeb, 0x4f, 0xb8,
9921 0x58, 0x85, 0x6c, 0x57, 0x09, 0xc4, 0x97, 0x2a, 0x38, 0x6a, 0xb3, 0x51,
9922 0xcb, 0xd5, 0x5c, 0xd5, 0x4c, 0x95, 0xd4, 0x06, 0x1d, 0x74, 0xd7, 0x46,
9923 0x2d, 0x89, 0x35, 0xaf, 0x75, 0xb4, 0xfe, 0xbd, 0xed, 0x1b, 0x59, 0x70,
9924 0x64, 0x79, 0x6a, 0x0c, 0xb8, 0xb7, 0xf5, 0xf2, 0xd9, 0x53, 0xfa, 0x06,
9925 0xed, 0xc5, 0x5e, 0x5b, 0x18, 0xfe, 0xa3, 0xa7, 0x43, 0xfb, 0x62, 0x23,
9926 0x7e, 0x92, 0xdc, 0x88, 0x1f, 0x27, 0x38, 0x5a, 0xf0, 0xa8, 0x96, 0x09,
9927 0x0e, 0x6e, 0x82, 0x55, 0x7e, 0x2a, 0x9b, 0x7d, 0xd5, 0xda, 0x92, 0x45,
9928 0x6c, 0xca, 0x55, 0x50, 0xb9, 0xaa, 0xbb, 0xda, 0x57, 0xd8, 0xf8, 0xec,
9929 0x86, 0xfd, 0x25, 0xdb, 0xfe, 0x29, 0xbb, 0x3e, 0x5e, 0x75, 0xdb, 0xc7,
9930 0xbf, 0xd3, 0xbe, 0x7f, 0xe2, 0xb6, 0x0f, 0xef, 0xfb, 0xa7, 0x6d, 0xfc,
9931 0xff, 0x43, 0xf6, 0x7d, 0xfc, 0x2b, 0x6c, 0xfc, 0x95, 0xf7, 0xfd, 0x3e,
9932 0xb7, 0x15, 0x6b, 0xb2, 0xad, 0x57, 0xc0, 0x86, 0x66, 0x33, 0x0e, 0xb0,
9933 0x69, 0x1a, 0xdf, 0x35, 0xbc, 0x14, 0xb7, 0xce, 0x4a, 0x84, 0x53, 0x98,
9934 0x73, 0x65, 0xa7, 0x7d, 0xe5, 0x03, 0x03, 0x7d, 0xbd, 0x74, 0x64, 0x2f,
9935 0x2c, 0xa6, 0x0d, 0x89, 0x6d, 0xde, 0x52, 0xdf, 0xa8, 0x81, 0xfc, 0x4e,
9936 0x57, 0xa0, 0xa8, 0xcd, 0x53, 0x92, 0x16, 0xa0, 0x80, 0x02, 0xcb, 0x47,
9937 0x5f, 0x0f, 0x06, 0xbd, 0xa3, 0x8b, 0xd3, 0xe8, 0x01, 0x87, 0x0c, 0xde,
9938 0xe2, 0xcc, 0x31, 0x5d, 0x59, 0xd9, 0xab, 0x51, 0xd5, 0x2e, 0xc6, 0x2f,
9939 0x5e, 0xd9, 0xfd, 0x65, 0xc5, 0x68, 0xf5, 0xd7, 0x06, 0xeb, 0xa5, 0xb9,
9940 0x9e, 0x47, 0x65, 0x54, 0xc3, 0x3d, 0x50, 0x6a, 0xa8, 0x29, 0x48, 0xf6,
9941 0xb2, 0x76, 0x17, 0xa6, 0xf2, 0x12, 0xf4, 0x5f, 0xa3, 0x00, 0xa7, 0x0b,
9942 0xbc, 0xdc, 0x27, 0x6c, 0x87, 0x41, 0xad, 0x2c, 0xb6, 0x5f, 0x3e, 0xdb,
9943 0x06, 0x11, 0x70, 0xcf, 0x29, 0x54, 0x72, 0xf3, 0x5e, 0x7f, 0x77, 0x73,
9944 0xaf, 0xbf, 0x87, 0xe2, 0x5d, 0xb2, 0xb5, 0x29, 0x11, 0x57, 0x86, 0x0f,
9945 0x27, 0x24, 0xb1, 0x94, 0x7f, 0x77, 0x72, 0x1c, 0x71, 0x31, 0x3d, 0x35,
9946 0x88, 0x6b, 0xf8, 0x81, 0xa4, 0xbe, 0x10, 0x4f, 0x15, 0xe1, 0x1d, 0xde,
9947 0x9f, 0x9e, 0x57, 0xd6, 0x23, 0x87, 0x3a, 0x03, 0x08, 0x93, 0x3d, 0x33,
9948 0x13, 0x41, 0xc1, 0xcd, 0x7e, 0x01, 0xed, 0xaf, 0x01, 0x5f, 0xf9, 0x10,
9949 0x71, 0x0e, 0x49, 0x1c, 0x82, 0x3d, 0x91, 0x31, 0x9c, 0x49, 0xfd, 0x9a,
9950 0xdc, 0xd1, 0xca, 0x0c, 0xea, 0xed, 0x68, 0xf1, 0x97, 0xd8, 0xc8, 0xaf,
9951 0xe7, 0x16, 0x91, 0x93, 0xc5, 0xf8, 0xe4, 0xca, 0xa8, 0x18, 0xcd, 0x8c,
9952 0x07, 0x63, 0xf2, 0xf7, 0x71, 0xd6, 0x5f, 0xd5, 0xfd, 0x92, 0x56, 0xcb,
9953 0xbc, 0x2c, 0x86, 0x1e, 0x2c, 0x1f, 0xc4, 0xb9, 0xd2, 0xf6, 0x42, 0xe2,
9954 0x51, 0xf1, 0xda, 0xf8, 0x10, 0xbf, 0xa1, 0xc8, 0x62, 0x17, 0x89, 0x33,
9955 0x94, 0x19, 0x3f, 0xf0, 0x99, 0x8e, 0x1e, 0xf0, 0x47, 0xe2, 0xc3, 0x78,
9956 0xac, 0x22, 0x89, 0xa7, 0x32, 0x2b, 0xe7, 0x39, 0xfe, 0x97, 0xd4, 0x10,
9957 0x9b, 0xf2, 0xa1, 0xfd, 0x0a, 0x5c, 0x89, 0x1d, 0x3b, 0x53, 0x30, 0xee,
9958 0x8a, 0x59, 0x5c, 0x8d, 0xb4, 0x57, 0x1e, 0x1c, 0xd4, 0xe9, 0x1c, 0x8e,
9959 0x9a, 0x27, 0x39, 0x8a, 0x82, 0xf4, 0x62, 0x1f, 0xd5, 0xbf, 0x82, 0xe7,
9960 0x82, 0x87, 0x89, 0x18, 0x77, 0x0a, 0x75, 0xa6, 0x12, 0x68, 0xc9, 0x29,
9961 0x22, 0x05, 0x67, 0xcd, 0x80, 0x62, 0xe0, 0x08, 0x69, 0x19, 0x0c, 0x11,
9962 0x46, 0xec, 0x51, 0xa1, 0x8c, 0xde, 0xd4, 0x12, 0xd2, 0x49, 0x64, 0xba,
9963 0xee, 0x61, 0x98, 0xc5, 0x66, 0x80, 0xe8, 0xb0, 0x02, 0x01, 0xba, 0xd1,
9964 0x3c, 0x65, 0x42, 0x27, 0x67, 0x95, 0xcb, 0x89, 0xf3, 0xe0, 0xb1, 0xf6,
9965 0x6b, 0x9d, 0x34, 0x72, 0xd6, 0xfd, 0x8b, 0x8f, 0x1a, 0x7d, 0xca, 0x53,
9966 0xac, 0x06, 0x59, 0xbc, 0x68, 0x9d, 0xaa, 0x7c, 0x04, 0x88, 0x51, 0x35,
9967 0x7c, 0xd7, 0xfa, 0x0f, 0xd5, 0xcb, 0xd0, 0x8e, 0xd8, 0xb0, 0x98, 0x28,
9968 0xcb, 0xba, 0x45, 0x37, 0x2c, 0x0c, 0xef, 0x14, 0x5b, 0xda, 0xb1, 0xf4,
9969 0xbf, 0x95, 0x97, 0x80, 0x97, 0xbd, 0x17, 0xc2, 0xd3, 0xd3, 0xd6, 0xce,
9970 0x6d, 0x96, 0x03, 0x37, 0x43, 0xff, 0xff, 0x3d, 0x06, 0xff, 0x7d, 0x2d,
9971 0x07, 0x67, 0x37, 0xd6, 0x5a, 0x0e, 0x1f, 0x3c, 0xdf, 0xda, 0xda, 0xfa,
9972 0x25, 0x7d, 0x87, 0xc5, 0x2e, 0xf1, 0xb7, 0xff, 0x83, 0xbb, 0xbe, 0x56,
9973 0x79, 0xd7, 0xdc, 0xf7, 0x3d, 0x29, 0xc7, 0x0f, 0x98, 0xed, 0x61, 0xe4,
9974 0x98, 0xe9, 0xc3, 0x9e, 0x49, 0xde, 0xee, 0x94, 0x62, 0x92, 0x96, 0xb6,
9975 0xfb, 0xbb, 0xcf, 0x79, 0x0f, 0x6c, 0xf9, 0xff, 0x36, 0x1e, 0x02, 0xd5,
9976 0x92, 0x1e, 0xed, 0x21, 0xd8, 0xff, 0xff, 0x1d, 0x04, 0xff, 0x46, 0xdb,
9977 0xbc, 0x9d, 0x09, 0xd6, 0xb1, 0xd4, 0x01, 0x6b, 0x51, 0xe0, 0x5f, 0xdd,
9978 0x82, 0x1b, 0x56, 0x49, 0x44, 0xe4, 0x36, 0xa6, 0xdc, 0xe9, 0xc5, 0x37,
9979 0xcf, 0xba, 0x04, 0x1d, 0x3e, 0xf0, 0x51, 0xf4, 0xcf, 0x5e, 0x1d, 0x5d,
9980 0xf4, 0x9f, 0x22, 0x4b, 0x7e, 0x2d, 0x11, 0x62, 0x65, 0x52, 0x9b, 0x2c,
9981 0xf9, 0x1b, 0x39, 0x2b, 0xe6, 0x49, 0x32, 0xee, 0x71, 0xd2, 0xcc, 0x21,
9982 0xfd, 0x11, 0xcc, 0x47, 0x53, 0x50, 0x76, 0xda, 0x22, 0x98, 0x4b, 0x23,
9983 0x99, 0x84, 0x4e, 0xe2, 0x23, 0xdd, 0x0c, 0xea, 0x5c, 0x26, 0x5d, 0x1c,
9984 0xb0, 0xae, 0xae, 0xf4, 0x5d, 0x8f, 0x79, 0x36, 0xde, 0x60, 0x18, 0x3a,
9985 0x7a, 0x32, 0x31, 0xa6, 0xe4, 0x80, 0xa2, 0xf4, 0xb8, 0xc2, 0xae, 0x4c,
9986 0xda, 0xf1, 0xd1, 0xbd, 0x86, 0xc4, 0x4a, 0xe9, 0x65, 0x13, 0xca, 0x7e,
9987 0x73, 0x2e, 0x94, 0x0e, 0x5e, 0xbb, 0x5b, 0x18, 0xbd, 0x14, 0x64, 0xe7,
9988 0xdf, 0xfd, 0x98, 0x70, 0xa8, 0xbc, 0xbb, 0xb5, 0x55, 0x9f, 0xf0, 0xaa,
9989 0xc9, 0x84, 0xf7, 0xdd, 0xda, 0xfd, 0xf8, 0x17, 0x8d, 0xdc, 0x2b, 0x4c,
9990 0x4c, 0xb9, 0x9e, 0x84, 0x69, 0x97, 0xbc, 0x71, 0x6b, 0x6b, 0xf6, 0xed,
9991 0xd2, 0x35, 0x77, 0x5f, 0xa6, 0xb6, 0xd4, 0x98, 0xc7, 0xc6, 0x19, 0x38,
9992 0x9e, 0xdc, 0x70, 0x9e, 0xc9, 0x89, 0xa6, 0x4c, 0x5c, 0xf3, 0x88, 0xfa,
9993 0xb2, 0x9f, 0x4e, 0xdc, 0x1b, 0x3c, 0xff, 0x93, 0xc1, 0x58, 0x4b, 0x8c,
9994 0x51, 0x11, 0xd5, 0x66, 0x65, 0xf3, 0x7c, 0xb7, 0x35, 0xa6, 0x69, 0x71,
9995 0x41, 0xfe, 0xe6, 0x97, 0x44, 0x38, 0xf7, 0x2e, 0xaf, 0xab, 0xcc, 0xb3,
9996 0xaa, 0xc8, 0x11, 0x4b, 0xda, 0x94, 0x82, 0xb1, 0x8c, 0x5b, 0x94, 0x35,
9997 0x88, 0xe0, 0x98, 0x00, 0x3f, 0x22, 0xa2, 0x9a, 0x97, 0x52, 0x28, 0xf2,
9998 0x32, 0x4a, 0xaa, 0x51, 0xdf, 0x32, 0x22, 0xf5, 0x9c, 0x1b, 0x61, 0x79,
9999 0x6d, 0xc1, 0x39, 0x80, 0x70, 0xec, 0x74, 0xb9, 0x56, 0x97, 0xc0, 0x50,
10000 0x5a, 0x3c, 0x7b, 0x9a, 0x31, 0xdb, 0x02, 0x93, 0xf2, 0xdf, 0x99, 0xcd,
10001 0x3d, 0xf1, 0xc4, 0x72, 0xcc, 0xb2, 0x7a, 0x4d, 0x2d, 0xc2, 0x14, 0x16,
10002 0xf4, 0x78, 0xf4, 0x86, 0x49, 0xec, 0x15, 0xdc, 0xfb, 0x60, 0xe0, 0xea,
10003 0x5a, 0x35, 0x12, 0x3d, 0x2e, 0xb8, 0xa2, 0x09, 0xf9, 0x18, 0x58, 0xb8,
10004 0xba, 0xc7, 0xaa, 0xbf, 0x5b, 0x01, 0xf8, 0x6a, 0xce, 0x71, 0x70, 0xb6,
10005 0x4b, 0xb3, 0xb9, 0x3c, 0x1b, 0x6c, 0xf7, 0xb7, 0xcc, 0xa1, 0x5e, 0x52,
10006 0x3e, 0x1f, 0xa1, 0x1c, 0x7e, 0x75, 0x72, 0x34, 0xb8, 0xec, 0x87, 0x16,
10007 0xc0, 0x87, 0xc1, 0xb1, 0xa8, 0xa7, 0xd8, 0x6a, 0x69, 0x1a, 0xdf, 0x63,
10008 0x33, 0x46, 0x01, 0x4f, 0xc4, 0xb9, 0xf1, 0xd4, 0x74, 0x70, 0x74, 0xe6,
10009 0x30, 0xee, 0x0c, 0xd5, 0x25, 0xf8, 0x1d, 0xbf, 0x60, 0x65, 0xa5, 0xc8,
10010 0xd1, 0x94, 0x57, 0x12, 0xe3, 0x53, 0x89, 0x54, 0x3e, 0xc5, 0x64, 0x44,
10011 0x7c, 0x4e, 0xdd, 0xb5, 0xb7, 0x04, 0x8a, 0xd9, 0x9d, 0xff, 0x14, 0x81,
10012 0x2f, 0xa5, 0xff, 0x1b, 0x0e, 0xa2, 0xc4, 0xe2, 0xdc, 0x32, 0x03, 0x82,
10013 0x14, 0x28, 0x75, 0xa5, 0xf6, 0x03, 0xd4, 0x55, 0xa4, 0xfc, 0xa4, 0xf9,
10014 0x5b, 0xa3, 0x6a, 0x7a, 0x4f, 0xa9, 0x61, 0x2b, 0xf3, 0x59, 0x7d, 0xb5,
10015 0x57, 0x3c, 0x1f, 0x25, 0xdf, 0xa6, 0x31, 0x06, 0x71, 0xd7, 0x27, 0xe4,
10016 0xb9, 0x34, 0xa3, 0xd7, 0xf2, 0xf9, 0x6b, 0x51, 0xe5, 0xbd, 0xd1, 0x14,
10017 0x53, 0x94, 0x7b, 0xb0, 0x4d, 0xab, 0x80, 0x9b, 0xc5, 0xed, 0xc8, 0x5e,
10018 0x47, 0x83, 0x26, 0xe0, 0x20, 0x96, 0xce, 0x8c, 0x11, 0x12, 0xf1, 0x48,
10019 0xf0, 0x2f, 0x0c, 0x05, 0xea, 0xb3, 0xaf, 0x76, 0x57, 0xe2, 0xc9, 0xaa,
10020 0xfb, 0x2d, 0xba, 0xec, 0xa3, 0x91, 0x1c, 0x7c, 0xdb, 0xff, 0xcd, 0x22,
10021 0x91, 0xd1, 0x72, 0x85, 0xf0, 0xbc, 0x90, 0xfd, 0xdc, 0x9e, 0x2a, 0x92,
10022 0x8c, 0x33, 0x40, 0xe7, 0x60, 0x96, 0x4c, 0x51, 0x1f, 0x43, 0xf7, 0x23,
10023 0x41, 0x84, 0x28, 0x74, 0x35, 0xae, 0x32, 0xbc, 0x55, 0x73, 0xb8, 0x21,
10024 0xf6, 0x52, 0xdf, 0xe8, 0x47, 0x17, 0x20, 0xcb, 0x29, 0x03, 0xfc, 0x79,
10025 0xff, 0xf9, 0x73, 0xd8, 0x0a, 0x8c, 0x7b, 0x19, 0xd7, 0x51, 0xa1, 0x09,
10026 0x5f, 0x2a, 0xe5, 0xcc, 0x10, 0x21, 0x50, 0xe8, 0x14, 0xd7, 0x79, 0xf4,
10027 0x45, 0x0b, 0x76, 0x11, 0x57, 0x63, 0xf3, 0xc6, 0x64, 0x0e, 0x08, 0xcd,
10028 0x88, 0x46, 0xc8, 0x40, 0x1e, 0xb0, 0x14, 0xbd, 0x5f, 0x69, 0x89, 0xdc,
10029 0xf0, 0xfd, 0x28, 0x70, 0xdf, 0xf9, 0xa0, 0x36, 0x54, 0x59, 0x11, 0x04,
10030 0x6f, 0xe5, 0xc9, 0x6c, 0x41, 0x3c, 0x41, 0x17, 0x7d, 0x7a, 0x13, 0x8f,
10031 0xee, 0x23, 0x78, 0x9d, 0xa9, 0xb8, 0xed, 0x71, 0x45, 0x0d, 0xd4, 0xf9,
988310032 0x93, 0x38, 0xb9, 0xc1, 0x57, 0x4f, 0x67, 0xe7, 0xc6, 0x40, 0xf5, 0x3a,
9884 0xbb, 0xe7, 0x0d, 0x3f, 0x12, 0xbc, 0x40, 0xc0, 0xc5, 0x08, 0x60, 0xe6,
9885 0x81, 0x1b, 0xc9, 0x56, 0x6c, 0x2c, 0x11, 0x9d, 0x9a, 0xc8, 0xe3, 0x12,
10033 0xbb, 0xe7, 0x0d, 0x3f, 0x12, 0xdc, 0x40, 0xd0, 0xd5, 0x08, 0x60, 0xe6,
10034 0x81, 0x1b, 0xc9, 0x52, 0x6c, 0x2c, 0x11, 0x9d, 0x9a, 0xc8, 0xe3, 0x12,
988610035 0x10, 0x47, 0x1b, 0x05, 0xb1, 0xe4, 0xa2, 0xd1, 0x75, 0x02, 0x0a, 0x68,
988710036 0xff, 0x29, 0x82, 0xa5, 0xc9, 0x7b, 0xae, 0x98, 0xf9, 0xf5, 0x05, 0x8b,
988810037 0x21, 0xca, 0xaa, 0x60, 0x05, 0xc5, 0x94, 0x2b, 0xa1, 0xdd, 0xdc, 0xbd,
9889 0x3d, 0x9f, 0xe8, 0xc0, 0xc7, 0xe3, 0x50, 0x87, 0x79, 0xc2, 0xa9, 0x22,
9890 0x40, 0x2c, 0x42, 0x90, 0x42, 0x03, 0x02, 0x1b, 0x92, 0xfd, 0x7d, 0x81,
9891 0x3d, 0xb1, 0x81, 0x26, 0x9b, 0x70, 0xdb, 0x88, 0x6b, 0x9b, 0x61, 0x84,
9892 0x4d, 0x47, 0x36, 0xcf, 0x9a, 0xe1, 0xb4, 0xae, 0xca, 0x34, 0x8e, 0xb5,
9893 0x8f, 0x52, 0x4a, 0x5f, 0x0b, 0x0a, 0xbd, 0x39, 0x37, 0xfe, 0x75, 0x87,
9894 0xdf, 0x7e, 0xc8, 0x72, 0x06, 0x8e, 0x19, 0x4f, 0x79, 0xe1, 0x38, 0x77,
9895 0xb1, 0x9e, 0x05, 0xac, 0x05, 0x68, 0xf1, 0x02, 0xb3, 0x49, 0x31, 0x8d,
9896 0x0d, 0x37, 0x2d, 0x50, 0x24, 0x6c, 0x85, 0x92, 0x6d, 0xcf, 0x9b, 0xcf,
9897 0x93, 0x6c, 0x3a, 0x8e, 0xe7, 0x54, 0x16, 0x90, 0x48, 0x99, 0x44, 0x91,
9898 0xfc, 0xc4, 0xd1, 0x23, 0x91, 0x7c, 0x57, 0x49, 0x06, 0x2a, 0x65, 0xd3,
9899 0x11, 0x5c, 0x7b, 0x0d, 0x16, 0x8d, 0x38, 0x87, 0xe9, 0x08, 0xd4, 0x08,
9900 0x24, 0x23, 0x95, 0xd3, 0x10, 0x65, 0xc7, 0x4b, 0x97, 0x85, 0x92, 0x0c,
9901 0xcb, 0x6a, 0x12, 0xc4, 0xf4, 0x34, 0x97, 0x7b, 0xaf, 0x37, 0xa9, 0xe6,
9902 0x66, 0x2f, 0x9f, 0xc2, 0x63, 0xf8, 0x9e, 0x0f, 0x91, 0xb5, 0xcc, 0xa6,
9903 0x2b, 0xa7, 0x8f, 0xb8, 0xa1, 0x98, 0x6f, 0xe1, 0x42, 0x2b, 0x2b, 0x04,
9904 0x9d, 0xf3, 0xb7, 0xf2, 0x51, 0x07, 0x3b, 0xbd, 0xca, 0x50, 0x0c, 0xba,
9905 0xe7, 0xfa, 0xe1, 0x83, 0x2d, 0x55, 0x0c, 0x88, 0x7d, 0x20, 0x45, 0x9c,
9906 0xe3, 0x05, 0xd5, 0x63, 0xcc, 0x52, 0x4a, 0x18, 0xdb, 0xcc, 0x27, 0x13,
9907 0x42, 0x3e, 0x04, 0xb1, 0x51, 0x15, 0xe9, 0x70, 0x11, 0x08, 0x1c, 0x52,
9908 0xd3, 0x5a, 0x8b, 0xd8, 0xc4, 0xdf, 0xb4, 0xdf, 0x60, 0x98, 0xb9, 0xa7,
9909 0x91, 0xbb, 0x49, 0x97, 0xa7, 0x9d, 0xed, 0xd0, 0x16, 0xd4, 0x64, 0xec,
9910 0x96, 0x77, 0xdc, 0x97, 0x1d, 0xee, 0x4b, 0x42, 0xe2, 0x21, 0x7d, 0x40,
9911 0xcf, 0xb7, 0xae, 0xbd, 0xfd, 0x70, 0xbf, 0x47, 0xdd, 0xbd, 0x92, 0xaa,
9912 0x2f, 0xee, 0x63, 0xc6, 0x33, 0x71, 0x4f, 0x79, 0x5a, 0x43, 0xac, 0x36,
9913 0xbe, 0x0b, 0x38, 0x62, 0xbd, 0x90, 0x3b, 0x4e, 0x4f, 0xb8, 0xbb, 0x64,
9914 0x65, 0x71, 0xb1, 0x79, 0xd4, 0x8b, 0x60, 0x98, 0x97, 0x9a, 0xaa, 0x4e,
9915 0xbc, 0x84, 0x44, 0x86, 0xd1, 0x9a, 0xc2, 0x24, 0xa7, 0x84, 0x2a, 0x9d,
9916 0x64, 0xa3, 0xe2, 0x9e, 0xb9, 0xec, 0x51, 0x27, 0xee, 0x57, 0x15, 0x24,
9917 0x22, 0x20, 0x82, 0x52, 0x44, 0xd8, 0xdc, 0x95, 0x36, 0x0f, 0x0b, 0x12,
9918 0x6f, 0xea, 0x82, 0x53, 0x82, 0xd4, 0x95, 0x62, 0x4f, 0x03, 0x99, 0x40,
9919 0x08, 0x91, 0x04, 0x12, 0x52, 0xdf, 0x50, 0xdd, 0x1c, 0x0c, 0x65, 0xfb,
9920 0x07, 0x8a, 0xf9, 0xdd, 0xd9, 0xb1, 0xd1, 0x28, 0xf9, 0x65, 0x42, 0x8a,
9921 0x62, 0x74, 0x58, 0x7e, 0xa1, 0x9e, 0xd5, 0x00, 0xe0, 0x3f, 0xf9, 0x37,
9922 0x2b, 0x17, 0x8a, 0x0d, 0x3d, 0xc4, 0xb6, 0x81, 0x20, 0x42, 0x88, 0x08,
9923 0x00, 0xfe, 0x64, 0x41, 0x3d, 0xe3, 0xda, 0x40, 0xb8, 0x1e, 0x3e, 0x8d,
9924 0xc0, 0x72, 0xf3, 0xdd, 0x47, 0x57, 0x27, 0xd4, 0x0e, 0x9b, 0x30, 0xe1,
9925 0x28, 0x9d, 0x5f, 0xc3, 0xe7, 0x9d, 0x93, 0xb6, 0xd3, 0xe5, 0xb1, 0x6f,
9926 0x76, 0x3c, 0x81, 0x37, 0x38, 0xab, 0xcb, 0x3a, 0xf5, 0x24, 0x03, 0xad,
9927 0x40, 0x63, 0x50, 0x64, 0x2c, 0x7b, 0x0c, 0x6f, 0x76, 0xba, 0x92, 0x7d,
9928 0x1c, 0xe8, 0x30, 0x47, 0x25, 0xe0, 0x99, 0x16, 0x89, 0x59, 0x8d, 0x17,
9929 0xf1, 0x1d, 0x8b, 0xc5, 0x48, 0x39, 0x58, 0x58, 0xab, 0xcf, 0xe3, 0x45,
9930 0x8c, 0x08, 0x36, 0x4e, 0x3c, 0x4e, 0xb5, 0x4d, 0x5c, 0x23, 0xb3, 0x44,
9931 0xaa, 0x45, 0xc6, 0xd4, 0x8e, 0x67, 0xdb, 0xcf, 0x9f, 0x6d, 0x3c, 0x81,
9932 0xbe, 0xf0, 0xc1, 0x47, 0x0a, 0x37, 0x26, 0x31, 0x22, 0xad, 0xc2, 0xf3,
9933 0x88, 0x14, 0x2c, 0xf4, 0xc5, 0x7f, 0xee, 0xf4, 0x5d, 0xaa, 0xea, 0xd9,
9934 0x2d, 0xb5, 0x63, 0xa5, 0x07, 0x43, 0x98, 0x8d, 0x91, 0xfd, 0x90, 0x3e,
9935 0x6a, 0x02, 0x21, 0x5b, 0x0e, 0x17, 0xe9, 0x94, 0x0a, 0xdd, 0xb4, 0x8d,
9936 0x1f, 0x49, 0x19, 0xdf, 0xd1, 0xdf, 0xa4, 0x33, 0x3b, 0xfe, 0x7b, 0xbb,
9937 0x3a, 0x01, 0x36, 0xb7, 0x7b, 0xdb, 0x04, 0x0e, 0x3e, 0x2d, 0x6f, 0xb6,
9938 0x65, 0xa6, 0xf4, 0xf7, 0x7e, 0xfd, 0x5f, 0x3b, 0x0e, 0x5f, 0xd8, 0x01,
9939 0x7e, 0x39, 0x5f, 0xec, 0xfe, 0xca, 0x7c, 0xb1, 0xfb, 0x44, 0xbe, 0x78,
9940 0xbe, 0xff, 0xec, 0xc5, 0x93, 0xf8, 0x62, 0xf7, 0xd7, 0xe2, 0x0b, 0x67,
9941 0x5b, 0x7e, 0x1f, 0xbe, 0x70, 0x18, 0xf3, 0x69, 0x7c, 0xa1, 0x49, 0xfd,
9942 0xc1, 0x86, 0xcc, 0xef, 0x15, 0x07, 0x88, 0xea, 0x70, 0x11, 0xf5, 0x88,
9943 0x41, 0xd2, 0xe4, 0x1d, 0x0f, 0xa6, 0x91, 0x9b, 0x97, 0x30, 0xc2, 0x2b,
9944 0xfa, 0x2e, 0x03, 0x31, 0x18, 0xdb, 0xa7, 0x82, 0xfc, 0x7c, 0xf3, 0x69,
9945 0x0c, 0xdc, 0xb2, 0xd6, 0x5b, 0xd3, 0x00, 0xb9, 0xe2, 0xc3, 0x3a, 0x10,
9946 0x4b, 0x5c, 0x92, 0xf1, 0xfb, 0x57, 0xdd, 0xfc, 0xab, 0x5d, 0x88, 0x4c,
9947 0x64, 0xc1, 0xbb, 0xaa, 0xee, 0xaa, 0xa7, 0x17, 0x6f, 0xf0, 0xee, 0x3b,
9948 0x85, 0x3b, 0x75, 0x06, 0xb8, 0x07, 0x1d, 0x43, 0x5a, 0x8e, 0x05, 0x8b,
9949 0xf4, 0x4a, 0x53, 0x4f, 0xc9, 0x6e, 0x1c, 0xa5, 0xd5, 0x30, 0x9f, 0x22,
9950 0x39, 0x33, 0x14, 0x05, 0xf7, 0xd3, 0x44, 0x34, 0x5f, 0xdc, 0x39, 0xe4,
9951 0x72, 0x0c, 0x5a, 0x35, 0xd3, 0x26, 0xa8, 0x02, 0xb8, 0x6c, 0x16, 0xdd,
9952 0xf4, 0x25, 0x99, 0x05, 0xec, 0xcd, 0xda, 0x64, 0x48, 0xb1, 0x2b, 0x6f,
9953 0x53, 0xcc, 0x45, 0xa2, 0x7e, 0x97, 0x81, 0xf6, 0x37, 0xff, 0xf6, 0xb5,
9954 0x58, 0xb5, 0x05, 0xf5, 0x4e, 0x57, 0xdb, 0xc4, 0x53, 0x6d, 0xfe, 0xc7,
9955 0x3b, 0xe8, 0xee, 0x69, 0xbd, 0xe4, 0xb2, 0x59, 0x9f, 0x08, 0xc2, 0x84,
9956 0x2a, 0x73, 0xd4, 0x59, 0x2e, 0x94, 0x0f, 0xd5, 0xc8, 0x89, 0xdf, 0xa4,
9957 0x5a, 0x90, 0xe7, 0x4b, 0xb9, 0x9a, 0x5b, 0xc8, 0x21, 0x66, 0xd0, 0xc9,
9958 0xb1, 0x01, 0x7c, 0xc7, 0xdf, 0x12, 0xe8, 0xc6, 0x38, 0x0f, 0xa1, 0x98,
9959 0x2b, 0x86, 0x98, 0xe4, 0xcf, 0xd8, 0x97, 0xa5, 0xb4, 0x53, 0x26, 0xe1,
9960 0xc1, 0x08, 0x21, 0xba, 0x41, 0xe5, 0x83, 0xc4, 0xa8, 0x02, 0x26, 0x81,
9961 0xad, 0xf1, 0x62, 0x36, 0xd7, 0x06, 0x9e, 0x8c, 0x92, 0x2a, 0x30, 0x54,
9962 0x5c, 0xbe, 0x1f, 0x6b, 0x83, 0x2c, 0xe6, 0x9a, 0x6b, 0x2f, 0xde, 0x60,
9963 0x21, 0x77, 0x95, 0x0d, 0x0d, 0x6a, 0xbc, 0x62, 0xca, 0x9d, 0x56, 0xf5,
9964 0x66, 0x72, 0x58, 0xcf, 0x33, 0x4e, 0x86, 0x8b, 0xab, 0x16, 0x37, 0xa2,
9965 0x05, 0xb7, 0xb2, 0x47, 0x8d, 0xa6, 0x86, 0xcd, 0x84, 0x12, 0xae, 0xdf,
9966 0xcd, 0xee, 0xf1, 0xa2, 0xac, 0xc0, 0x60, 0x4b, 0x47, 0xab, 0x9b, 0x6c,
9967 0x2d, 0xfb, 0xe8, 0xac, 0xbe, 0x77, 0x27, 0xf4, 0x5e, 0x89, 0xb1, 0x5e,
9968 0x75, 0xeb, 0x14, 0x85, 0x7f, 0xa6, 0x5d, 0x67, 0x54, 0x62, 0xb7, 0x79,
9969 0xb7, 0xce, 0x1c, 0x4d, 0x03, 0xcc, 0xcd, 0xcd, 0x6a, 0xb8, 0x77, 0xaa,
9970 0xd1, 0xbc, 0x37, 0x89, 0xb1, 0x0d, 0xb1, 0x87, 0x59, 0x26, 0x85, 0xbf,
9971 0x72, 0xb2, 0x2e, 0x8f, 0x2f, 0xa2, 0xd7, 0x28, 0x2e, 0xcf, 0xe1, 0xc9,
9972 0x68, 0x1d, 0xae, 0xf5, 0xe7, 0x7b, 0xdb, 0xbb, 0x2b, 0xdf, 0xea, 0xee,
9973 0xf7, 0x56, 0xb4, 0x68, 0x27, 0xf0, 0xdf, 0xa4, 0x47, 0xca, 0x4c, 0xdd,
9974 0x63, 0xf5, 0xd2, 0x5f, 0x52, 0x96, 0x87, 0xb0, 0x1c, 0x2e, 0x17, 0x05,
9975 0xde, 0xd2, 0xec, 0x48, 0x85, 0x05, 0x7d, 0x7c, 0x77, 0xfe, 0xea, 0xe4,
9976 0xec, 0xe8, 0x6f, 0xa6, 0xcb, 0x02, 0x7e, 0x4d, 0x41, 0xb2, 0x3f, 0x82,
9977 0x99, 0x74, 0xff, 0xb1, 0x4c, 0x60, 0xaa, 0xd5, 0xfa, 0xee, 0x06, 0x62,
9978 0x90, 0x7a, 0xb8, 0x83, 0x57, 0x49, 0xbd, 0x39, 0x05, 0x03, 0x6b, 0x2c,
9979 0x69, 0x75, 0x65, 0x92, 0x25, 0xb6, 0xfa, 0x3b, 0x02, 0xd6, 0x50, 0x62,
9980 0x1c, 0xd1, 0xbd, 0xaf, 0x1c, 0x6c, 0xcd, 0x58, 0x9a, 0xfd, 0xb1, 0x28,
9981 0xf4, 0x4f, 0x9e, 0x7a, 0x88, 0xd0, 0x41, 0xce, 0xe2, 0x17, 0x01, 0x3b,
9982 0x26, 0x13, 0x45, 0x98, 0x16, 0x50, 0x41, 0x42, 0x71, 0x23, 0x28, 0x8f,
9983 0xa7, 0x6c, 0x97, 0xd0, 0x72, 0xb5, 0xdd, 0x7a, 0xd7, 0xe5, 0x7b, 0x62,
9984 0xb8, 0x40, 0x9c, 0x6a, 0x67, 0x7b, 0x2a, 0x52, 0x7c, 0x92, 0x69, 0x96,
9985 0x54, 0x52, 0x94, 0x1e, 0x1d, 0xc2, 0x7f, 0x3f, 0xbf, 0x89, 0xa7, 0x1e,
9986 0x2a, 0x7a, 0x5c, 0x2a, 0x51, 0x9c, 0xab, 0x08, 0xdf, 0x34, 0x32, 0xa2,
9987 0xaf, 0x38, 0xb4, 0xc9, 0xd8, 0x3c, 0x09, 0x02, 0xe6, 0xc0, 0xbb, 0x6d,
9988 0x2e, 0xff, 0x76, 0x71, 0xf2, 0xf9, 0x21, 0x5e, 0x64, 0x5f, 0x20, 0x20,
9989 0x4c, 0x59, 0xbb, 0xd7, 0xa8, 0xbc, 0xd0, 0x23, 0xcd, 0x77, 0xaf, 0x4e,
9990 0x07, 0x17, 0x67, 0xe7, 0xc7, 0x9f, 0x1f, 0x7e, 0x87, 0x2e, 0x20, 0xd0,
9991 0x80, 0xee, 0x9d, 0x77, 0xcd, 0xcf, 0x22, 0x6d, 0xb0, 0xe0, 0x77, 0xf6,
9992 0x38, 0xf9, 0xf6, 0xe3, 0xc9, 0xbb, 0x6f, 0x3e, 0x3f, 0xbc, 0x89, 0x8b,
9993 0x2e, 0xae, 0x8f, 0xdf, 0xc6, 0x02, 0xe6, 0xec, 0x26, 0x2d, 0xf2, 0x0c,
9994 0x63, 0x59, 0x11, 0xfc, 0x32, 0xc5, 0x83, 0xb6, 0xe2, 0xd6, 0x54, 0xb2,
9995 0xa6, 0x9b, 0x6a, 0x7b, 0x6b, 0x4b, 0xc8, 0xf2, 0x68, 0x13, 0xf5, 0x2f,
9996 0xd2, 0x42, 0x7b, 0x92, 0x5e, 0xf5, 0x9d, 0x83, 0x83, 0xe6, 0xf7, 0x70,
9997 0xfa, 0xa9, 0x4c, 0x7f, 0x4e, 0x22, 0x98, 0xf4, 0x74, 0xe1, 0x29, 0x9a,
9998 0xeb, 0x97, 0xdc, 0x91, 0x01, 0xb6, 0x00, 0xff, 0x16, 0x7d, 0x75, 0xf6,
9999 0x17, 0xec, 0x25, 0x6e, 0x12, 0x51, 0xa8, 0xd9, 0x20, 0xdc, 0x07, 0x5f,
10000 0xec, 0x6f, 0xef, 0x6c, 0xc8, 0xfd, 0x21, 0x98, 0xb3, 0x43, 0xa0, 0xd3,
10001 0x27, 0x0f, 0xc7, 0xf0, 0x67, 0x6d, 0x4b, 0xd9, 0x00, 0x7b, 0xb6, 0xdd,
10002 0x6d, 0x34, 0x70, 0x4d, 0x30, 0x19, 0x54, 0x38, 0x0c, 0xbf, 0x85, 0x43,
10003 0x87, 0xf8, 0x11, 0x5e, 0xd0, 0x9e, 0x26, 0xa5, 0x71, 0x25, 0x07, 0xb0,
10004 0x12, 0xa6, 0x23, 0x81, 0xff, 0xa5, 0x9a, 0xde, 0xbf, 0x58, 0x73, 0xac,
10005 0x11, 0x7c, 0x7b, 0x6b, 0x67, 0x2f, 0xaa, 0xc2, 0x2d, 0x13, 0x97, 0xf5,
10006 0xf3, 0xc6, 0x31, 0xe0, 0xa0, 0x79, 0xed, 0x59, 0xbc, 0x5f, 0x85, 0xb7,
10007 0xd2, 0xa9, 0xdb, 0x21, 0x3c, 0xab, 0x9c, 0x5b, 0x8c, 0x12, 0x21, 0xf5,
10008 0x44, 0x69, 0xbb, 0x80, 0x87, 0xc0, 0x85, 0x67, 0x08, 0x5c, 0x9d, 0x94,
10009 0x26, 0xce, 0xeb, 0x44, 0x71, 0xa7, 0xc9, 0x15, 0x06, 0xa1, 0x78, 0x6b,
10010 0x4a, 0xc5, 0xa9, 0x0c, 0x80, 0x8a, 0xc5, 0x23, 0xf4, 0x07, 0x11, 0x3c,
10011 0x71, 0xc4, 0x50, 0xd8, 0x73, 0xf2, 0x12, 0x99, 0xe0, 0x2f, 0x4f, 0xcd,
10012 0xb4, 0xa3, 0x51, 0x74, 0xa3, 0x76, 0xac, 0x62, 0xdd, 0xc5, 0x06, 0xbd,
10013 0x1d, 0xe3, 0xf6, 0x29, 0xdb, 0x66, 0xe9, 0xaa, 0x9b, 0xb6, 0xfd, 0x72,
10014 0xa7, 0xbf, 0xfd, 0xec, 0x05, 0x82, 0x46, 0x6f, 0x3e, 0xb4, 0x61, 0x32,
10015 0x89, 0xfa, 0x3d, 0xf6, 0xa2, 0x76, 0x8f, 0xd5, 0xdb, 0x8a, 0x45, 0x87,
10016 0xf8, 0xd7, 0x60, 0xbb, 0x28, 0xca, 0xe7, 0xe2, 0xb8, 0x0b, 0x05, 0x1b,
10017 0x9d, 0x66, 0xaf, 0x06, 0xb3, 0x64, 0x96, 0x8f, 0x59, 0x7d, 0xc6, 0x7e,
10018 0x46, 0x26, 0x11, 0x2a, 0xdc, 0x39, 0xd1, 0xa4, 0x24, 0xc1, 0x61, 0x63,
10019 0xdd, 0x08, 0xf9, 0xbc, 0x65, 0x3c, 0x83, 0x9c, 0x18, 0x88, 0x69, 0x32,
10020 0x9c, 0x1a, 0xa5, 0xdb, 0x1f, 0xe2, 0x58, 0x78, 0x5d, 0xa1, 0x92, 0x04,
10021 0x44, 0xfb, 0x42, 0xb3, 0x03, 0x63, 0xd3, 0xd7, 0x88, 0x51, 0x76, 0x13,
10022 0x69, 0x8d, 0x53, 0xfa, 0x0d, 0x47, 0x18, 0xd9, 0xa1, 0x51, 0xfa, 0x80,
10023 0x6a, 0x1b, 0x71, 0x1b, 0x8a, 0x71, 0x98, 0x67, 0xa9, 0xf6, 0x29, 0x22,
10024 0xc8, 0x65, 0x8c, 0x9f, 0xc9, 0x78, 0xbf, 0xc1, 0x4c, 0x67, 0x4e, 0x86,
10025 0x21, 0xa4, 0x2a, 0xe0, 0xfc, 0x2b, 0x49, 0x2c, 0xe7, 0xd5, 0x89, 0x23,
10026 0x9f, 0x26, 0xb5, 0x3e, 0xc3, 0xc5, 0x6c, 0x30, 0x68, 0x4d, 0xd0, 0x04,
10027 0x37, 0xd6, 0x74, 0x4d, 0x87, 0x80, 0x11, 0xf1, 0x7d, 0xd1, 0x1f, 0x48,
10028 0x63, 0xe0, 0x68, 0x01, 0x0f, 0xeb, 0x50, 0xc4, 0x43, 0xb1, 0xaa, 0x82,
10029 0x10, 0x16, 0x03, 0x54, 0x7f, 0x38, 0x54, 0x5d, 0xa7, 0xa8, 0x22, 0x50,
10030 0x8e, 0xb1, 0xf3, 0xda, 0x7a, 0x6f, 0xc3, 0xf4, 0x23, 0x20, 0x28, 0x2d,
10031 0x66, 0x0d, 0xbf, 0xdb, 0x05, 0xa6, 0x4c, 0x8d, 0x16, 0x33, 0xee, 0xe9,
10032 0xc1, 0x9d, 0xf9, 0x38, 0xdf, 0x42, 0x39, 0x44, 0x78, 0x02, 0x3f, 0xb6,
10033 0xc9, 0xa9, 0x5b, 0x2a, 0x52, 0xd3, 0x00, 0x34, 0xa9, 0x37, 0x58, 0x96,
10034 0xdc, 0xba, 0x83, 0x59, 0x33, 0xce, 0x0c, 0xf8, 0x7b, 0xb7, 0xa9, 0xff,
10035 0x39, 0xea, 0x7c, 0x0b, 0xc3, 0x6f, 0x6d, 0xc3, 0xc6, 0xcd, 0xa3, 0x9d,
10036 0xad, 0x9d, 0xed, 0x68, 0x7b, 0xe7, 0x60, 0xfb, 0xc5, 0xc1, 0xd6, 0xd6,
10037 0x0a, 0x2d, 0x64, 0x60, 0x94, 0xde, 0xaf, 0x32, 0x0c, 0x9d, 0xdd, 0xd5,
10038 0xf4, 0x62, 0xe0, 0x94, 0xab, 0x1e, 0x61, 0x85, 0xab, 0xbb, 0xb9, 0xd9,
10039 0xf4, 0xb1, 0x76, 0x29, 0x4c, 0x4b, 0x4c, 0xb3, 0x8b, 0x0e, 0xbf, 0x39,
10040 0x79, 0x3f, 0x38, 0x3d, 0x7f, 0xf7, 0x45, 0xd0, 0xcd, 0x28, 0xbf, 0xc4,
10041 0xcd, 0x4e, 0xe1, 0x50, 0x19, 0xd4, 0x44, 0x1b, 0xa8, 0xc0, 0xd0, 0x8f,
10042 0x7a, 0xd4, 0xe9, 0x88, 0x83, 0x26, 0x85, 0x8f, 0xf8, 0x8d, 0xa0, 0x92,
10043 0x79, 0x45, 0x86, 0x84, 0x86, 0x43, 0x34, 0x2d, 0x52, 0xc2, 0x18, 0xe4,
10044 0xe9, 0xda, 0xea, 0xea, 0xdf, 0xb6, 0xcd, 0xdf, 0x76, 0x02, 0x0d, 0x04,
10045 0xf9, 0x37, 0xbb, 0x21, 0xa6, 0x09, 0xc4, 0x8d, 0x4b, 0x06, 0xcd, 0xd4,
10046 0xfe, 0x84, 0x30, 0xe5, 0x6e, 0xb8, 0x21, 0xb9, 0x1f, 0x13, 0x1a, 0x55,
10047 0xaa, 0xbd, 0xb0, 0xa1, 0x55, 0x46, 0x7f, 0xfd, 0x70, 0x7a, 0xdc, 0xe3,
10048 0x28, 0x3e, 0x89, 0xdd, 0x4d, 0x38, 0xd3, 0x26, 0xa9, 0xce, 0x9b, 0x50,
10049 0xb8, 0x72, 0xc8, 0x49, 0x77, 0x5f, 0xcc, 0x19, 0x81, 0x0f, 0x5b, 0xd7,
10050 0x30, 0x40, 0xbe, 0x4b, 0xd1, 0xe6, 0x70, 0x98, 0xb3, 0x55, 0x7b, 0x11,
10051 0x1e, 0xbe, 0x21, 0x5f, 0x42, 0xf3, 0xb9, 0xed, 0xd0, 0x73, 0xdb, 0xfe,
10052 0x73, 0x3b, 0xa1, 0xe7, 0x76, 0xfc, 0xe7, 0x76, 0x43, 0xcf, 0x39, 0x1b,
10053 0xe0, 0x1f, 0x2f, 0xbd, 0x25, 0x85, 0xd1, 0xf0, 0x53, 0xcb, 0x0e, 0x80,
10054 0xf7, 0xf8, 0xae, 0xf5, 0x7f, 0x2e, 0x3d, 0x09, 0xee, 0x9d, 0xaa, 0x4c,
10055 0x64, 0xfc, 0xa8, 0x5d, 0x67, 0x10, 0xd7, 0xa5, 0xba, 0xdb, 0x77, 0x0f,
10056 0x81, 0x0b, 0x0c, 0x20, 0x5e, 0x61, 0x07, 0xf8, 0x6b, 0x25, 0x4f, 0xb0,
10057 0x5e, 0xe4, 0x3a, 0x5c, 0xc0, 0xd4, 0x9e, 0x96, 0xdb, 0xbb, 0x1a, 0x09,
10058 0x8a, 0x0e, 0xe5, 0x2f, 0x0b, 0xec, 0x5b, 0x8d, 0x61, 0x62, 0x5f, 0xd5,
10059 0x3e, 0x1b, 0xb8, 0xdd, 0xba, 0xa4, 0x21, 0x30, 0xbd, 0x15, 0xd1, 0x6b,
10060 0xa5, 0xed, 0xd5, 0xd5, 0x0c, 0xd8, 0xf9, 0x6d, 0x6b, 0x30, 0xc7, 0xd4,
10061 0xc0, 0x38, 0xc1, 0x32, 0x91, 0xdb, 0x88, 0x1c, 0x97, 0xd7, 0xfc, 0x7d,
10062 0xbc, 0x80, 0x75, 0x72, 0x32, 0x3c, 0x69, 0xf3, 0x92, 0xb7, 0xdf, 0x18,
10063 0x0e, 0xac, 0x83, 0x74, 0xac, 0xcf, 0xf7, 0xb9, 0x87, 0x23, 0x70, 0x08,
10064 0x7c, 0x5a, 0x06, 0xae, 0xcd, 0xd4, 0x58, 0xc8, 0x04, 0x21, 0x1e, 0x50,
10065 0xd5, 0x3e, 0xbc, 0x3f, 0xf3, 0x6c, 0x36, 0xb3, 0xf9, 0x48, 0xf9, 0x7e,
10066 0x99, 0x6c, 0xc2, 0xed, 0x52, 0x6e, 0x52, 0x80, 0x57, 0x3e, 0x7b, 0x5d,
10067 0xcd, 0xa6, 0x0f, 0xf6, 0xbb, 0xd0, 0xe6, 0xd5, 0xd3, 0x7b, 0x69, 0xec,
10068 0x43, 0xf9, 0x64, 0x16, 0x91, 0x34, 0x75, 0x76, 0xd4, 0x87, 0xe0, 0x42,
10069 0x6f, 0x07, 0x66, 0xf7, 0xe0, 0x19, 0xda, 0x46, 0x5d, 0x88, 0x14, 0x28,
10070 0x83, 0x8f, 0xce, 0xce, 0x2c, 0x2e, 0x99, 0xb0, 0x2d, 0x99, 0xf0, 0x05,
10071 0x09, 0xbf, 0x06, 0xd0, 0x24, 0xa9, 0xf7, 0x52, 0x81, 0xba, 0x30, 0xe3,
10072 0x92, 0x86, 0x08, 0x56, 0xba, 0x29, 0x43, 0x89, 0x0d, 0x20, 0x06, 0x35,
10073 0xdc, 0xdf, 0xdd, 0x8c, 0xa9, 0x31, 0x36, 0x2c, 0xe7, 0xe3, 0xd1, 0xc9,
10074 0xe0, 0xe3, 0xf6, 0xce, 0x8b, 0x8f, 0x5f, 0x1f, 0xbf, 0xfd, 0x38, 0x78,
10075 0x73, 0xb4, 0xb3, 0xbf, 0x6a, 0x55, 0xa1, 0x0e, 0x26, 0xd1, 0xd3, 0x45,
10076 0x41, 0xcd, 0x1e, 0x97, 0x38, 0x52, 0x61, 0x0e, 0x98, 0x30, 0x47, 0x38,
10077 0x41, 0x87, 0xf8, 0xe7, 0x17, 0x3e, 0x0a, 0x2c, 0x51, 0xba, 0x59, 0x52,
10078 0x89, 0x96, 0x3f, 0x82, 0x56, 0x31, 0x8b, 0x30, 0x55, 0x18, 0x44, 0xdb,
10079 0xc9, 0xee, 0x69, 0x49, 0x4e, 0x24, 0xf6, 0xea, 0x0c, 0xde, 0x5f, 0x74,
10080 0xba, 0x92, 0xe6, 0x04, 0x5f, 0xe8, 0xc1, 0xbf, 0x23, 0x72, 0x90, 0x45,
10081 0xd1, 0xfe, 0xd6, 0xfe, 0x9e, 0x14, 0x1e, 0xf2, 0x1c, 0x19, 0x4a, 0xd0,
10082 0x4f, 0x10, 0xa3, 0x5f, 0xda, 0xb2, 0xcf, 0xc2, 0x55, 0x95, 0x30, 0x84,
10083 0x57, 0x5f, 0x20, 0xe7, 0xe4, 0x76, 0x4d, 0x6b, 0x82, 0x36, 0xcb, 0xc7,
10084 0xf4, 0x5e, 0x05, 0xd6, 0xa6, 0x69, 0xd6, 0x3d, 0xba, 0x98, 0xa9, 0x2b,
10085 0xe9, 0x95, 0x12, 0xe0, 0x17, 0x89, 0x17, 0x8a, 0x15, 0xaa, 0x04, 0xa4,
10086 0x35, 0xf3, 0x81, 0x11, 0x6c, 0x51, 0xb3, 0x66, 0x21, 0x58, 0x37, 0x12,
10087 0x59, 0x65, 0x42, 0x6d, 0x2d, 0x67, 0x0a, 0x08, 0xf6, 0x75, 0xb6, 0xc0,
10088 0x4d, 0xa1, 0x81, 0x74, 0x1c, 0x19, 0xe6, 0x09, 0x5c, 0x68, 0x08, 0x84,
10089 0xc3, 0xac, 0xc6, 0x70, 0xb2, 0x37, 0x0d, 0x96, 0x32, 0x3b, 0x72, 0xc8,
10090 0x56, 0x49, 0x88, 0xa9, 0x22, 0xf3, 0x10, 0xb1, 0x00, 0xf9, 0x2d, 0xb8,
10091 0xfd, 0x46, 0x12, 0x62, 0x38, 0xe9, 0x00, 0xda, 0x8a, 0x8d, 0xa5, 0x5e,
10092 0x74, 0x67, 0x39, 0x7d, 0xcd, 0xa9, 0x13, 0xbb, 0xd9, 0x72, 0x12, 0x4d,
10093 0x1e, 0xc3, 0x23, 0xc9, 0xf2, 0xb0, 0x5b, 0xa0, 0x14, 0x48, 0xe5, 0xff,
10094 0xea, 0x54, 0x36, 0xeb, 0x9d, 0xdf, 0x8e, 0x9d, 0xb9, 0xd0, 0x1f, 0xbf,
10095 0x06, 0xd1, 0x69, 0xa0, 0x20, 0xf6, 0x00, 0x92, 0x5b, 0x8b, 0xa4, 0x1f,
10096 0x45, 0x6c, 0xdb, 0x6f, 0xb5, 0x95, 0xdc, 0xc2, 0xc4, 0x0d, 0x82, 0x5b,
10097 0x8a, 0x3b, 0x24, 0xb7, 0xe7, 0x13, 0xa7, 0xef, 0x1d, 0xba, 0xff, 0xbe,
10098 0x9b, 0xa0, 0x83, 0x35, 0x36, 0x02, 0x55, 0xaa, 0xa0, 0x52, 0xf2, 0x1a,
10099 0xcb, 0xd5, 0xeb, 0x60, 0x2f, 0x8e, 0xf2, 0x4a, 0xca, 0xaa, 0xde, 0x94,
10100 0xd2, 0x44, 0x61, 0x09, 0xca, 0x0b, 0x81, 0xbc, 0x48, 0xab, 0x78, 0x1c,
10101 0x45, 0xbc, 0x77, 0x9f, 0xf9, 0x4d, 0x34, 0xd0, 0x34, 0x8d, 0xf4, 0x2b,
10102 0xd2, 0x08, 0x59, 0x20, 0x02, 0x1a, 0xb9, 0x45, 0x6a, 0x87, 0x0a, 0xf0,
10103 0xeb, 0xd4, 0x2f, 0x6a, 0xf9, 0x88, 0x62, 0xef, 0xa3, 0x6c, 0xc0, 0x96,
10104 0x26, 0x1c, 0x99, 0xb4, 0x6f, 0x1c, 0x04, 0x34, 0x7f, 0x4c, 0x6a, 0x28,
10105 0x11, 0x88, 0xf0, 0x21, 0x10, 0x5a, 0x1c, 0x07, 0x24, 0x24, 0xa6, 0x98,
10106 0x6b, 0x90, 0x54, 0x75, 0xcc, 0x46, 0xb3, 0x47, 0x34, 0x7c, 0x62, 0x63,
10107 0x4f, 0x09, 0xd9, 0xfc, 0xfe, 0x2e, 0x4f, 0x70, 0xd5, 0xf3, 0x86, 0xad,
10108 0xbe, 0xfb, 0xac, 0x15, 0x37, 0xfa, 0xb8, 0xfa, 0xac, 0xb0, 0xfd, 0x34,
10109 0x56, 0xd8, 0xfe, 0xef, 0xc5, 0x0a, 0xdb, 0xff, 0xe7, 0xb0, 0xc2, 0xf6,
10110 0x6f, 0xc6, 0x0a, 0x3b, 0x4f, 0x63, 0x85, 0x9d, 0xff, 0x5e, 0xac, 0xb0,
10111 0xf3, 0x7f, 0x0e, 0x2b, 0xec, 0xfc, 0x66, 0xac, 0xb0, 0xfb, 0x34, 0x56,
10112 0xd8, 0xfd, 0x0d, 0x58, 0xe1, 0xdf, 0xcd, 0x05, 0xf4, 0xce, 0x24, 0xd8,
10113 0xaa, 0x85, 0x97, 0x9a, 0x9c, 0x66, 0x9b, 0xed, 0x8b, 0x0e, 0x70, 0xfc,
10114 0xbd, 0xd8, 0x8b, 0xe5, 0xd3, 0x36, 0x78, 0xf7, 0x49, 0x1b, 0xbc, 0xb3,
10115 0xac, 0xb7, 0x92, 0x75, 0xa1, 0x84, 0x13, 0x11, 0x3d, 0xbc, 0xb7, 0x18,
10116 0x93, 0xa8, 0xd1, 0x9e, 0xac, 0x6f, 0xf5, 0x9d, 0xec, 0xb0, 0x3a, 0x1f,
10117 0x82, 0x48, 0x6f, 0xac, 0x84, 0x51, 0x47, 0x3b, 0xda, 0x67, 0x1a, 0xc3,
10118 0x29, 0x10, 0x8b, 0xb5, 0xc3, 0xb2, 0xaf, 0x67, 0x34, 0x53, 0x97, 0xd2,
10119 0x2b, 0xec, 0x71, 0xf5, 0x04, 0x22, 0xae, 0x48, 0x42, 0xcd, 0x34, 0xac,
10120 0x27, 0x1a, 0x3a, 0x79, 0x7d, 0x36, 0xd3, 0xd0, 0xfa, 0x94, 0xda, 0x73,
10121 0x0d, 0xad, 0x81, 0xf5, 0x40, 0xb6, 0xa1, 0x83, 0x30, 0xd3, 0x92, 0x6b,
10122 0x18, 0xce, 0x25, 0x6c, 0xb8, 0xc1, 0xdc, 0x93, 0x5c, 0xf4, 0x12, 0x90,
10123 0x6a, 0x63, 0xbf, 0x0a, 0x9a, 0xb8, 0xdc, 0x0d, 0x2d, 0xa1, 0x9b, 0x99,
10124 0x9a, 0xd0, 0x8e, 0xb9, 0xf9, 0x09, 0x30, 0x7e, 0xef, 0x44, 0xde, 0xb5,
10125 0xf9, 0x43, 0x7c, 0x44, 0xfc, 0xc6, 0x21, 0xb9, 0x1e, 0x51, 0xd3, 0x29,
10126 0x43, 0x81, 0xbd, 0xa5, 0xfa, 0xad, 0x2b, 0xb5, 0x69, 0xfa, 0x19, 0x0d,
10127 0x74, 0xc4, 0xdc, 0x39, 0x28, 0xd8, 0xa3, 0x8f, 0x12, 0x59, 0x57, 0xb7,
10128 0x16, 0xed, 0x9a, 0x57, 0xee, 0xf0, 0xaa, 0x24, 0xa8, 0xd3, 0x30, 0x1e,
10129 0x25, 0xbd, 0xb8, 0x1c, 0xa5, 0x69, 0x38, 0x3e, 0xa4, 0x19, 0x7a, 0x31,
10130 0x15, 0x00, 0x44, 0xf4, 0x7c, 0x84, 0x89, 0x3d, 0x48, 0x15, 0x14, 0x02,
10131 0x78, 0xb1, 0x50, 0xeb, 0x14, 0x24, 0x01, 0xc8, 0xaa, 0xab, 0x5c, 0x03,
10132 0xde, 0xdd, 0x40, 0xf7, 0x44, 0x94, 0x48, 0xc4, 0x36, 0xb0, 0xe3, 0xd4,
10133 0x80, 0x94, 0x3a, 0x2e, 0xa4, 0x19, 0x66, 0xd5, 0x4b, 0xd1, 0xa5, 0x64,
10134 0x4c, 0x70, 0x00, 0x47, 0x52, 0xbe, 0xb8, 0xdc, 0xeb, 0x83, 0xe7, 0xe6,
10135 0xea, 0xf4, 0x3a, 0x18, 0x2b, 0xc3, 0x5f, 0x93, 0x71, 0x85, 0x8d, 0x41,
10136 0x63, 0x41, 0x5a, 0x91, 0x57, 0xb5, 0x01, 0xc8, 0xb2, 0x2c, 0x4f, 0x2c,
10137 0xbb, 0x4f, 0x67, 0xe9, 0x34, 0xa6, 0x9c, 0x53, 0x93, 0x5e, 0x85, 0x1e,
10138 0x0c, 0x10, 0x0d, 0xd2, 0xd3, 0x93, 0xe1, 0x5b, 0x92, 0x3b, 0x86, 0x17,
10139 0xa4, 0xd5, 0x66, 0x7e, 0x45, 0xc4, 0x35, 0x96, 0x72, 0x32, 0xb7, 0x1c,
10140 0x0d, 0x8e, 0x4f, 0x4f, 0x6b, 0x60, 0x84, 0x48, 0x37, 0x6e, 0xbb, 0x4e,
10141 0x98, 0xe3, 0x25, 0xf6, 0x7b, 0x4e, 0x0a, 0x0b, 0x31, 0xee, 0x85, 0x22,
10142 0x67, 0x20, 0x15, 0x28, 0x31, 0x01, 0x04, 0x54, 0xca, 0x0d, 0x80, 0xa8,
10143 0x51, 0x2b, 0x19, 0x91, 0x19, 0x4c, 0x33, 0xc5, 0x36, 0x45, 0xd7, 0x8b,
10144 0x59, 0x9c, 0x95, 0xff, 0xd7, 0x25, 0xb0, 0xba, 0xbc, 0x3b, 0xcd, 0xaf,
10145 0x56, 0x49, 0x61, 0xd5, 0xbc, 0xeb, 0x9b, 0x6e, 0xe4, 0xa4, 0xd6, 0x71,
10146 0xb5, 0x8a, 0x0c, 0xdc, 0xec, 0x59, 0x67, 0x50, 0x72, 0x7c, 0x17, 0x18,
10147 0x9d, 0x09, 0x3f, 0x81, 0xd2, 0x3b, 0x66, 0x48, 0x80, 0x66, 0xae, 0x50,
10148 0x41, 0xaa, 0x58, 0x29, 0x3d, 0x97, 0x30, 0x95, 0x6f, 0x46, 0x01, 0x0b,
10149 0xea, 0xe8, 0xc7, 0x23, 0xc3, 0x76, 0x98, 0x19, 0x52, 0x61, 0x97, 0xc8,
10150 0xe5, 0x40, 0x75, 0xaf, 0xe4, 0xf6, 0xfc, 0xfb, 0xb7, 0x10, 0xb0, 0x04,
10151 0x69, 0x6c, 0xa4, 0x9c, 0x85, 0x15, 0xd5, 0x82, 0x47, 0xee, 0xc0, 0xff,
10152 0x1d, 0x22, 0x4e, 0x70, 0xa9, 0x3a, 0x7f, 0xec, 0x20, 0x3a, 0x94, 0xe7,
10153 0x3c, 0x7a, 0xd4, 0x38, 0xc0, 0xeb, 0xff, 0x77, 0xca, 0x93, 0x55, 0x25,
10154 0x89, 0xcb, 0x81, 0xc2, 0xc2, 0xa2, 0xb0, 0x18, 0x0e, 0xef, 0xb7, 0xe1,
10155 0x6d, 0x35, 0x25, 0x89, 0x9f, 0x52, 0xef, 0x8e, 0xeb, 0x72, 0xf3, 0x22,
10156 0x4b, 0xef, 0x7a, 0xd2, 0x64, 0xe0, 0x70, 0x1e, 0x57, 0xd7, 0x5f, 0x84,
10157 0x35, 0xa0, 0x63, 0xb6, 0x29, 0x22, 0x85, 0x7f, 0x22, 0x72, 0x7e, 0x80,
10158 0x97, 0x61, 0xcb, 0x66, 0x58, 0x19, 0xc1, 0x63, 0x74, 0x4d, 0x59, 0x04,
10159 0x6c, 0x08, 0x69, 0x41, 0x81, 0xca, 0x8a, 0x2c, 0xa9, 0xd0, 0x03, 0xb8,
10160 0x2a, 0x55, 0xdd, 0xa9, 0xf2, 0x7f, 0x7a, 0x38, 0xe1, 0x15, 0xe9, 0x1b,
10161 0x0f, 0x4b, 0x24, 0x45, 0xe5, 0x0e, 0x57, 0xcf, 0x42, 0xaa, 0x17, 0x84,
10162 0x5e, 0x52, 0x57, 0xa8, 0x39, 0x22, 0xde, 0xf4, 0x28, 0x37, 0x21, 0x78,
10163 0xf2, 0x69, 0x5f, 0x2c, 0xc2, 0x4c, 0x3d, 0xd5, 0x03, 0xf3, 0x23, 0xa7,
10164 0x92, 0x94, 0x94, 0x6b, 0xf3, 0x65, 0xd6, 0xf2, 0x3f, 0xbc, 0x3f, 0xa3,
10165 0xe8, 0x88, 0x4f, 0xa5, 0x42, 0xa2, 0x1c, 0xfc, 0x1e, 0xdd, 0xfd, 0x69,
10166 0x33, 0x87, 0x04, 0xde, 0x76, 0x1b, 0x9e, 0xc5, 0x73, 0xbc, 0x01, 0x02,
10167 0x5a, 0xb6, 0x33, 0x01, 0x6e, 0x55, 0xf3, 0xee, 0xfc, 0xf2, 0x84, 0x65,
10168 0x3f, 0xda, 0xe0, 0x14, 0xe5, 0x64, 0x84, 0x0b, 0x54, 0x04, 0xa8, 0xe7,
10169 0xfb, 0xa6, 0x66, 0x09, 0x4f, 0x7d, 0x68, 0x16, 0x2e, 0xb5, 0xc9, 0x0b,
10170 0xc6, 0x96, 0x47, 0x0c, 0xd7, 0x29, 0x01, 0x97, 0xdc, 0xd0, 0xfa, 0xa8,
10171 0xff, 0x89, 0x96, 0x16, 0xd5, 0x57, 0x41, 0xe2, 0xc2, 0x33, 0x58, 0x9c,
10172 0xcc, 0xc7, 0xeb, 0x34, 0xfb, 0x64, 0xe6, 0x55, 0xf0, 0x61, 0xb4, 0x5f,
10173 0xd3, 0x62, 0x1c, 0x2e, 0x34, 0x26, 0x02, 0x4e, 0x7c, 0xa5, 0x58, 0x65,
10174 0xd2, 0xa2, 0x4c, 0xc4, 0x70, 0xe2, 0xf6, 0xad, 0x08, 0x97, 0x37, 0x4d,
10175 0x3f, 0x25, 0xd3, 0x7b, 0x01, 0x63, 0xa1, 0x78, 0x0f, 0x6d, 0x2c, 0x56,
10176 0x9b, 0x16, 0x8a, 0x30, 0xea, 0xb5, 0xa7, 0x4d, 0xa7, 0x7d, 0x17, 0xf2,
10177 0x47, 0x42, 0xa8, 0x0a, 0xc2, 0xb6, 0x0e, 0xd6, 0x3e, 0x9b, 0x69, 0x2c,
10178 0x40, 0x2e, 0x3e, 0x5c, 0xa2, 0x91, 0x30, 0xa3, 0x6e, 0x9f, 0xf0, 0xe1,
10179 0x70, 0xa9, 0x40, 0xb0, 0x23, 0x4b, 0xa3, 0xec, 0x08, 0xe5, 0xf5, 0x7a,
10180 0xac, 0x0d, 0x3c, 0x31, 0xad, 0x69, 0x43, 0x2d, 0x4d, 0x90, 0xab, 0xc0,
10181 0x0c, 0xce, 0x51, 0x8b, 0x83, 0x89, 0x6c, 0xd2, 0xe5, 0xfd, 0x68, 0x4a,
10182 0xe9, 0x61, 0x55, 0xa2, 0xe1, 0x3d, 0xe7, 0x1b, 0x7d, 0x10, 0xed, 0xeb,
10183 0xb6, 0x4d, 0xa8, 0x20, 0x3d, 0x6d, 0x04, 0x9a, 0xa4, 0x13, 0x1e, 0xb5,
10184 0xe5, 0x3d, 0xf3, 0x75, 0xfc, 0x3c, 0x4e, 0xb5, 0x31, 0x35, 0xaa, 0x72,
10185 0xa6, 0x94, 0x57, 0x5f, 0x08, 0x10, 0x2c, 0xb4, 0x7a, 0xa0, 0x48, 0x0f,
10186 0x45, 0x96, 0x93, 0x1a, 0x5c, 0xb9, 0x42, 0xb8, 0x53, 0xaa, 0x0c, 0xc7,
10187 0x31, 0xb7, 0x84, 0x2e, 0x43, 0xbf, 0x1e, 0x1a, 0xb7, 0x30, 0x40, 0xd2,
10188 0xbf, 0x61, 0xde, 0x38, 0xc6, 0x9a, 0x0d, 0xf2, 0x1e, 0x09, 0xf6, 0xfa,
10189 0x69, 0xd6, 0x2b, 0x05, 0xcf, 0x92, 0xb2, 0xbc, 0x6c, 0x9f, 0xd7, 0x52,
10190 0x35, 0x03, 0x62, 0x9e, 0xe0, 0xb3, 0xbe, 0x50, 0xf8, 0x13, 0xbd, 0x3f,
10191 0x8f, 0xd3, 0xc2, 0x90, 0x08, 0x13, 0x16, 0x62, 0x0e, 0xaa, 0xd3, 0x83,
10192 0xcd, 0xbc, 0xa0, 0x8c, 0xee, 0x37, 0x42, 0x37, 0xee, 0xf3, 0x19, 0x20,
10193 0x09, 0x65, 0x70, 0x50, 0x3a, 0x78, 0x2d, 0x0e, 0x61, 0xc9, 0x1d, 0x55,
10194 0xfa, 0x6b, 0x9f, 0xf4, 0x90, 0x13, 0xaf, 0xc8, 0xb5, 0xd7, 0x25, 0x37,
10195 0x01, 0x87, 0xcd, 0xe5, 0x78, 0x23, 0x09, 0x84, 0xcf, 0x67, 0x8b, 0x69,
10196 0x95, 0xce, 0xa7, 0xcc, 0x01, 0x25, 0x3b, 0x96, 0x78, 0xe7, 0xfd, 0x74,
10197 0x84, 0x7a, 0x00, 0x9e, 0x10, 0x09, 0xf1, 0xa7, 0x3a, 0x2b, 0xae, 0xa4,
10198 0x72, 0x5c, 0x39, 0x22, 0x9d, 0x50, 0xa2, 0x85, 0xdb, 0x6f, 0xf2, 0x1c,
10199 0x0c, 0xae, 0x7d, 0xc6, 0x65, 0xf5, 0xbc, 0xeb, 0x07, 0xce, 0x69, 0xe4,
10200 0xe4, 0xb8, 0xb8, 0x1d, 0x84, 0x96, 0xd5, 0x02, 0x8c, 0x2f, 0xef, 0xef,
10201 0xee, 0xec, 0x44, 0xac, 0x0e, 0x31, 0x08, 0x19, 0x67, 0x68, 0x22, 0xa0,
10202 0x70, 0x12, 0x53, 0xcd, 0x33, 0xdf, 0x37, 0xd8, 0xa7, 0x2e, 0xe6, 0x8c,
10203 0x03, 0x20, 0x66, 0x4b, 0xad, 0x17, 0x2b, 0xed, 0xd8, 0xaf, 0x0e, 0x78,
10204 0x2d, 0x1f, 0xdf, 0xdb, 0x81, 0x81, 0x23, 0x0a, 0x14, 0x42, 0x20, 0x3a,
10205 0xa4, 0x3c, 0x9d, 0x83, 0x8f, 0x65, 0x14, 0xc4, 0xc5, 0x99, 0x4a, 0x26,
10206 0x31, 0x5e, 0x07, 0xd4, 0xd4, 0x34, 0x43, 0x26, 0xcb, 0xe8, 0xaf, 0xd8,
10207 0x9a, 0x6b, 0x51, 0x50, 0xfb, 0x3d, 0x2c, 0xcd, 0xce, 0xee, 0xa3, 0xdb,
10208 0xf8, 0x7e, 0xd5, 0x94, 0xbd, 0xcb, 0xf6, 0x2c, 0xb9, 0x96, 0xe7, 0x3b,
10209 0xe9, 0xec, 0xea, 0xfb, 0xed, 0xde, 0xf6, 0xd6, 0xd6, 0xd6, 0x8f, 0xfd,
10210 0x39, 0xf2, 0x14, 0xa7, 0xec, 0xc2, 0x9f, 0xfd, 0x5a, 0xc6, 0x7c, 0xcb,
10211 0xd5, 0xeb, 0xb0, 0x7a, 0xe7, 0x1f, 0xf8, 0x9f, 0xed, 0x2e, 0xfe, 0xb9,
10212 0xf3, 0xcf, 0xce, 0x6a, 0xd7, 0xef, 0xd7, 0x78, 0x70, 0x30, 0xcb, 0x94,
10213 0x94, 0x12, 0x53, 0x34, 0x56, 0xd3, 0x48, 0xe0, 0x8b, 0x87, 0xf0, 0x87,
10214 0x17, 0xfb, 0x34, 0xf0, 0x99, 0xc8, 0x86, 0xb4, 0xc5, 0xd5, 0xe8, 0xda,
10215 0x2b, 0xd1, 0x22, 0x41, 0x8f, 0xd9, 0x0b, 0x08, 0x49, 0x60, 0x7a, 0x98,
10216 0xc3, 0x39, 0xf0, 0x9a, 0xae, 0x8a, 0x8a, 0x2a, 0xc3, 0xc2, 0xa0, 0xeb,
10217 0xe5, 0x06, 0xd7, 0xcb, 0x73, 0x61, 0x00, 0x8b, 0xcf, 0x36, 0x2f, 0x2b,
10218 0x4b, 0x58, 0x9c, 0x0a, 0xd6, 0x85, 0x31, 0x60, 0x06, 0x9e, 0xa6, 0xd1,
10219 0x75, 0x32, 0x13, 0xe1, 0xba, 0xae, 0x35, 0x57, 0x1d, 0xa4, 0x11, 0x90,
10220 0xa8, 0xe3, 0x5f, 0x7e, 0x9d, 0x89, 0xfc, 0x06, 0x16, 0xb3, 0x21, 0xc8,
10221 0x9b, 0xe6, 0x3e, 0xa4, 0xf4, 0xd5, 0x38, 0xba, 0x5a, 0xa0, 0x27, 0x68,
10222 0x18, 0xcb, 0xc5, 0xa3, 0xe0, 0xaf, 0x2d, 0x8a, 0x03, 0x55, 0xb7, 0x25,
10223 0x05, 0xdd, 0x77, 0x70, 0x3c, 0x87, 0x3d, 0x51, 0xd0, 0x24, 0xdf, 0x97,
10224 0xb2, 0x86, 0xe1, 0xec, 0xbf, 0x3a, 0x3d, 0x06, 0x29, 0xf6, 0xfa, 0xf2,
10225 0xa2, 0x4b, 0x40, 0x17, 0x5d, 0xc2, 0x6d, 0x68, 0xc2, 0xec, 0x11, 0xfa,
10226 0x05, 0xc2, 0x4d, 0xe1, 0x49, 0xad, 0x18, 0x2d, 0x24, 0xb6, 0xc5, 0x27,
10227 0x16, 0xb3, 0x4f, 0xf1, 0xfd, 0xa8, 0xb1, 0xe4, 0x6d, 0x8a, 0x97, 0x59,
10228 0xa0, 0xaa, 0xb2, 0xa6, 0x53, 0x9b, 0x52, 0xa0, 0xbd, 0xfd, 0xfe, 0x16,
10229 0xaf, 0x11, 0x49, 0x28, 0x69, 0xd1, 0x82, 0x54, 0x44, 0x1e, 0x62, 0xcd,
10230 0x13, 0x8a, 0xc3, 0x29, 0x86, 0x66, 0x3a, 0xdd, 0x88, 0x7b, 0x82, 0xd3,
10231 0xbf, 0x7b, 0xfa, 0x5b, 0xa7, 0x3e, 0x69, 0xa9, 0x21, 0xe2, 0x36, 0xcb,
10232 0xc4, 0x73, 0xd9, 0xe8, 0xb2, 0x4c, 0x5d, 0xb6, 0x23, 0x85, 0x13, 0x14,
10233 0x58, 0xfa, 0x50, 0x9b, 0x6c, 0xe2, 0x09, 0x64, 0x0a, 0x29, 0x0c, 0xee,
10234 0x9a, 0x7e, 0xf1, 0x3d, 0x2d, 0xae, 0x14, 0xc0, 0x10, 0x93, 0xa2, 0xca,
10235 0x7a, 0x51, 0xb8, 0x70, 0xaf, 0x1d, 0xe4, 0xed, 0x3c, 0x53, 0xc4, 0xaf,
10236 0x2e, 0xe9, 0x87, 0xe9, 0x68, 0x81, 0x7e, 0x27, 0xe4, 0x5a, 0x84, 0xad,
10237 0x95, 0xf6, 0x9c, 0xe8, 0x7d, 0xa5, 0x4b, 0x70, 0xc8, 0x91, 0x81, 0xe6,
10238 0x47, 0x10, 0x99, 0x84, 0x4d, 0x2d, 0x51, 0xcb, 0xed, 0x7b, 0x16, 0x8a,
10239 0x03, 0x95, 0x23, 0x14, 0xf9, 0xf7, 0x70, 0xe5, 0xcf, 0xfa, 0xd1, 0x57,
10240 0xc9, 0x6d, 0x5c, 0x24, 0xff, 0xb1, 0xaa, 0xfe, 0x0e, 0x7f, 0xae, 0x24,
10241 0x2c, 0x8c, 0x3d, 0xc7, 0xd2, 0xa2, 0x56, 0xb3, 0x63, 0xe4, 0xc5, 0x57,
10242 0xd2, 0xb5, 0x95, 0x4d, 0x9b, 0x10, 0x48, 0x93, 0x20, 0xb7, 0x48, 0x35,
10243 0x1f, 0xfb, 0xd2, 0x54, 0x55, 0xef, 0x63, 0xa4, 0x86, 0x4f, 0x01, 0x6d,
10244 0x1e, 0x52, 0x4a, 0x73, 0x4a, 0x92, 0x2c, 0xd0, 0xa4, 0x7d, 0x94, 0x38,
10245 0x98, 0x79, 0x22, 0x8a, 0xc8, 0x87, 0x42, 0xbe, 0x17, 0x71, 0xe3, 0x77,
10246 0xfe, 0x8c, 0x49, 0x14, 0x9f, 0x1f, 0x75, 0x1a, 0xae, 0x1f, 0x0f, 0xc1,
10247 0x63, 0x81, 0x64, 0xa6, 0xcb, 0xae, 0x6e, 0x79, 0xcb, 0x15, 0x87, 0x57,
10248 0x2a, 0x2e, 0x9f, 0xf4, 0x25, 0xe4, 0xe3, 0xdb, 0x34, 0xdb, 0xdd, 0x91,
10249 0x6d, 0x58, 0x35, 0x50, 0xf2, 0x95, 0x0f, 0x5e, 0xb4, 0xf9, 0xfe, 0xe4,
10250 0xe8, 0xd5, 0xdb, 0x93, 0x07, 0x40, 0x74, 0xc4, 0x80, 0xc4, 0x69, 0x7a,
10251 0xf6, 0xe3, 0x91, 0xf6, 0xcc, 0xed, 0xc5, 0x57, 0xb8, 0x82, 0x60, 0xd6,
10252 0x8a, 0x98, 0x90, 0x2a, 0xc0, 0x49, 0x4b, 0xc0, 0x57, 0x8e, 0xe8, 0x15,
10253 0x4e, 0x2c, 0x32, 0x75, 0x37, 0x2e, 0xa0, 0xb0, 0x06, 0xba, 0x1a, 0x87,
10254 0x36, 0xd7, 0xcb, 0x74, 0x38, 0x8d, 0xb3, 0x4f, 0xa5, 0xb1, 0x8b, 0x68,
10255 0x20, 0x10, 0x02, 0x8b, 0x82, 0x81, 0x21, 0xed, 0x0f, 0x65, 0x5f, 0x82,
10256 0xaa, 0xce, 0xdf, 0x17, 0x64, 0x89, 0xcd, 0xe2, 0x82, 0xa0, 0xce, 0x78,
10257 0xbf, 0xa4, 0x7a, 0xd7, 0x65, 0x07, 0x83, 0x46, 0xca, 0x47, 0xd7, 0xd4,
10258 0xf7, 0x06, 0x24, 0xb0, 0x02, 0xbc, 0xe9, 0x33, 0xf3, 0xf0, 0x49, 0x96,
10259 0x14, 0x4a, 0xbc, 0x49, 0xa8, 0x26, 0x6e, 0x36, 0xaf, 0xee, 0x8d, 0x22,
10260 0x47, 0xfe, 0xe3, 0x26, 0x79, 0xd7, 0x3b, 0x9d, 0x8d, 0xae, 0xe9, 0x09,
10261 0xef, 0x45, 0x03, 0x10, 0xf2, 0x45, 0x5b, 0x00, 0xca, 0x02, 0xb0, 0x07,
10262 0x76, 0x82, 0x9a, 0x3f, 0x57, 0x6e, 0xb0, 0xe9, 0x44, 0xc1, 0x0c, 0x93,
10263 0xc2, 0x39, 0xa7, 0xe6, 0x31, 0x9e, 0x74, 0x25, 0xe2, 0x46, 0x5a, 0x74,
10264 0x6b, 0x10, 0xb5, 0x13, 0x2a, 0xa4, 0x74, 0x34, 0x47, 0xb8, 0x41, 0xd1,
10265 0xdb, 0xb1, 0xde, 0x89, 0x3a, 0x1b, 0xbf, 0xb3, 0xe3, 0xe5, 0x28, 0xea,
10266 0x30, 0x4f, 0x6d, 0x6d, 0x3d, 0x5f, 0x51, 0x31, 0x79, 0xd3, 0xb5, 0x7b,
10267 0xea, 0xb6, 0x78, 0xe5, 0x1f, 0x39, 0x1c, 0x6f, 0xba, 0x44, 0x83, 0x92,
10268 0x02, 0x7f, 0x1e, 0x68, 0xea, 0x50, 0x9b, 0xba, 0x62, 0xb4, 0xc5, 0x5a,
10269 0x3b, 0x46, 0xca, 0x5c, 0x12, 0x8b, 0x89, 0x80, 0x95, 0xd9, 0xf6, 0xb1,
10270 0xd9, 0x5b, 0xa1, 0xbb, 0xa0, 0x1f, 0x9d, 0x1b, 0x80, 0x75, 0x14, 0x8c,
10271 0x55, 0x31, 0xd2, 0x16, 0x97, 0xf8, 0x77, 0x29, 0xc7, 0x8a, 0xa7, 0x41,
10272 0x9d, 0x85, 0xaa, 0x68, 0xcb, 0x94, 0x5a, 0xa2, 0x5b, 0x83, 0xc8, 0xb6,
10273 0x77, 0xc6, 0xe9, 0xb9, 0xce, 0x04, 0x58, 0x3e, 0xf0, 0x23, 0x83, 0x59,
10274 0x7a, 0x65, 0xbf, 0xcd, 0x6c, 0x29, 0x73, 0x9d, 0xb6, 0xad, 0xb5, 0x94,
10275 0x94, 0xce, 0x29, 0xf0, 0xce, 0x62, 0xae, 0x59, 0xd0, 0x08, 0x96, 0x49,
10276 0x88, 0xe4, 0xc0, 0xa7, 0xd3, 0x3c, 0xeb, 0x7a, 0x9d, 0x5f, 0x28, 0x89,
10277 0x92, 0x43, 0x1c, 0x54, 0xd5, 0x34, 0x9b, 0xe7, 0xa0, 0x25, 0x0c, 0xa7,
10278 0x89, 0x09, 0xb9, 0xf2, 0x9b, 0x2a, 0x02, 0xec, 0xc7, 0xf1, 0xa4, 0x86,
10279 0x6e, 0x67, 0x2d, 0x74, 0xc6, 0xa9, 0x9a, 0x8d, 0x00, 0xc6, 0xee, 0x32,
10280 0x96, 0x92, 0xb7, 0x24, 0xb8, 0x64, 0x45, 0xdc, 0x4a, 0x23, 0x9a, 0x94,
10281 0xd3, 0xd7, 0x4a, 0x97, 0x56, 0xd7, 0xe9, 0x38, 0x71, 0xfd, 0xb0, 0xd2,
10282 0xcd, 0x07, 0x4e, 0x72, 0xcf, 0xeb, 0x94, 0x8a, 0xc8, 0x96, 0xdc, 0xf9,
10283 0x1b, 0x28, 0x4c, 0xfd, 0xb3, 0x31, 0xf7, 0x1c, 0x0b, 0xbe, 0x6c, 0xb5,
10284 0x28, 0x5a, 0x0f, 0x49, 0xc6, 0x7e, 0xb6, 0x5c, 0x7b, 0x40, 0x45, 0x23,
10285 0xbf, 0x89, 0xdf, 0x98, 0x5b, 0xc4, 0x96, 0x3c, 0xa2, 0x10, 0xe7, 0x1e,
10286 0xcb, 0xb8, 0xf8, 0xbe, 0xc6, 0x4a, 0x35, 0xb8, 0xad, 0xb8, 0xdd, 0x37,
10287 0x12, 0xa7, 0xb4, 0x94, 0x2f, 0x7d, 0x48, 0x29, 0x5e, 0xa9, 0x6d, 0xc8,
10288 0xa1, 0x00, 0xc9, 0x0c, 0x33, 0x45, 0x1a, 0xc4, 0x4d, 0xca, 0xf4, 0xe7,
10289 0x6c, 0xdf, 0x18, 0xae, 0x26, 0x5a, 0x12, 0x17, 0xc1, 0x79, 0xfe, 0xeb,
10290 0x24, 0x66, 0xe8, 0x1c, 0xd4, 0x83, 0x11, 0x2b, 0x32, 0x25, 0x17, 0x36,
10291 0x5f, 0x78, 0xd7, 0x8a, 0xd0, 0x89, 0xbd, 0xe6, 0xd3, 0x04, 0xc1, 0xaa,
10292 0x68, 0x15, 0xb1, 0x82, 0xb3, 0x78, 0xd9, 0x1f, 0xec, 0xec, 0x28, 0x4c,
10293 0x84, 0x0d, 0x19, 0x2c, 0x43, 0x49, 0xc2, 0x42, 0x05, 0xc1, 0x7c, 0xf0,
10294 0x8b, 0x7c, 0x67, 0x8a, 0x22, 0xcf, 0x8e, 0x18, 0xb2, 0xdd, 0xc3, 0x46,
10295 0x29, 0x5d, 0xe4, 0xd1, 0x5f, 0x92, 0x02, 0x94, 0xbd, 0x1c, 0xd6, 0xfd,
10296 0xcd, 0xbe, 0x16, 0x92, 0x29, 0x9c, 0x2a, 0x2b, 0xde, 0x72, 0x42, 0xf1,
10297 0x18, 0xf1, 0xd4, 0xbd, 0x28, 0x3e, 0xe3, 0x11, 0x20, 0x6d, 0xf5, 0x4d,
10298 0xd1, 0xbc, 0xd9, 0x6f, 0xd5, 0xe0, 0xd0, 0x2e, 0x61, 0x3a, 0x00, 0xf7,
10299 0x61, 0x3e, 0xf4, 0x24, 0x78, 0x8d, 0x18, 0xb8, 0x47, 0x0a, 0x83, 0x93,
10300 0x56, 0x46, 0xd8, 0x69, 0x51, 0x3e, 0xac, 0x62, 0x5a, 0x9f, 0x99, 0xf6,
10301 0x65, 0xca, 0x7e, 0xcc, 0x53, 0x2d, 0x7b, 0xf7, 0x0b, 0x4b, 0xbb, 0xaa,
10302 0xc0, 0xdb, 0x56, 0xe6, 0x8d, 0x64, 0x51, 0xb4, 0x98, 0xca, 0x6b, 0xb4,
10303 0x39, 0x50, 0x17, 0x26, 0xc7, 0xd7, 0x67, 0xe1, 0x5e, 0xd5, 0x48, 0xb3,
10304 0x77, 0x97, 0x67, 0x6f, 0xbb, 0x8d, 0x53, 0x27, 0xca, 0xbb, 0xe3, 0x25,
10305 0x52, 0x89, 0x23, 0x2c, 0xe5, 0x7b, 0xee, 0x8b, 0x48, 0xc8, 0x61, 0x52,
10306 0x54, 0x18, 0x64, 0x1c, 0x29, 0xd7, 0x95, 0xb4, 0xec, 0x42, 0x30, 0x78,
10307 0xd4, 0x15, 0xc6, 0x64, 0xf5, 0x5d, 0x34, 0xc8, 0x83, 0x25, 0x6d, 0x3d,
10308 0xb9, 0x0f, 0xe1, 0xae, 0x02, 0x59, 0xb3, 0xac, 0xf1, 0xfc, 0xa5, 0xb5,
10309 0xff, 0xec, 0x57, 0x79, 0x29, 0x28, 0x5d, 0x92, 0x94, 0x0e, 0xce, 0xab,
10310 0xfc, 0x36, 0xeb, 0x9d, 0x21, 0x3c, 0x5e, 0x74, 0x96, 0x5f, 0xe1, 0x01,
10311 0x7a, 0x47, 0xa6, 0x94, 0xb7, 0x69, 0x1f, 0x2e, 0xde, 0x45, 0xeb, 0xa8,
10312 0xda, 0x20, 0xc6, 0xae, 0x34, 0xa3, 0xc2, 0x47, 0x37, 0xc4, 0x95, 0x50,
10313 0xb2, 0xba, 0x29, 0xb3, 0xe9, 0x46, 0x27, 0xdf, 0x1d, 0xbd, 0xbd, 0x38,
10314 0x3b, 0xf9, 0x81, 0xbd, 0x09, 0xde, 0x72, 0xf0, 0xc7, 0x5f, 0x3a, 0xb7,
10315 0x17, 0xe5, 0x17, 0x60, 0x62, 0x0f, 0xcc, 0xe4, 0xbe, 0x4d, 0x9b, 0x60,
10316 0xa9, 0x68, 0xa1, 0x80, 0x2f, 0x4e, 0x7b, 0xda, 0xd0, 0x89, 0x04, 0xd6,
10317 0x30, 0xcd, 0xd0, 0x13, 0x42, 0xbe, 0x0e, 0x6c, 0x9b, 0x01, 0x13, 0x23,
10318 0xf6, 0xf7, 0xd0, 0x82, 0xf5, 0x38, 0x74, 0xa3, 0x77, 0x5a, 0x35, 0xd3,
10319 0xa5, 0x4d, 0xc7, 0x23, 0xf8, 0x2a, 0xbd, 0xa2, 0x7c, 0x88, 0x46, 0x2d,
10320 0x01, 0x72, 0x87, 0x68, 0x0a, 0x5e, 0x47, 0x38, 0x90, 0x20, 0x9a, 0x2c,
10321 0x53, 0x26, 0x53, 0x8e, 0x25, 0xb4, 0x5e, 0x8d, 0x2c, 0x21, 0x69, 0x17,
10322 0x09, 0x2b, 0xc0, 0x4b, 0xf4, 0x10, 0xec, 0x00, 0xb4, 0x0e, 0x79, 0x03,
10323 0xc5, 0xfc, 0x66, 0x0e, 0xe1, 0x4b, 0x41, 0xb4, 0x35, 0x23, 0xf5, 0x0f,
10324 0xa2, 0x4e, 0x6f, 0x11, 0x1d, 0x74, 0x7e, 0x67, 0x2d, 0x85, 0xf6, 0xa8,
10325 0x38, 0x28, 0x13, 0x10, 0xe8, 0x2b, 0x46, 0x87, 0xb2, 0x6e, 0xfd, 0xe2,
10326 0x0f, 0x9b, 0x44, 0x6e, 0xf4, 0xa7, 0x31, 0x14, 0xb7, 0x28, 0x97, 0xf4,
10327 0x40, 0x13, 0x0b, 0xe6, 0x06, 0x00, 0xae, 0xb1, 0x87, 0x57, 0x24, 0x30,
10328 0x32, 0x88, 0x1b, 0xb1, 0x9f, 0x87, 0x8b, 0xab, 0xab, 0x40, 0x93, 0x80,
10329 0x0c, 0xa9, 0x44, 0x7e, 0x59, 0x74, 0x76, 0xae, 0x95, 0x11, 0x47, 0x34,
10330 0x81, 0x88, 0x1d, 0x4a, 0xed, 0xd1, 0x7e, 0xd4, 0xf9, 0x18, 0x6d, 0xa1,
10331 0x23, 0x0d, 0x3b, 0x13, 0x86, 0x89, 0x3f, 0x1c, 0x6b, 0xe9, 0x6b, 0x5f,
10332 0xac, 0x45, 0x92, 0xec, 0x14, 0x75, 0x44, 0x25, 0xa3, 0x3b, 0xa3, 0xc3,
10333 0x56, 0x12, 0xec, 0x39, 0xce, 0xbf, 0x1b, 0xad, 0x1d, 0xae, 0xc9, 0x73,
10334 0xf2, 0x58, 0xf3, 0x76, 0xa4, 0x77, 0x38, 0x49, 0x86, 0xcd, 0xb6, 0x91,
10335 0x89, 0x4d, 0x20, 0x66, 0x65, 0x3a, 0x86, 0xfb, 0x93, 0xc4, 0x70, 0x86,
10336 0xc7, 0x73, 0x2a, 0xfd, 0xe7, 0xba, 0xe2, 0x09, 0x8c, 0x03, 0x0e, 0x60,
10337 0x33, 0x73, 0x9e, 0xeb, 0xda, 0x7f, 0xea, 0x0c, 0xb4, 0x7b, 0x7a, 0x3c,
10338 0xa5, 0x00, 0x2d, 0x85, 0x43, 0xd2, 0xb1, 0xfd, 0x6a, 0xab, 0x4e, 0xc6,
10339 0xc5, 0x58, 0xe8, 0x8c, 0x22, 0x93, 0x47, 0x9d, 0x91, 0x72, 0x5d, 0xb0,
10340 0xc3, 0xc0, 0xc5, 0xbb, 0xd1, 0x44, 0x8e, 0xc0, 0x7d, 0x21, 0xec, 0xab,
10341 0x65, 0x59, 0xd3, 0x3c, 0x47, 0xdf, 0x3b, 0x6e, 0x60, 0x9b, 0xb0, 0xd0,
10342 0x80, 0x8b, 0xe5, 0x7d, 0xbe, 0xea, 0x4d, 0x18, 0x96, 0x6c, 0x13, 0x7c,
10343 0x52, 0xd4, 0x11, 0x71, 0xa4, 0x74, 0x5b, 0xc0, 0xef, 0xe4, 0x6a, 0xd0,
10344 0x08, 0xa8, 0x45, 0x18, 0x92, 0x80, 0xa6, 0xd6, 0x88, 0xff, 0xee, 0x01,
10345 0x61, 0xe9, 0x49, 0x47, 0x10, 0x63, 0xa6, 0x50, 0x9c, 0xb8, 0x43, 0xc2,
10346 0x59, 0x7f, 0x5f, 0xa4, 0xc9, 0xca, 0xb9, 0x08, 0x7a, 0xa0, 0x56, 0x39,
10347 0xd3, 0x04, 0x67, 0x64, 0xf7, 0xb7, 0xdf, 0xde, 0x53, 0xc9, 0x90, 0x35,
10348 0x5c, 0x3e, 0x15, 0x8c, 0xef, 0x7e, 0x23, 0xa2, 0x20, 0x50, 0x60, 0xff,
10349 0x4a, 0x32, 0x3c, 0xdc, 0x84, 0x02, 0x01, 0xf0, 0xe1, 0x68, 0x84, 0x58,
10350 0xd0, 0x9a, 0x96, 0xa7, 0x49, 0x87, 0x29, 0xc5, 0x0a, 0xcb, 0x7e, 0x40,
10351 0xf7, 0x57, 0x6d, 0x9e, 0x0f, 0xb9, 0xc9, 0x1a, 0xa5, 0x90, 0x13, 0x26,
10352 0x44, 0xe8, 0x10, 0x58, 0x68, 0x49, 0x27, 0x58, 0xc7, 0xf6, 0x17, 0xc4,
10353 0x2a, 0xeb, 0x2e, 0xd6, 0x77, 0xc0, 0x81, 0xbb, 0x97, 0x2c, 0x62, 0x8c,
10354 0xaa, 0xc0, 0xe0, 0x9f, 0xb4, 0x4a, 0x08, 0x47, 0x4e, 0xee, 0x92, 0xd1,
10355 0xa2, 0x0a, 0x02, 0xc8, 0x5c, 0x5e, 0x6b, 0x9f, 0x1a, 0x9e, 0xd2, 0x3a,
10356 0x9d, 0x5e, 0xe9, 0xad, 0xd0, 0xb9, 0xd0, 0x16, 0x10, 0x07, 0x9d, 0x0d,
10357 0x4d, 0xb7, 0xc2, 0x24, 0x0d, 0xdb, 0x1b, 0xc2, 0x3b, 0x63, 0x98, 0xe1,
10358 0x29, 0x53, 0x2e, 0x12, 0x0e, 0xd3, 0xd8, 0x14, 0xc5, 0xe0, 0xe7, 0xe1,
10359 0x6c, 0x15, 0xc1, 0xaf, 0xbf, 0xe6, 0x00, 0x85, 0xf3, 0x71, 0x61, 0xeb,
10360 0x91, 0xc6, 0x2e, 0x4a, 0x4f, 0xfe, 0x78, 0x5f, 0xce, 0x09, 0x5b, 0x28,
10361 0x3a, 0xba, 0x81, 0x43, 0x49, 0xde, 0x2d, 0x7d, 0x55, 0x89, 0xef, 0xd5,
10362 0x94, 0xc6, 0xd3, 0xaa, 0x57, 0xde, 0x8c, 0xc2, 0x65, 0xd9, 0x02, 0x25,
10363 0x64, 0x10, 0x8d, 0x8f, 0xe0, 0xe1, 0xc1, 0xcd, 0xe8, 0x40, 0xbd, 0x09,
10364 0xc0, 0x97, 0x2a, 0xd7, 0xbc, 0xc5, 0x1e, 0x95, 0xf7, 0xd9, 0xe8, 0xfa,
10365 0xd5, 0xbb, 0x41, 0x78, 0x68, 0x62, 0x6a, 0x9a, 0x3e, 0xf9, 0xbc, 0x62,
10366 0x7a, 0x1a, 0x6e, 0x71, 0xec, 0xd9, 0xc5, 0x8e, 0x69, 0xe9, 0x6d, 0x86,
10367 0x3e, 0x98, 0x23, 0xe7, 0xb7, 0xe1, 0xe1, 0xea, 0xaf, 0x18, 0xa7, 0x31,
10368 0xde, 0xcc, 0x2c, 0x82, 0x44, 0x75, 0xa3, 0x70, 0x5e, 0x2f, 0x46, 0x8a,
10369 0xf0, 0x9a, 0xc2, 0xc3, 0x55, 0xd7, 0x18, 0x84, 0x4c, 0xc6, 0x3a, 0x62,
10370 0xd1, 0x9e, 0x8d, 0x3c, 0x04, 0xe6, 0x98, 0xa6, 0x35, 0x52, 0x59, 0xb8,
10371 0x41, 0xf9, 0xa5, 0x66, 0x48, 0x6a, 0xb6, 0x97, 0x06, 0x8a, 0xbd, 0xc1,
10372 0x8e, 0xaf, 0xe3, 0xe2, 0x38, 0xcf, 0x6e, 0xc2, 0xb3, 0x6a, 0x14, 0x5c,
10373 0x33, 0x96, 0x8c, 0xf3, 0xdd, 0x11, 0xbc, 0x1d, 0x8f, 0x2a, 0x6a, 0xe4,
10374 0x43, 0x5d, 0xbd, 0xb4, 0x06, 0x20, 0x3c, 0xdc, 0x3a, 0x46, 0xbf, 0xa3,
10375 0x93, 0xaf, 0x8e, 0x5f, 0x9d, 0x1e, 0x6f, 0x34, 0x67, 0xf2, 0x8a, 0xc0,
10376 0xe3, 0x44, 0xf6, 0xb0, 0x7a, 0xc0, 0x1b, 0x65, 0xd8, 0xce, 0x99, 0x04,
10377 0x3d, 0x2c, 0xe6, 0x2a, 0x2b, 0x97, 0x2d, 0x9f, 0x9c, 0x21, 0x32, 0x0a,
10378 0xc8, 0xaf, 0xbc, 0x20, 0xf9, 0xf4, 0x49, 0x53, 0x9f, 0x66, 0xc9, 0x0c,
10379 0x03, 0xfa, 0x46, 0xad, 0x90, 0xc6, 0x3a, 0xaf, 0xa9, 0x07, 0x2c, 0x7c,
10380 0xac, 0x17, 0x1e, 0x6e, 0x8c, 0x3a, 0x38, 0x6a, 0x28, 0x5c, 0xb4, 0xe9,
10381 0x39, 0xa0, 0xaf, 0xca, 0x18, 0xd1, 0xbb, 0x49, 0x14, 0xd1, 0x74, 0x7b,
10382 0x78, 0xb9, 0x0f, 0x8e, 0x06, 0x67, 0x5e, 0x9b, 0x53, 0x95, 0x4d, 0x70,
10383 0x39, 0xa0, 0x5d, 0xca, 0x00, 0x5b, 0xe1, 0xaf, 0x2a, 0xc9, 0x07, 0xc7,
10384 0xef, 0x8f, 0xde, 0x02, 0x9b, 0x71, 0xf6, 0x80, 0x5f, 0x10, 0x4f, 0xa4,
10385 0x81, 0x1f, 0xd3, 0x2c, 0xbc, 0xad, 0x96, 0xc6, 0xa8, 0xe1, 0x4f, 0x68,
10386 0xd7, 0x54, 0x6e, 0x66, 0xc7, 0x01, 0x55, 0x6f, 0x84, 0x37, 0x83, 0xcb,
10387 0x81, 0xfe, 0x47, 0xe7, 0x44, 0x27, 0x32, 0x29, 0x6b, 0x40, 0x99, 0xfa,
10388 0x38, 0xf0, 0xdc, 0x0e, 0xff, 0x67, 0x73, 0xc7, 0xbc, 0x60, 0x00, 0x6c,
10389 0x94, 0x3e, 0xfd, 0xc0, 0x6b, 0xbb, 0xf2, 0xda, 0xee, 0xb2, 0xd7, 0x02,
10390 0xef, 0x0d, 0x7a, 0xa1, 0xf6, 0x7a, 0x9e, 0x04, 0x48, 0x03, 0xe9, 0xdd,
10391 0x4b, 0x1b, 0xc7, 0xbd, 0x7a, 0x57, 0x1f, 0xc0, 0xc4, 0xc8, 0xf1, 0x37,
10392 0x3d, 0x85, 0xbf, 0x11, 0xf5, 0xcb, 0x31, 0xe2, 0x02, 0x2e, 0xd7, 0x8b,
10393 0x9b, 0x67, 0x92, 0x1a, 0x40, 0x61, 0x71, 0xd8, 0x48, 0xfa, 0x91, 0x31,
10394 0x15, 0xbc, 0x37, 0xd4, 0xc4, 0x0e, 0x2f, 0xca, 0x18, 0xe0, 0xdf, 0xec,
10395 0x07, 0x3a, 0xe9, 0xb6, 0xef, 0xe5, 0x59, 0x5c, 0x5c, 0x25, 0x81, 0x30,
10396 0xbe, 0x47, 0x2b, 0xb3, 0x54, 0x9b, 0x5c, 0x04, 0xb7, 0xe7, 0x14, 0x5f,
10397 0xe7, 0x20, 0x7e, 0x57, 0x62, 0xf9, 0xf4, 0xa3, 0xa2, 0x4d, 0xbc, 0xc1,
10398 0x5a, 0x77, 0xbe, 0xfe, 0xca, 0x9b, 0x06, 0x70, 0xeb, 0xcf, 0x28, 0xbb,
10399 0x8d, 0x00, 0x1b, 0x27, 0xae, 0xec, 0x5a, 0xbf, 0x49, 0xe3, 0xe8, 0xea,
10400 0xe7, 0x74, 0x4e, 0xa0, 0x37, 0x58, 0xad, 0xb2, 0x41, 0x77, 0xb7, 0x49,
10401 0x00, 0x0f, 0x7f, 0x8e, 0x27, 0x64, 0x04, 0xdf, 0x72, 0x4a, 0xbc, 0xc5,
10402 0x94, 0x84, 0xc1, 0xe0, 0xec, 0xd1, 0x84, 0x30, 0x39, 0x0c, 0x4b, 0x8b,
10403 0x46, 0xc8, 0x50, 0x95, 0xff, 0xac, 0xb2, 0x31, 0xf8, 0xc2, 0xc7, 0x6f,
10404 0xbf, 0x0a, 0xcf, 0x86, 0x46, 0x1b, 0x27, 0x08, 0xe5, 0xa5, 0xed, 0x88,
10405 0x6f, 0xd3, 0x0c, 0x2c, 0xea, 0x31, 0xdc, 0x90, 0xd3, 0x39, 0xdf, 0x90,
10406 0xed, 0x63, 0x5f, 0x60, 0x5f, 0x1e, 0xfe, 0x0f, 0x3e, 0x77, 0xad, 0x72,
10407 0xfc, 0x62, 0x31, 0x9c, 0x02, 0xed, 0x07, 0x8b, 0xc9, 0x24, 0xbd, 0x8b,
10408 0xce, 0x52, 0xe9, 0x6c, 0x24, 0x26, 0x90, 0x96, 0x4e, 0xa4, 0xe5, 0x92,
10409 0x5b, 0x82, 0x0e, 0x28, 0x9f, 0xd0, 0x5a, 0x6d, 0xba, 0x85, 0x12, 0x63,
10410 0xcd, 0xae, 0x33, 0xe7, 0x6f, 0x95, 0x8b, 0x49, 0xaf, 0x6d, 0xf3, 0xee,
10411 0x92, 0xd2, 0x37, 0x91, 0x07, 0x17, 0xef, 0x4e, 0xbe, 0x3e, 0xd7, 0xff,
10412 0xac, 0x42, 0xd1, 0x01, 0xaf, 0x1a, 0xff, 0x63, 0x6a, 0xd4, 0x80, 0x89,
10413 0x10, 0xf5, 0x0f, 0x2f, 0x7f, 0xdb, 0x88, 0x8b, 0x3c, 0xc4, 0x3a, 0x4c,
10414 0x97, 0x01, 0x4b, 0xfd, 0xb4, 0x53, 0x57, 0xdc, 0x50, 0xfc, 0x1a, 0xfe,
10415 0xc4, 0x30, 0xf5, 0x80, 0x8d, 0xd1, 0x3c, 0x84, 0xf1, 0x88, 0x5e, 0x10,
10416 0xfd, 0xcf, 0xd2, 0xb9, 0x4a, 0x05, 0x7e, 0x8b, 0x76, 0x44, 0xb0, 0x06,
10417 0x03, 0x86, 0xf6, 0x7e, 0xcf, 0xf9, 0x67, 0x17, 0xe2, 0xb0, 0xd8, 0x58,
10418 0x46, 0x92, 0x16, 0x42, 0xc3, 0xce, 0x07, 0x5b, 0xb4, 0xe0, 0x45, 0xf9,
10419 0x96, 0x2e, 0xc8, 0xf0, 0x8b, 0x7c, 0x55, 0xcb, 0x15, 0x6a, 0xae, 0xd5,
10420 0xa5, 0xeb, 0xfa, 0x90, 0xa5, 0x18, 0x30, 0x6b, 0x01, 0xe3, 0xe1, 0x5f,
10421 0x1a, 0x51, 0x9c, 0x9b, 0xb8, 0x72, 0x68, 0x9c, 0xbb, 0x01, 0xa5, 0x4c,
10422 0x96, 0xad, 0x63, 0xdd, 0x49, 0x72, 0x66, 0x59, 0xbf, 0xa4, 0x5a, 0xd4,
10423 0xc6, 0x9f, 0xcb, 0x6a, 0xfc, 0x90, 0x04, 0xc2, 0x67, 0x36, 0xa4, 0xae,
10424 0xd1, 0x96, 0xdf, 0xb0, 0x98, 0x09, 0x4f, 0xe3, 0x21, 0xd9, 0xe3, 0xd9,
10425 0x71, 0xd6, 0x80, 0x23, 0x4b, 0xc9, 0x47, 0xd8, 0xb9, 0xe6, 0xf8, 0xd0,
10426 0x74, 0xce, 0x8e, 0x97, 0xb7, 0xdc, 0xac, 0x31, 0x5b, 0xb8, 0xd1, 0x96,
10427 0xde, 0x2d, 0xfe, 0x94, 0xc0, 0xc7, 0x31, 0xd2, 0x1f, 0x1d, 0xb2, 0x5d,
10428 0xf5, 0x45, 0xc0, 0x07, 0xc3, 0x1f, 0x54, 0x00, 0x4d, 0xd7, 0x02, 0x23,
10429 0x1b, 0x9c, 0x62, 0xc0, 0xf1, 0x04, 0x55, 0xbb, 0xd8, 0xc4, 0xf0, 0xc6,
10430 0x7c, 0x07, 0x04, 0xda, 0x77, 0x70, 0x38, 0x83, 0xc7, 0x10, 0x4f, 0xa9,
10431 0x04, 0x55, 0xa9, 0x6e, 0x0c, 0x9b, 0x5a, 0xe4, 0x19, 0xb9, 0x8c, 0x05,
10432 0xc6, 0x9c, 0x5d, 0xe4, 0xd1, 0x0c, 0xce, 0xfa, 0x38, 0xe8, 0x83, 0xc1,
10433 0x04, 0x08, 0x27, 0x03, 0x42, 0x21, 0x3a, 0xcb, 0xda, 0x97, 0x3c, 0x6f,
10434 0x2f, 0xc8, 0x20, 0xdf, 0x69, 0x52, 0x91, 0x0f, 0xad, 0xc3, 0x33, 0xea,
10435 0x10, 0x9c, 0x9e, 0x06, 0x13, 0x29, 0x6d, 0x5c, 0xad, 0xee, 0xb1, 0x04,
10436 0x84, 0x78, 0x6c, 0xf1, 0x00, 0xc6, 0x81, 0xa4, 0x73, 0x13, 0x65, 0xff,
10437 0x52, 0x53, 0xd0, 0x3b, 0x9a, 0x4d, 0x57, 0xf3, 0x32, 0x9a, 0x31, 0x65,
10438 0xc8, 0x00, 0x5e, 0x26, 0x67, 0x17, 0x52, 0x1d, 0x2a, 0xee, 0x1a, 0x0c,
10439 0xd9, 0xeb, 0x04, 0xcd, 0x38, 0x43, 0x00, 0x55, 0xb7, 0xea, 0x0e, 0x1a,
10440 0xfd, 0x84, 0xcd, 0x87, 0x29, 0x17, 0xc3, 0xb2, 0x4a, 0xab, 0x85, 0x7f,
10441 0xfc, 0x4d, 0xeb, 0x12, 0xc2, 0x17, 0x25, 0xb3, 0x04, 0x37, 0xc3, 0x82,
10442 0x80, 0x92, 0x53, 0x06, 0xf3, 0xf4, 0x2b, 0x6a, 0x93, 0xcc, 0xc9, 0xff,
10443 0x43, 0x74, 0x25, 0x81, 0xf2, 0x7b, 0xeb, 0x41, 0x1b, 0xa3, 0x5d, 0x6d,
10444 0x66, 0x57, 0x07, 0x4e, 0x81, 0xb7, 0xff, 0xf8, 0x0f, 0xfd, 0xe5, 0x47,
10445 0xa4, 0xd4, 0x3f, 0x95, 0x52, 0x8a, 0x80, 0x1d, 0x7b, 0x81, 0x02, 0xf6,
10446 0x84, 0xfd, 0x91, 0xa8, 0xf2, 0x13, 0x66, 0x06, 0x33, 0x69, 0x10, 0xd5,
10447 0x9c, 0x06, 0xfc, 0x63, 0xdf, 0xa8, 0x4f, 0x32, 0x48, 0x8c, 0x28, 0x77,
10448 0x64, 0xe2, 0x0e, 0xef, 0x3d, 0x4f, 0x0c, 0xb2, 0xe1, 0x0f, 0x59, 0x97,
10449 0xda, 0x8d, 0x17, 0x30, 0x93, 0x2b, 0x0a, 0xf8, 0x20, 0x0e, 0x31, 0xed,
10450 0xe2, 0x0f, 0x85, 0x00, 0x78, 0x83, 0x05, 0x2f, 0x91, 0x64, 0xfe, 0x79,
10451 0xd8, 0x9c, 0xd6, 0xe4, 0x50, 0xf1, 0xbe, 0xd6, 0xb0, 0xf7, 0x61, 0x9c,
10452 0xb8, 0x18, 0x1b, 0x97, 0xd9, 0x50, 0x91, 0x88, 0x35, 0xfd, 0xa5, 0xb9,
10453 0xf7, 0x84, 0x17, 0x2c, 0xad, 0x99, 0xf5, 0x65, 0xb2, 0x55, 0x6c, 0x82,
10454 0xc7, 0x1f, 0xff, 0xc1, 0x15, 0x0c, 0xff, 0xf4, 0xf5, 0x84, 0xf3, 0xcb,
10455 0x93, 0x03, 0x9a, 0xd2, 0x1f, 0x7b, 0xe5, 0xfd, 0x6c, 0x98, 0x4f, 0xe5,
10456 0xe0, 0x21, 0xf1, 0x81, 0x80, 0xfa, 0x33, 0xe6, 0x12, 0xca, 0xdb, 0xe8,
10457 0x39, 0xa0, 0xb7, 0x7e, 0xa8, 0x13, 0x83, 0x1c, 0xe8, 0x7d, 0xc8, 0x47,
10458 0x0c, 0xd7, 0x84, 0xe5, 0xc3, 0x70, 0xf2, 0xfe, 0x18, 0x29, 0xa2, 0x2c,
10459 0xc8, 0x04, 0xf2, 0xe2, 0xdf, 0xda, 0x10, 0x8c, 0xac, 0x2f, 0x9c, 0x39,
10460 0xf4, 0x00, 0x1f, 0xc7, 0xc6, 0x67, 0x10, 0x82, 0x0b, 0x46, 0x79, 0x01,
10461 0xd3, 0xfc, 0x48, 0x60, 0x32, 0x62, 0x51, 0x1d, 0xf3, 0xcf, 0x7a, 0x97,
10462 0xf4, 0x33, 0x2d, 0x65, 0xb4, 0x4d, 0x0d, 0xb5, 0xba, 0xbc, 0xeb, 0x63,
10463 0x6f, 0x45, 0xa1, 0xf4, 0x76, 0xb4, 0x9c, 0x40, 0xce, 0x78, 0xf3, 0xa4,
10464 0x3d, 0x98, 0x95, 0x57, 0xce, 0xb4, 0x79, 0x5b, 0x66, 0x98, 0xc5, 0x79,
10465 0x95, 0xf4, 0xa3, 0x75, 0xb7, 0x7f, 0xd3, 0x7e, 0x7f, 0xcb, 0xb3, 0x66,
10466 0x93, 0x3b, 0xd8, 0x5b, 0xbc, 0xd3, 0xec, 0x10, 0x20, 0xcc, 0xb0, 0x51,
10467 0x10, 0x6c, 0x8d, 0xf9, 0xa5, 0xa4, 0xd5, 0xda, 0x5c, 0xa0, 0xf5, 0x26,
10468 0x86, 0x59, 0xf8, 0xff, 0x5a, 0x3e, 0xaa, 0xd2, 0xe8, 0x23, 0x43, 0xb2,
10469 0xa7, 0x37, 0xc9, 0xf2, 0x61, 0x88, 0xa8, 0xa8, 0xcc, 0xce, 0xb8, 0x6d,
10470 0xa4, 0xd6, 0xd3, 0xb8, 0x78, 0xc0, 0xdc, 0xc8, 0x82, 0x33, 0x82, 0xfa,
10471 0x0f, 0x0d, 0xc7, 0xc1, 0x63, 0x72, 0x28, 0x4b, 0x12, 0x30, 0xfa, 0xef,
10472 0xd3, 0x89, 0xb1, 0xba, 0x2a, 0x44, 0x0a, 0x40, 0xd0, 0x79, 0x1a, 0xf7,
10473 0x81, 0x3d, 0xa2, 0x56, 0x55, 0x24, 0x6f, 0x9d, 0xac, 0x97, 0x5a, 0xc2,
10474 0x5a, 0xe1, 0x64, 0xb4, 0xcd, 0x7b, 0x0f, 0x0c, 0x47, 0x21, 0x85, 0x53,
10475 0x0c, 0x11, 0x50, 0x66, 0xe2, 0x82, 0x83, 0x0b, 0x29, 0x55, 0xbe, 0xcf,
10476 0x30, 0x28, 0xc5, 0xee, 0x4e, 0x16, 0xed, 0xad, 0x8e, 0x1a, 0xeb, 0xef,
10477 0x94, 0x99, 0xb0, 0x67, 0x4a, 0x33, 0xe8, 0x82, 0x7c, 0x3f, 0xa9, 0xe6,
10478 0x1f, 0x81, 0x2d, 0x8b, 0xfb, 0x8f, 0x54, 0x2e, 0x72, 0xe9, 0x04, 0x40,
10479 0xe9, 0x07, 0x44, 0x1d, 0x46, 0x20, 0x5c, 0xcc, 0x71, 0x46, 0x74, 0xc2,
10480 0xa6, 0x39, 0x7b, 0x26, 0xf2, 0xec, 0x41, 0x3a, 0x39, 0xf5, 0x08, 0x0e,
10481 0xfa, 0x72, 0x73, 0x1a, 0xe8, 0x14, 0xfe, 0x68, 0x99, 0xb2, 0xce, 0x93,
10482 0xa6, 0x72, 0x98, 0x1e, 0x20, 0x06, 0xe0, 0x16, 0x51, 0x98, 0xc7, 0x14,
10483 0x6c, 0x68, 0xdb, 0xf8, 0x3f, 0x0a, 0x4c, 0xd9, 0x48, 0xba, 0x56, 0x26,
10484 0x70, 0x72, 0x1b, 0x26, 0xb6, 0x1a, 0x2e, 0x6f, 0x99, 0x17, 0x97, 0xf7,
10485 0x34, 0xe7, 0xd5, 0x3e, 0x1d, 0xfd, 0xe2, 0x03, 0xfb, 0x2e, 0xcb, 0x5a,
10486 0x97, 0xd0, 0x3e, 0x19, 0xf8, 0x1b, 0x9c, 0x3e, 0x44, 0x74, 0x6f, 0xf4,
10487 0x6d, 0x08, 0xcf, 0xce, 0x00, 0x67, 0xf2, 0x99, 0xc1, 0x9f, 0x45, 0x16,
10488 0x4d, 0x93, 0x0d, 0x24, 0x9c, 0x5f, 0x64, 0x4e, 0x9e, 0x62, 0xdd, 0x3d,
10489 0x70, 0x66, 0x5c, 0x41, 0xb2, 0xbf, 0x15, 0x38, 0xd3, 0x3f, 0x95, 0xf4,
10490 0x59, 0x73, 0xd9, 0x46, 0xff, 0x35, 0x38, 0x7f, 0x17, 0xe5, 0x43, 0xec,
10491 0x66, 0x28, 0x79, 0x02, 0x58, 0x78, 0x63, 0x64, 0xe9, 0xa7, 0x24, 0x50,
10492 0x32, 0x49, 0xe5, 0x37, 0x1f, 0xd3, 0xb9, 0x7b, 0xee, 0x4f, 0xc1, 0x96,
10493 0x88, 0xc7, 0x63, 0xaa, 0xf1, 0x16, 0x39, 0xc4, 0x55, 0x3a, 0x98, 0x03,
10494 0x27, 0x3f, 0xa0, 0x83, 0xf2, 0x20, 0x85, 0x47, 0x0c, 0xed, 0x47, 0xbe,
10495 0x4f, 0x07, 0xf9, 0xa1, 0xa7, 0xea, 0x99, 0xba, 0x42, 0xd1, 0xd1, 0xb1,
10496 0x17, 0x08, 0x5a, 0x47, 0xbe, 0x87, 0xa4, 0x65, 0x05, 0xa4, 0xcc, 0x9b,
10497 0x15, 0xf0, 0x74, 0xb9, 0x19, 0x9d, 0x93, 0x2b, 0x6b, 0xe7, 0xed, 0x4c,
10498 0xec, 0x81, 0x15, 0x38, 0x8d, 0xf3, 0xbc, 0x7c, 0x19, 0x86, 0xaf, 0x72,
10499 0x48, 0x47, 0xbb, 0x2f, 0x3f, 0xd7, 0xbc, 0x8f, 0xc6, 0x57, 0x59, 0xf5,
10500 0x7f, 0x98, 0x74, 0x92, 0x07, 0x57, 0xbb, 0x4e, 0x76, 0x02, 0x5c, 0x00,
10501 0xcb, 0xfb, 0x68, 0x9b, 0x80, 0x47, 0xef, 0x78, 0xb5, 0xb8, 0x5c, 0x50,
10502 0x7c, 0x6c, 0x7b, 0x70, 0x6a, 0x38, 0x22, 0xb3, 0x91, 0x89, 0x04, 0x35,
10503 0xf6, 0xc8, 0x57, 0xe0, 0x43, 0x5f, 0x34, 0x75, 0x09, 0xe6, 0x50, 0x0a,
10504 0x8d, 0x9b, 0x6d, 0x4a, 0x02, 0x14, 0x58, 0xfe, 0x45, 0x85, 0x43, 0x8e,
10505 0xd6, 0x31, 0x5f, 0x22, 0x66, 0x88, 0x3f, 0x38, 0x44, 0x54, 0x08, 0x53,
10506 0x48, 0x2b, 0xa5, 0x8d, 0xbe, 0x05, 0xf0, 0x78, 0xf0, 0x3a, 0xa7, 0xce,
10507 0x21, 0xd8, 0x51, 0x9d, 0x43, 0x3f, 0xa7, 0x03, 0xd2, 0x90, 0x08, 0xd0,
10508 0x42, 0x32, 0xe8, 0xcc, 0x61, 0x7b, 0xcc, 0xf5, 0xba, 0xdb, 0xb2, 0x09,
10509 0x3a, 0xb7, 0xd2, 0x6c, 0x02, 0x91, 0x43, 0x7f, 0xc8, 0x82, 0x0a, 0x75,
10510 0x8b, 0x49, 0x8e, 0xa5, 0x45, 0x96, 0x39, 0x1e, 0xc9, 0x0a, 0xcd, 0x6f,
10511 0x02, 0xeb, 0x92, 0xe6, 0xe1, 0xb0, 0x1f, 0x65, 0x98, 0x08, 0xa3, 0x1b,
10512 0x2d, 0x9a, 0xb4, 0x30, 0xc6, 0x4c, 0xbc, 0xc6, 0x5e, 0x7e, 0xda, 0xb1,
10513 0xf5, 0x01, 0xba, 0x89, 0x48, 0x8e, 0x44, 0x23, 0xa6, 0x5d, 0x88, 0xa8,
10514 0x70, 0xea, 0xe7, 0xa4, 0xc8, 0x45, 0x13, 0x8a, 0x7e, 0xa1, 0x5a, 0x42,
10515 0x22, 0xf7, 0x63, 0x59, 0x4e, 0x51, 0x8c, 0xa6, 0x93, 0x7b, 0x20, 0x62,
10516 0xd9, 0x0a, 0xcc, 0xdb, 0x58, 0x29, 0xe6, 0xcf, 0xcb, 0x5a, 0x1d, 0x07,
10517 0xed, 0x1a, 0xb7, 0x98, 0x9e, 0x27, 0x98, 0x60, 0x1a, 0xee, 0x84, 0xdd,
10518 0x3c, 0xe1, 0xa8, 0xe1, 0xd0, 0xe7, 0x6d, 0xaa, 0x88, 0xdc, 0x29, 0x46,
10519 0x7f, 0xec, 0x47, 0x5b, 0xe2, 0xf2, 0x7a, 0x90, 0x70, 0xb5, 0x91, 0x70,
10520 0x10, 0x9b, 0x1d, 0x55, 0x3f, 0xcd, 0xfb, 0xa1, 0xd3, 0xac, 0xfc, 0xf2,
10521 0x91, 0x1c, 0x67, 0x9c, 0xd2, 0x24, 0xc5, 0x7c, 0xe6, 0x64, 0xe0, 0xa0,
10522 0x74, 0x9c, 0x35, 0x29, 0x09, 0xbb, 0xd8, 0x4b, 0x9b, 0x8b, 0x87, 0xf5,
10523 0x26, 0xe6, 0xbe, 0xc8, 0xe1, 0xcc, 0x68, 0x1d, 0x37, 0x92, 0x6b, 0x51,
10524 0xd0, 0x71, 0x70, 0xd7, 0xa3, 0xdf, 0x95, 0x51, 0x9b, 0x57, 0xcf, 0x11,
10525 0x80, 0x1b, 0x92, 0x9b, 0xae, 0xba, 0x3b, 0x5b, 0x3f, 0xc8, 0x68, 0x82,
10526 0x25, 0x32, 0xaa, 0x16, 0x28, 0x89, 0xa9, 0xee, 0x20, 0x7e, 0xe8, 0xe4,
10527 0x4b, 0x9f, 0xb4, 0x5b, 0xca, 0xbe, 0x23, 0x03, 0xfc, 0x8a, 0xd0, 0xed,
10528 0xf3, 0xbe, 0x4f, 0x27, 0x44, 0x73, 0xad, 0x31, 0x7f, 0xf4, 0x9e, 0x7f,
10529 0x76, 0x60, 0xf2, 0x82, 0x4d, 0x82, 0x96, 0x6a, 0xf3, 0x2b, 0x70, 0xeb,
10530 0xb3, 0xe0, 0xe6, 0xa0, 0x1e, 0x65, 0x2e, 0xcb, 0x4b, 0xab, 0x5a, 0xc1,
10531 0x8d, 0xd9, 0xb8, 0x30, 0xb9, 0xc4, 0xc5, 0x5c, 0x34, 0x2b, 0xdd, 0x34,
10532 0xf6, 0x7e, 0x94, 0xeb, 0x91, 0x6e, 0xc7, 0xbc, 0x08, 0xdf, 0x7f, 0x32,
10533 0x2b, 0xbd, 0x00, 0x2f, 0x9d, 0x12, 0xde, 0xdf, 0xf6, 0xfe, 0x53, 0x51,
10534 0x2f, 0x8a, 0xe3, 0x6f, 0xa1, 0x34, 0x1a, 0x29, 0xb4, 0xee, 0x37, 0x24,
10535 0xed, 0x18, 0xa5, 0x35, 0x90, 0xdb, 0x2d, 0xa5, 0x4e, 0x35, 0xfe, 0x20,
10536 0x1e, 0x94, 0x5f, 0xac, 0x63, 0xdf, 0x0b, 0xca, 0x9d, 0x02, 0x52, 0x4f,
10537 0xd1, 0x74, 0x55, 0x5f, 0xef, 0xc6, 0x23, 0x2e, 0x15, 0x5c, 0x89, 0xab,
10538 0xce, 0x71, 0xcd, 0xd0, 0x83, 0x87, 0x1b, 0x9b, 0x4a, 0x7c, 0x1c, 0xc3,
10539 0xf4, 0xa9, 0xde, 0x91, 0x43, 0xf0, 0x79, 0x85, 0xc9, 0x24, 0x33, 0x20,
10540 0x0b, 0x49, 0x33, 0x6e, 0x83, 0x22, 0x5a, 0x23, 0xb2, 0x6e, 0xa4, 0xcf,
10541 0x3f, 0xa8, 0x2f, 0xba, 0xed, 0x5c, 0xa8, 0x87, 0x86, 0xec, 0x38, 0x96,
10542 0x0b, 0x6e, 0x72, 0x6b, 0x16, 0xdd, 0x85, 0x47, 0xde, 0xfc, 0x05, 0xba,
10543 0xba, 0x93, 0x3b, 0x85, 0x7a, 0xd0, 0xc6, 0x63, 0xc1, 0x65, 0x69, 0x2e,
10544 0xd4, 0xb2, 0x65, 0x29, 0x3e, 0x8c, 0x59, 0x11, 0x0d, 0xf9, 0xc0, 0x3c,
10545 0x5a, 0xbf, 0x68, 0x14, 0x05, 0xde, 0x5d, 0xfe, 0x64, 0x98, 0x94, 0x44,
10546 0x49, 0xc7, 0x33, 0xb6, 0xfc, 0x8b, 0xae, 0xb0, 0x0d, 0x7f, 0x5a, 0x2a,
10547 0x56, 0x5b, 0x16, 0x2b, 0x5f, 0xae, 0xed, 0xa2, 0x56, 0x8f, 0xfe, 0xdb,
10548 0xee, 0x21, 0x5c, 0x98, 0x63, 0xcb, 0x9b, 0xb8, 0xac, 0x18, 0x13, 0x0c,
10549 0xaf, 0xec, 0x76, 0xf1, 0x33, 0x8e, 0x03, 0x00, 0x2e, 0xc4, 0x72, 0x51,
10550 0x70, 0xa6, 0xd3, 0xc3, 0x4a, 0x98, 0x7a, 0x8a, 0xcd, 0x78, 0xd8, 0x02,
10551 0x08, 0xe9, 0x34, 0xa7, 0x1c, 0x01, 0x4c, 0x84, 0x69, 0x99, 0x95, 0xa1,
10552 0x36, 0xed, 0xb3, 0x4e, 0x4b, 0xcb, 0x86, 0x7f, 0xa5, 0x59, 0xf1, 0x68,
10553 0x8f, 0x99, 0xd3, 0x2f, 0x55, 0x56, 0x9a, 0xea, 0x09, 0x37, 0x44, 0x57,
10554 0xb5, 0xe1, 0x11, 0xae, 0x8a, 0x87, 0xf4, 0x93, 0x9a, 0x0a, 0xf2, 0xb0,
10555 0x20, 0x73, 0xf4, 0x93, 0xcf, 0x7c, 0x17, 0x34, 0x36, 0xcf, 0xd4, 0xff,
10556 0x7b, 0xcd, 0x55, 0x3a, 0x18, 0x32, 0xc1, 0xce, 0xea, 0x11, 0x81, 0xbc,
10557 0x90, 0xeb, 0xc5, 0xc6, 0x15, 0x8c, 0xda, 0x19, 0x28, 0x02, 0x8a, 0x3c,
10558 0xb8, 0x81, 0x90, 0x8f, 0x94, 0x14, 0xcb, 0xba, 0x34, 0x7d, 0x16, 0xd2,
10559 0xb9, 0x25, 0x12, 0x51, 0x9b, 0x9c, 0x38, 0x1d, 0xdb, 0xa7, 0xe7, 0xf8,
10560 0x68, 0x9f, 0x34, 0x39, 0xed, 0x71, 0x68, 0x4e, 0x2a, 0xab, 0x39, 0xe3,
10561 0x87, 0x54, 0x78, 0x2a, 0xf7, 0xec, 0x46, 0xe4, 0xf8, 0xb5, 0x25, 0x8f,
10562 0x4e, 0xa7, 0x45, 0x6e, 0x10, 0x87, 0x21, 0x63, 0x8e, 0xad, 0x3c, 0xe0,
10563 0xb9, 0xa0, 0xc7, 0xb5, 0x34, 0x8d, 0x81, 0x6c, 0xa2, 0x87, 0x49, 0x86,
10564 0x17, 0xde, 0xc7, 0x78, 0x3e, 0x97, 0x4b, 0xfd, 0x61, 0xce, 0xe5, 0xa6,
10565 0x32, 0x88, 0xa0, 0x42, 0x87, 0x81, 0xfb, 0xf7, 0x54, 0x79, 0xfe, 0xc9,
10566 0x56, 0x6c, 0x91, 0x8d, 0x86, 0x60, 0x79, 0x0f, 0x72, 0xee, 0x34, 0x52,
10567 0xfe, 0xdf, 0x1c, 0x0c, 0xde, 0x6c, 0x26, 0xd5, 0x48, 0xb5, 0x8b, 0x4d,
10568 0x9b, 0xdd, 0x6f, 0x5c, 0x56, 0x0f, 0x0c, 0x47, 0xfa, 0x0d, 0x56, 0x1a,
10569 0x13, 0x0f, 0x9b, 0x30, 0x54, 0x3f, 0xb8, 0xe4, 0xba, 0x07, 0xe9, 0x57,
10570 0x5e, 0x94, 0xb4, 0x2b, 0xd4, 0xb5, 0x34, 0x9c, 0x6e, 0x34, 0xc5, 0x75,
10571 0xee, 0x95, 0x75, 0x77, 0xbf, 0xf1, 0xf0, 0x71, 0x7c, 0x60, 0x29, 0xe8,
10572 0x4c, 0xc4, 0xe4, 0xd9, 0xc5, 0xfc, 0x5f, 0xbe, 0x7b, 0x04, 0x57, 0x80,
10573 0xbe, 0x4c, 0x4e, 0x44, 0xa3, 0x44, 0xe3, 0x87, 0x27, 0x3c, 0x47, 0xc7,
10574 0x1f, 0x6b, 0x71, 0x8f, 0x70, 0x39, 0x3f, 0x7a, 0xca, 0x8f, 0x9e, 0x31,
10575 0x43, 0xdb, 0xa8, 0x1e, 0x89, 0x13, 0xa6, 0xc0, 0x91, 0xe4, 0x1c, 0xd0,
10576 0xe1, 0x1b, 0x26, 0x57, 0x7e, 0xae, 0x51, 0xf0, 0x66, 0xd6, 0xcc, 0xac,
10577 0x98, 0x8a, 0xd0, 0x92, 0x9e, 0x19, 0x57, 0x8a, 0x79, 0x4a, 0xa9, 0xfb,
10578 0xb9, 0xca, 0x1f, 0x9c, 0x5d, 0x2c, 0xed, 0xc9, 0x50, 0x96, 0x3b, 0x91,
10579 0xb1, 0x91, 0xf2, 0x8f, 0x53, 0x35, 0x0d, 0xac, 0xf3, 0xd0, 0x70, 0xa8,
10580 0xb9, 0x32, 0x44, 0xc0, 0x0d, 0xe6, 0x08, 0xb6, 0xec, 0x85, 0xb1, 0xb0,
10581 0x1e, 0x62, 0x0f, 0x4c, 0x1c, 0x9c, 0x4e, 0x8d, 0x45, 0xf6, 0xe0, 0x3d,
10582 0x02, 0x77, 0xd0, 0x5c, 0xc9, 0x83, 0x7c, 0x41, 0x6c, 0xc2, 0x6c, 0xda,
10583 0xd5, 0x83, 0xd1, 0x8d, 0x1e, 0xcd, 0x0a, 0x94, 0xe2, 0x6e, 0x3d, 0x10,
10584 0xb6, 0x8b, 0x19, 0x85, 0x22, 0xa8, 0x27, 0x24, 0xfe, 0x32, 0x1e, 0xa9,
10585 0x91, 0xfd, 0xd0, 0xec, 0xc8, 0x8d, 0xd4, 0x6f, 0x10, 0x81, 0x33, 0x5b,
10586 0x6b, 0x5a, 0x00, 0x27, 0xec, 0x3e, 0xea, 0x0e, 0x4e, 0x05, 0xe5, 0xde,
10587 0xa4, 0xfc, 0x38, 0xc4, 0x2a, 0xc3, 0xe4, 0xa7, 0x79, 0xfc, 0xce, 0x87,
10588 0x01, 0x73, 0xa0, 0x51, 0x3f, 0xb5, 0x27, 0xa1, 0x76, 0x10, 0xa2, 0x15,
10589 0xf4, 0x4a, 0x93, 0x0e, 0x6e, 0x93, 0xa9, 0x1b, 0x07, 0x9e, 0xc3, 0xa7,
10590 0xd3, 0x32, 0x7f, 0x58, 0x11, 0x23, 0x7a, 0xd2, 0x8a, 0xb8, 0xae, 0x0c,
10591 0x53, 0xea, 0x39, 0xfe, 0x09, 0xf6, 0x19, 0x1e, 0x83, 0x4a, 0x19, 0xe0,
10592 0x61, 0xb7, 0x3e, 0xec, 0x48, 0x78, 0x03, 0xc4, 0x46, 0xa8, 0x9b, 0x0c,
10593 0x3e, 0x95, 0x15, 0x20, 0x8a, 0x13, 0xc3, 0xa9, 0xea, 0xe4, 0x31, 0x2c,
10594 0x81, 0x16, 0x6b, 0xe0, 0xe4, 0xb1, 0x27, 0xa7, 0xb6, 0xb3, 0xa6, 0x32,
10595 0x9f, 0x4c, 0xe2, 0x84, 0x42, 0xbd, 0x8f, 0x88, 0x1c, 0xc2, 0x48, 0x60,
10596 0x60, 0x7b, 0x23, 0xa5, 0xd9, 0x38, 0xb9, 0xab, 0x99, 0xf9, 0x0e, 0xde,
10597 0x57, 0x37, 0xda, 0xea, 0xd1, 0x03, 0x0f, 0xda, 0x1e, 0xaf, 0x92, 0x1e,
10598 0xe1, 0xe7, 0xa0, 0x4a, 0x02, 0xc3, 0x62, 0x1b, 0xb0, 0xeb, 0x58, 0x8f,
10599 0x5d, 0xc9, 0x65, 0x82, 0xce, 0x87, 0x1e, 0x3a, 0x74, 0x94, 0x80, 0x50,
10600 0xa4, 0x20, 0x59, 0x23, 0x1d, 0x96, 0x00, 0xc5, 0x1e, 0xb3, 0x4a, 0x1b,
10601 0xa5, 0x6c, 0xa7, 0x17, 0x91, 0xdb, 0x96, 0xa5, 0x92, 0x5f, 0x03, 0x55,
10602 0xe0, 0x07, 0x76, 0x4a, 0x02, 0x8f, 0x0a, 0xf1, 0xcd, 0xe0, 0x80, 0x18,
10603 0x7a, 0xd4, 0xcc, 0x0c, 0xf1, 0x8f, 0xa9, 0x43, 0xed, 0x60, 0xf9, 0x70,
10604 0x6d, 0xf6, 0xd4, 0xbf, 0xb6, 0x6a, 0xeb, 0x36, 0x5a, 0xfb, 0xe3, 0x3f,
10605 0x8c, 0x3b, 0xe4, 0x9f, 0x3f, 0x64, 0x6b, 0xbf, 0xb4, 0xcb, 0x7d, 0x10,
10606 0xfd, 0xe6, 0x2e, 0x06, 0xe9, 0x15, 0x2a, 0xba, 0x2c, 0x63, 0xd2, 0x06,
10607 0x6c, 0xbf, 0x79, 0x0e, 0xce, 0xd6, 0xc1, 0xbc, 0x2b, 0xc2, 0xa4, 0x56,
10608 0xf4, 0x77, 0xd4, 0x79, 0xab, 0x40, 0x59, 0x2e, 0xd8, 0x44, 0x94, 0x04,
10609 0xc4, 0xc9, 0x34, 0xb3, 0xa4, 0x8a, 0xc9, 0xec, 0x45, 0x7e, 0xa1, 0x74,
10610 0x68, 0xe4, 0x1d, 0xfa, 0x1d, 0xce, 0x25, 0x05, 0x75, 0x1a, 0xf3, 0x7e,
10611 0x6c, 0x87, 0xa0, 0x40, 0xe5, 0x91, 0xc0, 0xe0, 0xd0, 0xd7, 0x8c, 0xcf,
10612 0xfd, 0x6e, 0x7c, 0xd5, 0x67, 0xee, 0xec, 0x53, 0x8d, 0x87, 0x0e, 0x86,
10613 0xab, 0xef, 0x92, 0x5c, 0x47, 0x2f, 0x40, 0x68, 0x38, 0x4d, 0x3f, 0x88,
10614 0x22, 0xce, 0x3f, 0xf0, 0x86, 0x9e, 0x91, 0xa4, 0xc1, 0xdf, 0x99, 0x51,
10615 0x05, 0xa3, 0x2d, 0x09, 0x25, 0x0c, 0x49, 0x5d, 0xb3, 0xa9, 0x25, 0xd2,
10616 0xc4, 0x34, 0xb3, 0x5a, 0xbb, 0x50, 0x4c, 0x54, 0x81, 0x23, 0x50, 0x10,
10617 0x84, 0x96, 0xef, 0x9d, 0x4d, 0xcb, 0x72, 0xb1, 0x3a, 0x1e, 0x24, 0x6d,
10618 0x6a, 0xd4, 0xcb, 0x69, 0x15, 0x68, 0x58, 0xaf, 0xc4, 0x39, 0xcd, 0x66,
10619 0x86, 0x5d, 0x2f, 0xd1, 0x2c, 0x84, 0x57, 0xfa, 0xfa, 0xf4, 0xec, 0xc4,
10620 0xd4, 0x62, 0xfc, 0xbf, 0x9b, 0x7d, 0x9c, 0x4a, 0x31, 0xf2, 0xb2, 0xfe,
10621 0x19, 0x23, 0xc7, 0x01, 0x3c, 0x52, 0x10, 0x1d, 0xfd, 0x51, 0x0d, 0x3d,
10622 0xe7, 0xe4, 0xdd, 0x37, 0xa7, 0xef, 0xcf, 0xdf, 0xbd, 0x3d, 0x79, 0x77,
10623 0xf9, 0x99, 0x9b, 0x9e, 0x11, 0xe8, 0xe6, 0x5c, 0xfa, 0xe9, 0x61, 0x29,
10624 0x46, 0xd5, 0x6f, 0x09, 0x56, 0x83, 0xdb, 0xcf, 0xc3, 0x36, 0xc8, 0xbf,
10625 0xfa, 0xee, 0x70, 0xce, 0x43, 0x1a, 0xe4, 0xc5, 0xf4, 0xd6, 0x39, 0xba,
10626 0x54, 0xc7, 0x98, 0x19, 0xd3, 0xe7, 0xb0, 0x30, 0x77, 0x93, 0x4f, 0xb9,
10627 0xa1, 0xf4, 0x1d, 0xb6, 0x59, 0xa4, 0x12, 0x26, 0x90, 0x55, 0xc6, 0xec,
10628 0xd2, 0x7c, 0x08, 0x1b, 0xa1, 0xad, 0x4d, 0xc2, 0x6e, 0xe4, 0x07, 0x4e,
10629 0xa8, 0x41, 0xab, 0x31, 0xb4, 0x1a, 0x6d, 0x51, 0x40, 0x5a, 0x23, 0x37,
10630 0xb1, 0x8f, 0x4b, 0x2b, 0xb5, 0x59, 0x96, 0x3a, 0xf2, 0xda, 0xed, 0x5c,
10631 0xc6, 0xcf, 0x37, 0x93, 0x13, 0x9c, 0x15, 0x7c, 0xaf, 0x7e, 0x51, 0xe0,
10632 0x88, 0x1f, 0x0f, 0xd1, 0x9a, 0xf9, 0xe2, 0xfb, 0x03, 0x64, 0xd0, 0x1f,
10633 0xfd, 0xf6, 0x3f, 0xa5, 0x33, 0x05, 0xb9, 0xc6, 0x1d, 0x18, 0x09, 0x3c,
10634 0x50, 0x86, 0x94, 0x14, 0xb1, 0xf9, 0x78, 0xf1, 0xfe, 0xfc, 0xbb, 0xbf,
10635 0xfd, 0xca, 0x9f, 0x70, 0x92, 0x56, 0xbf, 0xc7, 0x6a, 0x0d, 0x1d, 0xfc,
10636 0xc7, 0x5f, 0xfd, 0x6b, 0xf5, 0xe1, 0xbb, 0x92, 0x27, 0x45, 0x32, 0x22,
10637 0xa0, 0xb1, 0x33, 0x28, 0x15, 0x37, 0x66, 0xb5, 0x65, 0x5c, 0x6e, 0x42,
10638 0x8d, 0xc9, 0x22, 0x27, 0xad, 0xa9, 0xac, 0x33, 0x67, 0xec, 0x83, 0xe0,
10639 0xf5, 0x19, 0x1b, 0xc8, 0xa6, 0x19, 0x2b, 0x5a, 0x16, 0x22, 0x62, 0x09,
10640 0x66, 0x16, 0x15, 0xaf, 0x18, 0x82, 0x1c, 0x9d, 0x9d, 0xfd, 0xaa, 0x54,
10641 0x80, 0x4b, 0x34, 0xcb, 0xed, 0x62, 0x7a, 0xc6, 0x86, 0x91, 0xa7, 0x1f,
10642 0x68, 0xc3, 0xf4, 0xee, 0x5c, 0x66, 0x73, 0x48, 0xe6, 0x53, 0xaf, 0x4c,
10643 0xc0, 0xe8, 0x89, 0x31, 0xe0, 0xab, 0x2d, 0x0f, 0x71, 0x62, 0xe5, 0x26,
10644 0x57, 0x4d, 0x94, 0x5f, 0x78, 0xe9, 0x9b, 0x68, 0xc7, 0xc9, 0x53, 0x5c,
10645 0x53, 0xc1, 0xd4, 0x14, 0xf8, 0x06, 0xaa, 0x11, 0xcd, 0x0d, 0x2a, 0x2c,
10646 0xa6, 0x8d, 0x72, 0x0d, 0x07, 0x4a, 0x63, 0x98, 0x88, 0x8f, 0xdc, 0x87,
10647 0x88, 0x3a, 0x20, 0x8d, 0x8b, 0xb4, 0xfc, 0x44, 0xe5, 0xb3, 0x78, 0x3c,
10648 0x49, 0xe9, 0x56, 0x60, 0x32, 0x34, 0x8a, 0x68, 0x4e, 0x02, 0xb6, 0x68,
10649 0xd1, 0x13, 0xd2, 0x32, 0x34, 0x3b, 0x54, 0x4c, 0x62, 0x56, 0x57, 0x30,
10650 0x64, 0xc0, 0xd1, 0x9c, 0xb8, 0x56, 0xcb, 0x2f, 0x9d, 0x23, 0x39, 0x07,
10651 0xb6, 0x34, 0x00, 0x6a, 0xa1, 0x86, 0xc8, 0x5d, 0x05, 0xe7, 0xc2, 0x07,
10652 0xf8, 0xd3, 0x55, 0x99, 0x4c, 0x27, 0xe1, 0x92, 0xd5, 0xa0, 0xa8, 0x10,
10653 0xe8, 0xb2, 0x52, 0xcb, 0x50, 0x95, 0x5b, 0x71, 0xb3, 0x12, 0xc4, 0x07,
10654 0xa1, 0x38, 0xa0, 0xef, 0x86, 0x15, 0x46, 0x74, 0xb2, 0xad, 0x6a, 0x92,
10655 0x83, 0xb1, 0x4c, 0xe1, 0xa3, 0xba, 0xa5, 0x9f, 0xb3, 0x2d, 0x44, 0xf8,
10656 0x7d, 0xcd, 0xa5, 0x28, 0x62, 0x80, 0xa8, 0x02, 0xbd, 0x3b, 0x16, 0x38,
10657 0xc0, 0x89, 0xbc, 0x3d, 0x2e, 0xaa, 0x80, 0xfe, 0xe6, 0x31, 0xc3, 0x59,
10658 0x4c, 0x31, 0x5a, 0x55, 0x85, 0x45, 0x27, 0x95, 0x84, 0x7d, 0xf8, 0x7d,
10659 0xdc, 0x4d, 0x3a, 0x5d, 0xce, 0x34, 0x7b, 0x7e, 0xdf, 0x82, 0xaa, 0x36,
10660 0x05, 0xbe, 0x27, 0x1f, 0x33, 0x49, 0x8c, 0x29, 0xf5, 0x42, 0xc9, 0x93,
10661 0xb5, 0xa7, 0xcd, 0x34, 0xc9, 0xec, 0xe1, 0x49, 0xb2, 0x82, 0xab, 0xe8,
10662 0xc5, 0x49, 0x4b, 0xad, 0x11, 0xa7, 0xb6, 0x28, 0xd7, 0x33, 0xdb, 0x0b,
10663 0xdf, 0xd7, 0xd0, 0xa0, 0xb4, 0x1c, 0xdb, 0x46, 0xe3, 0x28, 0x3e, 0xe9,
10664 0x01, 0xb4, 0x50, 0xb2, 0xba, 0xb4, 0x75, 0xa0, 0x4a, 0x23, 0x53, 0x03,
10665 0x21, 0x27, 0x88, 0x30, 0x13, 0x86, 0x0a, 0x1d, 0x63, 0xc2, 0xcd, 0x70,
10666 0xcd, 0x4d, 0xf3, 0x32, 0xd4, 0x2a, 0x64, 0x88, 0x19, 0xff, 0x49, 0xd5,
10667 0x56, 0xdb, 0x64, 0x27, 0xa4, 0xe1, 0x52, 0x49, 0x0b, 0x96, 0x06, 0xc9,
10668 0x2c, 0xf6, 0xb8, 0xc5, 0x78, 0x17, 0xeb, 0x25, 0x08, 0xe8, 0x25, 0xe0,
10669 0xac, 0xe5, 0x3c, 0x42, 0xea, 0x31, 0x2e, 0xcd, 0x11, 0x8b, 0x44, 0x92,
10670 0x9f, 0xc5, 0xaf, 0x12, 0xab, 0x28, 0xc6, 0x3b, 0xf0, 0x20, 0x8a, 0x3a,
10671 0x07, 0x07, 0xdb, 0x9d, 0x48, 0x3d, 0xb6, 0x4d, 0x06, 0x27, 0x8c, 0x87,
10672 0x12, 0x1f, 0xda, 0xc2, 0xc7, 0x38, 0x3d, 0x37, 0xc1, 0xf8, 0xa8, 0xed,
10673 0x66, 0xee, 0x88, 0xd1, 0x8b, 0x8b, 0x57, 0x47, 0x97, 0x47, 0xd1, 0x21,
10674 0x70, 0xd5, 0x17, 0x3e, 0x26, 0x8f, 0x45, 0xbe, 0x6b, 0xc4, 0xc6, 0xd5,
10675 0x0a, 0xa0, 0x50, 0x7b, 0x55, 0xdc, 0x8b, 0xff, 0x76, 0x92, 0x4a, 0x35,
10676 0xf3, 0x75, 0xee, 0xa1, 0xde, 0x18, 0x80, 0x61, 0x55, 0x21, 0x81, 0x35,
10677 0xd2, 0x19, 0x82, 0x64, 0xe0, 0xc3, 0x76, 0xe8, 0x58, 0x32, 0x74, 0x17,
10678 0x59, 0x4d, 0xc2, 0x1e, 0x9f, 0x9f, 0x7d, 0x78, 0xfb, 0x6e, 0x10, 0x1d,
10679 0x22, 0xe8, 0x22, 0x39, 0x4e, 0x6e, 0xd3, 0xb1, 0x8f, 0xa3, 0xcd, 0xf2,
10680 0xb0, 0xdb, 0x40, 0x70, 0xb6, 0x16, 0xa5, 0x29, 0xe6, 0x2c, 0x6b, 0x56,
10681 0x4a, 0x1b, 0x72, 0x8a, 0xf9, 0x18, 0x7f, 0x4d, 0x73, 0x0b, 0x70, 0xf4,
10682 0x58, 0xe0, 0x7e, 0xd1, 0xb4, 0x03, 0x26, 0xbf, 0x42, 0x1e, 0xe8, 0x0d,
10683 0xe3, 0x42, 0x8a, 0x8e, 0x6e, 0x31, 0x0f, 0x73, 0xe2, 0xe3, 0xc3, 0xf0,
10684 0xf4, 0x1c, 0x30, 0x66, 0xac, 0x2e, 0x41, 0xca, 0x5d, 0x2d, 0x18, 0xf6,
10685 0x08, 0xf9, 0x52, 0x1a, 0x9b, 0x90, 0x8c, 0xbd, 0xad, 0xb5, 0x07, 0x38,
10686 0x86, 0xf3, 0xf5, 0xf1, 0xf8, 0xe8, 0xe3, 0x57, 0x1f, 0xde, 0xbd, 0x3a,
10687 0x3b, 0x09, 0xa3, 0x64, 0x2b, 0x0d, 0x6a, 0x0b, 0x14, 0x3d, 0x0a, 0x34,
10688 0xce, 0x18, 0x2d, 0x13, 0x4e, 0x8b, 0x6f, 0x8c, 0xfb, 0xe6, 0xfc, 0xed,
10689 0x49, 0x90, 0x15, 0x74, 0x44, 0x89, 0xe7, 0xb1, 0xef, 0xc5, 0xec, 0x18,
10690 0x2d, 0x06, 0x6e, 0x86, 0xd1, 0xa7, 0x52, 0xe9, 0xc3, 0x1c, 0xc1, 0x59,
10691 0x1a, 0xa9, 0x57, 0x75, 0x9e, 0x62, 0xaa, 0x06, 0xed, 0x7a, 0x83, 0x2b,
10692 0x0c, 0x7d, 0x52, 0x52, 0x96, 0xab, 0x34, 0x5b, 0x30, 0x7e, 0x2e, 0x8d,
10693 0x1e, 0x7d, 0xf7, 0xea, 0xeb, 0x8f, 0xc7, 0xe7, 0xef, 0x9a, 0xc7, 0xf5,
10694 0xf5, 0xe9, 0xd7, 0x34, 0xf5, 0xc6, 0x6a, 0x06, 0x83, 0xb3, 0x8f, 0x5f,
10695 0x1d, 0x1d, 0xff, 0xe5, 0xe4, 0xdd, 0xab, 0xe8, 0xd0, 0xa9, 0x62, 0x0b,
10696 0x2c, 0xee, 0xa1, 0x12, 0xe0, 0x8e, 0x96, 0xcf, 0x75, 0x2c, 0xf0, 0xaf,
10697 0x04, 0x45, 0xd3, 0xe6, 0xe5, 0xcb, 0x25, 0x62, 0xa6, 0x2c, 0xd6, 0x1d,
10698 0x86, 0xea, 0x74, 0xa9, 0x4a, 0x10, 0xad, 0x64, 0x67, 0x4a, 0x62, 0x5e,
10699 0x2e, 0x83, 0x60, 0xb1, 0xd4, 0x16, 0x7d, 0x3f, 0x31, 0xfe, 0x79, 0x52,
10700 0xe1, 0xe1, 0xc6, 0x35, 0xc8, 0x4f, 0x9c, 0xa6, 0x1b, 0xcc, 0x8d, 0x72,
10701 0x7c, 0xb1, 0xfa, 0xf1, 0x48, 0x75, 0xa0, 0x5a, 0xaf, 0x62, 0x74, 0xbf,
10702 0x7e, 0x22, 0x54, 0x29, 0x85, 0x05, 0xa5, 0x61, 0x43, 0xb5, 0xfa, 0x02,
10703 0xa5, 0x15, 0xdb, 0x55, 0xbb, 0x67, 0xc3, 0x42, 0xac, 0xb2, 0x6a, 0x58,
10704 0xc5, 0xf7, 0xad, 0xe9, 0xc7, 0x02, 0x26, 0x1a, 0x2e, 0x6e, 0x33, 0xd3,
10705 0x95, 0x7b, 0x62, 0x1d, 0xd7, 0xdd, 0x73, 0xd6, 0xbd, 0x71, 0x00, 0x84,
10706 0x89, 0x8b, 0xb2, 0x9c, 0x76, 0xa3, 0xab, 0x6c, 0x51, 0x4d, 0x41, 0x6e,
10707 0x5d, 0x95, 0x9f, 0x52, 0xaf, 0x0c, 0x00, 0x84, 0xc1, 0x98, 0x7e, 0x9b,
10708 0x95, 0xf0, 0x47, 0x3e, 0x87, 0x01, 0xf0, 0x9d, 0x62, 0x51, 0xd2, 0x4f,
10709 0x4b, 0x10, 0x12, 0x59, 0x96, 0x10, 0xd0, 0x29, 0x56, 0xa1, 0xb1, 0x6f,
10710 0x9c, 0x5b, 0xce, 0xde, 0xe6, 0x53, 0xaf, 0xa4, 0x0f, 0x5e, 0x36, 0x13,
10711 0x5e, 0x76, 0x84, 0x98, 0xb5, 0x25, 0xb0, 0x87, 0xff, 0xa3, 0x83, 0xd9,
10712 0x14, 0x9b, 0x0e, 0x12, 0xfb, 0xad, 0x81, 0x82, 0xf5, 0x74, 0x32, 0x76,
10713 0x2a, 0xf6, 0xa3, 0x33, 0x2c, 0x36, 0x97, 0x4c, 0x6a, 0x83, 0x43, 0xc2,
10714 0xb9, 0x09, 0x62, 0x74, 0x8a, 0x49, 0xda, 0x77, 0x8e, 0xb8, 0x8f, 0x03,
10715 0x21, 0x27, 0x4b, 0x4f, 0x12, 0x3b, 0x93, 0x18, 0xb1, 0x90, 0x2c, 0x41,
10716 0xb3, 0xbe, 0xbf, 0x9e, 0x9d, 0x7f, 0xfd, 0xea, 0xf4, 0x3d, 0x2d, 0xd1,
10717 0xc1, 0x8b, 0x0f, 0xad, 0x36, 0x74, 0xa8, 0xea, 0xf5, 0xce, 0x5d, 0x83,
10718 0x39, 0x5b, 0x35, 0xd4, 0x3c, 0xaf, 0x0b, 0xb8, 0xb5, 0x0f, 0x63, 0x49,
10719 0x89, 0x75, 0xc8, 0x54, 0xe7, 0x30, 0x94, 0xc6, 0xe3, 0x05, 0x02, 0x78,
10720 0xfc, 0x7d, 0x9a, 0x5f, 0x95, 0x81, 0x4c, 0x48, 0x3e, 0xb9, 0x66, 0x80,
10721 0xae, 0xc1, 0x27, 0x63, 0x57, 0x0d, 0xf3, 0x17, 0xfe, 0x39, 0x96, 0xea,
10722 0x30, 0xa6, 0x27, 0xe2, 0xc7, 0x85, 0x22, 0xd1, 0x4e, 0xba, 0x53, 0x3a,
10723 0x8e, 0xd6, 0x81, 0xff, 0xaf, 0x93, 0xbb, 0x8d, 0x7e, 0xf4, 0x8a, 0xae,
10724 0xdc, 0xc4, 0x69, 0xcb, 0x55, 0x26, 0x5a, 0xb6, 0xab, 0x91, 0xd3, 0x91,
10725 0x7f, 0x51, 0x82, 0xdd, 0x80, 0x72, 0x9f, 0x2a, 0x8d, 0xfb, 0xd1, 0xb7,
10726 0xd4, 0x3c, 0x99, 0x88, 0x37, 0x84, 0x0b, 0x81, 0x7a, 0xc3, 0x05, 0xea,
10727 0x71, 0x07, 0x6f, 0x4e, 0xce, 0xce, 0x08, 0x70, 0x65, 0xcc, 0xb0, 0x7f,
10728 0xdf, 0xbc, 0x1d, 0x44, 0x75, 0x69, 0x0c, 0xb4, 0x1b, 0x27, 0x04, 0x71,
10729 0x97, 0x4e, 0x0c, 0xb2, 0xea, 0xab, 0x63, 0xea, 0x8f, 0x1c, 0x23, 0x90,
10730 0x50, 0x7a, 0xd7, 0xf1, 0xba, 0x23, 0x25, 0x2e, 0x58, 0x1f, 0x4a, 0xd4,
10731 0xe3, 0x93, 0xf7, 0x97, 0x1f, 0x95, 0x03, 0x56, 0xbd, 0x79, 0xa8, 0x10,
10732 0xa0, 0x71, 0xf3, 0x98, 0x41, 0xd1, 0x95, 0x12, 0x6e, 0x8e, 0xf1, 0x94,
10733 0x0b, 0x0d, 0x86, 0xfd, 0xcb, 0xc9, 0xdf, 0x80, 0x5b, 0x79, 0x58, 0x83,
10734 0xc5, 0xff, 0x45, 0x18, 0xa2, 0x87, 0xbd, 0x0e, 0x6d, 0xb6, 0x86, 0xf1,
10735 0x03, 0x2a, 0x88, 0x9a, 0x74, 0x50, 0xf3, 0xd5, 0x39, 0x72, 0xa0, 0x49,
10736 0xfb, 0x40, 0x04, 0x9e, 0x12, 0xcc, 0x40, 0xbc, 0xf1, 0x2c, 0x9b, 0x48,
10737 0x2a, 0x71, 0x5c, 0x49, 0xe1, 0xc7, 0x35, 0xe1, 0x23, 0x91, 0xbc, 0xf5,
10738 0x2d, 0x39, 0x46, 0x7e, 0x60, 0x1c, 0x21, 0xb4, 0xeb, 0xe2, 0xe9, 0xfd,
10739 0xcf, 0x89, 0x69, 0x44, 0x0c, 0xa2, 0x69, 0x82, 0x66, 0x2a, 0x0c, 0x88,
10740 0x90, 0x3a, 0x1c, 0x7c, 0xe0, 0xcd, 0xcd, 0x12, 0xcf, 0xf4, 0x62, 0xe0,
10741 0x61, 0x1a, 0x82, 0x39, 0x02, 0x0b, 0x82, 0x15, 0x3e, 0xfb, 0x5b, 0xec,
10742 0x21, 0x07, 0xea, 0xd1, 0x27, 0x71, 0x45, 0xdf, 0x5a, 0xce, 0xe3, 0xf2,
10743 0xbe, 0xa9, 0xdf, 0x11, 0xe0, 0x56, 0x1b, 0xcb, 0x2b, 0x47, 0x1e, 0x68,
10744 0xd7, 0x6d, 0x42, 0x9d, 0x41, 0x9d, 0x08, 0xc4, 0xe8, 0x57, 0x39, 0xea,
10745 0xc1, 0xf4, 0x43, 0xe9, 0xc4, 0x0d, 0x7f, 0x79, 0x37, 0x18, 0x04, 0x60,
10746 0xae, 0x50, 0xbe, 0xc2, 0x83, 0x8e, 0xc7, 0x68, 0x70, 0xf2, 0x1e, 0x0c,
10747 0x1c, 0xde, 0xc5, 0xdf, 0x43, 0x4b, 0x25, 0x2d, 0xac, 0xab, 0xca, 0x6a,
10748 0xd7, 0x8e, 0x4e, 0x9a, 0x2a, 0x43, 0xd9, 0xb0, 0xae, 0x1a, 0x00, 0x0a,
10749 0x6f, 0x28, 0x7b, 0x0a, 0x51, 0x4d, 0xe7, 0xa0, 0xf3, 0xff, 0x38, 0x6b,
10750 0xfb, 0xe1, 0x68, 0x3e, 0x9f, 0x6a, 0xae, 0xed, 0x2b, 0x44, 0xd4, 0xb2,
10751 0x24, 0x68, 0x0a, 0xe7, 0xb6, 0xeb, 0xc5, 0x0a, 0x78, 0xd3, 0x01, 0x92,
10752 0x55, 0xe1, 0x06, 0x4d, 0x48, 0x99, 0x52, 0xb2, 0xc8, 0xb5, 0xe1, 0x43,
10753 0xfc, 0xa1, 0x71, 0x5f, 0xbf, 0x42, 0x14, 0xa9, 0x9d, 0x3d, 0x1d, 0xf0,
10754 0xe7, 0xe5, 0x39, 0x68, 0xe5, 0xf0, 0x97, 0x93, 0xd7, 0xa7, 0xdf, 0x59,
10755 0x2f, 0xe8, 0xa5, 0x75, 0xb1, 0x70, 0x79, 0xac, 0x40, 0x7e, 0x37, 0x6c,
10756 0xef, 0x38, 0x72, 0x1c, 0x37, 0x74, 0xd7, 0xa4, 0x77, 0xec, 0x4c, 0x67,
10757 0xa4, 0x39, 0x1d, 0xae, 0xa1, 0x67, 0xdf, 0xdd, 0xdb, 0x5a, 0x76, 0x4b,
10758 0x22, 0x5c, 0xbe, 0xeb, 0xbf, 0x21, 0x25, 0xdc, 0x75, 0x3a, 0x55, 0xcd,
10759 0x49, 0xc1, 0x02, 0xc5, 0xde, 0x92, 0x1f, 0xa0, 0xdb, 0xfa, 0x33, 0x47,
10760 0x4f, 0x67, 0x9b, 0x2c, 0x76, 0x5a, 0x2f, 0x80, 0xd2, 0xd6, 0x75, 0x06,
10761 0x52, 0x69, 0x54, 0xc1, 0xc1, 0xab, 0xa4, 0x2c, 0x57, 0xf2, 0x9b, 0x1b,
10762 0x46, 0x2f, 0x01, 0x24, 0x99, 0x61, 0xea, 0x8b, 0x90, 0x95, 0x8b, 0xf5,
10763 0x48, 0x79, 0xa5, 0x18, 0xb5, 0x29, 0x0f, 0x6a, 0x2e, 0x4c, 0x20, 0x51,
10764 0x10, 0x62, 0x8e, 0x51, 0xa2, 0xf0, 0x3f, 0xde, 0xd7, 0xe9, 0xab, 0xba,
10765 0x83, 0xec, 0xde, 0xd2, 0x54, 0xd2, 0xb9, 0x1f, 0x78, 0x44, 0xe2, 0xcb,
10766 0x71, 0xa9, 0x3b, 0x4f, 0xcb, 0x25, 0x9f, 0xf6, 0x57, 0xee, 0x61, 0x8b,
10767 0x60, 0x91, 0x7a, 0xb9, 0xb7, 0x6c, 0x0c, 0x74, 0x6c, 0xff, 0x7d, 0x91,
10768 0x82, 0xf8, 0x4e, 0x38, 0xe9, 0xb0, 0xd7, 0xe3, 0x97, 0x1a, 0x63, 0xc4,
10769 0x4f, 0x1a, 0x24, 0xae, 0x8f, 0xb2, 0xff, 0x94, 0x41, 0xf6, 0x1b, 0x63,
10770 0x5c, 0x3f, 0x69, 0x90, 0x9e, 0xba, 0xba, 0x3e, 0xfb, 0xec, 0xe4, 0xbb,
10771 0xd3, 0x4b, 0x30, 0x68, 0x5f, 0xd5, 0xce, 0x4c, 0x21, 0x12, 0x05, 0xd5,
10772 0xe8, 0x0c, 0x38, 0x0f, 0x5e, 0x1d, 0xa7, 0x13, 0x52, 0xc0, 0x2a, 0x29,
10773 0x51, 0xc0, 0x90, 0x58, 0xa9, 0x88, 0x61, 0x69, 0xc1, 0xfd, 0x32, 0x30,
10774 0x39, 0x99, 0x32, 0x15, 0x1c, 0x70, 0x49, 0xa7, 0x8c, 0xb3, 0xb4, 0xd5,
10775 0xe9, 0xd8, 0xb8, 0x28, 0x2e, 0xb8, 0x19, 0xa8, 0x19, 0x31, 0x63, 0x40,
10776 0x3d, 0xc2, 0x83, 0xaa, 0xd4, 0xdf, 0x94, 0x12, 0xee, 0xa6, 0x11, 0x66,
10777 0x24, 0x41, 0x30, 0x0e, 0x42, 0xc0, 0xdf, 0x8c, 0x06, 0x46, 0x16, 0xda,
10778 0x98, 0xd9, 0xd6, 0xf2, 0xea, 0xb6, 0xe2, 0x13, 0xd4, 0xd8, 0x9d, 0x18,
10779 0x5d, 0x6e, 0x15, 0x54, 0x06, 0xc7, 0x0a, 0x4d, 0xa6, 0x6d, 0x71, 0xcb,
10780 0x1a, 0x22, 0x96, 0xa7, 0xec, 0x9a, 0x21, 0xcc, 0x77, 0x76, 0xc4, 0xf2,
10781 0x8b, 0xd3, 0x29, 0xab, 0xd0, 0x52, 0x6a, 0x98, 0xfe, 0xec, 0xa8, 0x00,
10782 0xbb, 0xc6, 0xbf, 0x0c, 0xcb, 0x9f, 0x52, 0xda, 0xf5, 0x98, 0x8f, 0x45,
10783 0x79, 0x9f, 0x55, 0xf1, 0x1d, 0x29, 0xa7, 0x78, 0xd4, 0xa5, 0xef, 0x88,
10784 0x7d, 0x73, 0x4f, 0xeb, 0xd0, 0xb4, 0xbf, 0x49, 0x5e, 0x98, 0xd8, 0x9f,
10785 0x06, 0x6f, 0x6d, 0x58, 0x5f, 0xf1, 0x3d, 0x25, 0x7f, 0xae, 0x4c, 0xd1,
10786 0xfd, 0x13, 0x08, 0xee, 0x4b, 0x92, 0xaf, 0x7e, 0x55, 0xf1, 0x42, 0xa5,
10787 0xe1, 0x73, 0x72, 0x87, 0x17, 0x40, 0x4a, 0xb9, 0xec, 0xda, 0x95, 0x01,
10788 0x9b, 0x42, 0x23, 0xbd, 0xb8, 0x2d, 0x99, 0x8f, 0xaa, 0x6a, 0x95, 0x5e,
10789 0x55, 0x53, 0xc6, 0x39, 0x11, 0xb0, 0x2b, 0x90, 0xe3, 0xf9, 0x30, 0x46,
10790 0xa4, 0x62, 0x42, 0xf5, 0x8b, 0x33, 0x76, 0x28, 0xe8, 0x0e, 0x84, 0x71,
10791 0xcf, 0x2c, 0x11, 0xf6, 0xc5, 0x96, 0x26, 0xff, 0x19, 0xcd, 0x58, 0x71,
10792 0xbb, 0x5c, 0x09, 0xc3, 0x0e, 0x35, 0x09, 0xd6, 0xa0, 0x1b, 0x6f, 0x64,
10793 0x3c, 0xd6, 0xc3, 0x50, 0xf2, 0x5b, 0xd9, 0x48, 0xea, 0x79, 0xe6, 0x7e,
10794 0x05, 0xdf, 0xd2, 0x6f, 0x70, 0xef, 0x0d, 0xfb, 0x09, 0x37, 0x0b, 0xcd,
10795 0x7e, 0x83, 0x12, 0x3d, 0x1e, 0xfe, 0xca, 0xf3, 0x26, 0xbf, 0x38, 0x29,
10796 0x6e, 0xf4, 0x21, 0xf3, 0xe4, 0x0b, 0x09, 0x06, 0x27, 0x08, 0x28, 0x27,
10797 0x31, 0x82, 0x22, 0x99, 0x4f, 0x65, 0xb9, 0xf2, 0x13, 0xca, 0xc0, 0xa6,
10798 0x70, 0x2e, 0x3b, 0x3f, 0xcc, 0x7c, 0xc0, 0xbe, 0x76, 0xe3, 0x5d, 0x2f,
10799 0xe5, 0xbb, 0x58, 0x27, 0xc7, 0xde, 0x52, 0x42, 0x93, 0x4e, 0x0d, 0x23,
10800 0xf2, 0x70, 0xfc, 0x23, 0x2c, 0x86, 0x85, 0xab, 0x2a, 0x37, 0xff, 0x96,
10801 0x37, 0x3c, 0xc4, 0xac, 0x46, 0x52, 0x15, 0x52, 0x6c, 0x51, 0x30, 0x10,
10802 0xa4, 0xb5, 0x8a, 0xb4, 0xed, 0x37, 0xaf, 0x17, 0xb5, 0x43, 0x6c, 0xe3,
10803 0x12, 0xbd, 0xcd, 0xbd, 0x46, 0x63, 0xf9, 0xa4, 0x92, 0xe6, 0x2d, 0x11,
10804 0x16, 0xb6, 0x32, 0x7d, 0xc0, 0x04, 0xbe, 0x12, 0xc5, 0xd7, 0x8e, 0x49,
10805 0xcc, 0x6f, 0xe2, 0xbb, 0x20, 0x04, 0x28, 0xe0, 0x1f, 0x98, 0x5d, 0xb3,
10806 0x38, 0x77, 0x7b, 0xcb, 0xd0, 0x01, 0x17, 0x85, 0x88, 0xe7, 0xb4, 0x15,
10807 0x60, 0xdf, 0x50, 0x03, 0xaa, 0xdb, 0x98, 0x84, 0x8b, 0x31, 0x5e, 0x6d,
10808 0x70, 0xc6, 0x24, 0x3c, 0xa2, 0x86, 0xe9, 0x7b, 0xa4, 0x33, 0x0a, 0x26,
10809 0xc6, 0x9c, 0x61, 0xc1, 0x65, 0xc1, 0x0c, 0x69, 0x22, 0x97, 0x59, 0x97,
10810 0xa2, 0x96, 0x46, 0x7a, 0x72, 0x9a, 0x30, 0x49, 0xe6, 0x9b, 0x24, 0x04,
10811 0x06, 0xad, 0x8d, 0x47, 0x1c, 0x9b, 0xce, 0x42, 0x61, 0x3b, 0xeb, 0xd9,
10812 0x36, 0xeb, 0xb9, 0x25, 0x4e, 0xb9, 0x38, 0x1a, 0x0c, 0x94, 0x4f, 0x8e,
10813 0x03, 0x2c, 0xa1, 0x9e, 0xdd, 0xe9, 0xbd, 0xe9, 0x41, 0xe1, 0xbb, 0x3f,
10814 0x64, 0x90, 0x46, 0xba, 0xfe, 0x36, 0x0b, 0xbb, 0x57, 0x8c, 0x1e, 0x4b,
10815 0xb1, 0x53, 0x59, 0x2f, 0xf3, 0x95, 0xae, 0xf8, 0x76, 0x39, 0x25, 0xc3,
10816 0x46, 0x2b, 0xe7, 0xe9, 0x22, 0x9d, 0x09, 0x29, 0x52, 0xf3, 0x97, 0xd0,
10817 0x09, 0x09, 0x02, 0x09, 0x25, 0x99, 0x33, 0x91, 0x5d, 0x7f, 0xd1, 0xdf,
10818 0xf0, 0xa2, 0xba, 0xbf, 0x68, 0xd1, 0xdf, 0x04, 0x16, 0xbd, 0x67, 0x0f,
10819 0x0e, 0x7f, 0x2c, 0xda, 0xd9, 0x79, 0xae, 0xb8, 0x25, 0xc0, 0xc7, 0xf4,
10820 0xbd, 0xe0, 0x07, 0xe1, 0xb9, 0x1e, 0xd5, 0x47, 0x06, 0xbc, 0xe3, 0xf6,
10821 0xf4, 0x3a, 0x9f, 0xda, 0x37, 0x9f, 0x02, 0xa3, 0x1c, 0xc7, 0x42, 0x95,
10822 0x8a, 0xc5, 0x8f, 0x2f, 0x96, 0x34, 0x68, 0x85, 0x81, 0x88, 0x5b, 0xac,
10823 0xea, 0x6a, 0xa9, 0xc4, 0xd0, 0x59, 0x38, 0xdf, 0x79, 0x66, 0xe2, 0xc5,
10824 0x9b, 0x3b, 0x9a, 0x1b, 0x7e, 0x44, 0x42, 0x7a, 0x9a, 0xcc, 0x88, 0x33,
10825 0xd9, 0x3e, 0xb7, 0x1a, 0x2b, 0x83, 0xcb, 0x4d, 0x8a, 0x98, 0xba, 0x99,
10826 0x4e, 0xe3, 0xfb, 0x40, 0x9b, 0x0e, 0xed, 0x87, 0x0c, 0xb6, 0x0c, 0x75,
10827 0x42, 0xbb, 0x4a, 0x32, 0x8c, 0x4c, 0x90, 0x9a, 0x20, 0xbe, 0x42, 0xf4,
10828 0x36, 0x52, 0xca, 0xf8, 0xc4, 0xa4, 0xed, 0xc8, 0x57, 0x3d, 0x88, 0x59,
10829 0xcc, 0x4a, 0xa8, 0x9a, 0x50, 0x10, 0xe1, 0xe6, 0x3e, 0xdb, 0xcf, 0xed,
10830 0x16, 0x8d, 0x9c, 0x4b, 0x02, 0x4d, 0x69, 0x86, 0xbf, 0x76, 0xe9, 0xa7,
10831 0x02, 0x45, 0xf3, 0xe9, 0xa4, 0xb4, 0xd8, 0xe3, 0x4b, 0x79, 0xd3, 0x7e,
10832 0x85, 0x05, 0xf2, 0x05, 0x8a, 0x3b, 0xe9, 0xae, 0xd8, 0x07, 0xa3, 0x0f,
10833 0x93, 0x0d, 0x6a, 0xad, 0x9a, 0xd9, 0x92, 0x8e, 0x6d, 0xba, 0x58, 0x9d,
10834 0x75, 0x5f, 0xda, 0x3d, 0x36, 0x53, 0xd2, 0xf2, 0x8d, 0x4d, 0x95, 0xb3,
10835 0xe6, 0xae, 0xd1, 0x94, 0x9f, 0x24, 0x7a, 0x7f, 0x72, 0xf9, 0x9e, 0x92,
10836 0x9e, 0x51, 0x04, 0x78, 0xf6, 0x6f, 0x5c, 0x6c, 0x18, 0xf0, 0x7b, 0x11,
10837 0x68, 0x56, 0x45, 0xb1, 0x22, 0x82, 0x7b, 0x9f, 0x98, 0x1d, 0xe7, 0x7f,
10838 0xea, 0x7b, 0xa6, 0x28, 0x95, 0x49, 0x6e, 0xf3, 0x21, 0xeb, 0x5d, 0x59,
10839 0x76, 0x76, 0x6c, 0x45, 0x0f, 0x2c, 0xfc, 0x2a, 0x11, 0xae, 0x14, 0x28,
10840 0x82, 0xbe, 0x94, 0x67, 0x28, 0x4a, 0x88, 0xfa, 0xde, 0xf0, 0x21, 0xae,
10841 0x54, 0xcb, 0x8b, 0xc0, 0x3d, 0x29, 0x9f, 0x56, 0xd5, 0x80, 0xa7, 0x60,
10842 0x4c, 0x7e, 0xf9, 0x9a, 0xd4, 0xc7, 0x72, 0x6d, 0x9c, 0xb4, 0x07, 0xdc,
10843 0xdb, 0xda, 0x0a, 0x14, 0xb9, 0xc7, 0x43, 0x10, 0xab, 0xa2, 0xe8, 0x09,
10844 0xfc, 0x0c, 0x43, 0x80, 0xd0, 0x7e, 0x91, 0xfa, 0x59, 0xa2, 0x2d, 0xd2,
10845 0xeb, 0x21, 0xb5, 0x7c, 0x83, 0x63, 0x87, 0x25, 0xcc, 0xb7, 0x04, 0x85,
10846 0xa3, 0x04, 0x6b, 0x48, 0x16, 0xc6, 0xc9, 0xe1, 0x0a, 0x22, 0xeb, 0x0d,
10847 0x24, 0xaf, 0x1a, 0xe7, 0x1f, 0x79, 0xb3, 0xf2, 0xa4, 0xf7, 0xce, 0x7e,
10848 0x80, 0x1b, 0x06, 0x97, 0xe7, 0xef, 0x85, 0xbd, 0xfc, 0x9b, 0x99, 0xa8,
10849 0x41, 0x4f, 0x58, 0xe8, 0xee, 0xae, 0x0f, 0x87, 0xcc, 0x50, 0xc9, 0x38,
10850 0xae, 0xe9, 0xc2, 0xe7, 0x7c, 0x95, 0xcf, 0xff, 0x7b, 0xc4, 0x4b, 0x92,
10851 0xa5, 0x7d, 0x23, 0xe8, 0x6c, 0xda, 0x9b, 0x51, 0x4f, 0xa5, 0xf3, 0x12,
10852 0x1f, 0xb2, 0x73, 0x3e, 0xbd, 0x8c, 0x46, 0x86, 0x3c, 0x24, 0xb8, 0x64,
10853 0xd8, 0xda, 0x51, 0x9c, 0x06, 0x5a, 0x44, 0xe6, 0xf1, 0x21, 0x1f, 0xa0,
10854 0x73, 0xdb, 0x7b, 0x93, 0xe5, 0xbb, 0x2c, 0xd3, 0x18, 0xc9, 0xf8, 0x63,
10855 0x4a, 0x73, 0xe2, 0xde, 0x94, 0x52, 0x95, 0x13, 0x73, 0xc4, 0x7f, 0xe4,
10856 0x35, 0x4d, 0xce, 0x8b, 0xb1, 0xb8, 0x53, 0xe4, 0xda, 0x54, 0x3b, 0xc2,
10857 0xaa, 0xdf, 0xf6, 0xce, 0xbf, 0x38, 0x7f, 0x7f, 0x69, 0x6e, 0x7c, 0xfc,
10858 0x2c, 0xfd, 0xa0, 0x71, 0x72, 0xb0, 0x0e, 0x5e, 0xfc, 0x29, 0x72, 0xaf,
10859 0xe1, 0x0e, 0x78, 0x69, 0x17, 0x62, 0x2a, 0xf0, 0x96, 0xd0, 0x38, 0x3a,
10860 0x50, 0x97, 0x82, 0x69, 0xe3, 0x9c, 0x3d, 0x9b, 0x46, 0xd2, 0xb0, 0x37,
10861 0x8c, 0xae, 0x99, 0x96, 0x6e, 0x17, 0x16, 0xe1, 0x74, 0x77, 0x3b, 0xc0,
10862 0x19, 0x78, 0x1d, 0xbc, 0x3f, 0x19, 0x5c, 0xf2, 0xd4, 0xf1, 0x6f, 0xde,
10863 0xd4, 0x19, 0x40, 0x51, 0x7e, 0xe8, 0xd9, 0x2f, 0x86, 0x33, 0xb0, 0x7c,
10864 0x0a, 0xbd, 0xca, 0x38, 0xbe, 0x41, 0x9a, 0x74, 0x28, 0xb6, 0xeb, 0x54,
10865 0xed, 0x91, 0xb8, 0x14, 0x3e, 0xa1, 0xb3, 0x4d, 0x3f, 0xe8, 0xc8, 0x47,
10866 0x3a, 0xa0, 0x95, 0xc9, 0x79, 0xa8, 0xf5, 0xf8, 0xdd, 0xdd, 0xb3, 0x43,
10867 0xcc, 0xf1, 0x9a, 0x92, 0x11, 0x4e, 0x19, 0xbc, 0x73, 0x4a, 0x3f, 0xec,
10868 0x29, 0xaf, 0xd0, 0x5d, 0xc1, 0x5c, 0xc1, 0xcf, 0xd9, 0x71, 0xf6, 0x4d,
10869 0xe0, 0x45, 0x35, 0x05, 0x67, 0x2e, 0xf8, 0x63, 0x2d, 0x74, 0x21, 0x65,
10870 0xa3, 0xc1, 0x73, 0xbb, 0xcc, 0xea, 0x5f, 0xc5, 0x63, 0x5b, 0x73, 0xc7,
10871 0x6b, 0xaf, 0x5d, 0x09, 0x12, 0xe1, 0x23, 0x15, 0x2d, 0x2e, 0xa6, 0x29,
10872 0x66, 0x94, 0x0c, 0xd9, 0x6a, 0xc4, 0xd7, 0x42, 0x0d, 0x48, 0x9d, 0x6f,
10873 0xc8, 0xf5, 0x83, 0x8e, 0xc1, 0x91, 0x73, 0x4d, 0xc7, 0x63, 0x39, 0xc5,
10874 0x56, 0xd9, 0xc7, 0x08, 0x8f, 0xb9, 0x24, 0xfa, 0xd1, 0x05, 0x06, 0x75,
10875 0x49, 0x67, 0x2a, 0xff, 0xa7, 0x1d, 0x8e, 0x8f, 0x09, 0xa6, 0x1a, 0xa9,
10876 0x1a, 0x80, 0x88, 0x93, 0x7d, 0xfe, 0x09, 0x81, 0x4f, 0xda, 0xf6, 0xb5,
10877 0xde, 0x7a, 0x5f, 0xda, 0x97, 0x4b, 0x58, 0x0a, 0x98, 0xef, 0xcd, 0x47,
10878 0xf6, 0x84, 0xb3, 0xc0, 0xb6, 0xa7, 0x21, 0x8c, 0x60, 0xc6, 0xd3, 0x8c,
10879 0xfb, 0x41, 0x56, 0x23, 0x8d, 0x30, 0xd1, 0x67, 0x6a, 0x02, 0xdc, 0x19,
10880 0x8a, 0xaf, 0x82, 0x23, 0x21, 0x15, 0x42, 0xdf, 0xc3, 0xa9, 0x41, 0x45,
10881 0x0e, 0xc6, 0xca, 0x50, 0xce, 0x1a, 0x4f, 0x62, 0x2d, 0x1f, 0x98, 0x68,
10882 0x6b, 0xda, 0x0f, 0x34, 0xa9, 0x1b, 0xd7, 0x13, 0xe7, 0xf6, 0x98, 0x17,
10883 0x0d, 0xdf, 0x98, 0xdb, 0xab, 0x36, 0x3b, 0xa9, 0x38, 0x16, 0x87, 0xde,
10884 0x30, 0x26, 0x1c, 0xf1, 0x18, 0xee, 0x76, 0x57, 0xf9, 0xdf, 0xdb, 0xb7,
10885 0x43, 0x4d, 0x08, 0x59, 0x5d, 0x06, 0xc3, 0x4e, 0x05, 0x4e, 0x13, 0x13,
10886 0xd3, 0xa9, 0x3d, 0x35, 0x4f, 0xba, 0xc6, 0x64, 0xe0, 0x50, 0x39, 0xdf,
10887 0x78, 0x2e, 0x36, 0x31, 0x1a, 0xc5, 0xd9, 0xbd, 0xc5, 0x04, 0xe8, 0x73,
10888 0x5e, 0x2f, 0x7b, 0xd5, 0x70, 0x70, 0xf3, 0x1b, 0x71, 0xcc, 0x5e, 0x8b,
10889 0xd7, 0x66, 0x16, 0xdf, 0x79, 0x17, 0xfc, 0x6c, 0x31, 0x93, 0x6a, 0x58,
10890 0xe7, 0x4b, 0x2f, 0xc4, 0xc5, 0xc1, 0xe5, 0xdb, 0x06, 0x41, 0xde, 0x59,
10891 0x08, 0xda, 0x5b, 0x6a, 0x4e, 0x6b, 0xb9, 0xcd, 0x98, 0xaa, 0x23, 0x4b,
10892 0xd3, 0x2f, 0x36, 0xd0, 0xec, 0x09, 0x05, 0xad, 0x28, 0xbb, 0xea, 0x6c,
10893 0xc8, 0x9d, 0x5e, 0x0a, 0x48, 0x6f, 0x79, 0x8c, 0x7f, 0xa5, 0xd8, 0xc8,
10894 0x81, 0x78, 0x5e, 0x91, 0xfc, 0x44, 0x8a, 0x64, 0x9f, 0xaf, 0x1b, 0x06,
10895 0x5c, 0xe2, 0x55, 0x22, 0x98, 0xa2, 0x15, 0x78, 0x7b, 0x2f, 0xc5, 0x7f,
10896 0x25, 0xfe, 0x11, 0xcc, 0x6d, 0xce, 0xb0, 0x7d, 0x6b, 0x23, 0x8f, 0x72,
10897 0x7f, 0xdb, 0xfa, 0x76, 0x93, 0xa4, 0x10, 0x6c, 0x0a, 0xb7, 0xee, 0x13,
10898 0xfb, 0x57, 0x0e, 0xde, 0x44, 0x6f, 0x5f, 0xed, 0xa3, 0x83, 0xfd, 0x2a,
10899 0x29, 0xe6, 0x05, 0x96, 0x2e, 0x2a, 0x0f, 0x9f, 0xff, 0xc5, 0x19, 0x6c,
10900 0xc7, 0x26, 0x01, 0x69, 0xf3, 0x1d, 0x15, 0x67, 0x6c, 0x2e, 0xc0, 0x16,
10901 0x22, 0x3e, 0xdf, 0x55, 0x57, 0x92, 0xca, 0xb4, 0x39, 0x8d, 0x76, 0x40,
10902 0x20, 0x9d, 0x25, 0x04, 0x68, 0xe6, 0x7c, 0x64, 0xd7, 0x4a, 0xb0, 0xe2,
10903 0x7e, 0x4e, 0x91, 0x94, 0x2b, 0x34, 0x0b, 0x02, 0x27, 0x6a, 0x9f, 0xa5,
10904 0xe6, 0x31, 0x9f, 0x7b, 0x54, 0x60, 0xfd, 0xd7, 0x48, 0x3d, 0x6f, 0x84,
10905 0xa7, 0xf7, 0xf7, 0x5d, 0xb7, 0x02, 0x36, 0xd6, 0x93, 0xc0, 0x0b, 0x05,
10906 0x5a, 0x50, 0x47, 0x71, 0x9e, 0x7d, 0x66, 0x9e, 0xa5, 0x4c, 0x8f, 0x4c,
10907 0x5a, 0x66, 0x2c, 0x79, 0x43, 0x54, 0x5f, 0x35, 0x10, 0x54, 0x2d, 0x63,
10908 0x8d, 0xc7, 0xa1, 0xbd, 0x51, 0x12, 0xf7, 0x5f, 0x36, 0x9c, 0x29, 0xd4,
10909 0x2a, 0xda, 0x30, 0x26, 0x2d, 0x2a, 0x9d, 0x5f, 0xbb, 0x87, 0xf3, 0x19,
10910 0xdf, 0xd2, 0x17, 0xcd, 0x32, 0x5e, 0x95, 0x81, 0x89, 0x0b, 0xb9, 0xaa,
10911 0x47, 0x9d, 0x59, 0xff, 0xf8, 0x28, 0x6a, 0x03, 0x26, 0x21, 0x5e, 0x77,
10912 0x3e, 0xb2, 0x2d, 0x67, 0x06, 0x96, 0x9c, 0x5f, 0x65, 0xe9, 0xcf, 0x8a,
10913 0xb2, 0x89, 0xf7, 0x33, 0x75, 0x19, 0xac, 0x69, 0x4a, 0xcf, 0x76, 0x44,
10914 0x60, 0xdc, 0xc4, 0xd3, 0x54, 0x84, 0x62, 0xad, 0xe1, 0xf1, 0xb3, 0x5d,
10915 0xe1, 0xda, 0xbb, 0x14, 0x8f, 0x28, 0x67, 0x9f, 0x63, 0x91, 0x39, 0xe6,
10916 0x27, 0x27, 0x35, 0x00, 0xd4, 0x67, 0x7b, 0xa2, 0x75, 0xa9, 0x66, 0x8c,
10917 0x77, 0x2f, 0x12, 0x62, 0x4a, 0x9d, 0x86, 0x9a, 0x62, 0xfa, 0x99, 0xdc,
10918 0x7b, 0xb2, 0x95, 0x14, 0xf8, 0x45, 0x55, 0x53, 0x24, 0x34, 0x62, 0x0f,
10919 0x16, 0xc9, 0x2d, 0x07, 0x90, 0x62, 0x5f, 0xd9, 0x7a, 0xf6, 0xac, 0xc5,
10920 0x2f, 0x59, 0xf2, 0xa5, 0x79, 0x42, 0xbc, 0xe4, 0x3c, 0xff, 0xdc, 0x9e,
10921 0x84, 0x5a, 0x97, 0x26, 0x6d, 0xd1, 0xd3, 0x75, 0x3b, 0x71, 0xe9, 0x59,
10922 0x62, 0x17, 0x0a, 0x9d, 0x81, 0x71, 0xa8, 0x37, 0xf2, 0xc4, 0x7c, 0x7e,
10923 0x9a, 0xa3, 0x34, 0x75, 0xbe, 0xc7, 0x2c, 0xf5, 0x9a, 0x42, 0x99, 0xd6,
10924 0x34, 0xc8, 0xa2, 0xcb, 0x10, 0xa4, 0xda, 0xb3, 0x97, 0xc2, 0x1b, 0x7a,
10925 0x5f, 0x1a, 0x63, 0xb5, 0xed, 0x8d, 0xe7, 0x5b, 0xae, 0xba, 0x3a, 0xc6,
10926 0xec, 0x53, 0x46, 0x9b, 0x6c, 0x7d, 0x81, 0x39, 0xe3, 0x74, 0x8a, 0x68,
10927 0xcf, 0x53, 0x7e, 0xc6, 0x36, 0xc7, 0xb1, 0x8f, 0xed, 0xd4, 0x84, 0xee,
10928 0xa5, 0xab, 0x40, 0x45, 0xa7, 0xaf, 0x9c, 0x07, 0x77, 0xed, 0x02, 0xe3,
10929 0x29, 0x6a, 0x03, 0xf7, 0xec, 0xa7, 0x2a, 0xa3, 0x75, 0x7c, 0xcb, 0xc1,
10930 0xd7, 0x78, 0xce, 0x9c, 0xf1, 0x2e, 0xe7, 0x08, 0x28, 0x91, 0xdf, 0x7b,
10931 0x86, 0xd9, 0xe1, 0xd8, 0xb4, 0x00, 0xb0, 0xf0, 0xff, 0xde, 0xde, 0x3f,
10932 0x7f, 0xb6, 0xe4, 0x59, 0xb9, 0x34, 0x4b, 0x73, 0xd5, 0x3b, 0xef, 0x3d,
10933 0xaf, 0x1d, 0x73, 0xb5, 0x05, 0xb4, 0xc0, 0x1e, 0x4e, 0x19, 0xc5, 0xb7,
10934 0xd7, 0x31, 0x68, 0xf8, 0x3f, 0xd5, 0x27, 0x58, 0x60, 0x7f, 0x9a, 0xf2,
10935 0x7f, 0xba, 0x53, 0x7d, 0xe1, 0x56, 0xe9, 0xb3, 0x43, 0xd0, 0x24, 0x70,
10936 0xb8, 0x7d, 0xc3, 0x1b, 0x0e, 0x3c, 0x67, 0x04, 0xde, 0x6e, 0x50, 0x21,
10937 0x16, 0x99, 0x15, 0x1a, 0x6c, 0xfd, 0x09, 0x5e, 0xe6, 0xd8, 0x6d, 0x62,
10938 0x84, 0xe2, 0x5e, 0x9c, 0x4f, 0x8e, 0xff, 0x74, 0xab, 0x71, 0x02, 0xca,
10939 0xeb, 0x05, 0x9b, 0xda, 0x66, 0x45, 0x21, 0x20, 0x96, 0x17, 0x3b, 0x0d,
10940 0xc9, 0x45, 0x3a, 0xe3, 0x31, 0xcc, 0x96, 0x6d, 0x71, 0x6d, 0xfd, 0x8c,
10941 0xe6, 0x69, 0x91, 0xb3, 0x7f, 0x0b, 0x1d, 0x41, 0x76, 0x00, 0xd1, 0x57,
10942 0xb0, 0x72, 0xa4, 0x90, 0x7c, 0xb1, 0xe6, 0x0e, 0xbd, 0xd8, 0x33, 0x24,
10943 0x22, 0xab, 0x04, 0x8c, 0xfb, 0x56, 0xf3, 0xfd, 0x05, 0xef, 0xfc, 0xdb,
10944 0xb4, 0xe4, 0x40, 0x20, 0xb0, 0xf3, 0xfb, 0xcb, 0xc1, 0x45, 0x74, 0x3c,
10945 0x48, 0xfe, 0x2e, 0xf9, 0x84, 0x8e, 0x80, 0x7b, 0xf1, 0x2c, 0xfc, 0xf4,
10946 0x40, 0x7c, 0x73, 0xa7, 0xd4, 0x42, 0x10, 0xe8, 0x59, 0x7b, 0xe9, 0xb9,
10947 0x30, 0xb5, 0x3a, 0xef, 0xd9, 0x87, 0x85, 0x53, 0x23, 0x89, 0x36, 0xad,
10948 0xed, 0xce, 0x8b, 0x17, 0xd6, 0x34, 0xb9, 0x5e, 0x64, 0x9f, 0x8c, 0xd2,
10949 0x27, 0x9d, 0x4a, 0x74, 0xab, 0x9c, 0x37, 0x5e, 0x2a, 0x83, 0x3b, 0xde,
10950 0x4c, 0x53, 0xa2, 0x21, 0x39, 0x92, 0xea, 0x3c, 0x94, 0x60, 0x26, 0x48,
10951 0xc9, 0x5a, 0xe5, 0xcd, 0xcb, 0x2d, 0x73, 0x8b, 0x0a, 0xa6, 0xf9, 0x27,
10952 0x4a, 0x26, 0x15, 0x0e, 0xd2, 0x94, 0xf0, 0x79, 0x9a, 0xa1, 0x1f, 0xc1,
10953 0x3e, 0xe2, 0x8c, 0xb0, 0x5d, 0x13, 0xe6, 0x4d, 0xb5, 0x81, 0x11, 0xcd,
10954 0x9c, 0xc7, 0x99, 0x11, 0x06, 0x18, 0x5b, 0x9c, 0x09, 0xf3, 0xa5, 0x99,
10955 0x7a, 0xcd, 0x1a, 0xae, 0x30, 0xf3, 0xd2, 0xae, 0x72, 0x2e, 0xb6, 0x77,
10956 0x08, 0x69, 0xa8, 0x9c, 0x85, 0x41, 0xca, 0x03, 0x61, 0xe4, 0x8a, 0xbe,
10957 0x6c, 0x47, 0xd8, 0xd3, 0x11, 0x1a, 0x08, 0xe3, 0x66, 0x30, 0xe3, 0xa7,
10958 0x89, 0x3d, 0x63, 0xe9, 0xe5, 0xbe, 0x84, 0x8b, 0x1e, 0xf2, 0xe5, 0x6d,
10959 0xee, 0x46, 0x32, 0x75, 0x53, 0x70, 0x8a, 0xc5, 0x89, 0xe2, 0xba, 0x6b,
10960 0xb6, 0xd9, 0x10, 0x47, 0x1e, 0xd7, 0x10, 0x2b, 0xd2, 0xc2, 0x32, 0x5f,
10961 0x5e, 0xdd, 0x7b, 0xe7, 0x61, 0xfc, 0x2d, 0xf1, 0xe5, 0xbd, 0x64, 0xfe,
10962 0xa5, 0xe4, 0x22, 0x87, 0x59, 0x8c, 0xc9, 0x87, 0x89, 0x31, 0xec, 0x11,
10963 0xe4, 0x58, 0x3e, 0x35, 0xe7, 0x20, 0xd3, 0x83, 0xfc, 0xd1, 0x94, 0x9f,
10964 0x37, 0xf5, 0xb4, 0x00, 0xec, 0x25, 0x74, 0xaf, 0x83, 0xd0, 0xd8, 0xa9,
10965 0xa9, 0xc0, 0xe0, 0xe0, 0xb7, 0xb1, 0x8c, 0x85, 0x3a, 0x01, 0xa3, 0xf8,
10966 0xbb, 0xef, 0xf8, 0x68, 0x99, 0x1e, 0x27, 0x12, 0x77, 0x24, 0x8e, 0x95,
10967 0x90, 0x26, 0xab, 0x87, 0xb8, 0x59, 0x14, 0xad, 0x2b, 0x92, 0x69, 0x82,
10968 0x2d, 0xc6, 0xd8, 0x58, 0x25, 0x29, 0x17, 0x4a, 0xf1, 0x06, 0x52, 0x72,
10969 0xd4, 0x1d, 0x53, 0x3a, 0x2b, 0xee, 0xcd, 0x7d, 0x43, 0xc2, 0x03, 0x4d,
10970 0x6d, 0x98, 0xc1, 0x57, 0x1f, 0xbe, 0x1e, 0x7c, 0x56, 0xcf, 0x13, 0x4a,
10971 0xee, 0xd0, 0x3d, 0x82, 0x22, 0x55, 0xab, 0x30, 0x88, 0xf4, 0x8a, 0xa8,
10972 0xca, 0x5e, 0x74, 0x84, 0xa5, 0x9e, 0x61, 0xfb, 0x60, 0xa4, 0x0d, 0xd5,
10973 0xb2, 0x51, 0xd5, 0x9f, 0xeb, 0x25, 0x86, 0x17, 0x51, 0x43, 0x5f, 0xc3,
10974 0x80, 0xe8, 0x15, 0xc3, 0xcb, 0x63, 0x82, 0x72, 0x16, 0x7d, 0x9d, 0x56,
10975 0x6f, 0x16, 0xc3, 0x03, 0x13, 0x7b, 0xbf, 0x82, 0x71, 0x17, 0x43, 0x6a,
10976 0x23, 0x8d, 0x83, 0xf3, 0x1f, 0x34, 0x66, 0xf9, 0xd9, 0x67, 0x47, 0x1f,
10977 0x2e, 0xdf, 0x9c, 0xbf, 0x1f, 0x44, 0x9b, 0x08, 0xf0, 0x79, 0xf9, 0xfe,
10978 0xf4, 0xab, 0x0f, 0x97, 0xf0, 0x4f, 0xfd, 0xc6, 0xab, 0x38, 0x4b, 0x41,
10979 0xc5, 0x81, 0xb3, 0x94, 0x64, 0x20, 0xae, 0xae, 0x94, 0xfa, 0xdc, 0xd6,
10980 0x11, 0xd8, 0x3c, 0x2f, 0x14, 0xbf, 0x19, 0x93, 0x90, 0x72, 0x11, 0x39,
10981 0xdc, 0x7b, 0x22, 0xe3, 0x52, 0xbd, 0xdc, 0x3a, 0x60, 0xd2, 0x06, 0x32,
10982 0xa9, 0xd6, 0xb8, 0x44, 0x97, 0x6f, 0x8e, 0xde, 0xfd, 0x65, 0xa0, 0xd9,
10983 0x21, 0xdf, 0x7e, 0xfb, 0x6d, 0x33, 0x7f, 0x80, 0x0c, 0xa1, 0x32, 0xf9,
10984 0xec, 0xb3, 0xc1, 0xc9, 0x49, 0x74, 0x74, 0x36, 0x38, 0xd7, 0x07, 0x26,
10985 0xd5, 0x7c, 0x7d, 0x7b, 0x03, 0x94, 0xfc, 0xab, 0xa4, 0x82, 0xbf, 0x7c,
10986 0xf6, 0xd9, 0xff, 0x07, 0xd5, 0x0d, 0x3a, 0x8a, 0xb8, 0x6b, 0x03, 0x00,
10987
10038 0x3d, 0x9f, 0xe8, 0xc0, 0xc7, 0xe3, 0x00, 0x32, 0x17, 0xe3, 0x54, 0x11,
10039 0x20, 0x16, 0x21, 0x48, 0xa1, 0x01, 0x81, 0x2d, 0xe9, 0xfe, 0xbe, 0xc0,
10040 0xae, 0xe8, 0x40, 0x93, 0x4d, 0x38, 0x6d, 0xc4, 0xb5, 0x2d, 0xad, 0xc8,
10041 0xb5, 0x27, 0x9f, 0x67, 0xcd, 0x70, 0x5a, 0x57, 0x95, 0x94, 0xde, 0xa5,
10042 0x94, 0xd2, 0x57, 0xef, 0xa5, 0x60, 0x62, 0x3a, 0x66, 0xdf, 0xf8, 0xc7,
10043 0x1d, 0x3e, 0xfb, 0x21, 0xcb, 0x19, 0x38, 0x66, 0x3c, 0xe5, 0x17, 0xc7,
10044 0xb9, 0x8b, 0xf5, 0x2c, 0x60, 0x2d, 0x88, 0xe7, 0x89, 0xd9, 0xa4, 0x98,
10045 0xc6, 0x86, 0x8b, 0x16, 0x28, 0x12, 0xb6, 0x42, 0x49, 0xbb, 0x6a, 0x52,
10046 0xa3, 0xdf, 0x6c, 0x3a, 0x8e, 0xe7, 0x54, 0x16, 0x90, 0x48, 0x99, 0x44,
10047 0x91, 0xfc, 0xc4, 0xd1, 0x23, 0xed, 0xe2, 0x9c, 0x64, 0xa0, 0x52, 0x36,
10048 0x1d, 0xc1, 0xb5, 0xdb, 0xd2, 0x09, 0xe1, 0x1c, 0xa6, 0x23, 0x50, 0x23,
10049 0x90, 0x8c, 0x54, 0x4e, 0x43, 0x94, 0x1d, 0x2f, 0x7d, 0x2d, 0x94, 0x64,
10050 0x58, 0x56, 0x93, 0x20, 0xa6, 0xa7, 0x39, 0xdc, 0x7b, 0xbd, 0x49, 0x35,
10051 0x37, 0x6b, 0xf9, 0x14, 0x1e, 0xc3, 0xfb, 0x7c, 0x88, 0xac, 0x65, 0x36,
10052 0x5d, 0x39, 0x7d, 0xc4, 0x09, 0xc5, 0x7c, 0x0b, 0x07, 0x5a, 0x59, 0x21,
10053 0xe8, 0x9c, 0xbf, 0x94, 0x8f, 0xda, 0xd8, 0xe9, 0x55, 0x86, 0x62, 0xd0,
10054 0xdd, 0xd7, 0x0f, 0x6f, 0x6c, 0xa9, 0x62, 0x40, 0xec, 0x03, 0x29, 0xe2,
10055 0x1c, 0x2f, 0xa8, 0x1e, 0x63, 0x96, 0x52, 0xc2, 0xd8, 0x66, 0x3e, 0x99,
10056 0x10, 0xf2, 0x21, 0x88, 0x8d, 0xaa, 0x48, 0x87, 0x8b, 0x40, 0xe0, 0x90,
10057 0x9a, 0x16, 0x5b, 0xc4, 0x26, 0x7e, 0xa6, 0x7d, 0x06, 0xc3, 0xcc, 0x3d,
10058 0x8d, 0xdc, 0x4d, 0xba, 0x3c, 0x6d, 0x6f, 0x87, 0x96, 0xa0, 0x26, 0x63,
10059 0xb7, 0xbc, 0xed, 0xbe, 0x6c, 0x73, 0x5f, 0x12, 0x12, 0x0f, 0xe9, 0x03,
10060 0xba, 0xbf, 0xf5, 0xdd, 0xdb, 0x37, 0xf7, 0x7b, 0xd4, 0xdd, 0x2b, 0xa9,
10061 0xfa, 0xe2, 0x46, 0x76, 0x3c, 0x13, 0x77, 0x97, 0xa7, 0xc1, 0x46, 0x23,
10062 0xb8, 0xc5, 0x7a, 0x21, 0x77, 0x9c, 0xee, 0x70, 0xf7, 0x95, 0x95, 0xc5,
10063 0xc5, 0xe6, 0x51, 0x2f, 0x82, 0x61, 0x5e, 0x6a, 0xab, 0x3b, 0xf1, 0x12,
10064 0x12, 0x19, 0x46, 0x6b, 0x0a, 0x93, 0x9c, 0x12, 0xaa, 0x78, 0x92, 0x8d,
10065 0x8a, 0x7b, 0xc5, 0x50, 0x7e, 0xc4, 0x8e, 0xfb, 0x55, 0x05, 0x89, 0x08,
10066 0x88, 0xa0, 0x14, 0x11, 0x36, 0x77, 0xa5, 0xcd, 0xc3, 0x82, 0xc4, 0x9b,
10067 0xba, 0xe0, 0x94, 0x20, 0x75, 0xa5, 0xd8, 0xd3, 0x40, 0x26, 0x10, 0x42,
10068 0xe4, 0x54, 0x90, 0xeb, 0x03, 0x8b, 0x83, 0xa1, 0x6c, 0x7f, 0x43, 0x31,
10069 0xbf, 0x3b, 0x2b, 0x36, 0x1a, 0x25, 0xbf, 0x4c, 0x48, 0x51, 0x8c, 0x0e,
10070 0xcb, 0x2f, 0xd4, 0xb3, 0x1a, 0x68, 0xf9, 0x40, 0xfe, 0xcd, 0xca, 0x85,
10071 0x62, 0x43, 0x0f, 0xb1, 0x6d, 0x22, 0x89, 0x10, 0x22, 0xd2, 0x7e, 0x74,
10072 0xb2, 0xa0, 0xb6, 0x81, 0x6d, 0x20, 0x5c, 0x0f, 0xef, 0x46, 0x60, 0xb9,
10073 0xf9, 0xee, 0xa3, 0xab, 0x13, 0x6a, 0x9b, 0x4d, 0x98, 0x70, 0x94, 0xce,
10074 0xaf, 0xe1, 0xf1, 0xce, 0x4e, 0xdb, 0xe9, 0xf2, 0xd8, 0x37, 0x3b, 0x9e,
10075 0xc0, 0x1b, 0x9c, 0xd5, 0x65, 0x9d, 0x7a, 0x92, 0x81, 0x56, 0xa0, 0x31,
10076 0x28, 0x32, 0x96, 0xdd, 0x86, 0x37, 0x3b, 0x5d, 0xc9, 0x3e, 0x0e, 0xf4,
10077 0x18, 0xa4, 0x12, 0xf0, 0x4c, 0x8b, 0xc4, 0xac, 0xc6, 0x8b, 0xf8, 0x8e,
10078 0xc5, 0x62, 0xa4, 0x1c, 0x2c, 0xac, 0xd5, 0xe7, 0xf1, 0x22, 0x46, 0x04,
10079 0x1b, 0x27, 0x1e, 0xa7, 0xda, 0x36, 0xbe, 0x91, 0x79, 0x45, 0xaa, 0x45,
10080 0xc6, 0xd4, 0x8e, 0x67, 0xdb, 0xcf, 0x9f, 0x6d, 0x3c, 0x81, 0xbe, 0xf0,
10081 0xc0, 0x47, 0x0a, 0x37, 0x26, 0x31, 0x22, 0xad, 0xc2, 0xf5, 0x88, 0x14,
10082 0x2c, 0xf4, 0xc5, 0x3f, 0x77, 0xfa, 0x2e, 0x55, 0x75, 0xef, 0x96, 0xda,
10083 0xb2, 0xd4, 0x83, 0x21, 0xcc, 0xc6, 0xc8, 0x7e, 0x48, 0x1f, 0x35, 0x81,
10084 0x90, 0x2d, 0x87, 0x8b, 0x74, 0x4a, 0x85, 0x6e, 0xda, 0xc5, 0x91, 0xa4,
10085 0x4c, 0x63, 0xbf, 0x47, 0x33, 0x3f, 0x25, 0x88, 0xbd, 0xf6, 0xd6, 0x6d,
10086 0xcf, 0xe2, 0xae, 0xb7, 0xab, 0x33, 0x62, 0xfb, 0xbb, 0xb7, 0x4d, 0x78,
10087 0xf1, 0xd3, 0xf2, 0x66, 0x5b, 0xa6, 0x4e, 0xbf, 0xf7, 0xb7, 0x03, 0x80,
10088 0x7b, 0xfa, 0xdd, 0x8e, 0xc3, 0x36, 0x76, 0xb8, 0x5f, 0xce, 0x36, 0xbb,
10089 0x0f, 0xb0, 0xcd, 0xca, 0x7c, 0xb3, 0x1b, 0x51, 0x0b, 0x81, 0x55, 0xd9,
10090 0xe6, 0xf9, 0xfe, 0xb3, 0x17, 0x4f, 0x62, 0x9b, 0xdd, 0x15, 0xcf, 0x44,
10091 0x65, 0x9a, 0x3a, 0xcf, 0x38, 0x2b, 0x64, 0x99, 0xc6, 0xd6, 0x7f, 0xb5,
10092 0xb3, 0xcd, 0xea, 0x7c, 0xd3, 0xca, 0x36, 0x96, 0x6b, 0xb0, 0x23, 0x88,
10093 0xc3, 0xc5, 0xca, 0x33, 0x86, 0x69, 0xf8, 0x24, 0x58, 0x95, 0x6d, 0xb4,
10094 0x24, 0x20, 0xd8, 0xd0, 0xfb, 0xbd, 0xa2, 0x08, 0x51, 0x15, 0x2f, 0x62,
10095 0x26, 0x31, 0xc4, 0x9a, 0xdc, 0xe3, 0x81, 0x3c, 0x0a, 0xec, 0x3f, 0xe1,
10096 0xc3, 0xa2, 0xe7, 0x33, 0x10, 0xc1, 0xb1, 0x5d, 0x46, 0xc8, 0x4b, 0x38,
10097 0x9f, 0xc6, 0xc0, 0x4b, 0x6b, 0xbd, 0x35, 0x0d, 0xaf, 0x2b, 0xba, 0xac,
10098 0x03, 0xd0, 0xc4, 0x05, 0x1d, 0xbf, 0x7f, 0xcd, 0xce, 0xbf, 0xda, 0x01,
10099 0xc9, 0x44, 0x16, 0xb4, 0xac, 0xea, 0xae, 0x7a, 0x7a, 0xe9, 0x07, 0xaf,
10100 0xbe, 0x53, 0xf6, 0x53, 0x67, 0x80, 0x7b, 0xd0, 0x50, 0xa4, 0x65, 0x5d,
10101 0xb0, 0xc4, 0xaf, 0x34, 0xd5, 0x98, 0xec, 0x04, 0x52, 0x5a, 0x0d, 0xb1,
10102 0x0f, 0xc5, 0x04, 0x74, 0xaa, 0x88, 0xc6, 0x10, 0xbd, 0x19, 0x57, 0x0e,
10103 0x37, 0x01, 0x86, 0xbc, 0x9a, 0x49, 0x17, 0x54, 0x3f, 0x5c, 0x36, 0x4b,
10104 0x76, 0xfa, 0x92, 0x0a, 0x03, 0xd6, 0x6a, 0x6d, 0x32, 0x24, 0x27, 0xcb,
10105 0xdb, 0x14, 0x33, 0x99, 0xa8, 0x61, 0x6a, 0xa0, 0x7d, 0xd2, 0xbf, 0x7d,
10106 0x25, 0x57, 0xed, 0x85, 0x7a, 0xa7, 0xab, 0x2d, 0xe2, 0xa9, 0x36, 0x8f,
10107 0xe4, 0x15, 0x74, 0xd7, 0xb4, 0x5e, 0xb0, 0xd9, 0xac, 0x6e, 0x04, 0x51,
10108 0x43, 0x75, 0x3d, 0xea, 0x6a, 0x17, 0xca, 0x87, 0x2a, 0xec, 0xc4, 0xeb,
10109 0x52, 0x2d, 0xc8, 0x6f, 0xa6, 0x5c, 0xcd, 0xfd, 0x07, 0x11, 0x71, 0xe8,
10110 0xe4, 0xd8, 0xc0, 0xc5, 0x93, 0xa4, 0x42, 0xc8, 0x8e, 0x71, 0x1e, 0xc2,
10111 0x40, 0x57, 0x04, 0x32, 0xc9, 0xbe, 0xb1, 0x37, 0x4b, 0x61, 0xa8, 0x4c,
10112 0xc2, 0x17, 0x7e, 0x09, 0x83, 0x49, 0xb5, 0x80, 0xb7, 0x4a, 0x58, 0x6c,
10113 0xbc, 0x98, 0xcd, 0xb5, 0x01, 0x2c, 0x63, 0xac, 0x0a, 0x88, 0x15, 0x17,
10114 0xff, 0xc7, 0xda, 0x60, 0x8d, 0xb9, 0xe6, 0xda, 0x8b, 0x56, 0x58, 0xc0,
10115 0x5e, 0x65, 0x43, 0x83, 0x39, 0xaf, 0x88, 0x74, 0xa7, 0x55, 0xbd, 0x87,
10116 0x08, 0x56, 0x03, 0x8d, 0x93, 0xe1, 0xe2, 0xaa, 0xc5, 0x09, 0x69, 0xa1,
10117 0xb1, 0xec, 0x56, 0xa3, 0xa9, 0x61, 0x2b, 0xaa, 0x84, 0xab, 0x7f, 0xb3,
10118 0x7b, 0x3c, 0x47, 0x2b, 0x30, 0xf7, 0xd2, 0xd1, 0xea, 0x06, 0x5f, 0xcb,
10119 0x3a, 0x3a, 0x6f, 0xdf, 0xbb, 0x13, 0x7a, 0xaf, 0xc4, 0x58, 0xaf, 0xba,
10120 0x75, 0x8a, 0xc2, 0x9f, 0x69, 0xd7, 0x19, 0x95, 0xd8, 0x6d, 0xde, 0xad,
10121 0x33, 0x47, 0xd3, 0x7c, 0x73, 0x33, 0xbb, 0x1a, 0xce, 0xa1, 0x6a, 0x34,
10122 0xef, 0x4d, 0x62, 0x6c, 0x63, 0xed, 0x21, 0x9e, 0x49, 0xd9, 0xb0, 0xec,
10123 0xac, 0xcb, 0xe3, 0x8b, 0xe8, 0x35, 0x8a, 0xcb, 0x73, 0xb8, 0x32, 0x5a,
10124 0x87, 0x53, 0xff, 0xf9, 0xde, 0xf6, 0xee, 0xca, 0x87, 0xbe, 0xfb, 0xbc,
10125 0x15, 0xcf, 0xfe, 0x09, 0xfc, 0x9b, 0xf4, 0x48, 0xd7, 0xa9, 0xfb, 0xbb,
10126 0x5e, 0xfa, 0xaf, 0x94, 0xe5, 0x21, 0x24, 0x88, 0xcb, 0x45, 0x81, 0x49,
10127 0x1e, 0xec, 0x86, 0x85, 0x17, 0xfa, 0xf8, 0xee, 0xfc, 0xd5, 0xc9, 0xd9,
10128 0xd1, 0xdf, 0x4c, 0x8f, 0x06, 0x7c, 0x9a, 0x42, 0x6c, 0x7f, 0x04, 0x23,
10129 0xeb, 0xfe, 0x63, 0x99, 0xc0, 0x54, 0xab, 0xf5, 0xdd, 0x0d, 0x44, 0x30,
10130 0xf5, 0x50, 0x0b, 0xaf, 0x92, 0x7a, 0x6b, 0x0b, 0x86, 0xe5, 0x58, 0xd2,
10131 0x2a, 0xcd, 0xa4, 0x5a, 0x6c, 0xf5, 0x77, 0x04, 0xea, 0xa1, 0xc4, 0x28,
10132 0xa4, 0x7b, 0x5e, 0x39, 0xc8, 0x9c, 0xb1, 0xf4, 0x89, 0x64, 0x51, 0xe8,
10133 0xef, 0x3c, 0xf5, 0x2f, 0xa1, 0x7b, 0x9d, 0xc5, 0x2f, 0xc2, 0x7d, 0x4c,
10134 0x26, 0x8a, 0x4f, 0x2d, 0x90, 0x84, 0x84, 0x01, 0x47, 0x40, 0x20, 0x4f,
10135 0x59, 0x2e, 0xa1, 0xe5, 0x6a, 0xab, 0xf5, 0xae, 0xcb, 0xe7, 0xc4, 0x70,
10136 0x31, 0xa9, 0xb5, 0x0a, 0xea, 0x55, 0xa4, 0x3d, 0x27, 0xd3, 0x2c, 0xa9,
10137 0xa4, 0xa4, 0x3d, 0x3a, 0x84, 0x7f, 0x3f, 0xbf, 0x89, 0xa7, 0x1e, 0xa6,
10138 0x7a, 0x5c, 0x2a, 0x51, 0x9c, 0xa3, 0x08, 0xef, 0x34, 0x32, 0xa2, 0xaf,
10139 0x28, 0xb6, 0xc9, 0xd8, 0x5c, 0x09, 0x02, 0xe6, 0xc0, 0x3b, 0x6d, 0x2e,
10140 0xff, 0x76, 0x71, 0xf2, 0xf9, 0x21, 0x1e, 0x64, 0x5f, 0x20, 0x9c, 0x4c,
10141 0x59, 0x3b, 0xd7, 0xa8, 0x38, 0xd1, 0x23, 0xcd, 0x77, 0xaf, 0x4e, 0x07,
10142 0x17, 0x67, 0xe7, 0xc7, 0x9f, 0x1f, 0x7e, 0x87, 0x0e, 0x24, 0xd0, 0x80,
10143 0xee, 0x9d, 0x7b, 0xcd, 0x67, 0x91, 0xb6, 0x67, 0xf0, 0xfb, 0x82, 0x9c,
10144 0x7c, 0xfb, 0xf1, 0xe4, 0xdd, 0x37, 0x9f, 0x1f, 0xde, 0xc4, 0x45, 0x17,
10145 0xdf, 0x8f, 0xef, 0xc6, 0xf2, 0xe7, 0xec, 0x26, 0x2d, 0xf2, 0x0c, 0x23,
10146 0x61, 0x11, 0x7c, 0x99, 0xe2, 0x46, 0x5b, 0x71, 0x69, 0x2a, 0x79, 0xa7,
10147 0x9b, 0x6a, 0x7b, 0x6b, 0x4b, 0xc8, 0xf2, 0x68, 0x03, 0xf7, 0x2f, 0xd2,
10148 0x82, 0x7d, 0x92, 0x5e, 0xf5, 0x9d, 0x8d, 0x83, 0xc6, 0xfb, 0x70, 0xfa,
10149 0xa9, 0x4c, 0x7f, 0x4e, 0x22, 0x98, 0xf4, 0x74, 0xe1, 0x29, 0x9a, 0xeb,
10150 0x97, 0xdc, 0xcf, 0x01, 0x96, 0x00, 0x7f, 0x8b, 0xbe, 0x3a, 0xfb, 0x0b,
10151 0xf6, 0xa2, 0x37, 0x69, 0x2c, 0xd4, 0xac, 0x12, 0xce, 0x83, 0x2f, 0xf6,
10152 0xb7, 0x77, 0x36, 0xe4, 0xfc, 0x10, 0xc4, 0xda, 0x21, 0xd0, 0xe9, 0x93,
10153 0x87, 0x82, 0xf8, 0xb3, 0xb6, 0x35, 0x6d, 0x40, 0x45, 0xdb, 0xde, 0x38,
10154 0x1a, 0xf6, 0x26, 0x90, 0x0d, 0x2a, 0x3b, 0x86, 0x6f, 0x61, 0xd3, 0x21,
10155 0xfa, 0x84, 0x17, 0xf2, 0xa7, 0x49, 0x69, 0x54, 0xca, 0x81, 0xbb, 0x84,
10156 0xe9, 0x48, 0xda, 0xc0, 0x52, 0x4d, 0xef, 0x5f, 0xac, 0x39, 0xd6, 0x08,
10157 0xbe, 0xbd, 0xb5, 0xb3, 0x17, 0x55, 0xe1, 0x96, 0x9b, 0xcb, 0xfa, 0xc1,
10158 0xe3, 0x18, 0xb0, 0xd1, 0xbc, 0xe6, 0x2e, 0xde, 0x57, 0xe1, 0xa5, 0x74,
10159 0xaa, 0x7e, 0x08, 0x0d, 0x2b, 0xe7, 0xee, 0xb4, 0x44, 0x48, 0xdd, 0x51,
10160 0xda, 0x6c, 0xe0, 0x21, 0x68, 0xe2, 0x19, 0xc2, 0x5e, 0x27, 0xa5, 0x89,
10161 0x12, 0x3b, 0x31, 0xe0, 0x69, 0x72, 0x85, 0x21, 0x2c, 0x5e, 0x9a, 0x52,
10162 0x51, 0x2e, 0x03, 0x90, 0x64, 0xf1, 0x08, 0xbd, 0x49, 0x04, 0x6e, 0x1c,
10163 0x31, 0x90, 0xf6, 0x9c, 0x7c, 0x4c, 0x26, 0x74, 0xcc, 0x53, 0x33, 0xcd,
10164 0x6c, 0x14, 0x1b, 0xa9, 0x1d, 0xe9, 0x58, 0x57, 0xb1, 0x41, 0x6f, 0xc7,
10165 0xf4, 0x7d, 0xca, 0xb2, 0x59, 0xba, 0xea, 0xa2, 0x6d, 0xbf, 0xdc, 0xe9,
10166 0x6f, 0x3f, 0x7b, 0x81, 0x90, 0xd3, 0x9b, 0x0f, 0x2d, 0x98, 0x4c, 0xa2,
10167 0x7e, 0x8e, 0xbd, 0xa8, 0x9d, 0x63, 0xf5, 0xb6, 0x74, 0xd1, 0x21, 0xfe,
10168 0x1a, 0x6c, 0x36, 0x45, 0xd9, 0x60, 0x1c, 0xb5, 0xa1, 0x50, 0xa5, 0xd3,
10169 0x2c, 0xd8, 0x20, 0x9e, 0xcc, 0xf2, 0x31, 0xab, 0xcf, 0xd8, 0x0d, 0xc9,
10170 0xa4, 0x51, 0x85, 0x3b, 0x6f, 0x9a, 0x84, 0x26, 0xd8, 0x6c, 0xac, 0x1b,
10171 0x21, 0x9f, 0xb7, 0x8c, 0x67, 0x70, 0x17, 0x03, 0x11, 0x51, 0x06, 0x63,
10172 0xa3, 0x64, 0xfd, 0x43, 0x1c, 0x0b, 0x8f, 0x2b, 0x54, 0x92, 0x80, 0x68,
10173 0x5f, 0x68, 0x6e, 0x61, 0x6c, 0xba, 0x22, 0x31, 0x46, 0x6f, 0x22, 0x8d,
10174 0x75, 0x4a, 0xbf, 0x5d, 0x09, 0xe3, 0x42, 0x34, 0x0a, 0x27, 0x50, 0x6d,
10175 0x23, 0x6e, 0x43, 0x31, 0x0e, 0xf3, 0x2c, 0xd5, 0x3e, 0x45, 0xfc, 0xb9,
10176 0x8c, 0xd1, 0x37, 0x19, 0x2d, 0x38, 0x98, 0x27, 0xcd, 0xa9, 0x34, 0x84,
10177 0x73, 0x05, 0x9c, 0x7f, 0x25, 0x69, 0xe9, 0xfc, 0x76, 0x12, 0x06, 0xa0,
10178 0x49, 0xad, 0xcf, 0xf0, 0x65, 0x36, 0x18, 0xf2, 0x26, 0x68, 0x82, 0x1b,
10179 0x6b, 0xba, 0xa6, 0x43, 0xc0, 0x88, 0x78, 0xbf, 0xe8, 0x0f, 0xa4, 0x31,
10180 0x70, 0xac, 0x81, 0x87, 0x75, 0x28, 0xe2, 0x61, 0x60, 0x55, 0x41, 0x00,
10181 0x8c, 0x01, 0xaa, 0x3f, 0x1c, 0xe8, 0xae, 0x53, 0x54, 0xf1, 0x2b, 0xc7,
10182 0xd8, 0xb7, 0x6d, 0xbd, 0xb7, 0x61, 0xba, 0x19, 0x10, 0x10, 0x17, 0xb3,
10183 0x86, 0xdf, 0x2b, 0x03, 0x13, 0xae, 0x46, 0x8b, 0x19, 0x77, 0x04, 0xe1,
10184 0xd6, 0x8e, 0x9c, 0xad, 0xa1, 0x1c, 0x22, 0x3c, 0x81, 0x0f, 0xdb, 0xe4,
10185 0xc4, 0x2f, 0x15, 0xa9, 0x69, 0x00, 0xd8, 0xd4, 0x1b, 0x2c, 0x4b, 0x6e,
10186 0xdd, 0xc1, 0xac, 0x19, 0x67, 0x06, 0xec, 0xff, 0xce, 0xed, 0x66, 0x7e,
10187 0x8e, 0x3a, 0xdf, 0xc2, 0xf0, 0x5b, 0xdb, 0xb0, 0x70, 0xf3, 0x68, 0x67,
10188 0x6b, 0x67, 0x3b, 0xda, 0xde, 0x39, 0xd8, 0x7e, 0x71, 0xb0, 0xb5, 0xb5,
10189 0x42, 0x03, 0x1a, 0x18, 0xa5, 0xf7, 0xab, 0x0c, 0x43, 0x7b, 0x77, 0x35,
10190 0xbd, 0x18, 0x38, 0xe5, 0xaa, 0x47, 0x48, 0xe3, 0xea, 0xac, 0x6e, 0x36,
10191 0x0d, 0xad, 0x1d, 0x0a, 0xd3, 0x12, 0x93, 0xf4, 0xa2, 0xc3, 0x6f, 0x4e,
10192 0xde, 0x0f, 0x4e, 0xcf, 0xdf, 0x7d, 0x11, 0xf4, 0x42, 0xca, 0x97, 0xb8,
10193 0xd8, 0x29, 0x6c, 0x2a, 0x83, 0xb9, 0x68, 0xc3, 0x1c, 0x18, 0x38, 0x52,
10194 0x7f, 0x3c, 0x6d, 0x71, 0xd0, 0xa4, 0xf0, 0x12, 0xbf, 0x8d, 0x54, 0x32,
10195 0xaf, 0xc8, 0x90, 0xd0, 0x60, 0x8a, 0x26, 0x55, 0x4a, 0x10, 0x84, 0x3c,
10196 0x5d, 0x5b, 0x5d, 0xfd, 0x6d, 0xdb, 0xfc, 0xb6, 0x13, 0x68, 0x3f, 0xc8,
10197 0xdf, 0xec, 0x86, 0x98, 0x26, 0x10, 0x75, 0x2e, 0x19, 0x72, 0x53, 0xbb,
10198 0x1b, 0xc2, 0x94, 0x5b, 0xfa, 0x50, 0xfa, 0x11, 0xa5, 0x51, 0xa5, 0xda,
10199 0x0b, 0x1b, 0x5a, 0x65, 0xf4, 0xd7, 0x0f, 0xa7, 0xc7, 0x3d, 0xce, 0x01,
10200 0x20, 0xb1, 0xbb, 0x09, 0x7b, 0xda, 0xa4, 0xe4, 0x79, 0x13, 0x0a, 0xd7,
10201 0x1d, 0x39, 0xc9, 0xf2, 0x8b, 0x39, 0xe3, 0xf7, 0x61, 0xe3, 0x1b, 0x86,
10202 0xd7, 0x77, 0x29, 0xda, 0x1c, 0x0e, 0x33, 0xbe, 0x6a, 0x37, 0xc2, 0xc5,
10203 0x37, 0xe4, 0x4b, 0x68, 0x5e, 0xb7, 0x1d, 0xba, 0x6e, 0xdb, 0xbf, 0x6e,
10204 0x27, 0x74, 0xdd, 0x8e, 0x7f, 0xdd, 0x6e, 0xe8, 0x3a, 0x67, 0x01, 0xfc,
10205 0xed, 0xa5, 0xa7, 0xa4, 0x30, 0x1a, 0x3e, 0x6a, 0xd9, 0x06, 0xf0, 0x2e,
10206 0xdf, 0xb5, 0xfe, 0xcf, 0xa5, 0x3b, 0xc1, 0x3d, 0x53, 0x95, 0x89, 0x8c,
10207 0x57, 0xb5, 0xeb, 0x0c, 0xe2, 0xba, 0x54, 0x77, 0xfb, 0xee, 0x26, 0x70,
10208 0x61, 0x05, 0x3c, 0xb7, 0xf1, 0x6a, 0xf1, 0x05, 0x3d, 0xc8, 0x75, 0xb8,
10209 0x80, 0xa9, 0x3d, 0x2d, 0xb7, 0x77, 0x35, 0x8e, 0x14, 0x1d, 0xca, 0x2f,
10210 0x0b, 0xec, 0x7b, 0x8e, 0x41, 0x66, 0x5f, 0xd5, 0x3e, 0x1b, 0xb8, 0xbd,
10211 0xbe, 0xa4, 0xa1, 0x34, 0xdd, 0x15, 0xd1, 0x6d, 0xa5, 0xed, 0xf4, 0xd5,
10212 0x0c, 0xf7, 0xf9, 0x4d, 0x6f, 0x30, 0x43, 0xd5, 0x80, 0x40, 0xc1, 0x6b,
10213 0x22, 0xb7, 0x11, 0x39, 0x2e, 0xaf, 0xf9, 0xf9, 0x78, 0x00, 0xeb, 0xe4,
10214 0x64, 0x78, 0xd2, 0xe6, 0x25, 0xeb, 0xbf, 0x31, 0x1c, 0x58, 0x07, 0xe9,
10215 0x58, 0xaf, 0xef, 0x73, 0x07, 0x48, 0xe0, 0x10, 0x78, 0xb4, 0x0c, 0x5c,
10216 0x9b, 0xa9, 0xb1, 0x90, 0x09, 0x80, 0x3c, 0xa0, 0xaa, 0x7d, 0x78, 0x7f,
10217 0xe6, 0xd9, 0x6c, 0x66, 0xf1, 0x91, 0xf2, 0xfd, 0x32, 0xd9, 0x84, 0xd3,
10218 0xa5, 0xdc, 0xa4, 0xf0, 0xb0, 0x3c, 0xf6, 0xba, 0x9a, 0x4d, 0x1f, 0xec,
10219 0x96, 0xa1, 0xed, 0xcf, 0xa7, 0xf7, 0xd2, 0x16, 0x88, 0xb2, 0xd1, 0x2c,
10220 0x9e, 0x69, 0xea, 0xac, 0xa8, 0x0f, 0xe0, 0x85, 0xde, 0x0e, 0xcc, 0x0d,
10221 0xc2, 0x3d, 0xb4, 0x8d, 0xba, 0x10, 0x29, 0x50, 0x06, 0x5d, 0x9d, 0x9d,
10222 0x59, 0x5c, 0x70, 0x61, 0x1b, 0x3a, 0xe1, 0x0d, 0x12, 0xbc, 0x0d, 0x60,
10223 0x51, 0x52, 0xe7, 0xa6, 0x02, 0x75, 0x61, 0x46, 0x35, 0x0d, 0x11, 0xac,
10224 0x74, 0x13, 0x8e, 0x12, 0x1b, 0x7e, 0x0c, 0x6a, 0xb8, 0xbf, 0xbb, 0x19,
10225 0x53, 0x63, 0x6c, 0x78, 0x9d, 0x8f, 0x47, 0x27, 0x83, 0x8f, 0xdb, 0x3b,
10226 0x2f, 0x3e, 0x7e, 0x7d, 0xfc, 0xf6, 0xe3, 0xe0, 0xcd, 0xd1, 0xce, 0xfe,
10227 0xaa, 0x35, 0x89, 0x3a, 0x98, 0xc4, 0x5e, 0x17, 0x05, 0xb5, 0x8a, 0x5c,
10228 0xe2, 0x48, 0x85, 0x39, 0x60, 0xba, 0x1d, 0xa1, 0x0c, 0x1d, 0xe2, 0xcf,
10229 0x2f, 0x7c, 0x0c, 0x59, 0xa2, 0x74, 0xb3, 0x20, 0x13, 0x2d, 0x7f, 0x84,
10230 0xbc, 0x62, 0x16, 0x61, 0xaa, 0x30, 0x04, 0xb7, 0x93, 0x1b, 0xd4, 0x92,
10231 0xda, 0x48, 0xec, 0xd5, 0x19, 0xbc, 0xbf, 0xe8, 0x74, 0x25, 0x49, 0x0a,
10232 0x9e, 0xd0, 0x83, 0xbf, 0x23, 0x72, 0x90, 0x45, 0xd1, 0xfe, 0xd6, 0xfe,
10233 0x9e, 0x94, 0x2d, 0xf2, 0x1c, 0x19, 0x88, 0xd0, 0x4f, 0x2f, 0xa3, 0x2f,
10234 0x6d, 0xd1, 0x68, 0xe1, 0xaa, 0x4a, 0x18, 0xe1, 0xab, 0xbf, 0x20, 0x67,
10235 0xf4, 0x76, 0x4d, 0x63, 0x83, 0x36, 0xcb, 0xc7, 0x74, 0x6e, 0x05, 0xd6,
10236 0xa6, 0x69, 0xd6, 0x3d, 0xba, 0x98, 0xe7, 0x2b, 0xc9, 0x99, 0x92, 0x1e,
10237 0x20, 0x12, 0x2f, 0x14, 0x4a, 0x54, 0x09, 0x48, 0xef, 0xcc, 0x1b, 0x46,
10238 0x90, 0x49, 0xcd, 0x3b, 0x0b, 0xc1, 0xba, 0x91, 0xc8, 0x2a, 0x13, 0x8b,
10239 0x6b, 0xd9, 0x53, 0x40, 0xb0, 0xaf, 0xb3, 0x05, 0x2e, 0x0a, 0x0d, 0xa4,
10240 0xe3, 0xc8, 0x30, 0x4f, 0xe0, 0x42, 0x43, 0x20, 0x1c, 0x66, 0x35, 0x86,
10241 0x93, 0xb5, 0x69, 0xb0, 0x94, 0x59, 0x91, 0x43, 0xb6, 0x4a, 0x42, 0x4c,
10242 0x15, 0x99, 0x8b, 0x88, 0x05, 0xc8, 0x6f, 0xc1, 0xcd, 0x3b, 0x92, 0x10,
10243 0xc3, 0x49, 0xff, 0xd0, 0x56, 0x64, 0x2d, 0xf5, 0xa2, 0x3b, 0xaf, 0xd3,
10244 0xd7, 0x8c, 0x3c, 0xb1, 0x9b, 0x2d, 0x27, 0xd1, 0xe4, 0x31, 0x3c, 0x92,
10245 0x2c, 0x0f, 0xbb, 0x05, 0x0a, 0x89, 0x54, 0xfe, 0xaf, 0x4e, 0x65, 0xf3,
10246 0xbe, 0xf3, 0xdb, 0xb1, 0x33, 0x17, 0xfa, 0xf1, 0x6b, 0x10, 0x9d, 0x06,
10247 0x0a, 0x22, 0x17, 0x20, 0xb9, 0xb5, 0xc4, 0xfa, 0x51, 0xc4, 0xb6, 0xdd,
10248 0x5a, 0x5b, 0xc9, 0x2d, 0x4c, 0xdc, 0x20, 0xb8, 0xa5, 0xb8, 0x43, 0x72,
10249 0xbb, 0x3f, 0x71, 0xfa, 0xde, 0xa6, 0xfb, 0xef, 0xbb, 0x08, 0x3a, 0x58,
10250 0x63, 0x21, 0x50, 0xa5, 0x0a, 0x2a, 0x25, 0xaf, 0xb1, 0xd8, 0xbd, 0x0e,
10251 0x15, 0xe3, 0x28, 0xaf, 0xa4, 0xac, 0xea, 0x49, 0x29, 0x2d, 0x18, 0x96,
10252 0x60, 0xc4, 0x10, 0x44, 0x0c, 0x1b, 0x2b, 0x34, 0x8a, 0x78, 0xef, 0x3e,
10253 0xf3, 0x5b, 0x70, 0xa0, 0x69, 0x1a, 0xe9, 0x53, 0xa4, 0x8d, 0xb2, 0x00,
10254 0x0c, 0x34, 0x32, 0x93, 0xd4, 0x0e, 0x15, 0xd8, 0xd8, 0xa9, 0x5f, 0x12,
10255 0xf3, 0x11, 0xc5, 0xde, 0x47, 0x59, 0x80, 0x2d, 0x4d, 0x57, 0x32, 0x49,
10256 0xe3, 0x38, 0x08, 0x68, 0xfe, 0x98, 0xf3, 0x50, 0x22, 0x8c, 0xe1, 0x43,
10257 0x10, 0xb6, 0x38, 0x0e, 0x48, 0x48, 0x4c, 0x50, 0xd7, 0x20, 0xa9, 0xea,
10258 0x98, 0x8d, 0x56, 0x91, 0x68, 0xf8, 0xc4, 0xc6, 0x9e, 0x12, 0xb2, 0xf9,
10259 0xdd, 0x61, 0x9e, 0xe0, 0xaa, 0xe7, 0x05, 0x5b, 0x7d, 0xf5, 0x59, 0x2b,
10260 0x6e, 0x74, 0x81, 0xf5, 0x59, 0x61, 0xfb, 0x69, 0xac, 0xb0, 0xfd, 0xdf,
10261 0x8b, 0x15, 0xb6, 0xff, 0xcf, 0x61, 0x85, 0xed, 0xdf, 0x8c, 0x15, 0x76,
10262 0x9e, 0xc6, 0x0a, 0x3b, 0xff, 0xbd, 0x58, 0x61, 0xe7, 0xff, 0x1c, 0x56,
10263 0xd8, 0xf9, 0xcd, 0x58, 0x61, 0xf7, 0x69, 0xac, 0xb0, 0xfb, 0x1b, 0xb0,
10264 0xc2, 0xbf, 0x9b, 0x0b, 0xe8, 0x9d, 0x49, 0xcf, 0x55, 0x0b, 0x2f, 0x35,
10265 0x19, 0xd1, 0x36, 0x57, 0x18, 0x1d, 0xe0, 0xf8, 0xbd, 0xd8, 0x8b, 0xe5,
10266 0xd3, 0x16, 0x78, 0xf7, 0x49, 0x0b, 0xbc, 0xb3, 0xac, 0x33, 0x93, 0x75,
10267 0xa1, 0x84, 0xf3, 0x14, 0x3d, 0xb4, 0xb8, 0x18, 0x53, 0xb0, 0xd1, 0x9e,
10268 0xac, 0x2f, 0xf5, 0x9d, 0xac, 0xb0, 0x3a, 0x1f, 0x82, 0x79, 0x8a, 0xac,
10269 0x84, 0x51, 0x3f, 0x3c, 0x5a, 0x67, 0x1a, 0xc3, 0x29, 0x2f, 0x8b, 0xb5,
10270 0x3f, 0xb3, 0xaf, 0x67, 0x34, 0x53, 0x97, 0xd2, 0x2b, 0xec, 0x90, 0xf5,
10271 0x04, 0x22, 0xfe, 0x2a, 0xa9, 0x88, 0x4e, 0x72, 0xe8, 0xbf, 0x49, 0x2a,
10272 0xa2, 0x39, 0x0d, 0x6a, 0x99, 0x85, 0x0d, 0xa7, 0x98, 0xbb, 0xaf, 0x8b,
10273 0x5e, 0x02, 0x32, 0x6e, 0xec, 0x57, 0x54, 0x13, 0xcf, 0xbb, 0x81, 0x26,
10274 0x74, 0x3a, 0x53, 0x43, 0xdb, 0x31, 0x37, 0x52, 0x81, 0x6d, 0xd0, 0x3b,
10275 0x91, 0x7b, 0x6d, 0x36, 0x11, 0x6f, 0x18, 0xbf, 0x09, 0x49, 0xae, 0x1b,
10276 0xd6, 0x74, 0xdd, 0x50, 0x90, 0x70, 0xa9, 0xa4, 0xeb, 0x4a, 0x9d, 0x9b,
10277 0x3e, 0x46, 0xc3, 0x1e, 0x31, 0x77, 0x21, 0x0a, 0xf6, 0xfb, 0xa3, 0x64,
10278 0xe9, 0xd5, 0x6d, 0x47, 0xfb, 0xce, 0x2b, 0x77, 0x8b, 0x55, 0x12, 0xd4,
10279 0x69, 0x18, 0x8f, 0x92, 0x5e, 0x5c, 0x8e, 0xd2, 0x34, 0x1c, 0x2d, 0xd2,
10280 0x7c, 0xbd, 0x98, 0x8a, 0x09, 0x22, 0xba, 0x3e, 0xc2, 0x34, 0x1f, 0xa4,
10281 0x0a, 0x8a, 0x04, 0x3c, 0x66, 0xa8, 0x0d, 0x0b, 0x92, 0x00, 0x24, 0xd7,
10282 0x55, 0xae, 0xe1, 0xef, 0x6e, 0xa0, 0x13, 0x23, 0xca, 0x27, 0x62, 0x22,
10283 0x90, 0x52, 0xd4, 0xcc, 0x94, 0xb2, 0x97, 0xd3, 0x0c, 0x33, 0xf4, 0xa5,
10284 0x80, 0x53, 0xf2, 0x27, 0x38, 0x9c, 0x23, 0x09, 0x60, 0x5c, 0x3a, 0xf6,
10285 0xc1, 0x73, 0x7a, 0x75, 0x7a, 0x1d, 0x8c, 0x9c, 0xe1, 0xd7, 0x64, 0x6a,
10286 0x61, 0x93, 0xd1, 0x58, 0x50, 0x5b, 0xe4, 0x56, 0x6d, 0x26, 0xb2, 0x2c,
10287 0xe7, 0x13, 0x4b, 0xf8, 0xd3, 0x59, 0x3a, 0x8d, 0x0b, 0x61, 0x44, 0x4e,
10288 0xb6, 0x42, 0x7f, 0x06, 0x08, 0x0a, 0xe9, 0x0f, 0xca, 0x50, 0x30, 0xc9,
10289 0x1d, 0x43, 0x15, 0xd2, 0xdb, 0x66, 0x7e, 0x75, 0xc5, 0x35, 0x96, 0x85,
10290 0x32, 0xb7, 0x1c, 0x0d, 0x8e, 0x4f, 0x4f, 0x6b, 0xc0, 0x86, 0x48, 0x37,
10291 0x6e, 0xe1, 0x4e, 0xf8, 0xe5, 0x25, 0xf6, 0x8e, 0x4e, 0x0a, 0x0b, 0x57,
10292 0xee, 0x05, 0x26, 0x67, 0x20, 0x23, 0x28, 0x4d, 0x01, 0xc4, 0x55, 0xca,
10293 0xcd, 0x84, 0xa8, 0xe9, 0x2b, 0x99, 0x94, 0x19, 0x4c, 0x33, 0xc5, 0x96,
10294 0x47, 0xd7, 0x8b, 0x59, 0x9c, 0x95, 0xff, 0xd7, 0xa5, 0xb3, 0xba, 0xbc,
10295 0x3b, 0xcd, 0xaf, 0x56, 0x49, 0x68, 0x6d, 0xcd, 0x68, 0xe5, 0x41, 0x03,
10296 0x12, 0xcc, 0x48, 0xac, 0x00, 0x47, 0x3b, 0x12, 0x8c, 0xb6, 0x87, 0x9f,
10297 0x59, 0xe9, 0xed, 0x38, 0xa4, 0x45, 0x33, 0x89, 0xa8, 0x20, 0x1d, 0xad,
10298 0x94, 0x56, 0x4e, 0x98, 0xe3, 0x37, 0xa3, 0x48, 0x06, 0x35, 0x0a, 0xe4,
10299 0x91, 0x61, 0x65, 0x74, 0xba, 0x11, 0xd5, 0x8b, 0x89, 0xc0, 0x0e, 0x14,
10300 0x0d, 0x4b, 0xd2, 0xcf, 0xbf, 0x7f, 0x67, 0x02, 0x4b, 0x90, 0xc6, 0x9a,
10301 0xca, 0xb6, 0x58, 0x51, 0x5f, 0x78, 0xe4, 0x0a, 0xfc, 0xdf, 0x21, 0xed,
10302 0x04, 0xee, 0xaa, 0xf3, 0xc7, 0x0e, 0x82, 0x4e, 0x79, 0x5e, 0xa5, 0x47,
10303 0x8d, 0x93, 0x14, 0xc5, 0xff, 0x9d, 0xa2, 0x65, 0x55, 0xa1, 0xe2, 0x72,
10304 0xa0, 0xb0, 0xb0, 0x23, 0x53, 0xa4, 0xe3, 0x5f, 0x8b, 0x60, 0xf1, 0xd2,
10305 0x25, 0x5d, 0xb1, 0xd2, 0x26, 0xa6, 0xf8, 0x21, 0x2e, 0x6b, 0x2f, 0xb2,
10306 0xf4, 0xae, 0x27, 0x8d, 0x0c, 0x0e, 0xe7, 0x71, 0x75, 0xfd, 0x45, 0x58,
10307 0x33, 0x3a, 0x66, 0xcb, 0x23, 0x52, 0x88, 0x29, 0xa2, 0xed, 0x07, 0xb8,
10308 0x19, 0xd6, 0x6f, 0x86, 0xf5, 0x13, 0x3c, 0x46, 0xd7, 0x14, 0x4f, 0xc0,
10309 0xea, 0x90, 0x76, 0x14, 0xa8, 0xbf, 0xc8, 0x92, 0x0a, 0xfd, 0x84, 0xab,
10310 0x92, 0xd8, 0x9d, 0x2a, 0xff, 0xd3, 0xc3, 0x09, 0xaf, 0x48, 0xec, 0x78,
10311 0x58, 0x22, 0x29, 0x2a, 0x77, 0xb8, 0x7a, 0xae, 0x52, 0xbd, 0xe8, 0xf4,
10312 0x92, 0x3a, 0x4f, 0xcd, 0x11, 0x55, 0xa7, 0x47, 0x19, 0x0c, 0x41, 0x31,
10313 0x40, 0x8b, 0x64, 0x51, 0x6c, 0xea, 0x09, 0x21, 0x98, 0x45, 0x39, 0x95,
10314 0xd4, 0xa5, 0x5c, 0x1b, 0x3c, 0xb3, 0x2d, 0xf0, 0xe1, 0xfd, 0x19, 0xc5,
10315 0x50, 0x7c, 0x2a, 0x15, 0x12, 0x0b, 0xe1, 0xfb, 0x48, 0x27, 0x48, 0x9b,
10316 0x99, 0x26, 0x70, 0xb7, 0xdb, 0x54, 0x2d, 0x9e, 0xe3, 0x71, 0x10, 0xd0,
10317 0xc5, 0x9d, 0x09, 0x70, 0x3b, 0x9c, 0x77, 0xe7, 0x97, 0x27, 0x7c, 0x10,
10318 0xa0, 0xa5, 0x4e, 0xb1, 0x50, 0x46, 0xd1, 0x40, 0x05, 0x81, 0xfa, 0xca,
10319 0x6f, 0x6a, 0x2e, 0xf1, 0xd4, 0x87, 0x7f, 0xe1, 0x82, 0x9c, 0xbc, 0x60,
10320 0xfc, 0x7a, 0xc4, 0x89, 0x9d, 0x12, 0x38, 0x0a, 0x33, 0x1f, 0xf5, 0x58,
10321 0xd1, 0xb2, 0xb6, 0xfa, 0x5b, 0x90, 0xec, 0xf0, 0xcc, 0x1a, 0x27, 0x3f,
10322 0xf2, 0x3a, 0xcd, 0x3e, 0x99, 0x79, 0x15, 0xbc, 0x33, 0xed, 0xd3, 0xb4,
10323 0x64, 0x87, 0x8b, 0x99, 0x89, 0x80, 0x13, 0x5f, 0x59, 0x56, 0x01, 0xb5,
10324 0x28, 0x13, 0x31, 0xaf, 0xb8, 0x45, 0x2c, 0x42, 0xf2, 0x4d, 0xd3, 0x4f,
10325 0xc9, 0xf4, 0x5e, 0x00, 0x5f, 0x28, 0x2a, 0x44, 0x0b, 0x8b, 0x15, 0xad,
10326 0x85, 0xa2, 0x98, 0x7a, 0x2d, 0x70, 0xd3, 0x69, 0xdf, 0x85, 0x15, 0x92,
10327 0x40, 0xab, 0x02, 0xbd, 0xad, 0x0f, 0x36, 0xc4, 0x98, 0x63, 0x69, 0x72,
10328 0xf1, 0xe1, 0x12, 0x8d, 0x87, 0x19, 0x75, 0x14, 0x85, 0x07, 0x87, 0x0b,
10329 0x0a, 0x82, 0x5d, 0x5f, 0x1a, 0xc5, 0x49, 0x28, 0xbc, 0xd7, 0x63, 0x6d,
10330 0x12, 0x8a, 0xc9, 0x4f, 0x1b, 0x6a, 0x8f, 0x82, 0x90, 0x05, 0x66, 0x70,
10331 0xb6, 0x5a, 0x1c, 0x4c, 0x77, 0x93, 0x4e, 0xf2, 0x47, 0x53, 0x4a, 0x22,
10332 0xab, 0x12, 0x0d, 0x02, 0x3a, 0xcf, 0xe8, 0x83, 0x9c, 0x5f, 0xb7, 0xad,
10333 0x48, 0x05, 0x4d, 0x6a, 0x23, 0xd0, 0x88, 0x9d, 0x30, 0xaf, 0x2d, 0xef,
10334 0x99, 0xa7, 0xe3, 0xe3, 0x71, 0xaa, 0x8d, 0xa9, 0x51, 0x25, 0x35, 0x25,
10335 0xc6, 0xfa, 0x42, 0x80, 0xa0, 0xa7, 0xd5, 0x4f, 0x45, 0xfa, 0x29, 0xb2,
10336 0x9c, 0xd4, 0xf9, 0xca, 0x79, 0xc2, 0xdd, 0x58, 0x65, 0x38, 0x8e, 0xcc,
10337 0x25, 0x74, 0x32, 0xfa, 0x35, 0xd7, 0xb8, 0x84, 0x01, 0x92, 0xfe, 0x0d,
10338 0xb3, 0xcb, 0x31, 0x22, 0x6d, 0xd0, 0xfd, 0x48, 0xca, 0xd7, 0x77, 0xb3,
10339 0x9e, 0x2f, 0xb8, 0x97, 0x94, 0xe5, 0x65, 0xf9, 0xbc, 0xb6, 0xad, 0x19,
10340 0x10, 0xf3, 0x04, 0xaf, 0xf5, 0x85, 0xc2, 0x7f, 0xd1, 0xfd, 0xf3, 0x38,
10341 0x2d, 0x0c, 0x89, 0x30, 0xad, 0x21, 0xe6, 0xd0, 0x3b, 0x5d, 0x18, 0x28,
10342 0x86, 0x83, 0xef, 0x08, 0x41, 0xb9, 0xcf, 0x7b, 0x80, 0x24, 0x94, 0xc1,
10343 0x5a, 0xe9, 0xe0, 0x19, 0x39, 0x84, 0x57, 0xee, 0xa8, 0x31, 0x50, 0x7b,
10344 0xa4, 0x87, 0xce, 0x78, 0x45, 0x0e, 0xc0, 0x2e, 0x39, 0x13, 0x38, 0xb8,
10345 0x2e, 0xdb, 0x1b, 0x49, 0x20, 0x7c, 0x3e, 0x5b, 0x4c, 0xab, 0x74, 0x3e,
10346 0x65, 0x0e, 0x28, 0xd9, 0xfd, 0xc4, 0x2b, 0xef, 0x27, 0x2d, 0xd4, 0xc3,
10347 0xf4, 0x84, 0x7a, 0x88, 0x9f, 0xea, 0xac, 0xb8, 0xde, 0xca, 0x71, 0xf8,
10348 0x88, 0x74, 0x42, 0x89, 0x16, 0x6e, 0xf1, 0xc9, 0x73, 0x30, 0xd8, 0xf9,
10349 0x19, 0x97, 0xee, 0xf3, 0xaa, 0x1f, 0x38, 0xbb, 0x91, 0x53, 0xe8, 0xe2,
10350 0x76, 0xa0, 0x5b, 0xd6, 0x11, 0x30, 0x0a, 0xbd, 0xbf, 0xbb, 0xb3, 0x13,
10351 0xb1, 0x6e, 0xc4, 0x40, 0x67, 0x9c, 0xc7, 0x89, 0xa0, 0xc5, 0x49, 0x4c,
10352 0x75, 0xd5, 0x7c, 0xde, 0x60, 0x2f, 0xbc, 0x98, 0xf3, 0x12, 0x80, 0x98,
10353 0x2d, 0x15, 0x61, 0x5c, 0xbc, 0x88, 0x3d, 0xf1, 0x80, 0xd7, 0xf2, 0xf1,
10354 0xbd, 0x1d, 0x18, 0x38, 0xa2, 0x40, 0x21, 0x04, 0xa2, 0x43, 0x4a, 0xe0,
10355 0x39, 0x44, 0x59, 0x46, 0x41, 0xec, 0x9d, 0xa9, 0xe4, 0x1b, 0xe3, 0x71,
10356 0x40, 0x8d, 0x53, 0x33, 0x64, 0xb2, 0x8c, 0x7e, 0xc5, 0xf6, 0x5f, 0x8b,
10357 0x82, 0x5a, 0xfc, 0x61, 0xf9, 0x77, 0x76, 0x1f, 0xdd, 0xc6, 0xf7, 0xab,
10358 0x26, 0xf6, 0x5d, 0xb6, 0xe7, 0xd2, 0xb5, 0x5c, 0xdf, 0x49, 0x67, 0x57,
10359 0xdf, 0x6f, 0xf7, 0xb6, 0xb7, 0xb6, 0xb6, 0x7e, 0xec, 0xcf, 0x91, 0xa7,
10360 0x38, 0xb1, 0x17, 0x7e, 0xf6, 0x6b, 0x79, 0xf5, 0x2d, 0x47, 0xaf, 0xc3,
10361 0xea, 0x9d, 0x7f, 0xe0, 0x3f, 0xdb, 0x5d, 0xfc, 0xb9, 0xf3, 0xcf, 0xce,
10362 0x6a, 0xc7, 0xef, 0xd7, 0xb8, 0x71, 0x30, 0x17, 0x95, 0x94, 0x12, 0x53,
10363 0x5a, 0x56, 0xd3, 0x48, 0xe0, 0x89, 0x87, 0xf0, 0xc3, 0x8b, 0x90, 0x1a,
10364 0x88, 0x4e, 0x64, 0x43, 0x5a, 0xe2, 0x6a, 0x74, 0x1d, 0xa8, 0x7e, 0x06,
10365 0x41, 0x8f, 0x39, 0x0e, 0x08, 0x7b, 0x60, 0xfa, 0xa4, 0xc3, 0x3e, 0xf0,
10366 0x1a, 0xbb, 0x8a, 0xbe, 0x2a, 0xc3, 0xc2, 0xa0, 0xeb, 0xe5, 0x06, 0xd7,
10367 0xe4, 0x73, 0xf9, 0x00, 0x8b, 0xcf, 0x36, 0x5f, 0x2c, 0x4b, 0x58, 0x9c,
10368 0x0a, 0x2a, 0x65, 0x0c, 0xca, 0x81, 0xbb, 0x69, 0x74, 0x9d, 0xcc, 0x44,
10369 0xb8, 0xae, 0x6b, 0x65, 0x56, 0x07, 0x69, 0x04, 0x24, 0xea, 0xf8, 0x87,
10370 0x5f, 0x67, 0x22, 0xdf, 0xc0, 0xcb, 0x6c, 0x08, 0xba, 0xa7, 0x39, 0x0f,
10371 0x29, 0xc9, 0x35, 0x8e, 0xae, 0x16, 0xe8, 0x21, 0x1a, 0xc6, 0x72, 0xf0,
10372 0x28, 0xc0, 0x6c, 0x8b, 0xe2, 0x40, 0x35, 0x70, 0x49, 0x41, 0xe7, 0x1d,
10373 0x6c, 0xcf, 0x61, 0x4f, 0x14, 0x34, 0xc9, 0x0a, 0xa6, 0xdc, 0x62, 0xd8,
10374 0xfb, 0xaf, 0x4e, 0x8f, 0x41, 0x8a, 0xbd, 0xbe, 0xbc, 0xe8, 0x12, 0x98,
10375 0x46, 0x97, 0xb0, 0x21, 0x9a, 0x50, 0x7e, 0x84, 0xb0, 0x81, 0x90, 0x56,
10376 0xb8, 0x53, 0x2b, 0x46, 0x24, 0x89, 0x6d, 0x89, 0x8a, 0xc5, 0x05, 0x54,
10377 0x0c, 0x41, 0x6a, 0x5e, 0x79, 0x9b, 0xe2, 0x61, 0x16, 0xa8, 0xbd, 0xac,
10378 0x29, 0xd8, 0xa6, 0x60, 0x68, 0x6f, 0xbf, 0xbf, 0xc5, 0xef, 0x88, 0x24,
10379 0x94, 0xe4, 0x69, 0x41, 0x43, 0x22, 0x3f, 0xb2, 0x66, 0x13, 0xc5, 0xe1,
10380 0x44, 0x44, 0x33, 0x9d, 0x6e, 0xc4, 0x7d, 0xc7, 0xe9, 0xef, 0x9e, 0x7e,
10381 0xeb, 0x54, 0x31, 0x2d, 0xb5, 0x4a, 0xdc, 0x86, 0x9c, 0xb8, 0x2f, 0x1b,
10382 0x9d, 0x9c, 0xa9, 0x93, 0x77, 0xa4, 0x90, 0x85, 0x02, 0x7d, 0x1f, 0x6a,
10383 0xc5, 0x4d, 0x3c, 0x41, 0xb5, 0xe6, 0x5c, 0x3e, 0xdc, 0x35, 0x3d, 0xe9,
10384 0x7b, 0x5a, 0x82, 0x29, 0xa0, 0x24, 0x26, 0x91, 0x95, 0xf5, 0xa2, 0x70,
10385 0x79, 0x5f, 0x3b, 0x90, 0xdc, 0x79, 0xa6, 0xa8, 0x62, 0x5d, 0xd2, 0x0f,
10386 0xd3, 0xd1, 0x02, 0xfd, 0x51, 0xc8, 0xb5, 0x08, 0x8d, 0x2b, 0x2d, 0x40,
10387 0xd1, 0x47, 0x4b, 0x87, 0xe0, 0x90, 0xe3, 0x07, 0xcd, 0x87, 0x20, 0xfa,
10388 0x09, 0xdb, 0x5d, 0xa2, 0x96, 0xdb, 0xfb, 0x2c, 0xdc, 0x07, 0x2a, 0x47,
10389 0x28, 0xf2, 0xef, 0xe1, 0xc8, 0x9f, 0xf5, 0xa3, 0xaf, 0x92, 0xdb, 0xb8,
10390 0x48, 0xfe, 0x63, 0x55, 0xfd, 0x1d, 0x7e, 0xae, 0x24, 0x2c, 0x8c, 0x71,
10391 0xc7, 0xd2, 0xa2, 0x56, 0xd9, 0x63, 0xe4, 0xc5, 0x57, 0xd2, 0x19, 0x96,
10392 0x4d, 0x9b, 0x10, 0x10, 0x94, 0xa0, 0xc3, 0x48, 0xcd, 0x1f, 0xfb, 0xd8,
10393 0x54, 0x55, 0xef, 0x63, 0x3c, 0x87, 0x77, 0x01, 0x2d, 0x1e, 0x52, 0x4a,
10394 0x33, 0x4f, 0x92, 0x2c, 0xd0, 0x08, 0x7e, 0x94, 0x38, 0xb8, 0x7c, 0x22,
10395 0x8a, 0xc8, 0xa1, 0x42, 0x8e, 0x18, 0x71, 0xf6, 0x77, 0xfe, 0x84, 0xa9,
10396 0x16, 0x9f, 0x1f, 0x75, 0xfa, 0xf5, 0xa4, 0x3d, 0x0f, 0x25, 0x64, 0x81,
10397 0x64, 0xa6, 0xc3, 0xae, 0x6e, 0x86, 0xcb, 0x11, 0x87, 0x47, 0x2a, 0xbe,
10398 0x3e, 0xe9, 0x4b, 0xc8, 0xc7, 0xb7, 0x69, 0xb6, 0xbb, 0x23, 0xcb, 0xb0,
10399 0x6a, 0x38, 0xe5, 0x2b, 0x1f, 0x20, 0x69, 0xf3, 0xfd, 0xc9, 0xd1, 0xab,
10400 0xb7, 0x27, 0x0f, 0x00, 0xf5, 0x88, 0x01, 0x89, 0xd3, 0xf4, 0xec, 0xc7,
10401 0x23, 0xed, 0xcb, 0xdb, 0x8b, 0xaf, 0xf0, 0x0d, 0x82, 0xb9, 0x2d, 0x62,
10402 0x42, 0xaa, 0x00, 0x27, 0x2d, 0x01, 0x6f, 0x39, 0xa2, 0x5b, 0x38, 0xfd,
10403 0xc8, 0x54, 0xe7, 0xb8, 0xa0, 0xc5, 0x1a, 0x0e, 0x6b, 0x6c, 0xda, 0x5c,
10404 0x0f, 0xd3, 0xe1, 0x34, 0xce, 0x3e, 0x95, 0xc6, 0x2e, 0xa2, 0x81, 0x40,
10405 0x08, 0x2c, 0x0a, 0x06, 0x9f, 0xb4, 0x1f, 0xca, 0xba, 0x04, 0x55, 0x9d,
10406 0xbf, 0x2f, 0xc8, 0x12, 0x9b, 0xc5, 0x05, 0xc1, 0xa9, 0xf1, 0x7a, 0x49,
10407 0x8d, 0xaf, 0xcb, 0x0e, 0x06, 0xf1, 0x94, 0xb7, 0xae, 0xa9, 0x02, 0x0e,
10408 0x48, 0x60, 0x05, 0x91, 0xd3, 0x6b, 0xe6, 0xe1, 0x9d, 0x2c, 0x89, 0x96,
10409 0x78, 0x92, 0x50, 0xe5, 0xdc, 0x6c, 0x5e, 0xdd, 0x1b, 0x45, 0x8e, 0xec,
10410 0xf8, 0x26, 0x79, 0xd7, 0x3b, 0x9d, 0x8d, 0xae, 0xe9, 0x3b, 0xef, 0x45,
10411 0x09, 0x10, 0x56, 0x46, 0xdb, 0x0c, 0xca, 0x0b, 0x60, 0x9f, 0xed, 0x04,
10412 0x35, 0x7f, 0xae, 0xef, 0x60, 0xd3, 0x89, 0x82, 0x1c, 0x26, 0xd1, 0x73,
10413 0x4e, 0x0d, 0x6a, 0x3c, 0xe9, 0x4a, 0xc4, 0x8d, 0xb4, 0x34, 0xd7, 0xa0,
10414 0x76, 0x27, 0x54, 0x6e, 0xe9, 0x68, 0x8e, 0x70, 0x82, 0xa2, 0xeb, 0x63,
10415 0xbd, 0x13, 0x75, 0x36, 0x7e, 0x67, 0x2f, 0xcc, 0x51, 0xd4, 0x61, 0x9e,
10416 0xda, 0xda, 0x7a, 0xbe, 0xa2, 0x62, 0xf2, 0xa6, 0x6b, 0xd7, 0xd4, 0x6d,
10417 0x23, 0xcb, 0x1f, 0x39, 0x1c, 0x6f, 0x3a, 0x51, 0x83, 0x92, 0x02, 0x3f,
10418 0x0f, 0x34, 0xc1, 0xa8, 0x4d, 0x5d, 0x31, 0xda, 0x62, 0xad, 0xe5, 0x23,
10419 0xe5, 0x37, 0x89, 0xc5, 0x44, 0xe0, 0xcd, 0x6c, 0xfb, 0xd8, 0x1c, 0xaf,
10420 0xd0, 0x59, 0xd0, 0x8f, 0xce, 0x0d, 0x88, 0x3b, 0x0a, 0xc6, 0xaa, 0x18,
10421 0x69, 0x1b, 0x4d, 0xfc, 0x5d, 0x8a, 0xb6, 0xe2, 0x69, 0x50, 0x67, 0xa1,
10422 0x5a, 0xdb, 0x32, 0xa5, 0xb6, 0xeb, 0xd6, 0x20, 0xb2, 0x2d, 0xa4, 0x71,
10423 0x7a, 0xae, 0x33, 0x01, 0x5e, 0x1f, 0xf8, 0x91, 0x01, 0x33, 0xbd, 0xe2,
10424 0xe0, 0x66, 0x4e, 0x95, 0x39, 0x4e, 0xdb, 0xde, 0xb5, 0x94, 0xc4, 0xcf,
10425 0x29, 0xf0, 0xce, 0x62, 0xae, 0xb9, 0xd2, 0x08, 0xc8, 0x49, 0xa8, 0xe7,
10426 0xc0, 0xa7, 0xd3, 0x3c, 0xeb, 0x7a, 0xdd, 0x65, 0x28, 0xd5, 0x92, 0x43,
10427 0x1f, 0x54, 0xfb, 0x34, 0x9b, 0xe7, 0xa0, 0x25, 0x0c, 0xa7, 0x89, 0x09,
10428 0xcc, 0xf2, 0x9d, 0x2a, 0x02, 0xec, 0xc3, 0x71, 0xa7, 0x86, 0x4e, 0x67,
10429 0x2d, 0x87, 0xc6, 0xa9, 0x9a, 0x85, 0x00, 0xc6, 0xee, 0x32, 0x5e, 0x93,
10430 0xf7, 0x4a, 0x70, 0xc8, 0x8a, 0xb8, 0x95, 0x66, 0x37, 0x29, 0x27, 0xb9,
10431 0x95, 0x2e, 0xad, 0xae, 0xd3, 0x71, 0xe2, 0x3a, 0x65, 0xa5, 0x63, 0x10,
10432 0xec, 0xe4, 0x9e, 0xd7, 0x8d, 0x15, 0xd1, 0x33, 0xb9, 0xbb, 0x38, 0x50,
10433 0x98, 0x7a, 0x74, 0x63, 0x86, 0x3a, 0x96, 0x85, 0xd9, 0x9a, 0x52, 0xb4,
10434 0x1e, 0x92, 0x8c, 0xfd, 0x6c, 0xb9, 0xf6, 0x99, 0x8a, 0x46, 0x7e, 0xa3,
10435 0xc0, 0x31, 0xb7, 0xa1, 0x2d, 0x79, 0x44, 0x21, 0xce, 0x3d, 0x16, 0x7b,
10436 0xf1, 0x79, 0x8d, 0xf5, 0x6c, 0x70, 0x5a, 0x71, 0x4b, 0x71, 0x24, 0x4e,
10437 0x69, 0x29, 0x5f, 0xfa, 0xb0, 0x55, 0xfc, 0xa6, 0xb6, 0xe9, 0x87, 0x82,
10438 0x30, 0x33, 0x94, 0x15, 0x69, 0x10, 0x37, 0x29, 0xd3, 0x9f, 0x73, 0x82,
10439 0x63, 0x38, 0x9a, 0xe8, 0x95, 0xb8, 0x54, 0xce, 0x73, 0x66, 0x27, 0x31,
10440 0xc3, 0xef, 0xa0, 0x1e, 0x8c, 0x78, 0x94, 0x29, 0xf9, 0xb3, 0xf9, 0xc0,
10441 0xbb, 0x56, 0x14, 0x50, 0xec, 0x67, 0x9f, 0x26, 0x08, 0x88, 0x45, 0x6f,
10442 0x11, 0x2b, 0x84, 0x8b, 0x97, 0x23, 0xc2, 0xce, 0x8e, 0xc2, 0x44, 0xde,
10443 0x90, 0xc1, 0x32, 0x94, 0x24, 0x2c, 0x54, 0x10, 0x10, 0x08, 0x9f, 0xc8,
10444 0x67, 0xa6, 0x28, 0xf2, 0xec, 0x88, 0x21, 0xdb, 0x3d, 0x6c, 0x94, 0xd2,
10445 0x41, 0x1e, 0xfd, 0x25, 0x29, 0x40, 0xd9, 0xcb, 0xe1, 0xbd, 0xbf, 0xd9,
10446 0xd7, 0x72, 0x33, 0x85, 0x6c, 0x65, 0xc5, 0x5b, 0x76, 0x28, 0x6e, 0x23,
10447 0x9e, 0xba, 0x17, 0xeb, 0x67, 0xd4, 0x02, 0xa4, 0xad, 0xde, 0x29, 0x9a,
10448 0x37, 0xfb, 0xad, 0x1a, 0x1c, 0xda, 0x25, 0xe4, 0x07, 0xe0, 0x3e, 0xcc,
10449 0x9a, 0x9e, 0x04, 0x8f, 0x11, 0x03, 0x29, 0x49, 0xd1, 0x72, 0xd2, 0xca,
10450 0x08, 0x9f, 0x2d, 0xca, 0x87, 0x55, 0x4c, 0xef, 0x67, 0xa6, 0x7d, 0x99,
10451 0xb2, 0x1f, 0xf3, 0x54, 0x8b, 0xe3, 0xfd, 0xf2, 0xd3, 0xae, 0x2a, 0xf0,
10452 0xb6, 0x5d, 0x7a, 0x23, 0xa5, 0x14, 0x2d, 0xa6, 0xf2, 0x1a, 0x6d, 0x0e,
10453 0xd4, 0x85, 0xc9, 0xf1, 0xf5, 0x59, 0xb8, 0x1f, 0x36, 0xd2, 0xec, 0xdd,
10454 0xe5, 0xd9, 0xdb, 0x6e, 0x63, 0xd7, 0x89, 0xf2, 0xee, 0x78, 0x89, 0x54,
10455 0xe2, 0x08, 0x4b, 0xf9, 0x6e, 0xfc, 0x22, 0x12, 0x72, 0x98, 0x44, 0x16,
10456 0x06, 0x32, 0x47, 0xca, 0x75, 0x25, 0x79, 0xbb, 0x10, 0xa4, 0x1e, 0x75,
10457 0x85, 0x31, 0x59, 0x7d, 0x17, 0x0d, 0xf2, 0x60, 0x49, 0x4b, 0x4f, 0xee,
10458 0x43, 0x38, 0xab, 0x40, 0xd6, 0x2c, 0x6b, 0x6e, 0x7f, 0x69, 0xed, 0x3f,
10459 0xfb, 0x54, 0x7e, 0x15, 0x94, 0x2e, 0x49, 0x4a, 0x1b, 0xe7, 0x55, 0x7e,
10460 0x9b, 0xf5, 0xce, 0x10, 0x82, 0x2f, 0x3a, 0xcb, 0xaf, 0x70, 0x03, 0xbd,
10461 0x23, 0x53, 0xca, 0x5b, 0xb4, 0x0f, 0x17, 0xef, 0xa2, 0x75, 0x54, 0x6d,
10462 0x10, 0xc7, 0x57, 0x1a, 0x5e, 0xe1, 0xa5, 0x1b, 0xe2, 0x4a, 0x28, 0x59,
10463 0xdd, 0x94, 0xd9, 0x74, 0xa3, 0x93, 0xef, 0x8e, 0xde, 0x5e, 0x9c, 0x9d,
10464 0xfc, 0xc0, 0xde, 0x04, 0xef, 0x75, 0xf0, 0xe3, 0x2f, 0x9d, 0xd3, 0x8b,
10465 0xf2, 0x0e, 0x30, 0xfd, 0x07, 0x66, 0x72, 0xdf, 0xa6, 0x4d, 0xb0, 0x54,
10466 0xb4, 0x70, 0xc3, 0x17, 0xa7, 0x3d, 0x6d, 0x1a, 0x45, 0x02, 0x6b, 0x98,
10467 0x66, 0xe8, 0x09, 0x21, 0x5f, 0x07, 0xb6, 0xe6, 0x80, 0x89, 0x11, 0xfb,
10468 0x7b, 0x88, 0xc4, 0xba, 0x1d, 0xba, 0xd1, 0x3b, 0xad, 0xad, 0xe9, 0xd2,
10469 0xa2, 0xe3, 0x16, 0x7c, 0x95, 0x5e, 0x51, 0x9e, 0x44, 0xa3, 0xe2, 0x00,
10470 0xb9, 0x43, 0x34, 0x05, 0xaf, 0xeb, 0x1c, 0x48, 0x10, 0x4d, 0xa9, 0x29,
10471 0x93, 0x29, 0xc7, 0x12, 0x5a, 0x8f, 0x46, 0x96, 0x90, 0xb4, 0x8a, 0x84,
10472 0x28, 0xd0, 0x9c, 0x9d, 0x22, 0x0c, 0xa0, 0x75, 0xc8, 0x0b, 0x28, 0xe6,
10473 0x37, 0x73, 0x08, 0x1f, 0x0a, 0xa2, 0xad, 0x19, 0xa9, 0x7f, 0x10, 0x75,
10474 0x7a, 0x8b, 0xe8, 0xa0, 0xf3, 0x3b, 0x6b, 0x29, 0xb4, 0x46, 0xc5, 0x41,
10475 0x99, 0x80, 0x40, 0x5f, 0x31, 0x54, 0x94, 0x75, 0xeb, 0x07, 0x7f, 0xd8,
10476 0x24, 0x72, 0xa3, 0x3f, 0x8d, 0xa1, 0xb8, 0x0d, 0xba, 0x24, 0x11, 0x9a,
10477 0xc0, 0x30, 0x37, 0x19, 0x70, 0x8d, 0x3d, 0x3c, 0x22, 0x81, 0x91, 0x41,
10478 0xdc, 0x88, 0xfd, 0x3c, 0x5c, 0x5c, 0x5d, 0x05, 0x1a, 0x11, 0x64, 0x48,
10479 0x25, 0xf2, 0xcb, 0xa2, 0xb3, 0x73, 0xad, 0x8c, 0x38, 0xbc, 0x09, 0x44,
10480 0xec, 0x50, 0x02, 0x90, 0xf6, 0xbc, 0xce, 0xc7, 0x68, 0x0b, 0x1d, 0x69,
10481 0x0c, 0x9a, 0x90, 0x4e, 0xfc, 0xe1, 0x58, 0x4b, 0x5f, 0xfb, 0x62, 0x2d,
10482 0x92, 0x94, 0xa8, 0xa8, 0x23, 0x2a, 0x19, 0x9d, 0x19, 0x1d, 0xb6, 0x92,
10483 0x60, 0xcd, 0x71, 0xfe, 0xdd, 0x68, 0xed, 0x70, 0x4d, 0xae, 0x93, 0xcb,
10484 0x9a, 0xa7, 0x23, 0xdd, 0xc3, 0xc9, 0x33, 0x6c, 0xb6, 0x8d, 0x4c, 0x6c,
10485 0x02, 0x71, 0x31, 0xd3, 0x31, 0x9c, 0x9f, 0x24, 0x86, 0x33, 0xdc, 0x9e,
10486 0x53, 0xe9, 0x71, 0xd7, 0x15, 0x4f, 0x60, 0x1c, 0x70, 0x00, 0x9b, 0x99,
10487 0xf3, 0x5c, 0xd7, 0xfe, 0x53, 0x67, 0xa0, 0x1d, 0xda, 0xe3, 0x29, 0x45,
10488 0x6b, 0x29, 0x1c, 0x92, 0x8e, 0xed, 0x53, 0x5b, 0x75, 0x32, 0x2e, 0xd9,
10489 0x42, 0x67, 0x14, 0x99, 0x3c, 0xea, 0x8c, 0x94, 0xe3, 0x82, 0x1d, 0x06,
10490 0x2e, 0x2a, 0x8e, 0x26, 0x78, 0x04, 0xce, 0x0b, 0x61, 0x5f, 0x2d, 0xde,
10491 0x9a, 0xe6, 0x39, 0xfa, 0xde, 0x71, 0x01, 0xdb, 0x84, 0x85, 0x06, 0x5c,
10492 0x2c, 0xef, 0xf3, 0x51, 0x6f, 0x62, 0xb2, 0x64, 0x9b, 0xe0, 0x95, 0xa2,
10493 0x8e, 0x88, 0x23, 0xa5, 0xdb, 0x82, 0xa0, 0x27, 0x47, 0x83, 0x86, 0x43,
10494 0x2d, 0x0e, 0x91, 0x44, 0x37, 0xb5, 0x92, 0xfc, 0x77, 0x8f, 0x0e, 0x4b,
10495 0xdf, 0x3b, 0x02, 0x22, 0x33, 0xe5, 0xe4, 0xc4, 0x1d, 0x12, 0xce, 0xfa,
10496 0xfb, 0x22, 0x4d, 0x56, 0x4e, 0x4c, 0xd0, 0x0d, 0xb5, 0xd2, 0x9e, 0x76,
10497 0x31, 0x8f, 0xea, 0xde, 0x4c, 0x01, 0x73, 0x0c, 0x82, 0x37, 0xfa, 0x45,
10498 0x56, 0x36, 0x8d, 0xa1, 0x25, 0xd6, 0xfb, 0x8d, 0x88, 0x85, 0x40, 0x49,
10499 0xfe, 0x2b, 0x49, 0xfd, 0x70, 0x33, 0x0d, 0x04, 0xf2, 0x87, 0x23, 0x13,
10500 0x62, 0x4d, 0x6b, 0x22, 0x9f, 0xa6, 0x29, 0xa6, 0x14, 0x37, 0x2c, 0xfb,
10501 0x01, 0x3b, 0x40, 0x35, 0x7b, 0xde, 0xf0, 0x26, 0xcf, 0x94, 0xc2, 0x4f,
10502 0x98, 0x29, 0xa1, 0x43, 0x60, 0x69, 0x26, 0xed, 0x66, 0x1d, 0xdb, 0x3f,
10503 0x07, 0x59, 0x7d, 0xdd, 0xc5, 0x8a, 0x10, 0xd8, 0x7c, 0xf7, 0x92, 0x77,
10504 0x8c, 0x11, 0x16, 0x18, 0xfc, 0x93, 0xd6, 0x15, 0xe1, 0xc8, 0xc9, 0x5d,
10505 0x32, 0x5a, 0x54, 0x41, 0xc8, 0x99, 0xcb, 0x6b, 0xed, 0x8b, 0xc3, 0x53,
10506 0x5a, 0xa7, 0x9d, 0x2c, 0xbd, 0x1c, 0x3a, 0x17, 0xda, 0x72, 0xe2, 0xa0,
10507 0xb3, 0xa1, 0x29, 0x59, 0x98, 0xbd, 0x61, 0x7b, 0x51, 0x78, 0xfb, 0x0d,
10508 0x73, 0x42, 0x65, 0xca, 0x45, 0xc2, 0x21, 0x1b, 0x9b, 0xd5, 0x18, 0x7c,
10509 0x3c, 0xec, 0xb3, 0x22, 0xf8, 0xf4, 0xd7, 0x1c, 0xac, 0x70, 0x1e, 0x2e,
10510 0x2c, 0x3e, 0xd2, 0x38, 0x46, 0xe9, 0xc9, 0x22, 0xef, 0xc9, 0x39, 0xa1,
10511 0x11, 0x45, 0x47, 0x37, 0xb0, 0x41, 0xc9, 0xd3, 0xa5, 0xb7, 0x2a, 0xf1,
10512 0xbd, 0x2a, 0xd4, 0x78, 0x5a, 0xf5, 0xca, 0x9b, 0x51, 0xb8, 0x90, 0x5b,
10513 0xc0, 0x87, 0x0c, 0x82, 0xf2, 0x11, 0x5c, 0x3c, 0xb8, 0x19, 0x1d, 0xa8,
10514 0x67, 0x01, 0x78, 0x53, 0x65, 0x9c, 0xf7, 0xb2, 0x47, 0xe5, 0x7d, 0x36,
10515 0xba, 0x7e, 0xf5, 0x6e, 0x10, 0x1e, 0x9a, 0x78, 0x9c, 0xa6, 0x4f, 0xfe,
10516 0xaf, 0x98, 0xae, 0x86, 0x13, 0x1d, 0x7b, 0x84, 0xb1, 0x93, 0x5a, 0x7a,
10517 0xa9, 0xa1, 0x3f, 0xe6, 0xc8, 0xf9, 0x36, 0x3c, 0x5c, 0xfd, 0x16, 0xe3,
10518 0x40, 0xc6, 0x53, 0x9a, 0xc5, 0x91, 0xa8, 0x71, 0x14, 0xda, 0xeb, 0xc5,
10519 0x48, 0x11, 0x7e, 0xa7, 0xf0, 0x70, 0xd5, 0x35, 0x06, 0x24, 0x93, 0xb1,
10520 0x8e, 0x58, 0xb4, 0xe7, 0x2f, 0x0f, 0x81, 0x39, 0xa6, 0x69, 0x8d, 0x54,
10521 0x16, 0xa0, 0x50, 0xbe, 0xd4, 0x2c, 0x4a, 0x6d, 0xbc, 0xa8, 0x41, 0x63,
10522 0x6f, 0xb0, 0xe3, 0xeb, 0xb8, 0x38, 0xce, 0xb3, 0x9b, 0xf0, 0xac, 0x1a,
10523 0xf9, 0xb3, 0x8c, 0x3e, 0xe3, 0x3c, 0x77, 0x04, 0x77, 0xc7, 0xa3, 0x8a,
10524 0x1a, 0x07, 0x51, 0x17, 0x31, 0xad, 0x1a, 0x08, 0x0f, 0xb7, 0x8e, 0x91,
10525 0xf0, 0xe8, 0xe4, 0xab, 0xe3, 0x57, 0xa7, 0xc7, 0x1b, 0xcd, 0x99, 0xbc,
10526 0x22, 0xb8, 0x39, 0xf1, 0x84, 0xb1, 0xaa, 0xc0, 0x0b, 0x65, 0xd8, 0xce,
10527 0x99, 0x04, 0x5d, 0x2c, 0x72, 0x8b, 0x15, 0xcd, 0x96, 0x47, 0xce, 0x10,
10528 0x4b, 0x25, 0x29, 0x8a, 0xbc, 0x20, 0xf9, 0xf4, 0x49, 0x73, 0xa2, 0x66,
10529 0xc9, 0x0c, 0x83, 0xfb, 0x46, 0xc5, 0x90, 0x46, 0x3e, 0xaf, 0xa9, 0xe7,
10530 0x2c, 0x3c, 0xac, 0x17, 0x1e, 0x6e, 0x8c, 0xfa, 0x38, 0x6a, 0x2b, 0x5c,
10531 0xe6, 0xe9, 0x39, 0xa3, 0xaf, 0xca, 0x18, 0xd1, 0xc2, 0x49, 0x14, 0xd1,
10532 0x74, 0x7b, 0x78, 0xd0, 0x0f, 0x8e, 0x06, 0x67, 0x5e, 0x5b, 0x55, 0x95,
10533 0x4d, 0x70, 0x50, 0xa0, 0x8d, 0xca, 0x90, 0x5c, 0xe1, 0xa7, 0x2a, 0xc9,
10534 0x07, 0xc7, 0xef, 0x8f, 0xde, 0x02, 0x9b, 0x71, 0x26, 0x81, 0x9f, 0xdf,
10535 0x4c, 0xa4, 0x81, 0x8f, 0x69, 0x16, 0xde, 0x52, 0x4b, 0x23, 0xd6, 0xf0,
10536 0x23, 0xb4, 0x4b, 0x2b, 0x37, 0xcf, 0xe3, 0xe0, 0xaa, 0x37, 0xc2, 0x9b,
10537 0xc1, 0xe5, 0x40, 0xff, 0xd1, 0x39, 0xd1, 0x8e, 0x4c, 0xca, 0x1a, 0xb4,
10538 0xa6, 0x5e, 0x0e, 0x3c, 0xb7, 0xc3, 0xff, 0x6c, 0xee, 0x98, 0x1b, 0x0c,
10539 0xe4, 0x8d, 0xd2, 0xa7, 0x1f, 0xb8, 0x6d, 0x57, 0x6e, 0xdb, 0x5d, 0x76,
10540 0x5b, 0xe0, 0xbe, 0x41, 0x2f, 0xd4, 0xce, 0xcf, 0x93, 0x00, 0x69, 0x20,
10541 0x23, 0x7c, 0x69, 0xa3, 0xba, 0x57, 0xef, 0xea, 0x03, 0x98, 0x78, 0x39,
10542 0x7e, 0xd3, 0x53, 0xc0, 0x1c, 0x51, 0xc5, 0x1c, 0x83, 0x2e, 0xe0, 0x7e,
10543 0xbd, 0xb8, 0x79, 0x26, 0x69, 0x02, 0x14, 0x22, 0x87, 0x85, 0xa4, 0x8f,
10544 0x8c, 0xd9, 0xe0, 0xdd, 0xa1, 0xe6, 0x76, 0xf8, 0xa5, 0x8c, 0x31, 0xfe,
10545 0xcd, 0x7e, 0xa0, 0x73, 0x6f, 0xfb, 0x5a, 0x9e, 0xc5, 0xc5, 0x55, 0x12,
10546 0x08, 0xe9, 0x7b, 0xb4, 0x32, 0xaf, 0x6a, 0x13, 0x8d, 0xe0, 0xf4, 0x9c,
10547 0xe2, 0xed, 0x1c, 0xd0, 0xef, 0x4a, 0x5c, 0x9f, 0x3e, 0x2a, 0xda, 0xc4,
10548 0x1b, 0xbc, 0xeb, 0xce, 0xd7, 0x5f, 0x79, 0xd3, 0x00, 0x6e, 0xfd, 0x19,
10549 0x65, 0xb7, 0x11, 0x60, 0xe3, 0xc4, 0x95, 0x5d, 0xeb, 0x37, 0x69, 0x1c,
10550 0x5d, 0xfd, 0x9c, 0xce, 0x09, 0x26, 0x07, 0xeb, 0x5b, 0x36, 0xe8, 0xec,
10551 0x36, 0x49, 0xe2, 0xe1, 0xc7, 0xf1, 0x84, 0x8c, 0xe0, 0x5b, 0x4e, 0x89,
10552 0xb7, 0x98, 0x9e, 0x30, 0x18, 0x9c, 0x3d, 0x9a, 0x10, 0x26, 0x9f, 0x61,
10553 0x69, 0x99, 0x09, 0x19, 0xad, 0xf2, 0xcf, 0x2a, 0x0b, 0x83, 0x37, 0x7c,
10554 0xfc, 0xf6, 0xab, 0xf0, 0x6c, 0x68, 0xb4, 0x71, 0x82, 0xe0, 0x5f, 0xda,
10555 0xfe, 0xf8, 0x36, 0xcd, 0xc0, 0xba, 0x1e, 0xc3, 0x09, 0x39, 0x9d, 0xf3,
10556 0x09, 0xd9, 0x3e, 0xf6, 0x05, 0xf6, 0x01, 0xe2, 0x7f, 0xf0, 0xba, 0x6b,
10557 0x95, 0xe3, 0x17, 0x8b, 0xe1, 0x14, 0x68, 0x3f, 0x58, 0x4c, 0x26, 0xe9,
10558 0x5d, 0x74, 0x96, 0x4a, 0x27, 0x25, 0x31, 0x87, 0xb4, 0xd8, 0x22, 0x2d,
10559 0x97, 0x9c, 0x12, 0xb4, 0x41, 0x79, 0x87, 0xd6, 0xaa, 0xd9, 0x2d, 0xf8,
10560 0x18, 0x6b, 0x76, 0x9d, 0x39, 0x3f, 0xab, 0x5c, 0x4c, 0x7a, 0x6d, 0x8b,
10561 0x77, 0x97, 0x94, 0xbe, 0xb9, 0x3c, 0xb8, 0x78, 0x77, 0xf2, 0xf5, 0xb9,
10562 0xfe, 0xb3, 0x0a, 0x45, 0x07, 0xfc, 0xd6, 0xf8, 0x8f, 0xa9, 0x6a, 0x03,
10563 0x26, 0x42, 0x9c, 0x40, 0x3c, 0xfc, 0x6d, 0xe3, 0x2f, 0xf2, 0x16, 0xeb,
10564 0x30, 0x5d, 0x86, 0x38, 0xf5, 0xf3, 0x51, 0x5d, 0x71, 0x43, 0xb1, 0x6c,
10565 0xf8, 0x89, 0x21, 0xeb, 0x01, 0x1b, 0xa6, 0x79, 0x08, 0x15, 0x12, 0x3d,
10566 0x22, 0xfa, 0xcf, 0xd2, 0xb9, 0x4a, 0xcd, 0x7e, 0x8b, 0x76, 0x44, 0x40,
10567 0x08, 0x03, 0xc6, 0x0a, 0x7f, 0xcf, 0xb9, 0x68, 0x17, 0xe2, 0xbc, 0xd8,
10568 0x58, 0x46, 0x92, 0x16, 0x42, 0xc3, 0xca, 0x07, 0x5b, 0xc2, 0xe0, 0x41,
10569 0xf9, 0x96, 0x0e, 0xc8, 0xf0, 0x8d, 0x7c, 0x54, 0xcb, 0x11, 0x6a, 0x8e,
10570 0xd5, 0xa5, 0xef, 0xf5, 0x21, 0x4b, 0x31, 0x78, 0xd6, 0x02, 0xdf, 0xc3,
10571 0x5f, 0x1a, 0x51, 0x9c, 0x9b, 0x18, 0x73, 0x68, 0x9c, 0xbb, 0x01, 0xa5,
10572 0x4f, 0x96, 0xad, 0x63, 0xdd, 0x49, 0xa2, 0x66, 0x59, 0x3f, 0xa4, 0x5a,
10573 0xd4, 0xc6, 0x9f, 0xcb, 0x6a, 0xfc, 0x90, 0x04, 0xc2, 0x6b, 0x36, 0xa4,
10574 0x12, 0xd2, 0x96, 0xe8, 0xb0, 0x98, 0x09, 0x4f, 0xe3, 0x21, 0xd9, 0xe3,
10575 0xd9, 0x74, 0xd6, 0x98, 0x23, 0x4b, 0xc9, 0xc7, 0xe4, 0xb9, 0xe6, 0x58,
10576 0xd1, 0x74, 0xce, 0xe6, 0xd6, 0x5b, 0x6e, 0x0e, 0x99, 0x2d, 0xdc, 0xc8,
10577 0x4b, 0xef, 0x16, 0x3f, 0x25, 0xb8, 0x72, 0x8c, 0xfa, 0x47, 0x87, 0x6c,
10578 0x57, 0x7d, 0x11, 0xf0, 0xc7, 0xf0, 0x03, 0x15, 0x72, 0xd3, 0xb5, 0xc0,
10579 0xc8, 0x1e, 0xa7, 0x78, 0x70, 0x3c, 0x41, 0xd5, 0x2e, 0x36, 0xf1, 0xbc,
10580 0x31, 0x9f, 0x01, 0x81, 0x76, 0x21, 0x1c, 0xda, 0xe0, 0x31, 0xc4, 0x6b,
10581 0x2a, 0x01, 0x56, 0xaa, 0x34, 0xc3, 0x26, 0x1a, 0x79, 0x46, 0xee, 0x63,
10582 0x01, 0x3e, 0x67, 0x77, 0x79, 0x34, 0x83, 0xbd, 0x3e, 0x0e, 0xfa, 0x63,
10583 0x30, 0x19, 0xc2, 0xc9, 0x86, 0x50, 0x50, 0xcf, 0xb2, 0xf6, 0x24, 0xcf,
10584 0xf3, 0x0b, 0x32, 0xc8, 0x77, 0xa0, 0x54, 0xe4, 0x4f, 0xeb, 0xf0, 0x8c,
10585 0x3a, 0x04, 0xc0, 0xa7, 0x81, 0x45, 0xca, 0x27, 0x57, 0x0b, 0x7c, 0x2c,
10586 0xc1, 0x21, 0x1e, 0x5b, 0xbc, 0x81, 0x71, 0x20, 0x1b, 0xdd, 0x44, 0xdc,
10587 0xbf, 0xd4, 0xdc, 0xf4, 0x8e, 0x66, 0xd6, 0xd5, 0x3c, 0x8e, 0x66, 0x4c,
10588 0x19, 0x32, 0x80, 0xb0, 0xc9, 0x99, 0x86, 0x54, 0xb9, 0x8a, 0xab, 0x06,
10589 0x43, 0xf6, 0x3a, 0x41, 0x33, 0xce, 0x10, 0x40, 0xd5, 0xad, 0xba, 0xb3,
10590 0x46, 0x1f, 0x61, 0x73, 0x63, 0xca, 0xc5, 0xb0, 0xac, 0xd2, 0x6a, 0xe1,
10591 0x6f, 0x7f, 0xd3, 0x2a, 0x85, 0x10, 0x49, 0xc9, 0x2c, 0xc1, 0xc5, 0xb0,
10592 0xb0, 0xa1, 0xe4, 0xa0, 0xc1, 0x04, 0xfe, 0x8a, 0xda, 0x32, 0x73, 0x55,
10593 0xc0, 0x10, 0xdd, 0x4a, 0xa0, 0xfc, 0xde, 0x7a, 0x60, 0xc8, 0x68, 0x57,
10594 0x9b, 0xd9, 0xd5, 0xa1, 0x56, 0xe0, 0xee, 0x3f, 0xfe, 0x43, 0xbf, 0xfc,
10595 0x88, 0x94, 0xfa, 0xa7, 0x52, 0x4a, 0x31, 0xb3, 0x63, 0x2f, 0x68, 0xc0,
10596 0x5e, 0xb1, 0x3f, 0x12, 0x55, 0x7e, 0xc2, 0x2c, 0x61, 0x26, 0x0d, 0xe2,
10597 0xa0, 0xd3, 0x80, 0x7f, 0xec, 0x1b, 0xf5, 0x49, 0x06, 0x89, 0x11, 0x17,
10598 0x8f, 0x4c, 0xdc, 0xe1, 0xbd, 0xe7, 0x95, 0x41, 0x36, 0xfc, 0x21, 0xeb,
10599 0x52, 0x7b, 0xf3, 0x02, 0x66, 0x72, 0x45, 0xc1, 0x1f, 0x44, 0x2e, 0xa6,
10600 0x55, 0xfc, 0xa1, 0x10, 0xc8, 0x6f, 0xb0, 0xe0, 0x25, 0xaa, 0xcc, 0x9f,
10601 0x87, 0xcd, 0x69, 0x4d, 0x14, 0x15, 0x4f, 0x6c, 0x0d, 0xad, 0x1f, 0xc6,
10602 0x89, 0x8b, 0xb1, 0x71, 0x9f, 0x0d, 0x15, 0xbb, 0x58, 0x53, 0x61, 0x9a,
10603 0x6b, 0x4f, 0x08, 0xc3, 0xd2, 0x0a, 0x5a, 0x6f, 0x26, 0x5b, 0xc5, 0x26,
10604 0x7b, 0xfc, 0xf1, 0x1f, 0x5c, 0xda, 0xf0, 0x4f, 0xdf, 0x2b, 0xf4, 0xdd,
10605 0xc5, 0xc9, 0xfb, 0xd3, 0xb7, 0x27, 0xef, 0x2e, 0x8f, 0xce, 0x22, 0x35,
10606 0xbb, 0x0f, 0xa2, 0xe8, 0x9c, 0x27, 0x58, 0xf3, 0xeb, 0x99, 0x28, 0x3c,
10607 0xe5, 0x67, 0xa1, 0x6f, 0x32, 0xab, 0xbc, 0x38, 0x3e, 0x17, 0x21, 0xda,
10608 0x27, 0xf3, 0xcd, 0xff, 0xe0, 0x45, 0xe3, 0x30, 0xa4, 0x9b, 0x0b, 0xcd,
10609 0x4d, 0xa4, 0xa9, 0x77, 0x05, 0x98, 0x2f, 0x7e, 0xe4, 0xf8, 0x46, 0x33,
10610 0xaf, 0x27, 0x52, 0x91, 0x46, 0x06, 0xfc, 0xba, 0x1b, 0x6f, 0x31, 0x79,
10611 0xdf, 0xe4, 0x39, 0xdf, 0xe0, 0xad, 0x1d, 0x74, 0xaa, 0xa2, 0xf4, 0x48,
10612 0xb0, 0xad, 0x14, 0xb2, 0x97, 0xf6, 0x86, 0x8b, 0x4b, 0x76, 0xcd, 0x92,
10613 0xac, 0x75, 0x52, 0xfc, 0xbb, 0x62, 0x08, 0x49, 0x86, 0x6f, 0xc0, 0xb7,
10614 0x63, 0x1e, 0x7c, 0x7b, 0x8d, 0xd8, 0x50, 0xb4, 0xe8, 0x20, 0x1d, 0x66,
10615 0x33, 0x8c, 0x1b, 0x9a, 0xac, 0x7c, 0x69, 0xf4, 0xf1, 0x62, 0xb7, 0xef,
10616 0xb7, 0x39, 0xc7, 0x5c, 0xf6, 0x03, 0x9a, 0xef, 0x1f, 0x7b, 0xe5, 0xfd,
10617 0x6c, 0x98, 0x4f, 0x45, 0xec, 0x21, 0xeb, 0x03, 0xfb, 0xea, 0x67, 0xbc,
10618 0x47, 0x29, 0x83, 0xa6, 0xe7, 0x80, 0x14, 0xfb, 0x41, 0x67, 0x24, 0x2f,
10619 0xfa, 0x7e, 0xf2, 0x11, 0xc3, 0x6b, 0x61, 0xb9, 0x37, 0x90, 0xee, 0x8f,
10620 0x91, 0x22, 0x00, 0x83, 0x44, 0xa6, 0x78, 0xca, 0xad, 0x0d, 0x86, 0x09,
10621 0x77, 0x85, 0x73, 0xb8, 0x1e, 0x90, 0x22, 0xb1, 0xf1, 0xd8, 0x84, 0xe0,
10622 0x9d, 0x85, 0xde, 0x1f, 0x09, 0xfc, 0x47, 0xec, 0xd9, 0x63, 0xfe, 0xac,
10623 0x77, 0x49, 0x9f, 0x69, 0xb1, 0xa9, 0x6d, 0x61, 0xa9, 0x68, 0x00, 0x5d,
10624 0x1f, 0x2b, 0x2d, 0x0a, 0x15, 0x1a, 0xa0, 0xdd, 0x0a, 0x52, 0xde, 0x9b,
10625 0x27, 0xed, 0x80, 0x59, 0x79, 0xe5, 0x4c, 0x9b, 0x37, 0xc5, 0x0c, 0xf3,
10626 0x69, 0xaf, 0x92, 0x7e, 0xb4, 0xee, 0x76, 0xeb, 0xda, 0xef, 0x6f, 0x79,
10627 0xbe, 0x84, 0xe4, 0x0e, 0x76, 0x16, 0x6a, 0x14, 0x76, 0x08, 0x38, 0x4a,
10628 0xb0, 0x2d, 0x14, 0x2c, 0x8d, 0xf9, 0x52, 0x38, 0xd3, 0x66, 0x65, 0xad,
10629 0x37, 0x31, 0xe7, 0xc2, 0xff, 0x6b, 0x79, 0xa8, 0x9e, 0x05, 0x1f, 0x19,
10630 0x42, 0x1f, 0x36, 0xc0, 0xf2, 0x61, 0x88, 0xa8, 0x68, 0x4a, 0xcc, 0xb8,
10631 0x49, 0xa8, 0x96, 0x39, 0xb9, 0xf8, 0xcd, 0xdc, 0x78, 0x84, 0x73, 0xb3,
10632 0xfa, 0x0f, 0x0d, 0xc7, 0x61, 0x7c, 0x72, 0xed, 0x4b, 0x3a, 0x36, 0x46,
10633 0x52, 0xd2, 0x89, 0xb1, 0x79, 0x2b, 0x44, 0x76, 0xc0, 0x26, 0x01, 0x34,
10634 0xee, 0x03, 0x6b, 0x44, 0x8d, 0xc9, 0xe8, 0xb4, 0x73, 0xf2, 0x8f, 0x6a,
10635 0xa9, 0x83, 0x85, 0x93, 0x5b, 0x38, 0xef, 0x3d, 0x30, 0x1c, 0x05, 0x77,
10636 0x4e, 0x31, 0x58, 0x43, 0x32, 0x68, 0xc1, 0x61, 0x9e, 0x94, 0x90, 0x0a,
10637 0x66, 0x18, 0x1e, 0x64, 0xe7, 0x33, 0x1f, 0xac, 0xad, 0x6e, 0x32, 0xeb,
10638 0x79, 0x96, 0x99, 0xb0, 0xb4, 0xd0, 0x5c, 0xc6, 0x20, 0xdf, 0x4f, 0xaa,
10639 0xf9, 0x47, 0x60, 0xcb, 0xe2, 0xfe, 0x23, 0x15, 0xee, 0x5c, 0x3a, 0xa1,
10640 0x68, 0xfa, 0x80, 0xa8, 0xc3, 0x88, 0x91, 0x8b, 0x39, 0xce, 0x88, 0x76,
10641 0xd8, 0x34, 0x67, 0xbf, 0x50, 0x9e, 0x3d, 0x48, 0x27, 0xa7, 0x32, 0xc4,
10642 0x41, 0xcb, 0xfe, 0x2c, 0x98, 0xf0, 0xfd, 0xf1, 0xa7, 0x12, 0x5f, 0xb3,
10643 0x21, 0xbe, 0x45, 0x7a, 0x7b, 0xf7, 0x34, 0xfe, 0x77, 0x14, 0xfd, 0x79,
10644 0x70, 0xfe, 0x2e, 0xca, 0x87, 0xd8, 0x3a, 0x51, 0x12, 0x06, 0x40, 0x64,
10645 0x90, 0xa8, 0x6f, 0xf6, 0x9a, 0x08, 0x29, 0x1b, 0x51, 0x20, 0xda, 0xcf,
10646 0x87, 0x41, 0xe4, 0xec, 0x82, 0x6f, 0x50, 0x2b, 0x60, 0x49, 0x6b, 0xe2,
10647 0x49, 0xb8, 0x55, 0x8b, 0x07, 0x96, 0xb8, 0x88, 0xef, 0xcb, 0xae, 0xf4,
10648 0x79, 0x53, 0x00, 0xc5, 0x98, 0x63, 0x22, 0xc6, 0x62, 0x36, 0x7d, 0x50,
10649 0x02, 0x79, 0xac, 0x4d, 0xab, 0x92, 0x75, 0x3b, 0x73, 0x2b, 0x29, 0x2b,
10650 0xe5, 0x43, 0x24, 0xb2, 0x27, 0x08, 0xfb, 0x5f, 0xec, 0x2b, 0x60, 0xdb,
10651 0x5a, 0x6c, 0x7f, 0x8e, 0x73, 0xea, 0x52, 0xfa, 0xcb, 0x23, 0xb6, 0x3a,
10652 0x67, 0x4a, 0x60, 0xa9, 0xcb, 0x7c, 0x9e, 0xc4, 0x40, 0x22, 0x8c, 0x2f,
10653 0xe9, 0x71, 0x73, 0x9b, 0x62, 0x11, 0xc5, 0xc9, 0x1d, 0x02, 0xb2, 0x72,
10654 0xc0, 0x72, 0xf1, 0x00, 0x89, 0xb0, 0xb9, 0x40, 0x4c, 0x00, 0x78, 0xa6,
10655 0x23, 0x08, 0xce, 0xf8, 0x9e, 0x88, 0x7d, 0x55, 0xe4, 0x8b, 0xb9, 0x4d,
10656 0xb6, 0xa6, 0x48, 0xc6, 0x03, 0xb3, 0x33, 0x67, 0x05, 0xcb, 0x32, 0x04,
10657 0x94, 0x96, 0xcc, 0x39, 0x2e, 0x2f, 0x11, 0x0d, 0x8f, 0x42, 0x3a, 0x73,
10658 0x3f, 0x91, 0xa7, 0xe9, 0x66, 0x64, 0x28, 0x17, 0x59, 0x3b, 0x62, 0x35,
10659 0x50, 0x98, 0x02, 0x85, 0x02, 0x18, 0x69, 0xfa, 0x68, 0xe5, 0x6b, 0x5d,
10660 0xbc, 0x1a, 0x46, 0xa4, 0x0b, 0x68, 0x52, 0xdc, 0xdb, 0x0e, 0x93, 0x23,
10661 0x83, 0x9d, 0xb8, 0x1b, 0xff, 0xa3, 0x68, 0xb7, 0x4d, 0xcf, 0xd1, 0x72,
10662 0x27, 0xce, 0x98, 0xc5, 0x6c, 0x79, 0xc3, 0xaa, 0x2d, 0xf3, 0xe2, 0x9a,
10663 0xc1, 0xe6, 0xbc, 0xda, 0xa7, 0xa3, 0x4f, 0x7c, 0x88, 0x3c, 0xfc, 0x5a,
10664 0xeb, 0x92, 0x2f, 0x44, 0x9e, 0xc2, 0x0d, 0xce, 0x49, 0x24, 0x11, 0xd2,
10665 0x68, 0x19, 0x13, 0x9e, 0x9d, 0xc1, 0xec, 0x65, 0xf1, 0x8f, 0x9f, 0x45,
10666 0x16, 0xc8, 0x97, 0x3d, 0x2d, 0x38, 0xbf, 0xc8, 0x1c, 0x22, 0x0a, 0xb3,
10667 0xf9, 0x80, 0xf8, 0x77, 0xcf, 0xc4, 0xfd, 0xad, 0xc0, 0xf1, 0xa4, 0x82,
10668 0x67, 0xb9, 0x2c, 0xb1, 0x6a, 0xc1, 0xa7, 0x24, 0x50, 0x94, 0x4d, 0x35,
10669 0x7d, 0x1f, 0xd3, 0xb9, 0xb3, 0xdb, 0x4e, 0x2f, 0x30, 0x0c, 0x4d, 0x70,
10670 0x12, 0x72, 0xa0, 0x72, 0xe1, 0x1f, 0xa6, 0xd5, 0xca, 0x07, 0x2c, 0xf2,
10671 0x1f, 0xa6, 0xf0, 0x48, 0x50, 0x45, 0x29, 0x8a, 0x52, 0x83, 0x9d, 0xe9,
10672 0xa9, 0x38, 0x90, 0xa8, 0xca, 0xe9, 0xc5, 0xcd, 0x9e, 0x9f, 0x09, 0x13,
10673 0xf9, 0xae, 0xd6, 0x96, 0x37, 0x20, 0xaf, 0x80, 0xbe, 0x01, 0xcf, 0x97,
10674 0x3e, 0x72, 0xd2, 0xef, 0x55, 0x5b, 0x16, 0x09, 0xa9, 0xf3, 0x7a, 0xe0,
10675 0x0d, 0x9c, 0x8e, 0x9f, 0x5e, 0x12, 0x1e, 0x23, 0xe7, 0xb9, 0xa7, 0x3f,
10676 0x2d, 0xbf, 0x7c, 0xa1, 0xd9, 0x64, 0x0d, 0x35, 0x5d, 0xa5, 0xfb, 0x03,
10677 0xa4, 0x93, 0xe4, 0xda, 0x9a, 0x66, 0xb4, 0x13, 0xe0, 0x02, 0x78, 0x41,
10678 0xdd, 0x21, 0x25, 0xaa, 0xb1, 0xe6, 0x7d, 0xc1, 0x80, 0x8a, 0xcc, 0x17,
10679 0xd4, 0xea, 0x48, 0xe6, 0x52, 0x3b, 0x20, 0x1e, 0x98, 0x45, 0x68, 0x53,
10680 0xe2, 0x13, 0x4d, 0xb1, 0x93, 0xd9, 0x94, 0xf2, 0x54, 0xef, 0xd4, 0xf2,
10681 0x09, 0xf0, 0xc0, 0xa1, 0x23, 0x66, 0xcb, 0x3a, 0xe6, 0x60, 0xc5, 0x54,
10682 0x54, 0x00, 0x5b, 0x88, 0x84, 0x5f, 0x21, 0x3d, 0xdc, 0x10, 0x2f, 0x94,
10683 0xa0, 0x83, 0x42, 0xc8, 0x15, 0xa1, 0x23, 0x11, 0xbb, 0x16, 0x2d, 0x4a,
10684 0x0d, 0x22, 0x9f, 0x0e, 0x48, 0xdb, 0x27, 0x30, 0x1d, 0xc9, 0xcb, 0x8d,
10685 0x56, 0xd0, 0x14, 0x77, 0x5b, 0x16, 0x41, 0x67, 0x57, 0xba, 0x8b, 0x60,
10686 0x3f, 0x64, 0x41, 0x85, 0x6a, 0xf2, 0x24, 0xc7, 0x7a, 0x45, 0xcb, 0x1b,
10687 0x8f, 0x64, 0x85, 0xe6, 0x33, 0x81, 0x75, 0x49, 0x89, 0x76, 0xd9, 0x8f,
10688 0xf2, 0xd6, 0x2c, 0x6c, 0x8c, 0x5a, 0xe4, 0x64, 0x53, 0x50, 0x87, 0xf9,
10689 0x6b, 0x6c, 0x43, 0xca, 0xd9, 0x70, 0x0f, 0xd0, 0x4d, 0x44, 0xb2, 0x58,
10690 0xd6, 0x78, 0xc2, 0xc5, 0x11, 0x15, 0x63, 0xfe, 0x9c, 0x14, 0xb9, 0xe8,
10691 0xf4, 0x86, 0x6c, 0x4f, 0xd5, 0xb0, 0x49, 0xe4, 0x7e, 0x2c, 0xcb, 0x29,
10692 0x8a, 0xd1, 0x74, 0x72, 0x0f, 0x44, 0x2c, 0x5b, 0x31, 0xc1, 0xdd, 0x37,
10693 0xe5, 0xeb, 0x74, 0x5b, 0x3b, 0x91, 0x9e, 0xb5, 0x92, 0xdc, 0xc2, 0xf3,
10694 0x04, 0xb3, 0xd6, 0xb9, 0x55, 0xf2, 0x43, 0x32, 0x0a, 0x95, 0x75, 0x7a,
10695 0xbc, 0xcd, 0x3f, 0x93, 0x33, 0xc5, 0x98, 0x42, 0xfd, 0x68, 0x4b, 0x7c,
10696 0xe7, 0x0f, 0x12, 0xae, 0x36, 0x12, 0x0e, 0x62, 0x53, 0x2e, 0xeb, 0xbb,
10697 0x79, 0x3f, 0xb4, 0x9b, 0x95, 0x5f, 0x3e, 0x92, 0x07, 0x5e, 0x92, 0x4b,
10698 0xa5, 0x44, 0xd8, 0x6c, 0x0d, 0x1c, 0x95, 0x36, 0xb4, 0x9a, 0xde, 0xbd,
10699 0x9e, 0x76, 0xd8, 0x79, 0x50, 0xb5, 0x65, 0xe6, 0x8b, 0x1c, 0xc6, 0x8c,
10700 0xd6, 0x71, 0x21, 0xb9, 0xbe, 0x0d, 0x1d, 0x90, 0x77, 0x3d, 0xfa, 0x0e,
10701 0x53, 0xa5, 0xcb, 0xe5, 0xc3, 0x81, 0x9c, 0xdb, 0xe8, 0xaa, 0xcd, 0xaa,
10702 0x86, 0xa8, 0x24, 0xfb, 0x22, 0xa7, 0x71, 0xab, 0xbd, 0x11, 0x26, 0x9e,
10703 0x50, 0x85, 0x4b, 0xfc, 0xd0, 0xce, 0x97, 0x16, 0x8d, 0xb7, 0x94, 0xd2,
10704 0x4b, 0x9e, 0xbc, 0x2b, 0x6a, 0xac, 0x91, 0xf7, 0x7d, 0x3a, 0x21, 0x90,
10705 0x74, 0x8d, 0xf9, 0xdf, 0xf3, 0x47, 0x07, 0x46, 0x63, 0x32, 0x49, 0x9f,
10706 0x6a, 0x97, 0xae, 0xc2, 0xad, 0xcf, 0x82, 0x8b, 0x83, 0x26, 0x81, 0x39,
10707 0x2c, 0x2f, 0xdd, 0x0a, 0x7c, 0xff, 0xd0, 0x74, 0x24, 0x1e, 0xec, 0xbc,
10708 0x55, 0x4e, 0x9a, 0xb6, 0xc3, 0x31, 0x7c, 0xfe, 0xc9, 0xac, 0xf4, 0x00,
10709 0xbc, 0xb4, 0xb6, 0x4b, 0xdb, 0x01, 0xf8, 0x2b, 0x9d, 0x7f, 0x2a, 0xea,
10710 0x45, 0x71, 0xfc, 0x2d, 0x94, 0x46, 0x23, 0x85, 0xd6, 0xfd, 0x4e, 0xca,
10711 0x1d, 0xa3, 0xb4, 0x06, 0x0a, 0x46, 0xa4, 0x7e, 0xd2, 0xe5, 0x0f, 0xe4,
10712 0x40, 0xf9, 0x78, 0x1d, 0x1b, 0xee, 0x50, 0x3a, 0x26, 0x10, 0x7a, 0x8a,
10713 0x3e, 0x18, 0x13, 0x33, 0xda, 0x78, 0xcc, 0xa1, 0x82, 0x6f, 0xe2, 0xaa,
10714 0x73, 0x5c, 0x88, 0xf8, 0xe0, 0xe6, 0xc6, 0x7e, 0x36, 0x1f, 0xc7, 0x30,
10715 0x7d, 0x2a, 0xa2, 0x66, 0xfe, 0xa9, 0xf2, 0x0a, 0x7d, 0xa3, 0xf1, 0x0c,
10716 0x08, 0x43, 0xf2, 0x8c, 0x7b, 0x30, 0xd9, 0xd3, 0x42, 0xaf, 0x7f, 0x50,
10717 0x5f, 0x74, 0x3b, 0x49, 0x51, 0xfb, 0x1e, 0x59, 0x72, 0xac, 0x41, 0xde,
10718 0xe4, 0xae, 0x50, 0xba, 0x0a, 0x8f, 0x3c, 0xf9, 0x0b, 0x8c, 0x99, 0x51,
10719 0xba, 0x18, 0xc3, 0x7e, 0x89, 0x85, 0x13, 0x7c, 0x2d, 0x4d, 0xb0, 0x94,
10720 0x14, 0x25, 0x7a, 0xab, 0xe6, 0x4b, 0x29, 0x18, 0x95, 0x79, 0x23, 0x1a,
10721 0xf2, 0x81, 0x79, 0xb4, 0x3e, 0x51, 0xa5, 0xe1, 0xb2, 0x27, 0x5a, 0x32,
10722 0x92, 0x5f, 0x51, 0xbb, 0x24, 0x2e, 0x7f, 0xa2, 0x2b, 0x6b, 0xc3, 0x8f,
10723 0x96, 0x32, 0xf8, 0x28, 0xb8, 0x86, 0x74, 0xfc, 0x36, 0x1f, 0xaf, 0x25,
10724 0xe9, 0xff, 0xb6, 0x6b, 0x08, 0x07, 0xe6, 0xd8, 0xf2, 0x26, 0xbe, 0x56,
10725 0x8c, 0x59, 0xcb, 0x57, 0x76, 0xb9, 0xf8, 0x1a, 0xc7, 0x97, 0x05, 0x07,
10726 0x62, 0xb9, 0x28, 0x38, 0x7d, 0xf2, 0x61, 0x25, 0x4c, 0x43, 0x4e, 0x66,
10727 0x3c, 0xec, 0x3e, 0x86, 0x44, 0x9a, 0x53, 0xb2, 0x11, 0x66, 0xd4, 0xb5,
10728 0xcc, 0xca, 0x50, 0xdb, 0x9d, 0x95, 0x7c, 0xd8, 0x9c, 0x93, 0x9d, 0xd4,
10729 0x8a, 0xb3, 0xe2, 0xf1, 0x1e, 0x33, 0xa7, 0xd5, 0x95, 0x95, 0x86, 0xb6,
10730 0xd2, 0xd4, 0x4f, 0x6a, 0x0a, 0xc8, 0x23, 0xbc, 0x6e, 0x0f, 0xe9, 0x27,
10731 0x35, 0x15, 0xe4, 0x61, 0x41, 0xe6, 0xe8, 0x27, 0x9f, 0xf9, 0xb1, 0x2c,
10732 0xec, 0xdb, 0xab, 0xff, 0x7b, 0x4d, 0xf1, 0x33, 0x3e, 0xee, 0xe7, 0x79,
10733 0x8a, 0x1b, 0x2d, 0xeb, 0x8a, 0x1f, 0xd1, 0x86, 0x28, 0x9d, 0x78, 0xca,
10734 0xf2, 0x87, 0xb7, 0x04, 0x5b, 0x48, 0xb3, 0xac, 0x4b, 0xd3, 0x67, 0x21,
10735 0x9d, 0x5b, 0x42, 0x9a, 0xb5, 0xc9, 0xd1, 0xdc, 0xda, 0xa7, 0x66, 0x14,
10736 0xe2, 0x47, 0x4d, 0xce, 0xcc, 0x2e, 0x10, 0x0b, 0xea, 0xd7, 0xf7, 0xea,
10737 0xf8, 0x21, 0x15, 0x9e, 0x6a, 0xc8, 0x39, 0x80, 0x64, 0xaa, 0xa8, 0x9d,
10738 0x16, 0xaf, 0xd2, 0x18, 0x18, 0x53, 0x4f, 0x22, 0x0e, 0xd2, 0x3e, 0xe0,
10739 0xb9, 0xa0, 0x1b, 0xb4, 0xde, 0x95, 0xa1, 0xb2, 0xa2, 0x87, 0x49, 0x86,
10740 0x47, 0xde, 0xc7, 0x78, 0x3e, 0x97, 0x43, 0xfd, 0x11, 0x9c, 0xcb, 0x0d,
10741 0xad, 0x10, 0x97, 0x89, 0x76, 0x03, 0xf7, 0x0e, 0xab, 0xf2, 0xfc, 0x93,
10742 0x8d, 0x40, 0x91, 0x95, 0x16, 0x2d, 0xb2, 0x07, 0x39, 0x77, 0xaa, 0xdc,
10743 0xbf, 0x39, 0x18, 0xbc, 0xd9, 0x4c, 0xaa, 0x91, 0x2a, 0x17, 0x9b, 0xb6,
10744 0x62, 0xc8, 0x02, 0x1b, 0x3d, 0x30, 0x1c, 0x29, 0x38, 0x08, 0x5f, 0x40,
10745 0x3c, 0x6c, 0xe2, 0xd9, 0xfd, 0xe0, 0x2b, 0xd7, 0x3d, 0x48, 0xbf, 0xc1,
10746 0x4b, 0x61, 0xeb, 0x57, 0x7d, 0x48, 0xdd, 0x7f, 0x4c, 0x53, 0x5c, 0xe7,
10747 0x36, 0x7d, 0x77, 0xf7, 0x1b, 0x0f, 0x6f, 0xc7, 0x07, 0x5e, 0x05, 0x7d,
10748 0xa0, 0x98, 0x91, 0xbf, 0x98, 0xff, 0x2e, 0xab, 0x47, 0x6e, 0x79, 0xce,
10749 0x68, 0xa5, 0x68, 0xdb, 0xc3, 0x13, 0x9e, 0xa3, 0xe3, 0x8f, 0xb5, 0xb8,
10750 0x87, 0x67, 0xfc, 0xe8, 0x09, 0x3f, 0x6e, 0xc6, 0x5a, 0x1b, 0x8a, 0x56,
10751 0x89, 0x51, 0x25, 0x71, 0xce, 0x14, 0x84, 0x96, 0x5e, 0xb4, 0x58, 0x0b,
10752 0x70, 0xe5, 0x27, 0x2d, 0x06, 0x4f, 0x66, 0x4d, 0xf1, 0x8c, 0xa9, 0xb2,
10753 0x35, 0xe9, 0x99, 0x41, 0xa5, 0x42, 0xb0, 0x94, 0x62, 0xc2, 0xab, 0xfc,
10754 0xc1, 0xd9, 0xc5, 0xd2, 0x19, 0x11, 0x65, 0xb9, 0x13, 0x62, 0x1f, 0x29,
10755 0xff, 0x38, 0x50, 0x0c, 0xc0, 0x3a, 0x0f, 0x0d, 0x87, 0xaa, 0x2b, 0xe3,
10756 0x8e, 0xdc, 0x60, 0xb2, 0x71, 0xcb, 0x5a, 0x18, 0x0b, 0xeb, 0x21, 0x62,
10757 0x63, 0x06, 0xf2, 0x74, 0x6a, 0x2c, 0xb2, 0x07, 0xcf, 0x11, 0x38, 0x83,
10758 0xe6, 0x4a, 0x1e, 0xe4, 0x0b, 0x62, 0x13, 0x66, 0xd3, 0xae, 0x6e, 0x8c,
10759 0x6e, 0xf4, 0x68, 0x56, 0xe0, 0x96, 0x83, 0x42, 0x5a, 0xdb, 0x3e, 0x91,
10760 0xd6, 0x12, 0xf3, 0x31, 0xf9, 0xcb, 0x58, 0x5c, 0x89, 0xb7, 0x71, 0xf9,
10761 0xd0, 0xec, 0xc8, 0x8f, 0xd4, 0x6f, 0x52, 0x81, 0x73, 0xe4, 0x6b, 0x6a,
10762 0x00, 0x65, 0xfe, 0x3f, 0xea, 0x0c, 0x4e, 0xa5, 0xc1, 0x86, 0x09, 0x67,
10763 0x38, 0xc4, 0x2a, 0xc3, 0xe4, 0xa7, 0x79, 0xfc, 0xee, 0x9b, 0x81, 0xca,
10764 0x29, 0x50, 0x3f, 0x0d, 0xee, 0x84, 0x15, 0xf4, 0xca, 0x26, 0xf6, 0x77,
10765 0x73, 0xbb, 0x6b, 0xfd, 0xd3, 0xb4, 0xcc, 0x1f, 0xe1, 0xa3, 0x23, 0x82,
10766 0xf2, 0x4b, 0x71, 0xb9, 0x2a, 0x56, 0xea, 0x70, 0x2a, 0x05, 0xd8, 0x68,
10767 0xb8, 0x11, 0x38, 0x63, 0xe4, 0x11, 0x6e, 0x7d, 0x58, 0x91, 0xf0, 0x02,
10768 0x88, 0xa2, 0x5e, 0x33, 0x19, 0x7c, 0x2a, 0x2b, 0xe8, 0x1c, 0x17, 0x98,
10769 0x70, 0x29, 0xdb, 0x63, 0x58, 0x02, 0x2d, 0xd6, 0xc0, 0xce, 0x63, 0x4f,
10770 0x8e, 0x67, 0x8a, 0x5a, 0x93, 0x38, 0xa1, 0x9c, 0x91, 0x47, 0x04, 0xc1,
10771 0x61, 0x24, 0x30, 0xb0, 0xbd, 0x91, 0xd2, 0x6c, 0x9c, 0xdc, 0xd5, 0xec,
10772 0x7c, 0x07, 0x44, 0xb0, 0x1b, 0x6d, 0xf5, 0xe8, 0x82, 0x07, 0x6d, 0x8f,
10773 0x57, 0x49, 0x8f, 0x40, 0xb9, 0x18, 0x10, 0x10, 0x93, 0x49, 0x63, 0x01,
10774 0xbe, 0x22, 0xd0, 0x2e, 0x79, 0x8c, 0x3e, 0x27, 0x7a, 0x68, 0xd3, 0x51,
10775 0x26, 0x53, 0x91, 0x82, 0x64, 0x8d, 0x9c, 0x61, 0x1f, 0xf7, 0x96, 0x36,
10776 0xe0, 0xde, 0x4e, 0x2f, 0x22, 0xb7, 0xad, 0x75, 0x27, 0xc7, 0x06, 0xaa,
10777 0xc0, 0x0f, 0xac, 0x94, 0x8d, 0xa1, 0x63, 0x32, 0x12, 0xa3, 0x8f, 0x62,
10778 0x10, 0x5d, 0x33, 0xbc, 0xd4, 0x3f, 0xa6, 0x0e, 0xb5, 0x83, 0xe5, 0xc3,
10779 0xb5, 0xd9, 0x53, 0xff, 0xda, 0x52, 0xd0, 0xdb, 0x68, 0xed, 0x8f, 0xff,
10780 0x30, 0xee, 0x90, 0x7f, 0xfe, 0x90, 0xad, 0xad, 0x56, 0x3b, 0xe6, 0xe3,
10781 0x7c, 0x06, 0x21, 0xb5, 0xee, 0x62, 0x90, 0x5e, 0xc1, 0xf2, 0xf7, 0x32,
10782 0x26, 0x75, 0xc0, 0xe8, 0xd7, 0x14, 0x43, 0xc3, 0x73, 0xb7, 0xde, 0x4a,
10783 0xa0, 0xaa, 0x21, 0xe2, 0x97, 0x55, 0xa0, 0xd6, 0x1f, 0x4c, 0x22, 0xcc,
10784 0x26, 0xa4, 0x33, 0x7b, 0x96, 0x54, 0x31, 0x43, 0xb8, 0x65, 0x5c, 0x54,
10785 0x31, 0xd6, 0x1c, 0x4d, 0x60, 0x3f, 0x98, 0x4a, 0x0a, 0xea, 0x34, 0x15,
10786 0xf7, 0xd8, 0xe6, 0x64, 0x81, 0x72, 0x46, 0xc1, 0xd6, 0xa2, 0xa7, 0x19,
10787 0x9f, 0xfb, 0xdd, 0xf8, 0xaa, 0xcf, 0xdc, 0xd9, 0xa7, 0x62, 0x31, 0x1d,
10788 0x0d, 0xdf, 0xbe, 0x4b, 0x72, 0x1d, 0xbd, 0x00, 0xa1, 0xe1, 0x24, 0x91,
10789 0x26, 0xd2, 0x36, 0x63, 0xf5, 0x71, 0x67, 0x24, 0x66, 0x28, 0x9f, 0xc6,
10790 0x8c, 0xd9, 0x37, 0x68, 0x5f, 0xc1, 0xcc, 0x43, 0x45, 0x4b, 0x30, 0x25,
10791 0x8a, 0x9a, 0xe3, 0x6a, 0x5e, 0xd9, 0xbe, 0x2b, 0xe6, 0xbc, 0xdd, 0xc6,
10792 0x45, 0xc6, 0xd9, 0xb9, 0x4d, 0xe8, 0x80, 0xb2, 0x5c, 0xac, 0x8e, 0x38,
10793 0x4b, 0x8b, 0x1a, 0xf5, 0x78, 0x39, 0xd0, 0xb2, 0x5e, 0x89, 0x73, 0x9a,
10794 0x7d, 0x54, 0xbb, 0x5e, 0xc6, 0x6a, 0x08, 0x11, 0xf9, 0xf5, 0xe9, 0xd9,
10795 0x89, 0x29, 0xea, 0xfa, 0x7f, 0x37, 0xfb, 0x38, 0x95, 0x62, 0xe4, 0x95,
10796 0x0f, 0x31, 0xf0, 0x96, 0x83, 0xa2, 0xa6, 0xc8, 0x5c, 0xfa, 0x51, 0x0d,
10797 0x92, 0xeb, 0xe4, 0xdd, 0x37, 0xa7, 0xef, 0xcf, 0xdf, 0x61, 0x02, 0xc6,
10798 0x67, 0x6e, 0xa6, 0x51, 0xa0, 0x91, 0x7c, 0xe9, 0xe7, 0x99, 0x6a, 0x32,
10799 0x81, 0x64, 0x38, 0x14, 0x11, 0x2c, 0x82, 0xfc, 0xd5, 0x77, 0x87, 0x73,
10800 0x2e, 0xd2, 0x20, 0x2f, 0xe6, 0xc9, 0xcf, 0xd1, 0xa7, 0x3a, 0xc6, 0xc0,
10801 0x7d, 0x9f, 0xc3, 0xc2, 0xa4, 0xee, 0x53, 0x06, 0x19, 0xf2, 0x2e, 0x26,
10802 0x14, 0x50, 0x2d, 0x24, 0xc8, 0x2a, 0x63, 0x76, 0x69, 0x6a, 0x8f, 0x8d,
10803 0xd0, 0xd6, 0x26, 0x61, 0x17, 0xf2, 0x03, 0xa3, 0x44, 0x65, 0xc1, 0x77,
10804 0xd1, 0xde, 0x28, 0xa4, 0x33, 0xd2, 0x43, 0x09, 0xba, 0xd0, 0x88, 0x6d,
10805 0x16, 0xa5, 0xae, 0xbc, 0x76, 0x9b, 0x26, 0xf2, 0x1d, 0xcd, 0x3c, 0x1b,
10806 0xe7, 0x0d, 0xbe, 0x57, 0xc7, 0x28, 0x70, 0xc4, 0x8f, 0x87, 0x68, 0xcd,
10807 0x7c, 0xf1, 0xfd, 0x01, 0xb2, 0xe7, 0x8f, 0x7e, 0xe7, 0xb1, 0xd2, 0x99,
10808 0x84, 0x1c, 0xe2, 0x0e, 0x36, 0x0d, 0x6e, 0x28, 0x43, 0x4a, 0x8a, 0xd8,
10809 0x7c, 0xbc, 0x78, 0x7f, 0xfe, 0xdd, 0xdf, 0x7e, 0xe5, 0x47, 0x38, 0xd9,
10810 0xef, 0xdf, 0x63, 0xd9, 0x97, 0x0e, 0xfe, 0xe3, 0x93, 0x9e, 0xb6, 0xf4,
10811 0x71, 0xf5, 0xf1, 0xbb, 0x92, 0xf3, 0x27, 0x77, 0x78, 0x19, 0x7c, 0x84,
10812 0x74, 0x47, 0x29, 0x85, 0x06, 0xf7, 0xce, 0xfa, 0xad, 0x4c, 0x29, 0x0a,
10813 0xab, 0x4c, 0x65, 0x03, 0x22, 0xd5, 0x4f, 0xaa, 0xa5, 0xb3, 0x94, 0x00,
10814 0xc7, 0x6c, 0xbd, 0x82, 0x42, 0xf0, 0x21, 0xcc, 0x9e, 0x00, 0xf1, 0x51,
10815 0x15, 0x9c, 0x21, 0xc8, 0xd1, 0xd9, 0xd9, 0xd3, 0xa9, 0x20, 0x64, 0x68,
10816 0xd0, 0x01, 0x0e, 0xd2, 0x2c, 0x37, 0x6f, 0xd4, 0x33, 0x56, 0x8c, 0xf2,
10817 0xff, 0xb2, 0x0e, 0x70, 0xef, 0xce, 0x65, 0x36, 0x87, 0x64, 0x3e, 0xf5,
10818 0xca, 0x04, 0x8c, 0x1e, 0xca, 0xa6, 0xd1, 0x6e, 0xab, 0x38, 0xb1, 0x72,
10819 0x93, 0xcb, 0xaf, 0xca, 0x2f, 0xbc, 0x3c, 0x70, 0x7b, 0x91, 0xe4, 0x06,
10820 0x11, 0x41, 0x05, 0x12, 0x86, 0xea, 0xce, 0x73, 0x83, 0x34, 0x8d, 0xe9,
10821 0xe7, 0x5c, 0x0b, 0x46, 0xd2, 0x18, 0x26, 0xe2, 0xc3, 0x81, 0x22, 0x4c,
10822 0x17, 0x08, 0xe3, 0x22, 0x2d, 0x3f, 0x51, 0x4d, 0x3e, 0x6e, 0x4f, 0xd2,
10823 0xba, 0x15, 0xed, 0x10, 0x8d, 0x22, 0x9a, 0x93, 0x20, 0xb8, 0x5a, 0x48,
10824 0x96, 0xb4, 0x0c, 0xcd, 0x0e, 0x15, 0x93, 0x98, 0xd5, 0x15, 0x0c, 0x19,
10825 0x70, 0x34, 0x27, 0xae, 0x01, 0x84, 0x48, 0xd3, 0x5a, 0x4e, 0xa6, 0x2f,
10826 0x0d, 0x2a, 0x63, 0xa8, 0x17, 0x7b, 0x57, 0x11, 0xff, 0xf0, 0x02, 0x7e,
10827 0x74, 0x55, 0x26, 0xd3, 0x49, 0xb8, 0x0e, 0xbe, 0x26, 0x2d, 0x9c, 0xf0,
10828 0x9c, 0x40, 0x22, 0x96, 0x5a, 0xde, 0x6e, 0x39, 0x3c, 0x41, 0xd4, 0x21,
10829 0x0c, 0x04, 0xfa, 0x6e, 0x58, 0x61, 0x45, 0x27, 0x71, 0xb0, 0x26, 0x39,
10830 0x18, 0x20, 0x19, 0x1e, 0xaa, 0x4b, 0xfa, 0x39, 0xdb, 0x42, 0x04, 0x0a,
10831 0xda, 0x7c, 0x15, 0x85, 0x21, 0x11, 0x8f, 0x6d, 0xef, 0x8e, 0x05, 0x0e,
10832 0x70, 0x22, 0xaf, 0x8f, 0x0b, 0x55, 0xa2, 0xdf, 0x3c, 0x62, 0x38, 0x8b,
10833 0x53, 0xc8, 0xf6, 0x04, 0x16, 0xaf, 0x55, 0x02, 0xa3, 0xc8, 0xb7, 0xe3,
10834 0x62, 0xf2, 0x06, 0x73, 0xa6, 0xd9, 0xf3, 0x9b, 0xa4, 0x54, 0xf5, 0x29,
10835 0x98, 0x69, 0xb6, 0xce, 0x52, 0xbe, 0xc0, 0xa8, 0x52, 0x2f, 0x94, 0x07,
10836 0x5c, 0xbb, 0xd8, 0xcc, 0x93, 0x52, 0x55, 0x79, 0x96, 0xac, 0xe0, 0x2a,
10837 0x24, 0x7a, 0xd2, 0x52, 0xb4, 0xe8, 0xf6, 0x21, 0x76, 0x98, 0xde, 0xa0,
10838 0xcb, 0x91, 0x57, 0x51, 0x01, 0x1e, 0x9c, 0x58, 0x1c, 0x06, 0x27, 0x23,
10839 0x3f, 0xd0, 0x42, 0xd1, 0x4a, 0x83, 0x53, 0x41, 0x35, 0x8b, 0xa6, 0x9a,
10840 0x4a, 0xf6, 0x10, 0x21, 0xb1, 0x0c, 0x15, 0x90, 0x4a, 0xc3, 0xcd, 0x70,
10841 0xcc, 0x4d, 0xf3, 0x32, 0xd4, 0xa5, 0x68, 0x88, 0xa5, 0x43, 0x20, 0x31,
10842 0xc2, 0x45, 0x92, 0x76, 0x46, 0x12, 0x2a, 0x95, 0xa4, 0x44, 0xe9, 0xcc,
10843 0x4e, 0x7b, 0x84, 0x6b, 0x3a, 0x30, 0xed, 0x30, 0x77, 0xc1, 0xa3, 0xbc,
10844 0xdc, 0x07, 0x8c, 0x5e, 0xd2, 0xd6, 0xc2, 0x46, 0xce, 0x26, 0xf3, 0x51,
10845 0x2a, 0x29, 0xc4, 0xb7, 0xe2, 0xda, 0x2f, 0x07, 0x51, 0xe7, 0xe0, 0x60,
10846 0xbb, 0x23, 0x0e, 0xdb, 0x26, 0x83, 0x13, 0x70, 0x4c, 0x89, 0x97, 0x6c,
10847 0xe1, 0x45, 0x9c, 0xe7, 0x9f, 0x60, 0xd4, 0x96, 0xc4, 0x08, 0x3d, 0xc8,
10848 0x11, 0xa3, 0x17, 0x17, 0xaf, 0x8e, 0x2e, 0x8f, 0xa2, 0x43, 0x60, 0xab,
10849 0x2f, 0x7c, 0xa0, 0x2f, 0x83, 0xa6, 0x49, 0xaa, 0xaf, 0xd9, 0x78, 0x6a,
10850 0x03, 0x50, 0xa4, 0xbd, 0x2a, 0xee, 0xc5, 0x7b, 0x3b, 0xc1, 0x52, 0x3f,
10851 0xc5, 0x37, 0xf1, 0xa0, 0xb4, 0x0c, 0x6a, 0xb9, 0x60, 0x87, 0x23, 0x6b,
10852 0xa4, 0x33, 0x44, 0xde, 0xc1, 0x8b, 0xed, 0xe0, 0xb1, 0x24, 0x9b, 0x2f,
10853 0xb2, 0x9a, 0x84, 0x3d, 0x3e, 0x3f, 0xfb, 0xf0, 0xf6, 0xdd, 0x20, 0x3a,
10854 0x44, 0x24, 0x57, 0x72, 0x9d, 0xdc, 0xa6, 0x63, 0x1f, 0x9c, 0x5f, 0x04,
10855 0x62, 0x37, 0x6a, 0x00, 0xc3, 0x5b, 0x9b, 0xd2, 0xd4, 0x85, 0x97, 0x35,
10856 0x3b, 0x25, 0x8a, 0x43, 0xe4, 0xac, 0x3f, 0x4c, 0x5e, 0x18, 0x63, 0x37,
10857 0x02, 0x20, 0x8e, 0x76, 0x1d, 0x70, 0xf8, 0x15, 0xb2, 0x40, 0x6f, 0x18,
10858 0x17, 0xd2, 0xef, 0x1e, 0x73, 0x53, 0x42, 0x60, 0xb4, 0xa4, 0x13, 0xe3,
10859 0xec, 0x1c, 0x84, 0x77, 0x2c, 0x53, 0x43, 0xda, 0x5d, 0x2d, 0x18, 0x4b,
10860 0x0d, 0xd9, 0x52, 0xba, 0x28, 0x91, 0x8c, 0xbd, 0xad, 0x35, 0x20, 0x39,
10861 0x86, 0xfd, 0xf5, 0xf1, 0xf8, 0xe8, 0xe3, 0x57, 0x1f, 0xde, 0xbd, 0x3a,
10862 0x3b, 0x09, 0x43, 0xef, 0x03, 0x0d, 0xe8, 0x21, 0x81, 0xd7, 0x43, 0x8d,
10863 0x33, 0x46, 0xcb, 0x84, 0xb3, 0x2f, 0x1b, 0xe3, 0xbe, 0x39, 0x7f, 0x7b,
10864 0x12, 0x64, 0x05, 0x4b, 0xd5, 0xb4, 0x8c, 0x6c, 0x06, 0xa8, 0x5d, 0x34,
10865 0x7a, 0x1f, 0x38, 0x1c, 0x46, 0x9f, 0xca, 0x10, 0x57, 0x78, 0xed, 0xc9,
10866 0x4b, 0x5e, 0xf4, 0x3a, 0x4f, 0x18, 0xea, 0xa4, 0xa4, 0x2a, 0x57, 0x69,
10867 0xb6, 0x60, 0x48, 0x6e, 0x1e, 0x39, 0x8a, 0xbe, 0x7b, 0xf5, 0xf5, 0xc7,
10868 0xe3, 0xf3, 0x77, 0xcd, 0xed, 0xfa, 0xfa, 0xf4, 0x6b, 0x9a, 0x7a, 0xe3,
10869 0x6d, 0x06, 0x83, 0xb3, 0x8f, 0x5f, 0x1d, 0x1d, 0xff, 0xe5, 0xe4, 0xdd,
10870 0xab, 0xe8, 0xd0, 0x29, 0x87, 0x0d, 0xbd, 0x1c, 0x0b, 0xc6, 0x25, 0x68,
10871 0x02, 0x1d, 0xad, 0xc4, 0xed, 0x34, 0xf0, 0xc4, 0xd3, 0xe6, 0xe1, 0x7b,
10872 0xad, 0x83, 0x60, 0x79, 0xbd, 0x3b, 0x04, 0x95, 0xfb, 0x53, 0xb1, 0x31,
10873 0xda, 0xc8, 0xce, 0x84, 0x4c, 0xe2, 0xc9, 0x32, 0x5c, 0x27, 0x87, 0xd6,
10874 0xa2, 0xf0, 0x27, 0xc6, 0x41, 0x4f, 0x3a, 0xbc, 0x14, 0xbb, 0x34, 0x8b,
10875 0x5b, 0x3c, 0xa4, 0x42, 0xe3, 0x8b, 0x95, 0xa7, 0xab, 0xfa, 0x53, 0x6b,
10876 0x92, 0x8e, 0xce, 0xd7, 0x4f, 0x04, 0x54, 0x27, 0xc0, 0x79, 0x94, 0x32,
10877 0xe5, 0xe3, 0xe3, 0x71, 0x52, 0xa8, 0x00, 0xf4, 0xc5, 0xf6, 0xbd, 0xdd,
10878 0xfd, 0x61, 0x81, 0x9b, 0x59, 0x3f, 0xac, 0xe2, 0x7b, 0x73, 0xfa, 0x86,
10879 0xf1, 0x8b, 0x83, 0x55, 0xb2, 0x3a, 0x5d, 0x3e, 0x29, 0xd6, 0xf1, 0x9d,
10880 0x7b, 0xce, 0x3b, 0x6f, 0x1c, 0xe0, 0xa1, 0x11, 0x17, 0x65, 0x39, 0x05,
10881 0x7a, 0x5e, 0x65, 0x8b, 0x6a, 0x8a, 0xe7, 0xc1, 0x55, 0xf9, 0x29, 0xf5,
10882 0x2a, 0x5a, 0x40, 0x14, 0x8c, 0xe9, 0xeb, 0xac, 0x84, 0x1f, 0xf9, 0x1c,
10883 0xc6, 0xc0, 0xbb, 0x8a, 0x45, 0x49, 0x9f, 0x96, 0x20, 0x22, 0xb2, 0x2c,
10884 0x21, 0xf4, 0x64, 0x2c, 0x67, 0x65, 0xdf, 0x38, 0x77, 0xbb, 0xbe, 0xcd,
10885 0xa7, 0x5e, 0x6d, 0x30, 0xdc, 0x6c, 0x26, 0xbc, 0x6c, 0x0b, 0x11, 0x6f,
10886 0xd7, 0x9a, 0x26, 0xa8, 0xd0, 0x64, 0x4d, 0x68, 0x96, 0xd4, 0x3a, 0x49,
10887 0xdc, 0x4a, 0xc3, 0x6f, 0xa6, 0x70, 0x53, 0x92, 0x90, 0x4b, 0xb1, 0x1f,
10888 0x9d, 0x21, 0x6a, 0x85, 0x14, 0x05, 0x18, 0x70, 0x23, 0x09, 0xe4, 0xb1,
10889 0xd1, 0x29, 0x26, 0x69, 0xdf, 0xd9, 0xe2, 0x7e, 0xd1, 0x91, 0xec, 0x2c,
10890 0xdd, 0x49, 0xec, 0x4d, 0x62, 0x18, 0x54, 0xb2, 0x04, 0xcd, 0xfb, 0xfd,
10891 0xf5, 0xec, 0xfc, 0xeb, 0x57, 0xa7, 0xef, 0xe9, 0x15, 0x9d, 0x26, 0x14,
10892 0x81, 0xb7, 0x0d, 0xe1, 0x3f, 0xd4, 0x71, 0x13, 0xba, 0x06, 0xc7, 0xba,
10893 0x6a, 0x6a, 0x79, 0x4d, 0x48, 0x66, 0xa3, 0xf2, 0x71, 0xe9, 0x87, 0xa4,
10894 0xc5, 0xda, 0x39, 0x34, 0x78, 0x0c, 0x44, 0xf2, 0x78, 0x31, 0x4a, 0xa2,
10895 0xbf, 0x4f, 0xf3, 0xab, 0xd2, 0xcf, 0x91, 0x22, 0x9a, 0x9a, 0x9b, 0xbb,
10896 0x22, 0x6e, 0x4d, 0x0f, 0x88, 0x92, 0x59, 0x7d, 0x2c, 0xf1, 0x4b, 0x39,
10897 0xd2, 0xc6, 0x09, 0x82, 0x52, 0x86, 0x22, 0xd1, 0xb5, 0x1e, 0x94, 0x70,
10898 0xd7, 0x3a, 0x5a, 0x39, 0xd7, 0xc9, 0x1d, 0x26, 0x77, 0xbe, 0xca, 0x49,
10899 0xea, 0x27, 0xc6, 0x15, 0x5b, 0x6a, 0xab, 0x01, 0xde, 0xc6, 0x23, 0xff,
10900 0xa0, 0x04, 0xbb, 0x01, 0xe5, 0x3e, 0x41, 0x16, 0xf4, 0xa3, 0x6f, 0xa9,
10901 0x6f, 0x3b, 0x51, 0x6f, 0x08, 0x07, 0x02, 0xb5, 0xa5, 0x0c, 0x14, 0xf6,
10902 0x0f, 0xde, 0x9c, 0x9c, 0x9d, 0x11, 0x8a, 0x13, 0x25, 0xe9, 0x7f, 0xf3,
10903 0x76, 0xd0, 0x94, 0xc3, 0xe3, 0x84, 0x30, 0x33, 0xd3, 0x89, 0x81, 0x6a,
10904 0x8e, 0x5e, 0x1d, 0x9f, 0x61, 0x19, 0x01, 0x51, 0xb4, 0x83, 0xdd, 0x5f,
10905 0x3a, 0x5e, 0x2b, 0xb6, 0xc4, 0x45, 0x00, 0x45, 0x89, 0x7a, 0x7c, 0xf2,
10906 0xfe, 0xf2, 0xa3, 0x72, 0xc0, 0xaa, 0x27, 0x0f, 0xd5, 0xb4, 0x34, 0x4e,
10907 0x1e, 0x33, 0x28, 0xba, 0x52, 0xc2, 0x1d, 0x77, 0x9e, 0x72, 0xa0, 0xc1,
10908 0xb0, 0x7f, 0x39, 0xf9, 0x1b, 0x70, 0x2b, 0x0f, 0x6b, 0x16, 0xf7, 0x8b,
10909 0x56, 0x24, 0xd8, 0x44, 0x2a, 0x22, 0xdb, 0x5c, 0x13, 0xb1, 0xe5, 0x10,
10910 0xe7, 0x00, 0xf7, 0x42, 0xf9, 0x28, 0xe5, 0xb9, 0x73, 0x29, 0xa2, 0xd9,
10911 0x49, 0x7d, 0x23, 0x9e, 0x78, 0x96, 0x4d, 0x24, 0x95, 0x38, 0xae, 0xa4,
10912 0x86, 0xe9, 0x9a, 0x40, 0xd7, 0x48, 0xe2, 0xfa, 0x96, 0x1c, 0x43, 0xc8,
10913 0x30, 0x38, 0x19, 0xda, 0x75, 0xf1, 0xf4, 0xfe, 0xe7, 0xc4, 0xf4, 0x40,
10914 0x07, 0xd1, 0x34, 0x41, 0x23, 0x15, 0x06, 0x44, 0x9c, 0x2e, 0x8e, 0x3d,
10915 0xf0, 0x02, 0x67, 0x89, 0x67, 0x7a, 0x31, 0x9a, 0x39, 0x0d, 0xc1, 0x5c,
10916 0x81, 0xc8, 0x02, 0x8a, 0xc9, 0xff, 0x2d, 0xb6, 0xaf, 0x04, 0xe5, 0xe8,
10917 0x93, 0xb8, 0xa2, 0x6f, 0x2d, 0xe7, 0x71, 0x9d, 0xf0, 0xd4, 0x6f, 0x33,
10918 0x72, 0x4b, 0x67, 0x03, 0xf5, 0xef, 0x54, 0x9e, 0x3c, 0x88, 0xce, 0x41,
10919 0xa0, 0x02, 0xf9, 0x09, 0xc0, 0x0a, 0x15, 0x23, 0x10, 0xa4, 0x5f, 0xe5,
10920 0xa8, 0x0b, 0xd3, 0x87, 0x5f, 0x67, 0x0b, 0x6a, 0xcc, 0xfa, 0x6e, 0x30,
10921 0x08, 0x60, 0xe7, 0xa1, 0x7c, 0x85, 0xcb, 0x1c, 0x8f, 0xd1, 0xe0, 0xe4,
10922 0x3d, 0x18, 0x38, 0xbc, 0x8a, 0xff, 0x52, 0x2d, 0xd5, 0x36, 0x99, 0x25,
10923 0x45, 0xac, 0x1b, 0xa9, 0xc2, 0xda, 0x6d, 0x53, 0x56, 0x7d, 0x85, 0xaf,
10924 0xa1, 0xec, 0x29, 0xee, 0x3d, 0xed, 0x83, 0xce, 0xff, 0xe3, 0xbc, 0xdb,
10925 0x0f, 0x47, 0x73, 0x2e, 0xc0, 0x41, 0x29, 0xf2, 0x0a, 0x61, 0xfa, 0x2c,
10926 0x09, 0x9a, 0xc2, 0xb9, 0x65, 0xe7, 0x59, 0xf9, 0xae, 0xad, 0x67, 0xcd,
10927 0x79, 0xe3, 0xd2, 0x84, 0x74, 0x29, 0x14, 0x6e, 0x7c, 0xbe, 0xc8, 0xb1,
10928 0xe1, 0xe3, 0x86, 0xa2, 0x71, 0x5f, 0x3f, 0x42, 0xb4, 0xfd, 0x03, 0x7b,
10929 0x3a, 0xe0, 0xe7, 0xe5, 0x39, 0x68, 0xe5, 0xf0, 0xcb, 0xc9, 0xeb, 0xd3,
10930 0xef, 0xac, 0x17, 0xf4, 0xd2, 0x7a, 0x58, 0xa4, 0xd0, 0x5e, 0x1a, 0x09,
10931 0x34, 0x8c, 0x6f, 0xeb, 0x3d, 0x42, 0x70, 0x7e, 0x3c, 0x6c, 0xd2, 0x3b,
10932 0xa7, 0xff, 0x84, 0x0e, 0xd7, 0x50, 0xb5, 0xef, 0xee, 0x2d, 0x28, 0x86,
10933 0x25, 0xd1, 0x69, 0xcd, 0x77, 0x43, 0xce, 0x6c, 0xd7, 0x1f, 0xea, 0xb8,
10934 0xbe, 0x78, 0x46, 0xf0, 0x7a, 0xe9, 0x44, 0x33, 0xea, 0x0b, 0xee, 0x2f,
10935 0x97, 0x5b, 0xbc, 0x04, 0x63, 0x29, 0x61, 0xd5, 0xac, 0xe9, 0xe7, 0x02,
10936 0x6a, 0x5b, 0xd7, 0x19, 0x4a, 0xa5, 0x51, 0x05, 0x1b, 0xaf, 0x92, 0x3a,
10937 0x34, 0x49, 0x6f, 0x6e, 0x18, 0xbd, 0x84, 0xb4, 0x66, 0x86, 0xa9, 0xbf,
10938 0x84, 0xbc, 0xb8, 0xd8, 0x8f, 0x94, 0x57, 0x8a, 0x61, 0x9b, 0xf2, 0xa0,
10939 0xe6, 0xc2, 0x04, 0x0a, 0x85, 0x71, 0x2b, 0x19, 0x6f, 0x0e, 0xff, 0xf1,
10940 0x1e, 0x4f, 0x8f, 0xd5, 0x25, 0x64, 0xe7, 0x96, 0x24, 0x8d, 0x06, 0xca,
10941 0xad, 0x90, 0xf6, 0xb2, 0x61, 0xea, 0xce, 0xd3, 0xb2, 0xed, 0xd1, 0x18,
10942 0xc1, 0xf5, 0xde, 0xdc, 0x03, 0x29, 0x42, 0xb4, 0x8b, 0x72, 0x6f, 0xd9,
10943 0x18, 0xe8, 0xd8, 0xfe, 0xfb, 0x22, 0x05, 0xf1, 0x9d, 0x70, 0xbe, 0x63,
10944 0xaf, 0xc7, 0x37, 0x35, 0xc6, 0x88, 0x9f, 0x34, 0x48, 0x5c, 0x1f, 0x65,
10945 0xff, 0x29, 0x83, 0xec, 0x37, 0xc6, 0xb8, 0x7e, 0xd2, 0x20, 0x3d, 0x75,
10946 0x75, 0x7d, 0xf6, 0xd9, 0xc9, 0x77, 0xa7, 0x97, 0x60, 0xd0, 0xbe, 0xaa,
10947 0xed, 0x99, 0x42, 0xa4, 0x09, 0xe8, 0x4b, 0x19, 0x30, 0x1e, 0xdc, 0x39,
10948 0x4e, 0x27, 0xa4, 0x7f, 0x55, 0x52, 0xa2, 0x80, 0x11, 0xb1, 0x52, 0x91,
10949 0x07, 0xd3, 0x82, 0x7b, 0xf0, 0x60, 0x6e, 0x32, 0x97, 0x92, 0x3b, 0x88,
10950 0xb5, 0x54, 0xd0, 0x20, 0x25, 0xc9, 0x06, 0x24, 0x87, 0x5a, 0x56, 0x71,
10951 0xad, 0x20, 0xf7, 0x22, 0x36, 0xc3, 0x66, 0x8c, 0xd4, 0x59, 0xf6, 0xa3,
10952 0x23, 0x29, 0x7e, 0x4f, 0xc9, 0x7e, 0xf8, 0xcc, 0xe8, 0x4b, 0xd2, 0xbc,
10953 0x83, 0xba, 0x09, 0x30, 0xac, 0x20, 0xd9, 0x68, 0x63, 0x66, 0x5b, 0xcb,
10954 0xab, 0xdb, 0x22, 0xb4, 0xb3, 0x1a, 0xbb, 0x13, 0xa3, 0xcb, 0xa9, 0x82,
10955 0xda, 0xe0, 0x58, 0x31, 0x0e, 0xb5, 0x23, 0x77, 0x59, 0x83, 0xd6, 0xf3,
10956 0x94, 0x5d, 0x33, 0x84, 0x79, 0xce, 0x8e, 0x58, 0x7e, 0x71, 0x3a, 0x65,
10957 0x35, 0x5a, 0xaa, 0x66, 0xd3, 0x9f, 0x1d, 0x15, 0x60, 0xd7, 0xf8, 0x97,
10958 0xe1, 0xdd, 0xa7, 0x94, 0x76, 0x3d, 0xe6, 0x5d, 0x51, 0xde, 0x67, 0x55,
10959 0x7c, 0x47, 0xda, 0x29, 0x6e, 0x75, 0x69, 0x66, 0x64, 0xef, 0xdc, 0xd3,
10960 0x3a, 0x34, 0xd3, 0x35, 0x09, 0x25, 0x86, 0x86, 0xfe, 0x34, 0x7c, 0x6b,
10961 0xc3, 0xfa, 0x0a, 0x1b, 0xcc, 0x7a, 0x77, 0x99, 0x16, 0x04, 0x96, 0xd7,
10962 0xfb, 0x2c, 0x50, 0xfc, 0x62, 0x1e, 0xaa, 0x18, 0xc4, 0xd2, 0x6a, 0x3e,
10963 0xb9, 0x43, 0xf9, 0x9f, 0x52, 0x82, 0xbd, 0x76, 0x7a, 0xc1, 0x55, 0x23,
10964 0x7a, 0x71, 0xe3, 0x43, 0x1f, 0xaa, 0xd9, 0x6a, 0xbc, 0xaa, 0xa4, 0x8c,
10965 0x73, 0x22, 0x60, 0x57, 0xfa, 0x18, 0xe4, 0xc3, 0x18, 0xe1, 0xcf, 0x09,
10966 0x2a, 0x34, 0xce, 0xd8, 0xa1, 0xa0, 0x2b, 0x10, 0x06, 0x50, 0xb4, 0x44,
10967 0xd8, 0x17, 0x5b, 0xda, 0xb8, 0xa0, 0x05, 0xfe, 0xcf, 0x15, 0x2f, 0xec,
10968 0x4d, 0x93, 0x60, 0x0d, 0xfa, 0xf1, 0x46, 0xe6, 0x6a, 0x72, 0xe1, 0xf9,
10969 0x44, 0x28, 0x1b, 0x49, 0x3d, 0xcf, 0xdc, 0xa7, 0xf0, 0x8d, 0xfa, 0x1c,
10970 0x6e, 0xe9, 0x63, 0x1f, 0xe3, 0xe6, 0xa1, 0xd9, 0xe7, 0x0c, 0x93, 0x47,
10971 0x3c, 0xe5, 0x79, 0x93, 0x5f, 0x9c, 0x14, 0x37, 0x7a, 0x8c, 0xb9, 0xf2,
10972 0x85, 0x04, 0x83, 0x13, 0x44, 0xa6, 0x94, 0x00, 0x41, 0x91, 0xcc, 0xa7,
10973 0xf2, 0xc2, 0xf2, 0x09, 0xe5, 0x60, 0x53, 0x40, 0x97, 0x3d, 0x1f, 0x66,
10974 0x36, 0x60, 0x5f, 0xbb, 0xf1, 0xae, 0x97, 0xf2, 0x5c, 0x10, 0xca, 0xec,
10975 0x2c, 0x45, 0x80, 0xfa, 0xd4, 0xb0, 0x21, 0x0f, 0xc6, 0x1f, 0x61, 0x55,
10976 0x37, 0x1c, 0x55, 0xb9, 0xf9, 0x5b, 0xef, 0xf0, 0xa1, 0xf7, 0x38, 0x86,
10977 0x61, 0x2d, 0x79, 0xa2, 0xd8, 0xa2, 0x60, 0x7c, 0x59, 0x6b, 0x14, 0x11,
10978 0x72, 0x4b, 0x9c, 0x49, 0x33, 0x9b, 0x02, 0x0b, 0xcf, 0xfa, 0xd1, 0xdb,
10979 0xdc, 0xab, 0xdc, 0xcd, 0x27, 0x95, 0xa0, 0x54, 0x63, 0x5d, 0x2b, 0x93,
10980 0x07, 0x2c, 0xe0, 0x2b, 0xd1, 0x7a, 0xed, 0x80, 0x6c, 0x37, 0x69, 0x70,
10981 0x17, 0x64, 0x00, 0x95, 0x68, 0x65, 0x81, 0xd9, 0x35, 0xeb, 0xcc, 0xb7,
10982 0xb7, 0x0c, 0x1d, 0xe8, 0xb5, 0xb0, 0x28, 0x99, 0xd6, 0x02, 0x0c, 0x1c,
10983 0x6a, 0x6b, 0x77, 0x1b, 0x93, 0x74, 0x31, 0xd6, 0xab, 0x0d, 0xcd, 0xe8,
10984 0x4a, 0xa1, 0x7e, 0xe9, 0x7b, 0xa4, 0xa9, 0xeb, 0x60, 0xcc, 0x09, 0x16,
10985 0x5c, 0xe0, 0xce, 0xd0, 0x48, 0x72, 0x96, 0x75, 0x29, 0xd6, 0x68, 0xa4,
10986 0x27, 0x67, 0x09, 0x93, 0x3b, 0x05, 0x2b, 0xa5, 0x5b, 0x62, 0xe2, 0xd8,
10987 0xcd, 0xc8, 0xb1, 0xe9, 0x2c, 0xbe, 0xbe, 0xf3, 0x3e, 0xdb, 0xe6, 0x7d,
10988 0x6e, 0x89, 0x53, 0x2e, 0x8e, 0x06, 0x03, 0xe5, 0x93, 0xe3, 0x00, 0x4b,
10989 0x48, 0xbe, 0x0f, 0x22, 0xbf, 0x6b, 0x63, 0x1b, 0xdf, 0xfd, 0x21, 0x83,
10990 0x34, 0xd2, 0xf5, 0xb7, 0x59, 0xd8, 0xbd, 0x62, 0x48, 0xea, 0xf0, 0xeb,
10991 0xde, 0xd6, 0x88, 0xc8, 0xad, 0x08, 0x1a, 0x80, 0xf9, 0x61, 0xa3, 0x95,
10992 0x13, 0x75, 0x91, 0xcc, 0x04, 0x39, 0xab, 0xc2, 0x9f, 0x7c, 0xe3, 0x77,
10993 0x73, 0x14, 0x64, 0xce, 0x44, 0x76, 0xfd, 0x97, 0xfe, 0x86, 0x5f, 0xaa,
10994 0xfb, 0x8b, 0x5e, 0xfa, 0x9b, 0xc0, 0x4b, 0xef, 0x35, 0x9e, 0xb5, 0xb3,
10995 0xf3, 0x5c, 0x70, 0x84, 0x6a, 0x04, 0x66, 0x89, 0xc1, 0x4f, 0xe3, 0x37,
10996 0x86, 0x0b, 0x7b, 0xda, 0xd7, 0xd9, 0xf3, 0x8e, 0xdb, 0xdd, 0xeb, 0x3c,
10997 0x6a, 0xdf, 0x3c, 0x0a, 0x6c, 0x72, 0x1c, 0x0f, 0x35, 0x2a, 0x16, 0x3e,
10998 0xbe, 0xf0, 0xd3, 0xa0, 0x15, 0x46, 0x22, 0x6e, 0xb1, 0xaa, 0xab, 0x0a,
10999 0xd7, 0x00, 0xe9, 0x34, 0x9c, 0xe7, 0x3c, 0x33, 0xf1, 0xe2, 0xcd, 0x1d,
11000 0xcd, 0x0d, 0x3f, 0x22, 0x21, 0x3d, 0x4d, 0x66, 0xc4, 0x9a, 0x6c, 0xa3,
11001 0x5b, 0x9d, 0x95, 0x51, 0x2a, 0x27, 0x45, 0x4c, 0xfd, 0x92, 0xa7, 0xf1,
11002 0x7d, 0xa0, 0xf7, 0x8f, 0x36, 0x5f, 0x07, 0x5b, 0x86, 0xda, 0x2b, 0x5e,
11003 0x25, 0x19, 0x86, 0x26, 0x48, 0x4f, 0x10, 0x57, 0x21, 0xfa, 0x1b, 0x29,
11004 0x9f, 0x7d, 0x62, 0xd2, 0x76, 0xe4, 0xa9, 0x1e, 0x6e, 0x35, 0x66, 0x25,
11005 0x54, 0x4d, 0x54, 0x93, 0x70, 0xc7, 0xb0, 0xed, 0xe7, 0x96, 0x6e, 0x86,
11006 0x4c, 0x68, 0x45, 0x33, 0xa0, 0xbe, 0x4b, 0x3c, 0x11, 0x27, 0x36, 0x13,
11007 0xd2, 0x54, 0x1c, 0x7b, 0x7c, 0x29, 0x37, 0xdb, 0xa7, 0xb0, 0x40, 0xbe,
11008 0x40, 0x69, 0x27, 0x2d, 0x5b, 0xfb, 0x60, 0xf4, 0x61, 0xb2, 0x41, 0xad,
11009 0x2f, 0x3c, 0x5b, 0xd2, 0xb1, 0x4d, 0x17, 0xab, 0xb3, 0xee, 0xcb, 0xc0,
11010 0x5c, 0xb5, 0x7c, 0x63, 0x53, 0x04, 0xad, 0xed, 0x57, 0xa2, 0xf9, 0x3e,
11011 0x49, 0xf4, 0xfe, 0xe4, 0xf2, 0x3d, 0x25, 0x3d, 0xa3, 0x08, 0xf0, 0xec,
11012 0xdf, 0xb8, 0xd8, 0x30, 0x1d, 0x35, 0x44, 0x9e, 0x59, 0x15, 0xc5, 0x8a,
11013 0x08, 0x6e, 0xa8, 0x64, 0x56, 0x9c, 0xff, 0xd4, 0xfb, 0x4c, 0x55, 0x2a,
11014 0x93, 0xdc, 0x26, 0x44, 0xd6, 0x5b, 0x3d, 0xed, 0xec, 0xd8, 0x8a, 0x9e,
11015 0x39, 0xae, 0x09, 0x33, 0xa5, 0x20, 0x11, 0xf4, 0xa5, 0x58, 0x4e, 0xf1,
11016 0x6e, 0x50, 0xe7, 0x51, 0x45, 0x83, 0x0b, 0xd5, 0xf2, 0x22, 0x74, 0x1a,
11017 0x9b, 0x82, 0x58, 0xd1, 0x0d, 0xb4, 0x18, 0xd6, 0x40, 0x9d, 0xc8, 0x13,
11018 0x5d, 0x19, 0xca, 0x5d, 0x47, 0xf7, 0xb6, 0xb6, 0xfc, 0x22, 0xf7, 0x78,
11019 0x08, 0x62, 0x55, 0x14, 0x3d, 0xc1, 0xb1, 0x62, 0x34, 0x1b, 0x5a, 0x2f,
11020 0x52, 0x3d, 0x4b, 0x34, 0x45, 0x7a, 0x3d, 0xa4, 0x96, 0x6f, 0x70, 0xec,
11021 0xb0, 0x84, 0xf9, 0x96, 0x30, 0xb5, 0x84, 0x5e, 0x0d, 0xc1, 0xc2, 0x78,
11022 0x5b, 0x5c, 0x40, 0x84, 0xa7, 0x93, 0xed, 0xe4, 0xab, 0xd9, 0x47, 0xde,
11023 0xac, 0x3c, 0xe9, 0xbd, 0x63, 0x77, 0xbc, 0x2b, 0x46, 0x06, 0x97, 0xe7,
11024 0xef, 0x85, 0xc1, 0xfc, 0xd3, 0x99, 0x12, 0xfe, 0xf1, 0x02, 0xd3, 0x0f,
11025 0xa0, 0xeb, 0x63, 0xac, 0x33, 0xfe, 0x3a, 0x8e, 0x6b, 0x5a, 0x7b, 0x3a,
11026 0x4f, 0xe5, 0xfd, 0xff, 0x1e, 0x81, 0xd7, 0xe4, 0xdd, 0xbe, 0x11, 0x98,
11027 0x47, 0x6d, 0xf8, 0xaa, 0xbb, 0xd2, 0xb9, 0x89, 0x37, 0xd9, 0x39, 0xef,
11028 0x5e, 0x86, 0x35, 0x44, 0x1e, 0x12, 0x80, 0x43, 0xec, 0x17, 0x2b, 0x4e,
11029 0x03, 0x2d, 0x22, 0xf3, 0xf8, 0x90, 0x37, 0xd0, 0xb9, 0x6d, 0xe8, 0xcb,
11030 0xf2, 0x5d, 0x5e, 0xd2, 0x98, 0xc9, 0xf8, 0x31, 0xa5, 0x39, 0x71, 0xc3,
11031 0x5b, 0xa9, 0xca, 0x89, 0x39, 0xe2, 0x3f, 0xf2, 0xda, 0xb2, 0xe7, 0xc5,
11032 0x58, 0x1c, 0x2a, 0x72, 0x6c, 0xaa, 0x0d, 0x61, 0xd5, 0x6f, 0xe7, 0xcc,
11033 0xbf, 0x38, 0x7f, 0x7f, 0x19, 0x99, 0x23, 0x9f, 0x9e, 0x4c, 0x1f, 0x35,
11034 0x36, 0x0f, 0xd6, 0xc2, 0x93, 0x3f, 0xc5, 0x62, 0xd5, 0x78, 0x69, 0x17,
11035 0x62, 0x2a, 0x54, 0x8d, 0x21, 0xba, 0x14, 0x49, 0x1b, 0xe7, 0xec, 0xda,
11036 0xb4, 0x82, 0x46, 0xd0, 0xa8, 0xe8, 0x94, 0x69, 0x6b, 0xa1, 0x63, 0xa1,
11037 0x92, 0x77, 0xb7, 0x03, 0x72, 0x02, 0x8f, 0x83, 0xf7, 0x27, 0x83, 0x4b,
11038 0xa6, 0x18, 0xfe, 0xe6, 0xcd, 0x9b, 0x91, 0x58, 0xe5, 0x43, 0xcf, 0x7e,
11039 0x31, 0x9c, 0x81, 0xd5, 0x53, 0xe8, 0x58, 0xc6, 0xf1, 0x0d, 0x64, 0xad,
11040 0x43, 0xb1, 0x5d, 0xa7, 0x6a, 0x8f, 0x24, 0xa6, 0xf0, 0x09, 0x6d, 0x6e,
11041 0xfa, 0xa0, 0x23, 0x0f, 0xe9, 0x80, 0x5a, 0x26, 0x1b, 0xa2, 0xd6, 0x38,
11042 0x7c, 0x77, 0xcf, 0x11, 0x13, 0x78, 0x4c, 0xc9, 0x08, 0xa7, 0x8c, 0x02,
11043 0x3c, 0xa5, 0x0f, 0x7b, 0xca, 0x2b, 0x74, 0x56, 0x30, 0x57, 0xf0, 0x75,
11044 0x76, 0x9c, 0x7d, 0x13, 0x78, 0x51, 0x4d, 0xc1, 0x99, 0x0b, 0x7e, 0xac,
11045 0x95, 0x2e, 0xa4, 0xb5, 0x35, 0x78, 0x6e, 0x97, 0x59, 0xfd, 0xab, 0x78,
11046 0x6c, 0x6b, 0xee, 0xf8, 0xdd, 0x6b, 0xa7, 0x82, 0xc4, 0xf8, 0x48, 0x47,
11047 0x8b, 0x8b, 0x69, 0x8a, 0x19, 0x25, 0x43, 0xb6, 0x1a, 0xf1, 0xb6, 0x50,
11048 0x57, 0x63, 0xe7, 0x19, 0x72, 0xfc, 0xa0, 0x63, 0x70, 0xe4, 0x1c, 0xd3,
11049 0xf0, 0x28, 0xde, 0xc3, 0x56, 0xd9, 0xc7, 0x08, 0x8f, 0x39, 0x24, 0xfa,
11050 0xd1, 0x05, 0x06, 0x75, 0x49, 0x6f, 0x2a, 0xff, 0xa7, 0x1d, 0x8e, 0xb7,
11051 0x09, 0xa6, 0x1a, 0xa9, 0x1a, 0x80, 0xd0, 0xb5, 0x7d, 0xfe, 0x84, 0x50,
11052 0x6c, 0x6d, 0x4f, 0x6c, 0xef, 0x7d, 0x5f, 0xda, 0x9b, 0x4b, 0x78, 0x15,
11053 0xb0, 0xdf, 0x9b, 0x97, 0xec, 0x09, 0x67, 0x81, 0x71, 0x4f, 0x43, 0x18,
11054 0xc9, 0x8c, 0xbb, 0x19, 0xd7, 0x83, 0x8c, 0x46, 0x1a, 0x61, 0xa2, 0xd7,
11055 0xd4, 0x24, 0xb8, 0x33, 0x14, 0x1f, 0x05, 0x47, 0x42, 0x2a, 0xec, 0xa7,
11056 0x01, 0x7b, 0x06, 0x15, 0x39, 0x18, 0x2b, 0x43, 0x39, 0x6b, 0x3c, 0x89,
11057 0xb5, 0x84, 0x60, 0xa2, 0xad, 0xe9, 0x69, 0xd2, 0xa4, 0x6e, 0x5c, 0x4f,
11058 0x9c, 0xdb, 0x63, 0x5e, 0x34, 0x7c, 0x63, 0x4e, 0xaf, 0xda, 0xec, 0xa4,
11059 0xe6, 0x58, 0xfc, 0x79, 0xc3, 0x98, 0x1a, 0x12, 0xc4, 0x70, 0xb8, 0xbb,
11060 0xca, 0xff, 0xde, 0xbe, 0x1d, 0x6a, 0x82, 0x70, 0x76, 0x66, 0x2c, 0x2b,
11061 0x7d, 0x40, 0xf0, 0x70, 0xa3, 0x14, 0xc6, 0xab, 0xa6, 0xcb, 0x6a, 0x2a,
11062 0xde, 0x30, 0xd0, 0x29, 0xc9, 0xa5, 0xc9, 0x73, 0xb1, 0x89, 0xd1, 0x28,
11063 0xce, 0xee, 0x2d, 0x28, 0x40, 0x9f, 0xf3, 0x7a, 0xd9, 0xab, 0x86, 0x0f,
11064 0x30, 0xdf, 0x88, 0x63, 0xf6, 0x5a, 0xbc, 0x36, 0xb3, 0xf8, 0xce, 0x3b,
11065 0xe0, 0x67, 0x8b, 0x99, 0xd4, 0xc2, 0x3a, 0x4f, 0x7a, 0x21, 0x2e, 0x0e,
11066 0x2e, 0xdf, 0xd6, 0x2e, 0x21, 0x56, 0x8e, 0xe6, 0xc6, 0x94, 0xd6, 0xf4,
11067 0x25, 0x60, 0x1e, 0x2a, 0x8d, 0x34, 0xae, 0x18, 0xbf, 0xf9, 0x2e, 0xf6,
11068 0xf9, 0x61, 0x64, 0x0a, 0x56, 0x77, 0xd5, 0xd7, 0x90, 0x3b, 0x1d, 0x5a,
11069 0x90, 0xe0, 0x72, 0x1d, 0x7f, 0xd5, 0xde, 0x20, 0xa2, 0x48, 0x7e, 0x22,
11070 0x45, 0xb2, 0xcf, 0xc7, 0x0d, 0x63, 0x87, 0xf1, 0x5b, 0x22, 0x2a, 0xab,
11071 0x15, 0x78, 0x7b, 0x2f, 0xc5, 0x7f, 0x25, 0xfe, 0x11, 0x4c, 0x6c, 0xce,
11072 0xb0, 0x27, 0x74, 0x23, 0x8f, 0x72, 0x7f, 0xdb, 0x78, 0x32, 0xb1, 0xe0,
11073 0x53, 0xb0, 0x29, 0xdc, 0xb2, 0x4f, 0x6c, 0x8a, 0x3b, 0x78, 0x13, 0xbd,
11074 0x7d, 0xb5, 0x8f, 0x2e, 0xf6, 0xab, 0xa4, 0x98, 0x17, 0x58, 0xbc, 0xa8,
11075 0x3c, 0x7c, 0xfe, 0x17, 0x67, 0xb0, 0x1d, 0xeb, 0x16, 0x95, 0x43, 0x36,
11076 0xd5, 0xed, 0x8b, 0xc6, 0x02, 0x2c, 0x20, 0xc2, 0x7c, 0x5e, 0x75, 0x25,
11077 0xa5, 0x4c, 0xfb, 0x5d, 0x99, 0xae, 0x2a, 0xac, 0xb2, 0x84, 0xb0, 0xf9,
11078 0x9c, 0x87, 0xec, 0x5a, 0x09, 0x56, 0xdc, 0xcf, 0x29, 0x92, 0x72, 0x85,
11079 0x76, 0x41, 0x60, 0x47, 0xed, 0xb3, 0xd4, 0x3c, 0xe6, 0x7d, 0x8f, 0x3a,
11080 0xac, 0x7f, 0x1b, 0xa9, 0xe7, 0x8d, 0xf0, 0xf4, 0xfe, 0xbe, 0xeb, 0x56,
11081 0xc0, 0x6e, 0x9d, 0x12, 0x78, 0xa1, 0x40, 0x0b, 0x2a, 0x29, 0xce, 0xb5,
11082 0xcf, 0xcc, 0xb5, 0x94, 0xe9, 0x91, 0x49, 0x1f, 0x9e, 0x25, 0x77, 0x88,
11083 0xea, 0xab, 0x06, 0x82, 0x46, 0x62, 0x58, 0xe5, 0x71, 0x68, 0x6f, 0x94,
11084 0xc4, 0xfd, 0x97, 0x0d, 0x97, 0x0d, 0xf5, 0x9f, 0x37, 0xac, 0x49, 0x2f,
11085 0x95, 0xce, 0xaf, 0xdd, 0xcd, 0xf9, 0x8c, 0x4f, 0xe9, 0x0b, 0xac, 0xe2,
11086 0xad, 0xad, 0xa7, 0x0a, 0xc1, 0xc4, 0x05, 0x6f, 0xd6, 0xbd, 0xce, 0xbc,
11087 0x7f, 0x7c, 0xd4, 0x06, 0x4c, 0x42, 0xdc, 0xee, 0x3c, 0x64, 0x5b, 0xf6,
11088 0x0c, 0xbc, 0x72, 0x7e, 0x95, 0xa5, 0x3f, 0x27, 0x4e, 0x55, 0x14, 0xb5,
11089 0x2e, 0xad, 0x69, 0x4a, 0xcf, 0x76, 0x44, 0x60, 0xdc, 0xc4, 0xd3, 0x54,
11090 0x84, 0x62, 0xad, 0x8b, 0xfa, 0xb3, 0x5d, 0xe1, 0xda, 0xbb, 0x14, 0xb7,
11091 0x28, 0xe9, 0xfe, 0x54, 0x64, 0x8e, 0xf9, 0xc9, 0x49, 0x0d, 0x49, 0xf9,
11092 0xd9, 0x9e, 0x68, 0x5d, 0xaa, 0x1a, 0xe3, 0xd9, 0x8b, 0x84, 0x98, 0x52,
11093 0xfb, 0xb2, 0xa6, 0x98, 0x7e, 0x26, 0xe7, 0x9e, 0x2c, 0x25, 0x39, 0xf4,
11094 0x50, 0xd7, 0x14, 0x09, 0x8d, 0x39, 0xaf, 0x45, 0x72, 0xcb, 0x31, 0xfb,
11095 0xd8, 0x57, 0xb6, 0x9e, 0x3d, 0x6b, 0xf1, 0x4b, 0x96, 0x7c, 0x68, 0x9e,
11096 0x10, 0x2f, 0x39, 0xd7, 0x3f, 0x37, 0x3b, 0xc1, 0xe9, 0x83, 0xa7, 0x4d,
11097 0xbf, 0xba, 0x6e, 0x6f, 0x3f, 0xdd, 0x48, 0xe2, 0x3f, 0xe1, 0x2d, 0x30,
11098 0x8e, 0x42, 0x0d, 0xd7, 0x27, 0xe6, 0xf1, 0xd3, 0xfc, 0x2a, 0x72, 0xdb,
11099 0x11, 0x3c, 0x63, 0x96, 0x7a, 0x4d, 0x81, 0x4c, 0x6b, 0x1b, 0x64, 0xd1,
11100 0x65, 0x08, 0x1d, 0xf0, 0xd9, 0x4b, 0xe1, 0x0d, 0x3d, 0x2f, 0x8d, 0xb1,
11101 0xda, 0x76, 0xc7, 0xf3, 0x2d, 0x57, 0x5d, 0x1d, 0x63, 0xf6, 0x29, 0x23,
11102 0x98, 0xb6, 0xde, 0xc0, 0x9c, 0x71, 0x3a, 0x45, 0xd8, 0xf8, 0x29, 0x5f,
11103 0x63, 0x3b, 0x6e, 0xd9, 0xcb, 0x76, 0x6a, 0x42, 0xf7, 0xd2, 0x55, 0xa0,
11104 0xa2, 0xd3, 0x57, 0xce, 0x85, 0xbb, 0xf6, 0x05, 0xe3, 0x29, 0x6a, 0x03,
11105 0xf7, 0xec, 0xa8, 0x2a, 0xa3, 0x75, 0xbc, 0xcb, 0xc1, 0xd7, 0x78, 0xce,
11106 0x9c, 0xf1, 0x2e, 0xe7, 0x08, 0x28, 0xd1, 0xdf, 0xbb, 0x86, 0xd9, 0xe1,
11107 0xd8, 0xf4, 0x12, 0xb1, 0x7d, 0x44, 0xbc, 0xb5, 0x7f, 0xfe, 0x6c, 0xc9,
11108 0xb5, 0x72, 0x68, 0x96, 0xe6, 0xa8, 0x77, 0xee, 0x7b, 0x5e, 0xdb, 0xe6,
11109 0x6a, 0x0b, 0x68, 0x7d, 0xbd, 0x6c, 0xb2, 0x68, 0x1d, 0x83, 0x86, 0xff,
11110 0x53, 0x9d, 0x82, 0x05, 0x36, 0xbd, 0x2a, 0xff, 0xa7, 0x3b, 0xd5, 0x17,
11111 0x2e, 0xa4, 0x10, 0xbb, 0x03, 0x4d, 0x02, 0x87, 0xf1, 0x28, 0xa0, 0x61,
11112 0x58, 0xf7, 0xe0, 0x39, 0x23, 0xf0, 0x72, 0x83, 0x0a, 0xb1, 0xc8, 0xac,
11113 0xd0, 0x60, 0xcb, 0x4f, 0xe0, 0xfc, 0xc6, 0x6e, 0x67, 0x34, 0x14, 0xf7,
11114 0xe2, 0x80, 0x72, 0xfc, 0xa7, 0x5b, 0x8d, 0x1d, 0x50, 0x5e, 0x2f, 0xd8,
11115 0xd4, 0x36, 0x6f, 0x14, 0x02, 0x62, 0x79, 0xb1, 0xd3, 0x90, 0x5c, 0xa4,
11116 0x33, 0x1e, 0xc3, 0x6c, 0xd9, 0x16, 0xd7, 0x7e, 0xf2, 0xe8, 0x2d, 0x2f,
11117 0x72, 0x76, 0x14, 0xa2, 0x2f, 0xc8, 0x0e, 0x20, 0xfa, 0x0a, 0x56, 0x8e,
11118 0x14, 0x92, 0x30, 0xd6, 0x5c, 0xa1, 0x17, 0x7b, 0x86, 0x44, 0xc8, 0x40,
11119 0x17, 0x60, 0xdc, 0xb7, 0x9a, 0xef, 0x2f, 0x78, 0xe5, 0xdf, 0xa6, 0x25,
11120 0x07, 0x02, 0x81, 0x9d, 0xdf, 0x5f, 0x0e, 0x2e, 0xa2, 0xe3, 0x41, 0xf2,
11121 0x77, 0xc9, 0x26, 0x74, 0x04, 0xdc, 0x8b, 0x67, 0xe1, 0xab, 0x07, 0xe2,
11122 0x9f, 0x3b, 0xa5, 0xbe, 0xa4, 0x40, 0xcf, 0xda, 0x4d, 0xcf, 0x85, 0xa9,
11123 0xd5, 0x79, 0xcf, 0x6e, 0x2c, 0x9c, 0x1a, 0x49, 0xb4, 0x69, 0x6d, 0x75,
11124 0x5e, 0xbc, 0xb0, 0xa6, 0xc9, 0xf5, 0x22, 0xfb, 0x64, 0x94, 0x3e, 0x69,
11125 0x79, 0xa4, 0x4b, 0xe5, 0xdc, 0xf1, 0x52, 0x19, 0xdc, 0xf1, 0x66, 0x9a,
11126 0x12, 0x8d, 0xae, 0x78, 0x19, 0xc4, 0x81, 0x28, 0xc1, 0x4c, 0x90, 0x92,
11127 0xb5, 0xca, 0x9b, 0x97, 0x5b, 0xe6, 0x14, 0x95, 0xe6, 0x08, 0x9f, 0x28,
11128 0x99, 0x54, 0x38, 0x48, 0x53, 0xc2, 0xe7, 0x69, 0x86, 0x7e, 0x04, 0x7b,
11129 0x89, 0x33, 0xc2, 0x76, 0x4d, 0x98, 0x37, 0xd5, 0x06, 0x06, 0x34, 0x73,
11130 0x2e, 0x67, 0x46, 0x18, 0x60, 0x6c, 0x71, 0x26, 0xcc, 0x97, 0x66, 0xea,
11131 0x35, 0x6b, 0xb8, 0xc2, 0xcc, 0x4d, 0xbb, 0xca, 0xb9, 0xd8, 0x27, 0x26,
11132 0xa4, 0xa1, 0x72, 0x16, 0x06, 0x69, 0x0f, 0x04, 0xb6, 0x2d, 0xfa, 0xb2,
11133 0x1d, 0x61, 0x4f, 0x47, 0x68, 0xb4, 0x2a, 0x30, 0x83, 0x19, 0x3f, 0x4d,
11134 0xec, 0x19, 0x4b, 0x2f, 0xf7, 0x35, 0x5c, 0xa4, 0xf2, 0x91, 0x71, 0x12,
11135 0x8d, 0x3b, 0xcf, 0xf5, 0xe7, 0x6d, 0xee, 0xca, 0xec, 0x3d, 0xd7, 0x5d,
11136 0xb3, 0x5f, 0xcf, 0x6a, 0x8e, 0x3c, 0xf6, 0xdd, 0xb1, 0xcf, 0x86, 0xe6,
11137 0xe7, 0x61, 0xfc, 0x2d, 0xf1, 0xe5, 0xbd, 0x64, 0xfe, 0xa5, 0xe4, 0xa2,
11138 0x5a, 0x3e, 0x93, 0xa8, 0xea, 0xd2, 0xcd, 0x88, 0x9d, 0x82, 0x1c, 0xcd,
11139 0xa7, 0x46, 0x3f, 0x64, 0x7d, 0xc0, 0xdc, 0xe8, 0x40, 0xf5, 0xb4, 0x00,
11140 0x6c, 0x4a, 0x76, 0xaf, 0x43, 0xd0, 0xd8, 0xa9, 0xa9, 0x7a, 0xe1, 0xe0,
11141 0xb7, 0xb1, 0x8c, 0x85, 0x32, 0x01, 0xa3, 0xf8, 0xbb, 0xef, 0x78, 0x6b,
11142 0x99, 0x66, 0x49, 0x12, 0x77, 0x24, 0x8e, 0x95, 0x70, 0x26, 0x2b, 0x88,
11143 0xb8, 0x58, 0x14, 0xac, 0x2b, 0x92, 0x69, 0x82, 0x7d, 0x0b, 0xd9, 0x58,
11144 0x25, 0x29, 0x17, 0x4a, 0xf1, 0x06, 0x6a, 0x72, 0xd4, 0x1d, 0x13, 0x3a,
11145 0xc9, 0x3b, 0xcd, 0xbd, 0x73, 0xd9, 0x5b, 0x09, 0x33, 0xf8, 0xea, 0xc3,
11146 0xd7, 0x83, 0xcf, 0x9a, 0x79, 0x42, 0xc9, 0x1d, 0x3a, 0x48, 0x08, 0xd8,
11147 0x94, 0x1b, 0x01, 0xe8, 0x0a, 0xa8, 0xd7, 0x8c, 0x3d, 0xe9, 0x88, 0x71,
11148 0x3f, 0xc3, 0xb0, 0x7c, 0xc6, 0xd5, 0x6c, 0x0d, 0x2f, 0x31, 0xdc, 0x84,
11149 0x1a, 0xfa, 0x1a, 0x06, 0x44, 0xaf, 0xb8, 0x4f, 0x05, 0xa6, 0x27, 0x67,
11150 0xd1, 0xd7, 0x69, 0xf5, 0x66, 0x31, 0x3c, 0x30, 0xb1, 0xf7, 0x2b, 0x18,
11151 0x73, 0x31, 0xa4, 0xde, 0xf4, 0x38, 0x30, 0xff, 0xa0, 0x11, 0xcb, 0xcf,
11152 0x3e, 0x3b, 0xfa, 0x70, 0xf9, 0xe6, 0xfc, 0xfd, 0x20, 0xda, 0x44, 0x80,
11153 0xcf, 0xcb, 0xf7, 0xa7, 0x5f, 0x7d, 0xb8, 0x84, 0x3f, 0xf5, 0x19, 0xaf,
11154 0xe2, 0x2c, 0x05, 0x15, 0x67, 0x50, 0x25, 0x19, 0x48, 0xab, 0x2b, 0x25,
11155 0x3e, 0xb7, 0x8a, 0x05, 0x2e, 0xcf, 0x0b, 0xc5, 0x81, 0xc7, 0x1c, 0xa4,
11156 0x7c, 0x6a, 0x53, 0xf2, 0x39, 0x0c, 0x82, 0x85, 0x7a, 0xb9, 0x75, 0xc0,
11157 0xa4, 0x0d, 0x64, 0x52, 0xad, 0x71, 0x89, 0x2e, 0xdf, 0x1c, 0xbd, 0xfb,
11158 0xcb, 0x40, 0xb3, 0x43, 0xbe, 0xfd, 0xf6, 0xdb, 0x66, 0xfe, 0x00, 0x19,
11159 0x43, 0x65, 0xf2, 0xd9, 0x67, 0x83, 0x93, 0x93, 0xe8, 0xe8, 0x6c, 0x70,
11160 0xae, 0x17, 0x4c, 0xaa, 0xf9, 0xfa, 0xf6, 0x06, 0xa8, 0xf9, 0x57, 0x49,
11161 0x05, 0xbf, 0x7c, 0xf6, 0xd9, 0xff, 0x07, 0xf5, 0x93, 0x43, 0x7f, 0xc0,
11162 0x7a, 0x03, 0x00,
1098811163 };
1098911164 #define BUF_SIZE 0x10000
1099011165 static voidpf zalloc_func(voidpf opaque, unsigned int items, unsigned int size)
6161 "Verify the status of the server cert via OCSP-staple",
6262 CURLHELP_TLS},
6363 {" --cert-type <type>",
64 "Certificate type (DER/PEM/ENG)",
64 "Certificate type (DER/PEM/ENG/P12)",
6565 CURLHELP_TLS},
6666 {" --ciphers <list of ciphers>",
6767 "SSL ciphers to use",
118118 "HTTP POST data, '@' allowed",
119119 CURLHELP_HTTP | CURLHELP_POST | CURLHELP_UPLOAD},
120120 {" --data-urlencode <data>",
121 "HTTP POST data url encoded",
121 "HTTP POST data URL encoded",
122122 CURLHELP_HTTP | CURLHELP_POST | CURLHELP_UPLOAD},
123123 {" --delegation <LEVEL>",
124124 "GSS-API delegation permission",
136136 "Inhibit using EPSV",
137137 CURLHELP_FTP},
138138 {" --disallow-username-in-url",
139 "Disallow username in url",
139 "Disallow username in URL",
140140 CURLHELP_CURL | CURLHELP_HTTP},
141141 {" --dns-interface <interface>",
142142 "Interface to use for DNS requests",
178178 "How long to wait for 100-continue",
179179 CURLHELP_HTTP},
180180 {"-f, --fail",
181 "Fail silently (no output at all) on HTTP errors",
181 "Fail fast with no output on HTTP errors",
182182 CURLHELP_IMPORTANT | CURLHELP_HTTP},
183183 {" --fail-early",
184184 "Fail on first transfer error, do not continue",
384384 {"-N, --no-buffer",
385385 "Disable buffering of the output stream",
386386 CURLHELP_CURL},
387 {" --no-clobber",
388 "Do not overwrite files that already exist",
389 CURLHELP_CURL | CURLHELP_OUTPUT},
387390 {" --no-keepalive",
388391 "Disable TCP keepalive on the connection",
389392 CURLHELP_CONNECTION},
573576 {"-R, --remote-time",
574577 "Set the remote file's time on the local output",
575578 CURLHELP_OUTPUT},
579 {" --remove-on-error",
580 "Remove output file on errors",
581 CURLHELP_CURL},
576582 {"-X, --request <method>",
577583 "Specify request method to use",
578584 CURLHELP_CONNECTION},
276276 main_free(&global);
277277 }
278278
279 #ifdef WIN32
280 /* Flush buffers of all streams opened in write or update mode */
281 fflush(NULL);
282 #endif
283
279284 #ifdef __NOVELL_LIBC__
280285 if(!getenv("_IN_NETWARE_BASH_"))
281286 tool_pressanykey();
594594 if(global->showerror)
595595 fprintf(global->errors, "curl: (%d) Failed writing body\n", result);
596596 }
597 if(result && config->rm_partial) {
598 notef(global, "Removing output file: %s", per->outfile);
599 unlink(per->outfile);
600 }
597601 }
598602
599603 /* File time can only be set _after_ the file has been closed */
912916 result = CURLE_OUT_OF_MEMORY;
913917 break;
914918 }
919 if(SetHTTPrequest(config, HTTPREQ_PUT, &config->httpreq)) {
920 Curl_safefree(per->uploadfile);
921 curl_easy_cleanup(curl);
922 result = CURLE_FAILED_INIT;
923 break;
924 }
915925 }
916926 *added = TRUE;
917927 per->config = config;
10131023 if(result) {
10141024 /* bad globbing */
10151025 warnf(global, "bad output glob!\n");
1026 break;
1027 }
1028 if(!*per->outfile) {
1029 warnf(global, "output glob produces empty string!\n");
1030 result = CURLE_WRITE_ERROR;
10161031 break;
10171032 }
10181033 }
12581273 if(config->oauth_bearer)
12591274 my_setopt_str(curl, CURLOPT_XOAUTH2_BEARER, config->oauth_bearer);
12601275
1261 {
1262 my_setopt_str(curl, CURLOPT_PROXY, config->proxy);
1263 /* new in libcurl 7.5 */
1264 if(config->proxy)
1265 my_setopt_enum(curl, CURLOPT_PROXYTYPE, config->proxyver);
1266
1267 my_setopt_str(curl, CURLOPT_PROXYUSERPWD, config->proxyuserpwd);
1268
1269 /* new in libcurl 7.3 */
1270 my_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, config->proxytunnel?1L:0L);
1271
1272 /* new in libcurl 7.52.0 */
1273 if(config->preproxy)
1274 my_setopt_str(curl, CURLOPT_PRE_PROXY, config->preproxy);
1275
1276 /* new in libcurl 7.10.6 */
1277 if(config->proxyanyauth)
1278 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1279 (long)CURLAUTH_ANY);
1280 else if(config->proxynegotiate)
1281 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1282 (long)CURLAUTH_GSSNEGOTIATE);
1283 else if(config->proxyntlm)
1284 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1285 (long)CURLAUTH_NTLM);
1286 else if(config->proxydigest)
1287 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1288 (long)CURLAUTH_DIGEST);
1289 else if(config->proxybasic)
1290 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1291 (long)CURLAUTH_BASIC);
1292
1293 /* new in libcurl 7.19.4 */
1294 my_setopt_str(curl, CURLOPT_NOPROXY, config->noproxy);
1295
1296 my_setopt(curl, CURLOPT_SUPPRESS_CONNECT_HEADERS,
1297 config->suppress_connect_headers?1L:0L);
1298 }
1276 my_setopt_str(curl, CURLOPT_PROXY, config->proxy);
1277
1278 if(config->proxy && result) {
1279 errorf(global, "proxy support is disabled in this libcurl\n");
1280 config->synthetic_error = TRUE;
1281 result = CURLE_NOT_BUILT_IN;
1282 break;
1283 }
1284
1285 /* new in libcurl 7.5 */
1286 if(config->proxy)
1287 my_setopt_enum(curl, CURLOPT_PROXYTYPE, config->proxyver);
1288
1289 my_setopt_str(curl, CURLOPT_PROXYUSERPWD, config->proxyuserpwd);
1290
1291 /* new in libcurl 7.3 */
1292 my_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, config->proxytunnel?1L:0L);
1293
1294 /* new in libcurl 7.52.0 */
1295 if(config->preproxy)
1296 my_setopt_str(curl, CURLOPT_PRE_PROXY, config->preproxy);
1297
1298 /* new in libcurl 7.10.6 */
1299 if(config->proxyanyauth)
1300 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1301 (long)CURLAUTH_ANY);
1302 else if(config->proxynegotiate)
1303 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1304 (long)CURLAUTH_GSSNEGOTIATE);
1305 else if(config->proxyntlm)
1306 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1307 (long)CURLAUTH_NTLM);
1308 else if(config->proxydigest)
1309 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1310 (long)CURLAUTH_DIGEST);
1311 else if(config->proxybasic)
1312 my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
1313 (long)CURLAUTH_BASIC);
1314
1315 /* new in libcurl 7.19.4 */
1316 my_setopt_str(curl, CURLOPT_NOPROXY, config->noproxy);
1317
1318 my_setopt(curl, CURLOPT_SUPPRESS_CONNECT_HEADERS,
1319 config->suppress_connect_headers?1L:0L);
12991320
13001321 my_setopt(curl, CURLOPT_FAILONERROR, config->failonerror?1L:0L);
13011322 my_setopt(curl, CURLOPT_REQUEST_TARGET, config->request_target);
14681489 }
14691490 /* For the time being if --proxy-capath is not set then we use the
14701491 --capath value for it, if any. See #1257 */
1471 if((config->proxy_capath || config->capath) &&
1472 !tool_setopt_skip(CURLOPT_PROXY_CAPATH)) {
1492 if(config->proxy_capath || config->capath) {
14731493 result = res_setopt_str(curl, CURLOPT_PROXY_CAPATH,
14741494 (config->proxy_capath ?
14751495 config->proxy_capath :
16641684
16651685 my_setopt_enum(curl, CURLOPT_SSLVERSION,
16661686 config->ssl_version | config->ssl_version_max);
1667 my_setopt_enum(curl, CURLOPT_PROXY_SSLVERSION,
1668 config->proxy_ssl_version);
1687 if(config->proxy)
1688 my_setopt_enum(curl, CURLOPT_PROXY_SSLVERSION,
1689 config->proxy_ssl_version);
16691690
16701691 {
16711692 long mask =
17291750 if(config->cookies) {
17301751 struct curlx_dynbuf cookies;
17311752 struct curl_slist *cl;
1732 CURLcode ret;
17331753
17341754 /* The maximum size needs to match MAX_NAME in cookie.h */
17351755 curlx_dyn_init(&cookies, 4096);
17361756 for(cl = config->cookies; cl; cl = cl->next) {
17371757 if(cl == config->cookies)
1738 ret = curlx_dyn_addf(&cookies, "%s", cl->data);
1758 result = curlx_dyn_addf(&cookies, "%s", cl->data);
17391759 else
1740 ret = curlx_dyn_addf(&cookies, ";%s", cl->data);
1741
1742 if(ret) {
1743 result = CURLE_OUT_OF_MEMORY;
1760 result = curlx_dyn_addf(&cookies, ";%s", cl->data);
1761
1762 if(result)
17441763 break;
1745 }
17461764 }
17471765
17481766 my_setopt_str(curl, CURLOPT_COOKIE, curlx_dyn_ptr(&cookies));
26022620 tool_list_engines();
26032621 else if(res == PARAM_LIBCURL_UNSUPPORTED_PROTOCOL)
26042622 result = CURLE_UNSUPPORTED_PROTOCOL;
2623 else if(res == PARAM_READ_ERROR)
2624 result = CURLE_READ_ERROR;
26052625 else
26062626 result = CURLE_FAILED_INIT;
26072627 }
9393 do {
9494 char buffer[4096];
9595 nread = fread(buffer, 1, sizeof(buffer), file);
96 if(ferror(file)) {
97 curlx_dyn_free(&dyn);
98 *size = 0;
99 *bufp = NULL;
100 return PARAM_READ_ERROR;
101 }
96102 if(nread)
97103 if(curlx_dyn_addn(&dyn, buffer, nread))
98104 return PARAM_NO_MEM;
99 } while(nread);
105 } while(!feof(file));
100106 *size = curlx_dyn_len(&dyn);
101107 *bufp = curlx_dyn_ptr(&dyn);
102108 }
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
126126 HTTPREQ_GET,
127127 HTTPREQ_HEAD,
128128 HTTPREQ_MIMEPOST,
129 HTTPREQ_SIMPLEPOST
129 HTTPREQ_SIMPLEPOST,
130 HTTPREQ_PUT
130131 } HttpReq;
131132
132133
272272 strcpy(e, "\\\"");
273273 e += 2;
274274 }
275 else if(c == '?') {
276 /* escape question marks as well, to prevent generating accidental
277 trigraphs */
278 strcpy(e, "\\?");
279 e += 2;
280 }
275281 else if(!isprint(c)) {
276282 msnprintf(e, 5, "\\x%02x", (unsigned)c);
277283 e += 4;
738744 #include "tool_setopt.h"
739745
740746 #endif /* CURL_DISABLE_LIBCURL_OPTION */
741
742 /*
743 * tool_setopt_skip() allows the curl tool code to avoid setopt options that
744 * are explicitly disabled in the build.
745 */
746 bool tool_setopt_skip(CURLoption tag)
747 {
748 #ifdef CURL_DISABLE_PROXY
749 #define USED_TAG
750 switch(tag) {
751 case CURLOPT_HAPROXYPROTOCOL:
752 case CURLOPT_HTTPPROXYTUNNEL:
753 case CURLOPT_NOPROXY:
754 case CURLOPT_PRE_PROXY:
755 case CURLOPT_PROXY:
756 case CURLOPT_PROXYAUTH:
757 case CURLOPT_PROXY_CAINFO:
758 case CURLOPT_PROXY_CAPATH:
759 case CURLOPT_PROXY_CRLFILE:
760 case CURLOPT_PROXYHEADER:
761 case CURLOPT_PROXY_KEYPASSWD:
762 case CURLOPT_PROXYPASSWORD:
763 case CURLOPT_PROXY_PINNEDPUBLICKEY:
764 case CURLOPT_PROXYPORT:
765 case CURLOPT_PROXY_SERVICE_NAME:
766 case CURLOPT_PROXY_SSLCERT:
767 case CURLOPT_PROXY_SSLCERTTYPE:
768 case CURLOPT_PROXY_SSL_CIPHER_LIST:
769 case CURLOPT_PROXY_SSLKEY:
770 case CURLOPT_PROXY_SSLKEYTYPE:
771 case CURLOPT_PROXY_SSL_OPTIONS:
772 case CURLOPT_PROXY_SSL_VERIFYHOST:
773 case CURLOPT_PROXY_SSL_VERIFYPEER:
774 case CURLOPT_PROXY_SSLVERSION:
775 case CURLOPT_PROXY_TLS13_CIPHERS:
776 case CURLOPT_PROXY_TLSAUTH_PASSWORD:
777 case CURLOPT_PROXY_TLSAUTH_TYPE:
778 case CURLOPT_PROXY_TLSAUTH_USERNAME:
779 case CURLOPT_PROXY_TRANSFER_MODE:
780 case CURLOPT_PROXYTYPE:
781 case CURLOPT_PROXYUSERNAME:
782 case CURLOPT_PROXYUSERPWD:
783 return TRUE;
784 default:
785 break;
786 }
787 #endif
788 #ifdef CURL_DISABLE_FTP
789 #define USED_TAG
790 switch(tag) {
791 case CURLOPT_FTPPORT:
792 case CURLOPT_FTP_ACCOUNT:
793 case CURLOPT_FTP_ALTERNATIVE_TO_USER:
794 case CURLOPT_FTP_FILEMETHOD:
795 case CURLOPT_FTP_SKIP_PASV_IP:
796 case CURLOPT_FTP_USE_EPRT:
797 case CURLOPT_FTP_USE_EPSV:
798 case CURLOPT_FTP_USE_PRET:
799 case CURLOPT_KRBLEVEL:
800 return TRUE;
801 default:
802 break;
803 }
804 #endif
805 #ifdef CURL_DISABLE_RTSP
806 #define USED_TAG
807 switch(tag) {
808 case CURLOPT_INTERLEAVEDATA:
809 return TRUE;
810 default:
811 break;
812 }
813 #endif
814 #if defined(CURL_DISABLE_HTTP) || defined(CURL_DISABLE_COOKIES)
815 #define USED_TAG
816 switch(tag) {
817 case CURLOPT_COOKIE:
818 case CURLOPT_COOKIEFILE:
819 case CURLOPT_COOKIEJAR:
820 case CURLOPT_COOKIESESSION:
821 return TRUE;
822 default:
823 break;
824 }
825 #endif
826 #if defined(CURL_DISABLE_TELNET)
827 #define USED_TAG
828 switch(tag) {
829 case CURLOPT_TELNETOPTIONS:
830 return TRUE;
831 default:
832 break;
833 }
834 #endif
835 #ifdef CURL_DISABLE_TFTP
836 #define USED_TAG
837 switch(tag) {
838 case CURLOPT_TFTP_BLKSIZE:
839 case CURLOPT_TFTP_NO_OPTIONS:
840 return TRUE;
841 default:
842 break;
843 }
844 #endif
845 #ifdef CURL_DISABLE_NETRC
846 #define USED_TAG
847 switch(tag) {
848 case CURLOPT_NETRC:
849 case CURLOPT_NETRC_FILE:
850 return TRUE;
851 default:
852 break;
853 }
854 #endif
855
856 #ifndef USED_TAG
857 (void)tag;
858 #endif
859 return FALSE;
860 }
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
2828 * Macros used in operate()
2929 */
3030
31 #define SETOPT_CHECK(v,opt) do { \
32 if(!tool_setopt_skip(opt)) { \
33 result = (v); \
34 if(result) \
35 break; \
36 } \
31 #define SETOPT_CHECK(v,opt) do { \
32 result = (v); \
3733 } while(0)
38
39 /* allow removed features to simulate success: */
40 bool tool_setopt_skip(CURLoption tag);
4134
4235 #ifndef CURL_DISABLE_LIBCURL_OPTION
4336
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
685685 return CURLE_OUT_OF_MEMORY;
686686 }
687687
688 if(curlx_dyn_addn(&dyn, "", 0))
689 return CURLE_OUT_OF_MEMORY;
690
688691 #if defined(MSDOS) || defined(WIN32)
689692 {
690693 char *sanitized;
2424
2525 #define CURL_NAME "curl"
2626 #define CURL_COPYRIGHT LIBCURL_COPYRIGHT
27 #define CURL_VERSION "7.82.0"
27 #define CURL_VERSION "7.83.0"
2828 #define CURL_VERSION_MAJOR LIBCURL_VERSION_MAJOR
2929 #define CURL_VERSION_MINOR LIBCURL_VERSION_MINOR
3030 #define CURL_VERSION_PATCH LIBCURL_VERSION_PATCH
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
7474 {"exitcode", VAR_EXITCODE, 0, writeLong},
7575 {"filename_effective", VAR_EFFECTIVE_FILENAME, 0, writeString},
7676 {"ftp_entry_path", VAR_FTP_ENTRY_PATH, CURLINFO_FTP_ENTRY_PATH, writeString},
77 {"header_json", VAR_HEADER_JSON, 0, NULL},
7778 {"http_code", VAR_HTTP_CODE, CURLINFO_RESPONSE_CODE, writeLong},
7879 {"http_connect", VAR_HTTP_CODE_PROXY, CURLINFO_HTTP_CONNECTCODE, writeLong},
7980 {"http_version", VAR_HTTP_VERSION, CURLINFO_HTTP_VERSION, writeString},
217218 if(valid) {
218219 DEBUGASSERT(strinfo);
219220 if(use_json) {
220 fprintf(stream, "\"%s\":\"", wovar->name);
221 jsonWriteString(stream, strinfo);
222 fputs("\"", stream);
221 fprintf(stream, "\"%s\":", wovar->name);
222 jsonWriteString(stream, strinfo, FALSE);
223223 }
224224 else
225225 fputs(strinfo, stream);
365365 case VAR_JSON:
366366 ourWriteOutJSON(stream, variables, per, per_result);
367367 break;
368 case VAR_HEADER_JSON:
369 headerJSON(stream, per);
370 break;
368371 default:
369372 (void)variables[i].writefunc(stream, &variables[i],
370373 per, per_result, false);
378381 }
379382 ptr = end + 1; /* pass the end */
380383 *end = keepit;
384 }
385 else if(!strncmp("header{", &ptr[1], 7)) {
386 ptr += 8;
387 end = strchr(ptr, '}');
388 if(end) {
389 struct curl_header *header;
390 *end = 0;
391 if(CURLHE_OK == curl_easy_header(per->curl, ptr, 0, CURLH_HEADER,
392 -1, &header))
393 fputs(header->value, stream);
394 ptr = end + 1; /* pass the end */
395 }
396 else
397 fputs("%header{", stream);
381398 }
382399 else {
383400 /* illegal syntax, then just output the characters that are used */
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
3434 VAR_ERRORMSG,
3535 VAR_EXITCODE,
3636 VAR_FTP_ENTRY_PATH,
37 VAR_HEADER_JSON,
3738 VAR_HEADER_SIZE,
3839 VAR_HTTP_CODE,
3940 VAR_HTTP_CODE_PROXY,
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
2828 #include "tool_writeout_json.h"
2929 #include "tool_writeout.h"
3030
31
32 void jsonWriteString(FILE *stream, const char *in)
31 void jsonWriteString(FILE *stream, const char *in, bool lowercase)
3332 {
3433 const char *i = in;
3534 const char *in_end = in + strlen(in);
3635
36 fputc('\"', stream);
3737 for(; i < in_end; i++) {
3838 switch(*i) {
3939 case '\\':
6262 fprintf(stream, "u%04x", *i);
6363 }
6464 else {
65 fputc(*i, stream);
65 char out = *i;
66 if(lowercase && (out >= 'A' && out <= 'Z'))
67 /* do not use tolower() since that's locale specific */
68 out |= ('a' - 'A');
69 fputc(out, stream);
6670 }
6771 break;
6872 }
6973 }
74 fputc('\"', stream);
7075 }
7176
7277 void ourWriteOutJSON(FILE *stream, const struct writeoutvar mappings[],
8489
8590 /* The variables are sorted in alphabetical order but as a special case
8691 curl_version (which is not actually a --write-out variable) is last. */
87 fprintf(stream, "\"curl_version\":\"");
88 jsonWriteString(stream, curl_version());
89 fprintf(stream, "\"}");
92 fprintf(stream, "\"curl_version\":");
93 jsonWriteString(stream, curl_version(), FALSE);
94 fprintf(stream, "}");
9095 }
96
97 #ifdef _MSC_VER
98 /* warning C4706: assignment within conditional expression */
99 #pragma warning(disable:4706)
100 #endif
101
102 void headerJSON(FILE *stream, struct per_transfer *per)
103 {
104 struct curl_header *header;
105 struct curl_header *prev = NULL;
106
107 fputc('{', stream);
108 while((header = curl_easy_nextheader(per->curl, CURLH_HEADER, -1,
109 prev))) {
110 if(prev)
111 fputs(",\n", stream);
112 jsonWriteString(stream, header->name, TRUE);
113 fputc(':', stream);
114 prev = header;
115 if(header->amount > 1) {
116 if(!header->index) {
117 /* act on the 0-index entry and pull the others in, then output in a
118 JSON list */
119 size_t a = header->amount;
120 size_t i = 0;
121 char *name = header->name;
122 fputc('[', stream);
123 do {
124 jsonWriteString(stream, header->value, FALSE);
125 if(++i >= a)
126 break;
127 fputc(',', stream);
128 if(curl_easy_header(per->curl, name, i, CURLH_HEADER,
129 -1, &header))
130 break;
131 } while(1);
132 }
133 fputc(']', stream);
134 }
135 else {
136 fputc('[', stream);
137 jsonWriteString(stream, header->value, FALSE);
138 fputc(']', stream);
139 }
140 }
141 fputs("\n}", stream);
142 }
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
2525
2626 void ourWriteOutJSON(FILE *stream, const struct writeoutvar mappings[],
2727 struct per_transfer *per, CURLcode per_result);
28
29 void jsonWriteString(FILE *stream, const char *in);
28 void headerJSON(FILE *stream, struct per_transfer *per);
29 void jsonWriteString(FILE *stream, const char *in, bool lowercase);
3030
3131 #endif /* HEADER_CURL_TOOL_WRITEOUT_H */
5555 ## Repeat content
5656
5757 In the preprocess stage, a special instruction can be used to have runtests.pl
58 generate a repetetive sequence of bytes.
58 generate a repetitive sequence of bytes.
5959
6060 To insert a sequence of repeat bytes, use this syntax to make the `<string>`
6161 get repeated `<number>` of times. The number has to be 1 or larger and the
7878 Accept-Encoding
7979 %endif
8080
81 It can also check for the inversed condition, so if the feature us *not* set by
81 It can also check for the inverse condition, so if the feature is *not* set by
8282 the use of an exclamation mark:
8383
8484 %if !brotli
375375 Features testable here are:
376376
377377 - `alt-svc`
378 - `bearssl`
378379 - `c-ares`
379380 - `cookies`
380381 - `crypto`
383384 - `getrlimit`
384385 - `GnuTLS`
385386 - `GSS-API`
387 - `h2c`
386388 - `HSTS`
387389 - `HTTP-auth`
388390 - `http/2`
394396 - `ld_preload`
395397 - `libssh2`
396398 - `libssh`
397 - `oldlibssh` (versions before 0.9.6)
399 - `oldlibssh` (versions before 0.9.4)
398400 - `libz`
399401 - `manual`
400402 - `Mime`
266266 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
267267 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
268268 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
269 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
269270 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
270271 CYGPATH_W = @CYGPATH_W@
271272 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
283284 ETAGS = @ETAGS@
284285 EXEEXT = @EXEEXT@
285286 FGREP = @FGREP@
287 FILECMD = @FILECMD@
286288 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
287289 GCOV = @GCOV@
288290 GREP = @GREP@
358360 USE_LIBSSH = @USE_LIBSSH@
359361 USE_LIBSSH2 = @USE_LIBSSH2@
360362 USE_MBEDTLS = @USE_MBEDTLS@
363 USE_MSH3 = @USE_MSH3@
361364 USE_NGHTTP2 = @USE_NGHTTP2@
362365 USE_NGHTTP3 = @USE_NGHTTP3@
363366 USE_NGTCP2 = @USE_NGTCP2@
245245 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
246246 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
247247 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
248 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
248249 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
249250 CYGPATH_W = @CYGPATH_W@
250251 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
262263 ETAGS = @ETAGS@
263264 EXEEXT = @EXEEXT@
264265 FGREP = @FGREP@
266 FILECMD = @FILECMD@
265267 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
266268 GCOV = @GCOV@
267269 GREP = @GREP@
337339 USE_LIBSSH = @USE_LIBSSH@
338340 USE_LIBSSH2 = @USE_LIBSSH2@
339341 USE_MBEDTLS = @USE_MBEDTLS@
342 USE_MSH3 = @USE_MSH3@
340343 USE_NGHTTP2 = @USE_NGHTTP2@
341344 USE_NGHTTP3 = @USE_NGHTTP3@
342345 USE_NGTCP2 = @USE_NGTCP2@
187187 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
188188 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
189189 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
190 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
190191 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
191192 CYGPATH_W = @CYGPATH_W@
192193 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
204205 ETAGS = @ETAGS@
205206 EXEEXT = @EXEEXT@
206207 FGREP = @FGREP@
208 FILECMD = @FILECMD@
207209 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
208210 GCOV = @GCOV@
209211 GREP = @GREP@
279281 USE_LIBSSH = @USE_LIBSSH@
280282 USE_LIBSSH2 = @USE_LIBSSH2@
281283 USE_MBEDTLS = @USE_MBEDTLS@
284 USE_MSH3 = @USE_MSH3@
282285 USE_NGHTTP2 = @USE_NGHTTP2@
283286 USE_NGHTTP3 = @USE_NGHTTP3@
284287 USE_NGTCP2 = @USE_NGTCP2@
4242 265
4343 266
4444 357
45 358
46 359
4745 565
4846 579
49 580
50 581
5147 587
5248 670
5349 671
5450 672
5551 673
56 718
5752 1021
5853 1417
5954 1533
6055 1540
6156 1591
62 1700
63 1701
64 1702
65 1800
6657 %endif
6758 2043
6859 # Tests that are disabled here for rustls are SUPPOSED to work
8475 %if wolfssl
8576 313
8677 %endif
78 # The CRL test doesn't work with BearSSL
79 %if bearssl
80 313
81 %endif
209209 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
210210 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
211211 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
212 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
212213 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
213214 CYGPATH_W = @CYGPATH_W@
214215 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
226227 ETAGS = @ETAGS@
227228 EXEEXT = @EXEEXT@
228229 FGREP = @FGREP@
230 FILECMD = @FILECMD@
229231 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
230232 GCOV = @GCOV@
231233 GREP = @GREP@
301303 USE_LIBSSH = @USE_LIBSSH@
302304 USE_LIBSSH2 = @USE_LIBSSH2@
303305 USE_MBEDTLS = @USE_MBEDTLS@
306 USE_MSH3 = @USE_MSH3@
304307 USE_NGHTTP2 = @USE_NGHTTP2@
305308 USE_NGHTTP3 = @USE_NGHTTP3@
306309 USE_NGTCP2 = @USE_NGTCP2@
419422 test343 test344 test345 test346 test347 test348 test349 test350 test351 \
420423 test352 test353 test354 test355 test356 test357 test358 test359 test360 \
421424 test361 test362 test363 test364 test365 test366 test367 test368 test369 \
422 test370 test371 test372 test373 test374 \
425 test370 test371 test372 test373 test374 test375 test376 test378 \
423426 \
424427 test380 test381 test383 test384 test385 test386 \
425428 \
426 test392 test393 test394 test395 test396 test397 \
429 test392 test393 test394 test395 test396 test397 test398 \
427430 \
428431 test400 test401 test402 test403 test404 test405 test406 test407 test408 \
429 test409 test410 \
432 test409 test410 test411 \
430433 \
431434 test430 test431 test432 test433 test434 test435 test436 \
432435 \
467470 test863 test864 test865 test866 test867 test868 test869 test870 test871 \
468471 test872 test873 test874 test875 test876 test877 test878 test879 test880 \
469472 test881 test882 test883 test884 test885 test886 test887 test888 test889 \
470 test890 test891 test892 test893 test894 test895 test896 test897 \
473 test890 test891 test892 test893 test894 test895 test896 test897 test898 \
471474 \
472475 test900 test901 test902 test903 test904 test905 test906 test907 test908 \
473476 test909 test910 test911 test912 test913 test914 test915 test916 test917 \
477480 test945 test946 test947 test948 test949 test950 test951 test952 test953 \
478481 test954 test955 test956 test957 test958 test959 test960 test961 test962 \
479482 test963 test964 test965 test966 test967 test968 test969 test970 test971 \
480 test972 \
483 test972 test973 test974 test975 test976 \
481484 \
482485 test980 test981 test982 test983 test984 test985 test986 \
483486 \
567570 test1650 test1651 test1652 test1653 test1654 test1655 \
568571 test1660 test1661 \
569572 \
573 test1670 test1671 \
574 \
575 test1680 test1681 test1682 test1683 \
576 \
570577 test1700 test1701 test1702 test1703 \
571578 \
572579 test1800 test1801 \
575582 test1908 test1909 test1910 test1911 test1912 test1913 test1914 test1915 \
576583 test1916 test1917 test1918 \
577584 \
578 test1933 test1934 test1935 test1936 test1937 test1938 test1939 \
585 test1933 test1934 test1935 test1936 test1937 test1938 test1939 test1940 \
586 test1941 test1942 test1943 test1944 test1945 test1946 \
579587 \
580588 test2000 test2001 test2002 test2003 test2004 \
581589 \
6060 test343 test344 test345 test346 test347 test348 test349 test350 test351 \
6161 test352 test353 test354 test355 test356 test357 test358 test359 test360 \
6262 test361 test362 test363 test364 test365 test366 test367 test368 test369 \
63 test370 test371 test372 test373 test374 \
63 test370 test371 test372 test373 test374 test375 test376 test378 \
6464 \
6565 test380 test381 test383 test384 test385 test386 \
6666 \
67 test392 test393 test394 test395 test396 test397 \
67 test392 test393 test394 test395 test396 test397 test398 \
6868 \
6969 test400 test401 test402 test403 test404 test405 test406 test407 test408 \
70 test409 test410 \
70 test409 test410 test411 \
7171 \
7272 test430 test431 test432 test433 test434 test435 test436 \
7373 \
108108 test863 test864 test865 test866 test867 test868 test869 test870 test871 \
109109 test872 test873 test874 test875 test876 test877 test878 test879 test880 \
110110 test881 test882 test883 test884 test885 test886 test887 test888 test889 \
111 test890 test891 test892 test893 test894 test895 test896 test897 \
111 test890 test891 test892 test893 test894 test895 test896 test897 test898 \
112112 \
113113 test900 test901 test902 test903 test904 test905 test906 test907 test908 \
114114 test909 test910 test911 test912 test913 test914 test915 test916 test917 \
118118 test945 test946 test947 test948 test949 test950 test951 test952 test953 \
119119 test954 test955 test956 test957 test958 test959 test960 test961 test962 \
120120 test963 test964 test965 test966 test967 test968 test969 test970 test971 \
121 test972 \
121 test972 test973 test974 test975 test976 \
122122 \
123123 test980 test981 test982 test983 test984 test985 test986 \
124124 \
208208 test1650 test1651 test1652 test1653 test1654 test1655 \
209209 test1660 test1661 \
210210 \
211 test1670 test1671 \
212 \
213 test1680 test1681 test1682 test1683 \
214 \
211215 test1700 test1701 test1702 test1703 \
212216 \
213217 test1800 test1801 \
216220 test1908 test1909 test1910 test1911 test1912 test1913 test1914 test1915 \
217221 test1916 test1917 test1918 \
218222 \
219 test1933 test1934 test1935 test1936 test1937 test1938 test1939 \
223 test1933 test1934 test1935 test1936 test1937 test1938 test1939 test1940 \
224 test1941 test1942 test1943 test1944 test1945 test1946 \
220225 \
221226 test2000 test2001 test2002 test2003 test2004 \
222227 \
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 </server>
2424 <features>
2525 idn
2626 http
27 proxy
2728 </features>
2829 <setenv>
2930 LC_ALL=
2222 <features>
2323 idn
2424 http
25 proxy
2526 </features>
2627 <setenv>
2728 LC_ALL=
2727
2828 <verify>
2929 <stdout>
30 CURL_EXTERN int curl_strequal(const char *s1, const char *s2);
31 CURL_EXTERN int curl_strnequal(const char *s1, const char *s2, size_t n);
32 CURL_EXTERN curl_mime *curl_mime_init(CURL *easy);
33 CURL_EXTERN void curl_mime_free(curl_mime *mime);
34 CURL_EXTERN curl_mimepart *curl_mime_addpart(curl_mime *mime);
35 CURL_EXTERN CURLcode curl_mime_name(curl_mimepart *part, const char *name);
36 CURL_EXTERN CURLcode curl_mime_filename(curl_mimepart *part,
37 CURL_EXTERN CURLcode curl_mime_type(curl_mimepart *part, const char *mimetype);
38 CURL_EXTERN CURLcode curl_mime_encoder(curl_mimepart *part,
39 CURL_EXTERN CURLcode curl_mime_data(curl_mimepart *part,
40 CURL_EXTERN CURLcode curl_mime_filedata(curl_mimepart *part,
41 CURL_EXTERN CURLcode curl_mime_data_cb(curl_mimepart *part,
42 CURL_EXTERN CURLcode curl_mime_subparts(curl_mimepart *part,
43 CURL_EXTERN CURLcode curl_mime_headers(curl_mimepart *part,
44 CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost,
45 CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg,
46 CURL_EXTERN void curl_formfree(struct curl_httppost *form);
47 CURL_EXTERN char *curl_getenv(const char *variable);
48 CURL_EXTERN char *curl_version(void);
49 CURL_EXTERN char *curl_easy_escape(CURL *handle,
50 CURL_EXTERN char *curl_escape(const char *string,
51 CURL_EXTERN char *curl_easy_unescape(CURL *handle,
52 CURL_EXTERN char *curl_unescape(const char *string,
53 CURL_EXTERN void curl_free(void *p);
54 CURL_EXTERN CURLcode curl_global_init(long flags);
55 CURL_EXTERN CURLcode curl_global_init_mem(long flags,
56 CURL_EXTERN void curl_global_cleanup(void);
57 CURL_EXTERN CURLsslset curl_global_sslset(curl_sslbackend id, const char *name,
58 CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *,
59 CURL_EXTERN void curl_slist_free_all(struct curl_slist *);
60 CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused);
61 CURL_EXTERN CURLSH *curl_share_init(void);
62 CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...);
63 CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *);
64 CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
65 CURL_EXTERN const char *curl_easy_strerror(CURLcode);
66 CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
67 CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
68 CURL_EXTERN CURL *curl_easy_init(void);
69 CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
70 CURL_EXTERN CURLcode curl_easy_perform(CURL *curl);
71 CURL_EXTERN void curl_easy_cleanup(CURL *curl);
72 CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...);
73 CURL_EXTERN CURL *curl_easy_duphandle(CURL *curl);
74 CURL_EXTERN void curl_easy_reset(CURL *curl);
75 CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
76 CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
77 CURL_EXTERN CURLcode curl_easy_upkeep(CURL *curl);
78 CURL_EXTERN int curl_mprintf(const char *format, ...);
79 CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
80 CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
81 CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
82 CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
83 CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
84 CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
85 CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
86 CURL_EXTERN char *curl_maprintf(const char *format, ...);
87 CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
88 CURL_EXTERN CURLM *curl_multi_init(void);
89 CURL_EXTERN CURLMcode curl_multi_add_handle(CURLM *multi_handle,
90 CURL_EXTERN CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
91 CURL_EXTERN CURLMcode curl_multi_fdset(CURLM *multi_handle,
92 CURL_EXTERN CURLMcode curl_multi_wait(CURLM *multi_handle,
93 CURL_EXTERN CURLMcode curl_multi_poll(CURLM *multi_handle,
94 CURL_EXTERN CURLMcode curl_multi_wakeup(CURLM *multi_handle);
95 CURL_EXTERN CURLMcode curl_multi_perform(CURLM *multi_handle,
96 CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
97 CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle,
98 CURL_EXTERN const char *curl_multi_strerror(CURLMcode);
99 CURL_EXTERN CURLMcode curl_multi_socket(CURLM *multi_handle, curl_socket_t s,
100 CURL_EXTERN CURLMcode curl_multi_socket_action(CURLM *multi_handle,
101 CURL_EXTERN CURLMcode curl_multi_socket_all(CURLM *multi_handle,
102 CURL_EXTERN CURLMcode curl_multi_timeout(CURLM *multi_handle,
103 CURL_EXTERN CURLMcode curl_multi_setopt(CURLM *multi_handle,
104 CURL_EXTERN CURLMcode curl_multi_assign(CURLM *multi_handle,
105 CURL_EXTERN char *curl_pushheader_bynum(struct curl_pushheaders *h,
106 CURL_EXTERN char *curl_pushheader_byname(struct curl_pushheaders *h,
30 CURL_EXTERN int curl_strequal
31 CURL_EXTERN int curl_strnequal
32 CURL_EXTERN curl_mime *curl_mime_init
33 CURL_EXTERN void curl_mime_free
34 CURL_EXTERN curl_mimepart *curl_mime_addpart
35 CURL_EXTERN CURLcode curl_mime_name
36 CURL_EXTERN CURLcode curl_mime_filename
37 CURL_EXTERN CURLcode curl_mime_type
38 CURL_EXTERN CURLcode curl_mime_encoder
39 CURL_EXTERN CURLcode curl_mime_data
40 CURL_EXTERN CURLcode curl_mime_filedata
41 CURL_EXTERN CURLcode curl_mime_data_cb
42 CURL_EXTERN CURLcode curl_mime_subparts
43 CURL_EXTERN CURLcode curl_mime_headers
44 CURL_EXTERN CURLFORMcode curl_formadd
45 CURL_EXTERN int curl_formget
46 CURL_EXTERN void curl_formfree
47 CURL_EXTERN char *curl_getenv
48 CURL_EXTERN char *curl_version
49 CURL_EXTERN char *curl_easy_escape
50 CURL_EXTERN char *curl_escape
51 CURL_EXTERN char *curl_easy_unescape
52 CURL_EXTERN char *curl_unescape
53 CURL_EXTERN void curl_free
54 CURL_EXTERN CURLcode curl_global_init
55 CURL_EXTERN CURLcode curl_global_init_mem
56 CURL_EXTERN void curl_global_cleanup
57 CURL_EXTERN CURLsslset curl_global_sslset
58 CURL_EXTERN struct curl_slist *curl_slist_append
59 CURL_EXTERN void curl_slist_free_all
60 CURL_EXTERN time_t curl_getdate
61 CURL_EXTERN CURLSH *curl_share_init
62 CURL_EXTERN CURLSHcode curl_share_setopt
63 CURL_EXTERN CURLSHcode curl_share_cleanup
64 CURL_EXTERN curl_version_info_data *curl_version_info
65 CURL_EXTERN const char *curl_easy_strerror
66 CURL_EXTERN const char *curl_share_strerror
67 CURL_EXTERN CURLcode curl_easy_pause
68 CURL_EXTERN CURL *curl_easy_init
69 CURL_EXTERN CURLcode curl_easy_setopt
70 CURL_EXTERN CURLcode curl_easy_perform
71 CURL_EXTERN void curl_easy_cleanup
72 CURL_EXTERN CURLcode curl_easy_getinfo
73 CURL_EXTERN CURL *curl_easy_duphandle
74 CURL_EXTERN void curl_easy_reset
75 CURL_EXTERN CURLcode curl_easy_recv
76 CURL_EXTERN CURLcode curl_easy_send
77 CURL_EXTERN CURLcode curl_easy_upkeep
78 CURL_EXTERN int curl_mprintf
79 CURL_EXTERN int curl_mfprintf
80 CURL_EXTERN int curl_msprintf
81 CURL_EXTERN int curl_msnprintf
82 CURL_EXTERN int curl_mvprintf
83 CURL_EXTERN int curl_mvfprintf
84 CURL_EXTERN int curl_mvsprintf
85 CURL_EXTERN int curl_mvsnprintf
86 CURL_EXTERN char *curl_maprintf
87 CURL_EXTERN char *curl_mvaprintf
88 CURL_EXTERN CURLM *curl_multi_init
89 CURL_EXTERN CURLMcode curl_multi_add_handle
90 CURL_EXTERN CURLMcode curl_multi_remove_handle
91 CURL_EXTERN CURLMcode curl_multi_fdset
92 CURL_EXTERN CURLMcode curl_multi_wait
93 CURL_EXTERN CURLMcode curl_multi_poll
94 CURL_EXTERN CURLMcode curl_multi_wakeup
95 CURL_EXTERN CURLMcode curl_multi_perform
96 CURL_EXTERN CURLMcode curl_multi_cleanup
97 CURL_EXTERN CURLMsg *curl_multi_info_read
98 CURL_EXTERN const char *curl_multi_strerror
99 CURL_EXTERN CURLMcode curl_multi_socket
100 CURL_EXTERN CURLMcode curl_multi_socket_action
101 CURL_EXTERN CURLMcode curl_multi_socket_all
102 CURL_EXTERN CURLMcode curl_multi_timeout
103 CURL_EXTERN CURLMcode curl_multi_setopt
104 CURL_EXTERN CURLMcode curl_multi_assign
105 CURL_EXTERN char *curl_pushheader_bynum
106 CURL_EXTERN char *curl_pushheader_byname
107 CURL_EXTERN CURLU *curl_url
108 CURL_EXTERN void curl_url_cleanup
109 CURL_EXTERN CURLU *curl_url_dup
110 CURL_EXTERN CURLUcode curl_url_get
111 CURL_EXTERN CURLUcode curl_url_set
112 CURL_EXTERN const char *curl_url_strerror
113 CURL_EXTERN const struct curl_easyoption *curl_easy_option_by_name
114 CURL_EXTERN const struct curl_easyoption *curl_easy_option_by_id
115 CURL_EXTERN const struct curl_easyoption *curl_easy_option_next
116 CURL_EXTERN CURLHcode curl_easy_header
117 CURL_EXTERN struct curl_header *curl_easy_nextheader
107118 </stdout>
108119 </verify>
109120
1515 </name>
1616
1717 <command type="perl">
18 %SRCDIR/../lib/checksrc.pl log/code%TESTNUMBER.c
18 %SRCDIR/../scripts/checksrc.pl log/code%TESTNUMBER.c
1919 </command>
2020 <file name="log/code%TESTNUMBER.c">
2121 /* test source code
2222
2323 # Client-side
2424 <client>
25 <features>
26 proxy
27 </features>
2528 <server>
2629 http
2730 </server>
2121
2222 # Client-side
2323 <client>
24 <features>
25 proxy
26 </features>
2427 <server>
2528 http
2629 </server>
2121
2222 # Client-side
2323 <client>
24 <features>
25 proxy
26 </features>
2427 <server>
2528 http
2629 </server>
2222
2323 # Client-side
2424 <client>
25 <features>
26 proxy
27 </features>
2528 <server>
2629 http
2730 </server>
6868
6969 hnd = curl_easy_init();
7070 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
71 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/%TESTNUMBER?foo=bar&baz=quux");
71 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/%TESTNUMBER\?foo=bar&baz=quux");
7272 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
7373 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
7474 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
1616 </precheck>
1717 <features>
1818 sftp
19 !oldlibssh
1920 </features>
2021 <name>
2122 SFTP with corrupted known_hosts
3637 <verify>
3738 # old libssh installs return the wrong thing
3839 <errorcode>
39 %if oldlibssh
40 67
41 %else
4240 60
43 %endif
4441 </errorcode>
4542 <valgrind>
4643 disable
3232 <stdout mode="text">
3333 Usage: curl [options...] <url>
3434 -d, --data <data> HTTP POST data
35 -f, --fail Fail silently (no output at all) on HTTP errors
35 -f, --fail Fail fast with no output on HTTP errors
3636 -h, --help <category> Get help for commands
3737 -i, --include Include protocol response headers in the output
3838 -o, --output <file> Write to file instead of stdout
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 -w
6 %header
7 </keywords>
8 </info>
9
10 #
11 # Server-side
12 <reply>
13 <data nocheck="yes">
14 HTTP/1.1 200 OK
15 Date: Tue, 09 Nov 2010 14:49:00 GMT
16 Server: test-server/fake
17 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
18 ETag: "21025-dc7-39462498"
19 Accept-Ranges: bytes
20 Content-Length: 6
21 Connection: close
22 Content-Type: text/html
23 Funny-head: yesyes
24
25 -foo-
26 </data>
27 </reply>
28
29 #
30 # Client-side
31 <client>
32 <features>
33 headers-api
34 </features>
35 <server>
36 http
37 </server>
38 <name>
39 -w individual header output
40 </name>
41 <command option="no-output">
42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w '%header{etag} %header{nope} %header{DATE}\n' -o log/%TESTNUMBER.out
43 </command>
44 </client>
45
46 #
47 # Verify data after the test has been "shot"
48 <verify>
49 <protocol>
50 GET /%TESTNUMBER HTTP/1.1
51 Host: %HOSTIP:%HTTPPORT
52 User-Agent: curl/%VERSION
53 Accept: */*
54
55 </protocol>
56 <stdout mode="text">
57 "21025-dc7-39462498" Tue, 09 Nov 2010 14:49:00 GMT
58 </stdout>
59 </verify>
60 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 -w
6 %header
7 </keywords>
8 </info>
9
10 #
11 # Server-side
12 <reply>
13 <data nocheck="yes">
14 HTTP/1.1 200 OK
15 Date: Tue, 09 Nov 2010 14:49:00 GMT
16 Server: test-server/fake
17 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
18 ETag: "21025-dc7-39462498"
19 Accept-Ranges: bytes
20 Set-Cookie: firstcookie=want1; path=/
21 Funny-head: yesyes
22 Set-Cookie: 2cookie=want2; path=/
23 Content-Type: text/html
24 Set-Cookie: cookie3=want3; path=/
25 Content-Length: 6
26 Connection: close
27
28 -foo-
29 </data>
30 </reply>
31
32 #
33 # Client-side
34 <client>
35 <features>
36 headers-api
37 </features>
38 <server>
39 http
40 </server>
41 <name>
42 -w header JSON output
43 </name>
44 <command option="no-output">
45 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w '%{header_json}\n' -o log/%TESTNUMBER.out
46 </command>
47 </client>
48
49 #
50 # Verify data after the test has been "shot"
51 <verify>
52 <protocol>
53 GET /%TESTNUMBER HTTP/1.1
54 Host: %HOSTIP:%HTTPPORT
55 User-Agent: curl/%VERSION
56 Accept: */*
57
58 </protocol>
59 <stdout mode="text">
60 {"date":["Tue, 09 Nov 2010 14:49:00 GMT"],
61 "server":["test-server/fake"],
62 "last-modified":["Tue, 13 Jun 2000 12:10:00 GMT"],
63 "etag":["\"21025-dc7-39462498\""],
64 "accept-ranges":["bytes"],
65 "set-cookie":["firstcookie=want1; path=/","2cookie=want2; path=/","cookie3=want3; path=/"],
66 "content-length":["6"],
67 "connection":["close"]
68 }
69 </stdout>
70 </verify>
71 </testcase>
72 o
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 --clobber
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data nocheck="yes">
13 HTTP/1.0 200 OK
14 Connection: close
15 Content-Type: text/plain
16 Content-Length: 4
17
18 foo
19 </data>
20 </reply>
21
22 #
23 # Client-side
24 <client>
25 <name>
26 HTTP GET with explicit clobber
27 </name>
28 <server>
29 http
30 </server>
31 <features>
32 http
33 </features>
34 <command option="no-output">
35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o log/exist%TESTNUMBER --clobber
36 </command>
37 <file name="log/exist%TESTNUMBER">
38 to be overwritten
39 </file>
40 </client>
41
42 #
43 # Verify data after the test has been "shot"
44 <verify>
45 <file name="log/exist%TESTNUMBER">
46 HTTP/1.0 200 OK
47 Connection: close
48 Content-Type: text/plain
49 Content-Length: 4
50
51 foo
52 </file>
53 </verify>
54 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 --no-clobber
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data nocheck="yes">
13 HTTP/1.0 200 OK
14 Connection: close
15 Content-Type: text/plain
16 Content-Length: 4
17
18 foo
19 </data>
20 </reply>
21
22 #
23 # Client-side
24 <client>
25 <name>
26 HTTP GET without clobber
27 </name>
28 <server>
29 http
30 </server>
31 <features>
32 http
33 </features>
34 <command option="no-output">
35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o log/exist%TESTNUMBER --no-clobber -w '%{filename_effective}\n'
36 </command>
37 <file name="log/exist%TESTNUMBER">
38 to stay the same
39 </file>
40 </client>
41
42 #
43 # Verify data after the test has been "shot"
44 <verify>
45 <file name="log/exist%TESTNUMBER">
46 to stay the same
47 </file>
48 <file1 name="log/exist%TESTNUMBER.1">
49 HTTP/1.0 200 OK
50 Connection: close
51 Content-Type: text/plain
52 Content-Length: 4
53
54 foo
55 </file1>
56 <stdout mode="text">
57 log/exist%TESTNUMBER.1
58 </stdout>
59 </verify>
60 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 --no-clobber
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data nocheck="yes">
13 HTTP/1.0 200 OK
14 Connection: close
15 Content-Type: text/plain
16 Content-Length: 4
17
18 foo
19 </data>
20 </reply>
21
22 #
23 # Client-side
24 <client>
25 <name>
26 HTTP GET without clobber and --output-dir
27 </name>
28 <server>
29 http
30 </server>
31 <features>
32 http
33 </features>
34 <command option="no-output">
35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --output-dir log -o exist%TESTNUMBER --no-clobber
36 </command>
37 <file name="log/exist%TESTNUMBER">
38 to stay the same
39 </file>
40 </client>
41
42 #
43 # Verify data after the test has been "shot"
44 <verify>
45 <file name="log/exist%TESTNUMBER">
46 to stay the same
47 </file>
48 <file1 name="log/exist%TESTNUMBER.1">
49 HTTP/1.0 200 OK
50 Connection: close
51 Content-Type: text/plain
52 Content-Length: 4
53
54 foo
55 </file1>
56 </verify>
57 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 --no-clobber
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data nocheck="yes">
13 HTTP/1.0 200 OK
14 Connection: close
15 Content-Type: text/plain
16 Content-Length: 4
17
18 foo
19 </data>
20 </reply>
21
22 #
23 # Client-side
24 <client>
25 <name>
26 HTTP GET without clobber when 100 files already exist
27 </name>
28 <server>
29 http
30 </server>
31 <features>
32 http
33 </features>
34 <command option="no-output">
35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o log/exist%TESTNUMBER --no-clobber
36 </command>
37 <file name="log/exist%TESTNUMBER">
38 to stay the same
39 </file>
40 <precheck>
41 perl -e 'for my $i ((1..100)) { my $filename = "log/exist%TESTNUMBER.$i"; open(FH, ">", $filename) or die $!; print FH "to stay the same" ; close(FH) }'
42 # python3 -c 'for i in range(1, 101): open("log/exist%TESTNUMBER.{}".format(i), mode="w").write("to stay the same")'
43 </precheck>
44 <postcheck>
45 perl -e 'for my $i ((1..100)) { my $filename = "log/exist%TESTNUMBER.$i"; open(FH, "<", $filename) or die $!; (<FH> eq "to stay the same" and <FH> eq "") or die "incorrect $filename" ; close(FH) }'
46 # python3 -c 'for i in range(1, 101): assert open("log/exist%TESTNUMBER.{}".format(i), mode="r").read(17) == "to stay the same"'
47 </postcheck>
48 </client>
49
50 #
51 # Verify data after the test has been "shot"
52 <verify>
53 <errorcode>
54 23
55 </errorcode>
56 <file name="log/exist%TESTNUMBER">
57 to stay the same
58 </file>
59 </verify>
60 </testcase>
3737 #
3838 # Client-side
3939 <client>
40 <features>
41 h2c
42 </features>
4043 <server>
4144 http
4245 http/2
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 h2c
33 </features>
3134 <server>
3235 http
3336 http/2
2727 #
2828 # Client-side
2929 <client>
30 <features>
31 h2c
32 </features>
3033 <server>
3134 http
3235 http/2
2222
2323 # Client-side
2424 <client>
25 <features>
26 h2c
27 </features>
2528 <server>
2629 http
2730 </server>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 </keywords>
5 </info>
6
7 # Server-side
8 <reply>
9 <data nocheck="yes">
10 HTTP/1.1 200 OK
11 Date: Thu, 09 Nov 2010 14:49:00 GMT
12 Server: test with trailing space
13 Content-Type: text/html
14 Content-Length: 0
15 Set-Cookie: onecookie=data;
16 Set-Cookie: secondcookie=2data;
17 Set-Cookie: cookie3=data3;
18 Location: /%TESTNUMBER0002
19
20 </data>
21 </reply>
22
23 # Client-side
24 <client>
25 <features>
26 headers-api
27 </features>
28 <server>
29 http
30 </server>
31
32 <name>
33 curl_easy_header
34 </name>
35 <tool>
36 lib%TESTNUMBER
37 </tool>
38
39 <command>
40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
41 </command>
42 </client>
43
44 # Verify data after the test has been "shot"
45 <verify>
46 <stdout>
47 Date == Thu, 09 Nov 2010 14:49:00 GMT
48 Server == test with trailing space
49 Content-Type == text/html
50 Content-Length == 0
51 Location == /%TESTNUMBER0002
52 - Set-Cookie == onecookie=data; (0/3)
53 - Set-Cookie == secondcookie=2data; (1/3)
54 - Set-Cookie == cookie3=data3; (2/3)
55 </stdout>
56 </verify>
57 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 CONNECT
5 </keywords>
6 </info>
7
8 # Server-side
9 <reply>
10 <data nocheck="yes">
11 HTTP/1.1 200 OK
12 Date: Thu, 09 Nov 2010 14:49:00 GMT
13 Server: test with trailing space
14 Content-Type: text/html
15 Content-Length: 0
16 Set-Cookie: onecookie=data;
17 Set-Cookie: secondcookie=2data;
18 Set-Cookie: cookie3=data3;
19 Location: /%TESTNUMBER0002
20
21 </data>
22 <connect>
23 HTTP/1.1 200 Sure go ahead
24 Server: from the connect
25 Silly-thing: yes yes
26
27 </connect>
28 </reply>
29
30 # Client-side
31 <client>
32 <features>
33 proxy
34 SSL
35 headers-api
36 </features>
37 <server>
38 http
39 http-proxy
40 </server>
41
42 <name>
43 curl_easy_header with CONNECT
44 </name>
45 <tool>
46 lib1940
47 </tool>
48
49 <command>
50 http://hello:%HTTPPORT/%TESTNUMBER %HOSTIP:%PROXYPORT
51 </command>
52 </client>
53
54 # Verify data after the test has been "shot"
55 <verify>
56 <proxy>
57 CONNECT hello:%HTTPPORT HTTP/1.1
58 Host: hello:%HTTPPORT
59 Proxy-Connection: Keep-Alive
60
61 </proxy>
62 <stdout>
63 Date == Thu, 09 Nov 2010 14:49:00 GMT
64 Server == test with trailing space
65 Content-Type == text/html
66 Content-Length == 0
67 Location == /%TESTNUMBER0002
68 - Set-Cookie == onecookie=data; (0/3)
69 - Set-Cookie == secondcookie=2data; (1/3)
70 - Set-Cookie == cookie3=data3; (2/3)
71 Server == from the connect
72 Silly-thing == yes yes
73 </stdout>
74 </verify>
75 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 CONNECT
5 </keywords>
6 </info>
7
8 # Server-side
9 <reply>
10 <data nocheck="yes">
11 HTTP/1.1 100 continue
12 Date: Thu, 09 Nov 2010 14:49:00 GMT
13 Server: maybe different
14
15 HTTP/1.1 200 OK
16 Date: Thu, 09 Nov 2010 14:49:00 GMT
17 Server: test with trailing space
18 Content-Type: text/html
19 Content-Length: 0
20 Set-Cookie: onecookie=data;
21 Set-Cookie: secondcookie=2data;
22 Set-Cookie: cookie3=data3;
23 Location: /%TESTNUMBER0002
24
25 </data>
26 </reply>
27
28 # Client-side
29 <client>
30 <features>
31 http
32 headers-api
33 </features>
34 <server>
35 http
36 </server>
37
38 <name>
39 curl_easy_header with 1xx response
40 </name>
41 <tool>
42 lib1940
43 </tool>
44
45 <command>
46 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
47 </command>
48 </client>
49
50 # Verify data after the test has been "shot"
51 <verify>
52 <stdout>
53 Date == Thu, 09 Nov 2010 14:49:00 GMT
54 Server == test with trailing space
55 Content-Type == text/html
56 Content-Length == 0
57 Location == /%TESTNUMBER0002
58 - Set-Cookie == onecookie=data; (0/3)
59 - Set-Cookie == secondcookie=2data; (1/3)
60 - Set-Cookie == cookie3=data3; (2/3)
61 Date == Thu, 09 Nov 2010 14:49:00 GMT
62 Server == maybe different
63 </stdout>
64 </verify>
65 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 CONNECT
5 </keywords>
6 </info>
7
8 # Server-side
9 <reply>
10 <data nocheck="yes">
11 HTTP/1.1 200 funky chunky!
12 Server: fakeit/0.9 fakeitbad/1.0
13 Date: Thu, 09 Nov 2010 14:49:00 GMT
14 Transfer-Encoding: chunked
15 Trailer: server
16 Connection: mooo
17
18 40
19 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
20 30
21 bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
22 21;heresatest=moooo
23 cccccccccccccccccccccccccccccccc
24
25 0
26 Server: sent-as-trailer
27
28 </data>
29 </reply>
30
31 # Client-side
32 <client>
33 <features>
34 http
35 headers-api
36 </features>
37 <server>
38 http
39 </server>
40
41 <name>
42 curl_easy_header with trailers
43 </name>
44 <tool>
45 lib1940
46 </tool>
47
48 <command>
49 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
50 </command>
51 </client>
52
53 # Verify data after the test has been "shot"
54 <verify>
55 <stdout>
56 Date == Thu, 09 Nov 2010 14:49:00 GMT
57 Server == fakeit/0.9 fakeitbad/1.0
58 Server == sent-as-trailer
59 </stdout>
60 </verify>
61 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 </keywords>
5 </info>
6
7 # Server-side
8 <reply>
9 <data nocheck="yes">
10 HTTP/1.1 302 OK
11 Date: Thu, 01 Nov 2001 14:49:00 GMT
12 Server: test with trailing space
13 Content-Type: text/html
14 Content-Length: 0
15 Set-Cookie: onecookie=data;
16 Set-Cookie: secondcookie=2data;
17 Set-Cookie: cookie3=data3;
18 Location: /%TESTNUMBER0002
19
20 </data>
21 <data2 nocheck="yes">
22 HTTP/1.1 200 OK
23 Date: Thu, 09 Nov 2010 14:49:00 GMT
24 Server: the other one
25 Content-Type: text/html
26 Content-Length: 0
27 Set-Cookie: 1cookie=data1;
28 Set-Cookie: 2cookie=data2;
29
30 </data>
31 </reply>
32
33 # Client-side
34 <client>
35 <features>
36 headers-api
37 </features>
38 <server>
39 http
40 </server>
41
42 <name>
43 curl_easy_header with redirect
44 </name>
45 <tool>
46 lib1940
47 </tool>
48
49 <command>
50 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
51 </command>
52 </client>
53
54 # Verify data after the test has been "shot"
55 <verify>
56 <stdout>
57 Date == Thu, 09 Nov 2010 14:49:00 GMT
58 Server == the other one
59 Content-Type == text/html
60 Content-Length == 0
61 - Set-Cookie == 1cookie=data1; (0/2)
62 - Set-Cookie == 2cookie=data2; (1/2)
63 </stdout>
64 </verify>
65 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 CONNECT
5 </keywords>
6 </info>
7
8 # Server-side
9 <reply>
10 <data nocheck="yes">
11 HTTP/1.1 200 OK
12 Date: Thu, 09 Nov 2010 14:49:00 GMT
13 Server: test with trailing space
14 Content-Type: text/html
15 Content-Length: 0
16 Set-Cookie: onecookie=data;
17 Set-Cookie: secondcookie=2data;
18 Set-Cookie: cookie3=data3;
19 Location: /%TESTNUMBER0002
20
21 </data>
22 <connect>
23 HTTP/1.1 200 Sure go ahead
24 Server: from the connect
25 Silly-thing: yes yes
26
27 </connect>
28 </reply>
29
30 # Client-side
31 <client>
32 <features>
33 proxy
34 SSL
35 headers-api
36 </features>
37 <server>
38 http
39 http-proxy
40 </server>
41
42 <name>
43 curl_easy_nextheader with server + CONNECT
44 </name>
45 <tool>
46 lib%TESTNUMBER
47 </tool>
48
49 <command>
50 http://hello:%HTTPPORT/%TESTNUMBER %HOSTIP:%PROXYPORT
51 </command>
52 </client>
53
54 # Verify data after the test has been "shot"
55 <verify>
56 <proxy>
57 CONNECT hello:%HTTPPORT HTTP/1.1
58 Host: hello:%HTTPPORT
59 Proxy-Connection: Keep-Alive
60
61 </proxy>
62 <stdout>
63 Server == from the connect (0/2)
64 Silly-thing == yes yes (0/1)
65 Date == Thu, 09 Nov 2010 14:49:00 GMT (0/1)
66 Server == test with trailing space (1/2)
67 Content-Type == text/html (0/1)
68 Content-Length == 0 (0/1)
69 Set-Cookie == onecookie=data; (0/3)
70 Set-Cookie == secondcookie=2data; (1/3)
71 Set-Cookie == cookie3=data3; (2/3)
72 Location == /19450002 (0/1)
73 </stdout>
74 </verify>
75 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 curl_easy_header
4 </keywords>
5 </info>
6
7 # Server-side
8 <reply>
9 <data nocheck="yes">
10 HTTP/1.1 302 OK
11 Date: Thu, 01 Nov 2001 14:49:00 GMT
12 Server: test with trailing space
13 Content-Type: text/html
14 Content-Length: 0
15 Set-Cookie: onecookie=data;
16 Set-Cookie: secondcookie=2data;
17 Set-Cookie: cookie3=data3;
18 Location: /%TESTNUMBER0002
19
20 </data>
21 <data2 nocheck="yes">
22 HTTP/1.1 200 OK
23 Date: Thu, 09 Nov 2010 14:49:00 GMT
24 Server: the other one
25 Content-Type: text/html
26 Content-Length: 0
27 Set-Cookie: 1cookie=data1;
28 Set-Cookie: 2cookie=data2;
29
30 </data>
31 </reply>
32
33 # Client-side
34 <client>
35 <features>
36 headers-api
37 </features>
38 <server>
39 http
40 </server>
41
42 <name>
43 curl_easy_header with redirect but get headers from first request
44 </name>
45 <tool>
46 lib%TESTNUMBER
47 </tool>
48
49 <command>
50 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
51 </command>
52 </client>
53
54 # Verify data after the test has been "shot"
55 <verify>
56 <stdout>
57 Date == Thu, 01 Nov 2001 14:49:00 GMT
58 Server == test with trailing space
59 Content-Type == text/html
60 Content-Length == 0
61 Location == /19460002
62 - Set-Cookie == onecookie=data; (0/3)
63 - Set-Cookie == secondcookie=2data; (1/3)
64 - Set-Cookie == cookie3=data3; (2/3)
65 </stdout>
66 </verify>
67 </testcase>
Binary diff not shown
2929 <features>
3030 alt-svc
3131 debug
32 h2c
3233 </features>
3334 <server>
3435 http
2929 <features>
3030 alt-svc
3131 debug
32 h2c
3233 </features>
3334 <server>
3435 https
0 <testcase>
1 <info>
2 <keywords>
3 CURL_DISABLE_PROXY
4 </keywords>
5 </info>
6
7 <client>
8 <features>
9 !proxy
10 </features>
11 <server>
12 none
13 </server>
14 <name>
15 Disabled proxy should make curl fail with --proxy
16 </name>
17 <command>
18 -x wohoo http://example.com/
19 </command>
20 </client>
21
22 #
23 # Verify data after the test has been "shot"
24 <verify>
25 <stderr mode="text">
26 curl: proxy support is disabled in this libcurl
27 </stderr>
28 <errorcode>
29 4
30 </errorcode>
31 </verify>
32 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 </keywords>
6 </info>
7
8 #
9 # Crafted to cause error 18
10 <reply>
11 <data nocheck="yes">
12 HTTP/1.1 200 OK swsclose
13 Date: Tue, 09 Nov 2010 14:49:00 GMT
14 Server: test-server/fake
15 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
16 ETag: "21025-dc7-39462498"
17 Accept-Ranges: bytes
18 Content-Length: 75
19 Connection: close
20 Content-Type: text/html
21 Funny-head: yesyes
22
23 -foo-
24 </data>
25 </reply>
26
27 #
28 # Client-side
29 <client>
30 <server>
31 http
32 </server>
33 <name>
34 HTTP GET
35 </name>
36 <command option="no-output">
37 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o log/save-%TESTNUMBER --remove-on-error
38 </command>
39 </client>
40
41 #
42 # Verify data after the test has been "shot". hyper doesn't do error 18
43 <verify>
44 <errorcode>
45 %if hyper
46 56
47 %else
48 18
49 %endif
50 </errorcode>
51 <protocol>
52 GET /%TESTNUMBER HTTP/1.1
53 Host: %HOSTIP:%HTTPPORT
54 User-Agent: curl/%VERSION
55 Accept: */*
56
57 </protocol>
58
59 # the file should be empty now
60 <file name="log/save-%TESTNUMBER">
61 </file>
62 </verify>
63 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP PUT
4 HTTP POST
5 </keywords>
6 </info>
7
8 #
9 # Server-side
10 <reply>
11 </reply>
12
13 #
14 # Client-side
15 <client>
16 <server>
17 none
18 </server>
19 <name>
20 Reject using -T and -d at once
21 </name>
22 <command>
23 -T log/%TESTNUMBER -d input http://never-accessed
24 </command>
25 </client>
26
27 #
28 # Verify data after the test has been "shot"
29 <verify>
30 <errorcode>
31 2
32 </errorcode>
33 <stderr mode="text">
34 Warning: You can only select one HTTP request method! You asked for both PUT
35 Warning: (-T, --upload-file) and POST (-d, --data).
36 </stderr>
37 </verify>
38 </testcase>
3535 Funny-head: yesyes
3636
3737 hello
38 </data>
38 </data2>
3939 </reply>
4040
4141 #
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 HTTP GET
5 </keywords>
6 </info>
7 #
8 # Server-side
9 <reply>
10
11 <data nocheck="yes">
12 HTTP/1.1 200 OK
13 Date: Tue, 09 Nov 2010 14:49:00 GMT
14 Server test-server/fake
15 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
16 ETag: "21025-dc7-39462498"
17 Accept-Ranges: bytes
18 Content-Length: 6
19 Connection: close
20 Content-Type: text/html
21 Funny-head: yesyes
22
23 hello
24 </data>
25 <datacheck>
26 HTTP/1.1 200 OK
27 Date: Tue, 09 Nov 2010 14:49:00 GMT
28 </datacheck>
29 </reply>
30
31 #
32 # Client-side
33 <client>
34 <server>
35 http
36 </server>
37 <name>
38 Reject HTTP/1.1 response with colon-less header
39 </name>
40 <command>
41 http://%HOSTIP:%HTTPPORT/%TESTNUMBER
42 </command>
43 </client>
44
45 #
46 # Verify data after the test has been "shot"
47 <verify>
48 <protocol>
49 GET /%TESTNUMBER HTTP/1.1
50 Host: %HOSTIP:%HTTPPORT
51 User-Agent: curl/%VERSION
52 Accept: */*
53
54 </protocol>
55 <errorcode>
56 %if hyper
57 1
58 %else
59 8
60 %endif
61 </errorcode>
62 </verify>
63 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 -K
4 </keywords>
5 </info>
6
7 #
8 # Server-side
9 <reply>
10 </reply>
11
12 #
13 # Client-side
14 <client>
15 <server>
16 none
17 </server>
18 <name>
19 -K with missing file causes error
20 </name>
21 <command>
22 -K log/missing http://localhost
23 </command>
24 </client>
25
26 #
27 # Verify data after the test has been "shot"
28 <verify>
29 <stderr mode="text">
30 curl: cannot read config from 'log/missing'
31 curl: option -K: error encountered when reading a file
32 %if manual
33 curl: try 'curl --help' or 'curl --manual' for more information
34 %else
35 curl: try 'curl --help' for more information
36 %endif
37 </stderr>
38 <errorcode>
39 26
40 </errorcode>
41 </verify>
42 </testcase>
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 socks4
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 socks5
1919
2020 # Client-side
2121 <client>
22 <features>
23 proxy
24 </features>
2225 <server>
2326 socks4
2427 </server>
3030 #
3131 # Client-side
3232 <client>
33 <features>
34 proxy
35 </features>
3336 <server>
3437 ftp
3538 socks4
3030 #
3131 # Client-side
3232 <client>
33 <features>
34 proxy
35 </features>
3336 <server>
3437 ftp
3538 socks5
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 socks4
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 socks5
2828 #
2929 # Client-side
3030 <client>
31 <features>
32 proxy
33 </features>
3134 <server>
3235 http
3336 socks5
2121 #
2222 # Client-side
2323 <client>
24 <features>
25 proxy
26 </features>
2427 <server>
2528 ftp
2629 socks5
1818 #
1919 # Client-side
2020 <client>
21 <features>
22 proxy
23 </features>
2124 <server>
2225 ftp
2326 socks5
1919 #
2020 # Client-side
2121 <client>
22 <features>
23 proxy
24 </features>
2225 <server>
2326 ftp
2427 socks5
3434 #
3535 # Client-side
3636 <client>
37 <features>
38 proxy
39 </features>
3740 <server>
3841 ftp
3942 http-proxy
3535 #
3636 # Client-side
3737 <client>
38 <features>
39 proxy
40 </features>
3841 <server>
3942 ftp
4043 http-proxy
1616 <connect>
1717 HTTP/1.1 407 Authorization Required to proxy me swsclose
1818 Proxy-Authenticate: Digest realm="weirdorealm", nonce="12345"
19
1920 </connect>
2021
2122 <datacheck>
2223 HTTP/1.1 407 Authorization Required to proxy me swsclose
2324 Proxy-Authenticate: Digest realm="weirdorealm", nonce="12345"
25
2426 </datacheck>
2527 </reply>
2628
3333 # Verify data after the test has been "shot"
3434 <verify>
3535 <errorcode>
36 56
36 8
3737 </errorcode>
3838 <protocol>
3939 CAPA
3333 # Verify data after the test has been "shot"
3434 <verify>
3535 <errorcode>
36 56
36 8
3737 </errorcode>
3838 <protocol>
3939 CAPA
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 --location
5 Authorization
6 Cookie
7 </keywords>
8 </info>
9
10 #
11 # Server-side
12 <reply>
13 <data>
14 HTTP/1.1 301 redirect
15 Date: Tue, 09 Nov 2010 14:49:00 GMT
16 Server: test-server/fake
17 Content-Length: 0
18 Connection: close
19 Content-Type: text/html
20 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
21
22 </data>
23 <data2>
24 HTTP/1.1 200 OK
25 Date: Tue, 09 Nov 2010 14:49:00 GMT
26 Server: test-server/fake
27 Content-Length: 4
28 Connection: close
29 Content-Type: text/html
30
31 hey
32 </data2>
33
34 <datacheck>
35 HTTP/1.1 301 redirect
36 Date: Tue, 09 Nov 2010 14:49:00 GMT
37 Server: test-server/fake
38 Content-Length: 0
39 Connection: close
40 Content-Type: text/html
41 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
42
43 HTTP/1.1 200 OK
44 Date: Tue, 09 Nov 2010 14:49:00 GMT
45 Server: test-server/fake
46 Content-Length: 4
47 Connection: close
48 Content-Type: text/html
49
50 hey
51 </datacheck>
52
53 </reply>
54
55 #
56 # Client-side
57 <client>
58 <features>
59 proxy
60 </features>
61 <server>
62 http
63 </server>
64 <name>
65 HTTP with custom auth and cookies redirected to HTTP on a diff port
66 </name>
67 <command>
68 -x http://%HOSTIP:%HTTPPORT http://firsthost.com -L -H "Authorization: Basic am9lOnNlY3JldA==" -H "Cookie: userpwd=am9lOnNlY3JldA=="
69 </command>
70 </client>
71
72 #
73 # Verify data after the test has been "shot"
74 <verify>
75 <protocol>
76 GET http://firsthost.com/ HTTP/1.1
77 Host: firsthost.com
78 User-Agent: curl/%VERSION
79 Accept: */*
80 Proxy-Connection: Keep-Alive
81 Authorization: Basic am9lOnNlY3JldA==
82 Cookie: userpwd=am9lOnNlY3JldA==
83
84 GET http://firsthost.com:9999/a/path/%TESTNUMBER0002 HTTP/1.1
85 Host: firsthost.com:9999
86 User-Agent: curl/%VERSION
87 Accept: */*
88 Proxy-Connection: Keep-Alive
89
90 </protocol>
91 </verify>
92 </testcase>
3030 #
3131 # Verify data after the test has been "shot"
3232 <verify>
33 # 56 - CURLE_RECV_ERROR
33 # 8 - CURLE_WEIRD_SERVER_REPLY
3434 <errorcode>
35 56
35 8
3636 </errorcode>
3737 <protocol>
3838 EHLO %TESTNUMBER
3737 #
3838 # Verify data after the test has been "shot"
3939 <verify>
40 # 56 - CURLE_RECV_ERROR
40 # 8 - CURLE_WEIRD_SERVER_REPLY
4141 <errorcode>
42 56
42 8
4343 </errorcode>
4444 <protocol>
4545 EHLO %TESTNUMBER
3737 #
3838 # Verify data after the test has been "shot"
3939 <verify>
40 # 56 - CURLE_RECV_ERROR
40 # 8 - CURLE_WEIRD_SERVER_REPLY
4141 <errorcode>
42 56
42 8
4343 </errorcode>
4444 <protocol>
4545 EHLO %TESTNUMBER
3838 #
3939 # Verify data after the test has been "shot"
4040 <verify>
41 # 56 - CURLE_RECV_ERROR
41 # 8 - CURLE_WEIRD_SERVER_REPLY
4242 <errorcode>
43 56
43 8
4444 </errorcode>
4545 <protocol>
4646 EHLO %TESTNUMBER
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 FTP
5 --location
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data>
13 HTTP/1.1 301 redirect
14 Date: Tue, 09 Nov 2010 14:49:00 GMT
15 Server: test-server/fake
16 Content-Length: 0
17 Connection: close
18 Content-Type: text/html
19 Location: ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER0002
20
21 </data>
22 <data2>
23 data
24 to
25 see
26 that FTP
27 works
28 so does it?
29 </data2>
30
31 <datacheck>
32 HTTP/1.1 301 redirect
33 Date: Tue, 09 Nov 2010 14:49:00 GMT
34 Server: test-server/fake
35 Content-Length: 0
36 Connection: close
37 Content-Type: text/html
38 Location: ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER0002
39
40 data
41 to
42 see
43 that FTP
44 works
45 so does it?
46 </datacheck>
47
48 </reply>
49
50 #
51 # Client-side
52 <client>
53 <server>
54 http
55 ftp
56 </server>
57 <name>
58 HTTP with auth redirected to FTP w/o auth
59 </name>
60 <command>
61 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -L -u joe:secret
62 </command>
63 </client>
64
65 #
66 # Verify data after the test has been "shot"
67 <verify>
68 <protocol>
69 GET /%TESTNUMBER HTTP/1.1
70 Host: %HOSTIP:%HTTPPORT
71 Authorization: Basic am9lOnNlY3JldA==
72 User-Agent: curl/%VERSION
73 Accept: */*
74
75 USER anonymous
76 PASS ftp@example.com
77 PWD
78 CWD a
79 CWD path
80 EPSV
81 TYPE I
82 SIZE %TESTNUMBER0002
83 RETR %TESTNUMBER0002
84 QUIT
85 </protocol>
86 </verify>
87 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 --location
5 </keywords>
6 </info>
7
8 #
9 # Server-side
10 <reply>
11 <data>
12 HTTP/1.1 301 redirect
13 Date: Tue, 09 Nov 2010 14:49:00 GMT
14 Server: test-server/fake
15 Content-Length: 0
16 Connection: close
17 Content-Type: text/html
18 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
19
20 </data>
21 <data2>
22 HTTP/1.1 200 OK
23 Date: Tue, 09 Nov 2010 14:49:00 GMT
24 Server: test-server/fake
25 Content-Length: 4
26 Connection: close
27 Content-Type: text/html
28
29 hey
30 </data2>
31
32 <datacheck>
33 HTTP/1.1 301 redirect
34 Date: Tue, 09 Nov 2010 14:49:00 GMT
35 Server: test-server/fake
36 Content-Length: 0
37 Connection: close
38 Content-Type: text/html
39 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
40
41 HTTP/1.1 200 OK
42 Date: Tue, 09 Nov 2010 14:49:00 GMT
43 Server: test-server/fake
44 Content-Length: 4
45 Connection: close
46 Content-Type: text/html
47
48 hey
49 </datacheck>
50
51 </reply>
52
53 #
54 # Client-side
55 <client>
56 <features>
57 proxy
58 </features>
59 <server>
60 http
61 </server>
62 <name>
63 HTTP with auth redirected to HTTP on a diff port w/o auth
64 </name>
65 <command>
66 -x http://%HOSTIP:%HTTPPORT http://firsthost.com -L -u joe:secret
67 </command>
68 </client>
69
70 #
71 # Verify data after the test has been "shot"
72 <verify>
73 <protocol>
74 GET http://firsthost.com/ HTTP/1.1
75 Host: firsthost.com
76 Authorization: Basic am9lOnNlY3JldA==
77 User-Agent: curl/%VERSION
78 Accept: */*
79 Proxy-Connection: Keep-Alive
80
81 GET http://firsthost.com:9999/a/path/%TESTNUMBER0002 HTTP/1.1
82 Host: firsthost.com:9999
83 User-Agent: curl/%VERSION
84 Accept: */*
85 Proxy-Connection: Keep-Alive
86
87 </protocol>
88 </verify>
89 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 FTP
5 --location-trusted
6 </keywords>
7 </info>
8
9 #
10 # Server-side
11 <reply>
12 <data>
13 HTTP/1.1 301 redirect
14 Date: Tue, 09 Nov 2010 14:49:00 GMT
15 Server: test-server/fake
16 Content-Length: 0
17 Connection: close
18 Content-Type: text/html
19 Location: ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER0002
20
21 </data>
22 <data2>
23 data
24 to
25 see
26 that FTP
27 works
28 so does it?
29 </data2>
30
31 <datacheck>
32 HTTP/1.1 301 redirect
33 Date: Tue, 09 Nov 2010 14:49:00 GMT
34 Server: test-server/fake
35 Content-Length: 0
36 Connection: close
37 Content-Type: text/html
38 Location: ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER0002
39
40 data
41 to
42 see
43 that FTP
44 works
45 so does it?
46 </datacheck>
47
48 </reply>
49
50 #
51 # Client-side
52 <client>
53 <server>
54 http
55 ftp
56 </server>
57 <name>
58 HTTP with auth redirected to FTP allowing auth to continue
59 </name>
60 <command>
61 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --location-trusted -u joe:secret
62 </command>
63 </client>
64
65 #
66 # Verify data after the test has been "shot"
67 <verify>
68 <protocol>
69 GET /%TESTNUMBER HTTP/1.1
70 Host: %HOSTIP:%HTTPPORT
71 Authorization: Basic am9lOnNlY3JldA==
72 User-Agent: curl/%VERSION
73 Accept: */*
74
75 USER joe
76 PASS secret
77 PWD
78 CWD a
79 CWD path
80 EPSV
81 TYPE I
82 SIZE %TESTNUMBER0002
83 RETR %TESTNUMBER0002
84 QUIT
85 </protocol>
86 </verify>
87 </testcase>
0 <testcase>
1 <info>
2 <keywords>
3 HTTP
4 --location-trusted
5 </keywords>
6 </info>
7
8 #
9 # Server-side
10 <reply>
11 <data>
12 HTTP/1.1 301 redirect
13 Date: Tue, 09 Nov 2010 14:49:00 GMT
14 Server: test-server/fake
15 Content-Length: 0
16 Connection: close
17 Content-Type: text/html
18 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
19
20 </data>
21 <data2>
22 HTTP/1.1 200 OK
23 Date: Tue, 09 Nov 2010 14:49:00 GMT
24 Server: test-server/fake
25 Content-Length: 4
26 Connection: close
27 Content-Type: text/html
28
29 hey
30 </data2>
31
32 <datacheck>
33 HTTP/1.1 301 redirect
34 Date: Tue, 09 Nov 2010 14:49:00 GMT
35 Server: test-server/fake
36 Content-Length: 0
37 Connection: close
38 Content-Type: text/html
39 Location: http://firsthost.com:9999/a/path/%TESTNUMBER0002
40
41 HTTP/1.1 200 OK
42 Date: Tue, 09 Nov 2010 14:49:00 GMT
43 Server: test-server/fake
44 Content-Length: 4
45 Connection: close
46 Content-Type: text/html
47
48 hey
49 </datacheck>
50
51 </reply>
52
53 #
54 # Client-side
55 <client>
56 <features>
57 proxy
58 </features>
59 <server>
60 http
61 </server>
62 <name>
63 HTTP with auth redirected to HTTP on a diff port --location-trusted
64 </name>
65 <command>
66 -x http://%HOSTIP:%HTTPPORT http://firsthost.com --location-trusted -u joe:secret
67 </command>
68 </client>
69
70 #
71 # Verify data after the test has been "shot"
72 <verify>
73 <protocol>
74 GET http://firsthost.com/ HTTP/1.1
75 Host: firsthost.com
76 Authorization: Basic am9lOnNlY3JldA==
77 User-Agent: curl/%VERSION
78 Accept: */*
79 Proxy-Connection: Keep-Alive
80
81 GET http://firsthost.com:9999/a/path/%TESTNUMBER0002 HTTP/1.1
82 Host: firsthost.com:9999
83 Authorization: Basic am9lOnNlY3JldA==
84 User-Agent: curl/%VERSION
85 Accept: */*
86 Proxy-Connection: Keep-Alive
87
88 </protocol>
89 </verify>
90 </testcase>
55 # | (__| |_| | _ <| |___
66 # \___|\___/|_| \_\_____|
77 #
8 # Copyright (C) 2010 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
8 # Copyright (C) 2010 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
99 #
1010 # This software is licensed as described in the file COPYING, which
1111 # you should have received as part of this distribution. The terms
3333 "$root/include/curl/easy.h",
3434 "$root/include/curl/mprintf.h",
3535 "$root/include/curl/multi.h",
36 "$root/include/curl/urlapi.h",
37 "$root/include/curl/options.h",
38 "$root/include/curl/header.h",
3639 );
3740
3841 my $verbose=0;
4649 sub scanheader {
4750 my ($f)=@_;
4851 open H, "<$f" || die;
52 my $first = "";
4953 while(<H>) {
50 if (/^(CURL_EXTERN.*)/) {
54 if (/^(^CURL_EXTERN .*)\(/) {
5155 my $decl = $1;
5256 $decl =~ s/\r$//;
5357 print "$decl\n";
58 }
59 elsif (/^(^CURL_EXTERN .*)/) {
60 # handle two-line declarations
61 my $decl = $1;
62 $decl =~ s/\r$//;
63 $first = $decl;
64 }
65 elsif($first) {
66 if (/^(.*)\(/) {
67 my $decl = $1;
68 $decl =~ s/\r$//;
69 $first .= $decl;
70 print "$first\n";
71 }
72 $first = "";
5473 }
5574 }
5675 close H;
129129 CS_ = $(CS_0)
130130
131131 checksrc:
132 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.[ch]
132 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/*.[ch]
133133
134134 if CURLDEBUG
135135 # for debug builds, we scan the sources on all regular make invokes
150150 lib1915$(EXEEXT) lib1916$(EXEEXT) lib1917$(EXEEXT) \
151151 lib1918$(EXEEXT) lib1933$(EXEEXT) lib1934$(EXEEXT) \
152152 lib1935$(EXEEXT) lib1936$(EXEEXT) lib1937$(EXEEXT) \
153 lib1938$(EXEEXT) lib1939$(EXEEXT) lib3010$(EXEEXT) \
153 lib1938$(EXEEXT) lib1939$(EXEEXT) lib1940$(EXEEXT) \
154 lib1945$(EXEEXT) lib1946$(EXEEXT) lib3010$(EXEEXT) \
154155 lib3025$(EXEEXT)
155156 @USE_CPPFLAG_CURL_STATICLIB_TRUE@am__append_1 = -DCURL_STATICLIB
156157 @CURL_LT_SHLIB_USE_NO_UNDEFINED_TRUE@am__append_2 = -no-undefined
232233 am_chkhostname_OBJECTS = chkhostname-chkhostname.$(OBJEXT) \
233234 ../../lib/chkhostname-curl_gethostname.$(OBJEXT)
234235 chkhostname_OBJECTS = $(am_chkhostname_OBJECTS)
235 am__objects_1 = lib1156-first.$(OBJEXT)
236 am__objects_1 = ../../lib/lib1156-timediff.$(OBJEXT) \
237 lib1156-first.$(OBJEXT)
236238 am__objects_2 = lib1156-testutil.$(OBJEXT)
237239 am__objects_3 = ../../lib/lib1156-warnless.$(OBJEXT)
238240 am_lib1156_OBJECTS = lib1156-lib1156.$(OBJEXT) $(am__objects_1) \
243245 @USE_EXPLICIT_LIB_DEPS_TRUE@am__DEPENDENCIES_1 = \
244246 @USE_EXPLICIT_LIB_DEPS_TRUE@ $(top_builddir)/lib/libcurl.la
245247 lib1156_DEPENDENCIES = $(am__DEPENDENCIES_1)
246 am__objects_4 = lib1500-first.$(OBJEXT)
248 am__objects_4 = ../../lib/lib1500-timediff.$(OBJEXT) \
249 lib1500-first.$(OBJEXT)
247250 am__objects_5 = lib1500-testutil.$(OBJEXT)
248251 am_lib1500_OBJECTS = lib1500-lib1500.$(OBJEXT) $(am__objects_4) \
249252 $(am__objects_5)
250253 lib1500_OBJECTS = $(am_lib1500_OBJECTS)
251254 lib1500_DEPENDENCIES = $(am__DEPENDENCIES_1)
252 am__objects_6 = lib1501-first.$(OBJEXT)
255 am__objects_6 = ../../lib/lib1501-timediff.$(OBJEXT) \
256 lib1501-first.$(OBJEXT)
253257 am__objects_7 = lib1501-testutil.$(OBJEXT)
254258 am__objects_8 = ../../lib/lib1501-warnless.$(OBJEXT)
255259 am_lib1501_OBJECTS = lib1501-lib1501.$(OBJEXT) $(am__objects_6) \
256260 $(am__objects_7) $(am__objects_8)
257261 lib1501_OBJECTS = $(am_lib1501_OBJECTS)
258262 lib1501_DEPENDENCIES = $(am__DEPENDENCIES_1)
259 am__objects_9 = lib1502-first.$(OBJEXT)
263 am__objects_9 = ../../lib/lib1502-timediff.$(OBJEXT) \
264 lib1502-first.$(OBJEXT)
260265 am__objects_10 = lib1502-testutil.$(OBJEXT)
261266 am__objects_11 = ../../lib/lib1502-warnless.$(OBJEXT)
262267 am_lib1502_OBJECTS = lib1502-lib1502.$(OBJEXT) $(am__objects_9) \
263268 $(am__objects_10) $(am__objects_11)
264269 lib1502_OBJECTS = $(am_lib1502_OBJECTS)
265270 lib1502_DEPENDENCIES = $(am__DEPENDENCIES_1)
266 am__objects_12 = lib1503-first.$(OBJEXT)
271 am__objects_12 = ../../lib/lib1503-timediff.$(OBJEXT) \
272 lib1503-first.$(OBJEXT)
267273 am__objects_13 = lib1503-testutil.$(OBJEXT)
268274 am__objects_14 = ../../lib/lib1503-warnless.$(OBJEXT)
269275 am_lib1503_OBJECTS = lib1503-lib1502.$(OBJEXT) $(am__objects_12) \
270276 $(am__objects_13) $(am__objects_14)
271277 lib1503_OBJECTS = $(am_lib1503_OBJECTS)
272278 lib1503_DEPENDENCIES = $(am__DEPENDENCIES_1)
273 am__objects_15 = lib1504-first.$(OBJEXT)
279 am__objects_15 = ../../lib/lib1504-timediff.$(OBJEXT) \
280 lib1504-first.$(OBJEXT)
274281 am__objects_16 = lib1504-testutil.$(OBJEXT)
275282 am__objects_17 = ../../lib/lib1504-warnless.$(OBJEXT)
276283 am_lib1504_OBJECTS = lib1504-lib1502.$(OBJEXT) $(am__objects_15) \
277284 $(am__objects_16) $(am__objects_17)
278285 lib1504_OBJECTS = $(am_lib1504_OBJECTS)
279286 lib1504_DEPENDENCIES = $(am__DEPENDENCIES_1)
280 am__objects_18 = lib1505-first.$(OBJEXT)
287 am__objects_18 = ../../lib/lib1505-timediff.$(OBJEXT) \
288 lib1505-first.$(OBJEXT)
281289 am__objects_19 = lib1505-testutil.$(OBJEXT)
282290 am__objects_20 = ../../lib/lib1505-warnless.$(OBJEXT)
283291 am_lib1505_OBJECTS = lib1505-lib1502.$(OBJEXT) $(am__objects_18) \
284292 $(am__objects_19) $(am__objects_20)
285293 lib1505_OBJECTS = $(am_lib1505_OBJECTS)
286294 lib1505_DEPENDENCIES = $(am__DEPENDENCIES_1)
287 am__objects_21 = lib1506-first.$(OBJEXT)
295 am__objects_21 = ../../lib/lib1506-timediff.$(OBJEXT) \
296 lib1506-first.$(OBJEXT)
288297 am__objects_22 = lib1506-testutil.$(OBJEXT)
289298 am__objects_23 = ../../lib/lib1506-warnless.$(OBJEXT)
290299 am_lib1506_OBJECTS = lib1506-lib1506.$(OBJEXT) $(am__objects_21) \
291300 $(am__objects_22) $(am__objects_23)
292301 lib1506_OBJECTS = $(am_lib1506_OBJECTS)
293302 lib1506_DEPENDENCIES = $(am__DEPENDENCIES_1)
294 am__objects_24 = lib1507-first.$(OBJEXT)
303 am__objects_24 = ../../lib/lib1507-timediff.$(OBJEXT) \
304 lib1507-first.$(OBJEXT)
295305 am__objects_25 = lib1507-testutil.$(OBJEXT)
296306 am__objects_26 = ../../lib/lib1507-warnless.$(OBJEXT)
297307 am_lib1507_OBJECTS = lib1507-lib1507.$(OBJEXT) $(am__objects_24) \
298308 $(am__objects_25) $(am__objects_26)
299309 lib1507_OBJECTS = $(am_lib1507_OBJECTS)
300310 lib1507_DEPENDENCIES = $(am__DEPENDENCIES_1)
301 am__objects_27 = lib1508-first.$(OBJEXT)
311 am__objects_27 = ../../lib/lib1508-timediff.$(OBJEXT) \
312 lib1508-first.$(OBJEXT)
302313 am__objects_28 = lib1508-testutil.$(OBJEXT)
303314 am__objects_29 = ../../lib/lib1508-warnless.$(OBJEXT)
304315 am_lib1508_OBJECTS = lib1508-lib1508.$(OBJEXT) $(am__objects_27) \
305316 $(am__objects_28) $(am__objects_29)
306317 lib1508_OBJECTS = $(am_lib1508_OBJECTS)
307318 lib1508_DEPENDENCIES = $(am__DEPENDENCIES_1)
308 am__objects_30 = lib1509-first.$(OBJEXT)
319 am__objects_30 = ../../lib/lib1509-timediff.$(OBJEXT) \
320 lib1509-first.$(OBJEXT)
309321 am__objects_31 = lib1509-testutil.$(OBJEXT)
310322 am__objects_32 = ../../lib/lib1509-warnless.$(OBJEXT)
311323 am_lib1509_OBJECTS = lib1509-lib1509.$(OBJEXT) $(am__objects_30) \
312324 $(am__objects_31) $(am__objects_32)
313325 lib1509_OBJECTS = $(am_lib1509_OBJECTS)
314326 lib1509_DEPENDENCIES = $(am__DEPENDENCIES_1)
315 am__objects_33 = lib1510-first.$(OBJEXT)
327 am__objects_33 = ../../lib/lib1510-timediff.$(OBJEXT) \
328 lib1510-first.$(OBJEXT)
316329 am__objects_34 = lib1510-testutil.$(OBJEXT)
317330 am__objects_35 = ../../lib/lib1510-warnless.$(OBJEXT)
318331 am_lib1510_OBJECTS = lib1510-lib1510.$(OBJEXT) $(am__objects_33) \
319332 $(am__objects_34) $(am__objects_35)
320333 lib1510_OBJECTS = $(am_lib1510_OBJECTS)
321334 lib1510_DEPENDENCIES = $(am__DEPENDENCIES_1)
322 am__objects_36 = lib1511-first.$(OBJEXT)
335 am__objects_36 = ../../lib/lib1511-timediff.$(OBJEXT) \
336 lib1511-first.$(OBJEXT)
323337 am__objects_37 = lib1511-testutil.$(OBJEXT)
324338 am__objects_38 = ../../lib/lib1511-warnless.$(OBJEXT)
325339 am_lib1511_OBJECTS = lib1511-lib1511.$(OBJEXT) $(am__objects_36) \
326340 $(am__objects_37) $(am__objects_38)
327341 lib1511_OBJECTS = $(am_lib1511_OBJECTS)
328342 lib1511_DEPENDENCIES = $(am__DEPENDENCIES_1)
329 am__objects_39 = lib1512-first.$(OBJEXT)
343 am__objects_39 = ../../lib/lib1512-timediff.$(OBJEXT) \
344 lib1512-first.$(OBJEXT)
330345 am__objects_40 = lib1512-testutil.$(OBJEXT)
331346 am__objects_41 = ../../lib/lib1512-warnless.$(OBJEXT)
332347 am_lib1512_OBJECTS = lib1512-lib1512.$(OBJEXT) $(am__objects_39) \
333348 $(am__objects_40) $(am__objects_41)
334349 lib1512_OBJECTS = $(am_lib1512_OBJECTS)
335350 lib1512_DEPENDENCIES = $(am__DEPENDENCIES_1)
336 am__objects_42 = lib1513-first.$(OBJEXT)
351 am__objects_42 = ../../lib/lib1513-timediff.$(OBJEXT) \
352 lib1513-first.$(OBJEXT)
337353 am__objects_43 = lib1513-testutil.$(OBJEXT)
338354 am__objects_44 = ../../lib/lib1513-warnless.$(OBJEXT)
339355 am_lib1513_OBJECTS = lib1513-lib1513.$(OBJEXT) $(am__objects_42) \
340356 $(am__objects_43) $(am__objects_44)
341357 lib1513_OBJECTS = $(am_lib1513_OBJECTS)
342358 lib1513_DEPENDENCIES = $(am__DEPENDENCIES_1)
343 am__objects_45 = lib1514-first.$(OBJEXT)
359 am__objects_45 = ../../lib/lib1514-timediff.$(OBJEXT) \
360 lib1514-first.$(OBJEXT)
344361 am__objects_46 = lib1514-testutil.$(OBJEXT)
345362 am__objects_47 = ../../lib/lib1514-warnless.$(OBJEXT)
346363 am_lib1514_OBJECTS = lib1514-lib1514.$(OBJEXT) $(am__objects_45) \
347364 $(am__objects_46) $(am__objects_47)
348365 lib1514_OBJECTS = $(am_lib1514_OBJECTS)
349366 lib1514_DEPENDENCIES = $(am__DEPENDENCIES_1)
350 am__objects_48 = lib1515-first.$(OBJEXT)
367 am__objects_48 = ../../lib/lib1515-timediff.$(OBJEXT) \
368 lib1515-first.$(OBJEXT)
351369 am__objects_49 = lib1515-testutil.$(OBJEXT)
352370 am__objects_50 = ../../lib/lib1515-warnless.$(OBJEXT)
353371 am_lib1515_OBJECTS = lib1515-lib1515.$(OBJEXT) $(am__objects_48) \
354372 $(am__objects_49) $(am__objects_50)
355373 lib1515_OBJECTS = $(am_lib1515_OBJECTS)
356374 lib1515_DEPENDENCIES = $(am__DEPENDENCIES_1)
357 am__objects_51 = lib1517-first.$(OBJEXT)
375 am__objects_51 = ../../lib/lib1517-timediff.$(OBJEXT) \
376 lib1517-first.$(OBJEXT)
358377 am_lib1517_OBJECTS = lib1517-lib1517.$(OBJEXT) $(am__objects_51)
359378 lib1517_OBJECTS = $(am_lib1517_OBJECTS)
360379 lib1517_LDADD = $(LDADD)
361380 lib1517_DEPENDENCIES = $(am__DEPENDENCIES_1)
362 am__objects_52 = lib1518-first.$(OBJEXT)
381 am__objects_52 = ../../lib/lib1518-timediff.$(OBJEXT) \
382 lib1518-first.$(OBJEXT)
363383 am_lib1518_OBJECTS = lib1518-lib1518.$(OBJEXT) $(am__objects_52)
364384 lib1518_OBJECTS = $(am_lib1518_OBJECTS)
365385 lib1518_LDADD = $(LDADD)
366386 lib1518_DEPENDENCIES = $(am__DEPENDENCIES_1)
367 am__objects_53 = lib1520-first.$(OBJEXT)
387 am__objects_53 = ../../lib/lib1520-timediff.$(OBJEXT) \
388 lib1520-first.$(OBJEXT)
368389 am_lib1520_OBJECTS = lib1520-lib1520.$(OBJEXT) $(am__objects_53)
369390 lib1520_OBJECTS = $(am_lib1520_OBJECTS)
370391 lib1520_LDADD = $(LDADD)
371392 lib1520_DEPENDENCIES = $(am__DEPENDENCIES_1)
372 am__objects_54 = lib1521-first.$(OBJEXT)
393 am__objects_54 = ../../lib/lib1521-timediff.$(OBJEXT) \
394 lib1521-first.$(OBJEXT)
373395 nodist_lib1521_OBJECTS = lib1521-lib1521.$(OBJEXT) $(am__objects_54)
374396 lib1521_OBJECTS = $(nodist_lib1521_OBJECTS)
375397 lib1521_LDADD = $(LDADD)
376398 lib1521_DEPENDENCIES = $(am__DEPENDENCIES_1)
377 am__objects_55 = lib1522-first.$(OBJEXT)
399 am__objects_55 = ../../lib/lib1522-timediff.$(OBJEXT) \
400 lib1522-first.$(OBJEXT)
378401 am__objects_56 = lib1522-testutil.$(OBJEXT)
379402 am__objects_57 = lib1522-testtrace.$(OBJEXT)
380403 am_lib1522_OBJECTS = lib1522-lib1522.$(OBJEXT) $(am__objects_55) \
381404 $(am__objects_56) $(am__objects_57)
382405 lib1522_OBJECTS = $(am_lib1522_OBJECTS)
383406 lib1522_DEPENDENCIES = $(am__DEPENDENCIES_1)
384 am__objects_58 = lib1523-first.$(OBJEXT)
407 am__objects_58 = ../../lib/lib1523-timediff.$(OBJEXT) \
408 lib1523-first.$(OBJEXT)
385409 am_lib1523_OBJECTS = lib1523-lib1523.$(OBJEXT) $(am__objects_58)
386410 lib1523_OBJECTS = $(am_lib1523_OBJECTS)
387411 lib1523_LDADD = $(LDADD)
388412 lib1523_DEPENDENCIES = $(am__DEPENDENCIES_1)
389 am__objects_59 = lib1525-first.$(OBJEXT)
413 am__objects_59 = ../../lib/lib1525-timediff.$(OBJEXT) \
414 lib1525-first.$(OBJEXT)
390415 am__objects_60 = lib1525-testutil.$(OBJEXT)
391416 am__objects_61 = ../../lib/lib1525-warnless.$(OBJEXT)
392417 am_lib1525_OBJECTS = lib1525-lib1525.$(OBJEXT) $(am__objects_59) \
393418 $(am__objects_60) $(am__objects_61)
394419 lib1525_OBJECTS = $(am_lib1525_OBJECTS)
395420 lib1525_DEPENDENCIES = $(am__DEPENDENCIES_1)
396 am__objects_62 = lib1526-first.$(OBJEXT)
421 am__objects_62 = ../../lib/lib1526-timediff.$(OBJEXT) \
422 lib1526-first.$(OBJEXT)
397423 am__objects_63 = lib1526-testutil.$(OBJEXT)
398424 am__objects_64 = ../../lib/lib1526-warnless.$(OBJEXT)
399425 am_lib1526_OBJECTS = lib1526-lib1526.$(OBJEXT) $(am__objects_62) \
400426 $(am__objects_63) $(am__objects_64)
401427 lib1526_OBJECTS = $(am_lib1526_OBJECTS)
402428 lib1526_DEPENDENCIES = $(am__DEPENDENCIES_1)
403 am__objects_65 = lib1527-first.$(OBJEXT)
429 am__objects_65 = ../../lib/lib1527-timediff.$(OBJEXT) \
430 lib1527-first.$(OBJEXT)
404431 am__objects_66 = lib1527-testutil.$(OBJEXT)
405432 am__objects_67 = ../../lib/lib1527-warnless.$(OBJEXT)
406433 am_lib1527_OBJECTS = lib1527-lib1527.$(OBJEXT) $(am__objects_65) \
407434 $(am__objects_66) $(am__objects_67)
408435 lib1527_OBJECTS = $(am_lib1527_OBJECTS)
409436 lib1527_DEPENDENCIES = $(am__DEPENDENCIES_1)
410 am__objects_68 = lib1528-first.$(OBJEXT)
437 am__objects_68 = ../../lib/lib1528-timediff.$(OBJEXT) \
438 lib1528-first.$(OBJEXT)
411439 am__objects_69 = lib1528-testutil.$(OBJEXT)
412440 am__objects_70 = ../../lib/lib1528-warnless.$(OBJEXT)
413441 am_lib1528_OBJECTS = lib1528-lib1528.$(OBJEXT) $(am__objects_68) \
414442 $(am__objects_69) $(am__objects_70)
415443 lib1528_OBJECTS = $(am_lib1528_OBJECTS)
416444 lib1528_DEPENDENCIES = $(am__DEPENDENCIES_1)
417 am__objects_71 = lib1529-first.$(OBJEXT)
445 am__objects_71 = ../../lib/lib1529-timediff.$(OBJEXT) \
446 lib1529-first.$(OBJEXT)
418447 am__objects_72 = lib1529-testutil.$(OBJEXT)
419448 am__objects_73 = ../../lib/lib1529-warnless.$(OBJEXT)
420449 am_lib1529_OBJECTS = lib1529-lib1529.$(OBJEXT) $(am__objects_71) \
421450 $(am__objects_72) $(am__objects_73)
422451 lib1529_OBJECTS = $(am_lib1529_OBJECTS)
423452 lib1529_DEPENDENCIES = $(am__DEPENDENCIES_1)
424 am__objects_74 = lib1530-first.$(OBJEXT)
453 am__objects_74 = ../../lib/lib1530-timediff.$(OBJEXT) \
454 lib1530-first.$(OBJEXT)
425455 am__objects_75 = lib1530-testutil.$(OBJEXT)
426456 am__objects_76 = ../../lib/lib1530-warnless.$(OBJEXT)
427457 am_lib1530_OBJECTS = lib1530-lib1530.$(OBJEXT) $(am__objects_74) \
428458 $(am__objects_75) $(am__objects_76)
429459 lib1530_OBJECTS = $(am_lib1530_OBJECTS)
430460 lib1530_DEPENDENCIES = $(am__DEPENDENCIES_1)
431 am__objects_77 = lib1531-first.$(OBJEXT)
461 am__objects_77 = ../../lib/lib1531-timediff.$(OBJEXT) \
462 lib1531-first.$(OBJEXT)
432463 am__objects_78 = lib1531-testutil.$(OBJEXT)
433464 am__objects_79 = ../../lib/lib1531-warnless.$(OBJEXT)
434465 am_lib1531_OBJECTS = lib1531-lib1531.$(OBJEXT) $(am__objects_77) \
435466 $(am__objects_78) $(am__objects_79)
436467 lib1531_OBJECTS = $(am_lib1531_OBJECTS)
437468 lib1531_DEPENDENCIES = $(am__DEPENDENCIES_1)
438 am__objects_80 = lib1532-first.$(OBJEXT)
469 am__objects_80 = ../../lib/lib1532-timediff.$(OBJEXT) \
470 lib1532-first.$(OBJEXT)
439471 am__objects_81 = lib1532-testutil.$(OBJEXT)
440472 am__objects_82 = ../../lib/lib1532-warnless.$(OBJEXT)
441473 am_lib1532_OBJECTS = lib1532-lib1532.$(OBJEXT) $(am__objects_80) \
442474 $(am__objects_81) $(am__objects_82)
443475 lib1532_OBJECTS = $(am_lib1532_OBJECTS)
444476 lib1532_DEPENDENCIES = $(am__DEPENDENCIES_1)
445 am__objects_83 = lib1533-first.$(OBJEXT)
477 am__objects_83 = ../../lib/lib1533-timediff.$(OBJEXT) \
478 lib1533-first.$(OBJEXT)
446479 am__objects_84 = lib1533-testutil.$(OBJEXT)
447480 am__objects_85 = ../../lib/lib1533-warnless.$(OBJEXT)
448481 am_lib1533_OBJECTS = lib1533-lib1533.$(OBJEXT) $(am__objects_83) \
449482 $(am__objects_84) $(am__objects_85)
450483 lib1533_OBJECTS = $(am_lib1533_OBJECTS)
451484 lib1533_DEPENDENCIES = $(am__DEPENDENCIES_1)
452 am__objects_86 = lib1534-first.$(OBJEXT)
485 am__objects_86 = ../../lib/lib1534-timediff.$(OBJEXT) \
486 lib1534-first.$(OBJEXT)
453487 am__objects_87 = lib1534-testutil.$(OBJEXT)
454488 am__objects_88 = ../../lib/lib1534-warnless.$(OBJEXT)
455489 am_lib1534_OBJECTS = lib1534-lib1534.$(OBJEXT) $(am__objects_86) \
456490 $(am__objects_87) $(am__objects_88)
457491 lib1534_OBJECTS = $(am_lib1534_OBJECTS)
458492 lib1534_DEPENDENCIES = $(am__DEPENDENCIES_1)
459 am__objects_89 = lib1535-first.$(OBJEXT)
493 am__objects_89 = ../../lib/lib1535-timediff.$(OBJEXT) \
494 lib1535-first.$(OBJEXT)
460495 am__objects_90 = lib1535-testutil.$(OBJEXT)
461496 am__objects_91 = ../../lib/lib1535-warnless.$(OBJEXT)
462497 am_lib1535_OBJECTS = lib1535-lib1535.$(OBJEXT) $(am__objects_89) \
463498 $(am__objects_90) $(am__objects_91)
464499 lib1535_OBJECTS = $(am_lib1535_OBJECTS)
465500 lib1535_DEPENDENCIES = $(am__DEPENDENCIES_1)
466 am__objects_92 = lib1536-first.$(OBJEXT)
501 am__objects_92 = ../../lib/lib1536-timediff.$(OBJEXT) \
502 lib1536-first.$(OBJEXT)
467503 am__objects_93 = lib1536-testutil.$(OBJEXT)
468504 am__objects_94 = ../../lib/lib1536-warnless.$(OBJEXT)
469505 am_lib1536_OBJECTS = lib1536-lib1536.$(OBJEXT) $(am__objects_92) \
470506 $(am__objects_93) $(am__objects_94)
471507 lib1536_OBJECTS = $(am_lib1536_OBJECTS)
472508 lib1536_DEPENDENCIES = $(am__DEPENDENCIES_1)
473 am__objects_95 = lib1537-first.$(OBJEXT)
509 am__objects_95 = ../../lib/lib1537-timediff.$(OBJEXT) \
510 lib1537-first.$(OBJEXT)
474511 am__objects_96 = lib1537-testutil.$(OBJEXT)
475512 am__objects_97 = ../../lib/lib1537-warnless.$(OBJEXT)
476513 am_lib1537_OBJECTS = lib1537-lib1537.$(OBJEXT) $(am__objects_95) \
477514 $(am__objects_96) $(am__objects_97)
478515 lib1537_OBJECTS = $(am_lib1537_OBJECTS)
479516 lib1537_DEPENDENCIES = $(am__DEPENDENCIES_1)
480 am__objects_98 = lib1538-first.$(OBJEXT)
517 am__objects_98 = ../../lib/lib1538-timediff.$(OBJEXT) \
518 lib1538-first.$(OBJEXT)
481519 am__objects_99 = lib1538-testutil.$(OBJEXT)
482520 am__objects_100 = ../../lib/lib1538-warnless.$(OBJEXT)
483521 am_lib1538_OBJECTS = lib1538-lib1538.$(OBJEXT) $(am__objects_98) \
484522 $(am__objects_99) $(am__objects_100)
485523 lib1538_OBJECTS = $(am_lib1538_OBJECTS)
486524 lib1538_DEPENDENCIES = $(am__DEPENDENCIES_1)
487 am__objects_101 = lib1539-first.$(OBJEXT)
525 am__objects_101 = ../../lib/lib1539-timediff.$(OBJEXT) \
526 lib1539-first.$(OBJEXT)
488527 am__objects_102 = lib1539-testutil.$(OBJEXT)
489528 am__objects_103 = ../../lib/lib1539-warnless.$(OBJEXT)
490529 am_lib1539_OBJECTS = lib1539-lib1514.$(OBJEXT) $(am__objects_101) \
491530 $(am__objects_102) $(am__objects_103)
492531 lib1539_OBJECTS = $(am_lib1539_OBJECTS)
493532 lib1539_DEPENDENCIES = $(am__DEPENDENCIES_1)
494 am__objects_104 = lib1540-first.$(OBJEXT)
533 am__objects_104 = ../../lib/lib1540-timediff.$(OBJEXT) \
534 lib1540-first.$(OBJEXT)
495535 am__objects_105 = lib1540-testutil.$(OBJEXT)
496536 am__objects_106 = ../../lib/lib1540-warnless.$(OBJEXT)
497537 am_lib1540_OBJECTS = lib1540-lib1540.$(OBJEXT) $(am__objects_104) \
498538 $(am__objects_105) $(am__objects_106)
499539 lib1540_OBJECTS = $(am_lib1540_OBJECTS)
500540 lib1540_DEPENDENCIES = $(am__DEPENDENCIES_1)
501 am__objects_107 = lib1542-first.$(OBJEXT)
541 am__objects_107 = ../../lib/lib1542-timediff.$(OBJEXT) \
542 lib1542-first.$(OBJEXT)
502543 am__objects_108 = lib1542-testutil.$(OBJEXT)
503544 am__objects_109 = lib1542-testtrace.$(OBJEXT)
504545 am__objects_110 = ../../lib/lib1542-warnless.$(OBJEXT)
506547 $(am__objects_108) $(am__objects_109) $(am__objects_110)
507548 lib1542_OBJECTS = $(am_lib1542_OBJECTS)
508549 lib1542_DEPENDENCIES = $(am__DEPENDENCIES_1)
509 am__objects_111 = lib1550-first.$(OBJEXT)
550 am__objects_111 = ../../lib/lib1550-timediff.$(OBJEXT) \
551 lib1550-first.$(OBJEXT)
510552 am_lib1550_OBJECTS = lib1550-lib1550.$(OBJEXT) $(am__objects_111)
511553 lib1550_OBJECTS = $(am_lib1550_OBJECTS)
512554 lib1550_LDADD = $(LDADD)
513555 lib1550_DEPENDENCIES = $(am__DEPENDENCIES_1)
514 am__objects_112 = lib1551-first.$(OBJEXT)
556 am__objects_112 = ../../lib/lib1551-timediff.$(OBJEXT) \
557 lib1551-first.$(OBJEXT)
515558 am_lib1551_OBJECTS = lib1551-lib1551.$(OBJEXT) $(am__objects_112)
516559 lib1551_OBJECTS = $(am_lib1551_OBJECTS)
517560 lib1551_LDADD = $(LDADD)
518561 lib1551_DEPENDENCIES = $(am__DEPENDENCIES_1)
519 am__objects_113 = lib1552-first.$(OBJEXT)
562 am__objects_113 = ../../lib/lib1552-timediff.$(OBJEXT) \
563 lib1552-first.$(OBJEXT)
520564 am__objects_114 = lib1552-testutil.$(OBJEXT)
521565 am_lib1552_OBJECTS = lib1552-lib1552.$(OBJEXT) $(am__objects_113) \
522566 $(am__objects_114)
523567 lib1552_OBJECTS = $(am_lib1552_OBJECTS)
524568 lib1552_DEPENDENCIES = $(am__DEPENDENCIES_1)
525 am__objects_115 = lib1553-first.$(OBJEXT)
569 am__objects_115 = ../../lib/lib1553-timediff.$(OBJEXT) \
570 lib1553-first.$(OBJEXT)
526571 am__objects_116 = lib1553-testutil.$(OBJEXT)
527572 am_lib1553_OBJECTS = lib1553-lib1553.$(OBJEXT) $(am__objects_115) \
528573 $(am__objects_116)
529574 lib1553_OBJECTS = $(am_lib1553_OBJECTS)
530575 lib1553_DEPENDENCIES = $(am__DEPENDENCIES_1)
531 am__objects_117 = lib1554-first.$(OBJEXT)
576 am__objects_117 = ../../lib/lib1554-timediff.$(OBJEXT) \
577 lib1554-first.$(OBJEXT)
532578 am_lib1554_OBJECTS = lib1554-lib1554.$(OBJEXT) $(am__objects_117)
533579 lib1554_OBJECTS = $(am_lib1554_OBJECTS)
534580 lib1554_LDADD = $(LDADD)
535581 lib1554_DEPENDENCIES = $(am__DEPENDENCIES_1)
536 am__objects_118 = lib1555-first.$(OBJEXT)
582 am__objects_118 = ../../lib/lib1555-timediff.$(OBJEXT) \
583 lib1555-first.$(OBJEXT)
537584 am__objects_119 = lib1555-testutil.$(OBJEXT)
538585 am__objects_120 = ../../lib/lib1555-warnless.$(OBJEXT)
539586 am_lib1555_OBJECTS = lib1555-lib1555.$(OBJEXT) $(am__objects_118) \
540587 $(am__objects_119) $(am__objects_120)
541588 lib1555_OBJECTS = $(am_lib1555_OBJECTS)
542589 lib1555_DEPENDENCIES = $(am__DEPENDENCIES_1)
543 am__objects_121 = lib1556-first.$(OBJEXT)
590 am__objects_121 = ../../lib/lib1556-timediff.$(OBJEXT) \
591 lib1556-first.$(OBJEXT)
544592 am__objects_122 = lib1556-testutil.$(OBJEXT)
545593 am__objects_123 = ../../lib/lib1556-warnless.$(OBJEXT)
546594 am_lib1556_OBJECTS = lib1556-lib1556.$(OBJEXT) $(am__objects_121) \
547595 $(am__objects_122) $(am__objects_123)
548596 lib1556_OBJECTS = $(am_lib1556_OBJECTS)
549597 lib1556_DEPENDENCIES = $(am__DEPENDENCIES_1)
550 am__objects_124 = lib1557-first.$(OBJEXT)
598 am__objects_124 = ../../lib/lib1557-timediff.$(OBJEXT) \
599 lib1557-first.$(OBJEXT)
551600 am__objects_125 = lib1557-testutil.$(OBJEXT)
552601 am__objects_126 = ../../lib/lib1557-warnless.$(OBJEXT)
553602 am_lib1557_OBJECTS = lib1557-lib1557.$(OBJEXT) $(am__objects_124) \
554603 $(am__objects_125) $(am__objects_126)
555604 lib1557_OBJECTS = $(am_lib1557_OBJECTS)
556605 lib1557_DEPENDENCIES = $(am__DEPENDENCIES_1)
557 am__objects_127 = first.$(OBJEXT)
606 am__objects_127 = ../../lib/timediff.$(OBJEXT) first.$(OBJEXT)
558607 am__objects_128 = testutil.$(OBJEXT)
559608 am__objects_129 = ../../lib/warnless.$(OBJEXT)
560609 am_lib1558_OBJECTS = lib1558.$(OBJEXT) $(am__objects_127) \
569618 $(am__objects_128) $(am__objects_129)
570619 lib1560_OBJECTS = $(am_lib1560_OBJECTS)
571620 lib1560_DEPENDENCIES = $(am__DEPENDENCIES_1)
572 am__objects_130 = lib1564-first.$(OBJEXT)
621 am__objects_130 = ../../lib/lib1564-timediff.$(OBJEXT) \
622 lib1564-first.$(OBJEXT)
573623 am__objects_131 = lib1564-testutil.$(OBJEXT)
574624 am__objects_132 = ../../lib/lib1564-warnless.$(OBJEXT)
575625 am_lib1564_OBJECTS = lib1564-lib1564.$(OBJEXT) $(am__objects_130) \
576626 $(am__objects_131) $(am__objects_132)
577627 lib1564_OBJECTS = $(am_lib1564_OBJECTS)
578628 lib1564_DEPENDENCIES = $(am__DEPENDENCIES_1)
579 am__objects_133 = lib1565-first.$(OBJEXT)
629 am__objects_133 = ../../lib/lib1565-timediff.$(OBJEXT) \
630 lib1565-first.$(OBJEXT)
580631 am__objects_134 = lib1565-testutil.$(OBJEXT)
581632 am__objects_135 = ../../lib/lib1565-warnless.$(OBJEXT)
582633 am_lib1565_OBJECTS = lib1565-lib1565.$(OBJEXT) $(am__objects_133) \
583634 $(am__objects_134) $(am__objects_135)
584635 lib1565_OBJECTS = $(am_lib1565_OBJECTS)
585636 lib1565_DEPENDENCIES = $(am__DEPENDENCIES_1)
586 am__objects_136 = lib1567-first.$(OBJEXT)
637 am__objects_136 = ../../lib/lib1567-timediff.$(OBJEXT) \
638 lib1567-first.$(OBJEXT)
587639 am_lib1567_OBJECTS = lib1567-lib1567.$(OBJEXT) $(am__objects_136)
588640 lib1567_OBJECTS = $(am_lib1567_OBJECTS)
589641 lib1567_LDADD = $(LDADD)
590642 lib1567_DEPENDENCIES = $(am__DEPENDENCIES_1)
591 am__objects_137 = lib1568-first.$(OBJEXT)
643 am__objects_137 = ../../lib/lib1568-timediff.$(OBJEXT) \
644 lib1568-first.$(OBJEXT)
592645 am_lib1568_OBJECTS = lib1568-lib1568.$(OBJEXT) $(am__objects_137)
593646 lib1568_OBJECTS = $(am_lib1568_OBJECTS)
594647 lib1568_LDADD = $(LDADD)
595648 lib1568_DEPENDENCIES = $(am__DEPENDENCIES_1)
596 am__objects_138 = lib1569-first.$(OBJEXT)
649 am__objects_138 = ../../lib/lib1569-timediff.$(OBJEXT) \
650 lib1569-first.$(OBJEXT)
597651 am_lib1569_OBJECTS = lib1569-lib1569.$(OBJEXT) $(am__objects_138)
598652 lib1569_OBJECTS = $(am_lib1569_OBJECTS)
599653 lib1569_LDADD = $(LDADD)
600654 lib1569_DEPENDENCIES = $(am__DEPENDENCIES_1)
601 am__objects_139 = lib1591-first.$(OBJEXT)
655 am__objects_139 = ../../lib/lib1591-timediff.$(OBJEXT) \
656 lib1591-first.$(OBJEXT)
602657 am__objects_140 = lib1591-testutil.$(OBJEXT)
603658 am__objects_141 = ../../lib/lib1591-warnless.$(OBJEXT)
604659 am_lib1591_OBJECTS = lib1591-lib1591.$(OBJEXT) $(am__objects_139) \
605660 $(am__objects_140) $(am__objects_141)
606661 lib1591_OBJECTS = $(am_lib1591_OBJECTS)
607662 lib1591_DEPENDENCIES = $(am__DEPENDENCIES_1)
608 am__objects_142 = lib1592-first.$(OBJEXT)
663 am__objects_142 = ../../lib/lib1592-timediff.$(OBJEXT) \
664 lib1592-first.$(OBJEXT)
609665 am__objects_143 = lib1592-testutil.$(OBJEXT)
610666 am__objects_144 = ../../lib/lib1592-warnless.$(OBJEXT)
611667 am_lib1592_OBJECTS = lib1592-lib1592.$(OBJEXT) $(am__objects_142) \
620676 $(am__objects_128) $(am__objects_129)
621677 lib1594_OBJECTS = $(am_lib1594_OBJECTS)
622678 lib1594_DEPENDENCIES = $(am__DEPENDENCIES_1)
623 am__objects_145 = lib1596-first.$(OBJEXT)
679 am__objects_145 = ../../lib/lib1596-timediff.$(OBJEXT) \
680 lib1596-first.$(OBJEXT)
624681 am__objects_146 = lib1596-testutil.$(OBJEXT)
625682 am__objects_147 = ../../lib/lib1596-warnless.$(OBJEXT)
626683 am_lib1596_OBJECTS = lib1596-lib1594.$(OBJEXT) $(am__objects_145) \
627684 $(am__objects_146) $(am__objects_147)
628685 lib1596_OBJECTS = $(am_lib1596_OBJECTS)
629686 lib1596_DEPENDENCIES = $(am__DEPENDENCIES_1)
630 am__objects_148 = lib1905-first.$(OBJEXT)
687 am__objects_148 = ../../lib/lib1905-timediff.$(OBJEXT) \
688 lib1905-first.$(OBJEXT)
631689 am__objects_149 = lib1905-testutil.$(OBJEXT)
632690 am__objects_150 = ../../lib/lib1905-warnless.$(OBJEXT)
633691 am_lib1905_OBJECTS = lib1905-lib1905.$(OBJEXT) $(am__objects_148) \
634692 $(am__objects_149) $(am__objects_150)
635693 lib1905_OBJECTS = $(am_lib1905_OBJECTS)
636694 lib1905_DEPENDENCIES = $(am__DEPENDENCIES_1)
637 am__objects_151 = lib1906-first.$(OBJEXT)
695 am__objects_151 = ../../lib/lib1906-timediff.$(OBJEXT) \
696 lib1906-first.$(OBJEXT)
638697 am__objects_152 = lib1906-testutil.$(OBJEXT)
639698 am__objects_153 = ../../lib/lib1906-warnless.$(OBJEXT)
640699 am_lib1906_OBJECTS = lib1906-lib1906.$(OBJEXT) $(am__objects_151) \
641700 $(am__objects_152) $(am__objects_153)
642701 lib1906_OBJECTS = $(am_lib1906_OBJECTS)
643702 lib1906_DEPENDENCIES = $(am__DEPENDENCIES_1)
644 am__objects_154 = lib1907-first.$(OBJEXT)
703 am__objects_154 = ../../lib/lib1907-timediff.$(OBJEXT) \
704 lib1907-first.$(OBJEXT)
645705 am__objects_155 = lib1907-testutil.$(OBJEXT)
646706 am__objects_156 = ../../lib/lib1907-warnless.$(OBJEXT)
647707 am_lib1907_OBJECTS = lib1907-lib1907.$(OBJEXT) $(am__objects_154) \
648708 $(am__objects_155) $(am__objects_156)
649709 lib1907_OBJECTS = $(am_lib1907_OBJECTS)
650710 lib1907_DEPENDENCIES = $(am__DEPENDENCIES_1)
651 am__objects_157 = lib1908-first.$(OBJEXT)
711 am__objects_157 = ../../lib/lib1908-timediff.$(OBJEXT) \
712 lib1908-first.$(OBJEXT)
652713 am__objects_158 = lib1908-testutil.$(OBJEXT)
653714 am__objects_159 = ../../lib/lib1908-warnless.$(OBJEXT)
654715 am_lib1908_OBJECTS = lib1908-lib1908.$(OBJEXT) $(am__objects_157) \
655716 $(am__objects_158) $(am__objects_159)
656717 lib1908_OBJECTS = $(am_lib1908_OBJECTS)
657718 lib1908_DEPENDENCIES = $(am__DEPENDENCIES_1)
658 am__objects_160 = lib1910-first.$(OBJEXT)
719 am__objects_160 = ../../lib/lib1910-timediff.$(OBJEXT) \
720 lib1910-first.$(OBJEXT)
659721 am__objects_161 = lib1910-testutil.$(OBJEXT)
660722 am__objects_162 = ../../lib/lib1910-warnless.$(OBJEXT)
661723 am_lib1910_OBJECTS = lib1910-lib1910.$(OBJEXT) $(am__objects_160) \
662724 $(am__objects_161) $(am__objects_162)
663725 lib1910_OBJECTS = $(am_lib1910_OBJECTS)
664726 lib1910_DEPENDENCIES = $(am__DEPENDENCIES_1)
665 am__objects_163 = lib1911-first.$(OBJEXT)
727 am__objects_163 = ../../lib/lib1911-timediff.$(OBJEXT) \
728 lib1911-first.$(OBJEXT)
666729 am__objects_164 = lib1911-testutil.$(OBJEXT)
667730 am__objects_165 = ../../lib/lib1911-warnless.$(OBJEXT)
668731 am_lib1911_OBJECTS = lib1911-lib1911.$(OBJEXT) $(am__objects_163) \
669732 $(am__objects_164) $(am__objects_165)
670733 lib1911_OBJECTS = $(am_lib1911_OBJECTS)
671734 lib1911_DEPENDENCIES = $(am__DEPENDENCIES_1)
672 am__objects_166 = lib1912-first.$(OBJEXT)
735 am__objects_166 = ../../lib/lib1912-timediff.$(OBJEXT) \
736 lib1912-first.$(OBJEXT)
673737 am__objects_167 = lib1912-testutil.$(OBJEXT)
674738 am__objects_168 = ../../lib/lib1912-warnless.$(OBJEXT)
675739 am_lib1912_OBJECTS = lib1912-lib1912.$(OBJEXT) $(am__objects_166) \
676740 $(am__objects_167) $(am__objects_168)
677741 lib1912_OBJECTS = $(am_lib1912_OBJECTS)
678742 lib1912_DEPENDENCIES = $(am__DEPENDENCIES_1)
679 am__objects_169 = lib1913-first.$(OBJEXT)
743 am__objects_169 = ../../lib/lib1913-timediff.$(OBJEXT) \
744 lib1913-first.$(OBJEXT)
680745 am__objects_170 = lib1913-testutil.$(OBJEXT)
681746 am__objects_171 = ../../lib/lib1913-warnless.$(OBJEXT)
682747 am_lib1913_OBJECTS = lib1913-lib1913.$(OBJEXT) $(am__objects_169) \
683748 $(am__objects_170) $(am__objects_171)
684749 lib1913_OBJECTS = $(am_lib1913_OBJECTS)
685750 lib1913_DEPENDENCIES = $(am__DEPENDENCIES_1)
686 am__objects_172 = lib1915-first.$(OBJEXT)
751 am__objects_172 = ../../lib/lib1915-timediff.$(OBJEXT) \
752 lib1915-first.$(OBJEXT)
687753 am__objects_173 = lib1915-testutil.$(OBJEXT)
688754 am__objects_174 = ../../lib/lib1915-warnless.$(OBJEXT)
689755 am_lib1915_OBJECTS = lib1915-lib1915.$(OBJEXT) $(am__objects_172) \
690756 $(am__objects_173) $(am__objects_174)
691757 lib1915_OBJECTS = $(am_lib1915_OBJECTS)
692758 lib1915_DEPENDENCIES = $(am__DEPENDENCIES_1)
693 am__objects_175 = lib1916-first.$(OBJEXT)
759 am__objects_175 = ../../lib/lib1916-timediff.$(OBJEXT) \
760 lib1916-first.$(OBJEXT)
694761 am__objects_176 = ../../lib/lib1916-warnless.$(OBJEXT)
695762 am_lib1916_OBJECTS = lib1916-lib1916.$(OBJEXT) $(am__objects_175) \
696763 $(am__objects_176)
697764 lib1916_OBJECTS = $(am_lib1916_OBJECTS)
698765 lib1916_LDADD = $(LDADD)
699766 lib1916_DEPENDENCIES = $(am__DEPENDENCIES_1)
700 am__objects_177 = lib1917-first.$(OBJEXT)
767 am__objects_177 = ../../lib/lib1917-timediff.$(OBJEXT) \
768 lib1917-first.$(OBJEXT)
701769 am__objects_178 = ../../lib/lib1917-warnless.$(OBJEXT)
702770 am_lib1917_OBJECTS = lib1917-lib1916.$(OBJEXT) $(am__objects_177) \
703771 $(am__objects_178)
704772 lib1917_OBJECTS = $(am_lib1917_OBJECTS)
705773 lib1917_LDADD = $(LDADD)
706774 lib1917_DEPENDENCIES = $(am__DEPENDENCIES_1)
707 am__objects_179 = lib1918-first.$(OBJEXT)
775 am__objects_179 = ../../lib/lib1918-timediff.$(OBJEXT) \
776 lib1918-first.$(OBJEXT)
708777 am__objects_180 = ../../lib/lib1918-warnless.$(OBJEXT)
709778 am_lib1918_OBJECTS = lib1918-lib1918.$(OBJEXT) $(am__objects_179) \
710779 $(am__objects_180)
711780 lib1918_OBJECTS = $(am_lib1918_OBJECTS)
712781 lib1918_LDADD = $(LDADD)
713782 lib1918_DEPENDENCIES = $(am__DEPENDENCIES_1)
714 am__objects_181 = lib1933-first.$(OBJEXT)
783 am__objects_181 = ../../lib/lib1933-timediff.$(OBJEXT) \
784 lib1933-first.$(OBJEXT)
715785 am__objects_182 = lib1933-testutil.$(OBJEXT)
716786 am__objects_183 = ../../lib/lib1933-warnless.$(OBJEXT)
717787 am_lib1933_OBJECTS = lib1933-lib1933.$(OBJEXT) $(am__objects_181) \
718788 $(am__objects_182) $(am__objects_183)
719789 lib1933_OBJECTS = $(am_lib1933_OBJECTS)
720790 lib1933_DEPENDENCIES = $(am__DEPENDENCIES_1)
721 am__objects_184 = lib1934-first.$(OBJEXT)
791 am__objects_184 = ../../lib/lib1934-timediff.$(OBJEXT) \
792 lib1934-first.$(OBJEXT)
722793 am__objects_185 = lib1934-testutil.$(OBJEXT)
723794 am__objects_186 = ../../lib/lib1934-warnless.$(OBJEXT)
724795 am_lib1934_OBJECTS = lib1934-lib1934.$(OBJEXT) $(am__objects_184) \
725796 $(am__objects_185) $(am__objects_186)
726797 lib1934_OBJECTS = $(am_lib1934_OBJECTS)
727798 lib1934_DEPENDENCIES = $(am__DEPENDENCIES_1)
728 am__objects_187 = lib1935-first.$(OBJEXT)
799 am__objects_187 = ../../lib/lib1935-timediff.$(OBJEXT) \
800 lib1935-first.$(OBJEXT)
729801 am__objects_188 = lib1935-testutil.$(OBJEXT)
730802 am__objects_189 = ../../lib/lib1935-warnless.$(OBJEXT)
731803 am_lib1935_OBJECTS = lib1935-lib1935.$(OBJEXT) $(am__objects_187) \
732804 $(am__objects_188) $(am__objects_189)
733805 lib1935_OBJECTS = $(am_lib1935_OBJECTS)
734806 lib1935_DEPENDENCIES = $(am__DEPENDENCIES_1)
735 am__objects_190 = lib1936-first.$(OBJEXT)
807 am__objects_190 = ../../lib/lib1936-timediff.$(OBJEXT) \
808 lib1936-first.$(OBJEXT)
736809 am__objects_191 = lib1936-testutil.$(OBJEXT)
737810 am__objects_192 = ../../lib/lib1936-warnless.$(OBJEXT)
738811 am_lib1936_OBJECTS = lib1936-lib1936.$(OBJEXT) $(am__objects_190) \
739812 $(am__objects_191) $(am__objects_192)
740813 lib1936_OBJECTS = $(am_lib1936_OBJECTS)
741814 lib1936_DEPENDENCIES = $(am__DEPENDENCIES_1)
742 am__objects_193 = lib1937-first.$(OBJEXT)
815 am__objects_193 = ../../lib/lib1937-timediff.$(OBJEXT) \
816 lib1937-first.$(OBJEXT)
743817 am_lib1937_OBJECTS = lib1937-lib1937.$(OBJEXT) $(am__objects_193)
744818 lib1937_OBJECTS = $(am_lib1937_OBJECTS)
745819 lib1937_DEPENDENCIES = $(am__DEPENDENCIES_1)
746 am__objects_194 = lib1938-first.$(OBJEXT)
820 am__objects_194 = ../../lib/lib1938-timediff.$(OBJEXT) \
821 lib1938-first.$(OBJEXT)
747822 am_lib1938_OBJECTS = lib1938-lib1938.$(OBJEXT) $(am__objects_194)
748823 lib1938_OBJECTS = $(am_lib1938_OBJECTS)
749824 lib1938_DEPENDENCIES = $(am__DEPENDENCIES_1)
750 am__objects_195 = lib1939-first.$(OBJEXT)
825 am__objects_195 = ../../lib/lib1939-timediff.$(OBJEXT) \
826 lib1939-first.$(OBJEXT)
751827 am_lib1939_OBJECTS = lib1939-lib1939.$(OBJEXT) $(am__objects_195)
752828 lib1939_OBJECTS = $(am_lib1939_OBJECTS)
753829 lib1939_DEPENDENCIES = $(am__DEPENDENCIES_1)
754 am__objects_196 = lib3010-first.$(OBJEXT)
755 am__objects_197 = lib3010-testutil.$(OBJEXT)
756 am__objects_198 = ../../lib/lib3010-warnless.$(OBJEXT)
757 am_lib3010_OBJECTS = lib3010-lib3010.$(OBJEXT) $(am__objects_196) \
758 $(am__objects_197) $(am__objects_198)
830 am__objects_196 = ../../lib/lib1940-timediff.$(OBJEXT) \
831 lib1940-first.$(OBJEXT)
832 am_lib1940_OBJECTS = lib1940-lib1940.$(OBJEXT) $(am__objects_196)
833 lib1940_OBJECTS = $(am_lib1940_OBJECTS)
834 lib1940_DEPENDENCIES = $(am__DEPENDENCIES_1)
835 am__objects_197 = ../../lib/lib1945-timediff.$(OBJEXT) \
836 lib1945-first.$(OBJEXT)
837 am_lib1945_OBJECTS = lib1945-lib1945.$(OBJEXT) $(am__objects_197)
838 lib1945_OBJECTS = $(am_lib1945_OBJECTS)
839 lib1945_DEPENDENCIES = $(am__DEPENDENCIES_1)
840 am__objects_198 = ../../lib/lib1946-timediff.$(OBJEXT) \
841 lib1946-first.$(OBJEXT)
842 am_lib1946_OBJECTS = lib1946-lib1940.$(OBJEXT) $(am__objects_198)
843 lib1946_OBJECTS = $(am_lib1946_OBJECTS)
844 lib1946_DEPENDENCIES = $(am__DEPENDENCIES_1)
845 am__objects_199 = ../../lib/lib3010-timediff.$(OBJEXT) \
846 lib3010-first.$(OBJEXT)
847 am__objects_200 = lib3010-testutil.$(OBJEXT)
848 am__objects_201 = ../../lib/lib3010-warnless.$(OBJEXT)
849 am_lib3010_OBJECTS = lib3010-lib3010.$(OBJEXT) $(am__objects_199) \
850 $(am__objects_200) $(am__objects_201)
759851 lib3010_OBJECTS = $(am_lib3010_OBJECTS)
760852 lib3010_DEPENDENCIES = $(am__DEPENDENCIES_1)
761 am__objects_199 = lib3025-first.$(OBJEXT)
762 am__objects_200 = lib3025-testutil.$(OBJEXT)
763 am__objects_201 = ../../lib/lib3025-warnless.$(OBJEXT)
764 am_lib3025_OBJECTS = lib3025-lib3025.$(OBJEXT) $(am__objects_199) \
765 $(am__objects_200) $(am__objects_201)
853 am__objects_202 = ../../lib/lib3025-timediff.$(OBJEXT) \
854 lib3025-first.$(OBJEXT)
855 am__objects_203 = lib3025-testutil.$(OBJEXT)
856 am__objects_204 = ../../lib/lib3025-warnless.$(OBJEXT)
857 am_lib3025_OBJECTS = lib3025-lib3025.$(OBJEXT) $(am__objects_202) \
858 $(am__objects_203) $(am__objects_204)
766859 lib3025_OBJECTS = $(am_lib3025_OBJECTS)
767860 lib3025_DEPENDENCIES = $(am__DEPENDENCIES_1)
768 am__objects_202 = lib500-first.$(OBJEXT)
769 am__objects_203 = lib500-testutil.$(OBJEXT)
770 am__objects_204 = lib500-testtrace.$(OBJEXT)
771 am__objects_205 = ../../lib/lib500-curl_multibyte.$(OBJEXT)
772 am_lib500_OBJECTS = lib500-lib500.$(OBJEXT) $(am__objects_202) \
773 $(am__objects_203) $(am__objects_204) $(am__objects_205)
861 am__objects_205 = ../../lib/lib500-timediff.$(OBJEXT) \
862 lib500-first.$(OBJEXT)
863 am__objects_206 = lib500-testutil.$(OBJEXT)
864 am__objects_207 = lib500-testtrace.$(OBJEXT)
865 am__objects_208 = ../../lib/lib500-curl_multibyte.$(OBJEXT)
866 am_lib500_OBJECTS = lib500-lib500.$(OBJEXT) $(am__objects_205) \
867 $(am__objects_206) $(am__objects_207) $(am__objects_208)
774868 lib500_OBJECTS = $(am_lib500_OBJECTS)
775869 lib500_DEPENDENCIES = $(am__DEPENDENCIES_1)
776 am__objects_206 = lib501-first.$(OBJEXT)
777 am_lib501_OBJECTS = lib501-lib501.$(OBJEXT) $(am__objects_206)
870 am__objects_209 = ../../lib/lib501-timediff.$(OBJEXT) \
871 lib501-first.$(OBJEXT)
872 am_lib501_OBJECTS = lib501-lib501.$(OBJEXT) $(am__objects_209)
778873 lib501_OBJECTS = $(am_lib501_OBJECTS)
779874 lib501_LDADD = $(LDADD)
780875 lib501_DEPENDENCIES = $(am__DEPENDENCIES_1)
781 am__objects_207 = lib502-first.$(OBJEXT)
782 am__objects_208 = lib502-testutil.$(OBJEXT)
783 am__objects_209 = ../../lib/lib502-warnless.$(OBJEXT)
784 am_lib502_OBJECTS = lib502-lib502.$(OBJEXT) $(am__objects_207) \
785 $(am__objects_208) $(am__objects_209)
876 am__objects_210 = ../../lib/lib502-timediff.$(OBJEXT) \
877 lib502-first.$(OBJEXT)
878 am__objects_211 = lib502-testutil.$(OBJEXT)
879 am__objects_212 = ../../lib/lib502-warnless.$(OBJEXT)
880 am_lib502_OBJECTS = lib502-lib502.$(OBJEXT) $(am__objects_210) \
881 $(am__objects_211) $(am__objects_212)
786882 lib502_OBJECTS = $(am_lib502_OBJECTS)
787883 lib502_DEPENDENCIES = $(am__DEPENDENCIES_1)
788 am__objects_210 = lib503-first.$(OBJEXT)
789 am__objects_211 = lib503-testutil.$(OBJEXT)
790 am__objects_212 = ../../lib/lib503-warnless.$(OBJEXT)
791 am_lib503_OBJECTS = lib503-lib503.$(OBJEXT) $(am__objects_210) \
792 $(am__objects_211) $(am__objects_212)
884 am__objects_213 = ../../lib/lib503-timediff.$(OBJEXT) \
885 lib503-first.$(OBJEXT)
886 am__objects_214 = lib503-testutil.$(OBJEXT)
887 am__objects_215 = ../../lib/lib503-warnless.$(OBJEXT)
888 am_lib503_OBJECTS = lib503-lib503.$(OBJEXT) $(am__objects_213) \
889 $(am__objects_214) $(am__objects_215)
793890 lib503_OBJECTS = $(am_lib503_OBJECTS)
794891 lib503_DEPENDENCIES = $(am__DEPENDENCIES_1)
795 am__objects_213 = lib504-first.$(OBJEXT)
796 am__objects_214 = lib504-testutil.$(OBJEXT)
797 am__objects_215 = ../../lib/lib504-warnless.$(OBJEXT)
798 am_lib504_OBJECTS = lib504-lib504.$(OBJEXT) $(am__objects_213) \
799 $(am__objects_214) $(am__objects_215)
892 am__objects_216 = ../../lib/lib504-timediff.$(OBJEXT) \
893 lib504-first.$(OBJEXT)
894 am__objects_217 = lib504-testutil.$(OBJEXT)
895 am__objects_218 = ../../lib/lib504-warnless.$(OBJEXT)
896 am_lib504_OBJECTS = lib504-lib504.$(OBJEXT) $(am__objects_216) \
897 $(am__objects_217) $(am__objects_218)
800898 lib504_OBJECTS = $(am_lib504_OBJECTS)
801899 lib504_DEPENDENCIES = $(am__DEPENDENCIES_1)
802 am__objects_216 = lib505-first.$(OBJEXT)
803 am__objects_217 = ../../lib/lib505-curl_multibyte.$(OBJEXT)
804 am_lib505_OBJECTS = lib505-lib505.$(OBJEXT) $(am__objects_216) \
805 $(am__objects_217)
900 am__objects_219 = ../../lib/lib505-timediff.$(OBJEXT) \
901 lib505-first.$(OBJEXT)
902 am__objects_220 = ../../lib/lib505-curl_multibyte.$(OBJEXT)
903 am_lib505_OBJECTS = lib505-lib505.$(OBJEXT) $(am__objects_219) \
904 $(am__objects_220)
806905 lib505_OBJECTS = $(am_lib505_OBJECTS)
807906 lib505_LDADD = $(LDADD)
808907 lib505_DEPENDENCIES = $(am__DEPENDENCIES_1)
809 am__objects_218 = lib506-first.$(OBJEXT)
810 am_lib506_OBJECTS = lib506-lib506.$(OBJEXT) $(am__objects_218)
908 am__objects_221 = ../../lib/lib506-timediff.$(OBJEXT) \
909 lib506-first.$(OBJEXT)
910 am_lib506_OBJECTS = lib506-lib506.$(OBJEXT) $(am__objects_221)
811911 lib506_OBJECTS = $(am_lib506_OBJECTS)
812912 lib506_LDADD = $(LDADD)
813913 lib506_DEPENDENCIES = $(am__DEPENDENCIES_1)
814 am__objects_219 = lib507-first.$(OBJEXT)
815 am__objects_220 = lib507-testutil.$(OBJEXT)
816 am__objects_221 = ../../lib/lib507-warnless.$(OBJEXT)
817 am_lib507_OBJECTS = lib507-lib507.$(OBJEXT) $(am__objects_219) \
818 $(am__objects_220) $(am__objects_221)
914 am__objects_222 = ../../lib/lib507-timediff.$(OBJEXT) \
915 lib507-first.$(OBJEXT)
916 am__objects_223 = lib507-testutil.$(OBJEXT)
917 am__objects_224 = ../../lib/lib507-warnless.$(OBJEXT)
918 am_lib507_OBJECTS = lib507-lib507.$(OBJEXT) $(am__objects_222) \
919 $(am__objects_223) $(am__objects_224)
819920 lib507_OBJECTS = $(am_lib507_OBJECTS)
820921 lib507_DEPENDENCIES = $(am__DEPENDENCIES_1)
821 am__objects_222 = lib508-first.$(OBJEXT)
822 am_lib508_OBJECTS = lib508-lib508.$(OBJEXT) $(am__objects_222)
922 am__objects_225 = ../../lib/lib508-timediff.$(OBJEXT) \
923 lib508-first.$(OBJEXT)
924 am_lib508_OBJECTS = lib508-lib508.$(OBJEXT) $(am__objects_225)
823925 lib508_OBJECTS = $(am_lib508_OBJECTS)
824926 lib508_LDADD = $(LDADD)
825927 lib508_DEPENDENCIES = $(am__DEPENDENCIES_1)
826 am__objects_223 = lib509-first.$(OBJEXT)
827 am_lib509_OBJECTS = lib509-lib509.$(OBJEXT) $(am__objects_223)
928 am__objects_226 = ../../lib/lib509-timediff.$(OBJEXT) \
929 lib509-first.$(OBJEXT)
930 am_lib509_OBJECTS = lib509-lib509.$(OBJEXT) $(am__objects_226)
828931 lib509_OBJECTS = $(am_lib509_OBJECTS)
829932 lib509_LDADD = $(LDADD)
830933 lib509_DEPENDENCIES = $(am__DEPENDENCIES_1)
831 am__objects_224 = lib510-first.$(OBJEXT)
832 am_lib510_OBJECTS = lib510-lib510.$(OBJEXT) $(am__objects_224)
934 am__objects_227 = ../../lib/lib510-timediff.$(OBJEXT) \
935 lib510-first.$(OBJEXT)
936 am_lib510_OBJECTS = lib510-lib510.$(OBJEXT) $(am__objects_227)
833937 lib510_OBJECTS = $(am_lib510_OBJECTS)
834938 lib510_LDADD = $(LDADD)
835939 lib510_DEPENDENCIES = $(am__DEPENDENCIES_1)
836 am__objects_225 = lib511-first.$(OBJEXT)
837 am_lib511_OBJECTS = lib511-lib511.$(OBJEXT) $(am__objects_225)
940 am__objects_228 = ../../lib/lib511-timediff.$(OBJEXT) \
941 lib511-first.$(OBJEXT)
942 am_lib511_OBJECTS = lib511-lib511.$(OBJEXT) $(am__objects_228)
838943 lib511_OBJECTS = $(am_lib511_OBJECTS)
839944 lib511_LDADD = $(LDADD)
840945 lib511_DEPENDENCIES = $(am__DEPENDENCIES_1)
841 am__objects_226 = lib512-first.$(OBJEXT)
842 am_lib512_OBJECTS = lib512-lib512.$(OBJEXT) $(am__objects_226)
946 am__objects_229 = ../../lib/lib512-timediff.$(OBJEXT) \
947 lib512-first.$(OBJEXT)
948 am_lib512_OBJECTS = lib512-lib512.$(OBJEXT) $(am__objects_229)
843949 lib512_OBJECTS = $(am_lib512_OBJECTS)
844950 lib512_LDADD = $(LDADD)
845951 lib512_DEPENDENCIES = $(am__DEPENDENCIES_1)
846 am__objects_227 = lib513-first.$(OBJEXT)
847 am_lib513_OBJECTS = lib513-lib513.$(OBJEXT) $(am__objects_227)
952 am__objects_230 = ../../lib/lib513-timediff.$(OBJEXT) \
953 lib513-first.$(OBJEXT)
954 am_lib513_OBJECTS = lib513-lib513.$(OBJEXT) $(am__objects_230)
848955 lib513_OBJECTS = $(am_lib513_OBJECTS)
849956 lib513_LDADD = $(LDADD)
850957 lib513_DEPENDENCIES = $(am__DEPENDENCIES_1)
851 am__objects_228 = lib514-first.$(OBJEXT)
852 am_lib514_OBJECTS = lib514-lib514.$(OBJEXT) $(am__objects_228)
958 am__objects_231 = ../../lib/lib514-timediff.$(OBJEXT) \
959 lib514-first.$(OBJEXT)
960 am_lib514_OBJECTS = lib514-lib514.$(OBJEXT) $(am__objects_231)
853961 lib514_OBJECTS = $(am_lib514_OBJECTS)
854962 lib514_LDADD = $(LDADD)
855963 lib514_DEPENDENCIES = $(am__DEPENDENCIES_1)
856 am__objects_229 = lib515-first.$(OBJEXT)
857 am_lib515_OBJECTS = lib515-lib515.$(OBJEXT) $(am__objects_229)
964 am__objects_232 = ../../lib/lib515-timediff.$(OBJEXT) \
965 lib515-first.$(OBJEXT)
966 am_lib515_OBJECTS = lib515-lib515.$(OBJEXT) $(am__objects_232)
858967 lib515_OBJECTS = $(am_lib515_OBJECTS)
859968 lib515_LDADD = $(LDADD)
860969 lib515_DEPENDENCIES = $(am__DEPENDENCIES_1)
861 am__objects_230 = lib516-first.$(OBJEXT)
862 am_lib516_OBJECTS = lib516-lib516.$(OBJEXT) $(am__objects_230)
970 am__objects_233 = ../../lib/lib516-timediff.$(OBJEXT) \
971 lib516-first.$(OBJEXT)
972 am_lib516_OBJECTS = lib516-lib516.$(OBJEXT) $(am__objects_233)
863973 lib516_OBJECTS = $(am_lib516_OBJECTS)
864974 lib516_LDADD = $(LDADD)
865975 lib516_DEPENDENCIES = $(am__DEPENDENCIES_1)
866 am__objects_231 = lib517-first.$(OBJEXT)
867 am_lib517_OBJECTS = lib517-lib517.$(OBJEXT) $(am__objects_231)
976 am__objects_234 = ../../lib/lib517-timediff.$(OBJEXT) \
977 lib517-first.$(OBJEXT)
978 am_lib517_OBJECTS = lib517-lib517.$(OBJEXT) $(am__objects_234)
868979 lib517_OBJECTS = $(am_lib517_OBJECTS)
869980 lib517_LDADD = $(LDADD)
870981 lib517_DEPENDENCIES = $(am__DEPENDENCIES_1)
871 am__objects_232 = lib518-first.$(OBJEXT)
872 am__objects_233 = ../../lib/lib518-warnless.$(OBJEXT)
873 am__objects_234 = ../../lib/lib518-curl_multibyte.$(OBJEXT)
874 am_lib518_OBJECTS = lib518-lib518.$(OBJEXT) $(am__objects_232) \
875 $(am__objects_233) $(am__objects_234)
982 am__objects_235 = ../../lib/lib518-timediff.$(OBJEXT) \
983 lib518-first.$(OBJEXT)
984 am__objects_236 = ../../lib/lib518-warnless.$(OBJEXT)
985 am__objects_237 = ../../lib/lib518-curl_multibyte.$(OBJEXT)
986 am_lib518_OBJECTS = lib518-lib518.$(OBJEXT) $(am__objects_235) \
987 $(am__objects_236) $(am__objects_237)
876988 lib518_OBJECTS = $(am_lib518_OBJECTS)
877989 lib518_LDADD = $(LDADD)
878990 lib518_DEPENDENCIES = $(am__DEPENDENCIES_1)
879 am__objects_235 = lib519-first.$(OBJEXT)
880 am_lib519_OBJECTS = lib519-lib519.$(OBJEXT) $(am__objects_235)
991 am__objects_238 = ../../lib/lib519-timediff.$(OBJEXT) \
992 lib519-first.$(OBJEXT)
993 am_lib519_OBJECTS = lib519-lib519.$(OBJEXT) $(am__objects_238)
881994 lib519_OBJECTS = $(am_lib519_OBJECTS)
882995 lib519_LDADD = $(LDADD)
883996 lib519_DEPENDENCIES = $(am__DEPENDENCIES_1)
884 am__objects_236 = lib520-first.$(OBJEXT)
885 am_lib520_OBJECTS = lib520-lib520.$(OBJEXT) $(am__objects_236)
997 am__objects_239 = ../../lib/lib520-timediff.$(OBJEXT) \
998 lib520-first.$(OBJEXT)
999 am_lib520_OBJECTS = lib520-lib520.$(OBJEXT) $(am__objects_239)
8861000 lib520_OBJECTS = $(am_lib520_OBJECTS)
8871001 lib520_LDADD = $(LDADD)
8881002 lib520_DEPENDENCIES = $(am__DEPENDENCIES_1)
889 am__objects_237 = lib521-first.$(OBJEXT)
890 am_lib521_OBJECTS = lib521-lib521.$(OBJEXT) $(am__objects_237)
1003 am__objects_240 = ../../lib/lib521-timediff.$(OBJEXT) \
1004 lib521-first.$(OBJEXT)
1005 am_lib521_OBJECTS = lib521-lib521.$(OBJEXT) $(am__objects_240)
8911006 lib521_OBJECTS = $(am_lib521_OBJECTS)
8921007 lib521_LDADD = $(LDADD)
8931008 lib521_DEPENDENCIES = $(am__DEPENDENCIES_1)
894 am__objects_238 = lib523-first.$(OBJEXT)
895 am_lib523_OBJECTS = lib523-lib523.$(OBJEXT) $(am__objects_238)
1009 am__objects_241 = ../../lib/lib523-timediff.$(OBJEXT) \
1010 lib523-first.$(OBJEXT)
1011 am_lib523_OBJECTS = lib523-lib523.$(OBJEXT) $(am__objects_241)
8961012 lib523_OBJECTS = $(am_lib523_OBJECTS)
8971013 lib523_LDADD = $(LDADD)
8981014 lib523_DEPENDENCIES = $(am__DEPENDENCIES_1)
899 am__objects_239 = lib524-first.$(OBJEXT)
900 am_lib524_OBJECTS = lib524-lib524.$(OBJEXT) $(am__objects_239)
1015 am__objects_242 = ../../lib/lib524-timediff.$(OBJEXT) \
1016 lib524-first.$(OBJEXT)
1017 am_lib524_OBJECTS = lib524-lib524.$(OBJEXT) $(am__objects_242)
9011018 lib524_OBJECTS = $(am_lib524_OBJECTS)
9021019 lib524_LDADD = $(LDADD)
9031020 lib524_DEPENDENCIES = $(am__DEPENDENCIES_1)
904 am__objects_240 = lib525-first.$(OBJEXT)
905 am__objects_241 = lib525-testutil.$(OBJEXT)
906 am__objects_242 = ../../lib/lib525-warnless.$(OBJEXT)
907 am__objects_243 = ../../lib/lib525-curl_multibyte.$(OBJEXT)
908 am_lib525_OBJECTS = lib525-lib525.$(OBJEXT) $(am__objects_240) \
909 $(am__objects_241) $(am__objects_242) $(am__objects_243)
1021 am__objects_243 = ../../lib/lib525-timediff.$(OBJEXT) \
1022 lib525-first.$(OBJEXT)
1023 am__objects_244 = lib525-testutil.$(OBJEXT)
1024 am__objects_245 = ../../lib/lib525-warnless.$(OBJEXT)
1025 am__objects_246 = ../../lib/lib525-curl_multibyte.$(OBJEXT)
1026 am_lib525_OBJECTS = lib525-lib525.$(OBJEXT) $(am__objects_243) \
1027 $(am__objects_244) $(am__objects_245) $(am__objects_246)
9101028 lib525_OBJECTS = $(am_lib525_OBJECTS)
9111029 lib525_DEPENDENCIES = $(am__DEPENDENCIES_1)
912 am__objects_244 = lib526-first.$(OBJEXT)
913 am__objects_245 = lib526-testutil.$(OBJEXT)
914 am__objects_246 = ../../lib/lib526-warnless.$(OBJEXT)
915 am_lib526_OBJECTS = lib526-lib526.$(OBJEXT) $(am__objects_244) \
916 $(am__objects_245) $(am__objects_246)
1030 am__objects_247 = ../../lib/lib526-timediff.$(OBJEXT) \
1031 lib526-first.$(OBJEXT)
1032 am__objects_248 = lib526-testutil.$(OBJEXT)
1033 am__objects_249 = ../../lib/lib526-warnless.$(OBJEXT)
1034 am_lib526_OBJECTS = lib526-lib526.$(OBJEXT) $(am__objects_247) \
1035 $(am__objects_248) $(am__objects_249)
9171036 lib526_OBJECTS = $(am_lib526_OBJECTS)
9181037 lib526_DEPENDENCIES = $(am__DEPENDENCIES_1)
919 am__objects_247 = lib527-first.$(OBJEXT)
920 am__objects_248 = lib527-testutil.$(OBJEXT)
921 am__objects_249 = ../../lib/lib527-warnless.$(OBJEXT)
922 am_lib527_OBJECTS = lib527-lib526.$(OBJEXT) $(am__objects_247) \
923 $(am__objects_248) $(am__objects_249)
1038 am__objects_250 = ../../lib/lib527-timediff.$(OBJEXT) \
1039 lib527-first.$(OBJEXT)
1040 am__objects_251 = lib527-testutil.$(OBJEXT)
1041 am__objects_252 = ../../lib/lib527-warnless.$(OBJEXT)
1042 am_lib527_OBJECTS = lib527-lib526.$(OBJEXT) $(am__objects_250) \
1043 $(am__objects_251) $(am__objects_252)
9241044 lib527_OBJECTS = $(am_lib527_OBJECTS)
9251045 lib527_DEPENDENCIES = $(am__DEPENDENCIES_1)
926 am__objects_250 = lib529-first.$(OBJEXT)
927 am__objects_251 = lib529-testutil.$(OBJEXT)
928 am__objects_252 = ../../lib/lib529-warnless.$(OBJEXT)
929 am__objects_253 = ../../lib/lib529-curl_multibyte.$(OBJEXT)
930 am_lib529_OBJECTS = lib529-lib525.$(OBJEXT) $(am__objects_250) \
931 $(am__objects_251) $(am__objects_252) $(am__objects_253)
1046 am__objects_253 = ../../lib/lib529-timediff.$(OBJEXT) \
1047 lib529-first.$(OBJEXT)
1048 am__objects_254 = lib529-testutil.$(OBJEXT)
1049 am__objects_255 = ../../lib/lib529-warnless.$(OBJEXT)
1050 am__objects_256 = ../../lib/lib529-curl_multibyte.$(OBJEXT)
1051 am_lib529_OBJECTS = lib529-lib525.$(OBJEXT) $(am__objects_253) \
1052 $(am__objects_254) $(am__objects_255) $(am__objects_256)
9321053 lib529_OBJECTS = $(am_lib529_OBJECTS)
9331054 lib529_DEPENDENCIES = $(am__DEPENDENCIES_1)
934 am__objects_254 = lib530-first.$(OBJEXT)
935 am__objects_255 = lib530-testutil.$(OBJEXT)
936 am__objects_256 = ../../lib/lib530-warnless.$(OBJEXT)
937 am_lib530_OBJECTS = lib530-lib530.$(OBJEXT) $(am__objects_254) \
938 $(am__objects_255) $(am__objects_256)
1055 am__objects_257 = ../../lib/lib530-timediff.$(OBJEXT) \
1056 lib530-first.$(OBJEXT)
1057 am__objects_258 = lib530-testutil.$(OBJEXT)
1058 am__objects_259 = ../../lib/lib530-warnless.$(OBJEXT)
1059 am_lib530_OBJECTS = lib530-lib530.$(OBJEXT) $(am__objects_257) \
1060 $(am__objects_258) $(am__objects_259)
9391061 lib530_OBJECTS = $(am_lib530_OBJECTS)
9401062 lib530_DEPENDENCIES = $(am__DEPENDENCIES_1)
941 am__objects_257 = lib532-first.$(OBJEXT)
942 am__objects_258 = lib532-testutil.$(OBJEXT)
943 am__objects_259 = ../../lib/lib532-warnless.$(OBJEXT)
944 am_lib532_OBJECTS = lib532-lib526.$(OBJEXT) $(am__objects_257) \
945 $(am__objects_258) $(am__objects_259)
1063 am__objects_260 = ../../lib/lib532-timediff.$(OBJEXT) \
1064 lib532-first.$(OBJEXT)
1065 am__objects_261 = lib532-testutil.$(OBJEXT)
1066 am__objects_262 = ../../lib/lib532-warnless.$(OBJEXT)
1067 am_lib532_OBJECTS = lib532-lib526.$(OBJEXT) $(am__objects_260) \
1068 $(am__objects_261) $(am__objects_262)
9461069 lib532_OBJECTS = $(am_lib532_OBJECTS)
9471070 lib532_DEPENDENCIES = $(am__DEPENDENCIES_1)
948 am__objects_260 = lib533-first.$(OBJEXT)
949 am__objects_261 = lib533-testutil.$(OBJEXT)
950 am__objects_262 = ../../lib/lib533-warnless.$(OBJEXT)
951 am_lib533_OBJECTS = lib533-lib533.$(OBJEXT) $(am__objects_260) \
952 $(am__objects_261) $(am__objects_262)
1071 am__objects_263 = ../../lib/lib533-timediff.$(OBJEXT) \
1072 lib533-first.$(OBJEXT)
1073 am__objects_264 = lib533-testutil.$(OBJEXT)
1074 am__objects_265 = ../../lib/lib533-warnless.$(OBJEXT)
1075 am_lib533_OBJECTS = lib533-lib533.$(OBJEXT) $(am__objects_263) \
1076 $(am__objects_264) $(am__objects_265)
9531077 lib533_OBJECTS = $(am_lib533_OBJECTS)
9541078 lib533_DEPENDENCIES = $(am__DEPENDENCIES_1)
955 am__objects_263 = lib537-first.$(OBJEXT)
956 am__objects_264 = ../../lib/lib537-warnless.$(OBJEXT)
957 am__objects_265 = ../../lib/lib537-curl_multibyte.$(OBJEXT)
958 am_lib537_OBJECTS = lib537-lib537.$(OBJEXT) $(am__objects_263) \
959 $(am__objects_264) $(am__objects_265)
1079 am__objects_266 = ../../lib/lib537-timediff.$(OBJEXT) \
1080 lib537-first.$(OBJEXT)
1081 am__objects_267 = ../../lib/lib537-warnless.$(OBJEXT)
1082 am__objects_268 = ../../lib/lib537-curl_multibyte.$(OBJEXT)
1083 am_lib537_OBJECTS = lib537-lib537.$(OBJEXT) $(am__objects_266) \
1084 $(am__objects_267) $(am__objects_268)
9601085 lib537_OBJECTS = $(am_lib537_OBJECTS)
9611086 lib537_LDADD = $(LDADD)
9621087 lib537_DEPENDENCIES = $(am__DEPENDENCIES_1)
963 am__objects_266 = lib539-first.$(OBJEXT)
964 am_lib539_OBJECTS = lib539-lib539.$(OBJEXT) $(am__objects_266)
1088 am__objects_269 = ../../lib/lib539-timediff.$(OBJEXT) \
1089 lib539-first.$(OBJEXT)
1090 am_lib539_OBJECTS = lib539-lib539.$(OBJEXT) $(am__objects_269)
9651091 lib539_OBJECTS = $(am_lib539_OBJECTS)
9661092 lib539_LDADD = $(LDADD)
9671093 lib539_DEPENDENCIES = $(am__DEPENDENCIES_1)
968 am__objects_267 = lib540-first.$(OBJEXT)
969 am__objects_268 = lib540-testutil.$(OBJEXT)
970 am__objects_269 = ../../lib/lib540-warnless.$(OBJEXT)
971 am_lib540_OBJECTS = lib540-lib540.$(OBJEXT) $(am__objects_267) \
972 $(am__objects_268) $(am__objects_269)
1094 am__objects_270 = ../../lib/lib540-timediff.$(OBJEXT) \
1095 lib540-first.$(OBJEXT)
1096 am__objects_271 = lib540-testutil.$(OBJEXT)
1097 am__objects_272 = ../../lib/lib540-warnless.$(OBJEXT)
1098 am_lib540_OBJECTS = lib540-lib540.$(OBJEXT) $(am__objects_270) \
1099 $(am__objects_271) $(am__objects_272)
9731100 lib540_OBJECTS = $(am_lib540_OBJECTS)
9741101 lib540_DEPENDENCIES = $(am__DEPENDENCIES_1)
975 am__objects_270 = lib541-first.$(OBJEXT)
976 am__objects_271 = ../../lib/lib541-curl_multibyte.$(OBJEXT)
977 am_lib541_OBJECTS = lib541-lib541.$(OBJEXT) $(am__objects_270) \
978 $(am__objects_271)
1102 am__objects_273 = ../../lib/lib541-timediff.$(OBJEXT) \
1103 lib541-first.$(OBJEXT)
1104 am__objects_274 = ../../lib/lib541-curl_multibyte.$(OBJEXT)
1105 am_lib541_OBJECTS = lib541-lib541.$(OBJEXT) $(am__objects_273) \
1106 $(am__objects_274)
9791107 lib541_OBJECTS = $(am_lib541_OBJECTS)
9801108 lib541_LDADD = $(LDADD)
9811109 lib541_DEPENDENCIES = $(am__DEPENDENCIES_1)
982 am__objects_272 = lib542-first.$(OBJEXT)
983 am_lib542_OBJECTS = lib542-lib542.$(OBJEXT) $(am__objects_272)
1110 am__objects_275 = ../../lib/lib542-timediff.$(OBJEXT) \
1111 lib542-first.$(OBJEXT)
1112 am_lib542_OBJECTS = lib542-lib542.$(OBJEXT) $(am__objects_275)
9841113 lib542_OBJECTS = $(am_lib542_OBJECTS)
9851114 lib542_LDADD = $(LDADD)
9861115 lib542_DEPENDENCIES = $(am__DEPENDENCIES_1)
987 am__objects_273 = lib543-first.$(OBJEXT)
988 am_lib543_OBJECTS = lib543-lib543.$(OBJEXT) $(am__objects_273)
1116 am__objects_276 = ../../lib/lib543-timediff.$(OBJEXT) \
1117 lib543-first.$(OBJEXT)
1118 am_lib543_OBJECTS = lib543-lib543.$(OBJEXT) $(am__objects_276)
9891119 lib543_OBJECTS = $(am_lib543_OBJECTS)
9901120 lib543_LDADD = $(LDADD)
9911121 lib543_DEPENDENCIES = $(am__DEPENDENCIES_1)
992 am__objects_274 = lib544-first.$(OBJEXT)
993 am_lib544_OBJECTS = lib544-lib544.$(OBJEXT) $(am__objects_274)
1122 am__objects_277 = ../../lib/lib544-timediff.$(OBJEXT) \
1123 lib544-first.$(OBJEXT)
1124 am_lib544_OBJECTS = lib544-lib544.$(OBJEXT) $(am__objects_277)
9941125 lib544_OBJECTS = $(am_lib544_OBJECTS)
9951126 lib544_LDADD = $(LDADD)
9961127 lib544_DEPENDENCIES = $(am__DEPENDENCIES_1)
997 am__objects_275 = lib545-first.$(OBJEXT)
998 am_lib545_OBJECTS = lib545-lib544.$(OBJEXT) $(am__objects_275)
1128 am__objects_278 = ../../lib/lib545-timediff.$(OBJEXT) \
1129 lib545-first.$(OBJEXT)
1130 am_lib545_OBJECTS = lib545-lib544.$(OBJEXT) $(am__objects_278)
9991131 lib545_OBJECTS = $(am_lib545_OBJECTS)
10001132 lib545_LDADD = $(LDADD)
10011133 lib545_DEPENDENCIES = $(am__DEPENDENCIES_1)
1002 am__objects_276 = lib547-first.$(OBJEXT)
1003 am_lib547_OBJECTS = lib547-lib547.$(OBJEXT) $(am__objects_276)
1134 am__objects_279 = ../../lib/lib547-timediff.$(OBJEXT) \
1135 lib547-first.$(OBJEXT)
1136 am_lib547_OBJECTS = lib547-lib547.$(OBJEXT) $(am__objects_279)
10041137 lib547_OBJECTS = $(am_lib547_OBJECTS)
10051138 lib547_LDADD = $(LDADD)
10061139 lib547_DEPENDENCIES = $(am__DEPENDENCIES_1)
1007 am__objects_277 = lib548-first.$(OBJEXT)
1008 am_lib548_OBJECTS = lib548-lib547.$(OBJEXT) $(am__objects_277)
1140 am__objects_280 = ../../lib/lib548-timediff.$(OBJEXT) \
1141 lib548-first.$(OBJEXT)
1142 am_lib548_OBJECTS = lib548-lib547.$(OBJEXT) $(am__objects_280)
10091143 lib548_OBJECTS = $(am_lib548_OBJECTS)
10101144 lib548_LDADD = $(LDADD)
10111145 lib548_DEPENDENCIES = $(am__DEPENDENCIES_1)
1012 am__objects_278 = lib549-first.$(OBJEXT)
1013 am_lib549_OBJECTS = lib549-lib549.$(OBJEXT) $(am__objects_278)
1146 am__objects_281 = ../../lib/lib549-timediff.$(OBJEXT) \
1147 lib549-first.$(OBJEXT)
1148 am_lib549_OBJECTS = lib549-lib549.$(OBJEXT) $(am__objects_281)
10141149 lib549_OBJECTS = $(am_lib549_OBJECTS)
10151150 lib549_LDADD = $(LDADD)
10161151 lib549_DEPENDENCIES = $(am__DEPENDENCIES_1)
1017 am__objects_279 = lib552-first.$(OBJEXT)
1018 am__objects_280 = ../../lib/lib552-warnless.$(OBJEXT)
1019 am_lib552_OBJECTS = lib552-lib552.$(OBJEXT) $(am__objects_279) \
1020 $(am__objects_280)
1152 am__objects_282 = ../../lib/lib552-timediff.$(OBJEXT) \
1153 lib552-first.$(OBJEXT)
1154 am__objects_283 = ../../lib/lib552-warnless.$(OBJEXT)
1155 am_lib552_OBJECTS = lib552-lib552.$(OBJEXT) $(am__objects_282) \
1156 $(am__objects_283)
10211157 lib552_OBJECTS = $(am_lib552_OBJECTS)
10221158 lib552_LDADD = $(LDADD)
10231159 lib552_DEPENDENCIES = $(am__DEPENDENCIES_1)
1024 am__objects_281 = lib553-first.$(OBJEXT)
1025 am_lib553_OBJECTS = lib553-lib553.$(OBJEXT) $(am__objects_281)
1160 am__objects_284 = ../../lib/lib553-timediff.$(OBJEXT) \
1161 lib553-first.$(OBJEXT)
1162 am_lib553_OBJECTS = lib553-lib553.$(OBJEXT) $(am__objects_284)
10261163 lib553_OBJECTS = $(am_lib553_OBJECTS)
10271164 lib553_LDADD = $(LDADD)
10281165 lib553_DEPENDENCIES = $(am__DEPENDENCIES_1)
1029 am__objects_282 = lib554-first.$(OBJEXT)
1030 am_lib554_OBJECTS = lib554-lib554.$(OBJEXT) $(am__objects_282)
1166 am__objects_285 = ../../lib/lib554-timediff.$(OBJEXT) \
1167 lib554-first.$(OBJEXT)
1168 am_lib554_OBJECTS = lib554-lib554.$(OBJEXT) $(am__objects_285)
10311169 lib554_OBJECTS = $(am_lib554_OBJECTS)
10321170 lib554_LDADD = $(LDADD)
10331171 lib554_DEPENDENCIES = $(am__DEPENDENCIES_1)
1034 am__objects_283 = lib555-first.$(OBJEXT)
1035 am__objects_284 = lib555-testutil.$(OBJEXT)
1036 am__objects_285 = ../../lib/lib555-warnless.$(OBJEXT)
1037 am_lib555_OBJECTS = lib555-lib555.$(OBJEXT) $(am__objects_283) \
1038 $(am__objects_284) $(am__objects_285)
1172 am__objects_286 = ../../lib/lib555-timediff.$(OBJEXT) \
1173 lib555-first.$(OBJEXT)
1174 am__objects_287 = lib555-testutil.$(OBJEXT)
1175 am__objects_288 = ../../lib/lib555-warnless.$(OBJEXT)
1176 am_lib555_OBJECTS = lib555-lib555.$(OBJEXT) $(am__objects_286) \
1177 $(am__objects_287) $(am__objects_288)
10391178 lib555_OBJECTS = $(am_lib555_OBJECTS)
10401179 lib555_DEPENDENCIES = $(am__DEPENDENCIES_1)
1041 am__objects_286 = lib556-first.$(OBJEXT)
1042 am__objects_287 = ../../lib/lib556-warnless.$(OBJEXT)
1043 am_lib556_OBJECTS = lib556-lib556.$(OBJEXT) $(am__objects_286) \
1044 $(am__objects_287)
1180 am__objects_289 = ../../lib/lib556-timediff.$(OBJEXT) \
1181 lib556-first.$(OBJEXT)
1182 am__objects_290 = ../../lib/lib556-warnless.$(OBJEXT)
1183 am_lib556_OBJECTS = lib556-lib556.$(OBJEXT) $(am__objects_289) \
1184 $(am__objects_290)
10451185 lib556_OBJECTS = $(am_lib556_OBJECTS)
10461186 lib556_LDADD = $(LDADD)
10471187 lib556_DEPENDENCIES = $(am__DEPENDENCIES_1)
1048 am__objects_288 = lib557-first.$(OBJEXT)
1049 am_lib557_OBJECTS = lib557-lib557.$(OBJEXT) $(am__objects_288)
1188 am__objects_291 = ../../lib/lib557-timediff.$(OBJEXT) \
1189 lib557-first.$(OBJEXT)
1190 am_lib557_OBJECTS = lib557-lib557.$(OBJEXT) $(am__objects_291)
10501191 lib557_OBJECTS = $(am_lib557_OBJECTS)
10511192 lib557_LDADD = $(LDADD)
10521193 lib557_DEPENDENCIES = $(am__DEPENDENCIES_1)
1053 am__objects_289 = lib558-first.$(OBJEXT)
1054 am_lib558_OBJECTS = lib558-lib558.$(OBJEXT) $(am__objects_289)
1194 am__objects_292 = ../../lib/lib558-timediff.$(OBJEXT) \
1195 lib558-first.$(OBJEXT)
1196 am_lib558_OBJECTS = lib558-lib558.$(OBJEXT) $(am__objects_292)
10551197 lib558_OBJECTS = $(am_lib558_OBJECTS)
10561198 lib558_LDADD = $(LDADD)
10571199 lib558_DEPENDENCIES = $(am__DEPENDENCIES_1)
1058 am__objects_290 = lib559-first.$(OBJEXT)
1059 am_lib559_OBJECTS = lib559-lib559.$(OBJEXT) $(am__objects_290)
1200 am__objects_293 = ../../lib/lib559-timediff.$(OBJEXT) \
1201 lib559-first.$(OBJEXT)
1202 am_lib559_OBJECTS = lib559-lib559.$(OBJEXT) $(am__objects_293)
10601203 lib559_OBJECTS = $(am_lib559_OBJECTS)
10611204 lib559_LDADD = $(LDADD)
10621205 lib559_DEPENDENCIES = $(am__DEPENDENCIES_1)
1063 am__objects_291 = lib560-first.$(OBJEXT)
1064 am__objects_292 = lib560-testutil.$(OBJEXT)
1065 am__objects_293 = ../../lib/lib560-warnless.$(OBJEXT)
1066 am_lib560_OBJECTS = lib560-lib560.$(OBJEXT) $(am__objects_291) \
1067 $(am__objects_292) $(am__objects_293)
1206 am__objects_294 = ../../lib/lib560-timediff.$(OBJEXT) \
1207 lib560-first.$(OBJEXT)
1208 am__objects_295 = lib560-testutil.$(OBJEXT)
1209 am__objects_296 = ../../lib/lib560-warnless.$(OBJEXT)
1210 am_lib560_OBJECTS = lib560-lib560.$(OBJEXT) $(am__objects_294) \
1211 $(am__objects_295) $(am__objects_296)
10681212 lib560_OBJECTS = $(am_lib560_OBJECTS)
10691213 lib560_DEPENDENCIES = $(am__DEPENDENCIES_1)
1070 am__objects_294 = lib562-first.$(OBJEXT)
1071 am_lib562_OBJECTS = lib562-lib562.$(OBJEXT) $(am__objects_294)
1214 am__objects_297 = ../../lib/lib562-timediff.$(OBJEXT) \
1215 lib562-first.$(OBJEXT)
1216 am_lib562_OBJECTS = lib562-lib562.$(OBJEXT) $(am__objects_297)
10721217 lib562_OBJECTS = $(am_lib562_OBJECTS)
10731218 lib562_LDADD = $(LDADD)
10741219 lib562_DEPENDENCIES = $(am__DEPENDENCIES_1)
1075 am__objects_295 = lib564-first.$(OBJEXT)
1076 am__objects_296 = lib564-testutil.$(OBJEXT)
1077 am__objects_297 = ../../lib/lib564-warnless.$(OBJEXT)
1078 am_lib564_OBJECTS = lib564-lib564.$(OBJEXT) $(am__objects_295) \
1079 $(am__objects_296) $(am__objects_297)
1220 am__objects_298 = ../../lib/lib564-timediff.$(OBJEXT) \
1221 lib564-first.$(OBJEXT)
1222 am__objects_299 = lib564-testutil.$(OBJEXT)
1223 am__objects_300 = ../../lib/lib564-warnless.$(OBJEXT)
1224 am_lib564_OBJECTS = lib564-lib564.$(OBJEXT) $(am__objects_298) \
1225 $(am__objects_299) $(am__objects_300)
10801226 lib564_OBJECTS = $(am_lib564_OBJECTS)
10811227 lib564_DEPENDENCIES = $(am__DEPENDENCIES_1)
1082 am__objects_298 = lib565-first.$(OBJEXT)
1083 am_lib565_OBJECTS = lib565-lib510.$(OBJEXT) $(am__objects_298)
1228 am__objects_301 = ../../lib/lib565-timediff.$(OBJEXT) \
1229 lib565-first.$(OBJEXT)
1230 am_lib565_OBJECTS = lib565-lib510.$(OBJEXT) $(am__objects_301)
10841231 lib565_OBJECTS = $(am_lib565_OBJECTS)
10851232 lib565_LDADD = $(LDADD)
10861233 lib565_DEPENDENCIES = $(am__DEPENDENCIES_1)
1087 am__objects_299 = lib566-first.$(OBJEXT)
1088 am__objects_300 = ../../lib/lib566-curl_multibyte.$(OBJEXT)
1089 am_lib566_OBJECTS = lib566-lib566.$(OBJEXT) $(am__objects_299) \
1090 $(am__objects_300)
1234 am__objects_302 = ../../lib/lib566-timediff.$(OBJEXT) \
1235 lib566-first.$(OBJEXT)
1236 am__objects_303 = ../../lib/lib566-curl_multibyte.$(OBJEXT)
1237 am_lib566_OBJECTS = lib566-lib566.$(OBJEXT) $(am__objects_302) \
1238 $(am__objects_303)
10911239 lib566_OBJECTS = $(am_lib566_OBJECTS)
10921240 lib566_LDADD = $(LDADD)
10931241 lib566_DEPENDENCIES = $(am__DEPENDENCIES_1)
1094 am__objects_301 = lib567-first.$(OBJEXT)
1095 am_lib567_OBJECTS = lib567-lib567.$(OBJEXT) $(am__objects_301)
1242 am__objects_304 = ../../lib/lib567-timediff.$(OBJEXT) \
1243 lib567-first.$(OBJEXT)
1244 am_lib567_OBJECTS = lib567-lib567.$(OBJEXT) $(am__objects_304)
10961245 lib567_OBJECTS = $(am_lib567_OBJECTS)
10971246 lib567_LDADD = $(LDADD)
10981247 lib567_DEPENDENCIES = $(am__DEPENDENCIES_1)
1099 am__objects_302 = lib568-first.$(OBJEXT)
1100 am__objects_303 = ../../lib/lib568-curl_multibyte.$(OBJEXT)
1101 am_lib568_OBJECTS = lib568-lib568.$(OBJEXT) $(am__objects_302) \
1102 $(am__objects_303)
1248 am__objects_305 = ../../lib/lib568-timediff.$(OBJEXT) \
1249 lib568-first.$(OBJEXT)
1250 am__objects_306 = ../../lib/lib568-curl_multibyte.$(OBJEXT)
1251 am_lib568_OBJECTS = lib568-lib568.$(OBJEXT) $(am__objects_305) \
1252 $(am__objects_306)
11031253 lib568_OBJECTS = $(am_lib568_OBJECTS)
11041254 lib568_LDADD = $(LDADD)
11051255 lib568_DEPENDENCIES = $(am__DEPENDENCIES_1)
1106 am__objects_304 = lib569-first.$(OBJEXT)
1107 am__objects_305 = ../../lib/lib569-curl_multibyte.$(OBJEXT)
1108 am_lib569_OBJECTS = lib569-lib569.$(OBJEXT) $(am__objects_304) \
1109 $(am__objects_305)
1256 am__objects_307 = ../../lib/lib569-timediff.$(OBJEXT) \
1257 lib569-first.$(OBJEXT)
1258 am__objects_308 = ../../lib/lib569-curl_multibyte.$(OBJEXT)
1259 am_lib569_OBJECTS = lib569-lib569.$(OBJEXT) $(am__objects_307) \
1260 $(am__objects_308)
11101261 lib569_OBJECTS = $(am_lib569_OBJECTS)
11111262 lib569_LDADD = $(LDADD)
11121263 lib569_DEPENDENCIES = $(am__DEPENDENCIES_1)
1113 am__objects_306 = lib570-first.$(OBJEXT)
1114 am_lib570_OBJECTS = lib570-lib570.$(OBJEXT) $(am__objects_306)
1264 am__objects_309 = ../../lib/lib570-timediff.$(OBJEXT) \
1265 lib570-first.$(OBJEXT)
1266 am_lib570_OBJECTS = lib570-lib570.$(OBJEXT) $(am__objects_309)
11151267 lib570_OBJECTS = $(am_lib570_OBJECTS)
11161268 lib570_LDADD = $(LDADD)
11171269 lib570_DEPENDENCIES = $(am__DEPENDENCIES_1)
1118 am__objects_307 = lib571-first.$(OBJEXT)
1119 am__objects_308 = ../../lib/lib571-warnless.$(OBJEXT)
1120 am__objects_309 = ../../lib/lib571-curl_multibyte.$(OBJEXT)
1121 am_lib571_OBJECTS = lib571-lib571.$(OBJEXT) $(am__objects_307) \
1122 $(am__objects_308) $(am__objects_309)
1270 am__objects_310 = ../../lib/lib571-timediff.$(OBJEXT) \
1271 lib571-first.$(OBJEXT)
1272 am__objects_311 = ../../lib/lib571-warnless.$(OBJEXT)
1273 am__objects_312 = ../../lib/lib571-curl_multibyte.$(OBJEXT)
1274 am_lib571_OBJECTS = lib571-lib571.$(OBJEXT) $(am__objects_310) \
1275 $(am__objects_311) $(am__objects_312)
11231276 lib571_OBJECTS = $(am_lib571_OBJECTS)
11241277 lib571_LDADD = $(LDADD)
11251278 lib571_DEPENDENCIES = $(am__DEPENDENCIES_1)
1126 am__objects_310 = lib572-first.$(OBJEXT)
1127 am__objects_311 = ../../lib/lib572-curl_multibyte.$(OBJEXT)
1128 am_lib572_OBJECTS = lib572-lib572.$(OBJEXT) $(am__objects_310) \
1129 $(am__objects_311)
1279 am__objects_313 = ../../lib/lib572-timediff.$(OBJEXT) \
1280 lib572-first.$(OBJEXT)
1281 am__objects_314 = ../../lib/lib572-curl_multibyte.$(OBJEXT)
1282 am_lib572_OBJECTS = lib572-lib572.$(OBJEXT) $(am__objects_313) \
1283 $(am__objects_314)
11301284 lib572_OBJECTS = $(am_lib572_OBJECTS)
11311285 lib572_LDADD = $(LDADD)
11321286 lib572_DEPENDENCIES = $(am__DEPENDENCIES_1)
1133 am__objects_312 = lib573-first.$(OBJEXT)
1134 am__objects_313 = lib573-testutil.$(OBJEXT)
1135 am__objects_314 = ../../lib/lib573-warnless.$(OBJEXT)
1136 am__objects_315 = lib573-testtrace.$(OBJEXT)
1137 am_lib573_OBJECTS = lib573-lib573.$(OBJEXT) $(am__objects_312) \
1138 $(am__objects_313) $(am__objects_314) $(am__objects_315)
1287 am__objects_315 = ../../lib/lib573-timediff.$(OBJEXT) \
1288 lib573-first.$(OBJEXT)
1289 am__objects_316 = lib573-testutil.$(OBJEXT)
1290 am__objects_317 = ../../lib/lib573-warnless.$(OBJEXT)
1291 am__objects_318 = lib573-testtrace.$(OBJEXT)
1292 am_lib573_OBJECTS = lib573-lib573.$(OBJEXT) $(am__objects_315) \
1293 $(am__objects_316) $(am__objects_317) $(am__objects_318)
11391294 lib573_OBJECTS = $(am_lib573_OBJECTS)
11401295 lib573_DEPENDENCIES = $(am__DEPENDENCIES_1)
1141 am__objects_316 = lib574-first.$(OBJEXT)
1142 am_lib574_OBJECTS = lib574-lib574.$(OBJEXT) $(am__objects_316)
1296 am__objects_319 = ../../lib/lib574-timediff.$(OBJEXT) \
1297 lib574-first.$(OBJEXT)
1298 am_lib574_OBJECTS = lib574-lib574.$(OBJEXT) $(am__objects_319)
11431299 lib574_OBJECTS = $(am_lib574_OBJECTS)
11441300 lib574_LDADD = $(LDADD)
11451301 lib574_DEPENDENCIES = $(am__DEPENDENCIES_1)
1146 am__objects_317 = lib575-first.$(OBJEXT)
1147 am__objects_318 = lib575-testutil.$(OBJEXT)
1148 am__objects_319 = ../../lib/lib575-warnless.$(OBJEXT)
1149 am_lib575_OBJECTS = lib575-lib575.$(OBJEXT) $(am__objects_317) \
1150 $(am__objects_318) $(am__objects_319)
1302 am__objects_320 = ../../lib/lib575-timediff.$(OBJEXT) \
1303 lib575-first.$(OBJEXT)
1304 am__objects_321 = lib575-testutil.$(OBJEXT)
1305 am__objects_322 = ../../lib/lib575-warnless.$(OBJEXT)
1306 am_lib575_OBJECTS = lib575-lib575.$(OBJEXT) $(am__objects_320) \
1307 $(am__objects_321) $(am__objects_322)
11511308 lib575_OBJECTS = $(am_lib575_OBJECTS)
11521309 lib575_DEPENDENCIES = $(am__DEPENDENCIES_1)
1153 am__objects_320 = lib576-first.$(OBJEXT)
1154 am_lib576_OBJECTS = lib576-lib576.$(OBJEXT) $(am__objects_320)
1310 am__objects_323 = ../../lib/lib576-timediff.$(OBJEXT) \
1311 lib576-first.$(OBJEXT)
1312 am_lib576_OBJECTS = lib576-lib576.$(OBJEXT) $(am__objects_323)
11551313 lib576_OBJECTS = $(am_lib576_OBJECTS)
11561314 lib576_LDADD = $(LDADD)
11571315 lib576_DEPENDENCIES = $(am__DEPENDENCIES_1)
1158 am__objects_321 = lib578-first.$(OBJEXT)
1159 am__objects_322 = ../../lib/lib578-curl_multibyte.$(OBJEXT)
1160 am_lib578_OBJECTS = lib578-lib578.$(OBJEXT) $(am__objects_321) \
1161 $(am__objects_322)
1316 am__objects_324 = ../../lib/lib578-timediff.$(OBJEXT) \
1317 lib578-first.$(OBJEXT)
1318 am__objects_325 = ../../lib/lib578-curl_multibyte.$(OBJEXT)
1319 am_lib578_OBJECTS = lib578-lib578.$(OBJEXT) $(am__objects_324) \
1320 $(am__objects_325)
11621321 lib578_OBJECTS = $(am_lib578_OBJECTS)
11631322 lib578_LDADD = $(LDADD)
11641323 lib578_DEPENDENCIES = $(am__DEPENDENCIES_1)
1165 am__objects_323 = lib579-first.$(OBJEXT)
1166 am__objects_324 = ../../lib/lib579-curl_multibyte.$(OBJEXT)
1167 am_lib579_OBJECTS = lib579-lib579.$(OBJEXT) $(am__objects_323) \
1168 $(am__objects_324)
1324 am__objects_326 = ../../lib/lib579-timediff.$(OBJEXT) \
1325 lib579-first.$(OBJEXT)
1326 am__objects_327 = ../../lib/lib579-curl_multibyte.$(OBJEXT)
1327 am_lib579_OBJECTS = lib579-lib579.$(OBJEXT) $(am__objects_326) \
1328 $(am__objects_327)
11691329 lib579_OBJECTS = $(am_lib579_OBJECTS)
11701330 lib579_LDADD = $(LDADD)
11711331 lib579_DEPENDENCIES = $(am__DEPENDENCIES_1)
1172 am__objects_325 = lib582-first.$(OBJEXT)
1173 am__objects_326 = lib582-testutil.$(OBJEXT)
1174 am__objects_327 = ../../lib/lib582-warnless.$(OBJEXT)
1175 am__objects_328 = ../../lib/lib582-curl_multibyte.$(OBJEXT)
1176 am_lib582_OBJECTS = lib582-lib582.$(OBJEXT) $(am__objects_325) \
1177 $(am__objects_326) $(am__objects_327) $(am__objects_328)
1332 am__objects_328 = ../../lib/lib582-timediff.$(OBJEXT) \
1333 lib582-first.$(OBJEXT)
1334 am__objects_329 = lib582-testutil.$(OBJEXT)
1335 am__objects_330 = ../../lib/lib582-warnless.$(OBJEXT)
1336 am__objects_331 = ../../lib/lib582-curl_multibyte.$(OBJEXT)
1337 am_lib582_OBJECTS = lib582-lib582.$(OBJEXT) $(am__objects_328) \
1338 $(am__objects_329) $(am__objects_330) $(am__objects_331)
11781339 lib582_OBJECTS = $(am_lib582_OBJECTS)
11791340 lib582_DEPENDENCIES = $(am__DEPENDENCIES_1)
1180 am__objects_329 = lib583-first.$(OBJEXT)
1181 am_lib583_OBJECTS = lib583-lib583.$(OBJEXT) $(am__objects_329)
1341 am__objects_332 = ../../lib/lib583-timediff.$(OBJEXT) \
1342 lib583-first.$(OBJEXT)
1343 am_lib583_OBJECTS = lib583-lib583.$(OBJEXT) $(am__objects_332)
11821344 lib583_OBJECTS = $(am_lib583_OBJECTS)
11831345 lib583_LDADD = $(LDADD)
11841346 lib583_DEPENDENCIES = $(am__DEPENDENCIES_1)
1185 am__objects_330 = lib584-first.$(OBJEXT)
1186 am_lib584_OBJECTS = lib584-lib589.$(OBJEXT) $(am__objects_330)
1347 am__objects_333 = ../../lib/lib584-timediff.$(OBJEXT) \
1348 lib584-first.$(OBJEXT)
1349 am_lib584_OBJECTS = lib584-lib589.$(OBJEXT) $(am__objects_333)
11871350 lib584_OBJECTS = $(am_lib584_OBJECTS)
11881351 lib584_LDADD = $(LDADD)
11891352 lib584_DEPENDENCIES = $(am__DEPENDENCIES_1)
1190 am__objects_331 = lib585-first.$(OBJEXT)
1191 am__objects_332 = lib585-testutil.$(OBJEXT)
1192 am__objects_333 = lib585-testtrace.$(OBJEXT)
1193 am__objects_334 = ../../lib/lib585-curl_multibyte.$(OBJEXT)
1194 am_lib585_OBJECTS = lib585-lib500.$(OBJEXT) $(am__objects_331) \
1195 $(am__objects_332) $(am__objects_333) $(am__objects_334)
1353 am__objects_334 = ../../lib/lib585-timediff.$(OBJEXT) \
1354 lib585-first.$(OBJEXT)
1355 am__objects_335 = lib585-testutil.$(OBJEXT)
1356 am__objects_336 = lib585-testtrace.$(OBJEXT)
1357 am__objects_337 = ../../lib/lib585-curl_multibyte.$(OBJEXT)
1358 am_lib585_OBJECTS = lib585-lib500.$(OBJEXT) $(am__objects_334) \
1359 $(am__objects_335) $(am__objects_336) $(am__objects_337)
11961360 lib585_OBJECTS = $(am_lib585_OBJECTS)
11971361 lib585_DEPENDENCIES = $(am__DEPENDENCIES_1)
1198 am__objects_335 = lib586-first.$(OBJEXT)
1199 am_lib586_OBJECTS = lib586-lib586.$(OBJEXT) $(am__objects_335)
1362 am__objects_338 = ../../lib/lib586-timediff.$(OBJEXT) \
1363 lib586-first.$(OBJEXT)
1364 am_lib586_OBJECTS = lib586-lib586.$(OBJEXT) $(am__objects_338)
12001365 lib586_OBJECTS = $(am_lib586_OBJECTS)
12011366 lib586_LDADD = $(LDADD)
12021367 lib586_DEPENDENCIES = $(am__DEPENDENCIES_1)
1203 am__objects_336 = lib587-first.$(OBJEXT)
1204 am_lib587_OBJECTS = lib587-lib554.$(OBJEXT) $(am__objects_336)
1368 am__objects_339 = ../../lib/lib587-timediff.$(OBJEXT) \
1369 lib587-first.$(OBJEXT)
1370 am_lib587_OBJECTS = lib587-lib554.$(OBJEXT) $(am__objects_339)
12051371 lib587_OBJECTS = $(am_lib587_OBJECTS)
12061372 lib587_LDADD = $(LDADD)
12071373 lib587_DEPENDENCIES = $(am__DEPENDENCIES_1)
1208 am__objects_337 = lib589-first.$(OBJEXT)
1209 am_lib589_OBJECTS = lib589-lib589.$(OBJEXT) $(am__objects_337)
1374 am__objects_340 = ../../lib/lib589-timediff.$(OBJEXT) \
1375 lib589-first.$(OBJEXT)
1376 am_lib589_OBJECTS = lib589-lib589.$(OBJEXT) $(am__objects_340)
12101377 lib589_OBJECTS = $(am_lib589_OBJECTS)
12111378 lib589_LDADD = $(LDADD)
12121379 lib589_DEPENDENCIES = $(am__DEPENDENCIES_1)
1213 am__objects_338 = lib590-first.$(OBJEXT)
1214 am_lib590_OBJECTS = lib590-lib590.$(OBJEXT) $(am__objects_338)
1380 am__objects_341 = ../../lib/lib590-timediff.$(OBJEXT) \
1381 lib590-first.$(OBJEXT)
1382 am_lib590_OBJECTS = lib590-lib590.$(OBJEXT) $(am__objects_341)
12151383 lib590_OBJECTS = $(am_lib590_OBJECTS)
12161384 lib590_LDADD = $(LDADD)
12171385 lib590_DEPENDENCIES = $(am__DEPENDENCIES_1)
1218 am__objects_339 = lib591-first.$(OBJEXT)
1219 am__objects_340 = lib591-testutil.$(OBJEXT)
1220 am__objects_341 = ../../lib/lib591-warnless.$(OBJEXT)
1221 am__objects_342 = ../../lib/lib591-curl_multibyte.$(OBJEXT)
1222 am_lib591_OBJECTS = lib591-lib591.$(OBJEXT) $(am__objects_339) \
1223 $(am__objects_340) $(am__objects_341) $(am__objects_342)
1386 am__objects_342 = ../../lib/lib591-timediff.$(OBJEXT) \
1387 lib591-first.$(OBJEXT)
1388 am__objects_343 = lib591-testutil.$(OBJEXT)
1389 am__objects_344 = ../../lib/lib591-warnless.$(OBJEXT)
1390 am__objects_345 = ../../lib/lib591-curl_multibyte.$(OBJEXT)
1391 am_lib591_OBJECTS = lib591-lib591.$(OBJEXT) $(am__objects_342) \
1392 $(am__objects_343) $(am__objects_344) $(am__objects_345)
12241393 lib591_OBJECTS = $(am_lib591_OBJECTS)
12251394 lib591_DEPENDENCIES = $(am__DEPENDENCIES_1)
1226 am__objects_343 = lib597-first.$(OBJEXT)
1227 am__objects_344 = lib597-testutil.$(OBJEXT)
1228 am__objects_345 = ../../lib/lib597-warnless.$(OBJEXT)
1229 am_lib597_OBJECTS = lib597-lib597.$(OBJEXT) $(am__objects_343) \
1230 $(am__objects_344) $(am__objects_345)
1395 am__objects_346 = ../../lib/lib597-timediff.$(OBJEXT) \
1396 lib597-first.$(OBJEXT)
1397 am__objects_347 = lib597-testutil.$(OBJEXT)
1398 am__objects_348 = ../../lib/lib597-warnless.$(OBJEXT)
1399 am_lib597_OBJECTS = lib597-lib597.$(OBJEXT) $(am__objects_346) \
1400 $(am__objects_347) $(am__objects_348)
12311401 lib597_OBJECTS = $(am_lib597_OBJECTS)
12321402 lib597_DEPENDENCIES = $(am__DEPENDENCIES_1)
1233 am__objects_346 = lib598-first.$(OBJEXT)
1234 am_lib598_OBJECTS = lib598-lib598.$(OBJEXT) $(am__objects_346)
1403 am__objects_349 = ../../lib/lib598-timediff.$(OBJEXT) \
1404 lib598-first.$(OBJEXT)
1405 am_lib598_OBJECTS = lib598-lib598.$(OBJEXT) $(am__objects_349)
12351406 lib598_OBJECTS = $(am_lib598_OBJECTS)
12361407 lib598_LDADD = $(LDADD)
12371408 lib598_DEPENDENCIES = $(am__DEPENDENCIES_1)
1238 am__objects_347 = lib599-first.$(OBJEXT)
1239 am__objects_348 = ../../lib/lib599-curl_multibyte.$(OBJEXT)
1240 am_lib599_OBJECTS = lib599-lib599.$(OBJEXT) $(am__objects_347) \
1241 $(am__objects_348)
1409 am__objects_350 = ../../lib/lib599-timediff.$(OBJEXT) \
1410 lib599-first.$(OBJEXT)
1411 am__objects_351 = ../../lib/lib599-curl_multibyte.$(OBJEXT)
1412 am_lib599_OBJECTS = lib599-lib599.$(OBJEXT) $(am__objects_350) \
1413 $(am__objects_351)
12421414 lib599_OBJECTS = $(am_lib599_OBJECTS)
12431415 lib599_LDADD = $(LDADD)
12441416 lib599_DEPENDENCIES = $(am__DEPENDENCIES_1)
1245 am__objects_349 = lib643-first.$(OBJEXT)
1246 am_lib643_OBJECTS = lib643-lib643.$(OBJEXT) $(am__objects_349)
1417 am__objects_352 = ../../lib/lib643-timediff.$(OBJEXT) \
1418 lib643-first.$(OBJEXT)
1419 am_lib643_OBJECTS = lib643-lib643.$(OBJEXT) $(am__objects_352)
12471420 lib643_OBJECTS = $(am_lib643_OBJECTS)
12481421 lib643_LDADD = $(LDADD)
12491422 lib643_DEPENDENCIES = $(am__DEPENDENCIES_1)
1250 am__objects_350 = lib645-first.$(OBJEXT)
1251 am_lib645_OBJECTS = lib645-lib643.$(OBJEXT) $(am__objects_350)
1423 am__objects_353 = ../../lib/lib645-timediff.$(OBJEXT) \
1424 lib645-first.$(OBJEXT)
1425 am_lib645_OBJECTS = lib645-lib643.$(OBJEXT) $(am__objects_353)
12521426 lib645_OBJECTS = $(am_lib645_OBJECTS)
12531427 lib645_LDADD = $(LDADD)
12541428 lib645_DEPENDENCIES = $(am__DEPENDENCIES_1)
1255 am__objects_351 = lib650-first.$(OBJEXT)
1256 am_lib650_OBJECTS = lib650-lib650.$(OBJEXT) $(am__objects_351)
1429 am__objects_354 = ../../lib/lib650-timediff.$(OBJEXT) \
1430 lib650-first.$(OBJEXT)
1431 am_lib650_OBJECTS = lib650-lib650.$(OBJEXT) $(am__objects_354)
12571432 lib650_OBJECTS = $(am_lib650_OBJECTS)
12581433 lib650_LDADD = $(LDADD)
12591434 lib650_DEPENDENCIES = $(am__DEPENDENCIES_1)
1260 am__objects_352 = lib651-first.$(OBJEXT)
1261 am_lib651_OBJECTS = lib651-lib651.$(OBJEXT) $(am__objects_352)
1435 am__objects_355 = ../../lib/lib651-timediff.$(OBJEXT) \
1436 lib651-first.$(OBJEXT)
1437 am_lib651_OBJECTS = lib651-lib651.$(OBJEXT) $(am__objects_355)
12621438 lib651_OBJECTS = $(am_lib651_OBJECTS)
12631439 lib651_LDADD = $(LDADD)
12641440 lib651_DEPENDENCIES = $(am__DEPENDENCIES_1)
1265 am__objects_353 = lib652-first.$(OBJEXT)
1266 am_lib652_OBJECTS = lib652-lib652.$(OBJEXT) $(am__objects_353)
1441 am__objects_356 = ../../lib/lib652-timediff.$(OBJEXT) \
1442 lib652-first.$(OBJEXT)
1443 am_lib652_OBJECTS = lib652-lib652.$(OBJEXT) $(am__objects_356)
12671444 lib652_OBJECTS = $(am_lib652_OBJECTS)
12681445 lib652_LDADD = $(LDADD)
12691446 lib652_DEPENDENCIES = $(am__DEPENDENCIES_1)
1270 am__objects_354 = lib653-first.$(OBJEXT)
1271 am_lib653_OBJECTS = lib653-lib653.$(OBJEXT) $(am__objects_354)
1447 am__objects_357 = ../../lib/lib653-timediff.$(OBJEXT) \
1448 lib653-first.$(OBJEXT)
1449 am_lib653_OBJECTS = lib653-lib653.$(OBJEXT) $(am__objects_357)
12721450 lib653_OBJECTS = $(am_lib653_OBJECTS)
12731451 lib653_LDADD = $(LDADD)
12741452 lib653_DEPENDENCIES = $(am__DEPENDENCIES_1)
1275 am__objects_355 = lib654-first.$(OBJEXT)
1276 am_lib654_OBJECTS = lib654-lib654.$(OBJEXT) $(am__objects_355)
1453 am__objects_358 = ../../lib/lib654-timediff.$(OBJEXT) \
1454 lib654-first.$(OBJEXT)
1455 am_lib654_OBJECTS = lib654-lib654.$(OBJEXT) $(am__objects_358)
12771456 lib654_OBJECTS = $(am_lib654_OBJECTS)
12781457 lib654_LDADD = $(LDADD)
12791458 lib654_DEPENDENCIES = $(am__DEPENDENCIES_1)
1280 am__objects_356 = lib655-first.$(OBJEXT)
1281 am_lib655_OBJECTS = lib655-lib655.$(OBJEXT) $(am__objects_356)
1459 am__objects_359 = ../../lib/lib655-timediff.$(OBJEXT) \
1460 lib655-first.$(OBJEXT)
1461 am_lib655_OBJECTS = lib655-lib655.$(OBJEXT) $(am__objects_359)
12821462 lib655_OBJECTS = $(am_lib655_OBJECTS)
12831463 lib655_LDADD = $(LDADD)
12841464 lib655_DEPENDENCIES = $(am__DEPENDENCIES_1)
1285 am__objects_357 = lib658-first.$(OBJEXT)
1286 am__objects_358 = lib658-testutil.$(OBJEXT)
1287 am__objects_359 = ../../lib/lib658-warnless.$(OBJEXT)
1288 am_lib658_OBJECTS = lib658-lib658.$(OBJEXT) $(am__objects_357) \
1289 $(am__objects_358) $(am__objects_359)
1465 am__objects_360 = ../../lib/lib658-timediff.$(OBJEXT) \
1466 lib658-first.$(OBJEXT)
1467 am__objects_361 = lib658-testutil.$(OBJEXT)
1468 am__objects_362 = ../../lib/lib658-warnless.$(OBJEXT)
1469 am_lib658_OBJECTS = lib658-lib658.$(OBJEXT) $(am__objects_360) \
1470 $(am__objects_361) $(am__objects_362)
12901471 lib658_OBJECTS = $(am_lib658_OBJECTS)
12911472 lib658_DEPENDENCIES = $(am__DEPENDENCIES_1)
1292 am__objects_360 = lib659-first.$(OBJEXT)
1293 am__objects_361 = lib659-testutil.$(OBJEXT)
1294 am__objects_362 = ../../lib/lib659-warnless.$(OBJEXT)
1295 am_lib659_OBJECTS = lib659-lib659.$(OBJEXT) $(am__objects_360) \
1296 $(am__objects_361) $(am__objects_362)
1473 am__objects_363 = ../../lib/lib659-timediff.$(OBJEXT) \
1474 lib659-first.$(OBJEXT)
1475 am__objects_364 = lib659-testutil.$(OBJEXT)
1476 am__objects_365 = ../../lib/lib659-warnless.$(OBJEXT)
1477 am_lib659_OBJECTS = lib659-lib659.$(OBJEXT) $(am__objects_363) \
1478 $(am__objects_364) $(am__objects_365)
12971479 lib659_OBJECTS = $(am_lib659_OBJECTS)
12981480 lib659_DEPENDENCIES = $(am__DEPENDENCIES_1)
1299 am__objects_363 = lib661-first.$(OBJEXT)
1300 am_lib661_OBJECTS = lib661-lib661.$(OBJEXT) $(am__objects_363)
1481 am__objects_366 = ../../lib/lib661-timediff.$(OBJEXT) \
1482 lib661-first.$(OBJEXT)
1483 am_lib661_OBJECTS = lib661-lib661.$(OBJEXT) $(am__objects_366)
13011484 lib661_OBJECTS = $(am_lib661_OBJECTS)
13021485 lib661_LDADD = $(LDADD)
13031486 lib661_DEPENDENCIES = $(am__DEPENDENCIES_1)
1304 am__objects_364 = lib666-first.$(OBJEXT)
1305 am_lib666_OBJECTS = lib666-lib666.$(OBJEXT) $(am__objects_364)
1487 am__objects_367 = ../../lib/lib666-timediff.$(OBJEXT) \
1488 lib666-first.$(OBJEXT)
1489 am_lib666_OBJECTS = lib666-lib666.$(OBJEXT) $(am__objects_367)
13061490 lib666_OBJECTS = $(am_lib666_OBJECTS)
13071491 lib666_LDADD = $(LDADD)
13081492 lib666_DEPENDENCIES = $(am__DEPENDENCIES_1)
1309 am__objects_365 = lib667-first.$(OBJEXT)
1310 am__objects_366 = lib667-testutil.$(OBJEXT)
1311 am__objects_367 = ../../lib/lib667-warnless.$(OBJEXT)
1312 am_lib667_OBJECTS = lib667-lib667.$(OBJEXT) $(am__objects_365) \
1313 $(am__objects_366) $(am__objects_367)
1493 am__objects_368 = ../../lib/lib667-timediff.$(OBJEXT) \
1494 lib667-first.$(OBJEXT)
1495 am__objects_369 = lib667-testutil.$(OBJEXT)
1496 am__objects_370 = ../../lib/lib667-warnless.$(OBJEXT)
1497 am_lib667_OBJECTS = lib667-lib667.$(OBJEXT) $(am__objects_368) \
1498 $(am__objects_369) $(am__objects_370)
13141499 lib667_OBJECTS = $(am_lib667_OBJECTS)
13151500 lib667_DEPENDENCIES = $(am__DEPENDENCIES_1)
1316 am__objects_368 = lib668-first.$(OBJEXT)
1317 am__objects_369 = lib668-testutil.$(OBJEXT)
1318 am__objects_370 = ../../lib/lib668-warnless.$(OBJEXT)
1319 am_lib668_OBJECTS = lib668-lib668.$(OBJEXT) $(am__objects_368) \
1320 $(am__objects_369) $(am__objects_370)
1501 am__objects_371 = ../../lib/lib668-timediff.$(OBJEXT) \
1502 lib668-first.$(OBJEXT)
1503 am__objects_372 = lib668-testutil.$(OBJEXT)
1504 am__objects_373 = ../../lib/lib668-warnless.$(OBJEXT)
1505 am_lib668_OBJECTS = lib668-lib668.$(OBJEXT) $(am__objects_371) \
1506 $(am__objects_372) $(am__objects_373)
13211507 lib668_OBJECTS = $(am_lib668_OBJECTS)
13221508 lib668_DEPENDENCIES = $(am__DEPENDENCIES_1)
1323 am__objects_371 = lib670-first.$(OBJEXT)
1324 am__objects_372 = lib670-testutil.$(OBJEXT)
1325 am__objects_373 = ../../lib/lib670-warnless.$(OBJEXT)
1326 am_lib670_OBJECTS = lib670-lib670.$(OBJEXT) $(am__objects_371) \
1327 $(am__objects_372) $(am__objects_373)
1509 am__objects_374 = ../../lib/lib670-timediff.$(OBJEXT) \
1510 lib670-first.$(OBJEXT)
1511 am__objects_375 = lib670-testutil.$(OBJEXT)
1512 am__objects_376 = ../../lib/lib670-warnless.$(OBJEXT)
1513 am_lib670_OBJECTS = lib670-lib670.$(OBJEXT) $(am__objects_374) \
1514 $(am__objects_375) $(am__objects_376)
13281515 lib670_OBJECTS = $(am_lib670_OBJECTS)
13291516 lib670_DEPENDENCIES = $(am__DEPENDENCIES_1)
1330 am__objects_374 = lib671-first.$(OBJEXT)
1331 am__objects_375 = lib671-testutil.$(OBJEXT)
1332 am__objects_376 = ../../lib/lib671-warnless.$(OBJEXT)
1333 am_lib671_OBJECTS = lib671-lib670.$(OBJEXT) $(am__objects_374) \
1334 $(am__objects_375) $(am__objects_376)
1517 am__objects_377 = ../../lib/lib671-timediff.$(OBJEXT) \
1518 lib671-first.$(OBJEXT)
1519 am__objects_378 = lib671-testutil.$(OBJEXT)
1520 am__objects_379 = ../../lib/lib671-warnless.$(OBJEXT)
1521 am_lib671_OBJECTS = lib671-lib670.$(OBJEXT) $(am__objects_377) \
1522 $(am__objects_378) $(am__objects_379)
13351523 lib671_OBJECTS = $(am_lib671_OBJECTS)
13361524 lib671_DEPENDENCIES = $(am__DEPENDENCIES_1)
1337 am__objects_377 = lib672-first.$(OBJEXT)
1338 am__objects_378 = lib672-testutil.$(OBJEXT)
1339 am__objects_379 = ../../lib/lib672-warnless.$(OBJEXT)
1340 am_lib672_OBJECTS = lib672-lib670.$(OBJEXT) $(am__objects_377) \
1341 $(am__objects_378) $(am__objects_379)
1525 am__objects_380 = ../../lib/lib672-timediff.$(OBJEXT) \
1526 lib672-first.$(OBJEXT)
1527 am__objects_381 = lib672-testutil.$(OBJEXT)
1528 am__objects_382 = ../../lib/lib672-warnless.$(OBJEXT)
1529 am_lib672_OBJECTS = lib672-lib670.$(OBJEXT) $(am__objects_380) \
1530 $(am__objects_381) $(am__objects_382)
13421531 lib672_OBJECTS = $(am_lib672_OBJECTS)
13431532 lib672_DEPENDENCIES = $(am__DEPENDENCIES_1)
1344 am__objects_380 = lib673-first.$(OBJEXT)
1345 am__objects_381 = lib673-testutil.$(OBJEXT)
1346 am__objects_382 = ../../lib/lib673-warnless.$(OBJEXT)
1347 am_lib673_OBJECTS = lib673-lib670.$(OBJEXT) $(am__objects_380) \
1348 $(am__objects_381) $(am__objects_382)
1533 am__objects_383 = ../../lib/lib673-timediff.$(OBJEXT) \
1534 lib673-first.$(OBJEXT)
1535 am__objects_384 = lib673-testutil.$(OBJEXT)
1536 am__objects_385 = ../../lib/lib673-warnless.$(OBJEXT)
1537 am_lib673_OBJECTS = lib673-lib670.$(OBJEXT) $(am__objects_383) \
1538 $(am__objects_384) $(am__objects_385)
13491539 lib673_OBJECTS = $(am_lib673_OBJECTS)
13501540 lib673_DEPENDENCIES = $(am__DEPENDENCIES_1)
1351 am__objects_383 = lib674-first.$(OBJEXT)
1352 am__objects_384 = lib674-testutil.$(OBJEXT)
1353 am__objects_385 = ../../lib/lib674-warnless.$(OBJEXT)
1354 am_lib674_OBJECTS = lib674-lib674.$(OBJEXT) $(am__objects_383) \
1355 $(am__objects_384) $(am__objects_385)
1541 am__objects_386 = ../../lib/lib674-timediff.$(OBJEXT) \
1542 lib674-first.$(OBJEXT)
1543 am__objects_387 = lib674-testutil.$(OBJEXT)
1544 am__objects_388 = ../../lib/lib674-warnless.$(OBJEXT)
1545 am_lib674_OBJECTS = lib674-lib674.$(OBJEXT) $(am__objects_386) \
1546 $(am__objects_387) $(am__objects_388)
13561547 lib674_OBJECTS = $(am_lib674_OBJECTS)
13571548 lib674_DEPENDENCIES = $(am__DEPENDENCIES_1)
1358 am__objects_386 = lib676-first.$(OBJEXT)
1359 am__objects_387 = lib676-testutil.$(OBJEXT)
1360 am__objects_388 = ../../lib/lib676-warnless.$(OBJEXT)
1361 am_lib676_OBJECTS = lib676-lib676.$(OBJEXT) $(am__objects_386) \
1362 $(am__objects_387) $(am__objects_388)
1549 am__objects_389 = ../../lib/lib676-timediff.$(OBJEXT) \
1550 lib676-first.$(OBJEXT)
1551 am__objects_390 = lib676-testutil.$(OBJEXT)
1552 am__objects_391 = ../../lib/lib676-warnless.$(OBJEXT)
1553 am_lib676_OBJECTS = lib676-lib676.$(OBJEXT) $(am__objects_389) \
1554 $(am__objects_390) $(am__objects_391)
13631555 lib676_OBJECTS = $(am_lib676_OBJECTS)
13641556 lib676_DEPENDENCIES = $(am__DEPENDENCIES_1)
1365 am__objects_389 = lib677-first.$(OBJEXT)
1366 am__objects_390 = lib677-testutil.$(OBJEXT)
1367 am__objects_391 = ../../lib/lib677-warnless.$(OBJEXT)
1368 am__objects_392 = ../../lib/lib677-curl_multibyte.$(OBJEXT)
1369 am_lib677_OBJECTS = lib677-lib677.$(OBJEXT) $(am__objects_389) \
1370 $(am__objects_390) $(am__objects_391) $(am__objects_392)
1557 am__objects_392 = ../../lib/lib677-timediff.$(OBJEXT) \
1558 lib677-first.$(OBJEXT)
1559 am__objects_393 = lib677-testutil.$(OBJEXT)
1560 am__objects_394 = ../../lib/lib677-warnless.$(OBJEXT)
1561 am__objects_395 = ../../lib/lib677-curl_multibyte.$(OBJEXT)
1562 am_lib677_OBJECTS = lib677-lib677.$(OBJEXT) $(am__objects_392) \
1563 $(am__objects_393) $(am__objects_394) $(am__objects_395)
13711564 lib677_OBJECTS = $(am_lib677_OBJECTS)
13721565 lib677_DEPENDENCIES = $(am__DEPENDENCIES_1)
1373 am__objects_393 = lib678-first.$(OBJEXT)
1374 am__objects_394 = lib678-testutil.$(OBJEXT)
1375 am__objects_395 = ../../lib/lib678-warnless.$(OBJEXT)
1376 am__objects_396 = ../../lib/lib678-curl_multibyte.$(OBJEXT)
1377 am_lib678_OBJECTS = lib678-lib678.$(OBJEXT) $(am__objects_393) \
1378 $(am__objects_394) $(am__objects_395) $(am__objects_396)
1566 am__objects_396 = ../../lib/lib678-timediff.$(OBJEXT) \
1567 lib678-first.$(OBJEXT)
1568 am__objects_397 = lib678-testutil.$(OBJEXT)
1569 am__objects_398 = ../../lib/lib678-warnless.$(OBJEXT)
1570 am__objects_399 = ../../lib/lib678-curl_multibyte.$(OBJEXT)
1571 am_lib678_OBJECTS = lib678-lib678.$(OBJEXT) $(am__objects_396) \
1572 $(am__objects_397) $(am__objects_398) $(am__objects_399)
13791573 lib678_OBJECTS = $(am_lib678_OBJECTS)
13801574 lib678_DEPENDENCIES = $(am__DEPENDENCIES_1)
1381 am__objects_397 = libauthretry-first.$(OBJEXT)
1575 am__objects_400 = ../../lib/libauthretry-timediff.$(OBJEXT) \
1576 libauthretry-first.$(OBJEXT)
13821577 am_libauthretry_OBJECTS = libauthretry-libauthretry.$(OBJEXT) \
1383 $(am__objects_397)
1578 $(am__objects_400)
13841579 libauthretry_OBJECTS = $(am_libauthretry_OBJECTS)
13851580 libauthretry_LDADD = $(LDADD)
13861581 libauthretry_DEPENDENCIES = $(am__DEPENDENCIES_1)
1387 am__objects_398 = libntlmconnect-first.$(OBJEXT)
1388 am__objects_399 = libntlmconnect-testutil.$(OBJEXT)
1389 am__objects_400 = ../../lib/libntlmconnect-warnless.$(OBJEXT)
1582 am__objects_401 = ../../lib/libntlmconnect-timediff.$(OBJEXT) \
1583 libntlmconnect-first.$(OBJEXT)
1584 am__objects_402 = libntlmconnect-testutil.$(OBJEXT)
1585 am__objects_403 = ../../lib/libntlmconnect-warnless.$(OBJEXT)
13901586 am_libntlmconnect_OBJECTS = libntlmconnect-libntlmconnect.$(OBJEXT) \
1391 $(am__objects_398) $(am__objects_399) $(am__objects_400)
1587 $(am__objects_401) $(am__objects_402) $(am__objects_403)
13921588 libntlmconnect_OBJECTS = $(am_libntlmconnect_OBJECTS)
13931589 libntlmconnect_DEPENDENCIES = $(am__DEPENDENCIES_1)
1394 am__objects_401 = libprereq-first.$(OBJEXT)
1395 am__objects_402 = libprereq-testutil.$(OBJEXT)
1396 am__objects_403 = ../../lib/libprereq-warnless.$(OBJEXT)
1590 am__objects_404 = ../../lib/libprereq-timediff.$(OBJEXT) \
1591 libprereq-first.$(OBJEXT)
1592 am__objects_405 = libprereq-testutil.$(OBJEXT)
1593 am__objects_406 = ../../lib/libprereq-warnless.$(OBJEXT)
13971594 am_libprereq_OBJECTS = libprereq-libprereq.$(OBJEXT) \
1398 $(am__objects_401) $(am__objects_402) $(am__objects_403)
1595 $(am__objects_404) $(am__objects_405) $(am__objects_406)
13991596 libprereq_OBJECTS = $(am_libprereq_OBJECTS)
14001597 libprereq_DEPENDENCIES = $(am__DEPENDENCIES_1)
14011598 AM_V_P = $(am__v_P_@AM_V@)
14191616 ../../lib/$(DEPDIR)/chkdecimalpoint-mprintf.Po \
14201617 ../../lib/$(DEPDIR)/chkdecimalpoint-strdup.Po \
14211618 ../../lib/$(DEPDIR)/chkhostname-curl_gethostname.Po \
1619 ../../lib/$(DEPDIR)/lib1156-timediff.Po \
14221620 ../../lib/$(DEPDIR)/lib1156-warnless.Po \
1621 ../../lib/$(DEPDIR)/lib1500-timediff.Po \
1622 ../../lib/$(DEPDIR)/lib1501-timediff.Po \
14231623 ../../lib/$(DEPDIR)/lib1501-warnless.Po \
1624 ../../lib/$(DEPDIR)/lib1502-timediff.Po \
14241625 ../../lib/$(DEPDIR)/lib1502-warnless.Po \
1626 ../../lib/$(DEPDIR)/lib1503-timediff.Po \
14251627 ../../lib/$(DEPDIR)/lib1503-warnless.Po \
1628 ../../lib/$(DEPDIR)/lib1504-timediff.Po \
14261629 ../../lib/$(DEPDIR)/lib1504-warnless.Po \
1630 ../../lib/$(DEPDIR)/lib1505-timediff.Po \
14271631 ../../lib/$(DEPDIR)/lib1505-warnless.Po \
1632 ../../lib/$(DEPDIR)/lib1506-timediff.Po \
14281633 ../../lib/$(DEPDIR)/lib1506-warnless.Po \
1634 ../../lib/$(DEPDIR)/lib1507-timediff.Po \
14291635 ../../lib/$(DEPDIR)/lib1507-warnless.Po \
1636 ../../lib/$(DEPDIR)/lib1508-timediff.Po \
14301637 ../../lib/$(DEPDIR)/lib1508-warnless.Po \
1638 ../../lib/$(DEPDIR)/lib1509-timediff.Po \
14311639 ../../lib/$(DEPDIR)/lib1509-warnless.Po \
1640 ../../lib/$(DEPDIR)/lib1510-timediff.Po \
14321641 ../../lib/$(DEPDIR)/lib1510-warnless.Po \
1642 ../../lib/$(DEPDIR)/lib1511-timediff.Po \
14331643 ../../lib/$(DEPDIR)/lib1511-warnless.Po \
1644 ../../lib/$(DEPDIR)/lib1512-timediff.Po \
14341645 ../../lib/$(DEPDIR)/lib1512-warnless.Po \
1646 ../../lib/$(DEPDIR)/lib1513-timediff.Po \
14351647 ../../lib/$(DEPDIR)/lib1513-warnless.Po \
1648 ../../lib/$(DEPDIR)/lib1514-timediff.Po \
14361649 ../../lib/$(DEPDIR)/lib1514-warnless.Po \
1650 ../../lib/$(DEPDIR)/lib1515-timediff.Po \
14371651 ../../lib/$(DEPDIR)/lib1515-warnless.Po \
1652 ../../lib/$(DEPDIR)/lib1517-timediff.Po \
1653 ../../lib/$(DEPDIR)/lib1518-timediff.Po \
1654 ../../lib/$(DEPDIR)/lib1520-timediff.Po \
1655 ../../lib/$(DEPDIR)/lib1521-timediff.Po \
1656 ../../lib/$(DEPDIR)/lib1522-timediff.Po \
1657 ../../lib/$(DEPDIR)/lib1523-timediff.Po \
1658 ../../lib/$(DEPDIR)/lib1525-timediff.Po \
14381659 ../../lib/$(DEPDIR)/lib1525-warnless.Po \
1660 ../../lib/$(DEPDIR)/lib1526-timediff.Po \
14391661 ../../lib/$(DEPDIR)/lib1526-warnless.Po \
1662 ../../lib/$(DEPDIR)/lib1527-timediff.Po \
14401663 ../../lib/$(DEPDIR)/lib1527-warnless.Po \
1664 ../../lib/$(DEPDIR)/lib1528-timediff.Po \
14411665 ../../lib/$(DEPDIR)/lib1528-warnless.Po \
1666 ../../lib/$(DEPDIR)/lib1529-timediff.Po \
14421667 ../../lib/$(DEPDIR)/lib1529-warnless.Po \
1668 ../../lib/$(DEPDIR)/lib1530-timediff.Po \
14431669 ../../lib/$(DEPDIR)/lib1530-warnless.Po \
1670 ../../lib/$(DEPDIR)/lib1531-timediff.Po \
14441671 ../../lib/$(DEPDIR)/lib1531-warnless.Po \
1672 ../../lib/$(DEPDIR)/lib1532-timediff.Po \
14451673 ../../lib/$(DEPDIR)/lib1532-warnless.Po \
1674 ../../lib/$(DEPDIR)/lib1533-timediff.Po \
14461675 ../../lib/$(DEPDIR)/lib1533-warnless.Po \
1676 ../../lib/$(DEPDIR)/lib1534-timediff.Po \
14471677 ../../lib/$(DEPDIR)/lib1534-warnless.Po \
1678 ../../lib/$(DEPDIR)/lib1535-timediff.Po \
14481679 ../../lib/$(DEPDIR)/lib1535-warnless.Po \
1680 ../../lib/$(DEPDIR)/lib1536-timediff.Po \
14491681 ../../lib/$(DEPDIR)/lib1536-warnless.Po \
1682 ../../lib/$(DEPDIR)/lib1537-timediff.Po \
14501683 ../../lib/$(DEPDIR)/lib1537-warnless.Po \
1684 ../../lib/$(DEPDIR)/lib1538-timediff.Po \
14511685 ../../lib/$(DEPDIR)/lib1538-warnless.Po \
1686 ../../lib/$(DEPDIR)/lib1539-timediff.Po \
14521687 ../../lib/$(DEPDIR)/lib1539-warnless.Po \
1688 ../../lib/$(DEPDIR)/lib1540-timediff.Po \
14531689 ../../lib/$(DEPDIR)/lib1540-warnless.Po \
1690 ../../lib/$(DEPDIR)/lib1542-timediff.Po \
14541691 ../../lib/$(DEPDIR)/lib1542-warnless.Po \
1692 ../../lib/$(DEPDIR)/lib1550-timediff.Po \
1693 ../../lib/$(DEPDIR)/lib1551-timediff.Po \
1694 ../../lib/$(DEPDIR)/lib1552-timediff.Po \
1695 ../../lib/$(DEPDIR)/lib1553-timediff.Po \
1696 ../../lib/$(DEPDIR)/lib1554-timediff.Po \
1697 ../../lib/$(DEPDIR)/lib1555-timediff.Po \
14551698 ../../lib/$(DEPDIR)/lib1555-warnless.Po \
1699 ../../lib/$(DEPDIR)/lib1556-timediff.Po \
14561700 ../../lib/$(DEPDIR)/lib1556-warnless.Po \
1701 ../../lib/$(DEPDIR)/lib1557-timediff.Po \
14571702 ../../lib/$(DEPDIR)/lib1557-warnless.Po \
1703 ../../lib/$(DEPDIR)/lib1564-timediff.Po \
14581704 ../../lib/$(DEPDIR)/lib1564-warnless.Po \
1705 ../../lib/$(DEPDIR)/lib1565-timediff.Po \
14591706 ../../lib/$(DEPDIR)/lib1565-warnless.Po \
1707 ../../lib/$(DEPDIR)/lib1567-timediff.Po \
1708 ../../lib/$(DEPDIR)/lib1568-timediff.Po \
1709 ../../lib/$(DEPDIR)/lib1569-timediff.Po \
1710 ../../lib/$(DEPDIR)/lib1591-timediff.Po \
14601711 ../../lib/$(DEPDIR)/lib1591-warnless.Po \
1712 ../../lib/$(DEPDIR)/lib1592-timediff.Po \
14611713 ../../lib/$(DEPDIR)/lib1592-warnless.Po \
1714 ../../lib/$(DEPDIR)/lib1596-timediff.Po \
14621715 ../../lib/$(DEPDIR)/lib1596-warnless.Po \
1716 ../../lib/$(DEPDIR)/lib1905-timediff.Po \
14631717 ../../lib/$(DEPDIR)/lib1905-warnless.Po \
1718 ../../lib/$(DEPDIR)/lib1906-timediff.Po \
14641719 ../../lib/$(DEPDIR)/lib1906-warnless.Po \
1720 ../../lib/$(DEPDIR)/lib1907-timediff.Po \
14651721 ../../lib/$(DEPDIR)/lib1907-warnless.Po \
1722 ../../lib/$(DEPDIR)/lib1908-timediff.Po \
14661723 ../../lib/$(DEPDIR)/lib1908-warnless.Po \
1724 ../../lib/$(DEPDIR)/lib1910-timediff.Po \
14671725 ../../lib/$(DEPDIR)/lib1910-warnless.Po \
1726 ../../lib/$(DEPDIR)/lib1911-timediff.Po \
14681727 ../../lib/$(DEPDIR)/lib1911-warnless.Po \
1728 ../../lib/$(DEPDIR)/lib1912-timediff.Po \
14691729 ../../lib/$(DEPDIR)/lib1912-warnless.Po \
1730 ../../lib/$(DEPDIR)/lib1913-timediff.Po \
14701731 ../../lib/$(DEPDIR)/lib1913-warnless.Po \
1732 ../../lib/$(DEPDIR)/lib1915-timediff.Po \
14711733 ../../lib/$(DEPDIR)/lib1915-warnless.Po \
1734 ../../lib/$(DEPDIR)/lib1916-timediff.Po \
14721735 ../../lib/$(DEPDIR)/lib1916-warnless.Po \
1736 ../../lib/$(DEPDIR)/lib1917-timediff.Po \
14731737 ../../lib/$(DEPDIR)/lib1917-warnless.Po \
1738 ../../lib/$(DEPDIR)/lib1918-timediff.Po \
14741739 ../../lib/$(DEPDIR)/lib1918-warnless.Po \
1740 ../../lib/$(DEPDIR)/lib1933-timediff.Po \
14751741 ../../lib/$(DEPDIR)/lib1933-warnless.Po \
1742 ../../lib/$(DEPDIR)/lib1934-timediff.Po \
14761743 ../../lib/$(DEPDIR)/lib1934-warnless.Po \
1744 ../../lib/$(DEPDIR)/lib1935-timediff.Po \
14771745 ../../lib/$(DEPDIR)/lib1935-warnless.Po \
1746 ../../lib/$(DEPDIR)/lib1936-timediff.Po \
14781747 ../../lib/$(DEPDIR)/lib1936-warnless.Po \
1748 ../../lib/$(DEPDIR)/lib1937-timediff.Po \
1749 ../../lib/$(DEPDIR)/lib1938-timediff.Po \
1750 ../../lib/$(DEPDIR)/lib1939-timediff.Po \
1751 ../../lib/$(DEPDIR)/lib1940-timediff.Po \
1752 ../../lib/$(DEPDIR)/lib1945-timediff.Po \
1753 ../../lib/$(DEPDIR)/lib1946-timediff.Po \
1754 ../../lib/$(DEPDIR)/lib3010-timediff.Po \
14791755 ../../lib/$(DEPDIR)/lib3010-warnless.Po \
1756 ../../lib/$(DEPDIR)/lib3025-timediff.Po \
14801757 ../../lib/$(DEPDIR)/lib3025-warnless.Po \
14811758 ../../lib/$(DEPDIR)/lib500-curl_multibyte.Po \
1759 ../../lib/$(DEPDIR)/lib500-timediff.Po \
1760 ../../lib/$(DEPDIR)/lib501-timediff.Po \
1761 ../../lib/$(DEPDIR)/lib502-timediff.Po \
14821762 ../../lib/$(DEPDIR)/lib502-warnless.Po \
1763 ../../lib/$(DEPDIR)/lib503-timediff.Po \
14831764 ../../lib/$(DEPDIR)/lib503-warnless.Po \
1765 ../../lib/$(DEPDIR)/lib504-timediff.Po \
14841766 ../../lib/$(DEPDIR)/lib504-warnless.Po \
14851767 ../../lib/$(DEPDIR)/lib505-curl_multibyte.Po \
1768 ../../lib/$(DEPDIR)/lib505-timediff.Po \
1769 ../../lib/$(DEPDIR)/lib506-timediff.Po \
1770 ../../lib/$(DEPDIR)/lib507-timediff.Po \
14861771 ../../lib/$(DEPDIR)/lib507-warnless.Po \
1772 ../../lib/$(DEPDIR)/lib508-timediff.Po \
1773 ../../lib/$(DEPDIR)/lib509-timediff.Po \
1774 ../../lib/$(DEPDIR)/lib510-timediff.Po \
1775 ../../lib/$(DEPDIR)/lib511-timediff.Po \
1776 ../../lib/$(DEPDIR)/lib512-timediff.Po \
1777 ../../lib/$(DEPDIR)/lib513-timediff.Po \
1778 ../../lib/$(DEPDIR)/lib514-timediff.Po \
1779 ../../lib/$(DEPDIR)/lib515-timediff.Po \
1780 ../../lib/$(DEPDIR)/lib516-timediff.Po \
1781 ../../lib/$(DEPDIR)/lib517-timediff.Po \
14871782 ../../lib/$(DEPDIR)/lib518-curl_multibyte.Po \
1783 ../../lib/$(DEPDIR)/lib518-timediff.Po \
14881784 ../../lib/$(DEPDIR)/lib518-warnless.Po \
1785 ../../lib/$(DEPDIR)/lib519-timediff.Po \
1786 ../../lib/$(DEPDIR)/lib520-timediff.Po \
1787 ../../lib/$(DEPDIR)/lib521-timediff.Po \
1788 ../../lib/$(DEPDIR)/lib523-timediff.Po \
1789 ../../lib/$(DEPDIR)/lib524-timediff.Po \
14891790 ../../lib/$(DEPDIR)/lib525-curl_multibyte.Po \
1791 ../../lib/$(DEPDIR)/lib525-timediff.Po \
14901792 ../../lib/$(DEPDIR)/lib525-warnless.Po \
1793 ../../lib/$(DEPDIR)/lib526-timediff.Po \
14911794 ../../lib/$(DEPDIR)/lib526-warnless.Po \
1795 ../../lib/$(DEPDIR)/lib527-timediff.Po \
14921796 ../../lib/$(DEPDIR)/lib527-warnless.Po \
14931797 ../../lib/$(DEPDIR)/lib529-curl_multibyte.Po \
1798 ../../lib/$(DEPDIR)/lib529-timediff.Po \
14941799 ../../lib/$(DEPDIR)/lib529-warnless.Po \
1800 ../../lib/$(DEPDIR)/lib530-timediff.Po \
14951801 ../../lib/$(DEPDIR)/lib530-warnless.Po \
1802 ../../lib/$(DEPDIR)/lib532-timediff.Po \
14961803 ../../lib/$(DEPDIR)/lib532-warnless.Po \
1804 ../../lib/$(DEPDIR)/lib533-timediff.Po \
14971805 ../../lib/$(DEPDIR)/lib533-warnless.Po \
14981806 ../../lib/$(DEPDIR)/lib537-curl_multibyte.Po \
1807 ../../lib/$(DEPDIR)/lib537-timediff.Po \
14991808 ../../lib/$(DEPDIR)/lib537-warnless.Po \
1809 ../../lib/$(DEPDIR)/lib539-timediff.Po \
1810 ../../lib/$(DEPDIR)/lib540-timediff.Po \
15001811 ../../lib/$(DEPDIR)/lib540-warnless.Po \
15011812 ../../lib/$(DEPDIR)/lib541-curl_multibyte.Po \
1813 ../../lib/$(DEPDIR)/lib541-timediff.Po \
1814 ../../lib/$(DEPDIR)/lib542-timediff.Po \
1815 ../../lib/$(DEPDIR)/lib543-timediff.Po \
1816 ../../lib/$(DEPDIR)/lib544-timediff.Po \
1817 ../../lib/$(DEPDIR)/lib545-timediff.Po \
1818 ../../lib/$(DEPDIR)/lib547-timediff.Po \
1819 ../../lib/$(DEPDIR)/lib548-timediff.Po \
1820 ../../lib/$(DEPDIR)/lib549-timediff.Po \
1821 ../../lib/$(DEPDIR)/lib552-timediff.Po \
15021822 ../../lib/$(DEPDIR)/lib552-warnless.Po \
1823 ../../lib/$(DEPDIR)/lib553-timediff.Po \
1824 ../../lib/$(DEPDIR)/lib554-timediff.Po \
1825 ../../lib/$(DEPDIR)/lib555-timediff.Po \
15031826 ../../lib/$(DEPDIR)/lib555-warnless.Po \
1827 ../../lib/$(DEPDIR)/lib556-timediff.Po \
15041828 ../../lib/$(DEPDIR)/lib556-warnless.Po \
1829 ../../lib/$(DEPDIR)/lib557-timediff.Po \
1830 ../../lib/$(DEPDIR)/lib558-timediff.Po \
1831 ../../lib/$(DEPDIR)/lib559-timediff.Po \
1832 ../../lib/$(DEPDIR)/lib560-timediff.Po \
15051833 ../../lib/$(DEPDIR)/lib560-warnless.Po \
1834 ../../lib/$(DEPDIR)/lib562-timediff.Po \
1835 ../../lib/$(DEPDIR)/lib564-timediff.Po \
15061836 ../../lib/$(DEPDIR)/lib564-warnless.Po \
1837 ../../lib/$(DEPDIR)/lib565-timediff.Po \
15071838 ../../lib/$(DEPDIR)/lib566-curl_multibyte.Po \
1839 ../../lib/$(DEPDIR)/lib566-timediff.Po \
1840 ../../lib/$(DEPDIR)/lib567-timediff.Po \
15081841 ../../lib/$(DEPDIR)/lib568-curl_multibyte.Po \
1842 ../../lib/$(DEPDIR)/lib568-timediff.Po \
15091843 ../../lib/$(DEPDIR)/lib569-curl_multibyte.Po \
1844 ../../lib/$(DEPDIR)/lib569-timediff.Po \
1845 ../../lib/$(DEPDIR)/lib570-timediff.Po \
15101846 ../../lib/$(DEPDIR)/lib571-curl_multibyte.Po \
1847 ../../lib/$(DEPDIR)/lib571-timediff.Po \
15111848 ../../lib/$(DEPDIR)/lib571-warnless.Po \
15121849 ../../lib/$(DEPDIR)/lib572-curl_multibyte.Po \
1850 ../../lib/$(DEPDIR)/lib572-timediff.Po \
1851 ../../lib/$(DEPDIR)/lib573-timediff.Po \
15131852 ../../lib/$(DEPDIR)/lib573-warnless.Po \
1853 ../../lib/$(DEPDIR)/lib574-timediff.Po \
1854 ../../lib/$(DEPDIR)/lib575-timediff.Po \
15141855 ../../lib/$(DEPDIR)/lib575-warnless.Po \
1856 ../../lib/$(DEPDIR)/lib576-timediff.Po \
15151857 ../../lib/$(DEPDIR)/lib578-curl_multibyte.Po \
1858 ../../lib/$(DEPDIR)/lib578-timediff.Po \
15161859 ../../lib/$(DEPDIR)/lib579-curl_multibyte.Po \
1860 ../../lib/$(DEPDIR)/lib579-timediff.Po \
15171861 ../../lib/$(DEPDIR)/lib582-curl_multibyte.Po \
1862 ../../lib/$(DEPDIR)/lib582-timediff.Po \
15181863 ../../lib/$(DEPDIR)/lib582-warnless.Po \
1864 ../../lib/$(DEPDIR)/lib583-timediff.Po \
1865 ../../lib/$(DEPDIR)/lib584-timediff.Po \
15191866 ../../lib/$(DEPDIR)/lib585-curl_multibyte.Po \
1867 ../../lib/$(DEPDIR)/lib585-timediff.Po \
1868 ../../lib/$(DEPDIR)/lib586-timediff.Po \
1869 ../../lib/$(DEPDIR)/lib587-timediff.Po \
1870 ../../lib/$(DEPDIR)/lib589-timediff.Po \
1871 ../../lib/$(DEPDIR)/lib590-timediff.Po \
15201872 ../../lib/$(DEPDIR)/lib591-curl_multibyte.Po \
1873 ../../lib/$(DEPDIR)/lib591-timediff.Po \
15211874 ../../lib/$(DEPDIR)/lib591-warnless.Po \
1875 ../../lib/$(DEPDIR)/lib597-timediff.Po \
15221876 ../../lib/$(DEPDIR)/lib597-warnless.Po \
1877 ../../lib/$(DEPDIR)/lib598-timediff.Po \
15231878 ../../lib/$(DEPDIR)/lib599-curl_multibyte.Po \
1879 ../../lib/$(DEPDIR)/lib599-timediff.Po \
1880 ../../lib/$(DEPDIR)/lib643-timediff.Po \
1881 ../../lib/$(DEPDIR)/lib645-timediff.Po \
1882 ../../lib/$(DEPDIR)/lib650-timediff.Po \
1883 ../../lib/$(DEPDIR)/lib651-timediff.Po \
1884 ../../lib/$(DEPDIR)/lib652-timediff.Po \
1885 ../../lib/$(DEPDIR)/lib653-timediff.Po \
1886 ../../lib/$(DEPDIR)/lib654-timediff.Po \
1887 ../../lib/$(DEPDIR)/lib655-timediff.Po \
1888 ../../lib/$(DEPDIR)/lib658-timediff.Po \
15241889 ../../lib/$(DEPDIR)/lib658-warnless.Po \
1890 ../../lib/$(DEPDIR)/lib659-timediff.Po \
15251891 ../../lib/$(DEPDIR)/lib659-warnless.Po \
1892 ../../lib/$(DEPDIR)/lib661-timediff.Po \
1893 ../../lib/$(DEPDIR)/lib666-timediff.Po \
1894 ../../lib/$(DEPDIR)/lib667-timediff.Po \
15261895 ../../lib/$(DEPDIR)/lib667-warnless.Po \
1896 ../../lib/$(DEPDIR)/lib668-timediff.Po \
15271897 ../../lib/$(DEPDIR)/lib668-warnless.Po \
1898 ../../lib/$(DEPDIR)/lib670-timediff.Po \
15281899 ../../lib/$(DEPDIR)/lib670-warnless.Po \
1900 ../../lib/$(DEPDIR)/lib671-timediff.Po \
15291901 ../../lib/$(DEPDIR)/lib671-warnless.Po \
1902 ../../lib/$(DEPDIR)/lib672-timediff.Po \
15301903 ../../lib/$(DEPDIR)/lib672-warnless.Po \
1904 ../../lib/$(DEPDIR)/lib673-timediff.Po \
15311905 ../../lib/$(DEPDIR)/lib673-warnless.Po \
1906 ../../lib/$(DEPDIR)/lib674-timediff.Po \
15321907 ../../lib/$(DEPDIR)/lib674-warnless.Po \
1908 ../../lib/$(DEPDIR)/lib676-timediff.Po \
15331909 ../../lib/$(DEPDIR)/lib676-warnless.Po \
15341910 ../../lib/$(DEPDIR)/lib677-curl_multibyte.Po \
1911 ../../lib/$(DEPDIR)/lib677-timediff.Po \
15351912 ../../lib/$(DEPDIR)/lib677-warnless.Po \
15361913 ../../lib/$(DEPDIR)/lib678-curl_multibyte.Po \
1914 ../../lib/$(DEPDIR)/lib678-timediff.Po \
15371915 ../../lib/$(DEPDIR)/lib678-warnless.Po \
1916 ../../lib/$(DEPDIR)/libauthretry-timediff.Po \
1917 ../../lib/$(DEPDIR)/libntlmconnect-timediff.Po \
15381918 ../../lib/$(DEPDIR)/libntlmconnect-warnless.Po \
1919 ../../lib/$(DEPDIR)/libprereq-timediff.Po \
15391920 ../../lib/$(DEPDIR)/libprereq-warnless.Po \
1921 ../../lib/$(DEPDIR)/timediff.Po \
15401922 ../../lib/$(DEPDIR)/warnless.Po \
15411923 ./$(DEPDIR)/chkdecimalpoint-chkdecimalpoint.Po \
15421924 ./$(DEPDIR)/chkhostname-chkhostname.Po ./$(DEPDIR)/first.Po \
16492031 ./$(DEPDIR)/lib1936-testutil.Po ./$(DEPDIR)/lib1937-first.Po \
16502032 ./$(DEPDIR)/lib1937-lib1937.Po ./$(DEPDIR)/lib1938-first.Po \
16512033 ./$(DEPDIR)/lib1938-lib1938.Po ./$(DEPDIR)/lib1939-first.Po \
1652 ./$(DEPDIR)/lib1939-lib1939.Po ./$(DEPDIR)/lib3010-first.Po \
2034 ./$(DEPDIR)/lib1939-lib1939.Po ./$(DEPDIR)/lib1940-first.Po \
2035 ./$(DEPDIR)/lib1940-lib1940.Po ./$(DEPDIR)/lib1945-first.Po \
2036 ./$(DEPDIR)/lib1945-lib1945.Po ./$(DEPDIR)/lib1946-first.Po \
2037 ./$(DEPDIR)/lib1946-lib1940.Po ./$(DEPDIR)/lib3010-first.Po \
16532038 ./$(DEPDIR)/lib3010-lib3010.Po ./$(DEPDIR)/lib3010-testutil.Po \
16542039 ./$(DEPDIR)/lib3025-first.Po ./$(DEPDIR)/lib3025-lib3025.Po \
16552040 ./$(DEPDIR)/lib3025-testutil.Po ./$(DEPDIR)/lib500-first.Po \
18312216 $(lib1916_SOURCES) $(lib1917_SOURCES) $(lib1918_SOURCES) \
18322217 $(lib1933_SOURCES) $(lib1934_SOURCES) $(lib1935_SOURCES) \
18332218 $(lib1936_SOURCES) $(lib1937_SOURCES) $(lib1938_SOURCES) \
1834 $(lib1939_SOURCES) $(lib3010_SOURCES) $(lib3025_SOURCES) \
2219 $(lib1939_SOURCES) $(lib1940_SOURCES) $(lib1945_SOURCES) \
2220 $(lib1946_SOURCES) $(lib3010_SOURCES) $(lib3025_SOURCES) \
18352221 $(lib500_SOURCES) $(lib501_SOURCES) $(lib502_SOURCES) \
18362222 $(lib503_SOURCES) $(lib504_SOURCES) $(lib505_SOURCES) \
18372223 $(lib506_SOURCES) $(lib507_SOURCES) $(lib508_SOURCES) \
18952281 $(lib1915_SOURCES) $(lib1916_SOURCES) $(lib1917_SOURCES) \
18962282 $(lib1918_SOURCES) $(lib1933_SOURCES) $(lib1934_SOURCES) \
18972283 $(lib1935_SOURCES) $(lib1936_SOURCES) $(lib1937_SOURCES) \
1898 $(lib1938_SOURCES) $(lib1939_SOURCES) $(lib3010_SOURCES) \
2284 $(lib1938_SOURCES) $(lib1939_SOURCES) $(lib1940_SOURCES) \
2285 $(lib1945_SOURCES) $(lib1946_SOURCES) $(lib3010_SOURCES) \
18992286 $(lib3025_SOURCES) $(lib500_SOURCES) $(lib501_SOURCES) \
19002287 $(lib502_SOURCES) $(lib503_SOURCES) $(lib504_SOURCES) \
19012288 $(lib505_SOURCES) $(lib506_SOURCES) $(lib507_SOURCES) \
20002387 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
20012388 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
20022389 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
2390 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
20032391 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
20042392 CYGPATH_W = @CYGPATH_W@
20052393 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
20172405 ETAGS = @ETAGS@
20182406 EXEEXT = @EXEEXT@
20192407 FGREP = @FGREP@
2408 FILECMD = @FILECMD@
20202409 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
20212410 GCOV = @GCOV@
20222411 GREP = @GREP@
20942483 USE_LIBSSH = @USE_LIBSSH@
20952484 USE_LIBSSH2 = @USE_LIBSSH2@
20962485 USE_MBEDTLS = @USE_MBEDTLS@
2486 USE_MSH3 = @USE_MSH3@
20972487 USE_NGHTTP2 = @USE_NGHTTP2@
20982488 USE_NGHTTP3 = @USE_NGHTTP3@
20992489 USE_NGTCP2 = @USE_NGTCP2@
22232613 # | (__| |_| | _ <| |___
22242614 # \___|\___/|_| \_\_____|
22252615 #
2226 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
2616 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
22272617 #
22282618 # This software is licensed as described in the file COPYING, which
22292619 # you should have received as part of this distribution. The terms
22502640 MULTIBYTE = ../../lib/curl_multibyte.c ../../lib/curl_multibyte.h
22512641
22522642 # these files are used in every single test program below
2253 SUPPORTFILES = first.c test.h
2643 SUPPORTFILES = ../../lib/timediff.c ../../lib/timediff.h first.c test.h
22542644 chkdecimalpoint_SOURCES = chkdecimalpoint.c ../../lib/mprintf.c \
22552645 ../../lib/curl_ctype.c ../../lib/dynbuf.c ../../lib/strdup.c
22562646
27273117 lib1939_SOURCES = lib1939.c $(SUPPORTFILES)
27283118 lib1939_LDADD = $(TESTUTIL_LIBS)
27293119 lib1939_CPPFLAGS = $(AM_CPPFLAGS)
3120 lib1940_SOURCES = lib1940.c $(SUPPORTFILES)
3121 lib1940_LDADD = $(TESTUTIL_LIBS)
3122 lib1940_CPPFLAGS = $(AM_CPPFLAGS)
3123 lib1945_SOURCES = lib1945.c $(SUPPORTFILES)
3124 lib1945_LDADD = $(TESTUTIL_LIBS)
3125 lib1945_CPPFLAGS = $(AM_CPPFLAGS)
3126 lib1946_SOURCES = lib1940.c $(SUPPORTFILES)
3127 lib1946_LDADD = $(TESTUTIL_LIBS)
3128 lib1946_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1946
27303129 lib3010_SOURCES = lib3010.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
27313130 lib3010_LDADD = $(TESTUTIL_LIBS)
27323131 lib3010_CPPFLAGS = $(AM_CPPFLAGS)
28493248 chkhostname$(EXEEXT): $(chkhostname_OBJECTS) $(chkhostname_DEPENDENCIES) $(EXTRA_chkhostname_DEPENDENCIES)
28503249 @rm -f chkhostname$(EXEEXT)
28513250 $(AM_V_CCLD)$(LINK) $(chkhostname_OBJECTS) $(chkhostname_LDADD) $(LIBS)
3251 ../../lib/lib1156-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3252 ../../lib/$(DEPDIR)/$(am__dirstamp)
28523253 ../../lib/lib1156-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28533254 ../../lib/$(DEPDIR)/$(am__dirstamp)
28543255
28553256 lib1156$(EXEEXT): $(lib1156_OBJECTS) $(lib1156_DEPENDENCIES) $(EXTRA_lib1156_DEPENDENCIES)
28563257 @rm -f lib1156$(EXEEXT)
28573258 $(AM_V_CCLD)$(LINK) $(lib1156_OBJECTS) $(lib1156_LDADD) $(LIBS)
3259 ../../lib/lib1500-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3260 ../../lib/$(DEPDIR)/$(am__dirstamp)
28583261
28593262 lib1500$(EXEEXT): $(lib1500_OBJECTS) $(lib1500_DEPENDENCIES) $(EXTRA_lib1500_DEPENDENCIES)
28603263 @rm -f lib1500$(EXEEXT)
28613264 $(AM_V_CCLD)$(LINK) $(lib1500_OBJECTS) $(lib1500_LDADD) $(LIBS)
3265 ../../lib/lib1501-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3266 ../../lib/$(DEPDIR)/$(am__dirstamp)
28623267 ../../lib/lib1501-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28633268 ../../lib/$(DEPDIR)/$(am__dirstamp)
28643269
28653270 lib1501$(EXEEXT): $(lib1501_OBJECTS) $(lib1501_DEPENDENCIES) $(EXTRA_lib1501_DEPENDENCIES)
28663271 @rm -f lib1501$(EXEEXT)
28673272 $(AM_V_CCLD)$(LINK) $(lib1501_OBJECTS) $(lib1501_LDADD) $(LIBS)
3273 ../../lib/lib1502-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3274 ../../lib/$(DEPDIR)/$(am__dirstamp)
28683275 ../../lib/lib1502-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28693276 ../../lib/$(DEPDIR)/$(am__dirstamp)
28703277
28713278 lib1502$(EXEEXT): $(lib1502_OBJECTS) $(lib1502_DEPENDENCIES) $(EXTRA_lib1502_DEPENDENCIES)
28723279 @rm -f lib1502$(EXEEXT)
28733280 $(AM_V_CCLD)$(LINK) $(lib1502_OBJECTS) $(lib1502_LDADD) $(LIBS)
3281 ../../lib/lib1503-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3282 ../../lib/$(DEPDIR)/$(am__dirstamp)
28743283 ../../lib/lib1503-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28753284 ../../lib/$(DEPDIR)/$(am__dirstamp)
28763285
28773286 lib1503$(EXEEXT): $(lib1503_OBJECTS) $(lib1503_DEPENDENCIES) $(EXTRA_lib1503_DEPENDENCIES)
28783287 @rm -f lib1503$(EXEEXT)
28793288 $(AM_V_CCLD)$(LINK) $(lib1503_OBJECTS) $(lib1503_LDADD) $(LIBS)
3289 ../../lib/lib1504-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3290 ../../lib/$(DEPDIR)/$(am__dirstamp)
28803291 ../../lib/lib1504-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28813292 ../../lib/$(DEPDIR)/$(am__dirstamp)
28823293
28833294 lib1504$(EXEEXT): $(lib1504_OBJECTS) $(lib1504_DEPENDENCIES) $(EXTRA_lib1504_DEPENDENCIES)
28843295 @rm -f lib1504$(EXEEXT)
28853296 $(AM_V_CCLD)$(LINK) $(lib1504_OBJECTS) $(lib1504_LDADD) $(LIBS)
3297 ../../lib/lib1505-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3298 ../../lib/$(DEPDIR)/$(am__dirstamp)
28863299 ../../lib/lib1505-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28873300 ../../lib/$(DEPDIR)/$(am__dirstamp)
28883301
28893302 lib1505$(EXEEXT): $(lib1505_OBJECTS) $(lib1505_DEPENDENCIES) $(EXTRA_lib1505_DEPENDENCIES)
28903303 @rm -f lib1505$(EXEEXT)
28913304 $(AM_V_CCLD)$(LINK) $(lib1505_OBJECTS) $(lib1505_LDADD) $(LIBS)
3305 ../../lib/lib1506-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3306 ../../lib/$(DEPDIR)/$(am__dirstamp)
28923307 ../../lib/lib1506-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28933308 ../../lib/$(DEPDIR)/$(am__dirstamp)
28943309
28953310 lib1506$(EXEEXT): $(lib1506_OBJECTS) $(lib1506_DEPENDENCIES) $(EXTRA_lib1506_DEPENDENCIES)
28963311 @rm -f lib1506$(EXEEXT)
28973312 $(AM_V_CCLD)$(LINK) $(lib1506_OBJECTS) $(lib1506_LDADD) $(LIBS)
3313 ../../lib/lib1507-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3314 ../../lib/$(DEPDIR)/$(am__dirstamp)
28983315 ../../lib/lib1507-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
28993316 ../../lib/$(DEPDIR)/$(am__dirstamp)
29003317
29013318 lib1507$(EXEEXT): $(lib1507_OBJECTS) $(lib1507_DEPENDENCIES) $(EXTRA_lib1507_DEPENDENCIES)
29023319 @rm -f lib1507$(EXEEXT)
29033320 $(AM_V_CCLD)$(LINK) $(lib1507_OBJECTS) $(lib1507_LDADD) $(LIBS)
3321 ../../lib/lib1508-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3322 ../../lib/$(DEPDIR)/$(am__dirstamp)
29043323 ../../lib/lib1508-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29053324 ../../lib/$(DEPDIR)/$(am__dirstamp)
29063325
29073326 lib1508$(EXEEXT): $(lib1508_OBJECTS) $(lib1508_DEPENDENCIES) $(EXTRA_lib1508_DEPENDENCIES)
29083327 @rm -f lib1508$(EXEEXT)
29093328 $(AM_V_CCLD)$(LINK) $(lib1508_OBJECTS) $(lib1508_LDADD) $(LIBS)
3329 ../../lib/lib1509-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3330 ../../lib/$(DEPDIR)/$(am__dirstamp)
29103331 ../../lib/lib1509-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29113332 ../../lib/$(DEPDIR)/$(am__dirstamp)
29123333
29133334 lib1509$(EXEEXT): $(lib1509_OBJECTS) $(lib1509_DEPENDENCIES) $(EXTRA_lib1509_DEPENDENCIES)
29143335 @rm -f lib1509$(EXEEXT)
29153336 $(AM_V_CCLD)$(LINK) $(lib1509_OBJECTS) $(lib1509_LDADD) $(LIBS)
3337 ../../lib/lib1510-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3338 ../../lib/$(DEPDIR)/$(am__dirstamp)
29163339 ../../lib/lib1510-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29173340 ../../lib/$(DEPDIR)/$(am__dirstamp)
29183341
29193342 lib1510$(EXEEXT): $(lib1510_OBJECTS) $(lib1510_DEPENDENCIES) $(EXTRA_lib1510_DEPENDENCIES)
29203343 @rm -f lib1510$(EXEEXT)
29213344 $(AM_V_CCLD)$(LINK) $(lib1510_OBJECTS) $(lib1510_LDADD) $(LIBS)
3345 ../../lib/lib1511-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3346 ../../lib/$(DEPDIR)/$(am__dirstamp)
29223347 ../../lib/lib1511-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29233348 ../../lib/$(DEPDIR)/$(am__dirstamp)
29243349
29253350 lib1511$(EXEEXT): $(lib1511_OBJECTS) $(lib1511_DEPENDENCIES) $(EXTRA_lib1511_DEPENDENCIES)
29263351 @rm -f lib1511$(EXEEXT)
29273352 $(AM_V_CCLD)$(LINK) $(lib1511_OBJECTS) $(lib1511_LDADD) $(LIBS)
3353 ../../lib/lib1512-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3354 ../../lib/$(DEPDIR)/$(am__dirstamp)
29283355 ../../lib/lib1512-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29293356 ../../lib/$(DEPDIR)/$(am__dirstamp)
29303357
29313358 lib1512$(EXEEXT): $(lib1512_OBJECTS) $(lib1512_DEPENDENCIES) $(EXTRA_lib1512_DEPENDENCIES)
29323359 @rm -f lib1512$(EXEEXT)
29333360 $(AM_V_CCLD)$(LINK) $(lib1512_OBJECTS) $(lib1512_LDADD) $(LIBS)
3361 ../../lib/lib1513-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3362 ../../lib/$(DEPDIR)/$(am__dirstamp)
29343363 ../../lib/lib1513-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29353364 ../../lib/$(DEPDIR)/$(am__dirstamp)
29363365
29373366 lib1513$(EXEEXT): $(lib1513_OBJECTS) $(lib1513_DEPENDENCIES) $(EXTRA_lib1513_DEPENDENCIES)
29383367 @rm -f lib1513$(EXEEXT)
29393368 $(AM_V_CCLD)$(LINK) $(lib1513_OBJECTS) $(lib1513_LDADD) $(LIBS)
3369 ../../lib/lib1514-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3370 ../../lib/$(DEPDIR)/$(am__dirstamp)
29403371 ../../lib/lib1514-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29413372 ../../lib/$(DEPDIR)/$(am__dirstamp)
29423373
29433374 lib1514$(EXEEXT): $(lib1514_OBJECTS) $(lib1514_DEPENDENCIES) $(EXTRA_lib1514_DEPENDENCIES)
29443375 @rm -f lib1514$(EXEEXT)
29453376 $(AM_V_CCLD)$(LINK) $(lib1514_OBJECTS) $(lib1514_LDADD) $(LIBS)
3377 ../../lib/lib1515-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3378 ../../lib/$(DEPDIR)/$(am__dirstamp)
29463379 ../../lib/lib1515-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29473380 ../../lib/$(DEPDIR)/$(am__dirstamp)
29483381
29493382 lib1515$(EXEEXT): $(lib1515_OBJECTS) $(lib1515_DEPENDENCIES) $(EXTRA_lib1515_DEPENDENCIES)
29503383 @rm -f lib1515$(EXEEXT)
29513384 $(AM_V_CCLD)$(LINK) $(lib1515_OBJECTS) $(lib1515_LDADD) $(LIBS)
3385 ../../lib/lib1517-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3386 ../../lib/$(DEPDIR)/$(am__dirstamp)
29523387
29533388 lib1517$(EXEEXT): $(lib1517_OBJECTS) $(lib1517_DEPENDENCIES) $(EXTRA_lib1517_DEPENDENCIES)
29543389 @rm -f lib1517$(EXEEXT)
29553390 $(AM_V_CCLD)$(LINK) $(lib1517_OBJECTS) $(lib1517_LDADD) $(LIBS)
3391 ../../lib/lib1518-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3392 ../../lib/$(DEPDIR)/$(am__dirstamp)
29563393
29573394 lib1518$(EXEEXT): $(lib1518_OBJECTS) $(lib1518_DEPENDENCIES) $(EXTRA_lib1518_DEPENDENCIES)
29583395 @rm -f lib1518$(EXEEXT)
29593396 $(AM_V_CCLD)$(LINK) $(lib1518_OBJECTS) $(lib1518_LDADD) $(LIBS)
3397 ../../lib/lib1520-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3398 ../../lib/$(DEPDIR)/$(am__dirstamp)
29603399
29613400 lib1520$(EXEEXT): $(lib1520_OBJECTS) $(lib1520_DEPENDENCIES) $(EXTRA_lib1520_DEPENDENCIES)
29623401 @rm -f lib1520$(EXEEXT)
29633402 $(AM_V_CCLD)$(LINK) $(lib1520_OBJECTS) $(lib1520_LDADD) $(LIBS)
3403 ../../lib/lib1521-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3404 ../../lib/$(DEPDIR)/$(am__dirstamp)
29643405
29653406 lib1521$(EXEEXT): $(lib1521_OBJECTS) $(lib1521_DEPENDENCIES) $(EXTRA_lib1521_DEPENDENCIES)
29663407 @rm -f lib1521$(EXEEXT)
29673408 $(AM_V_CCLD)$(LINK) $(lib1521_OBJECTS) $(lib1521_LDADD) $(LIBS)
3409 ../../lib/lib1522-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3410 ../../lib/$(DEPDIR)/$(am__dirstamp)
29683411
29693412 lib1522$(EXEEXT): $(lib1522_OBJECTS) $(lib1522_DEPENDENCIES) $(EXTRA_lib1522_DEPENDENCIES)
29703413 @rm -f lib1522$(EXEEXT)
29713414 $(AM_V_CCLD)$(LINK) $(lib1522_OBJECTS) $(lib1522_LDADD) $(LIBS)
3415 ../../lib/lib1523-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3416 ../../lib/$(DEPDIR)/$(am__dirstamp)
29723417
29733418 lib1523$(EXEEXT): $(lib1523_OBJECTS) $(lib1523_DEPENDENCIES) $(EXTRA_lib1523_DEPENDENCIES)
29743419 @rm -f lib1523$(EXEEXT)
29753420 $(AM_V_CCLD)$(LINK) $(lib1523_OBJECTS) $(lib1523_LDADD) $(LIBS)
3421 ../../lib/lib1525-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3422 ../../lib/$(DEPDIR)/$(am__dirstamp)
29763423 ../../lib/lib1525-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29773424 ../../lib/$(DEPDIR)/$(am__dirstamp)
29783425
29793426 lib1525$(EXEEXT): $(lib1525_OBJECTS) $(lib1525_DEPENDENCIES) $(EXTRA_lib1525_DEPENDENCIES)
29803427 @rm -f lib1525$(EXEEXT)
29813428 $(AM_V_CCLD)$(LINK) $(lib1525_OBJECTS) $(lib1525_LDADD) $(LIBS)
3429 ../../lib/lib1526-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3430 ../../lib/$(DEPDIR)/$(am__dirstamp)
29823431 ../../lib/lib1526-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29833432 ../../lib/$(DEPDIR)/$(am__dirstamp)
29843433
29853434 lib1526$(EXEEXT): $(lib1526_OBJECTS) $(lib1526_DEPENDENCIES) $(EXTRA_lib1526_DEPENDENCIES)
29863435 @rm -f lib1526$(EXEEXT)
29873436 $(AM_V_CCLD)$(LINK) $(lib1526_OBJECTS) $(lib1526_LDADD) $(LIBS)
3437 ../../lib/lib1527-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3438 ../../lib/$(DEPDIR)/$(am__dirstamp)
29883439 ../../lib/lib1527-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29893440 ../../lib/$(DEPDIR)/$(am__dirstamp)
29903441
29913442 lib1527$(EXEEXT): $(lib1527_OBJECTS) $(lib1527_DEPENDENCIES) $(EXTRA_lib1527_DEPENDENCIES)
29923443 @rm -f lib1527$(EXEEXT)
29933444 $(AM_V_CCLD)$(LINK) $(lib1527_OBJECTS) $(lib1527_LDADD) $(LIBS)
3445 ../../lib/lib1528-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3446 ../../lib/$(DEPDIR)/$(am__dirstamp)
29943447 ../../lib/lib1528-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
29953448 ../../lib/$(DEPDIR)/$(am__dirstamp)
29963449
29973450 lib1528$(EXEEXT): $(lib1528_OBJECTS) $(lib1528_DEPENDENCIES) $(EXTRA_lib1528_DEPENDENCIES)
29983451 @rm -f lib1528$(EXEEXT)
29993452 $(AM_V_CCLD)$(LINK) $(lib1528_OBJECTS) $(lib1528_LDADD) $(LIBS)
3453 ../../lib/lib1529-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3454 ../../lib/$(DEPDIR)/$(am__dirstamp)
30003455 ../../lib/lib1529-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30013456 ../../lib/$(DEPDIR)/$(am__dirstamp)
30023457
30033458 lib1529$(EXEEXT): $(lib1529_OBJECTS) $(lib1529_DEPENDENCIES) $(EXTRA_lib1529_DEPENDENCIES)
30043459 @rm -f lib1529$(EXEEXT)
30053460 $(AM_V_CCLD)$(LINK) $(lib1529_OBJECTS) $(lib1529_LDADD) $(LIBS)
3461 ../../lib/lib1530-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3462 ../../lib/$(DEPDIR)/$(am__dirstamp)
30063463 ../../lib/lib1530-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30073464 ../../lib/$(DEPDIR)/$(am__dirstamp)
30083465
30093466 lib1530$(EXEEXT): $(lib1530_OBJECTS) $(lib1530_DEPENDENCIES) $(EXTRA_lib1530_DEPENDENCIES)
30103467 @rm -f lib1530$(EXEEXT)
30113468 $(AM_V_CCLD)$(LINK) $(lib1530_OBJECTS) $(lib1530_LDADD) $(LIBS)
3469 ../../lib/lib1531-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3470 ../../lib/$(DEPDIR)/$(am__dirstamp)
30123471 ../../lib/lib1531-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30133472 ../../lib/$(DEPDIR)/$(am__dirstamp)
30143473
30153474 lib1531$(EXEEXT): $(lib1531_OBJECTS) $(lib1531_DEPENDENCIES) $(EXTRA_lib1531_DEPENDENCIES)
30163475 @rm -f lib1531$(EXEEXT)
30173476 $(AM_V_CCLD)$(LINK) $(lib1531_OBJECTS) $(lib1531_LDADD) $(LIBS)
3477 ../../lib/lib1532-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3478 ../../lib/$(DEPDIR)/$(am__dirstamp)
30183479 ../../lib/lib1532-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30193480 ../../lib/$(DEPDIR)/$(am__dirstamp)
30203481
30213482 lib1532$(EXEEXT): $(lib1532_OBJECTS) $(lib1532_DEPENDENCIES) $(EXTRA_lib1532_DEPENDENCIES)
30223483 @rm -f lib1532$(EXEEXT)
30233484 $(AM_V_CCLD)$(LINK) $(lib1532_OBJECTS) $(lib1532_LDADD) $(LIBS)
3485 ../../lib/lib1533-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3486 ../../lib/$(DEPDIR)/$(am__dirstamp)
30243487 ../../lib/lib1533-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30253488 ../../lib/$(DEPDIR)/$(am__dirstamp)
30263489
30273490 lib1533$(EXEEXT): $(lib1533_OBJECTS) $(lib1533_DEPENDENCIES) $(EXTRA_lib1533_DEPENDENCIES)
30283491 @rm -f lib1533$(EXEEXT)
30293492 $(AM_V_CCLD)$(LINK) $(lib1533_OBJECTS) $(lib1533_LDADD) $(LIBS)
3493 ../../lib/lib1534-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3494 ../../lib/$(DEPDIR)/$(am__dirstamp)
30303495 ../../lib/lib1534-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30313496 ../../lib/$(DEPDIR)/$(am__dirstamp)
30323497
30333498 lib1534$(EXEEXT): $(lib1534_OBJECTS) $(lib1534_DEPENDENCIES) $(EXTRA_lib1534_DEPENDENCIES)
30343499 @rm -f lib1534$(EXEEXT)
30353500 $(AM_V_CCLD)$(LINK) $(lib1534_OBJECTS) $(lib1534_LDADD) $(LIBS)
3501 ../../lib/lib1535-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3502 ../../lib/$(DEPDIR)/$(am__dirstamp)
30363503 ../../lib/lib1535-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30373504 ../../lib/$(DEPDIR)/$(am__dirstamp)
30383505
30393506 lib1535$(EXEEXT): $(lib1535_OBJECTS) $(lib1535_DEPENDENCIES) $(EXTRA_lib1535_DEPENDENCIES)
30403507 @rm -f lib1535$(EXEEXT)
30413508 $(AM_V_CCLD)$(LINK) $(lib1535_OBJECTS) $(lib1535_LDADD) $(LIBS)
3509 ../../lib/lib1536-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3510 ../../lib/$(DEPDIR)/$(am__dirstamp)
30423511 ../../lib/lib1536-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30433512 ../../lib/$(DEPDIR)/$(am__dirstamp)
30443513
30453514 lib1536$(EXEEXT): $(lib1536_OBJECTS) $(lib1536_DEPENDENCIES) $(EXTRA_lib1536_DEPENDENCIES)
30463515 @rm -f lib1536$(EXEEXT)
30473516 $(AM_V_CCLD)$(LINK) $(lib1536_OBJECTS) $(lib1536_LDADD) $(LIBS)
3517 ../../lib/lib1537-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3518 ../../lib/$(DEPDIR)/$(am__dirstamp)
30483519 ../../lib/lib1537-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30493520 ../../lib/$(DEPDIR)/$(am__dirstamp)
30503521
30513522 lib1537$(EXEEXT): $(lib1537_OBJECTS) $(lib1537_DEPENDENCIES) $(EXTRA_lib1537_DEPENDENCIES)
30523523 @rm -f lib1537$(EXEEXT)
30533524 $(AM_V_CCLD)$(LINK) $(lib1537_OBJECTS) $(lib1537_LDADD) $(LIBS)
3525 ../../lib/lib1538-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3526 ../../lib/$(DEPDIR)/$(am__dirstamp)
30543527 ../../lib/lib1538-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30553528 ../../lib/$(DEPDIR)/$(am__dirstamp)
30563529
30573530 lib1538$(EXEEXT): $(lib1538_OBJECTS) $(lib1538_DEPENDENCIES) $(EXTRA_lib1538_DEPENDENCIES)
30583531 @rm -f lib1538$(EXEEXT)
30593532 $(AM_V_CCLD)$(LINK) $(lib1538_OBJECTS) $(lib1538_LDADD) $(LIBS)
3533 ../../lib/lib1539-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3534 ../../lib/$(DEPDIR)/$(am__dirstamp)
30603535 ../../lib/lib1539-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30613536 ../../lib/$(DEPDIR)/$(am__dirstamp)
30623537
30633538 lib1539$(EXEEXT): $(lib1539_OBJECTS) $(lib1539_DEPENDENCIES) $(EXTRA_lib1539_DEPENDENCIES)
30643539 @rm -f lib1539$(EXEEXT)
30653540 $(AM_V_CCLD)$(LINK) $(lib1539_OBJECTS) $(lib1539_LDADD) $(LIBS)
3541 ../../lib/lib1540-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3542 ../../lib/$(DEPDIR)/$(am__dirstamp)
30663543 ../../lib/lib1540-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30673544 ../../lib/$(DEPDIR)/$(am__dirstamp)
30683545
30693546 lib1540$(EXEEXT): $(lib1540_OBJECTS) $(lib1540_DEPENDENCIES) $(EXTRA_lib1540_DEPENDENCIES)
30703547 @rm -f lib1540$(EXEEXT)
30713548 $(AM_V_CCLD)$(LINK) $(lib1540_OBJECTS) $(lib1540_LDADD) $(LIBS)
3549 ../../lib/lib1542-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3550 ../../lib/$(DEPDIR)/$(am__dirstamp)
30723551 ../../lib/lib1542-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30733552 ../../lib/$(DEPDIR)/$(am__dirstamp)
30743553
30753554 lib1542$(EXEEXT): $(lib1542_OBJECTS) $(lib1542_DEPENDENCIES) $(EXTRA_lib1542_DEPENDENCIES)
30763555 @rm -f lib1542$(EXEEXT)
30773556 $(AM_V_CCLD)$(LINK) $(lib1542_OBJECTS) $(lib1542_LDADD) $(LIBS)
3557 ../../lib/lib1550-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3558 ../../lib/$(DEPDIR)/$(am__dirstamp)
30783559
30793560 lib1550$(EXEEXT): $(lib1550_OBJECTS) $(lib1550_DEPENDENCIES) $(EXTRA_lib1550_DEPENDENCIES)
30803561 @rm -f lib1550$(EXEEXT)
30813562 $(AM_V_CCLD)$(LINK) $(lib1550_OBJECTS) $(lib1550_LDADD) $(LIBS)
3563 ../../lib/lib1551-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3564 ../../lib/$(DEPDIR)/$(am__dirstamp)
30823565
30833566 lib1551$(EXEEXT): $(lib1551_OBJECTS) $(lib1551_DEPENDENCIES) $(EXTRA_lib1551_DEPENDENCIES)
30843567 @rm -f lib1551$(EXEEXT)
30853568 $(AM_V_CCLD)$(LINK) $(lib1551_OBJECTS) $(lib1551_LDADD) $(LIBS)
3569 ../../lib/lib1552-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3570 ../../lib/$(DEPDIR)/$(am__dirstamp)
30863571
30873572 lib1552$(EXEEXT): $(lib1552_OBJECTS) $(lib1552_DEPENDENCIES) $(EXTRA_lib1552_DEPENDENCIES)
30883573 @rm -f lib1552$(EXEEXT)
30893574 $(AM_V_CCLD)$(LINK) $(lib1552_OBJECTS) $(lib1552_LDADD) $(LIBS)
3575 ../../lib/lib1553-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3576 ../../lib/$(DEPDIR)/$(am__dirstamp)
30903577
30913578 lib1553$(EXEEXT): $(lib1553_OBJECTS) $(lib1553_DEPENDENCIES) $(EXTRA_lib1553_DEPENDENCIES)
30923579 @rm -f lib1553$(EXEEXT)
30933580 $(AM_V_CCLD)$(LINK) $(lib1553_OBJECTS) $(lib1553_LDADD) $(LIBS)
3581 ../../lib/lib1554-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3582 ../../lib/$(DEPDIR)/$(am__dirstamp)
30943583
30953584 lib1554$(EXEEXT): $(lib1554_OBJECTS) $(lib1554_DEPENDENCIES) $(EXTRA_lib1554_DEPENDENCIES)
30963585 @rm -f lib1554$(EXEEXT)
30973586 $(AM_V_CCLD)$(LINK) $(lib1554_OBJECTS) $(lib1554_LDADD) $(LIBS)
3587 ../../lib/lib1555-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3588 ../../lib/$(DEPDIR)/$(am__dirstamp)
30983589 ../../lib/lib1555-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
30993590 ../../lib/$(DEPDIR)/$(am__dirstamp)
31003591
31013592 lib1555$(EXEEXT): $(lib1555_OBJECTS) $(lib1555_DEPENDENCIES) $(EXTRA_lib1555_DEPENDENCIES)
31023593 @rm -f lib1555$(EXEEXT)
31033594 $(AM_V_CCLD)$(LINK) $(lib1555_OBJECTS) $(lib1555_LDADD) $(LIBS)
3595 ../../lib/lib1556-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3596 ../../lib/$(DEPDIR)/$(am__dirstamp)
31043597 ../../lib/lib1556-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31053598 ../../lib/$(DEPDIR)/$(am__dirstamp)
31063599
31073600 lib1556$(EXEEXT): $(lib1556_OBJECTS) $(lib1556_DEPENDENCIES) $(EXTRA_lib1556_DEPENDENCIES)
31083601 @rm -f lib1556$(EXEEXT)
31093602 $(AM_V_CCLD)$(LINK) $(lib1556_OBJECTS) $(lib1556_LDADD) $(LIBS)
3603 ../../lib/lib1557-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3604 ../../lib/$(DEPDIR)/$(am__dirstamp)
31103605 ../../lib/lib1557-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31113606 ../../lib/$(DEPDIR)/$(am__dirstamp)
31123607
31133608 lib1557$(EXEEXT): $(lib1557_OBJECTS) $(lib1557_DEPENDENCIES) $(EXTRA_lib1557_DEPENDENCIES)
31143609 @rm -f lib1557$(EXEEXT)
31153610 $(AM_V_CCLD)$(LINK) $(lib1557_OBJECTS) $(lib1557_LDADD) $(LIBS)
3611 ../../lib/timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3612 ../../lib/$(DEPDIR)/$(am__dirstamp)
31163613 ../../lib/warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31173614 ../../lib/$(DEPDIR)/$(am__dirstamp)
31183615
31273624 lib1560$(EXEEXT): $(lib1560_OBJECTS) $(lib1560_DEPENDENCIES) $(EXTRA_lib1560_DEPENDENCIES)
31283625 @rm -f lib1560$(EXEEXT)
31293626 $(AM_V_CCLD)$(LINK) $(lib1560_OBJECTS) $(lib1560_LDADD) $(LIBS)
3627 ../../lib/lib1564-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3628 ../../lib/$(DEPDIR)/$(am__dirstamp)
31303629 ../../lib/lib1564-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31313630 ../../lib/$(DEPDIR)/$(am__dirstamp)
31323631
31333632 lib1564$(EXEEXT): $(lib1564_OBJECTS) $(lib1564_DEPENDENCIES) $(EXTRA_lib1564_DEPENDENCIES)
31343633 @rm -f lib1564$(EXEEXT)
31353634 $(AM_V_CCLD)$(LINK) $(lib1564_OBJECTS) $(lib1564_LDADD) $(LIBS)
3635 ../../lib/lib1565-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3636 ../../lib/$(DEPDIR)/$(am__dirstamp)
31363637 ../../lib/lib1565-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31373638 ../../lib/$(DEPDIR)/$(am__dirstamp)
31383639
31393640 lib1565$(EXEEXT): $(lib1565_OBJECTS) $(lib1565_DEPENDENCIES) $(EXTRA_lib1565_DEPENDENCIES)
31403641 @rm -f lib1565$(EXEEXT)
31413642 $(AM_V_CCLD)$(LINK) $(lib1565_OBJECTS) $(lib1565_LDADD) $(LIBS)
3643 ../../lib/lib1567-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3644 ../../lib/$(DEPDIR)/$(am__dirstamp)
31423645
31433646 lib1567$(EXEEXT): $(lib1567_OBJECTS) $(lib1567_DEPENDENCIES) $(EXTRA_lib1567_DEPENDENCIES)
31443647 @rm -f lib1567$(EXEEXT)
31453648 $(AM_V_CCLD)$(LINK) $(lib1567_OBJECTS) $(lib1567_LDADD) $(LIBS)
3649 ../../lib/lib1568-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3650 ../../lib/$(DEPDIR)/$(am__dirstamp)
31463651
31473652 lib1568$(EXEEXT): $(lib1568_OBJECTS) $(lib1568_DEPENDENCIES) $(EXTRA_lib1568_DEPENDENCIES)
31483653 @rm -f lib1568$(EXEEXT)
31493654 $(AM_V_CCLD)$(LINK) $(lib1568_OBJECTS) $(lib1568_LDADD) $(LIBS)
3655 ../../lib/lib1569-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3656 ../../lib/$(DEPDIR)/$(am__dirstamp)
31503657
31513658 lib1569$(EXEEXT): $(lib1569_OBJECTS) $(lib1569_DEPENDENCIES) $(EXTRA_lib1569_DEPENDENCIES)
31523659 @rm -f lib1569$(EXEEXT)
31533660 $(AM_V_CCLD)$(LINK) $(lib1569_OBJECTS) $(lib1569_LDADD) $(LIBS)
3661 ../../lib/lib1591-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3662 ../../lib/$(DEPDIR)/$(am__dirstamp)
31543663 ../../lib/lib1591-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31553664 ../../lib/$(DEPDIR)/$(am__dirstamp)
31563665
31573666 lib1591$(EXEEXT): $(lib1591_OBJECTS) $(lib1591_DEPENDENCIES) $(EXTRA_lib1591_DEPENDENCIES)
31583667 @rm -f lib1591$(EXEEXT)
31593668 $(AM_V_CCLD)$(LINK) $(lib1591_OBJECTS) $(lib1591_LDADD) $(LIBS)
3669 ../../lib/lib1592-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3670 ../../lib/$(DEPDIR)/$(am__dirstamp)
31603671 ../../lib/lib1592-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31613672 ../../lib/$(DEPDIR)/$(am__dirstamp)
31623673
31713682 lib1594$(EXEEXT): $(lib1594_OBJECTS) $(lib1594_DEPENDENCIES) $(EXTRA_lib1594_DEPENDENCIES)
31723683 @rm -f lib1594$(EXEEXT)
31733684 $(AM_V_CCLD)$(LINK) $(lib1594_OBJECTS) $(lib1594_LDADD) $(LIBS)
3685 ../../lib/lib1596-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3686 ../../lib/$(DEPDIR)/$(am__dirstamp)
31743687 ../../lib/lib1596-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31753688 ../../lib/$(DEPDIR)/$(am__dirstamp)
31763689
31773690 lib1596$(EXEEXT): $(lib1596_OBJECTS) $(lib1596_DEPENDENCIES) $(EXTRA_lib1596_DEPENDENCIES)
31783691 @rm -f lib1596$(EXEEXT)
31793692 $(AM_V_CCLD)$(LINK) $(lib1596_OBJECTS) $(lib1596_LDADD) $(LIBS)
3693 ../../lib/lib1905-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3694 ../../lib/$(DEPDIR)/$(am__dirstamp)
31803695 ../../lib/lib1905-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31813696 ../../lib/$(DEPDIR)/$(am__dirstamp)
31823697
31833698 lib1905$(EXEEXT): $(lib1905_OBJECTS) $(lib1905_DEPENDENCIES) $(EXTRA_lib1905_DEPENDENCIES)
31843699 @rm -f lib1905$(EXEEXT)
31853700 $(AM_V_CCLD)$(LINK) $(lib1905_OBJECTS) $(lib1905_LDADD) $(LIBS)
3701 ../../lib/lib1906-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3702 ../../lib/$(DEPDIR)/$(am__dirstamp)
31863703 ../../lib/lib1906-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31873704 ../../lib/$(DEPDIR)/$(am__dirstamp)
31883705
31893706 lib1906$(EXEEXT): $(lib1906_OBJECTS) $(lib1906_DEPENDENCIES) $(EXTRA_lib1906_DEPENDENCIES)
31903707 @rm -f lib1906$(EXEEXT)
31913708 $(AM_V_CCLD)$(LINK) $(lib1906_OBJECTS) $(lib1906_LDADD) $(LIBS)
3709 ../../lib/lib1907-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3710 ../../lib/$(DEPDIR)/$(am__dirstamp)
31923711 ../../lib/lib1907-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31933712 ../../lib/$(DEPDIR)/$(am__dirstamp)
31943713
31953714 lib1907$(EXEEXT): $(lib1907_OBJECTS) $(lib1907_DEPENDENCIES) $(EXTRA_lib1907_DEPENDENCIES)
31963715 @rm -f lib1907$(EXEEXT)
31973716 $(AM_V_CCLD)$(LINK) $(lib1907_OBJECTS) $(lib1907_LDADD) $(LIBS)
3717 ../../lib/lib1908-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3718 ../../lib/$(DEPDIR)/$(am__dirstamp)
31983719 ../../lib/lib1908-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
31993720 ../../lib/$(DEPDIR)/$(am__dirstamp)
32003721
32013722 lib1908$(EXEEXT): $(lib1908_OBJECTS) $(lib1908_DEPENDENCIES) $(EXTRA_lib1908_DEPENDENCIES)
32023723 @rm -f lib1908$(EXEEXT)
32033724 $(AM_V_CCLD)$(LINK) $(lib1908_OBJECTS) $(lib1908_LDADD) $(LIBS)
3725 ../../lib/lib1910-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3726 ../../lib/$(DEPDIR)/$(am__dirstamp)
32043727 ../../lib/lib1910-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32053728 ../../lib/$(DEPDIR)/$(am__dirstamp)
32063729
32073730 lib1910$(EXEEXT): $(lib1910_OBJECTS) $(lib1910_DEPENDENCIES) $(EXTRA_lib1910_DEPENDENCIES)
32083731 @rm -f lib1910$(EXEEXT)
32093732 $(AM_V_CCLD)$(LINK) $(lib1910_OBJECTS) $(lib1910_LDADD) $(LIBS)
3733 ../../lib/lib1911-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3734 ../../lib/$(DEPDIR)/$(am__dirstamp)
32103735 ../../lib/lib1911-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32113736 ../../lib/$(DEPDIR)/$(am__dirstamp)
32123737
32133738 lib1911$(EXEEXT): $(lib1911_OBJECTS) $(lib1911_DEPENDENCIES) $(EXTRA_lib1911_DEPENDENCIES)
32143739 @rm -f lib1911$(EXEEXT)
32153740 $(AM_V_CCLD)$(LINK) $(lib1911_OBJECTS) $(lib1911_LDADD) $(LIBS)
3741 ../../lib/lib1912-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3742 ../../lib/$(DEPDIR)/$(am__dirstamp)
32163743 ../../lib/lib1912-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32173744 ../../lib/$(DEPDIR)/$(am__dirstamp)
32183745
32193746 lib1912$(EXEEXT): $(lib1912_OBJECTS) $(lib1912_DEPENDENCIES) $(EXTRA_lib1912_DEPENDENCIES)
32203747 @rm -f lib1912$(EXEEXT)
32213748 $(AM_V_CCLD)$(LINK) $(lib1912_OBJECTS) $(lib1912_LDADD) $(LIBS)
3749 ../../lib/lib1913-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3750 ../../lib/$(DEPDIR)/$(am__dirstamp)
32223751 ../../lib/lib1913-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32233752 ../../lib/$(DEPDIR)/$(am__dirstamp)
32243753
32253754 lib1913$(EXEEXT): $(lib1913_OBJECTS) $(lib1913_DEPENDENCIES) $(EXTRA_lib1913_DEPENDENCIES)
32263755 @rm -f lib1913$(EXEEXT)
32273756 $(AM_V_CCLD)$(LINK) $(lib1913_OBJECTS) $(lib1913_LDADD) $(LIBS)
3757 ../../lib/lib1915-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3758 ../../lib/$(DEPDIR)/$(am__dirstamp)
32283759 ../../lib/lib1915-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32293760 ../../lib/$(DEPDIR)/$(am__dirstamp)
32303761
32313762 lib1915$(EXEEXT): $(lib1915_OBJECTS) $(lib1915_DEPENDENCIES) $(EXTRA_lib1915_DEPENDENCIES)
32323763 @rm -f lib1915$(EXEEXT)
32333764 $(AM_V_CCLD)$(LINK) $(lib1915_OBJECTS) $(lib1915_LDADD) $(LIBS)
3765 ../../lib/lib1916-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3766 ../../lib/$(DEPDIR)/$(am__dirstamp)
32343767 ../../lib/lib1916-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32353768 ../../lib/$(DEPDIR)/$(am__dirstamp)
32363769
32373770 lib1916$(EXEEXT): $(lib1916_OBJECTS) $(lib1916_DEPENDENCIES) $(EXTRA_lib1916_DEPENDENCIES)
32383771 @rm -f lib1916$(EXEEXT)
32393772 $(AM_V_CCLD)$(LINK) $(lib1916_OBJECTS) $(lib1916_LDADD) $(LIBS)
3773 ../../lib/lib1917-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3774 ../../lib/$(DEPDIR)/$(am__dirstamp)
32403775 ../../lib/lib1917-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32413776 ../../lib/$(DEPDIR)/$(am__dirstamp)
32423777
32433778 lib1917$(EXEEXT): $(lib1917_OBJECTS) $(lib1917_DEPENDENCIES) $(EXTRA_lib1917_DEPENDENCIES)
32443779 @rm -f lib1917$(EXEEXT)
32453780 $(AM_V_CCLD)$(LINK) $(lib1917_OBJECTS) $(lib1917_LDADD) $(LIBS)
3781 ../../lib/lib1918-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3782 ../../lib/$(DEPDIR)/$(am__dirstamp)
32463783 ../../lib/lib1918-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32473784 ../../lib/$(DEPDIR)/$(am__dirstamp)
32483785
32493786 lib1918$(EXEEXT): $(lib1918_OBJECTS) $(lib1918_DEPENDENCIES) $(EXTRA_lib1918_DEPENDENCIES)
32503787 @rm -f lib1918$(EXEEXT)
32513788 $(AM_V_CCLD)$(LINK) $(lib1918_OBJECTS) $(lib1918_LDADD) $(LIBS)
3789 ../../lib/lib1933-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3790 ../../lib/$(DEPDIR)/$(am__dirstamp)
32523791 ../../lib/lib1933-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32533792 ../../lib/$(DEPDIR)/$(am__dirstamp)
32543793
32553794 lib1933$(EXEEXT): $(lib1933_OBJECTS) $(lib1933_DEPENDENCIES) $(EXTRA_lib1933_DEPENDENCIES)
32563795 @rm -f lib1933$(EXEEXT)
32573796 $(AM_V_CCLD)$(LINK) $(lib1933_OBJECTS) $(lib1933_LDADD) $(LIBS)
3797 ../../lib/lib1934-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3798 ../../lib/$(DEPDIR)/$(am__dirstamp)
32583799 ../../lib/lib1934-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32593800 ../../lib/$(DEPDIR)/$(am__dirstamp)
32603801
32613802 lib1934$(EXEEXT): $(lib1934_OBJECTS) $(lib1934_DEPENDENCIES) $(EXTRA_lib1934_DEPENDENCIES)
32623803 @rm -f lib1934$(EXEEXT)
32633804 $(AM_V_CCLD)$(LINK) $(lib1934_OBJECTS) $(lib1934_LDADD) $(LIBS)
3805 ../../lib/lib1935-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3806 ../../lib/$(DEPDIR)/$(am__dirstamp)
32643807 ../../lib/lib1935-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32653808 ../../lib/$(DEPDIR)/$(am__dirstamp)
32663809
32673810 lib1935$(EXEEXT): $(lib1935_OBJECTS) $(lib1935_DEPENDENCIES) $(EXTRA_lib1935_DEPENDENCIES)
32683811 @rm -f lib1935$(EXEEXT)
32693812 $(AM_V_CCLD)$(LINK) $(lib1935_OBJECTS) $(lib1935_LDADD) $(LIBS)
3813 ../../lib/lib1936-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3814 ../../lib/$(DEPDIR)/$(am__dirstamp)
32703815 ../../lib/lib1936-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32713816 ../../lib/$(DEPDIR)/$(am__dirstamp)
32723817
32733818 lib1936$(EXEEXT): $(lib1936_OBJECTS) $(lib1936_DEPENDENCIES) $(EXTRA_lib1936_DEPENDENCIES)
32743819 @rm -f lib1936$(EXEEXT)
32753820 $(AM_V_CCLD)$(LINK) $(lib1936_OBJECTS) $(lib1936_LDADD) $(LIBS)
3821 ../../lib/lib1937-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3822 ../../lib/$(DEPDIR)/$(am__dirstamp)
32763823
32773824 lib1937$(EXEEXT): $(lib1937_OBJECTS) $(lib1937_DEPENDENCIES) $(EXTRA_lib1937_DEPENDENCIES)
32783825 @rm -f lib1937$(EXEEXT)
32793826 $(AM_V_CCLD)$(LINK) $(lib1937_OBJECTS) $(lib1937_LDADD) $(LIBS)
3827 ../../lib/lib1938-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3828 ../../lib/$(DEPDIR)/$(am__dirstamp)
32803829
32813830 lib1938$(EXEEXT): $(lib1938_OBJECTS) $(lib1938_DEPENDENCIES) $(EXTRA_lib1938_DEPENDENCIES)
32823831 @rm -f lib1938$(EXEEXT)
32833832 $(AM_V_CCLD)$(LINK) $(lib1938_OBJECTS) $(lib1938_LDADD) $(LIBS)
3833 ../../lib/lib1939-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3834 ../../lib/$(DEPDIR)/$(am__dirstamp)
32843835
32853836 lib1939$(EXEEXT): $(lib1939_OBJECTS) $(lib1939_DEPENDENCIES) $(EXTRA_lib1939_DEPENDENCIES)
32863837 @rm -f lib1939$(EXEEXT)
32873838 $(AM_V_CCLD)$(LINK) $(lib1939_OBJECTS) $(lib1939_LDADD) $(LIBS)
3839 ../../lib/lib1940-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3840 ../../lib/$(DEPDIR)/$(am__dirstamp)
3841
3842 lib1940$(EXEEXT): $(lib1940_OBJECTS) $(lib1940_DEPENDENCIES) $(EXTRA_lib1940_DEPENDENCIES)
3843 @rm -f lib1940$(EXEEXT)
3844 $(AM_V_CCLD)$(LINK) $(lib1940_OBJECTS) $(lib1940_LDADD) $(LIBS)
3845 ../../lib/lib1945-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3846 ../../lib/$(DEPDIR)/$(am__dirstamp)
3847
3848 lib1945$(EXEEXT): $(lib1945_OBJECTS) $(lib1945_DEPENDENCIES) $(EXTRA_lib1945_DEPENDENCIES)
3849 @rm -f lib1945$(EXEEXT)
3850 $(AM_V_CCLD)$(LINK) $(lib1945_OBJECTS) $(lib1945_LDADD) $(LIBS)
3851 ../../lib/lib1946-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3852 ../../lib/$(DEPDIR)/$(am__dirstamp)
3853
3854 lib1946$(EXEEXT): $(lib1946_OBJECTS) $(lib1946_DEPENDENCIES) $(EXTRA_lib1946_DEPENDENCIES)
3855 @rm -f lib1946$(EXEEXT)
3856 $(AM_V_CCLD)$(LINK) $(lib1946_OBJECTS) $(lib1946_LDADD) $(LIBS)
3857 ../../lib/lib3010-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3858 ../../lib/$(DEPDIR)/$(am__dirstamp)
32883859 ../../lib/lib3010-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32893860 ../../lib/$(DEPDIR)/$(am__dirstamp)
32903861
32913862 lib3010$(EXEEXT): $(lib3010_OBJECTS) $(lib3010_DEPENDENCIES) $(EXTRA_lib3010_DEPENDENCIES)
32923863 @rm -f lib3010$(EXEEXT)
32933864 $(AM_V_CCLD)$(LINK) $(lib3010_OBJECTS) $(lib3010_LDADD) $(LIBS)
3865 ../../lib/lib3025-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3866 ../../lib/$(DEPDIR)/$(am__dirstamp)
32943867 ../../lib/lib3025-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
32953868 ../../lib/$(DEPDIR)/$(am__dirstamp)
32963869
32973870 lib3025$(EXEEXT): $(lib3025_OBJECTS) $(lib3025_DEPENDENCIES) $(EXTRA_lib3025_DEPENDENCIES)
32983871 @rm -f lib3025$(EXEEXT)
32993872 $(AM_V_CCLD)$(LINK) $(lib3025_OBJECTS) $(lib3025_LDADD) $(LIBS)
3873 ../../lib/lib500-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3874 ../../lib/$(DEPDIR)/$(am__dirstamp)
33003875 ../../lib/lib500-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
33013876 ../../lib/$(DEPDIR)/$(am__dirstamp)
33023877
33033878 lib500$(EXEEXT): $(lib500_OBJECTS) $(lib500_DEPENDENCIES) $(EXTRA_lib500_DEPENDENCIES)
33043879 @rm -f lib500$(EXEEXT)
33053880 $(AM_V_CCLD)$(LINK) $(lib500_OBJECTS) $(lib500_LDADD) $(LIBS)
3881 ../../lib/lib501-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3882 ../../lib/$(DEPDIR)/$(am__dirstamp)
33063883
33073884 lib501$(EXEEXT): $(lib501_OBJECTS) $(lib501_DEPENDENCIES) $(EXTRA_lib501_DEPENDENCIES)
33083885 @rm -f lib501$(EXEEXT)
33093886 $(AM_V_CCLD)$(LINK) $(lib501_OBJECTS) $(lib501_LDADD) $(LIBS)
3887 ../../lib/lib502-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3888 ../../lib/$(DEPDIR)/$(am__dirstamp)
33103889 ../../lib/lib502-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
33113890 ../../lib/$(DEPDIR)/$(am__dirstamp)
33123891
33133892 lib502$(EXEEXT): $(lib502_OBJECTS) $(lib502_DEPENDENCIES) $(EXTRA_lib502_DEPENDENCIES)
33143893 @rm -f lib502$(EXEEXT)
33153894 $(AM_V_CCLD)$(LINK) $(lib502_OBJECTS) $(lib502_LDADD) $(LIBS)
3895 ../../lib/lib503-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3896 ../../lib/$(DEPDIR)/$(am__dirstamp)
33163897 ../../lib/lib503-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
33173898 ../../lib/$(DEPDIR)/$(am__dirstamp)
33183899
33193900 lib503$(EXEEXT): $(lib503_OBJECTS) $(lib503_DEPENDENCIES) $(EXTRA_lib503_DEPENDENCIES)
33203901 @rm -f lib503$(EXEEXT)
33213902 $(AM_V_CCLD)$(LINK) $(lib503_OBJECTS) $(lib503_LDADD) $(LIBS)
3903 ../../lib/lib504-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3904 ../../lib/$(DEPDIR)/$(am__dirstamp)
33223905 ../../lib/lib504-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
33233906 ../../lib/$(DEPDIR)/$(am__dirstamp)
33243907
33253908 lib504$(EXEEXT): $(lib504_OBJECTS) $(lib504_DEPENDENCIES) $(EXTRA_lib504_DEPENDENCIES)
33263909 @rm -f lib504$(EXEEXT)
33273910 $(AM_V_CCLD)$(LINK) $(lib504_OBJECTS) $(lib504_LDADD) $(LIBS)
3911 ../../lib/lib505-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3912 ../../lib/$(DEPDIR)/$(am__dirstamp)
33283913 ../../lib/lib505-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
33293914 ../../lib/$(DEPDIR)/$(am__dirstamp)
33303915
33313916 lib505$(EXEEXT): $(lib505_OBJECTS) $(lib505_DEPENDENCIES) $(EXTRA_lib505_DEPENDENCIES)
33323917 @rm -f lib505$(EXEEXT)
33333918 $(AM_V_CCLD)$(LINK) $(lib505_OBJECTS) $(lib505_LDADD) $(LIBS)
3919 ../../lib/lib506-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3920 ../../lib/$(DEPDIR)/$(am__dirstamp)
33343921
33353922 lib506$(EXEEXT): $(lib506_OBJECTS) $(lib506_DEPENDENCIES) $(EXTRA_lib506_DEPENDENCIES)
33363923 @rm -f lib506$(EXEEXT)
33373924 $(AM_V_CCLD)$(LINK) $(lib506_OBJECTS) $(lib506_LDADD) $(LIBS)
3925 ../../lib/lib507-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3926 ../../lib/$(DEPDIR)/$(am__dirstamp)
33383927 ../../lib/lib507-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
33393928 ../../lib/$(DEPDIR)/$(am__dirstamp)
33403929
33413930 lib507$(EXEEXT): $(lib507_OBJECTS) $(lib507_DEPENDENCIES) $(EXTRA_lib507_DEPENDENCIES)
33423931 @rm -f lib507$(EXEEXT)
33433932 $(AM_V_CCLD)$(LINK) $(lib507_OBJECTS) $(lib507_LDADD) $(LIBS)
3933 ../../lib/lib508-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3934 ../../lib/$(DEPDIR)/$(am__dirstamp)
33443935
33453936 lib508$(EXEEXT): $(lib508_OBJECTS) $(lib508_DEPENDENCIES) $(EXTRA_lib508_DEPENDENCIES)
33463937 @rm -f lib508$(EXEEXT)
33473938 $(AM_V_CCLD)$(LINK) $(lib508_OBJECTS) $(lib508_LDADD) $(LIBS)
3939 ../../lib/lib509-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3940 ../../lib/$(DEPDIR)/$(am__dirstamp)
33483941
33493942 lib509$(EXEEXT): $(lib509_OBJECTS) $(lib509_DEPENDENCIES) $(EXTRA_lib509_DEPENDENCIES)
33503943 @rm -f lib509$(EXEEXT)
33513944 $(AM_V_CCLD)$(LINK) $(lib509_OBJECTS) $(lib509_LDADD) $(LIBS)
3945 ../../lib/lib510-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3946 ../../lib/$(DEPDIR)/$(am__dirstamp)
33523947
33533948 lib510$(EXEEXT): $(lib510_OBJECTS) $(lib510_DEPENDENCIES) $(EXTRA_lib510_DEPENDENCIES)
33543949 @rm -f lib510$(EXEEXT)
33553950 $(AM_V_CCLD)$(LINK) $(lib510_OBJECTS) $(lib510_LDADD) $(LIBS)
3951 ../../lib/lib511-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3952 ../../lib/$(DEPDIR)/$(am__dirstamp)
33563953
33573954 lib511$(EXEEXT): $(lib511_OBJECTS) $(lib511_DEPENDENCIES) $(EXTRA_lib511_DEPENDENCIES)
33583955 @rm -f lib511$(EXEEXT)
33593956 $(AM_V_CCLD)$(LINK) $(lib511_OBJECTS) $(lib511_LDADD) $(LIBS)
3957 ../../lib/lib512-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3958 ../../lib/$(DEPDIR)/$(am__dirstamp)
33603959
33613960 lib512$(EXEEXT): $(lib512_OBJECTS) $(lib512_DEPENDENCIES) $(EXTRA_lib512_DEPENDENCIES)
33623961 @rm -f lib512$(EXEEXT)
33633962 $(AM_V_CCLD)$(LINK) $(lib512_OBJECTS) $(lib512_LDADD) $(LIBS)
3963 ../../lib/lib513-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3964 ../../lib/$(DEPDIR)/$(am__dirstamp)
33643965
33653966 lib513$(EXEEXT): $(lib513_OBJECTS) $(lib513_DEPENDENCIES) $(EXTRA_lib513_DEPENDENCIES)
33663967 @rm -f lib513$(EXEEXT)
33673968 $(AM_V_CCLD)$(LINK) $(lib513_OBJECTS) $(lib513_LDADD) $(LIBS)
3969 ../../lib/lib514-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3970 ../../lib/$(DEPDIR)/$(am__dirstamp)
33683971
33693972 lib514$(EXEEXT): $(lib514_OBJECTS) $(lib514_DEPENDENCIES) $(EXTRA_lib514_DEPENDENCIES)
33703973 @rm -f lib514$(EXEEXT)
33713974 $(AM_V_CCLD)$(LINK) $(lib514_OBJECTS) $(lib514_LDADD) $(LIBS)
3975 ../../lib/lib515-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3976 ../../lib/$(DEPDIR)/$(am__dirstamp)
33723977
33733978 lib515$(EXEEXT): $(lib515_OBJECTS) $(lib515_DEPENDENCIES) $(EXTRA_lib515_DEPENDENCIES)
33743979 @rm -f lib515$(EXEEXT)
33753980 $(AM_V_CCLD)$(LINK) $(lib515_OBJECTS) $(lib515_LDADD) $(LIBS)
3981 ../../lib/lib516-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3982 ../../lib/$(DEPDIR)/$(am__dirstamp)
33763983
33773984 lib516$(EXEEXT): $(lib516_OBJECTS) $(lib516_DEPENDENCIES) $(EXTRA_lib516_DEPENDENCIES)
33783985 @rm -f lib516$(EXEEXT)
33793986 $(AM_V_CCLD)$(LINK) $(lib516_OBJECTS) $(lib516_LDADD) $(LIBS)
3987 ../../lib/lib517-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3988 ../../lib/$(DEPDIR)/$(am__dirstamp)
33803989
33813990 lib517$(EXEEXT): $(lib517_OBJECTS) $(lib517_DEPENDENCIES) $(EXTRA_lib517_DEPENDENCIES)
33823991 @rm -f lib517$(EXEEXT)
33833992 $(AM_V_CCLD)$(LINK) $(lib517_OBJECTS) $(lib517_LDADD) $(LIBS)
3993 ../../lib/lib518-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
3994 ../../lib/$(DEPDIR)/$(am__dirstamp)
33843995 ../../lib/lib518-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
33853996 ../../lib/$(DEPDIR)/$(am__dirstamp)
33863997 ../../lib/lib518-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
33894000 lib518$(EXEEXT): $(lib518_OBJECTS) $(lib518_DEPENDENCIES) $(EXTRA_lib518_DEPENDENCIES)
33904001 @rm -f lib518$(EXEEXT)
33914002 $(AM_V_CCLD)$(LINK) $(lib518_OBJECTS) $(lib518_LDADD) $(LIBS)
4003 ../../lib/lib519-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4004 ../../lib/$(DEPDIR)/$(am__dirstamp)
33924005
33934006 lib519$(EXEEXT): $(lib519_OBJECTS) $(lib519_DEPENDENCIES) $(EXTRA_lib519_DEPENDENCIES)
33944007 @rm -f lib519$(EXEEXT)
33954008 $(AM_V_CCLD)$(LINK) $(lib519_OBJECTS) $(lib519_LDADD) $(LIBS)
4009 ../../lib/lib520-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4010 ../../lib/$(DEPDIR)/$(am__dirstamp)
33964011
33974012 lib520$(EXEEXT): $(lib520_OBJECTS) $(lib520_DEPENDENCIES) $(EXTRA_lib520_DEPENDENCIES)
33984013 @rm -f lib520$(EXEEXT)
33994014 $(AM_V_CCLD)$(LINK) $(lib520_OBJECTS) $(lib520_LDADD) $(LIBS)
4015 ../../lib/lib521-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4016 ../../lib/$(DEPDIR)/$(am__dirstamp)
34004017
34014018 lib521$(EXEEXT): $(lib521_OBJECTS) $(lib521_DEPENDENCIES) $(EXTRA_lib521_DEPENDENCIES)
34024019 @rm -f lib521$(EXEEXT)
34034020 $(AM_V_CCLD)$(LINK) $(lib521_OBJECTS) $(lib521_LDADD) $(LIBS)
4021 ../../lib/lib523-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4022 ../../lib/$(DEPDIR)/$(am__dirstamp)
34044023
34054024 lib523$(EXEEXT): $(lib523_OBJECTS) $(lib523_DEPENDENCIES) $(EXTRA_lib523_DEPENDENCIES)
34064025 @rm -f lib523$(EXEEXT)
34074026 $(AM_V_CCLD)$(LINK) $(lib523_OBJECTS) $(lib523_LDADD) $(LIBS)
4027 ../../lib/lib524-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4028 ../../lib/$(DEPDIR)/$(am__dirstamp)
34084029
34094030 lib524$(EXEEXT): $(lib524_OBJECTS) $(lib524_DEPENDENCIES) $(EXTRA_lib524_DEPENDENCIES)
34104031 @rm -f lib524$(EXEEXT)
34114032 $(AM_V_CCLD)$(LINK) $(lib524_OBJECTS) $(lib524_LDADD) $(LIBS)
4033 ../../lib/lib525-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4034 ../../lib/$(DEPDIR)/$(am__dirstamp)
34124035 ../../lib/lib525-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34134036 ../../lib/$(DEPDIR)/$(am__dirstamp)
34144037 ../../lib/lib525-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
34174040 lib525$(EXEEXT): $(lib525_OBJECTS) $(lib525_DEPENDENCIES) $(EXTRA_lib525_DEPENDENCIES)
34184041 @rm -f lib525$(EXEEXT)
34194042 $(AM_V_CCLD)$(LINK) $(lib525_OBJECTS) $(lib525_LDADD) $(LIBS)
4043 ../../lib/lib526-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4044 ../../lib/$(DEPDIR)/$(am__dirstamp)
34204045 ../../lib/lib526-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34214046 ../../lib/$(DEPDIR)/$(am__dirstamp)
34224047
34234048 lib526$(EXEEXT): $(lib526_OBJECTS) $(lib526_DEPENDENCIES) $(EXTRA_lib526_DEPENDENCIES)
34244049 @rm -f lib526$(EXEEXT)
34254050 $(AM_V_CCLD)$(LINK) $(lib526_OBJECTS) $(lib526_LDADD) $(LIBS)
4051 ../../lib/lib527-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4052 ../../lib/$(DEPDIR)/$(am__dirstamp)
34264053 ../../lib/lib527-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34274054 ../../lib/$(DEPDIR)/$(am__dirstamp)
34284055
34294056 lib527$(EXEEXT): $(lib527_OBJECTS) $(lib527_DEPENDENCIES) $(EXTRA_lib527_DEPENDENCIES)
34304057 @rm -f lib527$(EXEEXT)
34314058 $(AM_V_CCLD)$(LINK) $(lib527_OBJECTS) $(lib527_LDADD) $(LIBS)
4059 ../../lib/lib529-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4060 ../../lib/$(DEPDIR)/$(am__dirstamp)
34324061 ../../lib/lib529-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34334062 ../../lib/$(DEPDIR)/$(am__dirstamp)
34344063 ../../lib/lib529-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
34374066 lib529$(EXEEXT): $(lib529_OBJECTS) $(lib529_DEPENDENCIES) $(EXTRA_lib529_DEPENDENCIES)
34384067 @rm -f lib529$(EXEEXT)
34394068 $(AM_V_CCLD)$(LINK) $(lib529_OBJECTS) $(lib529_LDADD) $(LIBS)
4069 ../../lib/lib530-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4070 ../../lib/$(DEPDIR)/$(am__dirstamp)
34404071 ../../lib/lib530-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34414072 ../../lib/$(DEPDIR)/$(am__dirstamp)
34424073
34434074 lib530$(EXEEXT): $(lib530_OBJECTS) $(lib530_DEPENDENCIES) $(EXTRA_lib530_DEPENDENCIES)
34444075 @rm -f lib530$(EXEEXT)
34454076 $(AM_V_CCLD)$(LINK) $(lib530_OBJECTS) $(lib530_LDADD) $(LIBS)
4077 ../../lib/lib532-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4078 ../../lib/$(DEPDIR)/$(am__dirstamp)
34464079 ../../lib/lib532-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34474080 ../../lib/$(DEPDIR)/$(am__dirstamp)
34484081
34494082 lib532$(EXEEXT): $(lib532_OBJECTS) $(lib532_DEPENDENCIES) $(EXTRA_lib532_DEPENDENCIES)
34504083 @rm -f lib532$(EXEEXT)
34514084 $(AM_V_CCLD)$(LINK) $(lib532_OBJECTS) $(lib532_LDADD) $(LIBS)
4085 ../../lib/lib533-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4086 ../../lib/$(DEPDIR)/$(am__dirstamp)
34524087 ../../lib/lib533-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34534088 ../../lib/$(DEPDIR)/$(am__dirstamp)
34544089
34554090 lib533$(EXEEXT): $(lib533_OBJECTS) $(lib533_DEPENDENCIES) $(EXTRA_lib533_DEPENDENCIES)
34564091 @rm -f lib533$(EXEEXT)
34574092 $(AM_V_CCLD)$(LINK) $(lib533_OBJECTS) $(lib533_LDADD) $(LIBS)
4093 ../../lib/lib537-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4094 ../../lib/$(DEPDIR)/$(am__dirstamp)
34584095 ../../lib/lib537-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34594096 ../../lib/$(DEPDIR)/$(am__dirstamp)
34604097 ../../lib/lib537-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
34634100 lib537$(EXEEXT): $(lib537_OBJECTS) $(lib537_DEPENDENCIES) $(EXTRA_lib537_DEPENDENCIES)
34644101 @rm -f lib537$(EXEEXT)
34654102 $(AM_V_CCLD)$(LINK) $(lib537_OBJECTS) $(lib537_LDADD) $(LIBS)
4103 ../../lib/lib539-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4104 ../../lib/$(DEPDIR)/$(am__dirstamp)
34664105
34674106 lib539$(EXEEXT): $(lib539_OBJECTS) $(lib539_DEPENDENCIES) $(EXTRA_lib539_DEPENDENCIES)
34684107 @rm -f lib539$(EXEEXT)
34694108 $(AM_V_CCLD)$(LINK) $(lib539_OBJECTS) $(lib539_LDADD) $(LIBS)
4109 ../../lib/lib540-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4110 ../../lib/$(DEPDIR)/$(am__dirstamp)
34704111 ../../lib/lib540-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
34714112 ../../lib/$(DEPDIR)/$(am__dirstamp)
34724113
34734114 lib540$(EXEEXT): $(lib540_OBJECTS) $(lib540_DEPENDENCIES) $(EXTRA_lib540_DEPENDENCIES)
34744115 @rm -f lib540$(EXEEXT)
34754116 $(AM_V_CCLD)$(LINK) $(lib540_OBJECTS) $(lib540_LDADD) $(LIBS)
4117 ../../lib/lib541-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4118 ../../lib/$(DEPDIR)/$(am__dirstamp)
34764119 ../../lib/lib541-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
34774120 ../../lib/$(DEPDIR)/$(am__dirstamp)
34784121
34794122 lib541$(EXEEXT): $(lib541_OBJECTS) $(lib541_DEPENDENCIES) $(EXTRA_lib541_DEPENDENCIES)
34804123 @rm -f lib541$(EXEEXT)
34814124 $(AM_V_CCLD)$(LINK) $(lib541_OBJECTS) $(lib541_LDADD) $(LIBS)
4125 ../../lib/lib542-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4126 ../../lib/$(DEPDIR)/$(am__dirstamp)
34824127
34834128 lib542$(EXEEXT): $(lib542_OBJECTS) $(lib542_DEPENDENCIES) $(EXTRA_lib542_DEPENDENCIES)
34844129 @rm -f lib542$(EXEEXT)
34854130 $(AM_V_CCLD)$(LINK) $(lib542_OBJECTS) $(lib542_LDADD) $(LIBS)
4131 ../../lib/lib543-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4132 ../../lib/$(DEPDIR)/$(am__dirstamp)
34864133
34874134 lib543$(EXEEXT): $(lib543_OBJECTS) $(lib543_DEPENDENCIES) $(EXTRA_lib543_DEPENDENCIES)
34884135 @rm -f lib543$(EXEEXT)
34894136 $(AM_V_CCLD)$(LINK) $(lib543_OBJECTS) $(lib543_LDADD) $(LIBS)
4137 ../../lib/lib544-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4138 ../../lib/$(DEPDIR)/$(am__dirstamp)
34904139
34914140 lib544$(EXEEXT): $(lib544_OBJECTS) $(lib544_DEPENDENCIES) $(EXTRA_lib544_DEPENDENCIES)
34924141 @rm -f lib544$(EXEEXT)
34934142 $(AM_V_CCLD)$(LINK) $(lib544_OBJECTS) $(lib544_LDADD) $(LIBS)
4143 ../../lib/lib545-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4144 ../../lib/$(DEPDIR)/$(am__dirstamp)
34944145
34954146 lib545$(EXEEXT): $(lib545_OBJECTS) $(lib545_DEPENDENCIES) $(EXTRA_lib545_DEPENDENCIES)
34964147 @rm -f lib545$(EXEEXT)
34974148 $(AM_V_CCLD)$(LINK) $(lib545_OBJECTS) $(lib545_LDADD) $(LIBS)
4149 ../../lib/lib547-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4150 ../../lib/$(DEPDIR)/$(am__dirstamp)
34984151
34994152 lib547$(EXEEXT): $(lib547_OBJECTS) $(lib547_DEPENDENCIES) $(EXTRA_lib547_DEPENDENCIES)
35004153 @rm -f lib547$(EXEEXT)
35014154 $(AM_V_CCLD)$(LINK) $(lib547_OBJECTS) $(lib547_LDADD) $(LIBS)
4155 ../../lib/lib548-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4156 ../../lib/$(DEPDIR)/$(am__dirstamp)
35024157
35034158 lib548$(EXEEXT): $(lib548_OBJECTS) $(lib548_DEPENDENCIES) $(EXTRA_lib548_DEPENDENCIES)
35044159 @rm -f lib548$(EXEEXT)
35054160 $(AM_V_CCLD)$(LINK) $(lib548_OBJECTS) $(lib548_LDADD) $(LIBS)
4161 ../../lib/lib549-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4162 ../../lib/$(DEPDIR)/$(am__dirstamp)
35064163
35074164 lib549$(EXEEXT): $(lib549_OBJECTS) $(lib549_DEPENDENCIES) $(EXTRA_lib549_DEPENDENCIES)
35084165 @rm -f lib549$(EXEEXT)
35094166 $(AM_V_CCLD)$(LINK) $(lib549_OBJECTS) $(lib549_LDADD) $(LIBS)
4167 ../../lib/lib552-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4168 ../../lib/$(DEPDIR)/$(am__dirstamp)
35104169 ../../lib/lib552-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35114170 ../../lib/$(DEPDIR)/$(am__dirstamp)
35124171
35134172 lib552$(EXEEXT): $(lib552_OBJECTS) $(lib552_DEPENDENCIES) $(EXTRA_lib552_DEPENDENCIES)
35144173 @rm -f lib552$(EXEEXT)
35154174 $(AM_V_CCLD)$(LINK) $(lib552_OBJECTS) $(lib552_LDADD) $(LIBS)
4175 ../../lib/lib553-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4176 ../../lib/$(DEPDIR)/$(am__dirstamp)
35164177
35174178 lib553$(EXEEXT): $(lib553_OBJECTS) $(lib553_DEPENDENCIES) $(EXTRA_lib553_DEPENDENCIES)
35184179 @rm -f lib553$(EXEEXT)
35194180 $(AM_V_CCLD)$(LINK) $(lib553_OBJECTS) $(lib553_LDADD) $(LIBS)
4181 ../../lib/lib554-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4182 ../../lib/$(DEPDIR)/$(am__dirstamp)
35204183
35214184 lib554$(EXEEXT): $(lib554_OBJECTS) $(lib554_DEPENDENCIES) $(EXTRA_lib554_DEPENDENCIES)
35224185 @rm -f lib554$(EXEEXT)
35234186 $(AM_V_CCLD)$(LINK) $(lib554_OBJECTS) $(lib554_LDADD) $(LIBS)
4187 ../../lib/lib555-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4188 ../../lib/$(DEPDIR)/$(am__dirstamp)
35244189 ../../lib/lib555-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35254190 ../../lib/$(DEPDIR)/$(am__dirstamp)
35264191
35274192 lib555$(EXEEXT): $(lib555_OBJECTS) $(lib555_DEPENDENCIES) $(EXTRA_lib555_DEPENDENCIES)
35284193 @rm -f lib555$(EXEEXT)
35294194 $(AM_V_CCLD)$(LINK) $(lib555_OBJECTS) $(lib555_LDADD) $(LIBS)
4195 ../../lib/lib556-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4196 ../../lib/$(DEPDIR)/$(am__dirstamp)
35304197 ../../lib/lib556-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35314198 ../../lib/$(DEPDIR)/$(am__dirstamp)
35324199
35334200 lib556$(EXEEXT): $(lib556_OBJECTS) $(lib556_DEPENDENCIES) $(EXTRA_lib556_DEPENDENCIES)
35344201 @rm -f lib556$(EXEEXT)
35354202 $(AM_V_CCLD)$(LINK) $(lib556_OBJECTS) $(lib556_LDADD) $(LIBS)
4203 ../../lib/lib557-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4204 ../../lib/$(DEPDIR)/$(am__dirstamp)
35364205
35374206 lib557$(EXEEXT): $(lib557_OBJECTS) $(lib557_DEPENDENCIES) $(EXTRA_lib557_DEPENDENCIES)
35384207 @rm -f lib557$(EXEEXT)
35394208 $(AM_V_CCLD)$(LINK) $(lib557_OBJECTS) $(lib557_LDADD) $(LIBS)
4209 ../../lib/lib558-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4210 ../../lib/$(DEPDIR)/$(am__dirstamp)
35404211
35414212 lib558$(EXEEXT): $(lib558_OBJECTS) $(lib558_DEPENDENCIES) $(EXTRA_lib558_DEPENDENCIES)
35424213 @rm -f lib558$(EXEEXT)
35434214 $(AM_V_CCLD)$(LINK) $(lib558_OBJECTS) $(lib558_LDADD) $(LIBS)
4215 ../../lib/lib559-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4216 ../../lib/$(DEPDIR)/$(am__dirstamp)
35444217
35454218 lib559$(EXEEXT): $(lib559_OBJECTS) $(lib559_DEPENDENCIES) $(EXTRA_lib559_DEPENDENCIES)
35464219 @rm -f lib559$(EXEEXT)
35474220 $(AM_V_CCLD)$(LINK) $(lib559_OBJECTS) $(lib559_LDADD) $(LIBS)
4221 ../../lib/lib560-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4222 ../../lib/$(DEPDIR)/$(am__dirstamp)
35484223 ../../lib/lib560-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35494224 ../../lib/$(DEPDIR)/$(am__dirstamp)
35504225
35514226 lib560$(EXEEXT): $(lib560_OBJECTS) $(lib560_DEPENDENCIES) $(EXTRA_lib560_DEPENDENCIES)
35524227 @rm -f lib560$(EXEEXT)
35534228 $(AM_V_CCLD)$(LINK) $(lib560_OBJECTS) $(lib560_LDADD) $(LIBS)
4229 ../../lib/lib562-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4230 ../../lib/$(DEPDIR)/$(am__dirstamp)
35544231
35554232 lib562$(EXEEXT): $(lib562_OBJECTS) $(lib562_DEPENDENCIES) $(EXTRA_lib562_DEPENDENCIES)
35564233 @rm -f lib562$(EXEEXT)
35574234 $(AM_V_CCLD)$(LINK) $(lib562_OBJECTS) $(lib562_LDADD) $(LIBS)
4235 ../../lib/lib564-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4236 ../../lib/$(DEPDIR)/$(am__dirstamp)
35584237 ../../lib/lib564-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35594238 ../../lib/$(DEPDIR)/$(am__dirstamp)
35604239
35614240 lib564$(EXEEXT): $(lib564_OBJECTS) $(lib564_DEPENDENCIES) $(EXTRA_lib564_DEPENDENCIES)
35624241 @rm -f lib564$(EXEEXT)
35634242 $(AM_V_CCLD)$(LINK) $(lib564_OBJECTS) $(lib564_LDADD) $(LIBS)
4243 ../../lib/lib565-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4244 ../../lib/$(DEPDIR)/$(am__dirstamp)
35644245
35654246 lib565$(EXEEXT): $(lib565_OBJECTS) $(lib565_DEPENDENCIES) $(EXTRA_lib565_DEPENDENCIES)
35664247 @rm -f lib565$(EXEEXT)
35674248 $(AM_V_CCLD)$(LINK) $(lib565_OBJECTS) $(lib565_LDADD) $(LIBS)
4249 ../../lib/lib566-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4250 ../../lib/$(DEPDIR)/$(am__dirstamp)
35684251 ../../lib/lib566-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
35694252 ../../lib/$(DEPDIR)/$(am__dirstamp)
35704253
35714254 lib566$(EXEEXT): $(lib566_OBJECTS) $(lib566_DEPENDENCIES) $(EXTRA_lib566_DEPENDENCIES)
35724255 @rm -f lib566$(EXEEXT)
35734256 $(AM_V_CCLD)$(LINK) $(lib566_OBJECTS) $(lib566_LDADD) $(LIBS)
4257 ../../lib/lib567-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4258 ../../lib/$(DEPDIR)/$(am__dirstamp)
35744259
35754260 lib567$(EXEEXT): $(lib567_OBJECTS) $(lib567_DEPENDENCIES) $(EXTRA_lib567_DEPENDENCIES)
35764261 @rm -f lib567$(EXEEXT)
35774262 $(AM_V_CCLD)$(LINK) $(lib567_OBJECTS) $(lib567_LDADD) $(LIBS)
4263 ../../lib/lib568-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4264 ../../lib/$(DEPDIR)/$(am__dirstamp)
35784265 ../../lib/lib568-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
35794266 ../../lib/$(DEPDIR)/$(am__dirstamp)
35804267
35814268 lib568$(EXEEXT): $(lib568_OBJECTS) $(lib568_DEPENDENCIES) $(EXTRA_lib568_DEPENDENCIES)
35824269 @rm -f lib568$(EXEEXT)
35834270 $(AM_V_CCLD)$(LINK) $(lib568_OBJECTS) $(lib568_LDADD) $(LIBS)
4271 ../../lib/lib569-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4272 ../../lib/$(DEPDIR)/$(am__dirstamp)
35844273 ../../lib/lib569-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
35854274 ../../lib/$(DEPDIR)/$(am__dirstamp)
35864275
35874276 lib569$(EXEEXT): $(lib569_OBJECTS) $(lib569_DEPENDENCIES) $(EXTRA_lib569_DEPENDENCIES)
35884277 @rm -f lib569$(EXEEXT)
35894278 $(AM_V_CCLD)$(LINK) $(lib569_OBJECTS) $(lib569_LDADD) $(LIBS)
4279 ../../lib/lib570-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4280 ../../lib/$(DEPDIR)/$(am__dirstamp)
35904281
35914282 lib570$(EXEEXT): $(lib570_OBJECTS) $(lib570_DEPENDENCIES) $(EXTRA_lib570_DEPENDENCIES)
35924283 @rm -f lib570$(EXEEXT)
35934284 $(AM_V_CCLD)$(LINK) $(lib570_OBJECTS) $(lib570_LDADD) $(LIBS)
4285 ../../lib/lib571-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4286 ../../lib/$(DEPDIR)/$(am__dirstamp)
35944287 ../../lib/lib571-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
35954288 ../../lib/$(DEPDIR)/$(am__dirstamp)
35964289 ../../lib/lib571-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
35994292 lib571$(EXEEXT): $(lib571_OBJECTS) $(lib571_DEPENDENCIES) $(EXTRA_lib571_DEPENDENCIES)
36004293 @rm -f lib571$(EXEEXT)
36014294 $(AM_V_CCLD)$(LINK) $(lib571_OBJECTS) $(lib571_LDADD) $(LIBS)
4295 ../../lib/lib572-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4296 ../../lib/$(DEPDIR)/$(am__dirstamp)
36024297 ../../lib/lib572-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36034298 ../../lib/$(DEPDIR)/$(am__dirstamp)
36044299
36054300 lib572$(EXEEXT): $(lib572_OBJECTS) $(lib572_DEPENDENCIES) $(EXTRA_lib572_DEPENDENCIES)
36064301 @rm -f lib572$(EXEEXT)
36074302 $(AM_V_CCLD)$(LINK) $(lib572_OBJECTS) $(lib572_LDADD) $(LIBS)
4303 ../../lib/lib573-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4304 ../../lib/$(DEPDIR)/$(am__dirstamp)
36084305 ../../lib/lib573-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
36094306 ../../lib/$(DEPDIR)/$(am__dirstamp)
36104307
36114308 lib573$(EXEEXT): $(lib573_OBJECTS) $(lib573_DEPENDENCIES) $(EXTRA_lib573_DEPENDENCIES)
36124309 @rm -f lib573$(EXEEXT)
36134310 $(AM_V_CCLD)$(LINK) $(lib573_OBJECTS) $(lib573_LDADD) $(LIBS)
4311 ../../lib/lib574-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4312 ../../lib/$(DEPDIR)/$(am__dirstamp)
36144313
36154314 lib574$(EXEEXT): $(lib574_OBJECTS) $(lib574_DEPENDENCIES) $(EXTRA_lib574_DEPENDENCIES)
36164315 @rm -f lib574$(EXEEXT)
36174316 $(AM_V_CCLD)$(LINK) $(lib574_OBJECTS) $(lib574_LDADD) $(LIBS)
4317 ../../lib/lib575-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4318 ../../lib/$(DEPDIR)/$(am__dirstamp)
36184319 ../../lib/lib575-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
36194320 ../../lib/$(DEPDIR)/$(am__dirstamp)
36204321
36214322 lib575$(EXEEXT): $(lib575_OBJECTS) $(lib575_DEPENDENCIES) $(EXTRA_lib575_DEPENDENCIES)
36224323 @rm -f lib575$(EXEEXT)
36234324 $(AM_V_CCLD)$(LINK) $(lib575_OBJECTS) $(lib575_LDADD) $(LIBS)
4325 ../../lib/lib576-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4326 ../../lib/$(DEPDIR)/$(am__dirstamp)
36244327
36254328 lib576$(EXEEXT): $(lib576_OBJECTS) $(lib576_DEPENDENCIES) $(EXTRA_lib576_DEPENDENCIES)
36264329 @rm -f lib576$(EXEEXT)
36274330 $(AM_V_CCLD)$(LINK) $(lib576_OBJECTS) $(lib576_LDADD) $(LIBS)
4331 ../../lib/lib578-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4332 ../../lib/$(DEPDIR)/$(am__dirstamp)
36284333 ../../lib/lib578-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36294334 ../../lib/$(DEPDIR)/$(am__dirstamp)
36304335
36314336 lib578$(EXEEXT): $(lib578_OBJECTS) $(lib578_DEPENDENCIES) $(EXTRA_lib578_DEPENDENCIES)
36324337 @rm -f lib578$(EXEEXT)
36334338 $(AM_V_CCLD)$(LINK) $(lib578_OBJECTS) $(lib578_LDADD) $(LIBS)
4339 ../../lib/lib579-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4340 ../../lib/$(DEPDIR)/$(am__dirstamp)
36344341 ../../lib/lib579-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36354342 ../../lib/$(DEPDIR)/$(am__dirstamp)
36364343
36374344 lib579$(EXEEXT): $(lib579_OBJECTS) $(lib579_DEPENDENCIES) $(EXTRA_lib579_DEPENDENCIES)
36384345 @rm -f lib579$(EXEEXT)
36394346 $(AM_V_CCLD)$(LINK) $(lib579_OBJECTS) $(lib579_LDADD) $(LIBS)
4347 ../../lib/lib582-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4348 ../../lib/$(DEPDIR)/$(am__dirstamp)
36404349 ../../lib/lib582-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
36414350 ../../lib/$(DEPDIR)/$(am__dirstamp)
36424351 ../../lib/lib582-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36454354 lib582$(EXEEXT): $(lib582_OBJECTS) $(lib582_DEPENDENCIES) $(EXTRA_lib582_DEPENDENCIES)
36464355 @rm -f lib582$(EXEEXT)
36474356 $(AM_V_CCLD)$(LINK) $(lib582_OBJECTS) $(lib582_LDADD) $(LIBS)
4357 ../../lib/lib583-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4358 ../../lib/$(DEPDIR)/$(am__dirstamp)
36484359
36494360 lib583$(EXEEXT): $(lib583_OBJECTS) $(lib583_DEPENDENCIES) $(EXTRA_lib583_DEPENDENCIES)
36504361 @rm -f lib583$(EXEEXT)
36514362 $(AM_V_CCLD)$(LINK) $(lib583_OBJECTS) $(lib583_LDADD) $(LIBS)
4363 ../../lib/lib584-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4364 ../../lib/$(DEPDIR)/$(am__dirstamp)
36524365
36534366 lib584$(EXEEXT): $(lib584_OBJECTS) $(lib584_DEPENDENCIES) $(EXTRA_lib584_DEPENDENCIES)
36544367 @rm -f lib584$(EXEEXT)
36554368 $(AM_V_CCLD)$(LINK) $(lib584_OBJECTS) $(lib584_LDADD) $(LIBS)
4369 ../../lib/lib585-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4370 ../../lib/$(DEPDIR)/$(am__dirstamp)
36564371 ../../lib/lib585-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36574372 ../../lib/$(DEPDIR)/$(am__dirstamp)
36584373
36594374 lib585$(EXEEXT): $(lib585_OBJECTS) $(lib585_DEPENDENCIES) $(EXTRA_lib585_DEPENDENCIES)
36604375 @rm -f lib585$(EXEEXT)
36614376 $(AM_V_CCLD)$(LINK) $(lib585_OBJECTS) $(lib585_LDADD) $(LIBS)
4377 ../../lib/lib586-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4378 ../../lib/$(DEPDIR)/$(am__dirstamp)
36624379
36634380 lib586$(EXEEXT): $(lib586_OBJECTS) $(lib586_DEPENDENCIES) $(EXTRA_lib586_DEPENDENCIES)
36644381 @rm -f lib586$(EXEEXT)
36654382 $(AM_V_CCLD)$(LINK) $(lib586_OBJECTS) $(lib586_LDADD) $(LIBS)
4383 ../../lib/lib587-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4384 ../../lib/$(DEPDIR)/$(am__dirstamp)
36664385
36674386 lib587$(EXEEXT): $(lib587_OBJECTS) $(lib587_DEPENDENCIES) $(EXTRA_lib587_DEPENDENCIES)
36684387 @rm -f lib587$(EXEEXT)
36694388 $(AM_V_CCLD)$(LINK) $(lib587_OBJECTS) $(lib587_LDADD) $(LIBS)
4389 ../../lib/lib589-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4390 ../../lib/$(DEPDIR)/$(am__dirstamp)
36704391
36714392 lib589$(EXEEXT): $(lib589_OBJECTS) $(lib589_DEPENDENCIES) $(EXTRA_lib589_DEPENDENCIES)
36724393 @rm -f lib589$(EXEEXT)
36734394 $(AM_V_CCLD)$(LINK) $(lib589_OBJECTS) $(lib589_LDADD) $(LIBS)
4395 ../../lib/lib590-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4396 ../../lib/$(DEPDIR)/$(am__dirstamp)
36744397
36754398 lib590$(EXEEXT): $(lib590_OBJECTS) $(lib590_DEPENDENCIES) $(EXTRA_lib590_DEPENDENCIES)
36764399 @rm -f lib590$(EXEEXT)
36774400 $(AM_V_CCLD)$(LINK) $(lib590_OBJECTS) $(lib590_LDADD) $(LIBS)
4401 ../../lib/lib591-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4402 ../../lib/$(DEPDIR)/$(am__dirstamp)
36784403 ../../lib/lib591-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
36794404 ../../lib/$(DEPDIR)/$(am__dirstamp)
36804405 ../../lib/lib591-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36834408 lib591$(EXEEXT): $(lib591_OBJECTS) $(lib591_DEPENDENCIES) $(EXTRA_lib591_DEPENDENCIES)
36844409 @rm -f lib591$(EXEEXT)
36854410 $(AM_V_CCLD)$(LINK) $(lib591_OBJECTS) $(lib591_LDADD) $(LIBS)
4411 ../../lib/lib597-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4412 ../../lib/$(DEPDIR)/$(am__dirstamp)
36864413 ../../lib/lib597-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
36874414 ../../lib/$(DEPDIR)/$(am__dirstamp)
36884415
36894416 lib597$(EXEEXT): $(lib597_OBJECTS) $(lib597_DEPENDENCIES) $(EXTRA_lib597_DEPENDENCIES)
36904417 @rm -f lib597$(EXEEXT)
36914418 $(AM_V_CCLD)$(LINK) $(lib597_OBJECTS) $(lib597_LDADD) $(LIBS)
4419 ../../lib/lib598-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4420 ../../lib/$(DEPDIR)/$(am__dirstamp)
36924421
36934422 lib598$(EXEEXT): $(lib598_OBJECTS) $(lib598_DEPENDENCIES) $(EXTRA_lib598_DEPENDENCIES)
36944423 @rm -f lib598$(EXEEXT)
36954424 $(AM_V_CCLD)$(LINK) $(lib598_OBJECTS) $(lib598_LDADD) $(LIBS)
4425 ../../lib/lib599-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4426 ../../lib/$(DEPDIR)/$(am__dirstamp)
36964427 ../../lib/lib599-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
36974428 ../../lib/$(DEPDIR)/$(am__dirstamp)
36984429
36994430 lib599$(EXEEXT): $(lib599_OBJECTS) $(lib599_DEPENDENCIES) $(EXTRA_lib599_DEPENDENCIES)
37004431 @rm -f lib599$(EXEEXT)
37014432 $(AM_V_CCLD)$(LINK) $(lib599_OBJECTS) $(lib599_LDADD) $(LIBS)
4433 ../../lib/lib643-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4434 ../../lib/$(DEPDIR)/$(am__dirstamp)
37024435
37034436 lib643$(EXEEXT): $(lib643_OBJECTS) $(lib643_DEPENDENCIES) $(EXTRA_lib643_DEPENDENCIES)
37044437 @rm -f lib643$(EXEEXT)
37054438 $(AM_V_CCLD)$(LINK) $(lib643_OBJECTS) $(lib643_LDADD) $(LIBS)
4439 ../../lib/lib645-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4440 ../../lib/$(DEPDIR)/$(am__dirstamp)
37064441
37074442 lib645$(EXEEXT): $(lib645_OBJECTS) $(lib645_DEPENDENCIES) $(EXTRA_lib645_DEPENDENCIES)
37084443 @rm -f lib645$(EXEEXT)
37094444 $(AM_V_CCLD)$(LINK) $(lib645_OBJECTS) $(lib645_LDADD) $(LIBS)
4445 ../../lib/lib650-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4446 ../../lib/$(DEPDIR)/$(am__dirstamp)
37104447
37114448 lib650$(EXEEXT): $(lib650_OBJECTS) $(lib650_DEPENDENCIES) $(EXTRA_lib650_DEPENDENCIES)
37124449 @rm -f lib650$(EXEEXT)
37134450 $(AM_V_CCLD)$(LINK) $(lib650_OBJECTS) $(lib650_LDADD) $(LIBS)
4451 ../../lib/lib651-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4452 ../../lib/$(DEPDIR)/$(am__dirstamp)
37144453
37154454 lib651$(EXEEXT): $(lib651_OBJECTS) $(lib651_DEPENDENCIES) $(EXTRA_lib651_DEPENDENCIES)
37164455 @rm -f lib651$(EXEEXT)
37174456 $(AM_V_CCLD)$(LINK) $(lib651_OBJECTS) $(lib651_LDADD) $(LIBS)
4457 ../../lib/lib652-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4458 ../../lib/$(DEPDIR)/$(am__dirstamp)
37184459
37194460 lib652$(EXEEXT): $(lib652_OBJECTS) $(lib652_DEPENDENCIES) $(EXTRA_lib652_DEPENDENCIES)
37204461 @rm -f lib652$(EXEEXT)
37214462 $(AM_V_CCLD)$(LINK) $(lib652_OBJECTS) $(lib652_LDADD) $(LIBS)
4463 ../../lib/lib653-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4464 ../../lib/$(DEPDIR)/$(am__dirstamp)
37224465
37234466 lib653$(EXEEXT): $(lib653_OBJECTS) $(lib653_DEPENDENCIES) $(EXTRA_lib653_DEPENDENCIES)
37244467 @rm -f lib653$(EXEEXT)
37254468 $(AM_V_CCLD)$(LINK) $(lib653_OBJECTS) $(lib653_LDADD) $(LIBS)
4469 ../../lib/lib654-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4470 ../../lib/$(DEPDIR)/$(am__dirstamp)
37264471
37274472 lib654$(EXEEXT): $(lib654_OBJECTS) $(lib654_DEPENDENCIES) $(EXTRA_lib654_DEPENDENCIES)
37284473 @rm -f lib654$(EXEEXT)
37294474 $(AM_V_CCLD)$(LINK) $(lib654_OBJECTS) $(lib654_LDADD) $(LIBS)
4475 ../../lib/lib655-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4476 ../../lib/$(DEPDIR)/$(am__dirstamp)
37304477
37314478 lib655$(EXEEXT): $(lib655_OBJECTS) $(lib655_DEPENDENCIES) $(EXTRA_lib655_DEPENDENCIES)
37324479 @rm -f lib655$(EXEEXT)
37334480 $(AM_V_CCLD)$(LINK) $(lib655_OBJECTS) $(lib655_LDADD) $(LIBS)
4481 ../../lib/lib658-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4482 ../../lib/$(DEPDIR)/$(am__dirstamp)
37344483 ../../lib/lib658-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37354484 ../../lib/$(DEPDIR)/$(am__dirstamp)
37364485
37374486 lib658$(EXEEXT): $(lib658_OBJECTS) $(lib658_DEPENDENCIES) $(EXTRA_lib658_DEPENDENCIES)
37384487 @rm -f lib658$(EXEEXT)
37394488 $(AM_V_CCLD)$(LINK) $(lib658_OBJECTS) $(lib658_LDADD) $(LIBS)
4489 ../../lib/lib659-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4490 ../../lib/$(DEPDIR)/$(am__dirstamp)
37404491 ../../lib/lib659-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37414492 ../../lib/$(DEPDIR)/$(am__dirstamp)
37424493
37434494 lib659$(EXEEXT): $(lib659_OBJECTS) $(lib659_DEPENDENCIES) $(EXTRA_lib659_DEPENDENCIES)
37444495 @rm -f lib659$(EXEEXT)
37454496 $(AM_V_CCLD)$(LINK) $(lib659_OBJECTS) $(lib659_LDADD) $(LIBS)
4497 ../../lib/lib661-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4498 ../../lib/$(DEPDIR)/$(am__dirstamp)
37464499
37474500 lib661$(EXEEXT): $(lib661_OBJECTS) $(lib661_DEPENDENCIES) $(EXTRA_lib661_DEPENDENCIES)
37484501 @rm -f lib661$(EXEEXT)
37494502 $(AM_V_CCLD)$(LINK) $(lib661_OBJECTS) $(lib661_LDADD) $(LIBS)
4503 ../../lib/lib666-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4504 ../../lib/$(DEPDIR)/$(am__dirstamp)
37504505
37514506 lib666$(EXEEXT): $(lib666_OBJECTS) $(lib666_DEPENDENCIES) $(EXTRA_lib666_DEPENDENCIES)
37524507 @rm -f lib666$(EXEEXT)
37534508 $(AM_V_CCLD)$(LINK) $(lib666_OBJECTS) $(lib666_LDADD) $(LIBS)
4509 ../../lib/lib667-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4510 ../../lib/$(DEPDIR)/$(am__dirstamp)
37544511 ../../lib/lib667-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37554512 ../../lib/$(DEPDIR)/$(am__dirstamp)
37564513
37574514 lib667$(EXEEXT): $(lib667_OBJECTS) $(lib667_DEPENDENCIES) $(EXTRA_lib667_DEPENDENCIES)
37584515 @rm -f lib667$(EXEEXT)
37594516 $(AM_V_CCLD)$(LINK) $(lib667_OBJECTS) $(lib667_LDADD) $(LIBS)
4517 ../../lib/lib668-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4518 ../../lib/$(DEPDIR)/$(am__dirstamp)
37604519 ../../lib/lib668-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37614520 ../../lib/$(DEPDIR)/$(am__dirstamp)
37624521
37634522 lib668$(EXEEXT): $(lib668_OBJECTS) $(lib668_DEPENDENCIES) $(EXTRA_lib668_DEPENDENCIES)
37644523 @rm -f lib668$(EXEEXT)
37654524 $(AM_V_CCLD)$(LINK) $(lib668_OBJECTS) $(lib668_LDADD) $(LIBS)
4525 ../../lib/lib670-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4526 ../../lib/$(DEPDIR)/$(am__dirstamp)
37664527 ../../lib/lib670-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37674528 ../../lib/$(DEPDIR)/$(am__dirstamp)
37684529
37694530 lib670$(EXEEXT): $(lib670_OBJECTS) $(lib670_DEPENDENCIES) $(EXTRA_lib670_DEPENDENCIES)
37704531 @rm -f lib670$(EXEEXT)
37714532 $(AM_V_CCLD)$(LINK) $(lib670_OBJECTS) $(lib670_LDADD) $(LIBS)
4533 ../../lib/lib671-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4534 ../../lib/$(DEPDIR)/$(am__dirstamp)
37724535 ../../lib/lib671-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37734536 ../../lib/$(DEPDIR)/$(am__dirstamp)
37744537
37754538 lib671$(EXEEXT): $(lib671_OBJECTS) $(lib671_DEPENDENCIES) $(EXTRA_lib671_DEPENDENCIES)
37764539 @rm -f lib671$(EXEEXT)
37774540 $(AM_V_CCLD)$(LINK) $(lib671_OBJECTS) $(lib671_LDADD) $(LIBS)
4541 ../../lib/lib672-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4542 ../../lib/$(DEPDIR)/$(am__dirstamp)
37784543 ../../lib/lib672-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37794544 ../../lib/$(DEPDIR)/$(am__dirstamp)
37804545
37814546 lib672$(EXEEXT): $(lib672_OBJECTS) $(lib672_DEPENDENCIES) $(EXTRA_lib672_DEPENDENCIES)
37824547 @rm -f lib672$(EXEEXT)
37834548 $(AM_V_CCLD)$(LINK) $(lib672_OBJECTS) $(lib672_LDADD) $(LIBS)
4549 ../../lib/lib673-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4550 ../../lib/$(DEPDIR)/$(am__dirstamp)
37844551 ../../lib/lib673-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37854552 ../../lib/$(DEPDIR)/$(am__dirstamp)
37864553
37874554 lib673$(EXEEXT): $(lib673_OBJECTS) $(lib673_DEPENDENCIES) $(EXTRA_lib673_DEPENDENCIES)
37884555 @rm -f lib673$(EXEEXT)
37894556 $(AM_V_CCLD)$(LINK) $(lib673_OBJECTS) $(lib673_LDADD) $(LIBS)
4557 ../../lib/lib674-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4558 ../../lib/$(DEPDIR)/$(am__dirstamp)
37904559 ../../lib/lib674-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37914560 ../../lib/$(DEPDIR)/$(am__dirstamp)
37924561
37934562 lib674$(EXEEXT): $(lib674_OBJECTS) $(lib674_DEPENDENCIES) $(EXTRA_lib674_DEPENDENCIES)
37944563 @rm -f lib674$(EXEEXT)
37954564 $(AM_V_CCLD)$(LINK) $(lib674_OBJECTS) $(lib674_LDADD) $(LIBS)
4565 ../../lib/lib676-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4566 ../../lib/$(DEPDIR)/$(am__dirstamp)
37964567 ../../lib/lib676-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
37974568 ../../lib/$(DEPDIR)/$(am__dirstamp)
37984569
37994570 lib676$(EXEEXT): $(lib676_OBJECTS) $(lib676_DEPENDENCIES) $(EXTRA_lib676_DEPENDENCIES)
38004571 @rm -f lib676$(EXEEXT)
38014572 $(AM_V_CCLD)$(LINK) $(lib676_OBJECTS) $(lib676_LDADD) $(LIBS)
4573 ../../lib/lib677-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4574 ../../lib/$(DEPDIR)/$(am__dirstamp)
38024575 ../../lib/lib677-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
38034576 ../../lib/$(DEPDIR)/$(am__dirstamp)
38044577 ../../lib/lib677-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
38074580 lib677$(EXEEXT): $(lib677_OBJECTS) $(lib677_DEPENDENCIES) $(EXTRA_lib677_DEPENDENCIES)
38084581 @rm -f lib677$(EXEEXT)
38094582 $(AM_V_CCLD)$(LINK) $(lib677_OBJECTS) $(lib677_LDADD) $(LIBS)
4583 ../../lib/lib678-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4584 ../../lib/$(DEPDIR)/$(am__dirstamp)
38104585 ../../lib/lib678-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
38114586 ../../lib/$(DEPDIR)/$(am__dirstamp)
38124587 ../../lib/lib678-curl_multibyte.$(OBJEXT): ../../lib/$(am__dirstamp) \
38154590 lib678$(EXEEXT): $(lib678_OBJECTS) $(lib678_DEPENDENCIES) $(EXTRA_lib678_DEPENDENCIES)
38164591 @rm -f lib678$(EXEEXT)
38174592 $(AM_V_CCLD)$(LINK) $(lib678_OBJECTS) $(lib678_LDADD) $(LIBS)
4593 ../../lib/libauthretry-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4594 ../../lib/$(DEPDIR)/$(am__dirstamp)
38184595
38194596 libauthretry$(EXEEXT): $(libauthretry_OBJECTS) $(libauthretry_DEPENDENCIES) $(EXTRA_libauthretry_DEPENDENCIES)
38204597 @rm -f libauthretry$(EXEEXT)
38214598 $(AM_V_CCLD)$(LINK) $(libauthretry_OBJECTS) $(libauthretry_LDADD) $(LIBS)
4599 ../../lib/libntlmconnect-timediff.$(OBJEXT): \
4600 ../../lib/$(am__dirstamp) ../../lib/$(DEPDIR)/$(am__dirstamp)
38224601 ../../lib/libntlmconnect-warnless.$(OBJEXT): \
38234602 ../../lib/$(am__dirstamp) ../../lib/$(DEPDIR)/$(am__dirstamp)
38244603
38254604 libntlmconnect$(EXEEXT): $(libntlmconnect_OBJECTS) $(libntlmconnect_DEPENDENCIES) $(EXTRA_libntlmconnect_DEPENDENCIES)
38264605 @rm -f libntlmconnect$(EXEEXT)
38274606 $(AM_V_CCLD)$(LINK) $(libntlmconnect_OBJECTS) $(libntlmconnect_LDADD) $(LIBS)
4607 ../../lib/libprereq-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
4608 ../../lib/$(DEPDIR)/$(am__dirstamp)
38284609 ../../lib/libprereq-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
38294610 ../../lib/$(DEPDIR)/$(am__dirstamp)
38304611
38444625 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/chkdecimalpoint-mprintf.Po@am__quote@ # am--include-marker
38454626 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/chkdecimalpoint-strdup.Po@am__quote@ # am--include-marker
38464627 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/chkhostname-curl_gethostname.Po@am__quote@ # am--include-marker
4628 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1156-timediff.Po@am__quote@ # am--include-marker
38474629 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1156-warnless.Po@am__quote@ # am--include-marker
4630 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1500-timediff.Po@am__quote@ # am--include-marker
4631 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1501-timediff.Po@am__quote@ # am--include-marker
38484632 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1501-warnless.Po@am__quote@ # am--include-marker
4633 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1502-timediff.Po@am__quote@ # am--include-marker
38494634 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1502-warnless.Po@am__quote@ # am--include-marker
4635 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1503-timediff.Po@am__quote@ # am--include-marker
38504636 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1503-warnless.Po@am__quote@ # am--include-marker
4637 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1504-timediff.Po@am__quote@ # am--include-marker
38514638 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1504-warnless.Po@am__quote@ # am--include-marker
4639 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1505-timediff.Po@am__quote@ # am--include-marker
38524640 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1505-warnless.Po@am__quote@ # am--include-marker
4641 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1506-timediff.Po@am__quote@ # am--include-marker
38534642 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1506-warnless.Po@am__quote@ # am--include-marker
4643 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1507-timediff.Po@am__quote@ # am--include-marker
38544644 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1507-warnless.Po@am__quote@ # am--include-marker
4645 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1508-timediff.Po@am__quote@ # am--include-marker
38554646 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1508-warnless.Po@am__quote@ # am--include-marker
4647 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1509-timediff.Po@am__quote@ # am--include-marker
38564648 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1509-warnless.Po@am__quote@ # am--include-marker
4649 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1510-timediff.Po@am__quote@ # am--include-marker
38574650 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1510-warnless.Po@am__quote@ # am--include-marker
4651 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1511-timediff.Po@am__quote@ # am--include-marker
38584652 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1511-warnless.Po@am__quote@ # am--include-marker
4653 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1512-timediff.Po@am__quote@ # am--include-marker
38594654 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1512-warnless.Po@am__quote@ # am--include-marker
4655 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1513-timediff.Po@am__quote@ # am--include-marker
38604656 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1513-warnless.Po@am__quote@ # am--include-marker
4657 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1514-timediff.Po@am__quote@ # am--include-marker
38614658 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1514-warnless.Po@am__quote@ # am--include-marker
4659 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1515-timediff.Po@am__quote@ # am--include-marker
38624660 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1515-warnless.Po@am__quote@ # am--include-marker
4661 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1517-timediff.Po@am__quote@ # am--include-marker
4662 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1518-timediff.Po@am__quote@ # am--include-marker
4663 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1520-timediff.Po@am__quote@ # am--include-marker
4664 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1521-timediff.Po@am__quote@ # am--include-marker
4665 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1522-timediff.Po@am__quote@ # am--include-marker
4666 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1523-timediff.Po@am__quote@ # am--include-marker
4667 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1525-timediff.Po@am__quote@ # am--include-marker
38634668 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1525-warnless.Po@am__quote@ # am--include-marker
4669 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1526-timediff.Po@am__quote@ # am--include-marker
38644670 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1526-warnless.Po@am__quote@ # am--include-marker
4671 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1527-timediff.Po@am__quote@ # am--include-marker
38654672 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1527-warnless.Po@am__quote@ # am--include-marker
4673 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1528-timediff.Po@am__quote@ # am--include-marker
38664674 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1528-warnless.Po@am__quote@ # am--include-marker
4675 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1529-timediff.Po@am__quote@ # am--include-marker
38674676 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1529-warnless.Po@am__quote@ # am--include-marker
4677 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1530-timediff.Po@am__quote@ # am--include-marker
38684678 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1530-warnless.Po@am__quote@ # am--include-marker
4679 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1531-timediff.Po@am__quote@ # am--include-marker
38694680 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1531-warnless.Po@am__quote@ # am--include-marker
4681 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1532-timediff.Po@am__quote@ # am--include-marker
38704682 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1532-warnless.Po@am__quote@ # am--include-marker
4683 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1533-timediff.Po@am__quote@ # am--include-marker
38714684 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1533-warnless.Po@am__quote@ # am--include-marker
4685 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1534-timediff.Po@am__quote@ # am--include-marker
38724686 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1534-warnless.Po@am__quote@ # am--include-marker
4687 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1535-timediff.Po@am__quote@ # am--include-marker
38734688 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1535-warnless.Po@am__quote@ # am--include-marker
4689 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1536-timediff.Po@am__quote@ # am--include-marker
38744690 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1536-warnless.Po@am__quote@ # am--include-marker
4691 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1537-timediff.Po@am__quote@ # am--include-marker
38754692 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1537-warnless.Po@am__quote@ # am--include-marker
4693 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1538-timediff.Po@am__quote@ # am--include-marker
38764694 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1538-warnless.Po@am__quote@ # am--include-marker
4695 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1539-timediff.Po@am__quote@ # am--include-marker
38774696 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1539-warnless.Po@am__quote@ # am--include-marker
4697 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1540-timediff.Po@am__quote@ # am--include-marker
38784698 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1540-warnless.Po@am__quote@ # am--include-marker
4699 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1542-timediff.Po@am__quote@ # am--include-marker
38794700 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1542-warnless.Po@am__quote@ # am--include-marker
4701 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1550-timediff.Po@am__quote@ # am--include-marker
4702 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1551-timediff.Po@am__quote@ # am--include-marker
4703 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1552-timediff.Po@am__quote@ # am--include-marker
4704 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1553-timediff.Po@am__quote@ # am--include-marker
4705 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1554-timediff.Po@am__quote@ # am--include-marker
4706 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1555-timediff.Po@am__quote@ # am--include-marker
38804707 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1555-warnless.Po@am__quote@ # am--include-marker
4708 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1556-timediff.Po@am__quote@ # am--include-marker
38814709 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1556-warnless.Po@am__quote@ # am--include-marker
4710 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1557-timediff.Po@am__quote@ # am--include-marker
38824711 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1557-warnless.Po@am__quote@ # am--include-marker
4712 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1564-timediff.Po@am__quote@ # am--include-marker
38834713 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1564-warnless.Po@am__quote@ # am--include-marker
4714 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1565-timediff.Po@am__quote@ # am--include-marker
38844715 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1565-warnless.Po@am__quote@ # am--include-marker
4716 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1567-timediff.Po@am__quote@ # am--include-marker
4717 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1568-timediff.Po@am__quote@ # am--include-marker
4718 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1569-timediff.Po@am__quote@ # am--include-marker
4719 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1591-timediff.Po@am__quote@ # am--include-marker
38854720 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1591-warnless.Po@am__quote@ # am--include-marker
4721 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1592-timediff.Po@am__quote@ # am--include-marker
38864722 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1592-warnless.Po@am__quote@ # am--include-marker
4723 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1596-timediff.Po@am__quote@ # am--include-marker
38874724 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1596-warnless.Po@am__quote@ # am--include-marker
4725 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1905-timediff.Po@am__quote@ # am--include-marker
38884726 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1905-warnless.Po@am__quote@ # am--include-marker
4727 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1906-timediff.Po@am__quote@ # am--include-marker
38894728 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1906-warnless.Po@am__quote@ # am--include-marker
4729 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1907-timediff.Po@am__quote@ # am--include-marker
38904730 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1907-warnless.Po@am__quote@ # am--include-marker
4731 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1908-timediff.Po@am__quote@ # am--include-marker
38914732 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1908-warnless.Po@am__quote@ # am--include-marker
4733 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1910-timediff.Po@am__quote@ # am--include-marker
38924734 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1910-warnless.Po@am__quote@ # am--include-marker
4735 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1911-timediff.Po@am__quote@ # am--include-marker
38934736 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1911-warnless.Po@am__quote@ # am--include-marker
4737 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1912-timediff.Po@am__quote@ # am--include-marker
38944738 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1912-warnless.Po@am__quote@ # am--include-marker
4739 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1913-timediff.Po@am__quote@ # am--include-marker
38954740 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1913-warnless.Po@am__quote@ # am--include-marker
4741 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1915-timediff.Po@am__quote@ # am--include-marker
38964742 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1915-warnless.Po@am__quote@ # am--include-marker
4743 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1916-timediff.Po@am__quote@ # am--include-marker
38974744 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1916-warnless.Po@am__quote@ # am--include-marker
4745 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1917-timediff.Po@am__quote@ # am--include-marker
38984746 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1917-warnless.Po@am__quote@ # am--include-marker
4747 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1918-timediff.Po@am__quote@ # am--include-marker
38994748 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1918-warnless.Po@am__quote@ # am--include-marker
4749 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1933-timediff.Po@am__quote@ # am--include-marker
39004750 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1933-warnless.Po@am__quote@ # am--include-marker
4751 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1934-timediff.Po@am__quote@ # am--include-marker
39014752 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1934-warnless.Po@am__quote@ # am--include-marker
4753 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1935-timediff.Po@am__quote@ # am--include-marker
39024754 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1935-warnless.Po@am__quote@ # am--include-marker
4755 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1936-timediff.Po@am__quote@ # am--include-marker
39034756 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1936-warnless.Po@am__quote@ # am--include-marker
4757 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1937-timediff.Po@am__quote@ # am--include-marker
4758 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1938-timediff.Po@am__quote@ # am--include-marker
4759 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1939-timediff.Po@am__quote@ # am--include-marker
4760 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1940-timediff.Po@am__quote@ # am--include-marker
4761 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1945-timediff.Po@am__quote@ # am--include-marker
4762 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib1946-timediff.Po@am__quote@ # am--include-marker
4763 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib3010-timediff.Po@am__quote@ # am--include-marker
39044764 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib3010-warnless.Po@am__quote@ # am--include-marker
4765 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib3025-timediff.Po@am__quote@ # am--include-marker
39054766 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib3025-warnless.Po@am__quote@ # am--include-marker
39064767 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib500-curl_multibyte.Po@am__quote@ # am--include-marker
4768 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib500-timediff.Po@am__quote@ # am--include-marker
4769 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib501-timediff.Po@am__quote@ # am--include-marker
4770 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib502-timediff.Po@am__quote@ # am--include-marker
39074771 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib502-warnless.Po@am__quote@ # am--include-marker
4772 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib503-timediff.Po@am__quote@ # am--include-marker
39084773 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib503-warnless.Po@am__quote@ # am--include-marker
4774 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib504-timediff.Po@am__quote@ # am--include-marker
39094775 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib504-warnless.Po@am__quote@ # am--include-marker
39104776 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib505-curl_multibyte.Po@am__quote@ # am--include-marker
4777 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib505-timediff.Po@am__quote@ # am--include-marker
4778 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib506-timediff.Po@am__quote@ # am--include-marker
4779 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib507-timediff.Po@am__quote@ # am--include-marker
39114780 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib507-warnless.Po@am__quote@ # am--include-marker
4781 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib508-timediff.Po@am__quote@ # am--include-marker
4782 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib509-timediff.Po@am__quote@ # am--include-marker
4783 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib510-timediff.Po@am__quote@ # am--include-marker
4784 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib511-timediff.Po@am__quote@ # am--include-marker
4785 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib512-timediff.Po@am__quote@ # am--include-marker
4786 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib513-timediff.Po@am__quote@ # am--include-marker
4787 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib514-timediff.Po@am__quote@ # am--include-marker
4788 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib515-timediff.Po@am__quote@ # am--include-marker
4789 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib516-timediff.Po@am__quote@ # am--include-marker
4790 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib517-timediff.Po@am__quote@ # am--include-marker
39124791 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib518-curl_multibyte.Po@am__quote@ # am--include-marker
4792 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib518-timediff.Po@am__quote@ # am--include-marker
39134793 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib518-warnless.Po@am__quote@ # am--include-marker
4794 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib519-timediff.Po@am__quote@ # am--include-marker
4795 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib520-timediff.Po@am__quote@ # am--include-marker
4796 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib521-timediff.Po@am__quote@ # am--include-marker
4797 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib523-timediff.Po@am__quote@ # am--include-marker
4798 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib524-timediff.Po@am__quote@ # am--include-marker
39144799 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib525-curl_multibyte.Po@am__quote@ # am--include-marker
4800 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib525-timediff.Po@am__quote@ # am--include-marker
39154801 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib525-warnless.Po@am__quote@ # am--include-marker
4802 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib526-timediff.Po@am__quote@ # am--include-marker
39164803 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib526-warnless.Po@am__quote@ # am--include-marker
4804 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib527-timediff.Po@am__quote@ # am--include-marker
39174805 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib527-warnless.Po@am__quote@ # am--include-marker
39184806 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib529-curl_multibyte.Po@am__quote@ # am--include-marker
4807 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib529-timediff.Po@am__quote@ # am--include-marker
39194808 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib529-warnless.Po@am__quote@ # am--include-marker
4809 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib530-timediff.Po@am__quote@ # am--include-marker
39204810 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib530-warnless.Po@am__quote@ # am--include-marker
4811 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib532-timediff.Po@am__quote@ # am--include-marker
39214812 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib532-warnless.Po@am__quote@ # am--include-marker
4813 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib533-timediff.Po@am__quote@ # am--include-marker
39224814 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib533-warnless.Po@am__quote@ # am--include-marker
39234815 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib537-curl_multibyte.Po@am__quote@ # am--include-marker
4816 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib537-timediff.Po@am__quote@ # am--include-marker
39244817 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib537-warnless.Po@am__quote@ # am--include-marker
4818 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib539-timediff.Po@am__quote@ # am--include-marker
4819 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib540-timediff.Po@am__quote@ # am--include-marker
39254820 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib540-warnless.Po@am__quote@ # am--include-marker
39264821 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib541-curl_multibyte.Po@am__quote@ # am--include-marker
4822 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib541-timediff.Po@am__quote@ # am--include-marker
4823 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib542-timediff.Po@am__quote@ # am--include-marker
4824 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib543-timediff.Po@am__quote@ # am--include-marker
4825 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib544-timediff.Po@am__quote@ # am--include-marker
4826 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib545-timediff.Po@am__quote@ # am--include-marker
4827 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib547-timediff.Po@am__quote@ # am--include-marker
4828 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib548-timediff.Po@am__quote@ # am--include-marker
4829 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib549-timediff.Po@am__quote@ # am--include-marker
4830 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib552-timediff.Po@am__quote@ # am--include-marker
39274831 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib552-warnless.Po@am__quote@ # am--include-marker
4832 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib553-timediff.Po@am__quote@ # am--include-marker
4833 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib554-timediff.Po@am__quote@ # am--include-marker
4834 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib555-timediff.Po@am__quote@ # am--include-marker
39284835 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib555-warnless.Po@am__quote@ # am--include-marker
4836 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib556-timediff.Po@am__quote@ # am--include-marker
39294837 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib556-warnless.Po@am__quote@ # am--include-marker
4838 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib557-timediff.Po@am__quote@ # am--include-marker
4839 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib558-timediff.Po@am__quote@ # am--include-marker
4840 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib559-timediff.Po@am__quote@ # am--include-marker
4841 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib560-timediff.Po@am__quote@ # am--include-marker
39304842 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib560-warnless.Po@am__quote@ # am--include-marker
4843 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib562-timediff.Po@am__quote@ # am--include-marker
4844 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib564-timediff.Po@am__quote@ # am--include-marker
39314845 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib564-warnless.Po@am__quote@ # am--include-marker
4846 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib565-timediff.Po@am__quote@ # am--include-marker
39324847 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib566-curl_multibyte.Po@am__quote@ # am--include-marker
4848 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib566-timediff.Po@am__quote@ # am--include-marker
4849 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib567-timediff.Po@am__quote@ # am--include-marker
39334850 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib568-curl_multibyte.Po@am__quote@ # am--include-marker
4851 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib568-timediff.Po@am__quote@ # am--include-marker
39344852 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib569-curl_multibyte.Po@am__quote@ # am--include-marker
4853 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib569-timediff.Po@am__quote@ # am--include-marker
4854 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib570-timediff.Po@am__quote@ # am--include-marker
39354855 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib571-curl_multibyte.Po@am__quote@ # am--include-marker
4856 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib571-timediff.Po@am__quote@ # am--include-marker
39364857 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib571-warnless.Po@am__quote@ # am--include-marker
39374858 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib572-curl_multibyte.Po@am__quote@ # am--include-marker
4859 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib572-timediff.Po@am__quote@ # am--include-marker
4860 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib573-timediff.Po@am__quote@ # am--include-marker
39384861 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib573-warnless.Po@am__quote@ # am--include-marker
4862 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib574-timediff.Po@am__quote@ # am--include-marker
4863 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib575-timediff.Po@am__quote@ # am--include-marker
39394864 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib575-warnless.Po@am__quote@ # am--include-marker
4865 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib576-timediff.Po@am__quote@ # am--include-marker
39404866 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib578-curl_multibyte.Po@am__quote@ # am--include-marker
4867 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib578-timediff.Po@am__quote@ # am--include-marker
39414868 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib579-curl_multibyte.Po@am__quote@ # am--include-marker
4869 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib579-timediff.Po@am__quote@ # am--include-marker
39424870 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib582-curl_multibyte.Po@am__quote@ # am--include-marker
4871 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib582-timediff.Po@am__quote@ # am--include-marker
39434872 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib582-warnless.Po@am__quote@ # am--include-marker
4873 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib583-timediff.Po@am__quote@ # am--include-marker
4874 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib584-timediff.Po@am__quote@ # am--include-marker
39444875 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib585-curl_multibyte.Po@am__quote@ # am--include-marker
4876 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib585-timediff.Po@am__quote@ # am--include-marker
4877 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib586-timediff.Po@am__quote@ # am--include-marker
4878 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib587-timediff.Po@am__quote@ # am--include-marker
4879 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib589-timediff.Po@am__quote@ # am--include-marker
4880 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib590-timediff.Po@am__quote@ # am--include-marker
39454881 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib591-curl_multibyte.Po@am__quote@ # am--include-marker
4882 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib591-timediff.Po@am__quote@ # am--include-marker
39464883 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib591-warnless.Po@am__quote@ # am--include-marker
4884 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib597-timediff.Po@am__quote@ # am--include-marker
39474885 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib597-warnless.Po@am__quote@ # am--include-marker
4886 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib598-timediff.Po@am__quote@ # am--include-marker
39484887 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib599-curl_multibyte.Po@am__quote@ # am--include-marker
4888 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib599-timediff.Po@am__quote@ # am--include-marker
4889 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib643-timediff.Po@am__quote@ # am--include-marker
4890 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib645-timediff.Po@am__quote@ # am--include-marker
4891 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib650-timediff.Po@am__quote@ # am--include-marker
4892 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib651-timediff.Po@am__quote@ # am--include-marker
4893 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib652-timediff.Po@am__quote@ # am--include-marker
4894 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib653-timediff.Po@am__quote@ # am--include-marker
4895 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib654-timediff.Po@am__quote@ # am--include-marker
4896 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib655-timediff.Po@am__quote@ # am--include-marker
4897 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib658-timediff.Po@am__quote@ # am--include-marker
39494898 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib658-warnless.Po@am__quote@ # am--include-marker
4899 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib659-timediff.Po@am__quote@ # am--include-marker
39504900 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib659-warnless.Po@am__quote@ # am--include-marker
4901 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib661-timediff.Po@am__quote@ # am--include-marker
4902 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib666-timediff.Po@am__quote@ # am--include-marker
4903 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib667-timediff.Po@am__quote@ # am--include-marker
39514904 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib667-warnless.Po@am__quote@ # am--include-marker
4905 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib668-timediff.Po@am__quote@ # am--include-marker
39524906 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib668-warnless.Po@am__quote@ # am--include-marker
4907 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib670-timediff.Po@am__quote@ # am--include-marker
39534908 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib670-warnless.Po@am__quote@ # am--include-marker
4909 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib671-timediff.Po@am__quote@ # am--include-marker
39544910 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib671-warnless.Po@am__quote@ # am--include-marker
4911 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib672-timediff.Po@am__quote@ # am--include-marker
39554912 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib672-warnless.Po@am__quote@ # am--include-marker
4913 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib673-timediff.Po@am__quote@ # am--include-marker
39564914 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib673-warnless.Po@am__quote@ # am--include-marker
4915 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib674-timediff.Po@am__quote@ # am--include-marker
39574916 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib674-warnless.Po@am__quote@ # am--include-marker
4917 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib676-timediff.Po@am__quote@ # am--include-marker
39584918 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib676-warnless.Po@am__quote@ # am--include-marker
39594919 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib677-curl_multibyte.Po@am__quote@ # am--include-marker
4920 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib677-timediff.Po@am__quote@ # am--include-marker
39604921 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib677-warnless.Po@am__quote@ # am--include-marker
39614922 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib678-curl_multibyte.Po@am__quote@ # am--include-marker
4923 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib678-timediff.Po@am__quote@ # am--include-marker
39624924 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/lib678-warnless.Po@am__quote@ # am--include-marker
4925 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/libauthretry-timediff.Po@am__quote@ # am--include-marker
4926 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/libntlmconnect-timediff.Po@am__quote@ # am--include-marker
39634927 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/libntlmconnect-warnless.Po@am__quote@ # am--include-marker
4928 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/libprereq-timediff.Po@am__quote@ # am--include-marker
39644929 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/libprereq-warnless.Po@am__quote@ # am--include-marker
4930 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/timediff.Po@am__quote@ # am--include-marker
39654931 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/warnless.Po@am__quote@ # am--include-marker
39664932 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkdecimalpoint-chkdecimalpoint.Po@am__quote@ # am--include-marker
39674933 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkhostname-chkhostname.Po@am__quote@ # am--include-marker
41815147 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1938-lib1938.Po@am__quote@ # am--include-marker
41825148 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1939-first.Po@am__quote@ # am--include-marker
41835149 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1939-lib1939.Po@am__quote@ # am--include-marker
5150 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1940-first.Po@am__quote@ # am--include-marker
5151 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1940-lib1940.Po@am__quote@ # am--include-marker
5152 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1945-first.Po@am__quote@ # am--include-marker
5153 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1945-lib1945.Po@am__quote@ # am--include-marker
5154 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1946-first.Po@am__quote@ # am--include-marker
5155 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib1946-lib1940.Po@am__quote@ # am--include-marker
41845156 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib3010-first.Po@am__quote@ # am--include-marker
41855157 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib3010-lib3010.Po@am__quote@ # am--include-marker
41865158 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lib3010-testutil.Po@am__quote@ # am--include-marker
45945566 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
45955567 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1156-lib1156.obj `if test -f 'lib1156.c'; then $(CYGPATH_W) 'lib1156.c'; else $(CYGPATH_W) '$(srcdir)/lib1156.c'; fi`
45965568
5569 ../../lib/lib1156-timediff.o: ../../lib/timediff.c
5570 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1156-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1156-timediff.Tpo -c -o ../../lib/lib1156-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5571 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1156-timediff.Tpo ../../lib/$(DEPDIR)/lib1156-timediff.Po
5572 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1156-timediff.o' libtool=no @AMDEPBACKSLASH@
5573 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5574 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1156-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5575
5576 ../../lib/lib1156-timediff.obj: ../../lib/timediff.c
5577 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1156-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1156-timediff.Tpo -c -o ../../lib/lib1156-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5578 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1156-timediff.Tpo ../../lib/$(DEPDIR)/lib1156-timediff.Po
5579 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1156-timediff.obj' libtool=no @AMDEPBACKSLASH@
5580 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5581 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1156-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5582
45975583 lib1156-first.o: first.c
45985584 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1156_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1156-first.o -MD -MP -MF $(DEPDIR)/lib1156-first.Tpo -c -o lib1156-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
45995585 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1156-first.Tpo $(DEPDIR)/lib1156-first.Po
46505636 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
46515637 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1500-lib1500.obj `if test -f 'lib1500.c'; then $(CYGPATH_W) 'lib1500.c'; else $(CYGPATH_W) '$(srcdir)/lib1500.c'; fi`
46525638
5639 ../../lib/lib1500-timediff.o: ../../lib/timediff.c
5640 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1500-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1500-timediff.Tpo -c -o ../../lib/lib1500-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5641 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1500-timediff.Tpo ../../lib/$(DEPDIR)/lib1500-timediff.Po
5642 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1500-timediff.o' libtool=no @AMDEPBACKSLASH@
5643 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5644 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1500-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5645
5646 ../../lib/lib1500-timediff.obj: ../../lib/timediff.c
5647 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1500-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1500-timediff.Tpo -c -o ../../lib/lib1500-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5648 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1500-timediff.Tpo ../../lib/$(DEPDIR)/lib1500-timediff.Po
5649 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1500-timediff.obj' libtool=no @AMDEPBACKSLASH@
5650 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5651 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1500-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5652
46535653 lib1500-first.o: first.c
46545654 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1500-first.o -MD -MP -MF $(DEPDIR)/lib1500-first.Tpo -c -o lib1500-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
46555655 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1500-first.Tpo $(DEPDIR)/lib1500-first.Po
46925692 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
46935693 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1501-lib1501.obj `if test -f 'lib1501.c'; then $(CYGPATH_W) 'lib1501.c'; else $(CYGPATH_W) '$(srcdir)/lib1501.c'; fi`
46945694
5695 ../../lib/lib1501-timediff.o: ../../lib/timediff.c
5696 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1501-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1501-timediff.Tpo -c -o ../../lib/lib1501-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5697 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1501-timediff.Tpo ../../lib/$(DEPDIR)/lib1501-timediff.Po
5698 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1501-timediff.o' libtool=no @AMDEPBACKSLASH@
5699 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5700 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1501-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5701
5702 ../../lib/lib1501-timediff.obj: ../../lib/timediff.c
5703 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1501-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1501-timediff.Tpo -c -o ../../lib/lib1501-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5704 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1501-timediff.Tpo ../../lib/$(DEPDIR)/lib1501-timediff.Po
5705 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1501-timediff.obj' libtool=no @AMDEPBACKSLASH@
5706 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5707 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1501-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5708
46955709 lib1501-first.o: first.c
46965710 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1501-first.o -MD -MP -MF $(DEPDIR)/lib1501-first.Tpo -c -o lib1501-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
46975711 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1501-first.Tpo $(DEPDIR)/lib1501-first.Po
47485762 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
47495763 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1502-lib1502.obj `if test -f 'lib1502.c'; then $(CYGPATH_W) 'lib1502.c'; else $(CYGPATH_W) '$(srcdir)/lib1502.c'; fi`
47505764
5765 ../../lib/lib1502-timediff.o: ../../lib/timediff.c
5766 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1502-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1502-timediff.Tpo -c -o ../../lib/lib1502-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5767 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1502-timediff.Tpo ../../lib/$(DEPDIR)/lib1502-timediff.Po
5768 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1502-timediff.o' libtool=no @AMDEPBACKSLASH@
5769 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5770 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1502-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5771
5772 ../../lib/lib1502-timediff.obj: ../../lib/timediff.c
5773 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1502-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1502-timediff.Tpo -c -o ../../lib/lib1502-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5774 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1502-timediff.Tpo ../../lib/$(DEPDIR)/lib1502-timediff.Po
5775 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1502-timediff.obj' libtool=no @AMDEPBACKSLASH@
5776 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5777 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1502-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5778
47515779 lib1502-first.o: first.c
47525780 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1502-first.o -MD -MP -MF $(DEPDIR)/lib1502-first.Tpo -c -o lib1502-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
47535781 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1502-first.Tpo $(DEPDIR)/lib1502-first.Po
48045832 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
48055833 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1503-lib1502.obj `if test -f 'lib1502.c'; then $(CYGPATH_W) 'lib1502.c'; else $(CYGPATH_W) '$(srcdir)/lib1502.c'; fi`
48065834
5835 ../../lib/lib1503-timediff.o: ../../lib/timediff.c
5836 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1503-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1503-timediff.Tpo -c -o ../../lib/lib1503-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5837 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1503-timediff.Tpo ../../lib/$(DEPDIR)/lib1503-timediff.Po
5838 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1503-timediff.o' libtool=no @AMDEPBACKSLASH@
5839 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5840 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1503-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5841
5842 ../../lib/lib1503-timediff.obj: ../../lib/timediff.c
5843 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1503-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1503-timediff.Tpo -c -o ../../lib/lib1503-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5844 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1503-timediff.Tpo ../../lib/$(DEPDIR)/lib1503-timediff.Po
5845 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1503-timediff.obj' libtool=no @AMDEPBACKSLASH@
5846 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5847 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1503-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5848
48075849 lib1503-first.o: first.c
48085850 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1503-first.o -MD -MP -MF $(DEPDIR)/lib1503-first.Tpo -c -o lib1503-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
48095851 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1503-first.Tpo $(DEPDIR)/lib1503-first.Po
48605902 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
48615903 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1504-lib1502.obj `if test -f 'lib1502.c'; then $(CYGPATH_W) 'lib1502.c'; else $(CYGPATH_W) '$(srcdir)/lib1502.c'; fi`
48625904
5905 ../../lib/lib1504-timediff.o: ../../lib/timediff.c
5906 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1504-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1504-timediff.Tpo -c -o ../../lib/lib1504-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5907 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1504-timediff.Tpo ../../lib/$(DEPDIR)/lib1504-timediff.Po
5908 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1504-timediff.o' libtool=no @AMDEPBACKSLASH@
5909 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5910 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1504-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5911
5912 ../../lib/lib1504-timediff.obj: ../../lib/timediff.c
5913 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1504-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1504-timediff.Tpo -c -o ../../lib/lib1504-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5914 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1504-timediff.Tpo ../../lib/$(DEPDIR)/lib1504-timediff.Po
5915 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1504-timediff.obj' libtool=no @AMDEPBACKSLASH@
5916 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5917 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1504-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5918
48635919 lib1504-first.o: first.c
48645920 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1504-first.o -MD -MP -MF $(DEPDIR)/lib1504-first.Tpo -c -o lib1504-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
48655921 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1504-first.Tpo $(DEPDIR)/lib1504-first.Po
49165972 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
49175973 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1505-lib1502.obj `if test -f 'lib1502.c'; then $(CYGPATH_W) 'lib1502.c'; else $(CYGPATH_W) '$(srcdir)/lib1502.c'; fi`
49185974
5975 ../../lib/lib1505-timediff.o: ../../lib/timediff.c
5976 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1505-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1505-timediff.Tpo -c -o ../../lib/lib1505-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5977 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1505-timediff.Tpo ../../lib/$(DEPDIR)/lib1505-timediff.Po
5978 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1505-timediff.o' libtool=no @AMDEPBACKSLASH@
5979 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5980 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1505-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
5981
5982 ../../lib/lib1505-timediff.obj: ../../lib/timediff.c
5983 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1505-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1505-timediff.Tpo -c -o ../../lib/lib1505-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5984 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1505-timediff.Tpo ../../lib/$(DEPDIR)/lib1505-timediff.Po
5985 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1505-timediff.obj' libtool=no @AMDEPBACKSLASH@
5986 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5987 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1505-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
5988
49195989 lib1505-first.o: first.c
49205990 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1505-first.o -MD -MP -MF $(DEPDIR)/lib1505-first.Tpo -c -o lib1505-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
49215991 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1505-first.Tpo $(DEPDIR)/lib1505-first.Po
49726042 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
49736043 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1506-lib1506.obj `if test -f 'lib1506.c'; then $(CYGPATH_W) 'lib1506.c'; else $(CYGPATH_W) '$(srcdir)/lib1506.c'; fi`
49746044
6045 ../../lib/lib1506-timediff.o: ../../lib/timediff.c
6046 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1506-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1506-timediff.Tpo -c -o ../../lib/lib1506-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6047 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1506-timediff.Tpo ../../lib/$(DEPDIR)/lib1506-timediff.Po
6048 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1506-timediff.o' libtool=no @AMDEPBACKSLASH@
6049 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6050 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1506-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6051
6052 ../../lib/lib1506-timediff.obj: ../../lib/timediff.c
6053 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1506-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1506-timediff.Tpo -c -o ../../lib/lib1506-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6054 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1506-timediff.Tpo ../../lib/$(DEPDIR)/lib1506-timediff.Po
6055 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1506-timediff.obj' libtool=no @AMDEPBACKSLASH@
6056 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6057 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1506-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6058
49756059 lib1506-first.o: first.c
49766060 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1506-first.o -MD -MP -MF $(DEPDIR)/lib1506-first.Tpo -c -o lib1506-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
49776061 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1506-first.Tpo $(DEPDIR)/lib1506-first.Po
50286112 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
50296113 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1507-lib1507.obj `if test -f 'lib1507.c'; then $(CYGPATH_W) 'lib1507.c'; else $(CYGPATH_W) '$(srcdir)/lib1507.c'; fi`
50306114
6115 ../../lib/lib1507-timediff.o: ../../lib/timediff.c
6116 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1507-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1507-timediff.Tpo -c -o ../../lib/lib1507-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6117 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1507-timediff.Tpo ../../lib/$(DEPDIR)/lib1507-timediff.Po
6118 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1507-timediff.o' libtool=no @AMDEPBACKSLASH@
6119 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6120 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1507-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6121
6122 ../../lib/lib1507-timediff.obj: ../../lib/timediff.c
6123 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1507-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1507-timediff.Tpo -c -o ../../lib/lib1507-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6124 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1507-timediff.Tpo ../../lib/$(DEPDIR)/lib1507-timediff.Po
6125 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1507-timediff.obj' libtool=no @AMDEPBACKSLASH@
6126 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6127 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1507-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6128
50316129 lib1507-first.o: first.c
50326130 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1507-first.o -MD -MP -MF $(DEPDIR)/lib1507-first.Tpo -c -o lib1507-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
50336131 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1507-first.Tpo $(DEPDIR)/lib1507-first.Po
50846182 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
50856183 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1508-lib1508.obj `if test -f 'lib1508.c'; then $(CYGPATH_W) 'lib1508.c'; else $(CYGPATH_W) '$(srcdir)/lib1508.c'; fi`
50866184
6185 ../../lib/lib1508-timediff.o: ../../lib/timediff.c
6186 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1508-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1508-timediff.Tpo -c -o ../../lib/lib1508-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6187 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1508-timediff.Tpo ../../lib/$(DEPDIR)/lib1508-timediff.Po
6188 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1508-timediff.o' libtool=no @AMDEPBACKSLASH@
6189 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6190 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1508-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6191
6192 ../../lib/lib1508-timediff.obj: ../../lib/timediff.c
6193 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1508-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1508-timediff.Tpo -c -o ../../lib/lib1508-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6194 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1508-timediff.Tpo ../../lib/$(DEPDIR)/lib1508-timediff.Po
6195 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1508-timediff.obj' libtool=no @AMDEPBACKSLASH@
6196 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6197 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1508-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6198
50876199 lib1508-first.o: first.c
50886200 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1508-first.o -MD -MP -MF $(DEPDIR)/lib1508-first.Tpo -c -o lib1508-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
50896201 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1508-first.Tpo $(DEPDIR)/lib1508-first.Po
51406252 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
51416253 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1509-lib1509.obj `if test -f 'lib1509.c'; then $(CYGPATH_W) 'lib1509.c'; else $(CYGPATH_W) '$(srcdir)/lib1509.c'; fi`
51426254
6255 ../../lib/lib1509-timediff.o: ../../lib/timediff.c
6256 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1509-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1509-timediff.Tpo -c -o ../../lib/lib1509-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6257 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1509-timediff.Tpo ../../lib/$(DEPDIR)/lib1509-timediff.Po
6258 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1509-timediff.o' libtool=no @AMDEPBACKSLASH@
6259 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6260 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1509-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6261
6262 ../../lib/lib1509-timediff.obj: ../../lib/timediff.c
6263 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1509-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1509-timediff.Tpo -c -o ../../lib/lib1509-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6264 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1509-timediff.Tpo ../../lib/$(DEPDIR)/lib1509-timediff.Po
6265 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1509-timediff.obj' libtool=no @AMDEPBACKSLASH@
6266 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6267 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1509-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6268
51436269 lib1509-first.o: first.c
51446270 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1509-first.o -MD -MP -MF $(DEPDIR)/lib1509-first.Tpo -c -o lib1509-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
51456271 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1509-first.Tpo $(DEPDIR)/lib1509-first.Po
51966322 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
51976323 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1510-lib1510.obj `if test -f 'lib1510.c'; then $(CYGPATH_W) 'lib1510.c'; else $(CYGPATH_W) '$(srcdir)/lib1510.c'; fi`
51986324
6325 ../../lib/lib1510-timediff.o: ../../lib/timediff.c
6326 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1510-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1510-timediff.Tpo -c -o ../../lib/lib1510-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6327 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1510-timediff.Tpo ../../lib/$(DEPDIR)/lib1510-timediff.Po
6328 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1510-timediff.o' libtool=no @AMDEPBACKSLASH@
6329 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6330 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1510-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6331
6332 ../../lib/lib1510-timediff.obj: ../../lib/timediff.c
6333 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1510-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1510-timediff.Tpo -c -o ../../lib/lib1510-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6334 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1510-timediff.Tpo ../../lib/$(DEPDIR)/lib1510-timediff.Po
6335 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1510-timediff.obj' libtool=no @AMDEPBACKSLASH@
6336 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6337 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1510-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6338
51996339 lib1510-first.o: first.c
52006340 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1510-first.o -MD -MP -MF $(DEPDIR)/lib1510-first.Tpo -c -o lib1510-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
52016341 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1510-first.Tpo $(DEPDIR)/lib1510-first.Po
52526392 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
52536393 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1511-lib1511.obj `if test -f 'lib1511.c'; then $(CYGPATH_W) 'lib1511.c'; else $(CYGPATH_W) '$(srcdir)/lib1511.c'; fi`
52546394
6395 ../../lib/lib1511-timediff.o: ../../lib/timediff.c
6396 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1511-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1511-timediff.Tpo -c -o ../../lib/lib1511-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6397 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1511-timediff.Tpo ../../lib/$(DEPDIR)/lib1511-timediff.Po
6398 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1511-timediff.o' libtool=no @AMDEPBACKSLASH@
6399 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6400 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1511-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6401
6402 ../../lib/lib1511-timediff.obj: ../../lib/timediff.c
6403 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1511-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1511-timediff.Tpo -c -o ../../lib/lib1511-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6404 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1511-timediff.Tpo ../../lib/$(DEPDIR)/lib1511-timediff.Po
6405 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1511-timediff.obj' libtool=no @AMDEPBACKSLASH@
6406 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6407 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1511-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6408
52556409 lib1511-first.o: first.c
52566410 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1511-first.o -MD -MP -MF $(DEPDIR)/lib1511-first.Tpo -c -o lib1511-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
52576411 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1511-first.Tpo $(DEPDIR)/lib1511-first.Po
53086462 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
53096463 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1512-lib1512.obj `if test -f 'lib1512.c'; then $(CYGPATH_W) 'lib1512.c'; else $(CYGPATH_W) '$(srcdir)/lib1512.c'; fi`
53106464
6465 ../../lib/lib1512-timediff.o: ../../lib/timediff.c
6466 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1512-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1512-timediff.Tpo -c -o ../../lib/lib1512-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6467 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1512-timediff.Tpo ../../lib/$(DEPDIR)/lib1512-timediff.Po
6468 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1512-timediff.o' libtool=no @AMDEPBACKSLASH@
6469 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6470 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1512-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6471
6472 ../../lib/lib1512-timediff.obj: ../../lib/timediff.c
6473 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1512-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1512-timediff.Tpo -c -o ../../lib/lib1512-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6474 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1512-timediff.Tpo ../../lib/$(DEPDIR)/lib1512-timediff.Po
6475 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1512-timediff.obj' libtool=no @AMDEPBACKSLASH@
6476 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6477 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1512-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6478
53116479 lib1512-first.o: first.c
53126480 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1512-first.o -MD -MP -MF $(DEPDIR)/lib1512-first.Tpo -c -o lib1512-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
53136481 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1512-first.Tpo $(DEPDIR)/lib1512-first.Po
53646532 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
53656533 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1513-lib1513.obj `if test -f 'lib1513.c'; then $(CYGPATH_W) 'lib1513.c'; else $(CYGPATH_W) '$(srcdir)/lib1513.c'; fi`
53666534
6535 ../../lib/lib1513-timediff.o: ../../lib/timediff.c
6536 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1513-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1513-timediff.Tpo -c -o ../../lib/lib1513-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6537 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1513-timediff.Tpo ../../lib/$(DEPDIR)/lib1513-timediff.Po
6538 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1513-timediff.o' libtool=no @AMDEPBACKSLASH@
6539 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6540 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1513-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6541
6542 ../../lib/lib1513-timediff.obj: ../../lib/timediff.c
6543 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1513-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1513-timediff.Tpo -c -o ../../lib/lib1513-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6544 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1513-timediff.Tpo ../../lib/$(DEPDIR)/lib1513-timediff.Po
6545 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1513-timediff.obj' libtool=no @AMDEPBACKSLASH@
6546 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6547 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1513-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6548
53676549 lib1513-first.o: first.c
53686550 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1513-first.o -MD -MP -MF $(DEPDIR)/lib1513-first.Tpo -c -o lib1513-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
53696551 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1513-first.Tpo $(DEPDIR)/lib1513-first.Po
54206602 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
54216603 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1514-lib1514.obj `if test -f 'lib1514.c'; then $(CYGPATH_W) 'lib1514.c'; else $(CYGPATH_W) '$(srcdir)/lib1514.c'; fi`
54226604
6605 ../../lib/lib1514-timediff.o: ../../lib/timediff.c
6606 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1514-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1514-timediff.Tpo -c -o ../../lib/lib1514-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6607 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1514-timediff.Tpo ../../lib/$(DEPDIR)/lib1514-timediff.Po
6608 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1514-timediff.o' libtool=no @AMDEPBACKSLASH@
6609 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6610 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1514-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6611
6612 ../../lib/lib1514-timediff.obj: ../../lib/timediff.c
6613 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1514-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1514-timediff.Tpo -c -o ../../lib/lib1514-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6614 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1514-timediff.Tpo ../../lib/$(DEPDIR)/lib1514-timediff.Po
6615 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1514-timediff.obj' libtool=no @AMDEPBACKSLASH@
6616 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6617 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1514-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6618
54236619 lib1514-first.o: first.c
54246620 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1514-first.o -MD -MP -MF $(DEPDIR)/lib1514-first.Tpo -c -o lib1514-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
54256621 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1514-first.Tpo $(DEPDIR)/lib1514-first.Po
54766672 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
54776673 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1515-lib1515.obj `if test -f 'lib1515.c'; then $(CYGPATH_W) 'lib1515.c'; else $(CYGPATH_W) '$(srcdir)/lib1515.c'; fi`
54786674
6675 ../../lib/lib1515-timediff.o: ../../lib/timediff.c
6676 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1515-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1515-timediff.Tpo -c -o ../../lib/lib1515-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6677 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1515-timediff.Tpo ../../lib/$(DEPDIR)/lib1515-timediff.Po
6678 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1515-timediff.o' libtool=no @AMDEPBACKSLASH@
6679 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6680 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1515-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6681
6682 ../../lib/lib1515-timediff.obj: ../../lib/timediff.c
6683 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1515-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1515-timediff.Tpo -c -o ../../lib/lib1515-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6684 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1515-timediff.Tpo ../../lib/$(DEPDIR)/lib1515-timediff.Po
6685 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1515-timediff.obj' libtool=no @AMDEPBACKSLASH@
6686 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6687 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1515-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6688
54796689 lib1515-first.o: first.c
54806690 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1515-first.o -MD -MP -MF $(DEPDIR)/lib1515-first.Tpo -c -o lib1515-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
54816691 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1515-first.Tpo $(DEPDIR)/lib1515-first.Po
55326742 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
55336743 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1517-lib1517.obj `if test -f 'lib1517.c'; then $(CYGPATH_W) 'lib1517.c'; else $(CYGPATH_W) '$(srcdir)/lib1517.c'; fi`
55346744
6745 ../../lib/lib1517-timediff.o: ../../lib/timediff.c
6746 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1517-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1517-timediff.Tpo -c -o ../../lib/lib1517-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6747 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1517-timediff.Tpo ../../lib/$(DEPDIR)/lib1517-timediff.Po
6748 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1517-timediff.o' libtool=no @AMDEPBACKSLASH@
6749 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6750 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1517-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6751
6752 ../../lib/lib1517-timediff.obj: ../../lib/timediff.c
6753 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1517-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1517-timediff.Tpo -c -o ../../lib/lib1517-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6754 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1517-timediff.Tpo ../../lib/$(DEPDIR)/lib1517-timediff.Po
6755 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1517-timediff.obj' libtool=no @AMDEPBACKSLASH@
6756 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6757 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1517-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6758
55356759 lib1517-first.o: first.c
55366760 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1517-first.o -MD -MP -MF $(DEPDIR)/lib1517-first.Tpo -c -o lib1517-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
55376761 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1517-first.Tpo $(DEPDIR)/lib1517-first.Po
55606784 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
55616785 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1518-lib1518.obj `if test -f 'lib1518.c'; then $(CYGPATH_W) 'lib1518.c'; else $(CYGPATH_W) '$(srcdir)/lib1518.c'; fi`
55626786
6787 ../../lib/lib1518-timediff.o: ../../lib/timediff.c
6788 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1518-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1518-timediff.Tpo -c -o ../../lib/lib1518-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6789 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1518-timediff.Tpo ../../lib/$(DEPDIR)/lib1518-timediff.Po
6790 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1518-timediff.o' libtool=no @AMDEPBACKSLASH@
6791 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6792 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1518-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6793
6794 ../../lib/lib1518-timediff.obj: ../../lib/timediff.c
6795 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1518-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1518-timediff.Tpo -c -o ../../lib/lib1518-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6796 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1518-timediff.Tpo ../../lib/$(DEPDIR)/lib1518-timediff.Po
6797 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1518-timediff.obj' libtool=no @AMDEPBACKSLASH@
6798 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6799 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1518-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6800
55636801 lib1518-first.o: first.c
55646802 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1518-first.o -MD -MP -MF $(DEPDIR)/lib1518-first.Tpo -c -o lib1518-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
55656803 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1518-first.Tpo $(DEPDIR)/lib1518-first.Po
55886826 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
55896827 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1520-lib1520.obj `if test -f 'lib1520.c'; then $(CYGPATH_W) 'lib1520.c'; else $(CYGPATH_W) '$(srcdir)/lib1520.c'; fi`
55906828
6829 ../../lib/lib1520-timediff.o: ../../lib/timediff.c
6830 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1520-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1520-timediff.Tpo -c -o ../../lib/lib1520-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6831 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1520-timediff.Tpo ../../lib/$(DEPDIR)/lib1520-timediff.Po
6832 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1520-timediff.o' libtool=no @AMDEPBACKSLASH@
6833 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6834 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1520-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6835
6836 ../../lib/lib1520-timediff.obj: ../../lib/timediff.c
6837 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1520-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1520-timediff.Tpo -c -o ../../lib/lib1520-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6838 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1520-timediff.Tpo ../../lib/$(DEPDIR)/lib1520-timediff.Po
6839 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1520-timediff.obj' libtool=no @AMDEPBACKSLASH@
6840 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6841 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1520-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6842
55916843 lib1520-first.o: first.c
55926844 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1520-first.o -MD -MP -MF $(DEPDIR)/lib1520-first.Tpo -c -o lib1520-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
55936845 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1520-first.Tpo $(DEPDIR)/lib1520-first.Po
56166868 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
56176869 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1521-lib1521.obj `if test -f 'lib1521.c'; then $(CYGPATH_W) 'lib1521.c'; else $(CYGPATH_W) '$(srcdir)/lib1521.c'; fi`
56186870
6871 ../../lib/lib1521-timediff.o: ../../lib/timediff.c
6872 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1521-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1521-timediff.Tpo -c -o ../../lib/lib1521-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6873 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1521-timediff.Tpo ../../lib/$(DEPDIR)/lib1521-timediff.Po
6874 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1521-timediff.o' libtool=no @AMDEPBACKSLASH@
6875 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6876 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1521-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6877
6878 ../../lib/lib1521-timediff.obj: ../../lib/timediff.c
6879 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1521-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1521-timediff.Tpo -c -o ../../lib/lib1521-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6880 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1521-timediff.Tpo ../../lib/$(DEPDIR)/lib1521-timediff.Po
6881 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1521-timediff.obj' libtool=no @AMDEPBACKSLASH@
6882 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6883 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1521-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6884
56196885 lib1521-first.o: first.c
56206886 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1521-first.o -MD -MP -MF $(DEPDIR)/lib1521-first.Tpo -c -o lib1521-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
56216887 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1521-first.Tpo $(DEPDIR)/lib1521-first.Po
56446910 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
56456911 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1522-lib1522.obj `if test -f 'lib1522.c'; then $(CYGPATH_W) 'lib1522.c'; else $(CYGPATH_W) '$(srcdir)/lib1522.c'; fi`
56466912
6913 ../../lib/lib1522-timediff.o: ../../lib/timediff.c
6914 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1522-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1522-timediff.Tpo -c -o ../../lib/lib1522-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6915 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1522-timediff.Tpo ../../lib/$(DEPDIR)/lib1522-timediff.Po
6916 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1522-timediff.o' libtool=no @AMDEPBACKSLASH@
6917 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6918 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1522-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6919
6920 ../../lib/lib1522-timediff.obj: ../../lib/timediff.c
6921 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1522-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1522-timediff.Tpo -c -o ../../lib/lib1522-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6922 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1522-timediff.Tpo ../../lib/$(DEPDIR)/lib1522-timediff.Po
6923 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1522-timediff.obj' libtool=no @AMDEPBACKSLASH@
6924 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6925 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1522-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6926
56476927 lib1522-first.o: first.c
56486928 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1522_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1522-first.o -MD -MP -MF $(DEPDIR)/lib1522-first.Tpo -c -o lib1522-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
56496929 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1522-first.Tpo $(DEPDIR)/lib1522-first.Po
57006980 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
57016981 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1523-lib1523.obj `if test -f 'lib1523.c'; then $(CYGPATH_W) 'lib1523.c'; else $(CYGPATH_W) '$(srcdir)/lib1523.c'; fi`
57026982
6983 ../../lib/lib1523-timediff.o: ../../lib/timediff.c
6984 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1523-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1523-timediff.Tpo -c -o ../../lib/lib1523-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6985 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1523-timediff.Tpo ../../lib/$(DEPDIR)/lib1523-timediff.Po
6986 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1523-timediff.o' libtool=no @AMDEPBACKSLASH@
6987 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6988 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1523-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
6989
6990 ../../lib/lib1523-timediff.obj: ../../lib/timediff.c
6991 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1523-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1523-timediff.Tpo -c -o ../../lib/lib1523-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6992 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1523-timediff.Tpo ../../lib/$(DEPDIR)/lib1523-timediff.Po
6993 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1523-timediff.obj' libtool=no @AMDEPBACKSLASH@
6994 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6995 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1523-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
6996
57036997 lib1523-first.o: first.c
57046998 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1523-first.o -MD -MP -MF $(DEPDIR)/lib1523-first.Tpo -c -o lib1523-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
57056999 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1523-first.Tpo $(DEPDIR)/lib1523-first.Po
57287022 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
57297023 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1525-lib1525.obj `if test -f 'lib1525.c'; then $(CYGPATH_W) 'lib1525.c'; else $(CYGPATH_W) '$(srcdir)/lib1525.c'; fi`
57307024
7025 ../../lib/lib1525-timediff.o: ../../lib/timediff.c
7026 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1525-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1525-timediff.Tpo -c -o ../../lib/lib1525-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7027 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1525-timediff.Tpo ../../lib/$(DEPDIR)/lib1525-timediff.Po
7028 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1525-timediff.o' libtool=no @AMDEPBACKSLASH@
7029 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7030 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1525-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7031
7032 ../../lib/lib1525-timediff.obj: ../../lib/timediff.c
7033 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1525-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1525-timediff.Tpo -c -o ../../lib/lib1525-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7034 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1525-timediff.Tpo ../../lib/$(DEPDIR)/lib1525-timediff.Po
7035 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1525-timediff.obj' libtool=no @AMDEPBACKSLASH@
7036 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7037 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1525-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7038
57317039 lib1525-first.o: first.c
57327040 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1525-first.o -MD -MP -MF $(DEPDIR)/lib1525-first.Tpo -c -o lib1525-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
57337041 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1525-first.Tpo $(DEPDIR)/lib1525-first.Po
57847092 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
57857093 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1526-lib1526.obj `if test -f 'lib1526.c'; then $(CYGPATH_W) 'lib1526.c'; else $(CYGPATH_W) '$(srcdir)/lib1526.c'; fi`
57867094
7095 ../../lib/lib1526-timediff.o: ../../lib/timediff.c
7096 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1526-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1526-timediff.Tpo -c -o ../../lib/lib1526-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7097 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1526-timediff.Tpo ../../lib/$(DEPDIR)/lib1526-timediff.Po
7098 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1526-timediff.o' libtool=no @AMDEPBACKSLASH@
7099 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7100 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1526-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7101
7102 ../../lib/lib1526-timediff.obj: ../../lib/timediff.c
7103 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1526-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1526-timediff.Tpo -c -o ../../lib/lib1526-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7104 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1526-timediff.Tpo ../../lib/$(DEPDIR)/lib1526-timediff.Po
7105 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1526-timediff.obj' libtool=no @AMDEPBACKSLASH@
7106 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7107 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1526-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7108
57877109 lib1526-first.o: first.c
57887110 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1526-first.o -MD -MP -MF $(DEPDIR)/lib1526-first.Tpo -c -o lib1526-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
57897111 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1526-first.Tpo $(DEPDIR)/lib1526-first.Po
58407162 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
58417163 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1527-lib1527.obj `if test -f 'lib1527.c'; then $(CYGPATH_W) 'lib1527.c'; else $(CYGPATH_W) '$(srcdir)/lib1527.c'; fi`
58427164
7165 ../../lib/lib1527-timediff.o: ../../lib/timediff.c
7166 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1527-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1527-timediff.Tpo -c -o ../../lib/lib1527-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7167 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1527-timediff.Tpo ../../lib/$(DEPDIR)/lib1527-timediff.Po
7168 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1527-timediff.o' libtool=no @AMDEPBACKSLASH@
7169 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7170 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1527-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7171
7172 ../../lib/lib1527-timediff.obj: ../../lib/timediff.c
7173 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1527-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1527-timediff.Tpo -c -o ../../lib/lib1527-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7174 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1527-timediff.Tpo ../../lib/$(DEPDIR)/lib1527-timediff.Po
7175 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1527-timediff.obj' libtool=no @AMDEPBACKSLASH@
7176 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7177 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1527-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7178
58437179 lib1527-first.o: first.c
58447180 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1527-first.o -MD -MP -MF $(DEPDIR)/lib1527-first.Tpo -c -o lib1527-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
58457181 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1527-first.Tpo $(DEPDIR)/lib1527-first.Po
58967232 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
58977233 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1528-lib1528.obj `if test -f 'lib1528.c'; then $(CYGPATH_W) 'lib1528.c'; else $(CYGPATH_W) '$(srcdir)/lib1528.c'; fi`
58987234
7235 ../../lib/lib1528-timediff.o: ../../lib/timediff.c
7236 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1528-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1528-timediff.Tpo -c -o ../../lib/lib1528-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7237 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1528-timediff.Tpo ../../lib/$(DEPDIR)/lib1528-timediff.Po
7238 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1528-timediff.o' libtool=no @AMDEPBACKSLASH@
7239 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7240 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1528-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7241
7242 ../../lib/lib1528-timediff.obj: ../../lib/timediff.c
7243 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1528-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1528-timediff.Tpo -c -o ../../lib/lib1528-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7244 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1528-timediff.Tpo ../../lib/$(DEPDIR)/lib1528-timediff.Po
7245 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1528-timediff.obj' libtool=no @AMDEPBACKSLASH@
7246 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7247 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1528-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7248
58997249 lib1528-first.o: first.c
59007250 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1528_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1528-first.o -MD -MP -MF $(DEPDIR)/lib1528-first.Tpo -c -o lib1528-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
59017251 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1528-first.Tpo $(DEPDIR)/lib1528-first.Po
59527302 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
59537303 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1529-lib1529.obj `if test -f 'lib1529.c'; then $(CYGPATH_W) 'lib1529.c'; else $(CYGPATH_W) '$(srcdir)/lib1529.c'; fi`
59547304
7305 ../../lib/lib1529-timediff.o: ../../lib/timediff.c
7306 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1529-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1529-timediff.Tpo -c -o ../../lib/lib1529-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7307 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1529-timediff.Tpo ../../lib/$(DEPDIR)/lib1529-timediff.Po
7308 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1529-timediff.o' libtool=no @AMDEPBACKSLASH@
7309 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7310 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1529-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7311
7312 ../../lib/lib1529-timediff.obj: ../../lib/timediff.c
7313 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1529-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1529-timediff.Tpo -c -o ../../lib/lib1529-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7314 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1529-timediff.Tpo ../../lib/$(DEPDIR)/lib1529-timediff.Po
7315 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1529-timediff.obj' libtool=no @AMDEPBACKSLASH@
7316 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7317 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1529-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7318
59557319 lib1529-first.o: first.c
59567320 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1529-first.o -MD -MP -MF $(DEPDIR)/lib1529-first.Tpo -c -o lib1529-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
59577321 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1529-first.Tpo $(DEPDIR)/lib1529-first.Po
60087372 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
60097373 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1530-lib1530.obj `if test -f 'lib1530.c'; then $(CYGPATH_W) 'lib1530.c'; else $(CYGPATH_W) '$(srcdir)/lib1530.c'; fi`
60107374
7375 ../../lib/lib1530-timediff.o: ../../lib/timediff.c
7376 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1530-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1530-timediff.Tpo -c -o ../../lib/lib1530-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7377 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1530-timediff.Tpo ../../lib/$(DEPDIR)/lib1530-timediff.Po
7378 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1530-timediff.o' libtool=no @AMDEPBACKSLASH@
7379 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7380 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1530-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7381
7382 ../../lib/lib1530-timediff.obj: ../../lib/timediff.c
7383 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1530-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1530-timediff.Tpo -c -o ../../lib/lib1530-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7384 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1530-timediff.Tpo ../../lib/$(DEPDIR)/lib1530-timediff.Po
7385 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1530-timediff.obj' libtool=no @AMDEPBACKSLASH@
7386 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7387 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1530-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7388
60117389 lib1530-first.o: first.c
60127390 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1530-first.o -MD -MP -MF $(DEPDIR)/lib1530-first.Tpo -c -o lib1530-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
60137391 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1530-first.Tpo $(DEPDIR)/lib1530-first.Po
60647442 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
60657443 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1531-lib1531.obj `if test -f 'lib1531.c'; then $(CYGPATH_W) 'lib1531.c'; else $(CYGPATH_W) '$(srcdir)/lib1531.c'; fi`
60667444
7445 ../../lib/lib1531-timediff.o: ../../lib/timediff.c
7446 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1531-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1531-timediff.Tpo -c -o ../../lib/lib1531-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7447 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1531-timediff.Tpo ../../lib/$(DEPDIR)/lib1531-timediff.Po
7448 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1531-timediff.o' libtool=no @AMDEPBACKSLASH@
7449 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7450 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1531-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7451
7452 ../../lib/lib1531-timediff.obj: ../../lib/timediff.c
7453 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1531-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1531-timediff.Tpo -c -o ../../lib/lib1531-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7454 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1531-timediff.Tpo ../../lib/$(DEPDIR)/lib1531-timediff.Po
7455 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1531-timediff.obj' libtool=no @AMDEPBACKSLASH@
7456 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7457 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1531-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7458
60677459 lib1531-first.o: first.c
60687460 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1531_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1531-first.o -MD -MP -MF $(DEPDIR)/lib1531-first.Tpo -c -o lib1531-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
60697461 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1531-first.Tpo $(DEPDIR)/lib1531-first.Po
61207512 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
61217513 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1532-lib1532.obj `if test -f 'lib1532.c'; then $(CYGPATH_W) 'lib1532.c'; else $(CYGPATH_W) '$(srcdir)/lib1532.c'; fi`
61227514
7515 ../../lib/lib1532-timediff.o: ../../lib/timediff.c
7516 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1532-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1532-timediff.Tpo -c -o ../../lib/lib1532-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7517 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1532-timediff.Tpo ../../lib/$(DEPDIR)/lib1532-timediff.Po
7518 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1532-timediff.o' libtool=no @AMDEPBACKSLASH@
7519 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7520 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1532-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7521
7522 ../../lib/lib1532-timediff.obj: ../../lib/timediff.c
7523 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1532-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1532-timediff.Tpo -c -o ../../lib/lib1532-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7524 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1532-timediff.Tpo ../../lib/$(DEPDIR)/lib1532-timediff.Po
7525 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1532-timediff.obj' libtool=no @AMDEPBACKSLASH@
7526 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7527 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1532-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7528
61237529 lib1532-first.o: first.c
61247530 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1532-first.o -MD -MP -MF $(DEPDIR)/lib1532-first.Tpo -c -o lib1532-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
61257531 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1532-first.Tpo $(DEPDIR)/lib1532-first.Po
61767582 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
61777583 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1533-lib1533.obj `if test -f 'lib1533.c'; then $(CYGPATH_W) 'lib1533.c'; else $(CYGPATH_W) '$(srcdir)/lib1533.c'; fi`
61787584
7585 ../../lib/lib1533-timediff.o: ../../lib/timediff.c
7586 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1533-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1533-timediff.Tpo -c -o ../../lib/lib1533-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7587 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1533-timediff.Tpo ../../lib/$(DEPDIR)/lib1533-timediff.Po
7588 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1533-timediff.o' libtool=no @AMDEPBACKSLASH@
7589 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7590 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1533-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7591
7592 ../../lib/lib1533-timediff.obj: ../../lib/timediff.c
7593 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1533-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1533-timediff.Tpo -c -o ../../lib/lib1533-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7594 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1533-timediff.Tpo ../../lib/$(DEPDIR)/lib1533-timediff.Po
7595 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1533-timediff.obj' libtool=no @AMDEPBACKSLASH@
7596 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7597 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1533-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7598
61797599 lib1533-first.o: first.c
61807600 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1533-first.o -MD -MP -MF $(DEPDIR)/lib1533-first.Tpo -c -o lib1533-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
61817601 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1533-first.Tpo $(DEPDIR)/lib1533-first.Po
62327652 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
62337653 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1534-lib1534.obj `if test -f 'lib1534.c'; then $(CYGPATH_W) 'lib1534.c'; else $(CYGPATH_W) '$(srcdir)/lib1534.c'; fi`
62347654
7655 ../../lib/lib1534-timediff.o: ../../lib/timediff.c
7656 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1534-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1534-timediff.Tpo -c -o ../../lib/lib1534-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7657 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1534-timediff.Tpo ../../lib/$(DEPDIR)/lib1534-timediff.Po
7658 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1534-timediff.o' libtool=no @AMDEPBACKSLASH@
7659 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7660 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1534-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7661
7662 ../../lib/lib1534-timediff.obj: ../../lib/timediff.c
7663 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1534-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1534-timediff.Tpo -c -o ../../lib/lib1534-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7664 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1534-timediff.Tpo ../../lib/$(DEPDIR)/lib1534-timediff.Po
7665 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1534-timediff.obj' libtool=no @AMDEPBACKSLASH@
7666 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7667 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1534-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7668
62357669 lib1534-first.o: first.c
62367670 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1534_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1534-first.o -MD -MP -MF $(DEPDIR)/lib1534-first.Tpo -c -o lib1534-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
62377671 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1534-first.Tpo $(DEPDIR)/lib1534-first.Po
62887722 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
62897723 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1535-lib1535.obj `if test -f 'lib1535.c'; then $(CYGPATH_W) 'lib1535.c'; else $(CYGPATH_W) '$(srcdir)/lib1535.c'; fi`
62907724
7725 ../../lib/lib1535-timediff.o: ../../lib/timediff.c
7726 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1535-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1535-timediff.Tpo -c -o ../../lib/lib1535-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7727 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1535-timediff.Tpo ../../lib/$(DEPDIR)/lib1535-timediff.Po
7728 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1535-timediff.o' libtool=no @AMDEPBACKSLASH@
7729 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7730 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1535-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7731
7732 ../../lib/lib1535-timediff.obj: ../../lib/timediff.c
7733 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1535-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1535-timediff.Tpo -c -o ../../lib/lib1535-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7734 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1535-timediff.Tpo ../../lib/$(DEPDIR)/lib1535-timediff.Po
7735 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1535-timediff.obj' libtool=no @AMDEPBACKSLASH@
7736 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7737 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1535-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7738
62917739 lib1535-first.o: first.c
62927740 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1535_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1535-first.o -MD -MP -MF $(DEPDIR)/lib1535-first.Tpo -c -o lib1535-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
62937741 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1535-first.Tpo $(DEPDIR)/lib1535-first.Po
63447792 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
63457793 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1536-lib1536.obj `if test -f 'lib1536.c'; then $(CYGPATH_W) 'lib1536.c'; else $(CYGPATH_W) '$(srcdir)/lib1536.c'; fi`
63467794
7795 ../../lib/lib1536-timediff.o: ../../lib/timediff.c
7796 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1536-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1536-timediff.Tpo -c -o ../../lib/lib1536-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7797 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1536-timediff.Tpo ../../lib/$(DEPDIR)/lib1536-timediff.Po
7798 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1536-timediff.o' libtool=no @AMDEPBACKSLASH@
7799 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7800 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1536-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7801
7802 ../../lib/lib1536-timediff.obj: ../../lib/timediff.c
7803 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1536-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1536-timediff.Tpo -c -o ../../lib/lib1536-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7804 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1536-timediff.Tpo ../../lib/$(DEPDIR)/lib1536-timediff.Po
7805 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1536-timediff.obj' libtool=no @AMDEPBACKSLASH@
7806 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7807 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1536-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7808
63477809 lib1536-first.o: first.c
63487810 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1536_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1536-first.o -MD -MP -MF $(DEPDIR)/lib1536-first.Tpo -c -o lib1536-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
63497811 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1536-first.Tpo $(DEPDIR)/lib1536-first.Po
64007862 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
64017863 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1537-lib1537.obj `if test -f 'lib1537.c'; then $(CYGPATH_W) 'lib1537.c'; else $(CYGPATH_W) '$(srcdir)/lib1537.c'; fi`
64027864
7865 ../../lib/lib1537-timediff.o: ../../lib/timediff.c
7866 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1537-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1537-timediff.Tpo -c -o ../../lib/lib1537-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7867 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1537-timediff.Tpo ../../lib/$(DEPDIR)/lib1537-timediff.Po
7868 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1537-timediff.o' libtool=no @AMDEPBACKSLASH@
7869 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7870 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1537-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7871
7872 ../../lib/lib1537-timediff.obj: ../../lib/timediff.c
7873 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1537-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1537-timediff.Tpo -c -o ../../lib/lib1537-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7874 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1537-timediff.Tpo ../../lib/$(DEPDIR)/lib1537-timediff.Po
7875 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1537-timediff.obj' libtool=no @AMDEPBACKSLASH@
7876 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7877 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1537-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7878
64037879 lib1537-first.o: first.c
64047880 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1537-first.o -MD -MP -MF $(DEPDIR)/lib1537-first.Tpo -c -o lib1537-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
64057881 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1537-first.Tpo $(DEPDIR)/lib1537-first.Po
64567932 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
64577933 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1538-lib1538.obj `if test -f 'lib1538.c'; then $(CYGPATH_W) 'lib1538.c'; else $(CYGPATH_W) '$(srcdir)/lib1538.c'; fi`
64587934
7935 ../../lib/lib1538-timediff.o: ../../lib/timediff.c
7936 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1538-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1538-timediff.Tpo -c -o ../../lib/lib1538-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7937 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1538-timediff.Tpo ../../lib/$(DEPDIR)/lib1538-timediff.Po
7938 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1538-timediff.o' libtool=no @AMDEPBACKSLASH@
7939 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7940 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1538-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
7941
7942 ../../lib/lib1538-timediff.obj: ../../lib/timediff.c
7943 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1538-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1538-timediff.Tpo -c -o ../../lib/lib1538-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7944 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1538-timediff.Tpo ../../lib/$(DEPDIR)/lib1538-timediff.Po
7945 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1538-timediff.obj' libtool=no @AMDEPBACKSLASH@
7946 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
7947 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1538-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
7948
64597949 lib1538-first.o: first.c
64607950 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1538_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1538-first.o -MD -MP -MF $(DEPDIR)/lib1538-first.Tpo -c -o lib1538-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
64617951 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1538-first.Tpo $(DEPDIR)/lib1538-first.Po
65128002 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
65138003 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1539-lib1514.obj `if test -f 'lib1514.c'; then $(CYGPATH_W) 'lib1514.c'; else $(CYGPATH_W) '$(srcdir)/lib1514.c'; fi`
65148004
8005 ../../lib/lib1539-timediff.o: ../../lib/timediff.c
8006 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1539-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1539-timediff.Tpo -c -o ../../lib/lib1539-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8007 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1539-timediff.Tpo ../../lib/$(DEPDIR)/lib1539-timediff.Po
8008 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1539-timediff.o' libtool=no @AMDEPBACKSLASH@
8009 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8010 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1539-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8011
8012 ../../lib/lib1539-timediff.obj: ../../lib/timediff.c
8013 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1539-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1539-timediff.Tpo -c -o ../../lib/lib1539-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8014 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1539-timediff.Tpo ../../lib/$(DEPDIR)/lib1539-timediff.Po
8015 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1539-timediff.obj' libtool=no @AMDEPBACKSLASH@
8016 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8017 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1539-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8018
65158019 lib1539-first.o: first.c
65168020 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1539-first.o -MD -MP -MF $(DEPDIR)/lib1539-first.Tpo -c -o lib1539-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
65178021 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1539-first.Tpo $(DEPDIR)/lib1539-first.Po
65688072 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
65698073 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1540-lib1540.obj `if test -f 'lib1540.c'; then $(CYGPATH_W) 'lib1540.c'; else $(CYGPATH_W) '$(srcdir)/lib1540.c'; fi`
65708074
8075 ../../lib/lib1540-timediff.o: ../../lib/timediff.c
8076 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1540-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1540-timediff.Tpo -c -o ../../lib/lib1540-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8077 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1540-timediff.Tpo ../../lib/$(DEPDIR)/lib1540-timediff.Po
8078 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1540-timediff.o' libtool=no @AMDEPBACKSLASH@
8079 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8080 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1540-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8081
8082 ../../lib/lib1540-timediff.obj: ../../lib/timediff.c
8083 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1540-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1540-timediff.Tpo -c -o ../../lib/lib1540-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8084 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1540-timediff.Tpo ../../lib/$(DEPDIR)/lib1540-timediff.Po
8085 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1540-timediff.obj' libtool=no @AMDEPBACKSLASH@
8086 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8087 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1540-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8088
65718089 lib1540-first.o: first.c
65728090 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1540-first.o -MD -MP -MF $(DEPDIR)/lib1540-first.Tpo -c -o lib1540-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
65738091 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1540-first.Tpo $(DEPDIR)/lib1540-first.Po
66248142 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
66258143 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1542-lib1542.obj `if test -f 'lib1542.c'; then $(CYGPATH_W) 'lib1542.c'; else $(CYGPATH_W) '$(srcdir)/lib1542.c'; fi`
66268144
8145 ../../lib/lib1542-timediff.o: ../../lib/timediff.c
8146 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1542-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1542-timediff.Tpo -c -o ../../lib/lib1542-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8147 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1542-timediff.Tpo ../../lib/$(DEPDIR)/lib1542-timediff.Po
8148 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1542-timediff.o' libtool=no @AMDEPBACKSLASH@
8149 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8150 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1542-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8151
8152 ../../lib/lib1542-timediff.obj: ../../lib/timediff.c
8153 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1542-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1542-timediff.Tpo -c -o ../../lib/lib1542-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8154 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1542-timediff.Tpo ../../lib/$(DEPDIR)/lib1542-timediff.Po
8155 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1542-timediff.obj' libtool=no @AMDEPBACKSLASH@
8156 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8157 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1542-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8158
66278159 lib1542-first.o: first.c
66288160 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1542-first.o -MD -MP -MF $(DEPDIR)/lib1542-first.Tpo -c -o lib1542-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
66298161 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1542-first.Tpo $(DEPDIR)/lib1542-first.Po
66948226 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
66958227 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1550-lib1550.obj `if test -f 'lib1550.c'; then $(CYGPATH_W) 'lib1550.c'; else $(CYGPATH_W) '$(srcdir)/lib1550.c'; fi`
66968228
8229 ../../lib/lib1550-timediff.o: ../../lib/timediff.c
8230 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1550-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1550-timediff.Tpo -c -o ../../lib/lib1550-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8231 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1550-timediff.Tpo ../../lib/$(DEPDIR)/lib1550-timediff.Po
8232 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1550-timediff.o' libtool=no @AMDEPBACKSLASH@
8233 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8234 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1550-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8235
8236 ../../lib/lib1550-timediff.obj: ../../lib/timediff.c
8237 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1550-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1550-timediff.Tpo -c -o ../../lib/lib1550-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8238 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1550-timediff.Tpo ../../lib/$(DEPDIR)/lib1550-timediff.Po
8239 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1550-timediff.obj' libtool=no @AMDEPBACKSLASH@
8240 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8241 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1550-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8242
66978243 lib1550-first.o: first.c
66988244 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1550_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1550-first.o -MD -MP -MF $(DEPDIR)/lib1550-first.Tpo -c -o lib1550-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
66998245 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1550-first.Tpo $(DEPDIR)/lib1550-first.Po
67228268 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
67238269 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1551-lib1551.obj `if test -f 'lib1551.c'; then $(CYGPATH_W) 'lib1551.c'; else $(CYGPATH_W) '$(srcdir)/lib1551.c'; fi`
67248270
8271 ../../lib/lib1551-timediff.o: ../../lib/timediff.c
8272 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1551-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1551-timediff.Tpo -c -o ../../lib/lib1551-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8273 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1551-timediff.Tpo ../../lib/$(DEPDIR)/lib1551-timediff.Po
8274 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1551-timediff.o' libtool=no @AMDEPBACKSLASH@
8275 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8276 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1551-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8277
8278 ../../lib/lib1551-timediff.obj: ../../lib/timediff.c
8279 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1551-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1551-timediff.Tpo -c -o ../../lib/lib1551-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8280 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1551-timediff.Tpo ../../lib/$(DEPDIR)/lib1551-timediff.Po
8281 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1551-timediff.obj' libtool=no @AMDEPBACKSLASH@
8282 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8283 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1551-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8284
67258285 lib1551-first.o: first.c
67268286 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1551_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1551-first.o -MD -MP -MF $(DEPDIR)/lib1551-first.Tpo -c -o lib1551-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
67278287 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1551-first.Tpo $(DEPDIR)/lib1551-first.Po
67508310 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
67518311 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1552-lib1552.obj `if test -f 'lib1552.c'; then $(CYGPATH_W) 'lib1552.c'; else $(CYGPATH_W) '$(srcdir)/lib1552.c'; fi`
67528312
8313 ../../lib/lib1552-timediff.o: ../../lib/timediff.c
8314 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1552-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1552-timediff.Tpo -c -o ../../lib/lib1552-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8315 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1552-timediff.Tpo ../../lib/$(DEPDIR)/lib1552-timediff.Po
8316 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1552-timediff.o' libtool=no @AMDEPBACKSLASH@
8317 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8318 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1552-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8319
8320 ../../lib/lib1552-timediff.obj: ../../lib/timediff.c
8321 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1552-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1552-timediff.Tpo -c -o ../../lib/lib1552-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8322 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1552-timediff.Tpo ../../lib/$(DEPDIR)/lib1552-timediff.Po
8323 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1552-timediff.obj' libtool=no @AMDEPBACKSLASH@
8324 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8325 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1552-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8326
67538327 lib1552-first.o: first.c
67548328 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1552-first.o -MD -MP -MF $(DEPDIR)/lib1552-first.Tpo -c -o lib1552-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
67558329 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1552-first.Tpo $(DEPDIR)/lib1552-first.Po
67928366 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
67938367 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1553-lib1553.obj `if test -f 'lib1553.c'; then $(CYGPATH_W) 'lib1553.c'; else $(CYGPATH_W) '$(srcdir)/lib1553.c'; fi`
67948368
8369 ../../lib/lib1553-timediff.o: ../../lib/timediff.c
8370 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1553-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1553-timediff.Tpo -c -o ../../lib/lib1553-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8371 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1553-timediff.Tpo ../../lib/$(DEPDIR)/lib1553-timediff.Po
8372 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1553-timediff.o' libtool=no @AMDEPBACKSLASH@
8373 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8374 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1553-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8375
8376 ../../lib/lib1553-timediff.obj: ../../lib/timediff.c
8377 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1553-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1553-timediff.Tpo -c -o ../../lib/lib1553-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8378 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1553-timediff.Tpo ../../lib/$(DEPDIR)/lib1553-timediff.Po
8379 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1553-timediff.obj' libtool=no @AMDEPBACKSLASH@
8380 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8381 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1553-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8382
67958383 lib1553-first.o: first.c
67968384 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1553-first.o -MD -MP -MF $(DEPDIR)/lib1553-first.Tpo -c -o lib1553-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
67978385 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1553-first.Tpo $(DEPDIR)/lib1553-first.Po
68348422 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
68358423 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1554-lib1554.obj `if test -f 'lib1554.c'; then $(CYGPATH_W) 'lib1554.c'; else $(CYGPATH_W) '$(srcdir)/lib1554.c'; fi`
68368424
8425 ../../lib/lib1554-timediff.o: ../../lib/timediff.c
8426 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1554-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1554-timediff.Tpo -c -o ../../lib/lib1554-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8427 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1554-timediff.Tpo ../../lib/$(DEPDIR)/lib1554-timediff.Po
8428 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1554-timediff.o' libtool=no @AMDEPBACKSLASH@
8429 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8430 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1554-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8431
8432 ../../lib/lib1554-timediff.obj: ../../lib/timediff.c
8433 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1554-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1554-timediff.Tpo -c -o ../../lib/lib1554-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8434 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1554-timediff.Tpo ../../lib/$(DEPDIR)/lib1554-timediff.Po
8435 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1554-timediff.obj' libtool=no @AMDEPBACKSLASH@
8436 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8437 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1554-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8438
68378439 lib1554-first.o: first.c
68388440 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1554-first.o -MD -MP -MF $(DEPDIR)/lib1554-first.Tpo -c -o lib1554-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
68398441 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1554-first.Tpo $(DEPDIR)/lib1554-first.Po
68628464 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
68638465 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1555-lib1555.obj `if test -f 'lib1555.c'; then $(CYGPATH_W) 'lib1555.c'; else $(CYGPATH_W) '$(srcdir)/lib1555.c'; fi`
68648466
8467 ../../lib/lib1555-timediff.o: ../../lib/timediff.c
8468 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1555-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1555-timediff.Tpo -c -o ../../lib/lib1555-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8469 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1555-timediff.Tpo ../../lib/$(DEPDIR)/lib1555-timediff.Po
8470 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1555-timediff.o' libtool=no @AMDEPBACKSLASH@
8471 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8472 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1555-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8473
8474 ../../lib/lib1555-timediff.obj: ../../lib/timediff.c
8475 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1555-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1555-timediff.Tpo -c -o ../../lib/lib1555-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8476 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1555-timediff.Tpo ../../lib/$(DEPDIR)/lib1555-timediff.Po
8477 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1555-timediff.obj' libtool=no @AMDEPBACKSLASH@
8478 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8479 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1555-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8480
68658481 lib1555-first.o: first.c
68668482 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1555-first.o -MD -MP -MF $(DEPDIR)/lib1555-first.Tpo -c -o lib1555-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
68678483 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1555-first.Tpo $(DEPDIR)/lib1555-first.Po
69188534 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
69198535 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1556-lib1556.obj `if test -f 'lib1556.c'; then $(CYGPATH_W) 'lib1556.c'; else $(CYGPATH_W) '$(srcdir)/lib1556.c'; fi`
69208536
8537 ../../lib/lib1556-timediff.o: ../../lib/timediff.c
8538 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1556-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1556-timediff.Tpo -c -o ../../lib/lib1556-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8539 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1556-timediff.Tpo ../../lib/$(DEPDIR)/lib1556-timediff.Po
8540 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1556-timediff.o' libtool=no @AMDEPBACKSLASH@
8541 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8542 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1556-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8543
8544 ../../lib/lib1556-timediff.obj: ../../lib/timediff.c
8545 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1556-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1556-timediff.Tpo -c -o ../../lib/lib1556-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8546 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1556-timediff.Tpo ../../lib/$(DEPDIR)/lib1556-timediff.Po
8547 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1556-timediff.obj' libtool=no @AMDEPBACKSLASH@
8548 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8549 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1556-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8550
69218551 lib1556-first.o: first.c
69228552 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1556-first.o -MD -MP -MF $(DEPDIR)/lib1556-first.Tpo -c -o lib1556-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
69238553 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1556-first.Tpo $(DEPDIR)/lib1556-first.Po
69748604 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
69758605 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1557-lib1557.obj `if test -f 'lib1557.c'; then $(CYGPATH_W) 'lib1557.c'; else $(CYGPATH_W) '$(srcdir)/lib1557.c'; fi`
69768606
8607 ../../lib/lib1557-timediff.o: ../../lib/timediff.c
8608 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1557-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1557-timediff.Tpo -c -o ../../lib/lib1557-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8609 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1557-timediff.Tpo ../../lib/$(DEPDIR)/lib1557-timediff.Po
8610 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1557-timediff.o' libtool=no @AMDEPBACKSLASH@
8611 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8612 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1557-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8613
8614 ../../lib/lib1557-timediff.obj: ../../lib/timediff.c
8615 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1557-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1557-timediff.Tpo -c -o ../../lib/lib1557-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8616 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1557-timediff.Tpo ../../lib/$(DEPDIR)/lib1557-timediff.Po
8617 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1557-timediff.obj' libtool=no @AMDEPBACKSLASH@
8618 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8619 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1557-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8620
69778621 lib1557-first.o: first.c
69788622 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1557-first.o -MD -MP -MF $(DEPDIR)/lib1557-first.Tpo -c -o lib1557-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
69798623 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1557-first.Tpo $(DEPDIR)/lib1557-first.Po
70308674 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
70318675 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1564-lib1564.obj `if test -f 'lib1564.c'; then $(CYGPATH_W) 'lib1564.c'; else $(CYGPATH_W) '$(srcdir)/lib1564.c'; fi`
70328676
8677 ../../lib/lib1564-timediff.o: ../../lib/timediff.c
8678 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1564-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1564-timediff.Tpo -c -o ../../lib/lib1564-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8679 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1564-timediff.Tpo ../../lib/$(DEPDIR)/lib1564-timediff.Po
8680 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1564-timediff.o' libtool=no @AMDEPBACKSLASH@
8681 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8682 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1564-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8683
8684 ../../lib/lib1564-timediff.obj: ../../lib/timediff.c
8685 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1564-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1564-timediff.Tpo -c -o ../../lib/lib1564-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8686 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1564-timediff.Tpo ../../lib/$(DEPDIR)/lib1564-timediff.Po
8687 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1564-timediff.obj' libtool=no @AMDEPBACKSLASH@
8688 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8689 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1564-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8690
70338691 lib1564-first.o: first.c
70348692 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1564-first.o -MD -MP -MF $(DEPDIR)/lib1564-first.Tpo -c -o lib1564-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
70358693 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1564-first.Tpo $(DEPDIR)/lib1564-first.Po
70868744 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
70878745 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1565-lib1565.obj `if test -f 'lib1565.c'; then $(CYGPATH_W) 'lib1565.c'; else $(CYGPATH_W) '$(srcdir)/lib1565.c'; fi`
70888746
8747 ../../lib/lib1565-timediff.o: ../../lib/timediff.c
8748 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1565-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1565-timediff.Tpo -c -o ../../lib/lib1565-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8749 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1565-timediff.Tpo ../../lib/$(DEPDIR)/lib1565-timediff.Po
8750 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1565-timediff.o' libtool=no @AMDEPBACKSLASH@
8751 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8752 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1565-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8753
8754 ../../lib/lib1565-timediff.obj: ../../lib/timediff.c
8755 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1565-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1565-timediff.Tpo -c -o ../../lib/lib1565-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8756 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1565-timediff.Tpo ../../lib/$(DEPDIR)/lib1565-timediff.Po
8757 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1565-timediff.obj' libtool=no @AMDEPBACKSLASH@
8758 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8759 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1565-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8760
70898761 lib1565-first.o: first.c
70908762 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1565-first.o -MD -MP -MF $(DEPDIR)/lib1565-first.Tpo -c -o lib1565-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
70918763 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1565-first.Tpo $(DEPDIR)/lib1565-first.Po
71428814 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
71438815 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1567-lib1567.obj `if test -f 'lib1567.c'; then $(CYGPATH_W) 'lib1567.c'; else $(CYGPATH_W) '$(srcdir)/lib1567.c'; fi`
71448816
8817 ../../lib/lib1567-timediff.o: ../../lib/timediff.c
8818 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1567-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1567-timediff.Tpo -c -o ../../lib/lib1567-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8819 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1567-timediff.Tpo ../../lib/$(DEPDIR)/lib1567-timediff.Po
8820 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1567-timediff.o' libtool=no @AMDEPBACKSLASH@
8821 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8822 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1567-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8823
8824 ../../lib/lib1567-timediff.obj: ../../lib/timediff.c
8825 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1567-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1567-timediff.Tpo -c -o ../../lib/lib1567-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8826 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1567-timediff.Tpo ../../lib/$(DEPDIR)/lib1567-timediff.Po
8827 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1567-timediff.obj' libtool=no @AMDEPBACKSLASH@
8828 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8829 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1567-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8830
71458831 lib1567-first.o: first.c
71468832 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1567-first.o -MD -MP -MF $(DEPDIR)/lib1567-first.Tpo -c -o lib1567-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
71478833 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1567-first.Tpo $(DEPDIR)/lib1567-first.Po
71708856 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
71718857 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1568-lib1568.obj `if test -f 'lib1568.c'; then $(CYGPATH_W) 'lib1568.c'; else $(CYGPATH_W) '$(srcdir)/lib1568.c'; fi`
71728858
8859 ../../lib/lib1568-timediff.o: ../../lib/timediff.c
8860 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1568-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1568-timediff.Tpo -c -o ../../lib/lib1568-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8861 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1568-timediff.Tpo ../../lib/$(DEPDIR)/lib1568-timediff.Po
8862 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1568-timediff.o' libtool=no @AMDEPBACKSLASH@
8863 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8864 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1568-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8865
8866 ../../lib/lib1568-timediff.obj: ../../lib/timediff.c
8867 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1568-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1568-timediff.Tpo -c -o ../../lib/lib1568-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8868 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1568-timediff.Tpo ../../lib/$(DEPDIR)/lib1568-timediff.Po
8869 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1568-timediff.obj' libtool=no @AMDEPBACKSLASH@
8870 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8871 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1568-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8872
71738873 lib1568-first.o: first.c
71748874 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1568-first.o -MD -MP -MF $(DEPDIR)/lib1568-first.Tpo -c -o lib1568-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
71758875 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1568-first.Tpo $(DEPDIR)/lib1568-first.Po
71988898 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
71998899 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1569-lib1569.obj `if test -f 'lib1569.c'; then $(CYGPATH_W) 'lib1569.c'; else $(CYGPATH_W) '$(srcdir)/lib1569.c'; fi`
72008900
8901 ../../lib/lib1569-timediff.o: ../../lib/timediff.c
8902 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1569-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1569-timediff.Tpo -c -o ../../lib/lib1569-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8903 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1569-timediff.Tpo ../../lib/$(DEPDIR)/lib1569-timediff.Po
8904 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1569-timediff.o' libtool=no @AMDEPBACKSLASH@
8905 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8906 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1569-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8907
8908 ../../lib/lib1569-timediff.obj: ../../lib/timediff.c
8909 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1569-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1569-timediff.Tpo -c -o ../../lib/lib1569-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8910 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1569-timediff.Tpo ../../lib/$(DEPDIR)/lib1569-timediff.Po
8911 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1569-timediff.obj' libtool=no @AMDEPBACKSLASH@
8912 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8913 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1569-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8914
72018915 lib1569-first.o: first.c
72028916 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1569-first.o -MD -MP -MF $(DEPDIR)/lib1569-first.Tpo -c -o lib1569-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
72038917 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1569-first.Tpo $(DEPDIR)/lib1569-first.Po
72268940 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
72278941 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1591-lib1591.obj `if test -f 'lib1591.c'; then $(CYGPATH_W) 'lib1591.c'; else $(CYGPATH_W) '$(srcdir)/lib1591.c'; fi`
72288942
8943 ../../lib/lib1591-timediff.o: ../../lib/timediff.c
8944 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1591-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1591-timediff.Tpo -c -o ../../lib/lib1591-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8945 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1591-timediff.Tpo ../../lib/$(DEPDIR)/lib1591-timediff.Po
8946 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1591-timediff.o' libtool=no @AMDEPBACKSLASH@
8947 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8948 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1591-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
8949
8950 ../../lib/lib1591-timediff.obj: ../../lib/timediff.c
8951 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1591-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1591-timediff.Tpo -c -o ../../lib/lib1591-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8952 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1591-timediff.Tpo ../../lib/$(DEPDIR)/lib1591-timediff.Po
8953 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1591-timediff.obj' libtool=no @AMDEPBACKSLASH@
8954 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
8955 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1591-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
8956
72298957 lib1591-first.o: first.c
72308958 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1591-first.o -MD -MP -MF $(DEPDIR)/lib1591-first.Tpo -c -o lib1591-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
72318959 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1591-first.Tpo $(DEPDIR)/lib1591-first.Po
72829010 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
72839011 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1592-lib1592.obj `if test -f 'lib1592.c'; then $(CYGPATH_W) 'lib1592.c'; else $(CYGPATH_W) '$(srcdir)/lib1592.c'; fi`
72849012
9013 ../../lib/lib1592-timediff.o: ../../lib/timediff.c
9014 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1592-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1592-timediff.Tpo -c -o ../../lib/lib1592-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9015 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1592-timediff.Tpo ../../lib/$(DEPDIR)/lib1592-timediff.Po
9016 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1592-timediff.o' libtool=no @AMDEPBACKSLASH@
9017 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9018 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1592-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9019
9020 ../../lib/lib1592-timediff.obj: ../../lib/timediff.c
9021 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1592-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1592-timediff.Tpo -c -o ../../lib/lib1592-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9022 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1592-timediff.Tpo ../../lib/$(DEPDIR)/lib1592-timediff.Po
9023 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1592-timediff.obj' libtool=no @AMDEPBACKSLASH@
9024 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9025 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1592-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9026
72859027 lib1592-first.o: first.c
72869028 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1592_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1592-first.o -MD -MP -MF $(DEPDIR)/lib1592-first.Tpo -c -o lib1592-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
72879029 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1592-first.Tpo $(DEPDIR)/lib1592-first.Po
73389080 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
73399081 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1596-lib1594.obj `if test -f 'lib1594.c'; then $(CYGPATH_W) 'lib1594.c'; else $(CYGPATH_W) '$(srcdir)/lib1594.c'; fi`
73409082
9083 ../../lib/lib1596-timediff.o: ../../lib/timediff.c
9084 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1596-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1596-timediff.Tpo -c -o ../../lib/lib1596-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9085 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1596-timediff.Tpo ../../lib/$(DEPDIR)/lib1596-timediff.Po
9086 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1596-timediff.o' libtool=no @AMDEPBACKSLASH@
9087 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9088 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1596-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9089
9090 ../../lib/lib1596-timediff.obj: ../../lib/timediff.c
9091 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1596-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1596-timediff.Tpo -c -o ../../lib/lib1596-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9092 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1596-timediff.Tpo ../../lib/$(DEPDIR)/lib1596-timediff.Po
9093 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1596-timediff.obj' libtool=no @AMDEPBACKSLASH@
9094 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9095 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1596-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9096
73419097 lib1596-first.o: first.c
73429098 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1596_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1596-first.o -MD -MP -MF $(DEPDIR)/lib1596-first.Tpo -c -o lib1596-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
73439099 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1596-first.Tpo $(DEPDIR)/lib1596-first.Po
73949150 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
73959151 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1905-lib1905.obj `if test -f 'lib1905.c'; then $(CYGPATH_W) 'lib1905.c'; else $(CYGPATH_W) '$(srcdir)/lib1905.c'; fi`
73969152
9153 ../../lib/lib1905-timediff.o: ../../lib/timediff.c
9154 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1905-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1905-timediff.Tpo -c -o ../../lib/lib1905-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9155 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1905-timediff.Tpo ../../lib/$(DEPDIR)/lib1905-timediff.Po
9156 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1905-timediff.o' libtool=no @AMDEPBACKSLASH@
9157 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9158 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1905-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9159
9160 ../../lib/lib1905-timediff.obj: ../../lib/timediff.c
9161 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1905-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1905-timediff.Tpo -c -o ../../lib/lib1905-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9162 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1905-timediff.Tpo ../../lib/$(DEPDIR)/lib1905-timediff.Po
9163 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1905-timediff.obj' libtool=no @AMDEPBACKSLASH@
9164 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9165 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1905-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9166
73979167 lib1905-first.o: first.c
73989168 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1905_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1905-first.o -MD -MP -MF $(DEPDIR)/lib1905-first.Tpo -c -o lib1905-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
73999169 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1905-first.Tpo $(DEPDIR)/lib1905-first.Po
74509220 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
74519221 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1906-lib1906.obj `if test -f 'lib1906.c'; then $(CYGPATH_W) 'lib1906.c'; else $(CYGPATH_W) '$(srcdir)/lib1906.c'; fi`
74529222
9223 ../../lib/lib1906-timediff.o: ../../lib/timediff.c
9224 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1906-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1906-timediff.Tpo -c -o ../../lib/lib1906-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9225 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1906-timediff.Tpo ../../lib/$(DEPDIR)/lib1906-timediff.Po
9226 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1906-timediff.o' libtool=no @AMDEPBACKSLASH@
9227 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9228 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1906-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9229
9230 ../../lib/lib1906-timediff.obj: ../../lib/timediff.c
9231 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1906-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1906-timediff.Tpo -c -o ../../lib/lib1906-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9232 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1906-timediff.Tpo ../../lib/$(DEPDIR)/lib1906-timediff.Po
9233 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1906-timediff.obj' libtool=no @AMDEPBACKSLASH@
9234 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9235 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1906-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9236
74539237 lib1906-first.o: first.c
74549238 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1906_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1906-first.o -MD -MP -MF $(DEPDIR)/lib1906-first.Tpo -c -o lib1906-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
74559239 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1906-first.Tpo $(DEPDIR)/lib1906-first.Po
75069290 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
75079291 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1907-lib1907.obj `if test -f 'lib1907.c'; then $(CYGPATH_W) 'lib1907.c'; else $(CYGPATH_W) '$(srcdir)/lib1907.c'; fi`
75089292
9293 ../../lib/lib1907-timediff.o: ../../lib/timediff.c
9294 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1907-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1907-timediff.Tpo -c -o ../../lib/lib1907-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9295 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1907-timediff.Tpo ../../lib/$(DEPDIR)/lib1907-timediff.Po
9296 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1907-timediff.o' libtool=no @AMDEPBACKSLASH@
9297 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9298 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1907-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9299
9300 ../../lib/lib1907-timediff.obj: ../../lib/timediff.c
9301 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1907-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1907-timediff.Tpo -c -o ../../lib/lib1907-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9302 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1907-timediff.Tpo ../../lib/$(DEPDIR)/lib1907-timediff.Po
9303 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1907-timediff.obj' libtool=no @AMDEPBACKSLASH@
9304 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9305 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1907-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9306
75099307 lib1907-first.o: first.c
75109308 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1907_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1907-first.o -MD -MP -MF $(DEPDIR)/lib1907-first.Tpo -c -o lib1907-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
75119309 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1907-first.Tpo $(DEPDIR)/lib1907-first.Po
75629360 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
75639361 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1908-lib1908.obj `if test -f 'lib1908.c'; then $(CYGPATH_W) 'lib1908.c'; else $(CYGPATH_W) '$(srcdir)/lib1908.c'; fi`
75649362
9363 ../../lib/lib1908-timediff.o: ../../lib/timediff.c
9364 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1908-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1908-timediff.Tpo -c -o ../../lib/lib1908-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9365 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1908-timediff.Tpo ../../lib/$(DEPDIR)/lib1908-timediff.Po
9366 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1908-timediff.o' libtool=no @AMDEPBACKSLASH@
9367 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9368 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1908-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9369
9370 ../../lib/lib1908-timediff.obj: ../../lib/timediff.c
9371 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1908-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1908-timediff.Tpo -c -o ../../lib/lib1908-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9372 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1908-timediff.Tpo ../../lib/$(DEPDIR)/lib1908-timediff.Po
9373 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1908-timediff.obj' libtool=no @AMDEPBACKSLASH@
9374 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9375 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1908-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9376
75659377 lib1908-first.o: first.c
75669378 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1908_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1908-first.o -MD -MP -MF $(DEPDIR)/lib1908-first.Tpo -c -o lib1908-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
75679379 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1908-first.Tpo $(DEPDIR)/lib1908-first.Po
76189430 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
76199431 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1910-lib1910.obj `if test -f 'lib1910.c'; then $(CYGPATH_W) 'lib1910.c'; else $(CYGPATH_W) '$(srcdir)/lib1910.c'; fi`
76209432
9433 ../../lib/lib1910-timediff.o: ../../lib/timediff.c
9434 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1910-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1910-timediff.Tpo -c -o ../../lib/lib1910-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9435 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1910-timediff.Tpo ../../lib/$(DEPDIR)/lib1910-timediff.Po
9436 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1910-timediff.o' libtool=no @AMDEPBACKSLASH@
9437 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9438 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1910-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9439
9440 ../../lib/lib1910-timediff.obj: ../../lib/timediff.c
9441 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1910-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1910-timediff.Tpo -c -o ../../lib/lib1910-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9442 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1910-timediff.Tpo ../../lib/$(DEPDIR)/lib1910-timediff.Po
9443 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1910-timediff.obj' libtool=no @AMDEPBACKSLASH@
9444 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9445 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1910-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9446
76219447 lib1910-first.o: first.c
76229448 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1910_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1910-first.o -MD -MP -MF $(DEPDIR)/lib1910-first.Tpo -c -o lib1910-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
76239449 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1910-first.Tpo $(DEPDIR)/lib1910-first.Po
76749500 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
76759501 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1911-lib1911.obj `if test -f 'lib1911.c'; then $(CYGPATH_W) 'lib1911.c'; else $(CYGPATH_W) '$(srcdir)/lib1911.c'; fi`
76769502
9503 ../../lib/lib1911-timediff.o: ../../lib/timediff.c
9504 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1911-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1911-timediff.Tpo -c -o ../../lib/lib1911-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9505 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1911-timediff.Tpo ../../lib/$(DEPDIR)/lib1911-timediff.Po
9506 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1911-timediff.o' libtool=no @AMDEPBACKSLASH@
9507 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9508 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1911-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9509
9510 ../../lib/lib1911-timediff.obj: ../../lib/timediff.c
9511 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1911-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1911-timediff.Tpo -c -o ../../lib/lib1911-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9512 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1911-timediff.Tpo ../../lib/$(DEPDIR)/lib1911-timediff.Po
9513 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1911-timediff.obj' libtool=no @AMDEPBACKSLASH@
9514 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9515 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1911-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9516
76779517 lib1911-first.o: first.c
76789518 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1911_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1911-first.o -MD -MP -MF $(DEPDIR)/lib1911-first.Tpo -c -o lib1911-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
76799519 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1911-first.Tpo $(DEPDIR)/lib1911-first.Po
77309570 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
77319571 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1912-lib1912.obj `if test -f 'lib1912.c'; then $(CYGPATH_W) 'lib1912.c'; else $(CYGPATH_W) '$(srcdir)/lib1912.c'; fi`
77329572
9573 ../../lib/lib1912-timediff.o: ../../lib/timediff.c
9574 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1912-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1912-timediff.Tpo -c -o ../../lib/lib1912-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9575 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1912-timediff.Tpo ../../lib/$(DEPDIR)/lib1912-timediff.Po
9576 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1912-timediff.o' libtool=no @AMDEPBACKSLASH@
9577 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9578 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1912-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9579
9580 ../../lib/lib1912-timediff.obj: ../../lib/timediff.c
9581 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1912-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1912-timediff.Tpo -c -o ../../lib/lib1912-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9582 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1912-timediff.Tpo ../../lib/$(DEPDIR)/lib1912-timediff.Po
9583 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1912-timediff.obj' libtool=no @AMDEPBACKSLASH@
9584 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9585 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1912-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9586
77339587 lib1912-first.o: first.c
77349588 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1912_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1912-first.o -MD -MP -MF $(DEPDIR)/lib1912-first.Tpo -c -o lib1912-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
77359589 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1912-first.Tpo $(DEPDIR)/lib1912-first.Po
77869640 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
77879641 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1913-lib1913.obj `if test -f 'lib1913.c'; then $(CYGPATH_W) 'lib1913.c'; else $(CYGPATH_W) '$(srcdir)/lib1913.c'; fi`
77889642
9643 ../../lib/lib1913-timediff.o: ../../lib/timediff.c
9644 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1913-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1913-timediff.Tpo -c -o ../../lib/lib1913-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9645 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1913-timediff.Tpo ../../lib/$(DEPDIR)/lib1913-timediff.Po
9646 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1913-timediff.o' libtool=no @AMDEPBACKSLASH@
9647 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9648 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1913-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9649
9650 ../../lib/lib1913-timediff.obj: ../../lib/timediff.c
9651 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1913-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1913-timediff.Tpo -c -o ../../lib/lib1913-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9652 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1913-timediff.Tpo ../../lib/$(DEPDIR)/lib1913-timediff.Po
9653 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1913-timediff.obj' libtool=no @AMDEPBACKSLASH@
9654 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9655 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1913-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9656
77899657 lib1913-first.o: first.c
77909658 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1913_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1913-first.o -MD -MP -MF $(DEPDIR)/lib1913-first.Tpo -c -o lib1913-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
77919659 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1913-first.Tpo $(DEPDIR)/lib1913-first.Po
78429710 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
78439711 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1915-lib1915.obj `if test -f 'lib1915.c'; then $(CYGPATH_W) 'lib1915.c'; else $(CYGPATH_W) '$(srcdir)/lib1915.c'; fi`
78449712
9713 ../../lib/lib1915-timediff.o: ../../lib/timediff.c
9714 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1915-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1915-timediff.Tpo -c -o ../../lib/lib1915-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9715 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1915-timediff.Tpo ../../lib/$(DEPDIR)/lib1915-timediff.Po
9716 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1915-timediff.o' libtool=no @AMDEPBACKSLASH@
9717 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9718 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1915-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9719
9720 ../../lib/lib1915-timediff.obj: ../../lib/timediff.c
9721 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1915-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1915-timediff.Tpo -c -o ../../lib/lib1915-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9722 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1915-timediff.Tpo ../../lib/$(DEPDIR)/lib1915-timediff.Po
9723 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1915-timediff.obj' libtool=no @AMDEPBACKSLASH@
9724 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9725 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1915-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9726
78459727 lib1915-first.o: first.c
78469728 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1915_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1915-first.o -MD -MP -MF $(DEPDIR)/lib1915-first.Tpo -c -o lib1915-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
78479729 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1915-first.Tpo $(DEPDIR)/lib1915-first.Po
78989780 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
78999781 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1916-lib1916.obj `if test -f 'lib1916.c'; then $(CYGPATH_W) 'lib1916.c'; else $(CYGPATH_W) '$(srcdir)/lib1916.c'; fi`
79009782
9783 ../../lib/lib1916-timediff.o: ../../lib/timediff.c
9784 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1916-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1916-timediff.Tpo -c -o ../../lib/lib1916-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9785 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1916-timediff.Tpo ../../lib/$(DEPDIR)/lib1916-timediff.Po
9786 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1916-timediff.o' libtool=no @AMDEPBACKSLASH@
9787 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9788 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1916-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9789
9790 ../../lib/lib1916-timediff.obj: ../../lib/timediff.c
9791 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1916-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1916-timediff.Tpo -c -o ../../lib/lib1916-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9792 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1916-timediff.Tpo ../../lib/$(DEPDIR)/lib1916-timediff.Po
9793 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1916-timediff.obj' libtool=no @AMDEPBACKSLASH@
9794 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9795 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1916-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9796
79019797 lib1916-first.o: first.c
79029798 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1916_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1916-first.o -MD -MP -MF $(DEPDIR)/lib1916-first.Tpo -c -o lib1916-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
79039799 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1916-first.Tpo $(DEPDIR)/lib1916-first.Po
79409836 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
79419837 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1917-lib1916.obj `if test -f 'lib1916.c'; then $(CYGPATH_W) 'lib1916.c'; else $(CYGPATH_W) '$(srcdir)/lib1916.c'; fi`
79429838
9839 ../../lib/lib1917-timediff.o: ../../lib/timediff.c
9840 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1917-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1917-timediff.Tpo -c -o ../../lib/lib1917-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9841 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1917-timediff.Tpo ../../lib/$(DEPDIR)/lib1917-timediff.Po
9842 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1917-timediff.o' libtool=no @AMDEPBACKSLASH@
9843 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9844 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1917-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9845
9846 ../../lib/lib1917-timediff.obj: ../../lib/timediff.c
9847 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1917-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1917-timediff.Tpo -c -o ../../lib/lib1917-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9848 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1917-timediff.Tpo ../../lib/$(DEPDIR)/lib1917-timediff.Po
9849 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1917-timediff.obj' libtool=no @AMDEPBACKSLASH@
9850 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9851 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1917-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9852
79439853 lib1917-first.o: first.c
79449854 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1917_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1917-first.o -MD -MP -MF $(DEPDIR)/lib1917-first.Tpo -c -o lib1917-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
79459855 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1917-first.Tpo $(DEPDIR)/lib1917-first.Po
79829892 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
79839893 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1918-lib1918.obj `if test -f 'lib1918.c'; then $(CYGPATH_W) 'lib1918.c'; else $(CYGPATH_W) '$(srcdir)/lib1918.c'; fi`
79849894
9895 ../../lib/lib1918-timediff.o: ../../lib/timediff.c
9896 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1918-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1918-timediff.Tpo -c -o ../../lib/lib1918-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9897 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1918-timediff.Tpo ../../lib/$(DEPDIR)/lib1918-timediff.Po
9898 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1918-timediff.o' libtool=no @AMDEPBACKSLASH@
9899 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9900 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1918-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9901
9902 ../../lib/lib1918-timediff.obj: ../../lib/timediff.c
9903 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1918-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1918-timediff.Tpo -c -o ../../lib/lib1918-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9904 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1918-timediff.Tpo ../../lib/$(DEPDIR)/lib1918-timediff.Po
9905 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1918-timediff.obj' libtool=no @AMDEPBACKSLASH@
9906 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9907 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1918-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9908
79859909 lib1918-first.o: first.c
79869910 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1918_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1918-first.o -MD -MP -MF $(DEPDIR)/lib1918-first.Tpo -c -o lib1918-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
79879911 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1918-first.Tpo $(DEPDIR)/lib1918-first.Po
80249948 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
80259949 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1933-lib1933.obj `if test -f 'lib1933.c'; then $(CYGPATH_W) 'lib1933.c'; else $(CYGPATH_W) '$(srcdir)/lib1933.c'; fi`
80269950
9951 ../../lib/lib1933-timediff.o: ../../lib/timediff.c
9952 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1933-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1933-timediff.Tpo -c -o ../../lib/lib1933-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9953 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1933-timediff.Tpo ../../lib/$(DEPDIR)/lib1933-timediff.Po
9954 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1933-timediff.o' libtool=no @AMDEPBACKSLASH@
9955 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9956 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1933-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
9957
9958 ../../lib/lib1933-timediff.obj: ../../lib/timediff.c
9959 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1933-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1933-timediff.Tpo -c -o ../../lib/lib1933-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9960 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1933-timediff.Tpo ../../lib/$(DEPDIR)/lib1933-timediff.Po
9961 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1933-timediff.obj' libtool=no @AMDEPBACKSLASH@
9962 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9963 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1933-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
9964
80279965 lib1933-first.o: first.c
80289966 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1933_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1933-first.o -MD -MP -MF $(DEPDIR)/lib1933-first.Tpo -c -o lib1933-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
80299967 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1933-first.Tpo $(DEPDIR)/lib1933-first.Po
808010018 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
808110019 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1934-lib1934.obj `if test -f 'lib1934.c'; then $(CYGPATH_W) 'lib1934.c'; else $(CYGPATH_W) '$(srcdir)/lib1934.c'; fi`
808210020
10021 ../../lib/lib1934-timediff.o: ../../lib/timediff.c
10022 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1934-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1934-timediff.Tpo -c -o ../../lib/lib1934-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10023 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1934-timediff.Tpo ../../lib/$(DEPDIR)/lib1934-timediff.Po
10024 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1934-timediff.o' libtool=no @AMDEPBACKSLASH@
10025 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10026 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1934-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10027
10028 ../../lib/lib1934-timediff.obj: ../../lib/timediff.c
10029 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1934-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1934-timediff.Tpo -c -o ../../lib/lib1934-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10030 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1934-timediff.Tpo ../../lib/$(DEPDIR)/lib1934-timediff.Po
10031 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1934-timediff.obj' libtool=no @AMDEPBACKSLASH@
10032 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10033 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1934-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10034
808310035 lib1934-first.o: first.c
808410036 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1934_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1934-first.o -MD -MP -MF $(DEPDIR)/lib1934-first.Tpo -c -o lib1934-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
808510037 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1934-first.Tpo $(DEPDIR)/lib1934-first.Po
813610088 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
813710089 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1935-lib1935.obj `if test -f 'lib1935.c'; then $(CYGPATH_W) 'lib1935.c'; else $(CYGPATH_W) '$(srcdir)/lib1935.c'; fi`
813810090
10091 ../../lib/lib1935-timediff.o: ../../lib/timediff.c
10092 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1935-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1935-timediff.Tpo -c -o ../../lib/lib1935-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10093 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1935-timediff.Tpo ../../lib/$(DEPDIR)/lib1935-timediff.Po
10094 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1935-timediff.o' libtool=no @AMDEPBACKSLASH@
10095 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10096 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1935-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10097
10098 ../../lib/lib1935-timediff.obj: ../../lib/timediff.c
10099 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1935-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1935-timediff.Tpo -c -o ../../lib/lib1935-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10100 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1935-timediff.Tpo ../../lib/$(DEPDIR)/lib1935-timediff.Po
10101 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1935-timediff.obj' libtool=no @AMDEPBACKSLASH@
10102 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10103 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1935-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10104
813910105 lib1935-first.o: first.c
814010106 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1935_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1935-first.o -MD -MP -MF $(DEPDIR)/lib1935-first.Tpo -c -o lib1935-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
814110107 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1935-first.Tpo $(DEPDIR)/lib1935-first.Po
819210158 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
819310159 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1936-lib1936.obj `if test -f 'lib1936.c'; then $(CYGPATH_W) 'lib1936.c'; else $(CYGPATH_W) '$(srcdir)/lib1936.c'; fi`
819410160
10161 ../../lib/lib1936-timediff.o: ../../lib/timediff.c
10162 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1936-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1936-timediff.Tpo -c -o ../../lib/lib1936-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10163 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1936-timediff.Tpo ../../lib/$(DEPDIR)/lib1936-timediff.Po
10164 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1936-timediff.o' libtool=no @AMDEPBACKSLASH@
10165 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10166 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1936-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10167
10168 ../../lib/lib1936-timediff.obj: ../../lib/timediff.c
10169 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1936-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1936-timediff.Tpo -c -o ../../lib/lib1936-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10170 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1936-timediff.Tpo ../../lib/$(DEPDIR)/lib1936-timediff.Po
10171 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1936-timediff.obj' libtool=no @AMDEPBACKSLASH@
10172 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10173 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1936-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10174
819510175 lib1936-first.o: first.c
819610176 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1936_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1936-first.o -MD -MP -MF $(DEPDIR)/lib1936-first.Tpo -c -o lib1936-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
819710177 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1936-first.Tpo $(DEPDIR)/lib1936-first.Po
824810228 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
824910229 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1937-lib1937.obj `if test -f 'lib1937.c'; then $(CYGPATH_W) 'lib1937.c'; else $(CYGPATH_W) '$(srcdir)/lib1937.c'; fi`
825010230
10231 ../../lib/lib1937-timediff.o: ../../lib/timediff.c
10232 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1937-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1937-timediff.Tpo -c -o ../../lib/lib1937-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10233 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1937-timediff.Tpo ../../lib/$(DEPDIR)/lib1937-timediff.Po
10234 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1937-timediff.o' libtool=no @AMDEPBACKSLASH@
10235 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10236 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1937-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10237
10238 ../../lib/lib1937-timediff.obj: ../../lib/timediff.c
10239 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1937-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1937-timediff.Tpo -c -o ../../lib/lib1937-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10240 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1937-timediff.Tpo ../../lib/$(DEPDIR)/lib1937-timediff.Po
10241 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1937-timediff.obj' libtool=no @AMDEPBACKSLASH@
10242 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10243 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1937-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10244
825110245 lib1937-first.o: first.c
825210246 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1937_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1937-first.o -MD -MP -MF $(DEPDIR)/lib1937-first.Tpo -c -o lib1937-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
825310247 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1937-first.Tpo $(DEPDIR)/lib1937-first.Po
827610270 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
827710271 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1938-lib1938.obj `if test -f 'lib1938.c'; then $(CYGPATH_W) 'lib1938.c'; else $(CYGPATH_W) '$(srcdir)/lib1938.c'; fi`
827810272
10273 ../../lib/lib1938-timediff.o: ../../lib/timediff.c
10274 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1938-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1938-timediff.Tpo -c -o ../../lib/lib1938-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10275 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1938-timediff.Tpo ../../lib/$(DEPDIR)/lib1938-timediff.Po
10276 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1938-timediff.o' libtool=no @AMDEPBACKSLASH@
10277 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10278 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1938-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10279
10280 ../../lib/lib1938-timediff.obj: ../../lib/timediff.c
10281 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1938-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1938-timediff.Tpo -c -o ../../lib/lib1938-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10282 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1938-timediff.Tpo ../../lib/$(DEPDIR)/lib1938-timediff.Po
10283 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1938-timediff.obj' libtool=no @AMDEPBACKSLASH@
10284 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10285 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1938-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10286
827910287 lib1938-first.o: first.c
828010288 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1938_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1938-first.o -MD -MP -MF $(DEPDIR)/lib1938-first.Tpo -c -o lib1938-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
828110289 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1938-first.Tpo $(DEPDIR)/lib1938-first.Po
830410312 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
830510313 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1939-lib1939.obj `if test -f 'lib1939.c'; then $(CYGPATH_W) 'lib1939.c'; else $(CYGPATH_W) '$(srcdir)/lib1939.c'; fi`
830610314
10315 ../../lib/lib1939-timediff.o: ../../lib/timediff.c
10316 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1939-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1939-timediff.Tpo -c -o ../../lib/lib1939-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10317 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1939-timediff.Tpo ../../lib/$(DEPDIR)/lib1939-timediff.Po
10318 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1939-timediff.o' libtool=no @AMDEPBACKSLASH@
10319 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10320 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1939-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10321
10322 ../../lib/lib1939-timediff.obj: ../../lib/timediff.c
10323 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1939-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1939-timediff.Tpo -c -o ../../lib/lib1939-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10324 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1939-timediff.Tpo ../../lib/$(DEPDIR)/lib1939-timediff.Po
10325 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1939-timediff.obj' libtool=no @AMDEPBACKSLASH@
10326 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10327 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1939-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10328
830710329 lib1939-first.o: first.c
830810330 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1939-first.o -MD -MP -MF $(DEPDIR)/lib1939-first.Tpo -c -o lib1939-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
830910331 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1939-first.Tpo $(DEPDIR)/lib1939-first.Po
831810340 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
831910341 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1939_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1939-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
832010342
10343 lib1940-lib1940.o: lib1940.c
10344 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1940-lib1940.o -MD -MP -MF $(DEPDIR)/lib1940-lib1940.Tpo -c -o lib1940-lib1940.o `test -f 'lib1940.c' || echo '$(srcdir)/'`lib1940.c
10345 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1940-lib1940.Tpo $(DEPDIR)/lib1940-lib1940.Po
10346 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1940.c' object='lib1940-lib1940.o' libtool=no @AMDEPBACKSLASH@
10347 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10348 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1940-lib1940.o `test -f 'lib1940.c' || echo '$(srcdir)/'`lib1940.c
10349
10350 lib1940-lib1940.obj: lib1940.c
10351 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1940-lib1940.obj -MD -MP -MF $(DEPDIR)/lib1940-lib1940.Tpo -c -o lib1940-lib1940.obj `if test -f 'lib1940.c'; then $(CYGPATH_W) 'lib1940.c'; else $(CYGPATH_W) '$(srcdir)/lib1940.c'; fi`
10352 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1940-lib1940.Tpo $(DEPDIR)/lib1940-lib1940.Po
10353 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1940.c' object='lib1940-lib1940.obj' libtool=no @AMDEPBACKSLASH@
10354 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10355 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1940-lib1940.obj `if test -f 'lib1940.c'; then $(CYGPATH_W) 'lib1940.c'; else $(CYGPATH_W) '$(srcdir)/lib1940.c'; fi`
10356
10357 ../../lib/lib1940-timediff.o: ../../lib/timediff.c
10358 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1940-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1940-timediff.Tpo -c -o ../../lib/lib1940-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10359 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1940-timediff.Tpo ../../lib/$(DEPDIR)/lib1940-timediff.Po
10360 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1940-timediff.o' libtool=no @AMDEPBACKSLASH@
10361 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10362 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1940-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10363
10364 ../../lib/lib1940-timediff.obj: ../../lib/timediff.c
10365 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1940-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1940-timediff.Tpo -c -o ../../lib/lib1940-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10366 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1940-timediff.Tpo ../../lib/$(DEPDIR)/lib1940-timediff.Po
10367 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1940-timediff.obj' libtool=no @AMDEPBACKSLASH@
10368 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10369 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1940-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10370
10371 lib1940-first.o: first.c
10372 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1940-first.o -MD -MP -MF $(DEPDIR)/lib1940-first.Tpo -c -o lib1940-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10373 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1940-first.Tpo $(DEPDIR)/lib1940-first.Po
10374 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1940-first.o' libtool=no @AMDEPBACKSLASH@
10375 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10376 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1940-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10377
10378 lib1940-first.obj: first.c
10379 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1940-first.obj -MD -MP -MF $(DEPDIR)/lib1940-first.Tpo -c -o lib1940-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10380 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1940-first.Tpo $(DEPDIR)/lib1940-first.Po
10381 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1940-first.obj' libtool=no @AMDEPBACKSLASH@
10382 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10383 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1940_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1940-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10384
10385 lib1945-lib1945.o: lib1945.c
10386 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1945-lib1945.o -MD -MP -MF $(DEPDIR)/lib1945-lib1945.Tpo -c -o lib1945-lib1945.o `test -f 'lib1945.c' || echo '$(srcdir)/'`lib1945.c
10387 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1945-lib1945.Tpo $(DEPDIR)/lib1945-lib1945.Po
10388 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1945.c' object='lib1945-lib1945.o' libtool=no @AMDEPBACKSLASH@
10389 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10390 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1945-lib1945.o `test -f 'lib1945.c' || echo '$(srcdir)/'`lib1945.c
10391
10392 lib1945-lib1945.obj: lib1945.c
10393 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1945-lib1945.obj -MD -MP -MF $(DEPDIR)/lib1945-lib1945.Tpo -c -o lib1945-lib1945.obj `if test -f 'lib1945.c'; then $(CYGPATH_W) 'lib1945.c'; else $(CYGPATH_W) '$(srcdir)/lib1945.c'; fi`
10394 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1945-lib1945.Tpo $(DEPDIR)/lib1945-lib1945.Po
10395 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1945.c' object='lib1945-lib1945.obj' libtool=no @AMDEPBACKSLASH@
10396 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10397 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1945-lib1945.obj `if test -f 'lib1945.c'; then $(CYGPATH_W) 'lib1945.c'; else $(CYGPATH_W) '$(srcdir)/lib1945.c'; fi`
10398
10399 ../../lib/lib1945-timediff.o: ../../lib/timediff.c
10400 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1945-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1945-timediff.Tpo -c -o ../../lib/lib1945-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10401 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1945-timediff.Tpo ../../lib/$(DEPDIR)/lib1945-timediff.Po
10402 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1945-timediff.o' libtool=no @AMDEPBACKSLASH@
10403 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10404 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1945-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10405
10406 ../../lib/lib1945-timediff.obj: ../../lib/timediff.c
10407 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1945-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1945-timediff.Tpo -c -o ../../lib/lib1945-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10408 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1945-timediff.Tpo ../../lib/$(DEPDIR)/lib1945-timediff.Po
10409 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1945-timediff.obj' libtool=no @AMDEPBACKSLASH@
10410 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10411 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1945-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10412
10413 lib1945-first.o: first.c
10414 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1945-first.o -MD -MP -MF $(DEPDIR)/lib1945-first.Tpo -c -o lib1945-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10415 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1945-first.Tpo $(DEPDIR)/lib1945-first.Po
10416 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1945-first.o' libtool=no @AMDEPBACKSLASH@
10417 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10418 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1945-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10419
10420 lib1945-first.obj: first.c
10421 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1945-first.obj -MD -MP -MF $(DEPDIR)/lib1945-first.Tpo -c -o lib1945-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10422 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1945-first.Tpo $(DEPDIR)/lib1945-first.Po
10423 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1945-first.obj' libtool=no @AMDEPBACKSLASH@
10424 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10425 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1945_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1945-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10426
10427 lib1946-lib1940.o: lib1940.c
10428 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1946-lib1940.o -MD -MP -MF $(DEPDIR)/lib1946-lib1940.Tpo -c -o lib1946-lib1940.o `test -f 'lib1940.c' || echo '$(srcdir)/'`lib1940.c
10429 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1946-lib1940.Tpo $(DEPDIR)/lib1946-lib1940.Po
10430 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1940.c' object='lib1946-lib1940.o' libtool=no @AMDEPBACKSLASH@
10431 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10432 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1946-lib1940.o `test -f 'lib1940.c' || echo '$(srcdir)/'`lib1940.c
10433
10434 lib1946-lib1940.obj: lib1940.c
10435 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1946-lib1940.obj -MD -MP -MF $(DEPDIR)/lib1946-lib1940.Tpo -c -o lib1946-lib1940.obj `if test -f 'lib1940.c'; then $(CYGPATH_W) 'lib1940.c'; else $(CYGPATH_W) '$(srcdir)/lib1940.c'; fi`
10436 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1946-lib1940.Tpo $(DEPDIR)/lib1946-lib1940.Po
10437 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib1940.c' object='lib1946-lib1940.obj' libtool=no @AMDEPBACKSLASH@
10438 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10439 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1946-lib1940.obj `if test -f 'lib1940.c'; then $(CYGPATH_W) 'lib1940.c'; else $(CYGPATH_W) '$(srcdir)/lib1940.c'; fi`
10440
10441 ../../lib/lib1946-timediff.o: ../../lib/timediff.c
10442 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1946-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib1946-timediff.Tpo -c -o ../../lib/lib1946-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10443 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1946-timediff.Tpo ../../lib/$(DEPDIR)/lib1946-timediff.Po
10444 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1946-timediff.o' libtool=no @AMDEPBACKSLASH@
10445 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10446 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1946-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10447
10448 ../../lib/lib1946-timediff.obj: ../../lib/timediff.c
10449 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib1946-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib1946-timediff.Tpo -c -o ../../lib/lib1946-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10450 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib1946-timediff.Tpo ../../lib/$(DEPDIR)/lib1946-timediff.Po
10451 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib1946-timediff.obj' libtool=no @AMDEPBACKSLASH@
10452 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10453 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib1946-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10454
10455 lib1946-first.o: first.c
10456 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1946-first.o -MD -MP -MF $(DEPDIR)/lib1946-first.Tpo -c -o lib1946-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10457 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1946-first.Tpo $(DEPDIR)/lib1946-first.Po
10458 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1946-first.o' libtool=no @AMDEPBACKSLASH@
10459 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10460 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1946-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
10461
10462 lib1946-first.obj: first.c
10463 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib1946-first.obj -MD -MP -MF $(DEPDIR)/lib1946-first.Tpo -c -o lib1946-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10464 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib1946-first.Tpo $(DEPDIR)/lib1946-first.Po
10465 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='first.c' object='lib1946-first.obj' libtool=no @AMDEPBACKSLASH@
10466 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10467 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib1946_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib1946-first.obj `if test -f 'first.c'; then $(CYGPATH_W) 'first.c'; else $(CYGPATH_W) '$(srcdir)/first.c'; fi`
10468
832110469 lib3010-lib3010.o: lib3010.c
832210470 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib3010-lib3010.o -MD -MP -MF $(DEPDIR)/lib3010-lib3010.Tpo -c -o lib3010-lib3010.o `test -f 'lib3010.c' || echo '$(srcdir)/'`lib3010.c
832310471 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib3010-lib3010.Tpo $(DEPDIR)/lib3010-lib3010.Po
833210480 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
833310481 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib3010-lib3010.obj `if test -f 'lib3010.c'; then $(CYGPATH_W) 'lib3010.c'; else $(CYGPATH_W) '$(srcdir)/lib3010.c'; fi`
833410482
10483 ../../lib/lib3010-timediff.o: ../../lib/timediff.c
10484 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib3010-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib3010-timediff.Tpo -c -o ../../lib/lib3010-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10485 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib3010-timediff.Tpo ../../lib/$(DEPDIR)/lib3010-timediff.Po
10486 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib3010-timediff.o' libtool=no @AMDEPBACKSLASH@
10487 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10488 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib3010-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10489
10490 ../../lib/lib3010-timediff.obj: ../../lib/timediff.c
10491 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib3010-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib3010-timediff.Tpo -c -o ../../lib/lib3010-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10492 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib3010-timediff.Tpo ../../lib/$(DEPDIR)/lib3010-timediff.Po
10493 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib3010-timediff.obj' libtool=no @AMDEPBACKSLASH@
10494 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10495 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib3010-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10496
833510497 lib3010-first.o: first.c
833610498 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3010_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib3010-first.o -MD -MP -MF $(DEPDIR)/lib3010-first.Tpo -c -o lib3010-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
833710499 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib3010-first.Tpo $(DEPDIR)/lib3010-first.Po
838810550 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
838910551 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib3025-lib3025.obj `if test -f 'lib3025.c'; then $(CYGPATH_W) 'lib3025.c'; else $(CYGPATH_W) '$(srcdir)/lib3025.c'; fi`
839010552
10553 ../../lib/lib3025-timediff.o: ../../lib/timediff.c
10554 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib3025-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib3025-timediff.Tpo -c -o ../../lib/lib3025-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10555 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib3025-timediff.Tpo ../../lib/$(DEPDIR)/lib3025-timediff.Po
10556 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib3025-timediff.o' libtool=no @AMDEPBACKSLASH@
10557 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10558 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib3025-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10559
10560 ../../lib/lib3025-timediff.obj: ../../lib/timediff.c
10561 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib3025-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib3025-timediff.Tpo -c -o ../../lib/lib3025-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10562 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib3025-timediff.Tpo ../../lib/$(DEPDIR)/lib3025-timediff.Po
10563 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib3025-timediff.obj' libtool=no @AMDEPBACKSLASH@
10564 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10565 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib3025-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10566
839110567 lib3025-first.o: first.c
839210568 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib3025_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib3025-first.o -MD -MP -MF $(DEPDIR)/lib3025-first.Tpo -c -o lib3025-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
839310569 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib3025-first.Tpo $(DEPDIR)/lib3025-first.Po
844410620 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
844510621 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib500-lib500.obj `if test -f 'lib500.c'; then $(CYGPATH_W) 'lib500.c'; else $(CYGPATH_W) '$(srcdir)/lib500.c'; fi`
844610622
10623 ../../lib/lib500-timediff.o: ../../lib/timediff.c
10624 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib500-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib500-timediff.Tpo -c -o ../../lib/lib500-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10625 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib500-timediff.Tpo ../../lib/$(DEPDIR)/lib500-timediff.Po
10626 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib500-timediff.o' libtool=no @AMDEPBACKSLASH@
10627 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10628 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib500-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10629
10630 ../../lib/lib500-timediff.obj: ../../lib/timediff.c
10631 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib500-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib500-timediff.Tpo -c -o ../../lib/lib500-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10632 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib500-timediff.Tpo ../../lib/$(DEPDIR)/lib500-timediff.Po
10633 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib500-timediff.obj' libtool=no @AMDEPBACKSLASH@
10634 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10635 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib500-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10636
844710637 lib500-first.o: first.c
844810638 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib500_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib500-first.o -MD -MP -MF $(DEPDIR)/lib500-first.Tpo -c -o lib500-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
844910639 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib500-first.Tpo $(DEPDIR)/lib500-first.Po
851410704 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
851510705 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib501-lib501.obj `if test -f 'lib501.c'; then $(CYGPATH_W) 'lib501.c'; else $(CYGPATH_W) '$(srcdir)/lib501.c'; fi`
851610706
10707 ../../lib/lib501-timediff.o: ../../lib/timediff.c
10708 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib501-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib501-timediff.Tpo -c -o ../../lib/lib501-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10709 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib501-timediff.Tpo ../../lib/$(DEPDIR)/lib501-timediff.Po
10710 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib501-timediff.o' libtool=no @AMDEPBACKSLASH@
10711 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10712 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib501-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10713
10714 ../../lib/lib501-timediff.obj: ../../lib/timediff.c
10715 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib501-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib501-timediff.Tpo -c -o ../../lib/lib501-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10716 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib501-timediff.Tpo ../../lib/$(DEPDIR)/lib501-timediff.Po
10717 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib501-timediff.obj' libtool=no @AMDEPBACKSLASH@
10718 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10719 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib501-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10720
851710721 lib501-first.o: first.c
851810722 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib501_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib501-first.o -MD -MP -MF $(DEPDIR)/lib501-first.Tpo -c -o lib501-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
851910723 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib501-first.Tpo $(DEPDIR)/lib501-first.Po
854210746 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
854310747 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib502-lib502.obj `if test -f 'lib502.c'; then $(CYGPATH_W) 'lib502.c'; else $(CYGPATH_W) '$(srcdir)/lib502.c'; fi`
854410748
10749 ../../lib/lib502-timediff.o: ../../lib/timediff.c
10750 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib502-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib502-timediff.Tpo -c -o ../../lib/lib502-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10751 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib502-timediff.Tpo ../../lib/$(DEPDIR)/lib502-timediff.Po
10752 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib502-timediff.o' libtool=no @AMDEPBACKSLASH@
10753 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10754 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib502-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10755
10756 ../../lib/lib502-timediff.obj: ../../lib/timediff.c
10757 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib502-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib502-timediff.Tpo -c -o ../../lib/lib502-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10758 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib502-timediff.Tpo ../../lib/$(DEPDIR)/lib502-timediff.Po
10759 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib502-timediff.obj' libtool=no @AMDEPBACKSLASH@
10760 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10761 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib502-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10762
854510763 lib502-first.o: first.c
854610764 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib502_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib502-first.o -MD -MP -MF $(DEPDIR)/lib502-first.Tpo -c -o lib502-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
854710765 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib502-first.Tpo $(DEPDIR)/lib502-first.Po
859810816 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
859910817 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib503-lib503.obj `if test -f 'lib503.c'; then $(CYGPATH_W) 'lib503.c'; else $(CYGPATH_W) '$(srcdir)/lib503.c'; fi`
860010818
10819 ../../lib/lib503-timediff.o: ../../lib/timediff.c
10820 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib503-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib503-timediff.Tpo -c -o ../../lib/lib503-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10821 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib503-timediff.Tpo ../../lib/$(DEPDIR)/lib503-timediff.Po
10822 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib503-timediff.o' libtool=no @AMDEPBACKSLASH@
10823 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10824 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib503-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10825
10826 ../../lib/lib503-timediff.obj: ../../lib/timediff.c
10827 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib503-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib503-timediff.Tpo -c -o ../../lib/lib503-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10828 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib503-timediff.Tpo ../../lib/$(DEPDIR)/lib503-timediff.Po
10829 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib503-timediff.obj' libtool=no @AMDEPBACKSLASH@
10830 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10831 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib503-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10832
860110833 lib503-first.o: first.c
860210834 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib503_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib503-first.o -MD -MP -MF $(DEPDIR)/lib503-first.Tpo -c -o lib503-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
860310835 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib503-first.Tpo $(DEPDIR)/lib503-first.Po
865410886 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
865510887 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib504-lib504.obj `if test -f 'lib504.c'; then $(CYGPATH_W) 'lib504.c'; else $(CYGPATH_W) '$(srcdir)/lib504.c'; fi`
865610888
10889 ../../lib/lib504-timediff.o: ../../lib/timediff.c
10890 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib504-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib504-timediff.Tpo -c -o ../../lib/lib504-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10891 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib504-timediff.Tpo ../../lib/$(DEPDIR)/lib504-timediff.Po
10892 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib504-timediff.o' libtool=no @AMDEPBACKSLASH@
10893 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10894 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib504-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10895
10896 ../../lib/lib504-timediff.obj: ../../lib/timediff.c
10897 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib504-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib504-timediff.Tpo -c -o ../../lib/lib504-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10898 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib504-timediff.Tpo ../../lib/$(DEPDIR)/lib504-timediff.Po
10899 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib504-timediff.obj' libtool=no @AMDEPBACKSLASH@
10900 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10901 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib504-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10902
865710903 lib504-first.o: first.c
865810904 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib504_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib504-first.o -MD -MP -MF $(DEPDIR)/lib504-first.Tpo -c -o lib504-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
865910905 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib504-first.Tpo $(DEPDIR)/lib504-first.Po
871010956 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
871110957 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib505-lib505.obj `if test -f 'lib505.c'; then $(CYGPATH_W) 'lib505.c'; else $(CYGPATH_W) '$(srcdir)/lib505.c'; fi`
871210958
10959 ../../lib/lib505-timediff.o: ../../lib/timediff.c
10960 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib505-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib505-timediff.Tpo -c -o ../../lib/lib505-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10961 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib505-timediff.Tpo ../../lib/$(DEPDIR)/lib505-timediff.Po
10962 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib505-timediff.o' libtool=no @AMDEPBACKSLASH@
10963 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10964 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib505-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
10965
10966 ../../lib/lib505-timediff.obj: ../../lib/timediff.c
10967 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib505-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib505-timediff.Tpo -c -o ../../lib/lib505-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10968 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib505-timediff.Tpo ../../lib/$(DEPDIR)/lib505-timediff.Po
10969 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib505-timediff.obj' libtool=no @AMDEPBACKSLASH@
10970 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10971 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib505-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
10972
871310973 lib505-first.o: first.c
871410974 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib505_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib505-first.o -MD -MP -MF $(DEPDIR)/lib505-first.Tpo -c -o lib505-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
871510975 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib505-first.Tpo $(DEPDIR)/lib505-first.Po
875211012 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
875311013 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib506-lib506.obj `if test -f 'lib506.c'; then $(CYGPATH_W) 'lib506.c'; else $(CYGPATH_W) '$(srcdir)/lib506.c'; fi`
875411014
11015 ../../lib/lib506-timediff.o: ../../lib/timediff.c
11016 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib506-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib506-timediff.Tpo -c -o ../../lib/lib506-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11017 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib506-timediff.Tpo ../../lib/$(DEPDIR)/lib506-timediff.Po
11018 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib506-timediff.o' libtool=no @AMDEPBACKSLASH@
11019 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11020 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib506-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11021
11022 ../../lib/lib506-timediff.obj: ../../lib/timediff.c
11023 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib506-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib506-timediff.Tpo -c -o ../../lib/lib506-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11024 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib506-timediff.Tpo ../../lib/$(DEPDIR)/lib506-timediff.Po
11025 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib506-timediff.obj' libtool=no @AMDEPBACKSLASH@
11026 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11027 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib506-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11028
875511029 lib506-first.o: first.c
875611030 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib506_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib506-first.o -MD -MP -MF $(DEPDIR)/lib506-first.Tpo -c -o lib506-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
875711031 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib506-first.Tpo $(DEPDIR)/lib506-first.Po
878011054 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
878111055 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib507-lib507.obj `if test -f 'lib507.c'; then $(CYGPATH_W) 'lib507.c'; else $(CYGPATH_W) '$(srcdir)/lib507.c'; fi`
878211056
11057 ../../lib/lib507-timediff.o: ../../lib/timediff.c
11058 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib507-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib507-timediff.Tpo -c -o ../../lib/lib507-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11059 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib507-timediff.Tpo ../../lib/$(DEPDIR)/lib507-timediff.Po
11060 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib507-timediff.o' libtool=no @AMDEPBACKSLASH@
11061 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11062 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib507-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11063
11064 ../../lib/lib507-timediff.obj: ../../lib/timediff.c
11065 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib507-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib507-timediff.Tpo -c -o ../../lib/lib507-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11066 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib507-timediff.Tpo ../../lib/$(DEPDIR)/lib507-timediff.Po
11067 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib507-timediff.obj' libtool=no @AMDEPBACKSLASH@
11068 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11069 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib507-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11070
878311071 lib507-first.o: first.c
878411072 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib507_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib507-first.o -MD -MP -MF $(DEPDIR)/lib507-first.Tpo -c -o lib507-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
878511073 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib507-first.Tpo $(DEPDIR)/lib507-first.Po
883611124 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
883711125 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib508-lib508.obj `if test -f 'lib508.c'; then $(CYGPATH_W) 'lib508.c'; else $(CYGPATH_W) '$(srcdir)/lib508.c'; fi`
883811126
11127 ../../lib/lib508-timediff.o: ../../lib/timediff.c
11128 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib508-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib508-timediff.Tpo -c -o ../../lib/lib508-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11129 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib508-timediff.Tpo ../../lib/$(DEPDIR)/lib508-timediff.Po
11130 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib508-timediff.o' libtool=no @AMDEPBACKSLASH@
11131 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11132 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib508-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11133
11134 ../../lib/lib508-timediff.obj: ../../lib/timediff.c
11135 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib508-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib508-timediff.Tpo -c -o ../../lib/lib508-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11136 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib508-timediff.Tpo ../../lib/$(DEPDIR)/lib508-timediff.Po
11137 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib508-timediff.obj' libtool=no @AMDEPBACKSLASH@
11138 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11139 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib508-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11140
883911141 lib508-first.o: first.c
884011142 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib508_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib508-first.o -MD -MP -MF $(DEPDIR)/lib508-first.Tpo -c -o lib508-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
884111143 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib508-first.Tpo $(DEPDIR)/lib508-first.Po
886411166 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
886511167 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib509-lib509.obj `if test -f 'lib509.c'; then $(CYGPATH_W) 'lib509.c'; else $(CYGPATH_W) '$(srcdir)/lib509.c'; fi`
886611168
11169 ../../lib/lib509-timediff.o: ../../lib/timediff.c
11170 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib509-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib509-timediff.Tpo -c -o ../../lib/lib509-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11171 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib509-timediff.Tpo ../../lib/$(DEPDIR)/lib509-timediff.Po
11172 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib509-timediff.o' libtool=no @AMDEPBACKSLASH@
11173 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11174 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib509-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11175
11176 ../../lib/lib509-timediff.obj: ../../lib/timediff.c
11177 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib509-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib509-timediff.Tpo -c -o ../../lib/lib509-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11178 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib509-timediff.Tpo ../../lib/$(DEPDIR)/lib509-timediff.Po
11179 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib509-timediff.obj' libtool=no @AMDEPBACKSLASH@
11180 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11181 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib509-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11182
886711183 lib509-first.o: first.c
886811184 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib509_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib509-first.o -MD -MP -MF $(DEPDIR)/lib509-first.Tpo -c -o lib509-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
886911185 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib509-first.Tpo $(DEPDIR)/lib509-first.Po
889211208 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
889311209 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib510-lib510.obj `if test -f 'lib510.c'; then $(CYGPATH_W) 'lib510.c'; else $(CYGPATH_W) '$(srcdir)/lib510.c'; fi`
889411210
11211 ../../lib/lib510-timediff.o: ../../lib/timediff.c
11212 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib510-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib510-timediff.Tpo -c -o ../../lib/lib510-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11213 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib510-timediff.Tpo ../../lib/$(DEPDIR)/lib510-timediff.Po
11214 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib510-timediff.o' libtool=no @AMDEPBACKSLASH@
11215 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11216 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib510-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11217
11218 ../../lib/lib510-timediff.obj: ../../lib/timediff.c
11219 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib510-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib510-timediff.Tpo -c -o ../../lib/lib510-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11220 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib510-timediff.Tpo ../../lib/$(DEPDIR)/lib510-timediff.Po
11221 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib510-timediff.obj' libtool=no @AMDEPBACKSLASH@
11222 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11223 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib510-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11224
889511225 lib510-first.o: first.c
889611226 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib510_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib510-first.o -MD -MP -MF $(DEPDIR)/lib510-first.Tpo -c -o lib510-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
889711227 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib510-first.Tpo $(DEPDIR)/lib510-first.Po
892011250 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
892111251 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib511-lib511.obj `if test -f 'lib511.c'; then $(CYGPATH_W) 'lib511.c'; else $(CYGPATH_W) '$(srcdir)/lib511.c'; fi`
892211252
11253 ../../lib/lib511-timediff.o: ../../lib/timediff.c
11254 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib511-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib511-timediff.Tpo -c -o ../../lib/lib511-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11255 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib511-timediff.Tpo ../../lib/$(DEPDIR)/lib511-timediff.Po
11256 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib511-timediff.o' libtool=no @AMDEPBACKSLASH@
11257 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11258 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib511-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11259
11260 ../../lib/lib511-timediff.obj: ../../lib/timediff.c
11261 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib511-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib511-timediff.Tpo -c -o ../../lib/lib511-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11262 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib511-timediff.Tpo ../../lib/$(DEPDIR)/lib511-timediff.Po
11263 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib511-timediff.obj' libtool=no @AMDEPBACKSLASH@
11264 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11265 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib511-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11266
892311267 lib511-first.o: first.c
892411268 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib511_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib511-first.o -MD -MP -MF $(DEPDIR)/lib511-first.Tpo -c -o lib511-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
892511269 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib511-first.Tpo $(DEPDIR)/lib511-first.Po
894811292 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
894911293 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib512-lib512.obj `if test -f 'lib512.c'; then $(CYGPATH_W) 'lib512.c'; else $(CYGPATH_W) '$(srcdir)/lib512.c'; fi`
895011294
11295 ../../lib/lib512-timediff.o: ../../lib/timediff.c
11296 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib512-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib512-timediff.Tpo -c -o ../../lib/lib512-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11297 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib512-timediff.Tpo ../../lib/$(DEPDIR)/lib512-timediff.Po
11298 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib512-timediff.o' libtool=no @AMDEPBACKSLASH@
11299 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11300 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib512-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11301
11302 ../../lib/lib512-timediff.obj: ../../lib/timediff.c
11303 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib512-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib512-timediff.Tpo -c -o ../../lib/lib512-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11304 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib512-timediff.Tpo ../../lib/$(DEPDIR)/lib512-timediff.Po
11305 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib512-timediff.obj' libtool=no @AMDEPBACKSLASH@
11306 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11307 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib512-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11308
895111309 lib512-first.o: first.c
895211310 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib512_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib512-first.o -MD -MP -MF $(DEPDIR)/lib512-first.Tpo -c -o lib512-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
895311311 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib512-first.Tpo $(DEPDIR)/lib512-first.Po
897611334 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
897711335 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib513-lib513.obj `if test -f 'lib513.c'; then $(CYGPATH_W) 'lib513.c'; else $(CYGPATH_W) '$(srcdir)/lib513.c'; fi`
897811336
11337 ../../lib/lib513-timediff.o: ../../lib/timediff.c
11338 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib513-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib513-timediff.Tpo -c -o ../../lib/lib513-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11339 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib513-timediff.Tpo ../../lib/$(DEPDIR)/lib513-timediff.Po
11340 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib513-timediff.o' libtool=no @AMDEPBACKSLASH@
11341 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11342 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib513-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11343
11344 ../../lib/lib513-timediff.obj: ../../lib/timediff.c
11345 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib513-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib513-timediff.Tpo -c -o ../../lib/lib513-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11346 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib513-timediff.Tpo ../../lib/$(DEPDIR)/lib513-timediff.Po
11347 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib513-timediff.obj' libtool=no @AMDEPBACKSLASH@
11348 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11349 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib513-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11350
897911351 lib513-first.o: first.c
898011352 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib513_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib513-first.o -MD -MP -MF $(DEPDIR)/lib513-first.Tpo -c -o lib513-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
898111353 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib513-first.Tpo $(DEPDIR)/lib513-first.Po
900411376 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
900511377 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib514-lib514.obj `if test -f 'lib514.c'; then $(CYGPATH_W) 'lib514.c'; else $(CYGPATH_W) '$(srcdir)/lib514.c'; fi`
900611378
11379 ../../lib/lib514-timediff.o: ../../lib/timediff.c
11380 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib514-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib514-timediff.Tpo -c -o ../../lib/lib514-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11381 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib514-timediff.Tpo ../../lib/$(DEPDIR)/lib514-timediff.Po
11382 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib514-timediff.o' libtool=no @AMDEPBACKSLASH@
11383 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11384 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib514-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11385
11386 ../../lib/lib514-timediff.obj: ../../lib/timediff.c
11387 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib514-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib514-timediff.Tpo -c -o ../../lib/lib514-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11388 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib514-timediff.Tpo ../../lib/$(DEPDIR)/lib514-timediff.Po
11389 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib514-timediff.obj' libtool=no @AMDEPBACKSLASH@
11390 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11391 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib514-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11392
900711393 lib514-first.o: first.c
900811394 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib514_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib514-first.o -MD -MP -MF $(DEPDIR)/lib514-first.Tpo -c -o lib514-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
900911395 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib514-first.Tpo $(DEPDIR)/lib514-first.Po
903211418 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
903311419 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib515-lib515.obj `if test -f 'lib515.c'; then $(CYGPATH_W) 'lib515.c'; else $(CYGPATH_W) '$(srcdir)/lib515.c'; fi`
903411420
11421 ../../lib/lib515-timediff.o: ../../lib/timediff.c
11422 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib515-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib515-timediff.Tpo -c -o ../../lib/lib515-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11423 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib515-timediff.Tpo ../../lib/$(DEPDIR)/lib515-timediff.Po
11424 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib515-timediff.o' libtool=no @AMDEPBACKSLASH@
11425 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11426 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib515-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11427
11428 ../../lib/lib515-timediff.obj: ../../lib/timediff.c
11429 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib515-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib515-timediff.Tpo -c -o ../../lib/lib515-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11430 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib515-timediff.Tpo ../../lib/$(DEPDIR)/lib515-timediff.Po
11431 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib515-timediff.obj' libtool=no @AMDEPBACKSLASH@
11432 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11433 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib515-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11434
903511435 lib515-first.o: first.c
903611436 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib515_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib515-first.o -MD -MP -MF $(DEPDIR)/lib515-first.Tpo -c -o lib515-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
903711437 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib515-first.Tpo $(DEPDIR)/lib515-first.Po
906011460 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
906111461 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib516-lib516.obj `if test -f 'lib516.c'; then $(CYGPATH_W) 'lib516.c'; else $(CYGPATH_W) '$(srcdir)/lib516.c'; fi`
906211462
11463 ../../lib/lib516-timediff.o: ../../lib/timediff.c
11464 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib516-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib516-timediff.Tpo -c -o ../../lib/lib516-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11465 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib516-timediff.Tpo ../../lib/$(DEPDIR)/lib516-timediff.Po
11466 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib516-timediff.o' libtool=no @AMDEPBACKSLASH@
11467 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11468 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib516-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11469
11470 ../../lib/lib516-timediff.obj: ../../lib/timediff.c
11471 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib516-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib516-timediff.Tpo -c -o ../../lib/lib516-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11472 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib516-timediff.Tpo ../../lib/$(DEPDIR)/lib516-timediff.Po
11473 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib516-timediff.obj' libtool=no @AMDEPBACKSLASH@
11474 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11475 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib516-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11476
906311477 lib516-first.o: first.c
906411478 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib516_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib516-first.o -MD -MP -MF $(DEPDIR)/lib516-first.Tpo -c -o lib516-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
906511479 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib516-first.Tpo $(DEPDIR)/lib516-first.Po
908811502 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
908911503 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib517-lib517.obj `if test -f 'lib517.c'; then $(CYGPATH_W) 'lib517.c'; else $(CYGPATH_W) '$(srcdir)/lib517.c'; fi`
909011504
11505 ../../lib/lib517-timediff.o: ../../lib/timediff.c
11506 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib517-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib517-timediff.Tpo -c -o ../../lib/lib517-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11507 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib517-timediff.Tpo ../../lib/$(DEPDIR)/lib517-timediff.Po
11508 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib517-timediff.o' libtool=no @AMDEPBACKSLASH@
11509 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11510 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib517-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11511
11512 ../../lib/lib517-timediff.obj: ../../lib/timediff.c
11513 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib517-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib517-timediff.Tpo -c -o ../../lib/lib517-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11514 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib517-timediff.Tpo ../../lib/$(DEPDIR)/lib517-timediff.Po
11515 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib517-timediff.obj' libtool=no @AMDEPBACKSLASH@
11516 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11517 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib517-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11518
909111519 lib517-first.o: first.c
909211520 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib517_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib517-first.o -MD -MP -MF $(DEPDIR)/lib517-first.Tpo -c -o lib517-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
909311521 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib517-first.Tpo $(DEPDIR)/lib517-first.Po
911611544 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
911711545 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib518-lib518.obj `if test -f 'lib518.c'; then $(CYGPATH_W) 'lib518.c'; else $(CYGPATH_W) '$(srcdir)/lib518.c'; fi`
911811546
11547 ../../lib/lib518-timediff.o: ../../lib/timediff.c
11548 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib518-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib518-timediff.Tpo -c -o ../../lib/lib518-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11549 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib518-timediff.Tpo ../../lib/$(DEPDIR)/lib518-timediff.Po
11550 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib518-timediff.o' libtool=no @AMDEPBACKSLASH@
11551 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11552 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib518-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11553
11554 ../../lib/lib518-timediff.obj: ../../lib/timediff.c
11555 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib518-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib518-timediff.Tpo -c -o ../../lib/lib518-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11556 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib518-timediff.Tpo ../../lib/$(DEPDIR)/lib518-timediff.Po
11557 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib518-timediff.obj' libtool=no @AMDEPBACKSLASH@
11558 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11559 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib518-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11560
911911561 lib518-first.o: first.c
912011562 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib518_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib518-first.o -MD -MP -MF $(DEPDIR)/lib518-first.Tpo -c -o lib518-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
912111563 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib518-first.Tpo $(DEPDIR)/lib518-first.Po
917211614 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
917311615 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib519-lib519.obj `if test -f 'lib519.c'; then $(CYGPATH_W) 'lib519.c'; else $(CYGPATH_W) '$(srcdir)/lib519.c'; fi`
917411616
11617 ../../lib/lib519-timediff.o: ../../lib/timediff.c
11618 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib519-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib519-timediff.Tpo -c -o ../../lib/lib519-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11619 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib519-timediff.Tpo ../../lib/$(DEPDIR)/lib519-timediff.Po
11620 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib519-timediff.o' libtool=no @AMDEPBACKSLASH@
11621 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11622 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib519-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11623
11624 ../../lib/lib519-timediff.obj: ../../lib/timediff.c
11625 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib519-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib519-timediff.Tpo -c -o ../../lib/lib519-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11626 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib519-timediff.Tpo ../../lib/$(DEPDIR)/lib519-timediff.Po
11627 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib519-timediff.obj' libtool=no @AMDEPBACKSLASH@
11628 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11629 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib519-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11630
917511631 lib519-first.o: first.c
917611632 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib519_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib519-first.o -MD -MP -MF $(DEPDIR)/lib519-first.Tpo -c -o lib519-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
917711633 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib519-first.Tpo $(DEPDIR)/lib519-first.Po
920011656 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
920111657 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib520-lib520.obj `if test -f 'lib520.c'; then $(CYGPATH_W) 'lib520.c'; else $(CYGPATH_W) '$(srcdir)/lib520.c'; fi`
920211658
11659 ../../lib/lib520-timediff.o: ../../lib/timediff.c
11660 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib520-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib520-timediff.Tpo -c -o ../../lib/lib520-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11661 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib520-timediff.Tpo ../../lib/$(DEPDIR)/lib520-timediff.Po
11662 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib520-timediff.o' libtool=no @AMDEPBACKSLASH@
11663 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11664 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib520-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11665
11666 ../../lib/lib520-timediff.obj: ../../lib/timediff.c
11667 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib520-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib520-timediff.Tpo -c -o ../../lib/lib520-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11668 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib520-timediff.Tpo ../../lib/$(DEPDIR)/lib520-timediff.Po
11669 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib520-timediff.obj' libtool=no @AMDEPBACKSLASH@
11670 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11671 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib520-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11672
920311673 lib520-first.o: first.c
920411674 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib520_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib520-first.o -MD -MP -MF $(DEPDIR)/lib520-first.Tpo -c -o lib520-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
920511675 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib520-first.Tpo $(DEPDIR)/lib520-first.Po
922811698 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
922911699 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib521-lib521.obj `if test -f 'lib521.c'; then $(CYGPATH_W) 'lib521.c'; else $(CYGPATH_W) '$(srcdir)/lib521.c'; fi`
923011700
11701 ../../lib/lib521-timediff.o: ../../lib/timediff.c
11702 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib521-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib521-timediff.Tpo -c -o ../../lib/lib521-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11703 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib521-timediff.Tpo ../../lib/$(DEPDIR)/lib521-timediff.Po
11704 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib521-timediff.o' libtool=no @AMDEPBACKSLASH@
11705 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11706 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib521-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11707
11708 ../../lib/lib521-timediff.obj: ../../lib/timediff.c
11709 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib521-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib521-timediff.Tpo -c -o ../../lib/lib521-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11710 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib521-timediff.Tpo ../../lib/$(DEPDIR)/lib521-timediff.Po
11711 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib521-timediff.obj' libtool=no @AMDEPBACKSLASH@
11712 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11713 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib521-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11714
923111715 lib521-first.o: first.c
923211716 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib521_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib521-first.o -MD -MP -MF $(DEPDIR)/lib521-first.Tpo -c -o lib521-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
923311717 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib521-first.Tpo $(DEPDIR)/lib521-first.Po
925611740 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
925711741 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib523-lib523.obj `if test -f 'lib523.c'; then $(CYGPATH_W) 'lib523.c'; else $(CYGPATH_W) '$(srcdir)/lib523.c'; fi`
925811742
11743 ../../lib/lib523-timediff.o: ../../lib/timediff.c
11744 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib523-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib523-timediff.Tpo -c -o ../../lib/lib523-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11745 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib523-timediff.Tpo ../../lib/$(DEPDIR)/lib523-timediff.Po
11746 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib523-timediff.o' libtool=no @AMDEPBACKSLASH@
11747 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11748 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib523-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11749
11750 ../../lib/lib523-timediff.obj: ../../lib/timediff.c
11751 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib523-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib523-timediff.Tpo -c -o ../../lib/lib523-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11752 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib523-timediff.Tpo ../../lib/$(DEPDIR)/lib523-timediff.Po
11753 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib523-timediff.obj' libtool=no @AMDEPBACKSLASH@
11754 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11755 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib523-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11756
925911757 lib523-first.o: first.c
926011758 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib523_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib523-first.o -MD -MP -MF $(DEPDIR)/lib523-first.Tpo -c -o lib523-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
926111759 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib523-first.Tpo $(DEPDIR)/lib523-first.Po
928411782 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
928511783 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib524-lib524.obj `if test -f 'lib524.c'; then $(CYGPATH_W) 'lib524.c'; else $(CYGPATH_W) '$(srcdir)/lib524.c'; fi`
928611784
11785 ../../lib/lib524-timediff.o: ../../lib/timediff.c
11786 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib524-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib524-timediff.Tpo -c -o ../../lib/lib524-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11787 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib524-timediff.Tpo ../../lib/$(DEPDIR)/lib524-timediff.Po
11788 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib524-timediff.o' libtool=no @AMDEPBACKSLASH@
11789 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11790 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib524-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11791
11792 ../../lib/lib524-timediff.obj: ../../lib/timediff.c
11793 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib524-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib524-timediff.Tpo -c -o ../../lib/lib524-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11794 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib524-timediff.Tpo ../../lib/$(DEPDIR)/lib524-timediff.Po
11795 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib524-timediff.obj' libtool=no @AMDEPBACKSLASH@
11796 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11797 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib524-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11798
928711799 lib524-first.o: first.c
928811800 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib524_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib524-first.o -MD -MP -MF $(DEPDIR)/lib524-first.Tpo -c -o lib524-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
928911801 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib524-first.Tpo $(DEPDIR)/lib524-first.Po
931211824 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
931311825 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib525-lib525.obj `if test -f 'lib525.c'; then $(CYGPATH_W) 'lib525.c'; else $(CYGPATH_W) '$(srcdir)/lib525.c'; fi`
931411826
11827 ../../lib/lib525-timediff.o: ../../lib/timediff.c
11828 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib525-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib525-timediff.Tpo -c -o ../../lib/lib525-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11829 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib525-timediff.Tpo ../../lib/$(DEPDIR)/lib525-timediff.Po
11830 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib525-timediff.o' libtool=no @AMDEPBACKSLASH@
11831 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11832 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib525-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11833
11834 ../../lib/lib525-timediff.obj: ../../lib/timediff.c
11835 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib525-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib525-timediff.Tpo -c -o ../../lib/lib525-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11836 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib525-timediff.Tpo ../../lib/$(DEPDIR)/lib525-timediff.Po
11837 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib525-timediff.obj' libtool=no @AMDEPBACKSLASH@
11838 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11839 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib525-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11840
931511841 lib525-first.o: first.c
931611842 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib525_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib525-first.o -MD -MP -MF $(DEPDIR)/lib525-first.Tpo -c -o lib525-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
931711843 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib525-first.Tpo $(DEPDIR)/lib525-first.Po
938211908 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
938311909 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib526-lib526.obj `if test -f 'lib526.c'; then $(CYGPATH_W) 'lib526.c'; else $(CYGPATH_W) '$(srcdir)/lib526.c'; fi`
938411910
11911 ../../lib/lib526-timediff.o: ../../lib/timediff.c
11912 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib526-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib526-timediff.Tpo -c -o ../../lib/lib526-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11913 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib526-timediff.Tpo ../../lib/$(DEPDIR)/lib526-timediff.Po
11914 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib526-timediff.o' libtool=no @AMDEPBACKSLASH@
11915 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11916 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib526-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11917
11918 ../../lib/lib526-timediff.obj: ../../lib/timediff.c
11919 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib526-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib526-timediff.Tpo -c -o ../../lib/lib526-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11920 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib526-timediff.Tpo ../../lib/$(DEPDIR)/lib526-timediff.Po
11921 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib526-timediff.obj' libtool=no @AMDEPBACKSLASH@
11922 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11923 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib526-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11924
938511925 lib526-first.o: first.c
938611926 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib526_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib526-first.o -MD -MP -MF $(DEPDIR)/lib526-first.Tpo -c -o lib526-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
938711927 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib526-first.Tpo $(DEPDIR)/lib526-first.Po
943811978 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
943911979 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib527-lib526.obj `if test -f 'lib526.c'; then $(CYGPATH_W) 'lib526.c'; else $(CYGPATH_W) '$(srcdir)/lib526.c'; fi`
944011980
11981 ../../lib/lib527-timediff.o: ../../lib/timediff.c
11982 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib527-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib527-timediff.Tpo -c -o ../../lib/lib527-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11983 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib527-timediff.Tpo ../../lib/$(DEPDIR)/lib527-timediff.Po
11984 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib527-timediff.o' libtool=no @AMDEPBACKSLASH@
11985 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11986 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib527-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
11987
11988 ../../lib/lib527-timediff.obj: ../../lib/timediff.c
11989 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib527-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib527-timediff.Tpo -c -o ../../lib/lib527-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11990 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib527-timediff.Tpo ../../lib/$(DEPDIR)/lib527-timediff.Po
11991 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib527-timediff.obj' libtool=no @AMDEPBACKSLASH@
11992 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11993 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib527-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
11994
944111995 lib527-first.o: first.c
944211996 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib527_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib527-first.o -MD -MP -MF $(DEPDIR)/lib527-first.Tpo -c -o lib527-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
944311997 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib527-first.Tpo $(DEPDIR)/lib527-first.Po
949412048 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
949512049 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib529-lib525.obj `if test -f 'lib525.c'; then $(CYGPATH_W) 'lib525.c'; else $(CYGPATH_W) '$(srcdir)/lib525.c'; fi`
949612050
12051 ../../lib/lib529-timediff.o: ../../lib/timediff.c
12052 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib529-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib529-timediff.Tpo -c -o ../../lib/lib529-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12053 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib529-timediff.Tpo ../../lib/$(DEPDIR)/lib529-timediff.Po
12054 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib529-timediff.o' libtool=no @AMDEPBACKSLASH@
12055 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12056 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib529-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12057
12058 ../../lib/lib529-timediff.obj: ../../lib/timediff.c
12059 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib529-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib529-timediff.Tpo -c -o ../../lib/lib529-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12060 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib529-timediff.Tpo ../../lib/$(DEPDIR)/lib529-timediff.Po
12061 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib529-timediff.obj' libtool=no @AMDEPBACKSLASH@
12062 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12063 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib529-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12064
949712065 lib529-first.o: first.c
949812066 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib529_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib529-first.o -MD -MP -MF $(DEPDIR)/lib529-first.Tpo -c -o lib529-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
949912067 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib529-first.Tpo $(DEPDIR)/lib529-first.Po
956412132 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
956512133 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib530-lib530.obj `if test -f 'lib530.c'; then $(CYGPATH_W) 'lib530.c'; else $(CYGPATH_W) '$(srcdir)/lib530.c'; fi`
956612134
12135 ../../lib/lib530-timediff.o: ../../lib/timediff.c
12136 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib530-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib530-timediff.Tpo -c -o ../../lib/lib530-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12137 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib530-timediff.Tpo ../../lib/$(DEPDIR)/lib530-timediff.Po
12138 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib530-timediff.o' libtool=no @AMDEPBACKSLASH@
12139 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12140 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib530-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12141
12142 ../../lib/lib530-timediff.obj: ../../lib/timediff.c
12143 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib530-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib530-timediff.Tpo -c -o ../../lib/lib530-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12144 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib530-timediff.Tpo ../../lib/$(DEPDIR)/lib530-timediff.Po
12145 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib530-timediff.obj' libtool=no @AMDEPBACKSLASH@
12146 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12147 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib530-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12148
956712149 lib530-first.o: first.c
956812150 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib530_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib530-first.o -MD -MP -MF $(DEPDIR)/lib530-first.Tpo -c -o lib530-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
956912151 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib530-first.Tpo $(DEPDIR)/lib530-first.Po
962012202 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
962112203 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib532-lib526.obj `if test -f 'lib526.c'; then $(CYGPATH_W) 'lib526.c'; else $(CYGPATH_W) '$(srcdir)/lib526.c'; fi`
962212204
12205 ../../lib/lib532-timediff.o: ../../lib/timediff.c
12206 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib532-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib532-timediff.Tpo -c -o ../../lib/lib532-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12207 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib532-timediff.Tpo ../../lib/$(DEPDIR)/lib532-timediff.Po
12208 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib532-timediff.o' libtool=no @AMDEPBACKSLASH@
12209 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12210 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib532-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12211
12212 ../../lib/lib532-timediff.obj: ../../lib/timediff.c
12213 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib532-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib532-timediff.Tpo -c -o ../../lib/lib532-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12214 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib532-timediff.Tpo ../../lib/$(DEPDIR)/lib532-timediff.Po
12215 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib532-timediff.obj' libtool=no @AMDEPBACKSLASH@
12216 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12217 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib532-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12218
962312219 lib532-first.o: first.c
962412220 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib532_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib532-first.o -MD -MP -MF $(DEPDIR)/lib532-first.Tpo -c -o lib532-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
962512221 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib532-first.Tpo $(DEPDIR)/lib532-first.Po
967612272 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
967712273 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib533-lib533.obj `if test -f 'lib533.c'; then $(CYGPATH_W) 'lib533.c'; else $(CYGPATH_W) '$(srcdir)/lib533.c'; fi`
967812274
12275 ../../lib/lib533-timediff.o: ../../lib/timediff.c
12276 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib533-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib533-timediff.Tpo -c -o ../../lib/lib533-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12277 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib533-timediff.Tpo ../../lib/$(DEPDIR)/lib533-timediff.Po
12278 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib533-timediff.o' libtool=no @AMDEPBACKSLASH@
12279 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12280 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib533-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12281
12282 ../../lib/lib533-timediff.obj: ../../lib/timediff.c
12283 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib533-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib533-timediff.Tpo -c -o ../../lib/lib533-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12284 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib533-timediff.Tpo ../../lib/$(DEPDIR)/lib533-timediff.Po
12285 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib533-timediff.obj' libtool=no @AMDEPBACKSLASH@
12286 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12287 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib533-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12288
967912289 lib533-first.o: first.c
968012290 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib533_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib533-first.o -MD -MP -MF $(DEPDIR)/lib533-first.Tpo -c -o lib533-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
968112291 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib533-first.Tpo $(DEPDIR)/lib533-first.Po
973212342 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
973312343 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib537-lib537.obj `if test -f 'lib537.c'; then $(CYGPATH_W) 'lib537.c'; else $(CYGPATH_W) '$(srcdir)/lib537.c'; fi`
973412344
12345 ../../lib/lib537-timediff.o: ../../lib/timediff.c
12346 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib537-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib537-timediff.Tpo -c -o ../../lib/lib537-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12347 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib537-timediff.Tpo ../../lib/$(DEPDIR)/lib537-timediff.Po
12348 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib537-timediff.o' libtool=no @AMDEPBACKSLASH@
12349 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12350 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib537-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12351
12352 ../../lib/lib537-timediff.obj: ../../lib/timediff.c
12353 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib537-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib537-timediff.Tpo -c -o ../../lib/lib537-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12354 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib537-timediff.Tpo ../../lib/$(DEPDIR)/lib537-timediff.Po
12355 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib537-timediff.obj' libtool=no @AMDEPBACKSLASH@
12356 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12357 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib537-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12358
973512359 lib537-first.o: first.c
973612360 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib537_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib537-first.o -MD -MP -MF $(DEPDIR)/lib537-first.Tpo -c -o lib537-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
973712361 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib537-first.Tpo $(DEPDIR)/lib537-first.Po
978812412 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
978912413 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib539-lib539.obj `if test -f 'lib539.c'; then $(CYGPATH_W) 'lib539.c'; else $(CYGPATH_W) '$(srcdir)/lib539.c'; fi`
979012414
12415 ../../lib/lib539-timediff.o: ../../lib/timediff.c
12416 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib539-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib539-timediff.Tpo -c -o ../../lib/lib539-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12417 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib539-timediff.Tpo ../../lib/$(DEPDIR)/lib539-timediff.Po
12418 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib539-timediff.o' libtool=no @AMDEPBACKSLASH@
12419 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12420 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib539-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12421
12422 ../../lib/lib539-timediff.obj: ../../lib/timediff.c
12423 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib539-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib539-timediff.Tpo -c -o ../../lib/lib539-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12424 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib539-timediff.Tpo ../../lib/$(DEPDIR)/lib539-timediff.Po
12425 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib539-timediff.obj' libtool=no @AMDEPBACKSLASH@
12426 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12427 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib539-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12428
979112429 lib539-first.o: first.c
979212430 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib539_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib539-first.o -MD -MP -MF $(DEPDIR)/lib539-first.Tpo -c -o lib539-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
979312431 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib539-first.Tpo $(DEPDIR)/lib539-first.Po
981612454 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
981712455 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib540-lib540.obj `if test -f 'lib540.c'; then $(CYGPATH_W) 'lib540.c'; else $(CYGPATH_W) '$(srcdir)/lib540.c'; fi`
981812456
12457 ../../lib/lib540-timediff.o: ../../lib/timediff.c
12458 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib540-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib540-timediff.Tpo -c -o ../../lib/lib540-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12459 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib540-timediff.Tpo ../../lib/$(DEPDIR)/lib540-timediff.Po
12460 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib540-timediff.o' libtool=no @AMDEPBACKSLASH@
12461 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12462 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib540-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12463
12464 ../../lib/lib540-timediff.obj: ../../lib/timediff.c
12465 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib540-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib540-timediff.Tpo -c -o ../../lib/lib540-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12466 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib540-timediff.Tpo ../../lib/$(DEPDIR)/lib540-timediff.Po
12467 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib540-timediff.obj' libtool=no @AMDEPBACKSLASH@
12468 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12469 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib540-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12470
981912471 lib540-first.o: first.c
982012472 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib540_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib540-first.o -MD -MP -MF $(DEPDIR)/lib540-first.Tpo -c -o lib540-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
982112473 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib540-first.Tpo $(DEPDIR)/lib540-first.Po
987212524 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
987312525 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib541-lib541.obj `if test -f 'lib541.c'; then $(CYGPATH_W) 'lib541.c'; else $(CYGPATH_W) '$(srcdir)/lib541.c'; fi`
987412526
12527 ../../lib/lib541-timediff.o: ../../lib/timediff.c
12528 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib541-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib541-timediff.Tpo -c -o ../../lib/lib541-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12529 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib541-timediff.Tpo ../../lib/$(DEPDIR)/lib541-timediff.Po
12530 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib541-timediff.o' libtool=no @AMDEPBACKSLASH@
12531 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12532 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib541-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12533
12534 ../../lib/lib541-timediff.obj: ../../lib/timediff.c
12535 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib541-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib541-timediff.Tpo -c -o ../../lib/lib541-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12536 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib541-timediff.Tpo ../../lib/$(DEPDIR)/lib541-timediff.Po
12537 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib541-timediff.obj' libtool=no @AMDEPBACKSLASH@
12538 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12539 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib541-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12540
987512541 lib541-first.o: first.c
987612542 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib541_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib541-first.o -MD -MP -MF $(DEPDIR)/lib541-first.Tpo -c -o lib541-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
987712543 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib541-first.Tpo $(DEPDIR)/lib541-first.Po
991412580 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
991512581 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib542-lib542.obj `if test -f 'lib542.c'; then $(CYGPATH_W) 'lib542.c'; else $(CYGPATH_W) '$(srcdir)/lib542.c'; fi`
991612582
12583 ../../lib/lib542-timediff.o: ../../lib/timediff.c
12584 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib542-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib542-timediff.Tpo -c -o ../../lib/lib542-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12585 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib542-timediff.Tpo ../../lib/$(DEPDIR)/lib542-timediff.Po
12586 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib542-timediff.o' libtool=no @AMDEPBACKSLASH@
12587 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12588 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib542-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12589
12590 ../../lib/lib542-timediff.obj: ../../lib/timediff.c
12591 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib542-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib542-timediff.Tpo -c -o ../../lib/lib542-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12592 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib542-timediff.Tpo ../../lib/$(DEPDIR)/lib542-timediff.Po
12593 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib542-timediff.obj' libtool=no @AMDEPBACKSLASH@
12594 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12595 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib542-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12596
991712597 lib542-first.o: first.c
991812598 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib542_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib542-first.o -MD -MP -MF $(DEPDIR)/lib542-first.Tpo -c -o lib542-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
991912599 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib542-first.Tpo $(DEPDIR)/lib542-first.Po
994212622 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
994312623 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib543-lib543.obj `if test -f 'lib543.c'; then $(CYGPATH_W) 'lib543.c'; else $(CYGPATH_W) '$(srcdir)/lib543.c'; fi`
994412624
12625 ../../lib/lib543-timediff.o: ../../lib/timediff.c
12626 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib543-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib543-timediff.Tpo -c -o ../../lib/lib543-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12627 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib543-timediff.Tpo ../../lib/$(DEPDIR)/lib543-timediff.Po
12628 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib543-timediff.o' libtool=no @AMDEPBACKSLASH@
12629 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12630 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib543-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12631
12632 ../../lib/lib543-timediff.obj: ../../lib/timediff.c
12633 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib543-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib543-timediff.Tpo -c -o ../../lib/lib543-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12634 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib543-timediff.Tpo ../../lib/$(DEPDIR)/lib543-timediff.Po
12635 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib543-timediff.obj' libtool=no @AMDEPBACKSLASH@
12636 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12637 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib543-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12638
994512639 lib543-first.o: first.c
994612640 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib543_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib543-first.o -MD -MP -MF $(DEPDIR)/lib543-first.Tpo -c -o lib543-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
994712641 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib543-first.Tpo $(DEPDIR)/lib543-first.Po
997012664 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
997112665 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib544-lib544.obj `if test -f 'lib544.c'; then $(CYGPATH_W) 'lib544.c'; else $(CYGPATH_W) '$(srcdir)/lib544.c'; fi`
997212666
12667 ../../lib/lib544-timediff.o: ../../lib/timediff.c
12668 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib544-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib544-timediff.Tpo -c -o ../../lib/lib544-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12669 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib544-timediff.Tpo ../../lib/$(DEPDIR)/lib544-timediff.Po
12670 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib544-timediff.o' libtool=no @AMDEPBACKSLASH@
12671 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12672 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib544-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12673
12674 ../../lib/lib544-timediff.obj: ../../lib/timediff.c
12675 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib544-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib544-timediff.Tpo -c -o ../../lib/lib544-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12676 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib544-timediff.Tpo ../../lib/$(DEPDIR)/lib544-timediff.Po
12677 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib544-timediff.obj' libtool=no @AMDEPBACKSLASH@
12678 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12679 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib544-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12680
997312681 lib544-first.o: first.c
997412682 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib544_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib544-first.o -MD -MP -MF $(DEPDIR)/lib544-first.Tpo -c -o lib544-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
997512683 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib544-first.Tpo $(DEPDIR)/lib544-first.Po
999812706 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
999912707 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib545-lib544.obj `if test -f 'lib544.c'; then $(CYGPATH_W) 'lib544.c'; else $(CYGPATH_W) '$(srcdir)/lib544.c'; fi`
1000012708
12709 ../../lib/lib545-timediff.o: ../../lib/timediff.c
12710 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib545-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib545-timediff.Tpo -c -o ../../lib/lib545-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12711 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib545-timediff.Tpo ../../lib/$(DEPDIR)/lib545-timediff.Po
12712 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib545-timediff.o' libtool=no @AMDEPBACKSLASH@
12713 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12714 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib545-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12715
12716 ../../lib/lib545-timediff.obj: ../../lib/timediff.c
12717 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib545-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib545-timediff.Tpo -c -o ../../lib/lib545-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12718 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib545-timediff.Tpo ../../lib/$(DEPDIR)/lib545-timediff.Po
12719 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib545-timediff.obj' libtool=no @AMDEPBACKSLASH@
12720 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12721 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib545-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12722
1000112723 lib545-first.o: first.c
1000212724 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib545_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib545-first.o -MD -MP -MF $(DEPDIR)/lib545-first.Tpo -c -o lib545-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1000312725 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib545-first.Tpo $(DEPDIR)/lib545-first.Po
1002612748 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1002712749 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib547-lib547.obj `if test -f 'lib547.c'; then $(CYGPATH_W) 'lib547.c'; else $(CYGPATH_W) '$(srcdir)/lib547.c'; fi`
1002812750
12751 ../../lib/lib547-timediff.o: ../../lib/timediff.c
12752 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib547-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib547-timediff.Tpo -c -o ../../lib/lib547-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12753 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib547-timediff.Tpo ../../lib/$(DEPDIR)/lib547-timediff.Po
12754 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib547-timediff.o' libtool=no @AMDEPBACKSLASH@
12755 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12756 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib547-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12757
12758 ../../lib/lib547-timediff.obj: ../../lib/timediff.c
12759 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib547-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib547-timediff.Tpo -c -o ../../lib/lib547-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12760 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib547-timediff.Tpo ../../lib/$(DEPDIR)/lib547-timediff.Po
12761 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib547-timediff.obj' libtool=no @AMDEPBACKSLASH@
12762 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12763 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib547-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12764
1002912765 lib547-first.o: first.c
1003012766 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib547_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib547-first.o -MD -MP -MF $(DEPDIR)/lib547-first.Tpo -c -o lib547-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1003112767 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib547-first.Tpo $(DEPDIR)/lib547-first.Po
1005412790 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1005512791 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib548-lib547.obj `if test -f 'lib547.c'; then $(CYGPATH_W) 'lib547.c'; else $(CYGPATH_W) '$(srcdir)/lib547.c'; fi`
1005612792
12793 ../../lib/lib548-timediff.o: ../../lib/timediff.c
12794 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib548-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib548-timediff.Tpo -c -o ../../lib/lib548-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12795 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib548-timediff.Tpo ../../lib/$(DEPDIR)/lib548-timediff.Po
12796 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib548-timediff.o' libtool=no @AMDEPBACKSLASH@
12797 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12798 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib548-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12799
12800 ../../lib/lib548-timediff.obj: ../../lib/timediff.c
12801 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib548-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib548-timediff.Tpo -c -o ../../lib/lib548-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12802 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib548-timediff.Tpo ../../lib/$(DEPDIR)/lib548-timediff.Po
12803 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib548-timediff.obj' libtool=no @AMDEPBACKSLASH@
12804 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12805 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib548-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12806
1005712807 lib548-first.o: first.c
1005812808 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib548_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib548-first.o -MD -MP -MF $(DEPDIR)/lib548-first.Tpo -c -o lib548-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1005912809 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib548-first.Tpo $(DEPDIR)/lib548-first.Po
1008212832 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1008312833 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib549-lib549.obj `if test -f 'lib549.c'; then $(CYGPATH_W) 'lib549.c'; else $(CYGPATH_W) '$(srcdir)/lib549.c'; fi`
1008412834
12835 ../../lib/lib549-timediff.o: ../../lib/timediff.c
12836 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib549-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib549-timediff.Tpo -c -o ../../lib/lib549-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12837 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib549-timediff.Tpo ../../lib/$(DEPDIR)/lib549-timediff.Po
12838 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib549-timediff.o' libtool=no @AMDEPBACKSLASH@
12839 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12840 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib549-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12841
12842 ../../lib/lib549-timediff.obj: ../../lib/timediff.c
12843 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib549-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib549-timediff.Tpo -c -o ../../lib/lib549-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12844 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib549-timediff.Tpo ../../lib/$(DEPDIR)/lib549-timediff.Po
12845 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib549-timediff.obj' libtool=no @AMDEPBACKSLASH@
12846 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12847 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib549-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12848
1008512849 lib549-first.o: first.c
1008612850 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib549_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib549-first.o -MD -MP -MF $(DEPDIR)/lib549-first.Tpo -c -o lib549-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1008712851 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib549-first.Tpo $(DEPDIR)/lib549-first.Po
1011012874 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1011112875 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib552-lib552.obj `if test -f 'lib552.c'; then $(CYGPATH_W) 'lib552.c'; else $(CYGPATH_W) '$(srcdir)/lib552.c'; fi`
1011212876
12877 ../../lib/lib552-timediff.o: ../../lib/timediff.c
12878 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib552-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib552-timediff.Tpo -c -o ../../lib/lib552-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12879 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib552-timediff.Tpo ../../lib/$(DEPDIR)/lib552-timediff.Po
12880 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib552-timediff.o' libtool=no @AMDEPBACKSLASH@
12881 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12882 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib552-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12883
12884 ../../lib/lib552-timediff.obj: ../../lib/timediff.c
12885 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib552-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib552-timediff.Tpo -c -o ../../lib/lib552-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12886 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib552-timediff.Tpo ../../lib/$(DEPDIR)/lib552-timediff.Po
12887 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib552-timediff.obj' libtool=no @AMDEPBACKSLASH@
12888 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12889 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib552-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12890
1011312891 lib552-first.o: first.c
1011412892 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib552_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib552-first.o -MD -MP -MF $(DEPDIR)/lib552-first.Tpo -c -o lib552-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1011512893 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib552-first.Tpo $(DEPDIR)/lib552-first.Po
1015212930 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1015312931 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib553-lib553.obj `if test -f 'lib553.c'; then $(CYGPATH_W) 'lib553.c'; else $(CYGPATH_W) '$(srcdir)/lib553.c'; fi`
1015412932
12933 ../../lib/lib553-timediff.o: ../../lib/timediff.c
12934 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib553-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib553-timediff.Tpo -c -o ../../lib/lib553-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12935 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib553-timediff.Tpo ../../lib/$(DEPDIR)/lib553-timediff.Po
12936 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib553-timediff.o' libtool=no @AMDEPBACKSLASH@
12937 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12938 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib553-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12939
12940 ../../lib/lib553-timediff.obj: ../../lib/timediff.c
12941 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib553-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib553-timediff.Tpo -c -o ../../lib/lib553-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12942 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib553-timediff.Tpo ../../lib/$(DEPDIR)/lib553-timediff.Po
12943 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib553-timediff.obj' libtool=no @AMDEPBACKSLASH@
12944 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12945 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib553-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12946
1015512947 lib553-first.o: first.c
1015612948 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib553_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib553-first.o -MD -MP -MF $(DEPDIR)/lib553-first.Tpo -c -o lib553-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1015712949 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib553-first.Tpo $(DEPDIR)/lib553-first.Po
1018012972 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1018112973 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib554-lib554.obj `if test -f 'lib554.c'; then $(CYGPATH_W) 'lib554.c'; else $(CYGPATH_W) '$(srcdir)/lib554.c'; fi`
1018212974
12975 ../../lib/lib554-timediff.o: ../../lib/timediff.c
12976 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib554-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib554-timediff.Tpo -c -o ../../lib/lib554-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12977 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib554-timediff.Tpo ../../lib/$(DEPDIR)/lib554-timediff.Po
12978 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib554-timediff.o' libtool=no @AMDEPBACKSLASH@
12979 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12980 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib554-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
12981
12982 ../../lib/lib554-timediff.obj: ../../lib/timediff.c
12983 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib554-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib554-timediff.Tpo -c -o ../../lib/lib554-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12984 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib554-timediff.Tpo ../../lib/$(DEPDIR)/lib554-timediff.Po
12985 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib554-timediff.obj' libtool=no @AMDEPBACKSLASH@
12986 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12987 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib554-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
12988
1018312989 lib554-first.o: first.c
1018412990 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib554_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib554-first.o -MD -MP -MF $(DEPDIR)/lib554-first.Tpo -c -o lib554-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1018512991 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib554-first.Tpo $(DEPDIR)/lib554-first.Po
1020813014 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1020913015 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib555-lib555.obj `if test -f 'lib555.c'; then $(CYGPATH_W) 'lib555.c'; else $(CYGPATH_W) '$(srcdir)/lib555.c'; fi`
1021013016
13017 ../../lib/lib555-timediff.o: ../../lib/timediff.c
13018 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib555-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib555-timediff.Tpo -c -o ../../lib/lib555-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13019 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib555-timediff.Tpo ../../lib/$(DEPDIR)/lib555-timediff.Po
13020 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib555-timediff.o' libtool=no @AMDEPBACKSLASH@
13021 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13022 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib555-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13023
13024 ../../lib/lib555-timediff.obj: ../../lib/timediff.c
13025 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib555-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib555-timediff.Tpo -c -o ../../lib/lib555-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13026 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib555-timediff.Tpo ../../lib/$(DEPDIR)/lib555-timediff.Po
13027 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib555-timediff.obj' libtool=no @AMDEPBACKSLASH@
13028 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13029 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib555-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13030
1021113031 lib555-first.o: first.c
1021213032 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib555_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib555-first.o -MD -MP -MF $(DEPDIR)/lib555-first.Tpo -c -o lib555-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1021313033 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib555-first.Tpo $(DEPDIR)/lib555-first.Po
1026413084 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1026513085 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib556-lib556.obj `if test -f 'lib556.c'; then $(CYGPATH_W) 'lib556.c'; else $(CYGPATH_W) '$(srcdir)/lib556.c'; fi`
1026613086
13087 ../../lib/lib556-timediff.o: ../../lib/timediff.c
13088 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib556-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib556-timediff.Tpo -c -o ../../lib/lib556-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13089 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib556-timediff.Tpo ../../lib/$(DEPDIR)/lib556-timediff.Po
13090 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib556-timediff.o' libtool=no @AMDEPBACKSLASH@
13091 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13092 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib556-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13093
13094 ../../lib/lib556-timediff.obj: ../../lib/timediff.c
13095 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib556-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib556-timediff.Tpo -c -o ../../lib/lib556-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13096 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib556-timediff.Tpo ../../lib/$(DEPDIR)/lib556-timediff.Po
13097 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib556-timediff.obj' libtool=no @AMDEPBACKSLASH@
13098 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13099 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib556-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13100
1026713101 lib556-first.o: first.c
1026813102 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib556_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib556-first.o -MD -MP -MF $(DEPDIR)/lib556-first.Tpo -c -o lib556-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1026913103 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib556-first.Tpo $(DEPDIR)/lib556-first.Po
1030613140 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1030713141 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib557-lib557.obj `if test -f 'lib557.c'; then $(CYGPATH_W) 'lib557.c'; else $(CYGPATH_W) '$(srcdir)/lib557.c'; fi`
1030813142
13143 ../../lib/lib557-timediff.o: ../../lib/timediff.c
13144 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib557-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib557-timediff.Tpo -c -o ../../lib/lib557-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13145 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib557-timediff.Tpo ../../lib/$(DEPDIR)/lib557-timediff.Po
13146 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib557-timediff.o' libtool=no @AMDEPBACKSLASH@
13147 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13148 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib557-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13149
13150 ../../lib/lib557-timediff.obj: ../../lib/timediff.c
13151 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib557-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib557-timediff.Tpo -c -o ../../lib/lib557-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13152 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib557-timediff.Tpo ../../lib/$(DEPDIR)/lib557-timediff.Po
13153 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib557-timediff.obj' libtool=no @AMDEPBACKSLASH@
13154 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13155 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib557-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13156
1030913157 lib557-first.o: first.c
1031013158 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib557_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib557-first.o -MD -MP -MF $(DEPDIR)/lib557-first.Tpo -c -o lib557-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1031113159 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib557-first.Tpo $(DEPDIR)/lib557-first.Po
1033413182 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1033513183 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib558-lib558.obj `if test -f 'lib558.c'; then $(CYGPATH_W) 'lib558.c'; else $(CYGPATH_W) '$(srcdir)/lib558.c'; fi`
1033613184
13185 ../../lib/lib558-timediff.o: ../../lib/timediff.c
13186 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib558-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib558-timediff.Tpo -c -o ../../lib/lib558-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13187 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib558-timediff.Tpo ../../lib/$(DEPDIR)/lib558-timediff.Po
13188 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib558-timediff.o' libtool=no @AMDEPBACKSLASH@
13189 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13190 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib558-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13191
13192 ../../lib/lib558-timediff.obj: ../../lib/timediff.c
13193 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib558-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib558-timediff.Tpo -c -o ../../lib/lib558-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13194 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib558-timediff.Tpo ../../lib/$(DEPDIR)/lib558-timediff.Po
13195 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib558-timediff.obj' libtool=no @AMDEPBACKSLASH@
13196 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13197 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib558-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13198
1033713199 lib558-first.o: first.c
1033813200 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib558_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib558-first.o -MD -MP -MF $(DEPDIR)/lib558-first.Tpo -c -o lib558-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1033913201 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib558-first.Tpo $(DEPDIR)/lib558-first.Po
1036213224 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1036313225 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib559-lib559.obj `if test -f 'lib559.c'; then $(CYGPATH_W) 'lib559.c'; else $(CYGPATH_W) '$(srcdir)/lib559.c'; fi`
1036413226
13227 ../../lib/lib559-timediff.o: ../../lib/timediff.c
13228 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib559-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib559-timediff.Tpo -c -o ../../lib/lib559-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13229 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib559-timediff.Tpo ../../lib/$(DEPDIR)/lib559-timediff.Po
13230 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib559-timediff.o' libtool=no @AMDEPBACKSLASH@
13231 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13232 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib559-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13233
13234 ../../lib/lib559-timediff.obj: ../../lib/timediff.c
13235 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib559-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib559-timediff.Tpo -c -o ../../lib/lib559-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13236 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib559-timediff.Tpo ../../lib/$(DEPDIR)/lib559-timediff.Po
13237 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib559-timediff.obj' libtool=no @AMDEPBACKSLASH@
13238 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13239 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib559-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13240
1036513241 lib559-first.o: first.c
1036613242 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib559_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib559-first.o -MD -MP -MF $(DEPDIR)/lib559-first.Tpo -c -o lib559-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1036713243 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib559-first.Tpo $(DEPDIR)/lib559-first.Po
1039013266 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1039113267 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib560-lib560.obj `if test -f 'lib560.c'; then $(CYGPATH_W) 'lib560.c'; else $(CYGPATH_W) '$(srcdir)/lib560.c'; fi`
1039213268
13269 ../../lib/lib560-timediff.o: ../../lib/timediff.c
13270 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib560-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib560-timediff.Tpo -c -o ../../lib/lib560-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13271 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib560-timediff.Tpo ../../lib/$(DEPDIR)/lib560-timediff.Po
13272 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib560-timediff.o' libtool=no @AMDEPBACKSLASH@
13273 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13274 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib560-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13275
13276 ../../lib/lib560-timediff.obj: ../../lib/timediff.c
13277 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib560-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib560-timediff.Tpo -c -o ../../lib/lib560-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13278 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib560-timediff.Tpo ../../lib/$(DEPDIR)/lib560-timediff.Po
13279 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib560-timediff.obj' libtool=no @AMDEPBACKSLASH@
13280 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13281 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib560-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13282
1039313283 lib560-first.o: first.c
1039413284 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib560_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib560-first.o -MD -MP -MF $(DEPDIR)/lib560-first.Tpo -c -o lib560-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1039513285 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib560-first.Tpo $(DEPDIR)/lib560-first.Po
1044613336 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1044713337 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib562-lib562.obj `if test -f 'lib562.c'; then $(CYGPATH_W) 'lib562.c'; else $(CYGPATH_W) '$(srcdir)/lib562.c'; fi`
1044813338
13339 ../../lib/lib562-timediff.o: ../../lib/timediff.c
13340 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib562-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib562-timediff.Tpo -c -o ../../lib/lib562-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13341 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib562-timediff.Tpo ../../lib/$(DEPDIR)/lib562-timediff.Po
13342 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib562-timediff.o' libtool=no @AMDEPBACKSLASH@
13343 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13344 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib562-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13345
13346 ../../lib/lib562-timediff.obj: ../../lib/timediff.c
13347 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib562-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib562-timediff.Tpo -c -o ../../lib/lib562-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13348 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib562-timediff.Tpo ../../lib/$(DEPDIR)/lib562-timediff.Po
13349 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib562-timediff.obj' libtool=no @AMDEPBACKSLASH@
13350 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13351 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib562-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13352
1044913353 lib562-first.o: first.c
1045013354 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib562_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib562-first.o -MD -MP -MF $(DEPDIR)/lib562-first.Tpo -c -o lib562-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1045113355 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib562-first.Tpo $(DEPDIR)/lib562-first.Po
1047413378 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1047513379 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib564-lib564.obj `if test -f 'lib564.c'; then $(CYGPATH_W) 'lib564.c'; else $(CYGPATH_W) '$(srcdir)/lib564.c'; fi`
1047613380
13381 ../../lib/lib564-timediff.o: ../../lib/timediff.c
13382 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib564-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib564-timediff.Tpo -c -o ../../lib/lib564-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13383 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib564-timediff.Tpo ../../lib/$(DEPDIR)/lib564-timediff.Po
13384 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib564-timediff.o' libtool=no @AMDEPBACKSLASH@
13385 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13386 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib564-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13387
13388 ../../lib/lib564-timediff.obj: ../../lib/timediff.c
13389 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib564-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib564-timediff.Tpo -c -o ../../lib/lib564-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13390 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib564-timediff.Tpo ../../lib/$(DEPDIR)/lib564-timediff.Po
13391 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib564-timediff.obj' libtool=no @AMDEPBACKSLASH@
13392 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13393 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib564-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13394
1047713395 lib564-first.o: first.c
1047813396 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib564_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib564-first.o -MD -MP -MF $(DEPDIR)/lib564-first.Tpo -c -o lib564-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1047913397 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib564-first.Tpo $(DEPDIR)/lib564-first.Po
1053013448 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1053113449 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib565-lib510.obj `if test -f 'lib510.c'; then $(CYGPATH_W) 'lib510.c'; else $(CYGPATH_W) '$(srcdir)/lib510.c'; fi`
1053213450
13451 ../../lib/lib565-timediff.o: ../../lib/timediff.c
13452 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib565-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib565-timediff.Tpo -c -o ../../lib/lib565-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13453 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib565-timediff.Tpo ../../lib/$(DEPDIR)/lib565-timediff.Po
13454 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib565-timediff.o' libtool=no @AMDEPBACKSLASH@
13455 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13456 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib565-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13457
13458 ../../lib/lib565-timediff.obj: ../../lib/timediff.c
13459 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib565-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib565-timediff.Tpo -c -o ../../lib/lib565-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13460 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib565-timediff.Tpo ../../lib/$(DEPDIR)/lib565-timediff.Po
13461 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib565-timediff.obj' libtool=no @AMDEPBACKSLASH@
13462 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13463 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib565-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13464
1053313465 lib565-first.o: first.c
1053413466 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib565_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib565-first.o -MD -MP -MF $(DEPDIR)/lib565-first.Tpo -c -o lib565-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1053513467 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib565-first.Tpo $(DEPDIR)/lib565-first.Po
1055813490 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1055913491 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib566-lib566.obj `if test -f 'lib566.c'; then $(CYGPATH_W) 'lib566.c'; else $(CYGPATH_W) '$(srcdir)/lib566.c'; fi`
1056013492
13493 ../../lib/lib566-timediff.o: ../../lib/timediff.c
13494 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib566-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib566-timediff.Tpo -c -o ../../lib/lib566-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13495 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib566-timediff.Tpo ../../lib/$(DEPDIR)/lib566-timediff.Po
13496 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib566-timediff.o' libtool=no @AMDEPBACKSLASH@
13497 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13498 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib566-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13499
13500 ../../lib/lib566-timediff.obj: ../../lib/timediff.c
13501 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib566-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib566-timediff.Tpo -c -o ../../lib/lib566-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13502 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib566-timediff.Tpo ../../lib/$(DEPDIR)/lib566-timediff.Po
13503 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib566-timediff.obj' libtool=no @AMDEPBACKSLASH@
13504 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13505 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib566-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13506
1056113507 lib566-first.o: first.c
1056213508 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib566_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib566-first.o -MD -MP -MF $(DEPDIR)/lib566-first.Tpo -c -o lib566-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1056313509 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib566-first.Tpo $(DEPDIR)/lib566-first.Po
1060013546 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1060113547 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib567-lib567.obj `if test -f 'lib567.c'; then $(CYGPATH_W) 'lib567.c'; else $(CYGPATH_W) '$(srcdir)/lib567.c'; fi`
1060213548
13549 ../../lib/lib567-timediff.o: ../../lib/timediff.c
13550 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib567-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib567-timediff.Tpo -c -o ../../lib/lib567-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13551 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib567-timediff.Tpo ../../lib/$(DEPDIR)/lib567-timediff.Po
13552 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib567-timediff.o' libtool=no @AMDEPBACKSLASH@
13553 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13554 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib567-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13555
13556 ../../lib/lib567-timediff.obj: ../../lib/timediff.c
13557 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib567-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib567-timediff.Tpo -c -o ../../lib/lib567-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13558 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib567-timediff.Tpo ../../lib/$(DEPDIR)/lib567-timediff.Po
13559 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib567-timediff.obj' libtool=no @AMDEPBACKSLASH@
13560 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13561 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib567-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13562
1060313563 lib567-first.o: first.c
1060413564 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib567_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib567-first.o -MD -MP -MF $(DEPDIR)/lib567-first.Tpo -c -o lib567-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1060513565 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib567-first.Tpo $(DEPDIR)/lib567-first.Po
1062813588 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1062913589 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib568-lib568.obj `if test -f 'lib568.c'; then $(CYGPATH_W) 'lib568.c'; else $(CYGPATH_W) '$(srcdir)/lib568.c'; fi`
1063013590
13591 ../../lib/lib568-timediff.o: ../../lib/timediff.c
13592 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib568-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib568-timediff.Tpo -c -o ../../lib/lib568-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13593 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib568-timediff.Tpo ../../lib/$(DEPDIR)/lib568-timediff.Po
13594 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib568-timediff.o' libtool=no @AMDEPBACKSLASH@
13595 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13596 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib568-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13597
13598 ../../lib/lib568-timediff.obj: ../../lib/timediff.c
13599 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib568-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib568-timediff.Tpo -c -o ../../lib/lib568-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13600 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib568-timediff.Tpo ../../lib/$(DEPDIR)/lib568-timediff.Po
13601 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib568-timediff.obj' libtool=no @AMDEPBACKSLASH@
13602 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13603 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib568-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13604
1063113605 lib568-first.o: first.c
1063213606 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib568_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib568-first.o -MD -MP -MF $(DEPDIR)/lib568-first.Tpo -c -o lib568-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1063313607 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib568-first.Tpo $(DEPDIR)/lib568-first.Po
1067013644 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1067113645 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib569-lib569.obj `if test -f 'lib569.c'; then $(CYGPATH_W) 'lib569.c'; else $(CYGPATH_W) '$(srcdir)/lib569.c'; fi`
1067213646
13647 ../../lib/lib569-timediff.o: ../../lib/timediff.c
13648 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib569-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib569-timediff.Tpo -c -o ../../lib/lib569-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13649 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib569-timediff.Tpo ../../lib/$(DEPDIR)/lib569-timediff.Po
13650 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib569-timediff.o' libtool=no @AMDEPBACKSLASH@
13651 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13652 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib569-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13653
13654 ../../lib/lib569-timediff.obj: ../../lib/timediff.c
13655 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib569-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib569-timediff.Tpo -c -o ../../lib/lib569-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13656 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib569-timediff.Tpo ../../lib/$(DEPDIR)/lib569-timediff.Po
13657 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib569-timediff.obj' libtool=no @AMDEPBACKSLASH@
13658 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13659 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib569-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13660
1067313661 lib569-first.o: first.c
1067413662 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib569_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib569-first.o -MD -MP -MF $(DEPDIR)/lib569-first.Tpo -c -o lib569-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1067513663 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib569-first.Tpo $(DEPDIR)/lib569-first.Po
1071213700 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1071313701 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib570-lib570.obj `if test -f 'lib570.c'; then $(CYGPATH_W) 'lib570.c'; else $(CYGPATH_W) '$(srcdir)/lib570.c'; fi`
1071413702
13703 ../../lib/lib570-timediff.o: ../../lib/timediff.c
13704 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib570-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib570-timediff.Tpo -c -o ../../lib/lib570-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13705 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib570-timediff.Tpo ../../lib/$(DEPDIR)/lib570-timediff.Po
13706 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib570-timediff.o' libtool=no @AMDEPBACKSLASH@
13707 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13708 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib570-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13709
13710 ../../lib/lib570-timediff.obj: ../../lib/timediff.c
13711 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib570-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib570-timediff.Tpo -c -o ../../lib/lib570-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13712 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib570-timediff.Tpo ../../lib/$(DEPDIR)/lib570-timediff.Po
13713 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib570-timediff.obj' libtool=no @AMDEPBACKSLASH@
13714 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13715 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib570-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13716
1071513717 lib570-first.o: first.c
1071613718 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib570_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib570-first.o -MD -MP -MF $(DEPDIR)/lib570-first.Tpo -c -o lib570-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1071713719 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib570-first.Tpo $(DEPDIR)/lib570-first.Po
1074013742 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1074113743 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib571-lib571.obj `if test -f 'lib571.c'; then $(CYGPATH_W) 'lib571.c'; else $(CYGPATH_W) '$(srcdir)/lib571.c'; fi`
1074213744
13745 ../../lib/lib571-timediff.o: ../../lib/timediff.c
13746 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib571-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib571-timediff.Tpo -c -o ../../lib/lib571-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13747 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib571-timediff.Tpo ../../lib/$(DEPDIR)/lib571-timediff.Po
13748 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib571-timediff.o' libtool=no @AMDEPBACKSLASH@
13749 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13750 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib571-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13751
13752 ../../lib/lib571-timediff.obj: ../../lib/timediff.c
13753 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib571-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib571-timediff.Tpo -c -o ../../lib/lib571-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13754 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib571-timediff.Tpo ../../lib/$(DEPDIR)/lib571-timediff.Po
13755 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib571-timediff.obj' libtool=no @AMDEPBACKSLASH@
13756 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13757 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib571-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13758
1074313759 lib571-first.o: first.c
1074413760 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib571_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib571-first.o -MD -MP -MF $(DEPDIR)/lib571-first.Tpo -c -o lib571-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1074513761 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib571-first.Tpo $(DEPDIR)/lib571-first.Po
1079613812 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1079713813 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib572-lib572.obj `if test -f 'lib572.c'; then $(CYGPATH_W) 'lib572.c'; else $(CYGPATH_W) '$(srcdir)/lib572.c'; fi`
1079813814
13815 ../../lib/lib572-timediff.o: ../../lib/timediff.c
13816 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib572-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib572-timediff.Tpo -c -o ../../lib/lib572-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13817 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib572-timediff.Tpo ../../lib/$(DEPDIR)/lib572-timediff.Po
13818 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib572-timediff.o' libtool=no @AMDEPBACKSLASH@
13819 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13820 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib572-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13821
13822 ../../lib/lib572-timediff.obj: ../../lib/timediff.c
13823 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib572-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib572-timediff.Tpo -c -o ../../lib/lib572-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13824 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib572-timediff.Tpo ../../lib/$(DEPDIR)/lib572-timediff.Po
13825 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib572-timediff.obj' libtool=no @AMDEPBACKSLASH@
13826 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13827 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib572-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13828
1079913829 lib572-first.o: first.c
1080013830 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib572_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib572-first.o -MD -MP -MF $(DEPDIR)/lib572-first.Tpo -c -o lib572-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1080113831 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib572-first.Tpo $(DEPDIR)/lib572-first.Po
1083813868 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1083913869 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib573-lib573.obj `if test -f 'lib573.c'; then $(CYGPATH_W) 'lib573.c'; else $(CYGPATH_W) '$(srcdir)/lib573.c'; fi`
1084013870
13871 ../../lib/lib573-timediff.o: ../../lib/timediff.c
13872 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib573-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib573-timediff.Tpo -c -o ../../lib/lib573-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13873 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib573-timediff.Tpo ../../lib/$(DEPDIR)/lib573-timediff.Po
13874 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib573-timediff.o' libtool=no @AMDEPBACKSLASH@
13875 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13876 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib573-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13877
13878 ../../lib/lib573-timediff.obj: ../../lib/timediff.c
13879 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib573-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib573-timediff.Tpo -c -o ../../lib/lib573-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13880 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib573-timediff.Tpo ../../lib/$(DEPDIR)/lib573-timediff.Po
13881 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib573-timediff.obj' libtool=no @AMDEPBACKSLASH@
13882 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13883 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib573-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13884
1084113885 lib573-first.o: first.c
1084213886 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib573_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib573-first.o -MD -MP -MF $(DEPDIR)/lib573-first.Tpo -c -o lib573-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1084313887 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib573-first.Tpo $(DEPDIR)/lib573-first.Po
1090813952 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1090913953 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib574-lib574.obj `if test -f 'lib574.c'; then $(CYGPATH_W) 'lib574.c'; else $(CYGPATH_W) '$(srcdir)/lib574.c'; fi`
1091013954
13955 ../../lib/lib574-timediff.o: ../../lib/timediff.c
13956 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib574-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib574-timediff.Tpo -c -o ../../lib/lib574-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13957 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib574-timediff.Tpo ../../lib/$(DEPDIR)/lib574-timediff.Po
13958 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib574-timediff.o' libtool=no @AMDEPBACKSLASH@
13959 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13960 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib574-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13961
13962 ../../lib/lib574-timediff.obj: ../../lib/timediff.c
13963 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib574-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib574-timediff.Tpo -c -o ../../lib/lib574-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13964 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib574-timediff.Tpo ../../lib/$(DEPDIR)/lib574-timediff.Po
13965 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib574-timediff.obj' libtool=no @AMDEPBACKSLASH@
13966 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13967 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib574-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
13968
1091113969 lib574-first.o: first.c
1091213970 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib574_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib574-first.o -MD -MP -MF $(DEPDIR)/lib574-first.Tpo -c -o lib574-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1091313971 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib574-first.Tpo $(DEPDIR)/lib574-first.Po
1093613994 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1093713995 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib575-lib575.obj `if test -f 'lib575.c'; then $(CYGPATH_W) 'lib575.c'; else $(CYGPATH_W) '$(srcdir)/lib575.c'; fi`
1093813996
13997 ../../lib/lib575-timediff.o: ../../lib/timediff.c
13998 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib575-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib575-timediff.Tpo -c -o ../../lib/lib575-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
13999 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib575-timediff.Tpo ../../lib/$(DEPDIR)/lib575-timediff.Po
14000 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib575-timediff.o' libtool=no @AMDEPBACKSLASH@
14001 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14002 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib575-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14003
14004 ../../lib/lib575-timediff.obj: ../../lib/timediff.c
14005 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib575-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib575-timediff.Tpo -c -o ../../lib/lib575-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14006 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib575-timediff.Tpo ../../lib/$(DEPDIR)/lib575-timediff.Po
14007 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib575-timediff.obj' libtool=no @AMDEPBACKSLASH@
14008 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14009 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib575-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14010
1093914011 lib575-first.o: first.c
1094014012 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib575_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib575-first.o -MD -MP -MF $(DEPDIR)/lib575-first.Tpo -c -o lib575-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1094114013 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib575-first.Tpo $(DEPDIR)/lib575-first.Po
1099214064 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1099314065 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib576-lib576.obj `if test -f 'lib576.c'; then $(CYGPATH_W) 'lib576.c'; else $(CYGPATH_W) '$(srcdir)/lib576.c'; fi`
1099414066
14067 ../../lib/lib576-timediff.o: ../../lib/timediff.c
14068 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib576-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib576-timediff.Tpo -c -o ../../lib/lib576-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14069 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib576-timediff.Tpo ../../lib/$(DEPDIR)/lib576-timediff.Po
14070 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib576-timediff.o' libtool=no @AMDEPBACKSLASH@
14071 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14072 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib576-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14073
14074 ../../lib/lib576-timediff.obj: ../../lib/timediff.c
14075 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib576-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib576-timediff.Tpo -c -o ../../lib/lib576-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14076 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib576-timediff.Tpo ../../lib/$(DEPDIR)/lib576-timediff.Po
14077 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib576-timediff.obj' libtool=no @AMDEPBACKSLASH@
14078 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14079 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib576-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14080
1099514081 lib576-first.o: first.c
1099614082 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib576_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib576-first.o -MD -MP -MF $(DEPDIR)/lib576-first.Tpo -c -o lib576-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1099714083 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib576-first.Tpo $(DEPDIR)/lib576-first.Po
1102014106 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1102114107 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib578-lib578.obj `if test -f 'lib578.c'; then $(CYGPATH_W) 'lib578.c'; else $(CYGPATH_W) '$(srcdir)/lib578.c'; fi`
1102214108
14109 ../../lib/lib578-timediff.o: ../../lib/timediff.c
14110 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib578-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib578-timediff.Tpo -c -o ../../lib/lib578-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14111 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib578-timediff.Tpo ../../lib/$(DEPDIR)/lib578-timediff.Po
14112 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib578-timediff.o' libtool=no @AMDEPBACKSLASH@
14113 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14114 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib578-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14115
14116 ../../lib/lib578-timediff.obj: ../../lib/timediff.c
14117 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib578-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib578-timediff.Tpo -c -o ../../lib/lib578-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14118 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib578-timediff.Tpo ../../lib/$(DEPDIR)/lib578-timediff.Po
14119 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib578-timediff.obj' libtool=no @AMDEPBACKSLASH@
14120 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14121 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib578-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14122
1102314123 lib578-first.o: first.c
1102414124 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib578_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib578-first.o -MD -MP -MF $(DEPDIR)/lib578-first.Tpo -c -o lib578-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1102514125 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib578-first.Tpo $(DEPDIR)/lib578-first.Po
1106214162 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1106314163 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib579-lib579.obj `if test -f 'lib579.c'; then $(CYGPATH_W) 'lib579.c'; else $(CYGPATH_W) '$(srcdir)/lib579.c'; fi`
1106414164
14165 ../../lib/lib579-timediff.o: ../../lib/timediff.c
14166 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib579-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib579-timediff.Tpo -c -o ../../lib/lib579-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14167 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib579-timediff.Tpo ../../lib/$(DEPDIR)/lib579-timediff.Po
14168 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib579-timediff.o' libtool=no @AMDEPBACKSLASH@
14169 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14170 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib579-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14171
14172 ../../lib/lib579-timediff.obj: ../../lib/timediff.c
14173 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib579-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib579-timediff.Tpo -c -o ../../lib/lib579-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14174 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib579-timediff.Tpo ../../lib/$(DEPDIR)/lib579-timediff.Po
14175 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib579-timediff.obj' libtool=no @AMDEPBACKSLASH@
14176 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14177 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib579-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14178
1106514179 lib579-first.o: first.c
1106614180 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib579_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib579-first.o -MD -MP -MF $(DEPDIR)/lib579-first.Tpo -c -o lib579-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1106714181 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib579-first.Tpo $(DEPDIR)/lib579-first.Po
1110414218 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1110514219 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib582-lib582.obj `if test -f 'lib582.c'; then $(CYGPATH_W) 'lib582.c'; else $(CYGPATH_W) '$(srcdir)/lib582.c'; fi`
1110614220
14221 ../../lib/lib582-timediff.o: ../../lib/timediff.c
14222 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib582-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib582-timediff.Tpo -c -o ../../lib/lib582-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14223 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib582-timediff.Tpo ../../lib/$(DEPDIR)/lib582-timediff.Po
14224 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib582-timediff.o' libtool=no @AMDEPBACKSLASH@
14225 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14226 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib582-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14227
14228 ../../lib/lib582-timediff.obj: ../../lib/timediff.c
14229 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib582-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib582-timediff.Tpo -c -o ../../lib/lib582-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14230 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib582-timediff.Tpo ../../lib/$(DEPDIR)/lib582-timediff.Po
14231 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib582-timediff.obj' libtool=no @AMDEPBACKSLASH@
14232 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14233 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib582-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14234
1110714235 lib582-first.o: first.c
1110814236 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib582_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib582-first.o -MD -MP -MF $(DEPDIR)/lib582-first.Tpo -c -o lib582-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1110914237 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib582-first.Tpo $(DEPDIR)/lib582-first.Po
1117414302 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1117514303 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib583-lib583.obj `if test -f 'lib583.c'; then $(CYGPATH_W) 'lib583.c'; else $(CYGPATH_W) '$(srcdir)/lib583.c'; fi`
1117614304
14305 ../../lib/lib583-timediff.o: ../../lib/timediff.c
14306 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib583-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib583-timediff.Tpo -c -o ../../lib/lib583-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14307 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib583-timediff.Tpo ../../lib/$(DEPDIR)/lib583-timediff.Po
14308 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib583-timediff.o' libtool=no @AMDEPBACKSLASH@
14309 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14310 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib583-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14311
14312 ../../lib/lib583-timediff.obj: ../../lib/timediff.c
14313 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib583-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib583-timediff.Tpo -c -o ../../lib/lib583-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14314 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib583-timediff.Tpo ../../lib/$(DEPDIR)/lib583-timediff.Po
14315 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib583-timediff.obj' libtool=no @AMDEPBACKSLASH@
14316 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14317 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib583-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14318
1117714319 lib583-first.o: first.c
1117814320 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib583_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib583-first.o -MD -MP -MF $(DEPDIR)/lib583-first.Tpo -c -o lib583-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1117914321 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib583-first.Tpo $(DEPDIR)/lib583-first.Po
1120214344 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1120314345 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib584-lib589.obj `if test -f 'lib589.c'; then $(CYGPATH_W) 'lib589.c'; else $(CYGPATH_W) '$(srcdir)/lib589.c'; fi`
1120414346
14347 ../../lib/lib584-timediff.o: ../../lib/timediff.c
14348 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib584-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib584-timediff.Tpo -c -o ../../lib/lib584-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14349 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib584-timediff.Tpo ../../lib/$(DEPDIR)/lib584-timediff.Po
14350 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib584-timediff.o' libtool=no @AMDEPBACKSLASH@
14351 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14352 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib584-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14353
14354 ../../lib/lib584-timediff.obj: ../../lib/timediff.c
14355 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib584-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib584-timediff.Tpo -c -o ../../lib/lib584-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14356 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib584-timediff.Tpo ../../lib/$(DEPDIR)/lib584-timediff.Po
14357 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib584-timediff.obj' libtool=no @AMDEPBACKSLASH@
14358 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14359 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib584-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14360
1120514361 lib584-first.o: first.c
1120614362 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib584_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib584-first.o -MD -MP -MF $(DEPDIR)/lib584-first.Tpo -c -o lib584-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1120714363 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib584-first.Tpo $(DEPDIR)/lib584-first.Po
1123014386 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1123114387 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib585-lib500.obj `if test -f 'lib500.c'; then $(CYGPATH_W) 'lib500.c'; else $(CYGPATH_W) '$(srcdir)/lib500.c'; fi`
1123214388
14389 ../../lib/lib585-timediff.o: ../../lib/timediff.c
14390 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib585-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib585-timediff.Tpo -c -o ../../lib/lib585-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14391 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib585-timediff.Tpo ../../lib/$(DEPDIR)/lib585-timediff.Po
14392 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib585-timediff.o' libtool=no @AMDEPBACKSLASH@
14393 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14394 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib585-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14395
14396 ../../lib/lib585-timediff.obj: ../../lib/timediff.c
14397 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib585-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib585-timediff.Tpo -c -o ../../lib/lib585-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14398 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib585-timediff.Tpo ../../lib/$(DEPDIR)/lib585-timediff.Po
14399 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib585-timediff.obj' libtool=no @AMDEPBACKSLASH@
14400 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14401 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib585-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14402
1123314403 lib585-first.o: first.c
1123414404 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib585_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib585-first.o -MD -MP -MF $(DEPDIR)/lib585-first.Tpo -c -o lib585-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1123514405 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib585-first.Tpo $(DEPDIR)/lib585-first.Po
1130014470 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1130114471 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib586-lib586.obj `if test -f 'lib586.c'; then $(CYGPATH_W) 'lib586.c'; else $(CYGPATH_W) '$(srcdir)/lib586.c'; fi`
1130214472
14473 ../../lib/lib586-timediff.o: ../../lib/timediff.c
14474 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib586-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib586-timediff.Tpo -c -o ../../lib/lib586-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14475 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib586-timediff.Tpo ../../lib/$(DEPDIR)/lib586-timediff.Po
14476 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib586-timediff.o' libtool=no @AMDEPBACKSLASH@
14477 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14478 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib586-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14479
14480 ../../lib/lib586-timediff.obj: ../../lib/timediff.c
14481 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib586-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib586-timediff.Tpo -c -o ../../lib/lib586-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14482 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib586-timediff.Tpo ../../lib/$(DEPDIR)/lib586-timediff.Po
14483 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib586-timediff.obj' libtool=no @AMDEPBACKSLASH@
14484 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14485 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib586-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14486
1130314487 lib586-first.o: first.c
1130414488 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib586_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib586-first.o -MD -MP -MF $(DEPDIR)/lib586-first.Tpo -c -o lib586-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1130514489 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib586-first.Tpo $(DEPDIR)/lib586-first.Po
1132814512 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1132914513 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib587-lib554.obj `if test -f 'lib554.c'; then $(CYGPATH_W) 'lib554.c'; else $(CYGPATH_W) '$(srcdir)/lib554.c'; fi`
1133014514
14515 ../../lib/lib587-timediff.o: ../../lib/timediff.c
14516 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib587-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib587-timediff.Tpo -c -o ../../lib/lib587-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14517 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib587-timediff.Tpo ../../lib/$(DEPDIR)/lib587-timediff.Po
14518 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib587-timediff.o' libtool=no @AMDEPBACKSLASH@
14519 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14520 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib587-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14521
14522 ../../lib/lib587-timediff.obj: ../../lib/timediff.c
14523 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib587-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib587-timediff.Tpo -c -o ../../lib/lib587-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14524 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib587-timediff.Tpo ../../lib/$(DEPDIR)/lib587-timediff.Po
14525 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib587-timediff.obj' libtool=no @AMDEPBACKSLASH@
14526 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14527 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib587-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14528
1133114529 lib587-first.o: first.c
1133214530 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib587_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib587-first.o -MD -MP -MF $(DEPDIR)/lib587-first.Tpo -c -o lib587-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1133314531 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib587-first.Tpo $(DEPDIR)/lib587-first.Po
1135614554 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1135714555 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib589-lib589.obj `if test -f 'lib589.c'; then $(CYGPATH_W) 'lib589.c'; else $(CYGPATH_W) '$(srcdir)/lib589.c'; fi`
1135814556
14557 ../../lib/lib589-timediff.o: ../../lib/timediff.c
14558 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib589-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib589-timediff.Tpo -c -o ../../lib/lib589-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14559 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib589-timediff.Tpo ../../lib/$(DEPDIR)/lib589-timediff.Po
14560 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib589-timediff.o' libtool=no @AMDEPBACKSLASH@
14561 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14562 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib589-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14563
14564 ../../lib/lib589-timediff.obj: ../../lib/timediff.c
14565 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib589-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib589-timediff.Tpo -c -o ../../lib/lib589-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14566 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib589-timediff.Tpo ../../lib/$(DEPDIR)/lib589-timediff.Po
14567 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib589-timediff.obj' libtool=no @AMDEPBACKSLASH@
14568 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14569 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib589-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14570
1135914571 lib589-first.o: first.c
1136014572 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib589_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib589-first.o -MD -MP -MF $(DEPDIR)/lib589-first.Tpo -c -o lib589-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1136114573 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib589-first.Tpo $(DEPDIR)/lib589-first.Po
1138414596 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1138514597 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib590-lib590.obj `if test -f 'lib590.c'; then $(CYGPATH_W) 'lib590.c'; else $(CYGPATH_W) '$(srcdir)/lib590.c'; fi`
1138614598
14599 ../../lib/lib590-timediff.o: ../../lib/timediff.c
14600 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib590-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib590-timediff.Tpo -c -o ../../lib/lib590-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14601 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib590-timediff.Tpo ../../lib/$(DEPDIR)/lib590-timediff.Po
14602 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib590-timediff.o' libtool=no @AMDEPBACKSLASH@
14603 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14604 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib590-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14605
14606 ../../lib/lib590-timediff.obj: ../../lib/timediff.c
14607 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib590-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib590-timediff.Tpo -c -o ../../lib/lib590-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14608 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib590-timediff.Tpo ../../lib/$(DEPDIR)/lib590-timediff.Po
14609 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib590-timediff.obj' libtool=no @AMDEPBACKSLASH@
14610 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14611 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib590-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14612
1138714613 lib590-first.o: first.c
1138814614 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib590_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib590-first.o -MD -MP -MF $(DEPDIR)/lib590-first.Tpo -c -o lib590-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1138914615 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib590-first.Tpo $(DEPDIR)/lib590-first.Po
1141214638 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1141314639 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib591-lib591.obj `if test -f 'lib591.c'; then $(CYGPATH_W) 'lib591.c'; else $(CYGPATH_W) '$(srcdir)/lib591.c'; fi`
1141414640
14641 ../../lib/lib591-timediff.o: ../../lib/timediff.c
14642 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib591-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib591-timediff.Tpo -c -o ../../lib/lib591-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14643 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib591-timediff.Tpo ../../lib/$(DEPDIR)/lib591-timediff.Po
14644 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib591-timediff.o' libtool=no @AMDEPBACKSLASH@
14645 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14646 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib591-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14647
14648 ../../lib/lib591-timediff.obj: ../../lib/timediff.c
14649 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib591-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib591-timediff.Tpo -c -o ../../lib/lib591-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14650 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib591-timediff.Tpo ../../lib/$(DEPDIR)/lib591-timediff.Po
14651 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib591-timediff.obj' libtool=no @AMDEPBACKSLASH@
14652 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14653 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib591-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14654
1141514655 lib591-first.o: first.c
1141614656 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib591_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib591-first.o -MD -MP -MF $(DEPDIR)/lib591-first.Tpo -c -o lib591-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1141714657 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib591-first.Tpo $(DEPDIR)/lib591-first.Po
1148214722 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1148314723 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib597-lib597.obj `if test -f 'lib597.c'; then $(CYGPATH_W) 'lib597.c'; else $(CYGPATH_W) '$(srcdir)/lib597.c'; fi`
1148414724
14725 ../../lib/lib597-timediff.o: ../../lib/timediff.c
14726 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib597-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib597-timediff.Tpo -c -o ../../lib/lib597-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14727 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib597-timediff.Tpo ../../lib/$(DEPDIR)/lib597-timediff.Po
14728 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib597-timediff.o' libtool=no @AMDEPBACKSLASH@
14729 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14730 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib597-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14731
14732 ../../lib/lib597-timediff.obj: ../../lib/timediff.c
14733 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib597-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib597-timediff.Tpo -c -o ../../lib/lib597-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14734 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib597-timediff.Tpo ../../lib/$(DEPDIR)/lib597-timediff.Po
14735 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib597-timediff.obj' libtool=no @AMDEPBACKSLASH@
14736 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14737 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib597-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14738
1148514739 lib597-first.o: first.c
1148614740 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib597_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib597-first.o -MD -MP -MF $(DEPDIR)/lib597-first.Tpo -c -o lib597-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1148714741 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib597-first.Tpo $(DEPDIR)/lib597-first.Po
1153814792 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1153914793 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib598-lib598.obj `if test -f 'lib598.c'; then $(CYGPATH_W) 'lib598.c'; else $(CYGPATH_W) '$(srcdir)/lib598.c'; fi`
1154014794
14795 ../../lib/lib598-timediff.o: ../../lib/timediff.c
14796 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib598-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib598-timediff.Tpo -c -o ../../lib/lib598-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14797 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib598-timediff.Tpo ../../lib/$(DEPDIR)/lib598-timediff.Po
14798 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib598-timediff.o' libtool=no @AMDEPBACKSLASH@
14799 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14800 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib598-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14801
14802 ../../lib/lib598-timediff.obj: ../../lib/timediff.c
14803 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib598-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib598-timediff.Tpo -c -o ../../lib/lib598-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14804 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib598-timediff.Tpo ../../lib/$(DEPDIR)/lib598-timediff.Po
14805 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib598-timediff.obj' libtool=no @AMDEPBACKSLASH@
14806 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14807 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib598-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14808
1154114809 lib598-first.o: first.c
1154214810 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib598_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib598-first.o -MD -MP -MF $(DEPDIR)/lib598-first.Tpo -c -o lib598-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1154314811 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib598-first.Tpo $(DEPDIR)/lib598-first.Po
1156614834 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1156714835 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib599-lib599.obj `if test -f 'lib599.c'; then $(CYGPATH_W) 'lib599.c'; else $(CYGPATH_W) '$(srcdir)/lib599.c'; fi`
1156814836
14837 ../../lib/lib599-timediff.o: ../../lib/timediff.c
14838 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib599-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib599-timediff.Tpo -c -o ../../lib/lib599-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14839 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib599-timediff.Tpo ../../lib/$(DEPDIR)/lib599-timediff.Po
14840 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib599-timediff.o' libtool=no @AMDEPBACKSLASH@
14841 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14842 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib599-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14843
14844 ../../lib/lib599-timediff.obj: ../../lib/timediff.c
14845 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib599-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib599-timediff.Tpo -c -o ../../lib/lib599-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14846 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib599-timediff.Tpo ../../lib/$(DEPDIR)/lib599-timediff.Po
14847 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib599-timediff.obj' libtool=no @AMDEPBACKSLASH@
14848 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14849 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib599-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14850
1156914851 lib599-first.o: first.c
1157014852 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib599_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib599-first.o -MD -MP -MF $(DEPDIR)/lib599-first.Tpo -c -o lib599-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1157114853 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib599-first.Tpo $(DEPDIR)/lib599-first.Po
1160814890 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1160914891 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib643-lib643.obj `if test -f 'lib643.c'; then $(CYGPATH_W) 'lib643.c'; else $(CYGPATH_W) '$(srcdir)/lib643.c'; fi`
1161014892
14893 ../../lib/lib643-timediff.o: ../../lib/timediff.c
14894 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib643-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib643-timediff.Tpo -c -o ../../lib/lib643-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14895 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib643-timediff.Tpo ../../lib/$(DEPDIR)/lib643-timediff.Po
14896 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib643-timediff.o' libtool=no @AMDEPBACKSLASH@
14897 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14898 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib643-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14899
14900 ../../lib/lib643-timediff.obj: ../../lib/timediff.c
14901 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib643-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib643-timediff.Tpo -c -o ../../lib/lib643-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14902 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib643-timediff.Tpo ../../lib/$(DEPDIR)/lib643-timediff.Po
14903 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib643-timediff.obj' libtool=no @AMDEPBACKSLASH@
14904 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14905 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib643-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14906
1161114907 lib643-first.o: first.c
1161214908 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib643_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib643-first.o -MD -MP -MF $(DEPDIR)/lib643-first.Tpo -c -o lib643-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1161314909 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib643-first.Tpo $(DEPDIR)/lib643-first.Po
1163614932 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1163714933 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib645-lib643.obj `if test -f 'lib643.c'; then $(CYGPATH_W) 'lib643.c'; else $(CYGPATH_W) '$(srcdir)/lib643.c'; fi`
1163814934
14935 ../../lib/lib645-timediff.o: ../../lib/timediff.c
14936 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib645-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib645-timediff.Tpo -c -o ../../lib/lib645-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14937 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib645-timediff.Tpo ../../lib/$(DEPDIR)/lib645-timediff.Po
14938 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib645-timediff.o' libtool=no @AMDEPBACKSLASH@
14939 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14940 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib645-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14941
14942 ../../lib/lib645-timediff.obj: ../../lib/timediff.c
14943 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib645-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib645-timediff.Tpo -c -o ../../lib/lib645-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14944 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib645-timediff.Tpo ../../lib/$(DEPDIR)/lib645-timediff.Po
14945 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib645-timediff.obj' libtool=no @AMDEPBACKSLASH@
14946 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14947 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib645-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14948
1163914949 lib645-first.o: first.c
1164014950 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib645_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib645-first.o -MD -MP -MF $(DEPDIR)/lib645-first.Tpo -c -o lib645-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1164114951 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib645-first.Tpo $(DEPDIR)/lib645-first.Po
1166414974 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1166514975 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib650-lib650.obj `if test -f 'lib650.c'; then $(CYGPATH_W) 'lib650.c'; else $(CYGPATH_W) '$(srcdir)/lib650.c'; fi`
1166614976
14977 ../../lib/lib650-timediff.o: ../../lib/timediff.c
14978 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib650-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib650-timediff.Tpo -c -o ../../lib/lib650-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14979 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib650-timediff.Tpo ../../lib/$(DEPDIR)/lib650-timediff.Po
14980 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib650-timediff.o' libtool=no @AMDEPBACKSLASH@
14981 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14982 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib650-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
14983
14984 ../../lib/lib650-timediff.obj: ../../lib/timediff.c
14985 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib650-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib650-timediff.Tpo -c -o ../../lib/lib650-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14986 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib650-timediff.Tpo ../../lib/$(DEPDIR)/lib650-timediff.Po
14987 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib650-timediff.obj' libtool=no @AMDEPBACKSLASH@
14988 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14989 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib650-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
14990
1166714991 lib650-first.o: first.c
1166814992 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib650_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib650-first.o -MD -MP -MF $(DEPDIR)/lib650-first.Tpo -c -o lib650-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1166914993 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib650-first.Tpo $(DEPDIR)/lib650-first.Po
1169215016 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1169315017 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib651-lib651.obj `if test -f 'lib651.c'; then $(CYGPATH_W) 'lib651.c'; else $(CYGPATH_W) '$(srcdir)/lib651.c'; fi`
1169415018
15019 ../../lib/lib651-timediff.o: ../../lib/timediff.c
15020 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib651-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib651-timediff.Tpo -c -o ../../lib/lib651-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15021 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib651-timediff.Tpo ../../lib/$(DEPDIR)/lib651-timediff.Po
15022 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib651-timediff.o' libtool=no @AMDEPBACKSLASH@
15023 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15024 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib651-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15025
15026 ../../lib/lib651-timediff.obj: ../../lib/timediff.c
15027 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib651-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib651-timediff.Tpo -c -o ../../lib/lib651-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15028 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib651-timediff.Tpo ../../lib/$(DEPDIR)/lib651-timediff.Po
15029 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib651-timediff.obj' libtool=no @AMDEPBACKSLASH@
15030 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15031 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib651-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15032
1169515033 lib651-first.o: first.c
1169615034 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib651_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib651-first.o -MD -MP -MF $(DEPDIR)/lib651-first.Tpo -c -o lib651-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1169715035 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib651-first.Tpo $(DEPDIR)/lib651-first.Po
1172015058 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1172115059 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib652-lib652.obj `if test -f 'lib652.c'; then $(CYGPATH_W) 'lib652.c'; else $(CYGPATH_W) '$(srcdir)/lib652.c'; fi`
1172215060
15061 ../../lib/lib652-timediff.o: ../../lib/timediff.c
15062 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib652-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib652-timediff.Tpo -c -o ../../lib/lib652-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15063 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib652-timediff.Tpo ../../lib/$(DEPDIR)/lib652-timediff.Po
15064 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib652-timediff.o' libtool=no @AMDEPBACKSLASH@
15065 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15066 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib652-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15067
15068 ../../lib/lib652-timediff.obj: ../../lib/timediff.c
15069 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib652-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib652-timediff.Tpo -c -o ../../lib/lib652-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15070 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib652-timediff.Tpo ../../lib/$(DEPDIR)/lib652-timediff.Po
15071 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib652-timediff.obj' libtool=no @AMDEPBACKSLASH@
15072 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15073 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib652-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15074
1172315075 lib652-first.o: first.c
1172415076 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib652_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib652-first.o -MD -MP -MF $(DEPDIR)/lib652-first.Tpo -c -o lib652-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1172515077 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib652-first.Tpo $(DEPDIR)/lib652-first.Po
1174815100 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1174915101 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib653-lib653.obj `if test -f 'lib653.c'; then $(CYGPATH_W) 'lib653.c'; else $(CYGPATH_W) '$(srcdir)/lib653.c'; fi`
1175015102
15103 ../../lib/lib653-timediff.o: ../../lib/timediff.c
15104 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib653-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib653-timediff.Tpo -c -o ../../lib/lib653-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15105 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib653-timediff.Tpo ../../lib/$(DEPDIR)/lib653-timediff.Po
15106 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib653-timediff.o' libtool=no @AMDEPBACKSLASH@
15107 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15108 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib653-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15109
15110 ../../lib/lib653-timediff.obj: ../../lib/timediff.c
15111 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib653-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib653-timediff.Tpo -c -o ../../lib/lib653-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15112 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib653-timediff.Tpo ../../lib/$(DEPDIR)/lib653-timediff.Po
15113 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib653-timediff.obj' libtool=no @AMDEPBACKSLASH@
15114 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15115 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib653-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15116
1175115117 lib653-first.o: first.c
1175215118 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib653_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib653-first.o -MD -MP -MF $(DEPDIR)/lib653-first.Tpo -c -o lib653-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1175315119 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib653-first.Tpo $(DEPDIR)/lib653-first.Po
1177615142 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1177715143 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib654-lib654.obj `if test -f 'lib654.c'; then $(CYGPATH_W) 'lib654.c'; else $(CYGPATH_W) '$(srcdir)/lib654.c'; fi`
1177815144
15145 ../../lib/lib654-timediff.o: ../../lib/timediff.c
15146 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib654-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib654-timediff.Tpo -c -o ../../lib/lib654-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15147 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib654-timediff.Tpo ../../lib/$(DEPDIR)/lib654-timediff.Po
15148 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib654-timediff.o' libtool=no @AMDEPBACKSLASH@
15149 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15150 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib654-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15151
15152 ../../lib/lib654-timediff.obj: ../../lib/timediff.c
15153 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib654-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib654-timediff.Tpo -c -o ../../lib/lib654-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15154 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib654-timediff.Tpo ../../lib/$(DEPDIR)/lib654-timediff.Po
15155 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib654-timediff.obj' libtool=no @AMDEPBACKSLASH@
15156 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15157 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib654-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15158
1177915159 lib654-first.o: first.c
1178015160 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib654_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib654-first.o -MD -MP -MF $(DEPDIR)/lib654-first.Tpo -c -o lib654-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1178115161 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib654-first.Tpo $(DEPDIR)/lib654-first.Po
1180415184 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1180515185 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib655-lib655.obj `if test -f 'lib655.c'; then $(CYGPATH_W) 'lib655.c'; else $(CYGPATH_W) '$(srcdir)/lib655.c'; fi`
1180615186
15187 ../../lib/lib655-timediff.o: ../../lib/timediff.c
15188 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib655-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib655-timediff.Tpo -c -o ../../lib/lib655-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15189 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib655-timediff.Tpo ../../lib/$(DEPDIR)/lib655-timediff.Po
15190 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib655-timediff.o' libtool=no @AMDEPBACKSLASH@
15191 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15192 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib655-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15193
15194 ../../lib/lib655-timediff.obj: ../../lib/timediff.c
15195 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib655-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib655-timediff.Tpo -c -o ../../lib/lib655-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15196 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib655-timediff.Tpo ../../lib/$(DEPDIR)/lib655-timediff.Po
15197 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib655-timediff.obj' libtool=no @AMDEPBACKSLASH@
15198 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15199 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib655-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15200
1180715201 lib655-first.o: first.c
1180815202 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib655_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib655-first.o -MD -MP -MF $(DEPDIR)/lib655-first.Tpo -c -o lib655-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1180915203 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib655-first.Tpo $(DEPDIR)/lib655-first.Po
1183215226 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1183315227 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib658-lib658.obj `if test -f 'lib658.c'; then $(CYGPATH_W) 'lib658.c'; else $(CYGPATH_W) '$(srcdir)/lib658.c'; fi`
1183415228
15229 ../../lib/lib658-timediff.o: ../../lib/timediff.c
15230 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib658-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib658-timediff.Tpo -c -o ../../lib/lib658-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15231 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib658-timediff.Tpo ../../lib/$(DEPDIR)/lib658-timediff.Po
15232 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib658-timediff.o' libtool=no @AMDEPBACKSLASH@
15233 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15234 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib658-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15235
15236 ../../lib/lib658-timediff.obj: ../../lib/timediff.c
15237 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib658-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib658-timediff.Tpo -c -o ../../lib/lib658-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15238 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib658-timediff.Tpo ../../lib/$(DEPDIR)/lib658-timediff.Po
15239 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib658-timediff.obj' libtool=no @AMDEPBACKSLASH@
15240 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15241 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib658-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15242
1183515243 lib658-first.o: first.c
1183615244 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib658_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib658-first.o -MD -MP -MF $(DEPDIR)/lib658-first.Tpo -c -o lib658-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1183715245 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib658-first.Tpo $(DEPDIR)/lib658-first.Po
1188815296 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1188915297 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib659-lib659.obj `if test -f 'lib659.c'; then $(CYGPATH_W) 'lib659.c'; else $(CYGPATH_W) '$(srcdir)/lib659.c'; fi`
1189015298
15299 ../../lib/lib659-timediff.o: ../../lib/timediff.c
15300 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib659-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib659-timediff.Tpo -c -o ../../lib/lib659-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15301 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib659-timediff.Tpo ../../lib/$(DEPDIR)/lib659-timediff.Po
15302 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib659-timediff.o' libtool=no @AMDEPBACKSLASH@
15303 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15304 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib659-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15305
15306 ../../lib/lib659-timediff.obj: ../../lib/timediff.c
15307 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib659-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib659-timediff.Tpo -c -o ../../lib/lib659-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15308 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib659-timediff.Tpo ../../lib/$(DEPDIR)/lib659-timediff.Po
15309 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib659-timediff.obj' libtool=no @AMDEPBACKSLASH@
15310 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15311 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib659-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15312
1189115313 lib659-first.o: first.c
1189215314 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib659_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib659-first.o -MD -MP -MF $(DEPDIR)/lib659-first.Tpo -c -o lib659-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1189315315 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib659-first.Tpo $(DEPDIR)/lib659-first.Po
1194415366 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1194515367 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib661-lib661.obj `if test -f 'lib661.c'; then $(CYGPATH_W) 'lib661.c'; else $(CYGPATH_W) '$(srcdir)/lib661.c'; fi`
1194615368
15369 ../../lib/lib661-timediff.o: ../../lib/timediff.c
15370 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib661-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib661-timediff.Tpo -c -o ../../lib/lib661-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15371 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib661-timediff.Tpo ../../lib/$(DEPDIR)/lib661-timediff.Po
15372 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib661-timediff.o' libtool=no @AMDEPBACKSLASH@
15373 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15374 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib661-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15375
15376 ../../lib/lib661-timediff.obj: ../../lib/timediff.c
15377 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib661-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib661-timediff.Tpo -c -o ../../lib/lib661-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15378 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib661-timediff.Tpo ../../lib/$(DEPDIR)/lib661-timediff.Po
15379 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib661-timediff.obj' libtool=no @AMDEPBACKSLASH@
15380 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15381 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib661-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15382
1194715383 lib661-first.o: first.c
1194815384 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib661_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib661-first.o -MD -MP -MF $(DEPDIR)/lib661-first.Tpo -c -o lib661-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1194915385 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib661-first.Tpo $(DEPDIR)/lib661-first.Po
1197215408 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1197315409 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib666-lib666.obj `if test -f 'lib666.c'; then $(CYGPATH_W) 'lib666.c'; else $(CYGPATH_W) '$(srcdir)/lib666.c'; fi`
1197415410
15411 ../../lib/lib666-timediff.o: ../../lib/timediff.c
15412 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib666-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib666-timediff.Tpo -c -o ../../lib/lib666-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15413 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib666-timediff.Tpo ../../lib/$(DEPDIR)/lib666-timediff.Po
15414 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib666-timediff.o' libtool=no @AMDEPBACKSLASH@
15415 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15416 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib666-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15417
15418 ../../lib/lib666-timediff.obj: ../../lib/timediff.c
15419 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib666-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib666-timediff.Tpo -c -o ../../lib/lib666-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15420 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib666-timediff.Tpo ../../lib/$(DEPDIR)/lib666-timediff.Po
15421 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib666-timediff.obj' libtool=no @AMDEPBACKSLASH@
15422 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15423 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib666-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15424
1197515425 lib666-first.o: first.c
1197615426 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib666_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib666-first.o -MD -MP -MF $(DEPDIR)/lib666-first.Tpo -c -o lib666-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1197715427 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib666-first.Tpo $(DEPDIR)/lib666-first.Po
1200015450 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1200115451 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib667-lib667.obj `if test -f 'lib667.c'; then $(CYGPATH_W) 'lib667.c'; else $(CYGPATH_W) '$(srcdir)/lib667.c'; fi`
1200215452
15453 ../../lib/lib667-timediff.o: ../../lib/timediff.c
15454 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib667-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib667-timediff.Tpo -c -o ../../lib/lib667-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15455 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib667-timediff.Tpo ../../lib/$(DEPDIR)/lib667-timediff.Po
15456 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib667-timediff.o' libtool=no @AMDEPBACKSLASH@
15457 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15458 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib667-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15459
15460 ../../lib/lib667-timediff.obj: ../../lib/timediff.c
15461 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib667-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib667-timediff.Tpo -c -o ../../lib/lib667-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15462 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib667-timediff.Tpo ../../lib/$(DEPDIR)/lib667-timediff.Po
15463 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib667-timediff.obj' libtool=no @AMDEPBACKSLASH@
15464 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15465 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib667-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15466
1200315467 lib667-first.o: first.c
1200415468 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib667_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib667-first.o -MD -MP -MF $(DEPDIR)/lib667-first.Tpo -c -o lib667-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1200515469 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib667-first.Tpo $(DEPDIR)/lib667-first.Po
1205615520 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1205715521 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib668-lib668.obj `if test -f 'lib668.c'; then $(CYGPATH_W) 'lib668.c'; else $(CYGPATH_W) '$(srcdir)/lib668.c'; fi`
1205815522
15523 ../../lib/lib668-timediff.o: ../../lib/timediff.c
15524 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib668-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib668-timediff.Tpo -c -o ../../lib/lib668-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15525 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib668-timediff.Tpo ../../lib/$(DEPDIR)/lib668-timediff.Po
15526 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib668-timediff.o' libtool=no @AMDEPBACKSLASH@
15527 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15528 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib668-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15529
15530 ../../lib/lib668-timediff.obj: ../../lib/timediff.c
15531 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib668-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib668-timediff.Tpo -c -o ../../lib/lib668-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15532 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib668-timediff.Tpo ../../lib/$(DEPDIR)/lib668-timediff.Po
15533 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib668-timediff.obj' libtool=no @AMDEPBACKSLASH@
15534 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15535 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib668-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15536
1205915537 lib668-first.o: first.c
1206015538 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib668_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib668-first.o -MD -MP -MF $(DEPDIR)/lib668-first.Tpo -c -o lib668-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1206115539 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib668-first.Tpo $(DEPDIR)/lib668-first.Po
1211215590 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1211315591 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib670-lib670.obj `if test -f 'lib670.c'; then $(CYGPATH_W) 'lib670.c'; else $(CYGPATH_W) '$(srcdir)/lib670.c'; fi`
1211415592
15593 ../../lib/lib670-timediff.o: ../../lib/timediff.c
15594 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib670-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib670-timediff.Tpo -c -o ../../lib/lib670-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15595 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib670-timediff.Tpo ../../lib/$(DEPDIR)/lib670-timediff.Po
15596 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib670-timediff.o' libtool=no @AMDEPBACKSLASH@
15597 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15598 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib670-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15599
15600 ../../lib/lib670-timediff.obj: ../../lib/timediff.c
15601 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib670-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib670-timediff.Tpo -c -o ../../lib/lib670-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15602 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib670-timediff.Tpo ../../lib/$(DEPDIR)/lib670-timediff.Po
15603 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib670-timediff.obj' libtool=no @AMDEPBACKSLASH@
15604 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15605 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib670-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15606
1211515607 lib670-first.o: first.c
1211615608 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib670_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib670-first.o -MD -MP -MF $(DEPDIR)/lib670-first.Tpo -c -o lib670-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1211715609 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib670-first.Tpo $(DEPDIR)/lib670-first.Po
1216815660 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1216915661 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib671-lib670.obj `if test -f 'lib670.c'; then $(CYGPATH_W) 'lib670.c'; else $(CYGPATH_W) '$(srcdir)/lib670.c'; fi`
1217015662
15663 ../../lib/lib671-timediff.o: ../../lib/timediff.c
15664 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib671-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib671-timediff.Tpo -c -o ../../lib/lib671-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15665 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib671-timediff.Tpo ../../lib/$(DEPDIR)/lib671-timediff.Po
15666 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib671-timediff.o' libtool=no @AMDEPBACKSLASH@
15667 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15668 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib671-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15669
15670 ../../lib/lib671-timediff.obj: ../../lib/timediff.c
15671 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib671-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib671-timediff.Tpo -c -o ../../lib/lib671-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15672 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib671-timediff.Tpo ../../lib/$(DEPDIR)/lib671-timediff.Po
15673 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib671-timediff.obj' libtool=no @AMDEPBACKSLASH@
15674 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15675 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib671-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15676
1217115677 lib671-first.o: first.c
1217215678 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib671_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib671-first.o -MD -MP -MF $(DEPDIR)/lib671-first.Tpo -c -o lib671-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1217315679 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib671-first.Tpo $(DEPDIR)/lib671-first.Po
1222415730 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1222515731 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib672-lib670.obj `if test -f 'lib670.c'; then $(CYGPATH_W) 'lib670.c'; else $(CYGPATH_W) '$(srcdir)/lib670.c'; fi`
1222615732
15733 ../../lib/lib672-timediff.o: ../../lib/timediff.c
15734 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib672-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib672-timediff.Tpo -c -o ../../lib/lib672-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15735 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib672-timediff.Tpo ../../lib/$(DEPDIR)/lib672-timediff.Po
15736 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib672-timediff.o' libtool=no @AMDEPBACKSLASH@
15737 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15738 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib672-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15739
15740 ../../lib/lib672-timediff.obj: ../../lib/timediff.c
15741 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib672-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib672-timediff.Tpo -c -o ../../lib/lib672-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15742 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib672-timediff.Tpo ../../lib/$(DEPDIR)/lib672-timediff.Po
15743 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib672-timediff.obj' libtool=no @AMDEPBACKSLASH@
15744 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15745 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib672-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15746
1222715747 lib672-first.o: first.c
1222815748 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib672_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib672-first.o -MD -MP -MF $(DEPDIR)/lib672-first.Tpo -c -o lib672-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1222915749 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib672-first.Tpo $(DEPDIR)/lib672-first.Po
1228015800 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1228115801 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib673-lib670.obj `if test -f 'lib670.c'; then $(CYGPATH_W) 'lib670.c'; else $(CYGPATH_W) '$(srcdir)/lib670.c'; fi`
1228215802
15803 ../../lib/lib673-timediff.o: ../../lib/timediff.c
15804 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib673-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib673-timediff.Tpo -c -o ../../lib/lib673-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15805 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib673-timediff.Tpo ../../lib/$(DEPDIR)/lib673-timediff.Po
15806 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib673-timediff.o' libtool=no @AMDEPBACKSLASH@
15807 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15808 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib673-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15809
15810 ../../lib/lib673-timediff.obj: ../../lib/timediff.c
15811 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib673-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib673-timediff.Tpo -c -o ../../lib/lib673-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15812 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib673-timediff.Tpo ../../lib/$(DEPDIR)/lib673-timediff.Po
15813 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib673-timediff.obj' libtool=no @AMDEPBACKSLASH@
15814 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15815 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib673-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15816
1228315817 lib673-first.o: first.c
1228415818 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib673_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib673-first.o -MD -MP -MF $(DEPDIR)/lib673-first.Tpo -c -o lib673-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1228515819 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib673-first.Tpo $(DEPDIR)/lib673-first.Po
1233615870 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1233715871 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib674-lib674.obj `if test -f 'lib674.c'; then $(CYGPATH_W) 'lib674.c'; else $(CYGPATH_W) '$(srcdir)/lib674.c'; fi`
1233815872
15873 ../../lib/lib674-timediff.o: ../../lib/timediff.c
15874 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib674-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib674-timediff.Tpo -c -o ../../lib/lib674-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15875 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib674-timediff.Tpo ../../lib/$(DEPDIR)/lib674-timediff.Po
15876 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib674-timediff.o' libtool=no @AMDEPBACKSLASH@
15877 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15878 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib674-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15879
15880 ../../lib/lib674-timediff.obj: ../../lib/timediff.c
15881 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib674-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib674-timediff.Tpo -c -o ../../lib/lib674-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15882 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib674-timediff.Tpo ../../lib/$(DEPDIR)/lib674-timediff.Po
15883 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib674-timediff.obj' libtool=no @AMDEPBACKSLASH@
15884 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15885 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib674-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15886
1233915887 lib674-first.o: first.c
1234015888 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib674_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib674-first.o -MD -MP -MF $(DEPDIR)/lib674-first.Tpo -c -o lib674-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1234115889 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib674-first.Tpo $(DEPDIR)/lib674-first.Po
1239215940 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1239315941 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib676-lib676.obj `if test -f 'lib676.c'; then $(CYGPATH_W) 'lib676.c'; else $(CYGPATH_W) '$(srcdir)/lib676.c'; fi`
1239415942
15943 ../../lib/lib676-timediff.o: ../../lib/timediff.c
15944 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib676-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib676-timediff.Tpo -c -o ../../lib/lib676-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15945 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib676-timediff.Tpo ../../lib/$(DEPDIR)/lib676-timediff.Po
15946 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib676-timediff.o' libtool=no @AMDEPBACKSLASH@
15947 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15948 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib676-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
15949
15950 ../../lib/lib676-timediff.obj: ../../lib/timediff.c
15951 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib676-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib676-timediff.Tpo -c -o ../../lib/lib676-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15952 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib676-timediff.Tpo ../../lib/$(DEPDIR)/lib676-timediff.Po
15953 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib676-timediff.obj' libtool=no @AMDEPBACKSLASH@
15954 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15955 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib676-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
15956
1239515957 lib676-first.o: first.c
1239615958 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib676_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib676-first.o -MD -MP -MF $(DEPDIR)/lib676-first.Tpo -c -o lib676-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1239715959 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib676-first.Tpo $(DEPDIR)/lib676-first.Po
1244816010 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1244916011 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib677-lib677.obj `if test -f 'lib677.c'; then $(CYGPATH_W) 'lib677.c'; else $(CYGPATH_W) '$(srcdir)/lib677.c'; fi`
1245016012
16013 ../../lib/lib677-timediff.o: ../../lib/timediff.c
16014 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib677-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib677-timediff.Tpo -c -o ../../lib/lib677-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16015 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib677-timediff.Tpo ../../lib/$(DEPDIR)/lib677-timediff.Po
16016 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib677-timediff.o' libtool=no @AMDEPBACKSLASH@
16017 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16018 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib677-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16019
16020 ../../lib/lib677-timediff.obj: ../../lib/timediff.c
16021 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib677-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib677-timediff.Tpo -c -o ../../lib/lib677-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16022 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib677-timediff.Tpo ../../lib/$(DEPDIR)/lib677-timediff.Po
16023 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib677-timediff.obj' libtool=no @AMDEPBACKSLASH@
16024 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16025 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib677-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16026
1245116027 lib677-first.o: first.c
1245216028 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib677_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib677-first.o -MD -MP -MF $(DEPDIR)/lib677-first.Tpo -c -o lib677-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1245316029 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib677-first.Tpo $(DEPDIR)/lib677-first.Po
1251816094 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1251916095 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib678-lib678.obj `if test -f 'lib678.c'; then $(CYGPATH_W) 'lib678.c'; else $(CYGPATH_W) '$(srcdir)/lib678.c'; fi`
1252016096
16097 ../../lib/lib678-timediff.o: ../../lib/timediff.c
16098 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib678-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/lib678-timediff.Tpo -c -o ../../lib/lib678-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16099 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib678-timediff.Tpo ../../lib/$(DEPDIR)/lib678-timediff.Po
16100 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib678-timediff.o' libtool=no @AMDEPBACKSLASH@
16101 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16102 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib678-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16103
16104 ../../lib/lib678-timediff.obj: ../../lib/timediff.c
16105 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/lib678-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/lib678-timediff.Tpo -c -o ../../lib/lib678-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16106 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/lib678-timediff.Tpo ../../lib/$(DEPDIR)/lib678-timediff.Po
16107 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/lib678-timediff.obj' libtool=no @AMDEPBACKSLASH@
16108 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16109 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/lib678-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16110
1252116111 lib678-first.o: first.c
1252216112 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib678_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib678-first.o -MD -MP -MF $(DEPDIR)/lib678-first.Tpo -c -o lib678-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1252316113 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/lib678-first.Tpo $(DEPDIR)/lib678-first.Po
1258816178 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1258916179 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libauthretry-libauthretry.obj `if test -f 'libauthretry.c'; then $(CYGPATH_W) 'libauthretry.c'; else $(CYGPATH_W) '$(srcdir)/libauthretry.c'; fi`
1259016180
16181 ../../lib/libauthretry-timediff.o: ../../lib/timediff.c
16182 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libauthretry-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/libauthretry-timediff.Tpo -c -o ../../lib/libauthretry-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16183 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libauthretry-timediff.Tpo ../../lib/$(DEPDIR)/libauthretry-timediff.Po
16184 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libauthretry-timediff.o' libtool=no @AMDEPBACKSLASH@
16185 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16186 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libauthretry-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16187
16188 ../../lib/libauthretry-timediff.obj: ../../lib/timediff.c
16189 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libauthretry-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/libauthretry-timediff.Tpo -c -o ../../lib/libauthretry-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16190 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libauthretry-timediff.Tpo ../../lib/$(DEPDIR)/libauthretry-timediff.Po
16191 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libauthretry-timediff.obj' libtool=no @AMDEPBACKSLASH@
16192 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16193 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libauthretry-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16194
1259116195 libauthretry-first.o: first.c
1259216196 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libauthretry_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libauthretry-first.o -MD -MP -MF $(DEPDIR)/libauthretry-first.Tpo -c -o libauthretry-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1259316197 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libauthretry-first.Tpo $(DEPDIR)/libauthretry-first.Po
1261616220 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1261716221 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libntlmconnect-libntlmconnect.obj `if test -f 'libntlmconnect.c'; then $(CYGPATH_W) 'libntlmconnect.c'; else $(CYGPATH_W) '$(srcdir)/libntlmconnect.c'; fi`
1261816222
16223 ../../lib/libntlmconnect-timediff.o: ../../lib/timediff.c
16224 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libntlmconnect-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/libntlmconnect-timediff.Tpo -c -o ../../lib/libntlmconnect-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16225 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libntlmconnect-timediff.Tpo ../../lib/$(DEPDIR)/libntlmconnect-timediff.Po
16226 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libntlmconnect-timediff.o' libtool=no @AMDEPBACKSLASH@
16227 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16228 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libntlmconnect-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16229
16230 ../../lib/libntlmconnect-timediff.obj: ../../lib/timediff.c
16231 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libntlmconnect-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/libntlmconnect-timediff.Tpo -c -o ../../lib/libntlmconnect-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16232 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libntlmconnect-timediff.Tpo ../../lib/$(DEPDIR)/libntlmconnect-timediff.Po
16233 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libntlmconnect-timediff.obj' libtool=no @AMDEPBACKSLASH@
16234 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16235 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libntlmconnect-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16236
1261916237 libntlmconnect-first.o: first.c
1262016238 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libntlmconnect_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libntlmconnect-first.o -MD -MP -MF $(DEPDIR)/libntlmconnect-first.Tpo -c -o libntlmconnect-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1262116239 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libntlmconnect-first.Tpo $(DEPDIR)/libntlmconnect-first.Po
1267116289 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libprereq.c' object='libprereq-libprereq.obj' libtool=no @AMDEPBACKSLASH@
1267216290 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1267316291 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libprereq-libprereq.obj `if test -f 'libprereq.c'; then $(CYGPATH_W) 'libprereq.c'; else $(CYGPATH_W) '$(srcdir)/libprereq.c'; fi`
16292
16293 ../../lib/libprereq-timediff.o: ../../lib/timediff.c
16294 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libprereq-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/libprereq-timediff.Tpo -c -o ../../lib/libprereq-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16295 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libprereq-timediff.Tpo ../../lib/$(DEPDIR)/libprereq-timediff.Po
16296 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libprereq-timediff.o' libtool=no @AMDEPBACKSLASH@
16297 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16298 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libprereq-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
16299
16300 ../../lib/libprereq-timediff.obj: ../../lib/timediff.c
16301 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ../../lib/libprereq-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/libprereq-timediff.Tpo -c -o ../../lib/libprereq-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
16302 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/libprereq-timediff.Tpo ../../lib/$(DEPDIR)/libprereq-timediff.Po
16303 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/libprereq-timediff.obj' libtool=no @AMDEPBACKSLASH@
16304 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16305 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ../../lib/libprereq-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1267416306
1267516307 libprereq-first.o: first.c
1267616308 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprereq_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libprereq-first.o -MD -MP -MF $(DEPDIR)/libprereq-first.Tpo -c -o libprereq-first.o `test -f 'first.c' || echo '$(srcdir)/'`first.c
1285316485 -rm -f ../../lib/$(DEPDIR)/chkdecimalpoint-mprintf.Po
1285416486 -rm -f ../../lib/$(DEPDIR)/chkdecimalpoint-strdup.Po
1285516487 -rm -f ../../lib/$(DEPDIR)/chkhostname-curl_gethostname.Po
16488 -rm -f ../../lib/$(DEPDIR)/lib1156-timediff.Po
1285616489 -rm -f ../../lib/$(DEPDIR)/lib1156-warnless.Po
16490 -rm -f ../../lib/$(DEPDIR)/lib1500-timediff.Po
16491 -rm -f ../../lib/$(DEPDIR)/lib1501-timediff.Po
1285716492 -rm -f ../../lib/$(DEPDIR)/lib1501-warnless.Po
16493 -rm -f ../../lib/$(DEPDIR)/lib1502-timediff.Po
1285816494 -rm -f ../../lib/$(DEPDIR)/lib1502-warnless.Po
16495 -rm -f ../../lib/$(DEPDIR)/lib1503-timediff.Po
1285916496 -rm -f ../../lib/$(DEPDIR)/lib1503-warnless.Po
16497 -rm -f ../../lib/$(DEPDIR)/lib1504-timediff.Po
1286016498 -rm -f ../../lib/$(DEPDIR)/lib1504-warnless.Po
16499 -rm -f ../../lib/$(DEPDIR)/lib1505-timediff.Po
1286116500 -rm -f ../../lib/$(DEPDIR)/lib1505-warnless.Po
16501 -rm -f ../../lib/$(DEPDIR)/lib1506-timediff.Po
1286216502 -rm -f ../../lib/$(DEPDIR)/lib1506-warnless.Po
16503 -rm -f ../../lib/$(DEPDIR)/lib1507-timediff.Po
1286316504 -rm -f ../../lib/$(DEPDIR)/lib1507-warnless.Po
16505 -rm -f ../../lib/$(DEPDIR)/lib1508-timediff.Po
1286416506 -rm -f ../../lib/$(DEPDIR)/lib1508-warnless.Po
16507 -rm -f ../../lib/$(DEPDIR)/lib1509-timediff.Po
1286516508 -rm -f ../../lib/$(DEPDIR)/lib1509-warnless.Po
16509 -rm -f ../../lib/$(DEPDIR)/lib1510-timediff.Po
1286616510 -rm -f ../../lib/$(DEPDIR)/lib1510-warnless.Po
16511 -rm -f ../../lib/$(DEPDIR)/lib1511-timediff.Po
1286716512 -rm -f ../../lib/$(DEPDIR)/lib1511-warnless.Po
16513 -rm -f ../../lib/$(DEPDIR)/lib1512-timediff.Po
1286816514 -rm -f ../../lib/$(DEPDIR)/lib1512-warnless.Po
16515 -rm -f ../../lib/$(DEPDIR)/lib1513-timediff.Po
1286916516 -rm -f ../../lib/$(DEPDIR)/lib1513-warnless.Po
16517 -rm -f ../../lib/$(DEPDIR)/lib1514-timediff.Po
1287016518 -rm -f ../../lib/$(DEPDIR)/lib1514-warnless.Po
16519 -rm -f ../../lib/$(DEPDIR)/lib1515-timediff.Po
1287116520 -rm -f ../../lib/$(DEPDIR)/lib1515-warnless.Po
16521 -rm -f ../../lib/$(DEPDIR)/lib1517-timediff.Po
16522 -rm -f ../../lib/$(DEPDIR)/lib1518-timediff.Po
16523 -rm -f ../../lib/$(DEPDIR)/lib1520-timediff.Po
16524 -rm -f ../../lib/$(DEPDIR)/lib1521-timediff.Po
16525 -rm -f ../../lib/$(DEPDIR)/lib1522-timediff.Po
16526 -rm -f ../../lib/$(DEPDIR)/lib1523-timediff.Po
16527 -rm -f ../../lib/$(DEPDIR)/lib1525-timediff.Po
1287216528 -rm -f ../../lib/$(DEPDIR)/lib1525-warnless.Po
16529 -rm -f ../../lib/$(DEPDIR)/lib1526-timediff.Po
1287316530 -rm -f ../../lib/$(DEPDIR)/lib1526-warnless.Po
16531 -rm -f ../../lib/$(DEPDIR)/lib1527-timediff.Po
1287416532 -rm -f ../../lib/$(DEPDIR)/lib1527-warnless.Po
16533 -rm -f ../../lib/$(DEPDIR)/lib1528-timediff.Po
1287516534 -rm -f ../../lib/$(DEPDIR)/lib1528-warnless.Po
16535 -rm -f ../../lib/$(DEPDIR)/lib1529-timediff.Po
1287616536 -rm -f ../../lib/$(DEPDIR)/lib1529-warnless.Po
16537 -rm -f ../../lib/$(DEPDIR)/lib1530-timediff.Po
1287716538 -rm -f ../../lib/$(DEPDIR)/lib1530-warnless.Po
16539 -rm -f ../../lib/$(DEPDIR)/lib1531-timediff.Po
1287816540 -rm -f ../../lib/$(DEPDIR)/lib1531-warnless.Po
16541 -rm -f ../../lib/$(DEPDIR)/lib1532-timediff.Po
1287916542 -rm -f ../../lib/$(DEPDIR)/lib1532-warnless.Po
16543 -rm -f ../../lib/$(DEPDIR)/lib1533-timediff.Po
1288016544 -rm -f ../../lib/$(DEPDIR)/lib1533-warnless.Po
16545 -rm -f ../../lib/$(DEPDIR)/lib1534-timediff.Po
1288116546 -rm -f ../../lib/$(DEPDIR)/lib1534-warnless.Po
16547 -rm -f ../../lib/$(DEPDIR)/lib1535-timediff.Po
1288216548 -rm -f ../../lib/$(DEPDIR)/lib1535-warnless.Po
16549 -rm -f ../../lib/$(DEPDIR)/lib1536-timediff.Po
1288316550 -rm -f ../../lib/$(DEPDIR)/lib1536-warnless.Po
16551 -rm -f ../../lib/$(DEPDIR)/lib1537-timediff.Po
1288416552 -rm -f ../../lib/$(DEPDIR)/lib1537-warnless.Po
16553 -rm -f ../../lib/$(DEPDIR)/lib1538-timediff.Po
1288516554 -rm -f ../../lib/$(DEPDIR)/lib1538-warnless.Po
16555 -rm -f ../../lib/$(DEPDIR)/lib1539-timediff.Po
1288616556 -rm -f ../../lib/$(DEPDIR)/lib1539-warnless.Po
16557 -rm -f ../../lib/$(DEPDIR)/lib1540-timediff.Po
1288716558 -rm -f ../../lib/$(DEPDIR)/lib1540-warnless.Po
16559 -rm -f ../../lib/$(DEPDIR)/lib1542-timediff.Po
1288816560 -rm -f ../../lib/$(DEPDIR)/lib1542-warnless.Po
16561 -rm -f ../../lib/$(DEPDIR)/lib1550-timediff.Po
16562 -rm -f ../../lib/$(DEPDIR)/lib1551-timediff.Po
16563 -rm -f ../../lib/$(DEPDIR)/lib1552-timediff.Po
16564 -rm -f ../../lib/$(DEPDIR)/lib1553-timediff.Po
16565 -rm -f ../../lib/$(DEPDIR)/lib1554-timediff.Po
16566 -rm -f ../../lib/$(DEPDIR)/lib1555-timediff.Po
1288916567 -rm -f ../../lib/$(DEPDIR)/lib1555-warnless.Po
16568 -rm -f ../../lib/$(DEPDIR)/lib1556-timediff.Po
1289016569 -rm -f ../../lib/$(DEPDIR)/lib1556-warnless.Po
16570 -rm -f ../../lib/$(DEPDIR)/lib1557-timediff.Po
1289116571 -rm -f ../../lib/$(DEPDIR)/lib1557-warnless.Po
16572 -rm -f ../../lib/$(DEPDIR)/lib1564-timediff.Po
1289216573 -rm -f ../../lib/$(DEPDIR)/lib1564-warnless.Po
16574 -rm -f ../../lib/$(DEPDIR)/lib1565-timediff.Po
1289316575 -rm -f ../../lib/$(DEPDIR)/lib1565-warnless.Po
16576 -rm -f ../../lib/$(DEPDIR)/lib1567-timediff.Po
16577 -rm -f ../../lib/$(DEPDIR)/lib1568-timediff.Po
16578 -rm -f ../../lib/$(DEPDIR)/lib1569-timediff.Po
16579 -rm -f ../../lib/$(DEPDIR)/lib1591-timediff.Po
1289416580 -rm -f ../../lib/$(DEPDIR)/lib1591-warnless.Po
16581 -rm -f ../../lib/$(DEPDIR)/lib1592-timediff.Po
1289516582 -rm -f ../../lib/$(DEPDIR)/lib1592-warnless.Po
16583 -rm -f ../../lib/$(DEPDIR)/lib1596-timediff.Po
1289616584 -rm -f ../../lib/$(DEPDIR)/lib1596-warnless.Po
16585 -rm -f ../../lib/$(DEPDIR)/lib1905-timediff.Po
1289716586 -rm -f ../../lib/$(DEPDIR)/lib1905-warnless.Po
16587 -rm -f ../../lib/$(DEPDIR)/lib1906-timediff.Po
1289816588 -rm -f ../../lib/$(DEPDIR)/lib1906-warnless.Po
16589 -rm -f ../../lib/$(DEPDIR)/lib1907-timediff.Po
1289916590 -rm -f ../../lib/$(DEPDIR)/lib1907-warnless.Po
16591 -rm -f ../../lib/$(DEPDIR)/lib1908-timediff.Po
1290016592 -rm -f ../../lib/$(DEPDIR)/lib1908-warnless.Po
16593 -rm -f ../../lib/$(DEPDIR)/lib1910-timediff.Po
1290116594 -rm -f ../../lib/$(DEPDIR)/lib1910-warnless.Po
16595 -rm -f ../../lib/$(DEPDIR)/lib1911-timediff.Po
1290216596 -rm -f ../../lib/$(DEPDIR)/lib1911-warnless.Po
16597 -rm -f ../../lib/$(DEPDIR)/lib1912-timediff.Po
1290316598 -rm -f ../../lib/$(DEPDIR)/lib1912-warnless.Po
16599 -rm -f ../../lib/$(DEPDIR)/lib1913-timediff.Po
1290416600 -rm -f ../../lib/$(DEPDIR)/lib1913-warnless.Po
16601 -rm -f ../../lib/$(DEPDIR)/lib1915-timediff.Po
1290516602 -rm -f ../../lib/$(DEPDIR)/lib1915-warnless.Po
16603 -rm -f ../../lib/$(DEPDIR)/lib1916-timediff.Po
1290616604 -rm -f ../../lib/$(DEPDIR)/lib1916-warnless.Po
16605 -rm -f ../../lib/$(DEPDIR)/lib1917-timediff.Po
1290716606 -rm -f ../../lib/$(DEPDIR)/lib1917-warnless.Po
16607 -rm -f ../../lib/$(DEPDIR)/lib1918-timediff.Po
1290816608 -rm -f ../../lib/$(DEPDIR)/lib1918-warnless.Po
16609 -rm -f ../../lib/$(DEPDIR)/lib1933-timediff.Po
1290916610 -rm -f ../../lib/$(DEPDIR)/lib1933-warnless.Po
16611 -rm -f ../../lib/$(DEPDIR)/lib1934-timediff.Po
1291016612 -rm -f ../../lib/$(DEPDIR)/lib1934-warnless.Po
16613 -rm -f ../../lib/$(DEPDIR)/lib1935-timediff.Po
1291116614 -rm -f ../../lib/$(DEPDIR)/lib1935-warnless.Po
16615 -rm -f ../../lib/$(DEPDIR)/lib1936-timediff.Po
1291216616 -rm -f ../../lib/$(DEPDIR)/lib1936-warnless.Po
16617 -rm -f ../../lib/$(DEPDIR)/lib1937-timediff.Po
16618 -rm -f ../../lib/$(DEPDIR)/lib1938-timediff.Po
16619 -rm -f ../../lib/$(DEPDIR)/lib1939-timediff.Po
16620 -rm -f ../../lib/$(DEPDIR)/lib1940-timediff.Po
16621 -rm -f ../../lib/$(DEPDIR)/lib1945-timediff.Po
16622 -rm -f ../../lib/$(DEPDIR)/lib1946-timediff.Po
16623 -rm -f ../../lib/$(DEPDIR)/lib3010-timediff.Po
1291316624 -rm -f ../../lib/$(DEPDIR)/lib3010-warnless.Po
16625 -rm -f ../../lib/$(DEPDIR)/lib3025-timediff.Po
1291416626 -rm -f ../../lib/$(DEPDIR)/lib3025-warnless.Po
1291516627 -rm -f ../../lib/$(DEPDIR)/lib500-curl_multibyte.Po
16628 -rm -f ../../lib/$(DEPDIR)/lib500-timediff.Po
16629 -rm -f ../../lib/$(DEPDIR)/lib501-timediff.Po
16630 -rm -f ../../lib/$(DEPDIR)/lib502-timediff.Po
1291616631 -rm -f ../../lib/$(DEPDIR)/lib502-warnless.Po
16632 -rm -f ../../lib/$(DEPDIR)/lib503-timediff.Po
1291716633 -rm -f ../../lib/$(DEPDIR)/lib503-warnless.Po
16634 -rm -f ../../lib/$(DEPDIR)/lib504-timediff.Po
1291816635 -rm -f ../../lib/$(DEPDIR)/lib504-warnless.Po
1291916636 -rm -f ../../lib/$(DEPDIR)/lib505-curl_multibyte.Po
16637 -rm -f ../../lib/$(DEPDIR)/lib505-timediff.Po
16638 -rm -f ../../lib/$(DEPDIR)/lib506-timediff.Po
16639 -rm -f ../../lib/$(DEPDIR)/lib507-timediff.Po
1292016640 -rm -f ../../lib/$(DEPDIR)/lib507-warnless.Po
16641 -rm -f ../../lib/$(DEPDIR)/lib508-timediff.Po
16642 -rm -f ../../lib/$(DEPDIR)/lib509-timediff.Po
16643 -rm -f ../../lib/$(DEPDIR)/lib510-timediff.Po
16644 -rm -f ../../lib/$(DEPDIR)/lib511-timediff.Po
16645 -rm -f ../../lib/$(DEPDIR)/lib512-timediff.Po
16646 -rm -f ../../lib/$(DEPDIR)/lib513-timediff.Po
16647 -rm -f ../../lib/$(DEPDIR)/lib514-timediff.Po
16648 -rm -f ../../lib/$(DEPDIR)/lib515-timediff.Po
16649 -rm -f ../../lib/$(DEPDIR)/lib516-timediff.Po
16650 -rm -f ../../lib/$(DEPDIR)/lib517-timediff.Po
1292116651 -rm -f ../../lib/$(DEPDIR)/lib518-curl_multibyte.Po
16652 -rm -f ../../lib/$(DEPDIR)/lib518-timediff.Po
1292216653 -rm -f ../../lib/$(DEPDIR)/lib518-warnless.Po
16654 -rm -f ../../lib/$(DEPDIR)/lib519-timediff.Po
16655 -rm -f ../../lib/$(DEPDIR)/lib520-timediff.Po
16656 -rm -f ../../lib/$(DEPDIR)/lib521-timediff.Po
16657 -rm -f ../../lib/$(DEPDIR)/lib523-timediff.Po
16658 -rm -f ../../lib/$(DEPDIR)/lib524-timediff.Po
1292316659 -rm -f ../../lib/$(DEPDIR)/lib525-curl_multibyte.Po
16660 -rm -f ../../lib/$(DEPDIR)/lib525-timediff.Po
1292416661 -rm -f ../../lib/$(DEPDIR)/lib525-warnless.Po
16662 -rm -f ../../lib/$(DEPDIR)/lib526-timediff.Po
1292516663 -rm -f ../../lib/$(DEPDIR)/lib526-warnless.Po
16664 -rm -f ../../lib/$(DEPDIR)/lib527-timediff.Po
1292616665 -rm -f ../../lib/$(DEPDIR)/lib527-warnless.Po
1292716666 -rm -f ../../lib/$(DEPDIR)/lib529-curl_multibyte.Po
16667 -rm -f ../../lib/$(DEPDIR)/lib529-timediff.Po
1292816668 -rm -f ../../lib/$(DEPDIR)/lib529-warnless.Po
16669 -rm -f ../../lib/$(DEPDIR)/lib530-timediff.Po
1292916670 -rm -f ../../lib/$(DEPDIR)/lib530-warnless.Po
16671 -rm -f ../../lib/$(DEPDIR)/lib532-timediff.Po
1293016672 -rm -f ../../lib/$(DEPDIR)/lib532-warnless.Po
16673 -rm -f ../../lib/$(DEPDIR)/lib533-timediff.Po
1293116674 -rm -f ../../lib/$(DEPDIR)/lib533-warnless.Po
1293216675 -rm -f ../../lib/$(DEPDIR)/lib537-curl_multibyte.Po
16676 -rm -f ../../lib/$(DEPDIR)/lib537-timediff.Po
1293316677 -rm -f ../../lib/$(DEPDIR)/lib537-warnless.Po
16678 -rm -f ../../lib/$(DEPDIR)/lib539-timediff.Po
16679 -rm -f ../../lib/$(DEPDIR)/lib540-timediff.Po
1293416680 -rm -f ../../lib/$(DEPDIR)/lib540-warnless.Po
1293516681 -rm -f ../../lib/$(DEPDIR)/lib541-curl_multibyte.Po
16682 -rm -f ../../lib/$(DEPDIR)/lib541-timediff.Po
16683 -rm -f ../../lib/$(DEPDIR)/lib542-timediff.Po
16684 -rm -f ../../lib/$(DEPDIR)/lib543-timediff.Po
16685 -rm -f ../../lib/$(DEPDIR)/lib544-timediff.Po
16686 -rm -f ../../lib/$(DEPDIR)/lib545-timediff.Po
16687 -rm -f ../../lib/$(DEPDIR)/lib547-timediff.Po
16688 -rm -f ../../lib/$(DEPDIR)/lib548-timediff.Po
16689 -rm -f ../../lib/$(DEPDIR)/lib549-timediff.Po
16690 -rm -f ../../lib/$(DEPDIR)/lib552-timediff.Po
1293616691 -rm -f ../../lib/$(DEPDIR)/lib552-warnless.Po
16692 -rm -f ../../lib/$(DEPDIR)/lib553-timediff.Po
16693 -rm -f ../../lib/$(DEPDIR)/lib554-timediff.Po
16694 -rm -f ../../lib/$(DEPDIR)/lib555-timediff.Po
1293716695 -rm -f ../../lib/$(DEPDIR)/lib555-warnless.Po
16696 -rm -f ../../lib/$(DEPDIR)/lib556-timediff.Po
1293816697 -rm -f ../../lib/$(DEPDIR)/lib556-warnless.Po
16698 -rm -f ../../lib/$(DEPDIR)/lib557-timediff.Po
16699 -rm -f ../../lib/$(DEPDIR)/lib558-timediff.Po
16700 -rm -f ../../lib/$(DEPDIR)/lib559-timediff.Po
16701 -rm -f ../../lib/$(DEPDIR)/lib560-timediff.Po
1293916702 -rm -f ../../lib/$(DEPDIR)/lib560-warnless.Po
16703 -rm -f ../../lib/$(DEPDIR)/lib562-timediff.Po
16704 -rm -f ../../lib/$(DEPDIR)/lib564-timediff.Po
1294016705 -rm -f ../../lib/$(DEPDIR)/lib564-warnless.Po
16706 -rm -f ../../lib/$(DEPDIR)/lib565-timediff.Po
1294116707 -rm -f ../../lib/$(DEPDIR)/lib566-curl_multibyte.Po
16708 -rm -f ../../lib/$(DEPDIR)/lib566-timediff.Po
16709 -rm -f ../../lib/$(DEPDIR)/lib567-timediff.Po
1294216710 -rm -f ../../lib/$(DEPDIR)/lib568-curl_multibyte.Po
16711 -rm -f ../../lib/$(DEPDIR)/lib568-timediff.Po
1294316712 -rm -f ../../lib/$(DEPDIR)/lib569-curl_multibyte.Po
16713 -rm -f ../../lib/$(DEPDIR)/lib569-timediff.Po
16714 -rm -f ../../lib/$(DEPDIR)/lib570-timediff.Po
1294416715 -rm -f ../../lib/$(DEPDIR)/lib571-curl_multibyte.Po
16716 -rm -f ../../lib/$(DEPDIR)/lib571-timediff.Po
1294516717 -rm -f ../../lib/$(DEPDIR)/lib571-warnless.Po
1294616718 -rm -f ../../lib/$(DEPDIR)/lib572-curl_multibyte.Po
16719 -rm -f ../../lib/$(DEPDIR)/lib572-timediff.Po
16720 -rm -f ../../lib/$(DEPDIR)/lib573-timediff.Po
1294716721 -rm -f ../../lib/$(DEPDIR)/lib573-warnless.Po
16722 -rm -f ../../lib/$(DEPDIR)/lib574-timediff.Po
16723 -rm -f ../../lib/$(DEPDIR)/lib575-timediff.Po
1294816724 -rm -f ../../lib/$(DEPDIR)/lib575-warnless.Po
16725 -rm -f ../../lib/$(DEPDIR)/lib576-timediff.Po
1294916726 -rm -f ../../lib/$(DEPDIR)/lib578-curl_multibyte.Po
16727 -rm -f ../../lib/$(DEPDIR)/lib578-timediff.Po
1295016728 -rm -f ../../lib/$(DEPDIR)/lib579-curl_multibyte.Po
16729 -rm -f ../../lib/$(DEPDIR)/lib579-timediff.Po
1295116730 -rm -f ../../lib/$(DEPDIR)/lib582-curl_multibyte.Po
16731 -rm -f ../../lib/$(DEPDIR)/lib582-timediff.Po
1295216732 -rm -f ../../lib/$(DEPDIR)/lib582-warnless.Po
16733 -rm -f ../../lib/$(DEPDIR)/lib583-timediff.Po
16734 -rm -f ../../lib/$(DEPDIR)/lib584-timediff.Po
1295316735 -rm -f ../../lib/$(DEPDIR)/lib585-curl_multibyte.Po
16736 -rm -f ../../lib/$(DEPDIR)/lib585-timediff.Po
16737 -rm -f ../../lib/$(DEPDIR)/lib586-timediff.Po
16738 -rm -f ../../lib/$(DEPDIR)/lib587-timediff.Po
16739 -rm -f ../../lib/$(DEPDIR)/lib589-timediff.Po
16740 -rm -f ../../lib/$(DEPDIR)/lib590-timediff.Po
1295416741 -rm -f ../../lib/$(DEPDIR)/lib591-curl_multibyte.Po
16742 -rm -f ../../lib/$(DEPDIR)/lib591-timediff.Po
1295516743 -rm -f ../../lib/$(DEPDIR)/lib591-warnless.Po
16744 -rm -f ../../lib/$(DEPDIR)/lib597-timediff.Po
1295616745 -rm -f ../../lib/$(DEPDIR)/lib597-warnless.Po
16746 -rm -f ../../lib/$(DEPDIR)/lib598-timediff.Po
1295716747 -rm -f ../../lib/$(DEPDIR)/lib599-curl_multibyte.Po
16748 -rm -f ../../lib/$(DEPDIR)/lib599-timediff.Po
16749 -rm -f ../../lib/$(DEPDIR)/lib643-timediff.Po
16750 -rm -f ../../lib/$(DEPDIR)/lib645-timediff.Po
16751 -rm -f ../../lib/$(DEPDIR)/lib650-timediff.Po
16752 -rm -f ../../lib/$(DEPDIR)/lib651-timediff.Po
16753 -rm -f ../../lib/$(DEPDIR)/lib652-timediff.Po
16754 -rm -f ../../lib/$(DEPDIR)/lib653-timediff.Po
16755 -rm -f ../../lib/$(DEPDIR)/lib654-timediff.Po
16756 -rm -f ../../lib/$(DEPDIR)/lib655-timediff.Po
16757 -rm -f ../../lib/$(DEPDIR)/lib658-timediff.Po
1295816758 -rm -f ../../lib/$(DEPDIR)/lib658-warnless.Po
16759 -rm -f ../../lib/$(DEPDIR)/lib659-timediff.Po
1295916760 -rm -f ../../lib/$(DEPDIR)/lib659-warnless.Po
16761 -rm -f ../../lib/$(DEPDIR)/lib661-timediff.Po
16762 -rm -f ../../lib/$(DEPDIR)/lib666-timediff.Po
16763 -rm -f ../../lib/$(DEPDIR)/lib667-timediff.Po
1296016764 -rm -f ../../lib/$(DEPDIR)/lib667-warnless.Po
16765 -rm -f ../../lib/$(DEPDIR)/lib668-timediff.Po
1296116766 -rm -f ../../lib/$(DEPDIR)/lib668-warnless.Po
16767 -rm -f ../../lib/$(DEPDIR)/lib670-timediff.Po
1296216768 -rm -f ../../lib/$(DEPDIR)/lib670-warnless.Po
16769 -rm -f ../../lib/$(DEPDIR)/lib671-timediff.Po
1296316770 -rm -f ../../lib/$(DEPDIR)/lib671-warnless.Po
16771 -rm -f ../../lib/$(DEPDIR)/lib672-timediff.Po
1296416772 -rm -f ../../lib/$(DEPDIR)/lib672-warnless.Po
16773 -rm -f ../../lib/$(DEPDIR)/lib673-timediff.Po
1296516774 -rm -f ../../lib/$(DEPDIR)/lib673-warnless.Po
16775 -rm -f ../../lib/$(DEPDIR)/lib674-timediff.Po
1296616776 -rm -f ../../lib/$(DEPDIR)/lib674-warnless.Po
16777 -rm -f ../../lib/$(DEPDIR)/lib676-timediff.Po
1296716778 -rm -f ../../lib/$(DEPDIR)/lib676-warnless.Po
1296816779 -rm -f ../../lib/$(DEPDIR)/lib677-curl_multibyte.Po
16780 -rm -f ../../lib/$(DEPDIR)/lib677-timediff.Po
1296916781 -rm -f ../../lib/$(DEPDIR)/lib677-warnless.Po
1297016782 -rm -f ../../lib/$(DEPDIR)/lib678-curl_multibyte.Po
16783 -rm -f ../../lib/$(DEPDIR)/lib678-timediff.Po
1297116784 -rm -f ../../lib/$(DEPDIR)/lib678-warnless.Po
16785 -rm -f ../../lib/$(DEPDIR)/libauthretry-timediff.Po
16786 -rm -f ../../lib/$(DEPDIR)/libntlmconnect-timediff.Po
1297216787 -rm -f ../../lib/$(DEPDIR)/libntlmconnect-warnless.Po
16788 -rm -f ../../lib/$(DEPDIR)/libprereq-timediff.Po
1297316789 -rm -f ../../lib/$(DEPDIR)/libprereq-warnless.Po
16790 -rm -f ../../lib/$(DEPDIR)/timediff.Po
1297416791 -rm -f ../../lib/$(DEPDIR)/warnless.Po
1297516792 -rm -f ./$(DEPDIR)/chkdecimalpoint-chkdecimalpoint.Po
1297616793 -rm -f ./$(DEPDIR)/chkhostname-chkhostname.Po
1319017007 -rm -f ./$(DEPDIR)/lib1938-lib1938.Po
1319117008 -rm -f ./$(DEPDIR)/lib1939-first.Po
1319217009 -rm -f ./$(DEPDIR)/lib1939-lib1939.Po
17010 -rm -f ./$(DEPDIR)/lib1940-first.Po
17011 -rm -f ./$(DEPDIR)/lib1940-lib1940.Po
17012 -rm -f ./$(DEPDIR)/lib1945-first.Po
17013 -rm -f ./$(DEPDIR)/lib1945-lib1945.Po
17014 -rm -f ./$(DEPDIR)/lib1946-first.Po
17015 -rm -f ./$(DEPDIR)/lib1946-lib1940.Po
1319317016 -rm -f ./$(DEPDIR)/lib3010-first.Po
1319417017 -rm -f ./$(DEPDIR)/lib3010-lib3010.Po
1319517018 -rm -f ./$(DEPDIR)/lib3010-testutil.Po
1349617319 -rm -f ../../lib/$(DEPDIR)/chkdecimalpoint-mprintf.Po
1349717320 -rm -f ../../lib/$(DEPDIR)/chkdecimalpoint-strdup.Po
1349817321 -rm -f ../../lib/$(DEPDIR)/chkhostname-curl_gethostname.Po
17322 -rm -f ../../lib/$(DEPDIR)/lib1156-timediff.Po
1349917323 -rm -f ../../lib/$(DEPDIR)/lib1156-warnless.Po
17324 -rm -f ../../lib/$(DEPDIR)/lib1500-timediff.Po
17325 -rm -f ../../lib/$(DEPDIR)/lib1501-timediff.Po
1350017326 -rm -f ../../lib/$(DEPDIR)/lib1501-warnless.Po
17327 -rm -f ../../lib/$(DEPDIR)/lib1502-timediff.Po
1350117328 -rm -f ../../lib/$(DEPDIR)/lib1502-warnless.Po
17329 -rm -f ../../lib/$(DEPDIR)/lib1503-timediff.Po
1350217330 -rm -f ../../lib/$(DEPDIR)/lib1503-warnless.Po
17331 -rm -f ../../lib/$(DEPDIR)/lib1504-timediff.Po
1350317332 -rm -f ../../lib/$(DEPDIR)/lib1504-warnless.Po
17333 -rm -f ../../lib/$(DEPDIR)/lib1505-timediff.Po
1350417334 -rm -f ../../lib/$(DEPDIR)/lib1505-warnless.Po
17335 -rm -f ../../lib/$(DEPDIR)/lib1506-timediff.Po
1350517336 -rm -f ../../lib/$(DEPDIR)/lib1506-warnless.Po
17337 -rm -f ../../lib/$(DEPDIR)/lib1507-timediff.Po
1350617338 -rm -f ../../lib/$(DEPDIR)/lib1507-warnless.Po
17339 -rm -f ../../lib/$(DEPDIR)/lib1508-timediff.Po
1350717340 -rm -f ../../lib/$(DEPDIR)/lib1508-warnless.Po
17341 -rm -f ../../lib/$(DEPDIR)/lib1509-timediff.Po
1350817342 -rm -f ../../lib/$(DEPDIR)/lib1509-warnless.Po
17343 -rm -f ../../lib/$(DEPDIR)/lib1510-timediff.Po
1350917344 -rm -f ../../lib/$(DEPDIR)/lib1510-warnless.Po
17345 -rm -f ../../lib/$(DEPDIR)/lib1511-timediff.Po
1351017346 -rm -f ../../lib/$(DEPDIR)/lib1511-warnless.Po
17347 -rm -f ../../lib/$(DEPDIR)/lib1512-timediff.Po
1351117348 -rm -f ../../lib/$(DEPDIR)/lib1512-warnless.Po
17349 -rm -f ../../lib/$(DEPDIR)/lib1513-timediff.Po
1351217350 -rm -f ../../lib/$(DEPDIR)/lib1513-warnless.Po
17351 -rm -f ../../lib/$(DEPDIR)/lib1514-timediff.Po
1351317352 -rm -f ../../lib/$(DEPDIR)/lib1514-warnless.Po
17353 -rm -f ../../lib/$(DEPDIR)/lib1515-timediff.Po
1351417354 -rm -f ../../lib/$(DEPDIR)/lib1515-warnless.Po
17355 -rm -f ../../lib/$(DEPDIR)/lib1517-timediff.Po
17356 -rm -f ../../lib/$(DEPDIR)/lib1518-timediff.Po
17357 -rm -f ../../lib/$(DEPDIR)/lib1520-timediff.Po
17358 -rm -f ../../lib/$(DEPDIR)/lib1521-timediff.Po
17359 -rm -f ../../lib/$(DEPDIR)/lib1522-timediff.Po
17360 -rm -f ../../lib/$(DEPDIR)/lib1523-timediff.Po
17361 -rm -f ../../lib/$(DEPDIR)/lib1525-timediff.Po
1351517362 -rm -f ../../lib/$(DEPDIR)/lib1525-warnless.Po
17363 -rm -f ../../lib/$(DEPDIR)/lib1526-timediff.Po
1351617364 -rm -f ../../lib/$(DEPDIR)/lib1526-warnless.Po
17365 -rm -f ../../lib/$(DEPDIR)/lib1527-timediff.Po
1351717366 -rm -f ../../lib/$(DEPDIR)/lib1527-warnless.Po
17367 -rm -f ../../lib/$(DEPDIR)/lib1528-timediff.Po
1351817368 -rm -f ../../lib/$(DEPDIR)/lib1528-warnless.Po
17369 -rm -f ../../lib/$(DEPDIR)/lib1529-timediff.Po
1351917370 -rm -f ../../lib/$(DEPDIR)/lib1529-warnless.Po
17371 -rm -f ../../lib/$(DEPDIR)/lib1530-timediff.Po
1352017372 -rm -f ../../lib/$(DEPDIR)/lib1530-warnless.Po
17373 -rm -f ../../lib/$(DEPDIR)/lib1531-timediff.Po
1352117374 -rm -f ../../lib/$(DEPDIR)/lib1531-warnless.Po
17375 -rm -f ../../lib/$(DEPDIR)/lib1532-timediff.Po
1352217376 -rm -f ../../lib/$(DEPDIR)/lib1532-warnless.Po
17377 -rm -f ../../lib/$(DEPDIR)/lib1533-timediff.Po
1352317378 -rm -f ../../lib/$(DEPDIR)/lib1533-warnless.Po
17379 -rm -f ../../lib/$(DEPDIR)/lib1534-timediff.Po
1352417380 -rm -f ../../lib/$(DEPDIR)/lib1534-warnless.Po
17381 -rm -f ../../lib/$(DEPDIR)/lib1535-timediff.Po
1352517382 -rm -f ../../lib/$(DEPDIR)/lib1535-warnless.Po
17383 -rm -f ../../lib/$(DEPDIR)/lib1536-timediff.Po
1352617384 -rm -f ../../lib/$(DEPDIR)/lib1536-warnless.Po
17385 -rm -f ../../lib/$(DEPDIR)/lib1537-timediff.Po
1352717386 -rm -f ../../lib/$(DEPDIR)/lib1537-warnless.Po
17387 -rm -f ../../lib/$(DEPDIR)/lib1538-timediff.Po
1352817388 -rm -f ../../lib/$(DEPDIR)/lib1538-warnless.Po
17389 -rm -f ../../lib/$(DEPDIR)/lib1539-timediff.Po
1352917390 -rm -f ../../lib/$(DEPDIR)/lib1539-warnless.Po
17391 -rm -f ../../lib/$(DEPDIR)/lib1540-timediff.Po
1353017392 -rm -f ../../lib/$(DEPDIR)/lib1540-warnless.Po
17393 -rm -f ../../lib/$(DEPDIR)/lib1542-timediff.Po
1353117394 -rm -f ../../lib/$(DEPDIR)/lib1542-warnless.Po
17395 -rm -f ../../lib/$(DEPDIR)/lib1550-timediff.Po
17396 -rm -f ../../lib/$(DEPDIR)/lib1551-timediff.Po
17397 -rm -f ../../lib/$(DEPDIR)/lib1552-timediff.Po
17398 -rm -f ../../lib/$(DEPDIR)/lib1553-timediff.Po
17399 -rm -f ../../lib/$(DEPDIR)/lib1554-timediff.Po
17400 -rm -f ../../lib/$(DEPDIR)/lib1555-timediff.Po
1353217401 -rm -f ../../lib/$(DEPDIR)/lib1555-warnless.Po
17402 -rm -f ../../lib/$(DEPDIR)/lib1556-timediff.Po
1353317403 -rm -f ../../lib/$(DEPDIR)/lib1556-warnless.Po
17404 -rm -f ../../lib/$(DEPDIR)/lib1557-timediff.Po
1353417405 -rm -f ../../lib/$(DEPDIR)/lib1557-warnless.Po
17406 -rm -f ../../lib/$(DEPDIR)/lib1564-timediff.Po
1353517407 -rm -f ../../lib/$(DEPDIR)/lib1564-warnless.Po
17408 -rm -f ../../lib/$(DEPDIR)/lib1565-timediff.Po
1353617409 -rm -f ../../lib/$(DEPDIR)/lib1565-warnless.Po
17410 -rm -f ../../lib/$(DEPDIR)/lib1567-timediff.Po
17411 -rm -f ../../lib/$(DEPDIR)/lib1568-timediff.Po
17412 -rm -f ../../lib/$(DEPDIR)/lib1569-timediff.Po
17413 -rm -f ../../lib/$(DEPDIR)/lib1591-timediff.Po
1353717414 -rm -f ../../lib/$(DEPDIR)/lib1591-warnless.Po
17415 -rm -f ../../lib/$(DEPDIR)/lib1592-timediff.Po
1353817416 -rm -f ../../lib/$(DEPDIR)/lib1592-warnless.Po
17417 -rm -f ../../lib/$(DEPDIR)/lib1596-timediff.Po
1353917418 -rm -f ../../lib/$(DEPDIR)/lib1596-warnless.Po
17419 -rm -f ../../lib/$(DEPDIR)/lib1905-timediff.Po
1354017420 -rm -f ../../lib/$(DEPDIR)/lib1905-warnless.Po
17421 -rm -f ../../lib/$(DEPDIR)/lib1906-timediff.Po
1354117422 -rm -f ../../lib/$(DEPDIR)/lib1906-warnless.Po
17423 -rm -f ../../lib/$(DEPDIR)/lib1907-timediff.Po
1354217424 -rm -f ../../lib/$(DEPDIR)/lib1907-warnless.Po
17425 -rm -f ../../lib/$(DEPDIR)/lib1908-timediff.Po
1354317426 -rm -f ../../lib/$(DEPDIR)/lib1908-warnless.Po
17427 -rm -f ../../lib/$(DEPDIR)/lib1910-timediff.Po
1354417428 -rm -f ../../lib/$(DEPDIR)/lib1910-warnless.Po
17429 -rm -f ../../lib/$(DEPDIR)/lib1911-timediff.Po
1354517430 -rm -f ../../lib/$(DEPDIR)/lib1911-warnless.Po
17431 -rm -f ../../lib/$(DEPDIR)/lib1912-timediff.Po
1354617432 -rm -f ../../lib/$(DEPDIR)/lib1912-warnless.Po
17433 -rm -f ../../lib/$(DEPDIR)/lib1913-timediff.Po
1354717434 -rm -f ../../lib/$(DEPDIR)/lib1913-warnless.Po
17435 -rm -f ../../lib/$(DEPDIR)/lib1915-timediff.Po
1354817436 -rm -f ../../lib/$(DEPDIR)/lib1915-warnless.Po
17437 -rm -f ../../lib/$(DEPDIR)/lib1916-timediff.Po
1354917438 -rm -f ../../lib/$(DEPDIR)/lib1916-warnless.Po
17439 -rm -f ../../lib/$(DEPDIR)/lib1917-timediff.Po
1355017440 -rm -f ../../lib/$(DEPDIR)/lib1917-warnless.Po
17441 -rm -f ../../lib/$(DEPDIR)/lib1918-timediff.Po
1355117442 -rm -f ../../lib/$(DEPDIR)/lib1918-warnless.Po
17443 -rm -f ../../lib/$(DEPDIR)/lib1933-timediff.Po
1355217444 -rm -f ../../lib/$(DEPDIR)/lib1933-warnless.Po
17445 -rm -f ../../lib/$(DEPDIR)/lib1934-timediff.Po
1355317446 -rm -f ../../lib/$(DEPDIR)/lib1934-warnless.Po
17447 -rm -f ../../lib/$(DEPDIR)/lib1935-timediff.Po
1355417448 -rm -f ../../lib/$(DEPDIR)/lib1935-warnless.Po
17449 -rm -f ../../lib/$(DEPDIR)/lib1936-timediff.Po
1355517450 -rm -f ../../lib/$(DEPDIR)/lib1936-warnless.Po
17451 -rm -f ../../lib/$(DEPDIR)/lib1937-timediff.Po
17452 -rm -f ../../lib/$(DEPDIR)/lib1938-timediff.Po
17453 -rm -f ../../lib/$(DEPDIR)/lib1939-timediff.Po
17454 -rm -f ../../lib/$(DEPDIR)/lib1940-timediff.Po
17455 -rm -f ../../lib/$(DEPDIR)/lib1945-timediff.Po
17456 -rm -f ../../lib/$(DEPDIR)/lib1946-timediff.Po
17457 -rm -f ../../lib/$(DEPDIR)/lib3010-timediff.Po
1355617458 -rm -f ../../lib/$(DEPDIR)/lib3010-warnless.Po
17459 -rm -f ../../lib/$(DEPDIR)/lib3025-timediff.Po
1355717460 -rm -f ../../lib/$(DEPDIR)/lib3025-warnless.Po
1355817461 -rm -f ../../lib/$(DEPDIR)/lib500-curl_multibyte.Po
17462 -rm -f ../../lib/$(DEPDIR)/lib500-timediff.Po
17463 -rm -f ../../lib/$(DEPDIR)/lib501-timediff.Po
17464 -rm -f ../../lib/$(DEPDIR)/lib502-timediff.Po
1355917465 -rm -f ../../lib/$(DEPDIR)/lib502-warnless.Po
17466 -rm -f ../../lib/$(DEPDIR)/lib503-timediff.Po
1356017467 -rm -f ../../lib/$(DEPDIR)/lib503-warnless.Po
17468 -rm -f ../../lib/$(DEPDIR)/lib504-timediff.Po
1356117469 -rm -f ../../lib/$(DEPDIR)/lib504-warnless.Po
1356217470 -rm -f ../../lib/$(DEPDIR)/lib505-curl_multibyte.Po
17471 -rm -f ../../lib/$(DEPDIR)/lib505-timediff.Po
17472 -rm -f ../../lib/$(DEPDIR)/lib506-timediff.Po
17473 -rm -f ../../lib/$(DEPDIR)/lib507-timediff.Po
1356317474 -rm -f ../../lib/$(DEPDIR)/lib507-warnless.Po
17475 -rm -f ../../lib/$(DEPDIR)/lib508-timediff.Po
17476 -rm -f ../../lib/$(DEPDIR)/lib509-timediff.Po
17477 -rm -f ../../lib/$(DEPDIR)/lib510-timediff.Po
17478 -rm -f ../../lib/$(DEPDIR)/lib511-timediff.Po
17479 -rm -f ../../lib/$(DEPDIR)/lib512-timediff.Po
17480 -rm -f ../../lib/$(DEPDIR)/lib513-timediff.Po
17481 -rm -f ../../lib/$(DEPDIR)/lib514-timediff.Po
17482 -rm -f ../../lib/$(DEPDIR)/lib515-timediff.Po
17483 -rm -f ../../lib/$(DEPDIR)/lib516-timediff.Po
17484 -rm -f ../../lib/$(DEPDIR)/lib517-timediff.Po
1356417485 -rm -f ../../lib/$(DEPDIR)/lib518-curl_multibyte.Po
17486 -rm -f ../../lib/$(DEPDIR)/lib518-timediff.Po
1356517487 -rm -f ../../lib/$(DEPDIR)/lib518-warnless.Po
17488 -rm -f ../../lib/$(DEPDIR)/lib519-timediff.Po
17489 -rm -f ../../lib/$(DEPDIR)/lib520-timediff.Po
17490 -rm -f ../../lib/$(DEPDIR)/lib521-timediff.Po
17491 -rm -f ../../lib/$(DEPDIR)/lib523-timediff.Po
17492 -rm -f ../../lib/$(DEPDIR)/lib524-timediff.Po
1356617493 -rm -f ../../lib/$(DEPDIR)/lib525-curl_multibyte.Po
17494 -rm -f ../../lib/$(DEPDIR)/lib525-timediff.Po
1356717495 -rm -f ../../lib/$(DEPDIR)/lib525-warnless.Po
17496 -rm -f ../../lib/$(DEPDIR)/lib526-timediff.Po
1356817497 -rm -f ../../lib/$(DEPDIR)/lib526-warnless.Po
17498 -rm -f ../../lib/$(DEPDIR)/lib527-timediff.Po
1356917499 -rm -f ../../lib/$(DEPDIR)/lib527-warnless.Po
1357017500 -rm -f ../../lib/$(DEPDIR)/lib529-curl_multibyte.Po
17501 -rm -f ../../lib/$(DEPDIR)/lib529-timediff.Po
1357117502 -rm -f ../../lib/$(DEPDIR)/lib529-warnless.Po
17503 -rm -f ../../lib/$(DEPDIR)/lib530-timediff.Po
1357217504 -rm -f ../../lib/$(DEPDIR)/lib530-warnless.Po
17505 -rm -f ../../lib/$(DEPDIR)/lib532-timediff.Po
1357317506 -rm -f ../../lib/$(DEPDIR)/lib532-warnless.Po
17507 -rm -f ../../lib/$(DEPDIR)/lib533-timediff.Po
1357417508 -rm -f ../../lib/$(DEPDIR)/lib533-warnless.Po
1357517509 -rm -f ../../lib/$(DEPDIR)/lib537-curl_multibyte.Po
17510 -rm -f ../../lib/$(DEPDIR)/lib537-timediff.Po
1357617511 -rm -f ../../lib/$(DEPDIR)/lib537-warnless.Po
17512 -rm -f ../../lib/$(DEPDIR)/lib539-timediff.Po
17513 -rm -f ../../lib/$(DEPDIR)/lib540-timediff.Po
1357717514 -rm -f ../../lib/$(DEPDIR)/lib540-warnless.Po
1357817515 -rm -f ../../lib/$(DEPDIR)/lib541-curl_multibyte.Po
17516 -rm -f ../../lib/$(DEPDIR)/lib541-timediff.Po
17517 -rm -f ../../lib/$(DEPDIR)/lib542-timediff.Po
17518 -rm -f ../../lib/$(DEPDIR)/lib543-timediff.Po
17519 -rm -f ../../lib/$(DEPDIR)/lib544-timediff.Po
17520 -rm -f ../../lib/$(DEPDIR)/lib545-timediff.Po
17521 -rm -f ../../lib/$(DEPDIR)/lib547-timediff.Po
17522 -rm -f ../../lib/$(DEPDIR)/lib548-timediff.Po
17523 -rm -f ../../lib/$(DEPDIR)/lib549-timediff.Po
17524 -rm -f ../../lib/$(DEPDIR)/lib552-timediff.Po
1357917525 -rm -f ../../lib/$(DEPDIR)/lib552-warnless.Po
17526 -rm -f ../../lib/$(DEPDIR)/lib553-timediff.Po
17527 -rm -f ../../lib/$(DEPDIR)/lib554-timediff.Po
17528 -rm -f ../../lib/$(DEPDIR)/lib555-timediff.Po
1358017529 -rm -f ../../lib/$(DEPDIR)/lib555-warnless.Po
17530 -rm -f ../../lib/$(DEPDIR)/lib556-timediff.Po
1358117531 -rm -f ../../lib/$(DEPDIR)/lib556-warnless.Po
17532 -rm -f ../../lib/$(DEPDIR)/lib557-timediff.Po
17533 -rm -f ../../lib/$(DEPDIR)/lib558-timediff.Po
17534 -rm -f ../../lib/$(DEPDIR)/lib559-timediff.Po
17535 -rm -f ../../lib/$(DEPDIR)/lib560-timediff.Po
1358217536 -rm -f ../../lib/$(DEPDIR)/lib560-warnless.Po
17537 -rm -f ../../lib/$(DEPDIR)/lib562-timediff.Po
17538 -rm -f ../../lib/$(DEPDIR)/lib564-timediff.Po
1358317539 -rm -f ../../lib/$(DEPDIR)/lib564-warnless.Po
17540 -rm -f ../../lib/$(DEPDIR)/lib565-timediff.Po
1358417541 -rm -f ../../lib/$(DEPDIR)/lib566-curl_multibyte.Po
17542 -rm -f ../../lib/$(DEPDIR)/lib566-timediff.Po
17543 -rm -f ../../lib/$(DEPDIR)/lib567-timediff.Po
1358517544 -rm -f ../../lib/$(DEPDIR)/lib568-curl_multibyte.Po
17545 -rm -f ../../lib/$(DEPDIR)/lib568-timediff.Po
1358617546 -rm -f ../../lib/$(DEPDIR)/lib569-curl_multibyte.Po
17547 -rm -f ../../lib/$(DEPDIR)/lib569-timediff.Po
17548 -rm -f ../../lib/$(DEPDIR)/lib570-timediff.Po
1358717549 -rm -f ../../lib/$(DEPDIR)/lib571-curl_multibyte.Po
17550 -rm -f ../../lib/$(DEPDIR)/lib571-timediff.Po
1358817551 -rm -f ../../lib/$(DEPDIR)/lib571-warnless.Po
1358917552 -rm -f ../../lib/$(DEPDIR)/lib572-curl_multibyte.Po
17553 -rm -f ../../lib/$(DEPDIR)/lib572-timediff.Po
17554 -rm -f ../../lib/$(DEPDIR)/lib573-timediff.Po
1359017555 -rm -f ../../lib/$(DEPDIR)/lib573-warnless.Po
17556 -rm -f ../../lib/$(DEPDIR)/lib574-timediff.Po
17557 -rm -f ../../lib/$(DEPDIR)/lib575-timediff.Po
1359117558 -rm -f ../../lib/$(DEPDIR)/lib575-warnless.Po
17559 -rm -f ../../lib/$(DEPDIR)/lib576-timediff.Po
1359217560 -rm -f ../../lib/$(DEPDIR)/lib578-curl_multibyte.Po
17561 -rm -f ../../lib/$(DEPDIR)/lib578-timediff.Po
1359317562 -rm -f ../../lib/$(DEPDIR)/lib579-curl_multibyte.Po
17563 -rm -f ../../lib/$(DEPDIR)/lib579-timediff.Po
1359417564 -rm -f ../../lib/$(DEPDIR)/lib582-curl_multibyte.Po
17565 -rm -f ../../lib/$(DEPDIR)/lib582-timediff.Po
1359517566 -rm -f ../../lib/$(DEPDIR)/lib582-warnless.Po
17567 -rm -f ../../lib/$(DEPDIR)/lib583-timediff.Po
17568 -rm -f ../../lib/$(DEPDIR)/lib584-timediff.Po
1359617569 -rm -f ../../lib/$(DEPDIR)/lib585-curl_multibyte.Po
17570 -rm -f ../../lib/$(DEPDIR)/lib585-timediff.Po
17571 -rm -f ../../lib/$(DEPDIR)/lib586-timediff.Po
17572 -rm -f ../../lib/$(DEPDIR)/lib587-timediff.Po
17573 -rm -f ../../lib/$(DEPDIR)/lib589-timediff.Po
17574 -rm -f ../../lib/$(DEPDIR)/lib590-timediff.Po
1359717575 -rm -f ../../lib/$(DEPDIR)/lib591-curl_multibyte.Po
17576 -rm -f ../../lib/$(DEPDIR)/lib591-timediff.Po
1359817577 -rm -f ../../lib/$(DEPDIR)/lib591-warnless.Po
17578 -rm -f ../../lib/$(DEPDIR)/lib597-timediff.Po
1359917579 -rm -f ../../lib/$(DEPDIR)/lib597-warnless.Po
17580 -rm -f ../../lib/$(DEPDIR)/lib598-timediff.Po
1360017581 -rm -f ../../lib/$(DEPDIR)/lib599-curl_multibyte.Po
17582 -rm -f ../../lib/$(DEPDIR)/lib599-timediff.Po
17583 -rm -f ../../lib/$(DEPDIR)/lib643-timediff.Po
17584 -rm -f ../../lib/$(DEPDIR)/lib645-timediff.Po
17585 -rm -f ../../lib/$(DEPDIR)/lib650-timediff.Po
17586 -rm -f ../../lib/$(DEPDIR)/lib651-timediff.Po
17587 -rm -f ../../lib/$(DEPDIR)/lib652-timediff.Po
17588 -rm -f ../../lib/$(DEPDIR)/lib653-timediff.Po
17589 -rm -f ../../lib/$(DEPDIR)/lib654-timediff.Po
17590 -rm -f ../../lib/$(DEPDIR)/lib655-timediff.Po
17591 -rm -f ../../lib/$(DEPDIR)/lib658-timediff.Po
1360117592 -rm -f ../../lib/$(DEPDIR)/lib658-warnless.Po
17593 -rm -f ../../lib/$(DEPDIR)/lib659-timediff.Po
1360217594 -rm -f ../../lib/$(DEPDIR)/lib659-warnless.Po
17595 -rm -f ../../lib/$(DEPDIR)/lib661-timediff.Po
17596 -rm -f ../../lib/$(DEPDIR)/lib666-timediff.Po
17597 -rm -f ../../lib/$(DEPDIR)/lib667-timediff.Po
1360317598 -rm -f ../../lib/$(DEPDIR)/lib667-warnless.Po
17599 -rm -f ../../lib/$(DEPDIR)/lib668-timediff.Po
1360417600 -rm -f ../../lib/$(DEPDIR)/lib668-warnless.Po
17601 -rm -f ../../lib/$(DEPDIR)/lib670-timediff.Po
1360517602 -rm -f ../../lib/$(DEPDIR)/lib670-warnless.Po
17603 -rm -f ../../lib/$(DEPDIR)/lib671-timediff.Po
1360617604 -rm -f ../../lib/$(DEPDIR)/lib671-warnless.Po
17605 -rm -f ../../lib/$(DEPDIR)/lib672-timediff.Po
1360717606 -rm -f ../../lib/$(DEPDIR)/lib672-warnless.Po
17607 -rm -f ../../lib/$(DEPDIR)/lib673-timediff.Po
1360817608 -rm -f ../../lib/$(DEPDIR)/lib673-warnless.Po
17609 -rm -f ../../lib/$(DEPDIR)/lib674-timediff.Po
1360917610 -rm -f ../../lib/$(DEPDIR)/lib674-warnless.Po
17611 -rm -f ../../lib/$(DEPDIR)/lib676-timediff.Po
1361017612 -rm -f ../../lib/$(DEPDIR)/lib676-warnless.Po
1361117613 -rm -f ../../lib/$(DEPDIR)/lib677-curl_multibyte.Po
17614 -rm -f ../../lib/$(DEPDIR)/lib677-timediff.Po
1361217615 -rm -f ../../lib/$(DEPDIR)/lib677-warnless.Po
1361317616 -rm -f ../../lib/$(DEPDIR)/lib678-curl_multibyte.Po
17617 -rm -f ../../lib/$(DEPDIR)/lib678-timediff.Po
1361417618 -rm -f ../../lib/$(DEPDIR)/lib678-warnless.Po
17619 -rm -f ../../lib/$(DEPDIR)/libauthretry-timediff.Po
17620 -rm -f ../../lib/$(DEPDIR)/libntlmconnect-timediff.Po
1361517621 -rm -f ../../lib/$(DEPDIR)/libntlmconnect-warnless.Po
17622 -rm -f ../../lib/$(DEPDIR)/libprereq-timediff.Po
1361617623 -rm -f ../../lib/$(DEPDIR)/libprereq-warnless.Po
17624 -rm -f ../../lib/$(DEPDIR)/timediff.Po
1361717625 -rm -f ../../lib/$(DEPDIR)/warnless.Po
1361817626 -rm -f ./$(DEPDIR)/chkdecimalpoint-chkdecimalpoint.Po
1361917627 -rm -f ./$(DEPDIR)/chkhostname-chkhostname.Po
1383317841 -rm -f ./$(DEPDIR)/lib1938-lib1938.Po
1383417842 -rm -f ./$(DEPDIR)/lib1939-first.Po
1383517843 -rm -f ./$(DEPDIR)/lib1939-lib1939.Po
17844 -rm -f ./$(DEPDIR)/lib1940-first.Po
17845 -rm -f ./$(DEPDIR)/lib1940-lib1940.Po
17846 -rm -f ./$(DEPDIR)/lib1945-first.Po
17847 -rm -f ./$(DEPDIR)/lib1945-lib1945.Po
17848 -rm -f ./$(DEPDIR)/lib1946-first.Po
17849 -rm -f ./$(DEPDIR)/lib1946-lib1940.Po
1383617850 -rm -f ./$(DEPDIR)/lib3010-first.Po
1383717851 -rm -f ./$(DEPDIR)/lib3010-lib3010.Po
1383817852 -rm -f ./$(DEPDIR)/lib3010-testutil.Po
1413118145 @PERL@ $(top_srcdir)/tests/libtest/mk-lib1521.pl < $(top_srcdir)/include/curl/curl.h > lib1521.c
1413218146
1413318147 checksrc:
14134 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.[ch]
18148 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/*.[ch]
1413518149
1413618150 # for debug builds, we scan the sources on all regular make invokes
1413718151 @CURLDEBUG_TRUE@all-local: checksrc
44 # | (__| |_| | _ <| |___
55 # \___|\___/|_| \_\_____|
66 #
7 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 #
99 # This software is licensed as described in the file COPYING, which
1010 # you should have received as part of this distribution. The terms
3131 MULTIBYTE = ../../lib/curl_multibyte.c ../../lib/curl_multibyte.h
3232
3333 # these files are used in every single test program below
34 SUPPORTFILES = first.c test.h
34 SUPPORTFILES = ../../lib/timediff.c ../../lib/timediff.h first.c test.h
3535
3636 # These are all libcurl test programs
3737 noinst_PROGRAMS = chkhostname libauthretry libntlmconnect \
6060 lib1591 lib1592 lib1593 lib1594 lib1596 \
6161 lib1905 lib1906 lib1907 lib1908 lib1910 lib1911 lib1912 lib1913 \
6262 lib1915 lib1916 lib1917 lib1918 lib1933 lib1934 lib1935 lib1936 \
63 lib1937 lib1938 lib1939 \
63 lib1937 lib1938 lib1939 lib1940 lib1945 lib1946 \
6464 lib3010 lib3025
6565
6666 chkdecimalpoint_SOURCES = chkdecimalpoint.c ../../lib/mprintf.c \
723723 lib1939_LDADD = $(TESTUTIL_LIBS)
724724 lib1939_CPPFLAGS = $(AM_CPPFLAGS)
725725
726 lib1940_SOURCES = lib1940.c $(SUPPORTFILES)
727 lib1940_LDADD = $(TESTUTIL_LIBS)
728 lib1940_CPPFLAGS = $(AM_CPPFLAGS)
729
730 lib1945_SOURCES = lib1945.c $(SUPPORTFILES)
731 lib1945_LDADD = $(TESTUTIL_LIBS)
732 lib1945_CPPFLAGS = $(AM_CPPFLAGS)
733
734 lib1946_SOURCES = lib1940.c $(SUPPORTFILES)
735 lib1946_LDADD = $(TESTUTIL_LIBS)
736 lib1946_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1946
737
726738 lib3010_SOURCES = lib3010.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
727739 lib3010_LDADD = $(TESTUTIL_LIBS)
728740 lib3010_CPPFLAGS = $(AM_CPPFLAGS)
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
4141 # include "memdebug.h"
4242 #endif
4343
44 #include "timediff.h"
45
4446 int select_wrapper(int nfds, fd_set *rd, fd_set *wr, fd_set *exc,
4547 struct timeval *tv)
4648 {
5557 * select() can not be used to sleep without a single fd_set.
5658 */
5759 if(!nfds) {
58 Sleep((1000*tv->tv_sec) + (DWORD)(((double)tv->tv_usec)/1000.0));
60 Sleep((DWORD)curlx_tvtoms(tv));
5961 return 0;
6062 }
6163 #endif
6466
6567 void wait_ms(int ms)
6668 {
69 #ifdef USE_WINSOCK
70 Sleep(ms);
71 #else
6772 struct timeval t;
68 t.tv_sec = ms/1000;
69 ms -= (int)t.tv_sec * 1000;
70 t.tv_usec = ms * 1000;
73 curlx_mstotv(&t, ms);
7174 select_wrapper(0, NULL, NULL, NULL, &t);
75 #endif
7276 }
7377
7478 char *libtest_arg2 = NULL;
178182 PR_Cleanup();
179183 #endif
180184
185 #ifdef WIN32
186 /* flush buffers of all streams regardless of mode */
187 _flushall();
188 #endif
189
181190 return result;
182191 }
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
2121 #include "test.h"
2222
2323 #include "testutil.h"
24 #include "timediff.h"
2425 #include "warnless.h"
2526 #include "memdebug.h"
2627
101102
102103 curl_multi_timeout(mcurl, &curl_timeo);
103104 if(curl_timeo >= 0) {
104 timeout.tv_sec = curl_timeo / 1000;
105 if(timeout.tv_sec > 1)
105 curlx_mstotv(&timeout, curl_timeo);
106 if(timeout.tv_sec > 1) {
106107 timeout.tv_sec = 1;
107 else
108 timeout.tv_usec = (curl_timeo % 1000) * 1000;
108 timeout.tv_usec = 0;
109 }
109110 }
110111
111112 /* get file descriptors from the transfers */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
2121 #include "test.h"
2222
2323 #include "testutil.h"
24 #include "timediff.h"
2425 #include "warnless.h"
2526 #include "memdebug.h"
2627
8485
8586 curl_multi_timeout(multi_handle, &curl_timeo);
8687 if(curl_timeo >= 0) {
87 timeout.tv_sec = curl_timeo / 1000;
88 if(timeout.tv_sec > 1)
88 curlx_mstotv(&timeout, curl_timeo);
89 if(timeout.tv_sec > 1) {
8990 timeout.tv_sec = 1;
90 else
91 timeout.tv_usec = (curl_timeo % 1000) * 1000;
91 timeout.tv_usec = 0;
92 }
9293 }
9394
9495 /* get file descriptors from the transfers */
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 2019 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 2019 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
2121 #include "test.h"
2222
2323 #include "testutil.h"
24 #include "timediff.h"
2425 #include "warnless.h"
2526 #include "memdebug.h"
2627
7273 curl_multi_timeout(cm, &max_tout);
7374
7475 if(max_tout > 0) {
75 timeout.tv_sec = max_tout / 1000;
76 timeout.tv_usec = (max_tout % 1000) * 1000;
76 curlx_mstotv(&timeout, max_tout);
7777 }
7878 else {
7979 timeout.tv_sec = 0;
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.haxx.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21
22 #include "test.h"
23
24 #include "memdebug.h"
25
26 static const char *show[]={
27 "daTE",
28 "Server",
29 "content-type",
30 "content-length",
31 "location",
32 "set-cookie",
33 "silly-thing",
34 NULL
35 };
36
37 #ifdef LIB1946
38 #define HEADER_REQUEST 0
39 #else
40 #define HEADER_REQUEST -1
41 #endif
42
43 static void showem(CURL *easy, unsigned int type)
44 {
45 int i;
46 struct curl_header *header;
47 for(i = 0; show[i]; i++) {
48 if(CURLHE_OK == curl_easy_header(easy, show[i], 0, type, HEADER_REQUEST,
49 &header)) {
50 if(header->amount > 1) {
51 /* more than one, iterate over them */
52 size_t index = 0;
53 size_t amount = header->amount;
54 do {
55 printf("- %s == %s (%u/%u)\n", header->name, header->value,
56 (int)index, (int)amount);
57
58 if(++index == amount)
59 break;
60 if(CURLHE_OK != curl_easy_header(easy, show[i], index, type,
61 HEADER_REQUEST, &header))
62 break;
63 } while(1);
64 }
65 else {
66 /* only one of this */
67 printf(" %s == %s\n", header->name, header->value);
68 }
69 }
70 }
71 }
72
73 static size_t write_cb(char *data, size_t n, size_t l, void *userp)
74 {
75 /* take care of the data here, ignored in this example */
76 (void)data;
77 (void)userp;
78 return n*l;
79 }
80 int test(char *URL)
81 {
82 CURL *easy;
83
84 curl_global_init(CURL_GLOBAL_DEFAULT);
85
86 easy = curl_easy_init();
87 if(easy) {
88 CURLcode res;
89 curl_easy_setopt(easy, CURLOPT_URL, URL);
90 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L);
91 curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1L);
92 /* ignores any content */
93 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb);
94
95 /* if there's a proxy set, use it */
96 if(libtest_arg2 && *libtest_arg2) {
97 curl_easy_setopt(easy, CURLOPT_PROXY, libtest_arg2);
98 curl_easy_setopt(easy, CURLOPT_HTTPPROXYTUNNEL, 1L);
99 }
100 res = curl_easy_perform(easy);
101 if(res) {
102 printf("badness: %d\n", (int)res);
103 }
104 showem(easy, CURLH_HEADER);
105 if(libtest_arg2 && *libtest_arg2) {
106 /* now show connect headers only */
107 showem(easy, CURLH_CONNECT);
108 }
109 showem(easy, CURLH_1XX);
110 showem(easy, CURLH_TRAILER);
111 curl_easy_cleanup(easy);
112 }
113 curl_global_cleanup();
114 return 0;
115 }
0 /***************************************************************************
1 * _ _ ____ _
2 * Project ___| | | | _ \| |
3 * / __| | | | |_) | |
4 * | (__| |_| | _ <| |___
5 * \___|\___/|_| \_\_____|
6 *
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
8 *
9 * This software is licensed as described in the file COPYING, which
10 * you should have received as part of this distribution. The terms
11 * are also available at https://curl.haxx.se/docs/copyright.html.
12 *
13 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 * copies of the Software, and permit persons to whom the Software is
15 * furnished to do so, under the terms of the COPYING file.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ***************************************************************************/
21
22 #include "test.h"
23
24 #include "memdebug.h"
25
26 #ifdef _MSC_VER
27 /* warning C4706: assignment within conditional expression */
28 #pragma warning(disable:4706)
29 #endif
30 static void showem(CURL *easy, unsigned int type)
31 {
32 struct curl_header *header = NULL;
33 struct curl_header *prev = NULL;
34
35 while((header = curl_easy_nextheader(easy, type, 0, prev))) {
36 printf(" %s == %s (%u/%u)\n", header->name, header->value,
37 (int)header->index, (int)header->amount);
38 prev = header;
39 }
40 }
41
42 static size_t write_cb(char *data, size_t n, size_t l, void *userp)
43 {
44 /* take care of the data here, ignored in this example */
45 (void)data;
46 (void)userp;
47 return n*l;
48 }
49 int test(char *URL)
50 {
51 CURL *easy;
52
53 curl_global_init(CURL_GLOBAL_DEFAULT);
54
55 easy = curl_easy_init();
56 if(easy) {
57 CURLcode res;
58 curl_easy_setopt(easy, CURLOPT_URL, URL);
59 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L);
60 curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1L);
61 /* ignores any content */
62 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb);
63
64 /* if there's a proxy set, use it */
65 if(libtest_arg2 && *libtest_arg2) {
66 curl_easy_setopt(easy, CURLOPT_PROXY, libtest_arg2);
67 curl_easy_setopt(easy, CURLOPT_HTTPPROXYTUNNEL, 1L);
68 }
69 res = curl_easy_perform(easy);
70 if(res) {
71 printf("badness: %d\n", (int)res);
72 }
73 showem(easy, CURLH_CONNECT|CURLH_HEADER|CURLH_TRAILER|CURLH_1XX);
74 curl_easy_cleanup(easy);
75 }
76 curl_global_cleanup();
77 return 0;
78 }
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
139139 mime = curl_mime_init(pooh.easy);
140140 part = curl_mime_addpart(mime);
141141 result = curl_mime_name(part, name);
142 if(!result)
143 res = curl_mime_data_cb(part, (curl_off_t) 2, read_callback,
144 NULL, NULL, &pooh);
145
146142 if(result) {
147143 fprintf(stderr,
148144 "Something went wrong when building the mime structure: %d\n",
149145 (int) result);
150146 goto test_cleanup;
151147 }
148
149 res = curl_mime_data_cb(part, (curl_off_t) 2, read_callback,
150 NULL, NULL, &pooh);
152151
153152 /* Bind mime data to its easy handle. */
154153 if(!res)
55 # | (__| |_| | _ <| |___
66 # \___|\___/|_| \_\_____|
77 #
8 # Copyright (C) 2016 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
8 # Copyright (C) 2016 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
99 #
1010 # This software is licensed as described in the file COPYING, which
1111 # you should have received as part of this distribution. The terms
145145 '--no-sessionid' => 1,
146146 '--no-keepalive' => 1,
147147 '--no-progress-meter' => 1,
148 '--no-clobber' => 1,
148149
149150 # pretend these options without -no exist in curl.1 and tool_listhelp.c
150151 '--alpn' => 6,
155156 '-N, --buffer' => 6,
156157 '--sessionid' => 6,
157158 '--progress-meter' => 6,
158
159 # deprecated options do not need to be in tool_listhelp.c nor curl.1
159 '--clobber' => 6,
160
161 # deprecated options do not need to be in tool_help.c nor curl.1
160162 '--krb4' => 6,
161163 '--ftp-ssl' => 6,
162164 '--ftp-ssl-reqd' => 6,
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH runtests.pl 1 "June 02, 2021" "Curl 7.82.0" "runtests"
22 .TH runtests.pl 1 "June 02, 2021" "Curl 7.83.0" "runtests"
2323
2424 .SH NAME
2525 runtests.pl \- run one or more test cases
255255 my $has_charconv; # set if libcurl is built with CharConv support
256256 my $has_tls_srp; # set if libcurl is built with TLS-SRP support
257257 my $has_http2; # set if libcurl is built with HTTP2 support
258 my $has_h2c; # set if libcurl is built with h2c support
258259 my $has_httpsproxy; # set if libcurl is built with HTTPS-proxy support
259260 my $has_crypto; # set if libcurl is built with cryptographic support
260261 my $has_cares; # set if built with c-ares
270271 my $has_hyper = 0; # set if built with Hyper
271272 my $has_libssh2; # set if built with libssh2
272273 my $has_libssh; # set if built with libssh
273 my $has_oldlibssh; # set if built with libssh < 0.9.6
274 my $has_oldlibssh; # set if built with libssh < 0.9.4
274275 my $has_wolfssh; # set if built with wolfssh
275276 my $has_unicode; # set if libcurl is built with Unicode support
276277
282283 my $has_gnutls; # built with GnuTLS
283284 my $has_nss; # built with NSS
284285 my $has_wolfssl; # built with wolfSSL
286 my $has_bearssl; # built with BearSSL
285287 my $has_schannel; # built with Schannel
286288 my $has_sectransp; # built with Secure Transport
287289 my $has_boringssl; # built with BoringSSL
668670 my @ttests = (1 .. $count);
669671 if($shallow && ($shallow < $count)) {
670672 my $discard = scalar(@ttests) - $shallow;
671 my $percent = sprintf("%.2f%%", $shallow * 100 / scalar(@ttests));;
673 my $percent = sprintf("%.2f%%", $shallow * 100 / scalar(@ttests));
672674 logmsg " $count functions found, but only fail $shallow ($percent)\n";
673675 while($discard) {
674676 my $rm;
28632865 }
28642866
28652867 sub setupfeatures {
2866 $feature{"hyper"} = $has_hyper;
2868 $feature{"alt-svc"} = $has_altsvc;
2869 $feature{"bearssl"} = $has_bearssl;
2870 $feature{"brotli"} = $has_brotli;
28672871 $feature{"c-ares"} = $has_cares;
2868 $feature{"alt-svc"} = $has_altsvc;
2869 $feature{"HSTS"} = $has_hsts;
2870 $feature{"brotli"} = $has_brotli;
28712872 $feature{"crypto"} = $has_crypto;
28722873 $feature{"debug"} = $debug_build;
28732874 $feature{"getrlimit"} = $has_getrlimit;
28742875 $feature{"GnuTLS"} = $has_gnutls;
28752876 $feature{"GSS-API"} = $has_gssapi;
2877 $feature{"h2c"} = $has_h2c;
2878 $feature{"HSTS"} = $has_hsts;
28762879 $feature{"http/2"} = $has_http2;
28772880 $feature{"https-proxy"} = $has_httpsproxy;
2881 $feature{"hyper"} = $has_hyper;
28782882 $feature{"idn"} = $has_idn;
28792883 $feature{"ipv6"} = $has_ipv6;
28802884 $feature{"Kerberos"} = $has_kerberos;
28812885 $feature{"large_file"} = $has_largefile;
28822886 $feature{"ld_preload"} = ($has_ldpreload && !$debug_build);
2887 $feature{"libssh"} = $has_libssh;
2888 $feature{"libssh2"} = $has_libssh2;
28832889 $feature{"libz"} = $has_libz;
2884 $feature{"libssh2"} = $has_libssh2;
2885 $feature{"libssh"} = $has_libssh;
2886 $feature{"oldlibssh"} = $has_oldlibssh;
2887 $feature{"rustls"} = $has_rustls;
2888 $feature{"wolfssh"} = $has_wolfssh;
2889 $feature{"wolfssl"} = $has_wolfssl;
28902890 $feature{"manual"} = $has_manual;
28912891 $feature{"MinGW"} = $has_mingw;
28922892 $feature{"MultiSSL"} = $has_multissl;
28932893 $feature{"NSS"} = $has_nss;
28942894 $feature{"NTLM"} = $has_ntlm;
28952895 $feature{"NTLM_WB"} = $has_ntlm_wb;
2896 $feature{"oldlibssh"} = $has_oldlibssh;
28962897 $feature{"OpenSSL"} = $has_openssl || $has_libressl || $has_boringssl;
28972898 $feature{"PSL"} = $has_psl;
2899 $feature{"rustls"} = $has_rustls;
28982900 $feature{"Schannel"} = $has_schannel;
28992901 $feature{"sectransp"} = $has_sectransp;
29002902 $feature{"SPNEGO"} = $has_spnego;
29082910 $feature{"unittest"} = $debug_build;
29092911 $feature{"unix-sockets"} = $has_unix;
29102912 $feature{"win32"} = $has_win32;
2913 $feature{"wolfssh"} = $has_wolfssh;
2914 $feature{"wolfssl"} = $has_wolfssl;
29112915 $feature{"zstd"} = $has_zstd;
29122916
29132917 # make each protocol an enabled "feature"
29302934 $feature{"typecheck"} = 1;
29312935 $feature{"verbose-strings"} = 1;
29322936 $feature{"wakeup"} = 1;
2937 $feature{"headers-api"} = 1;
29332938
29342939 }
29352940
30153020 elsif ($libcurl =~ /wolfssl/i) {
30163021 $has_wolfssl=1;
30173022 $has_sslpinning=1;
3023 }
3024 elsif ($libcurl =~ /bearssl/i) {
3025 $has_bearssl=1;
30183026 }
30193027 elsif ($libcurl =~ /securetransport/i) {
30203028 $has_sectransp=1;
30393047 if ($libcurl =~ /Hyper/i) {
30403048 $has_hyper=1;
30413049 }
3050 if ($libcurl =~ /nghttp2/i) {
3051 # nghttp2 supports h2c, hyper does not
3052 $has_h2c=1;
3053 }
30423054 if ($libcurl =~ /libssh2/i) {
30433055 $has_libssh2=1;
30443056 }
30463058 $has_libssh=1;
30473059 if($1 =~ /(\d+)\.(\d+).(\d+)/) {
30483060 my $v = $1 * 100 + $2 * 10 + $3;
3049 if($v < 95) {
3050 # before 0.9.5
3061 if($v < 94) {
3062 # before 0.9.4
30513063 $has_oldlibssh = 1;
30523064 }
30533065 }
61856197 if($skipped && !$short) {
61866198 my $s=0;
61876199 # Temporary hash to print the restraints sorted by the number
6188 # of their occurences
6200 # of their occurrences
61896201 my %restraints;
61906202 logmsg "TESTINFO: $skipped tests were skipped due to these restraints:\n";
61916203
5151 CS_ = $(CS_0)
5252
5353 checksrc:
54 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
54 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch]
5555
5656 if CURLDEBUG
5757 # for debug builds, we scan the sources on all regular make invokes
2020 # | (__| |_| | _ <| |___
2121 # \___|\___/|_| \_\_____|
2222 #
23 # Copyright (C) 2009 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
23 # Copyright (C) 2009 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
2424 #
2525 # This software is licensed as described in the file COPYING, which
2626 # you should have received as part of this distribution. The terms
163163 ../../lib/fake_ntlm-nonblock.$(OBJEXT) \
164164 ../../lib/fake_ntlm-strtoofft.$(OBJEXT) \
165165 ../../lib/fake_ntlm-warnless.$(OBJEXT) \
166 ../../lib/fake_ntlm-timediff.$(OBJEXT) \
166167 ../../lib/fake_ntlm-curl_ctype.$(OBJEXT) \
167168 ../../lib/fake_ntlm-dynbuf.$(OBJEXT) \
168169 ../../lib/fake_ntlm-strdup.$(OBJEXT) \
184185 ../../lib/getpart-nonblock.$(OBJEXT) \
185186 ../../lib/getpart-strtoofft.$(OBJEXT) \
186187 ../../lib/getpart-warnless.$(OBJEXT) \
188 ../../lib/getpart-timediff.$(OBJEXT) \
187189 ../../lib/getpart-curl_ctype.$(OBJEXT) \
188190 ../../lib/getpart-dynbuf.$(OBJEXT) \
189191 ../../lib/getpart-strdup.$(OBJEXT) \
202204 ../../lib/mqttd-nonblock.$(OBJEXT) \
203205 ../../lib/mqttd-strtoofft.$(OBJEXT) \
204206 ../../lib/mqttd-warnless.$(OBJEXT) \
207 ../../lib/mqttd-timediff.$(OBJEXT) \
205208 ../../lib/mqttd-curl_ctype.$(OBJEXT) \
206209 ../../lib/mqttd-dynbuf.$(OBJEXT) \
207210 ../../lib/mqttd-strdup.$(OBJEXT) \
222225 ../../lib/resolve-nonblock.$(OBJEXT) \
223226 ../../lib/resolve-strtoofft.$(OBJEXT) \
224227 ../../lib/resolve-warnless.$(OBJEXT) \
228 ../../lib/resolve-timediff.$(OBJEXT) \
225229 ../../lib/resolve-curl_ctype.$(OBJEXT) \
226230 ../../lib/resolve-dynbuf.$(OBJEXT) \
227231 ../../lib/resolve-strdup.$(OBJEXT) \
241245 ../../lib/rtspd-nonblock.$(OBJEXT) \
242246 ../../lib/rtspd-strtoofft.$(OBJEXT) \
243247 ../../lib/rtspd-warnless.$(OBJEXT) \
248 ../../lib/rtspd-timediff.$(OBJEXT) \
244249 ../../lib/rtspd-curl_ctype.$(OBJEXT) \
245250 ../../lib/rtspd-dynbuf.$(OBJEXT) \
246251 ../../lib/rtspd-strdup.$(OBJEXT) \
260265 ../../lib/sockfilt-nonblock.$(OBJEXT) \
261266 ../../lib/sockfilt-strtoofft.$(OBJEXT) \
262267 ../../lib/sockfilt-warnless.$(OBJEXT) \
268 ../../lib/sockfilt-timediff.$(OBJEXT) \
263269 ../../lib/sockfilt-curl_ctype.$(OBJEXT) \
264270 ../../lib/sockfilt-dynbuf.$(OBJEXT) \
265271 ../../lib/sockfilt-strdup.$(OBJEXT) \
281287 ../../lib/socksd-nonblock.$(OBJEXT) \
282288 ../../lib/socksd-strtoofft.$(OBJEXT) \
283289 ../../lib/socksd-warnless.$(OBJEXT) \
290 ../../lib/socksd-timediff.$(OBJEXT) \
284291 ../../lib/socksd-curl_ctype.$(OBJEXT) \
285292 ../../lib/socksd-dynbuf.$(OBJEXT) \
286293 ../../lib/socksd-strdup.$(OBJEXT) \
301308 ../../lib/sws-nonblock.$(OBJEXT) \
302309 ../../lib/sws-strtoofft.$(OBJEXT) \
303310 ../../lib/sws-warnless.$(OBJEXT) \
311 ../../lib/sws-timediff.$(OBJEXT) \
304312 ../../lib/sws-curl_ctype.$(OBJEXT) \
305313 ../../lib/sws-dynbuf.$(OBJEXT) ../../lib/sws-strdup.$(OBJEXT) \
306314 ../../lib/sws-curl_multibyte.$(OBJEXT)
319327 ../../lib/tftpd-nonblock.$(OBJEXT) \
320328 ../../lib/tftpd-strtoofft.$(OBJEXT) \
321329 ../../lib/tftpd-warnless.$(OBJEXT) \
330 ../../lib/tftpd-timediff.$(OBJEXT) \
322331 ../../lib/tftpd-curl_ctype.$(OBJEXT) \
323332 ../../lib/tftpd-dynbuf.$(OBJEXT) \
324333 ../../lib/tftpd-strdup.$(OBJEXT) \
358367 ../../lib/$(DEPDIR)/fake_ntlm-nonblock.Po \
359368 ../../lib/$(DEPDIR)/fake_ntlm-strdup.Po \
360369 ../../lib/$(DEPDIR)/fake_ntlm-strtoofft.Po \
370 ../../lib/$(DEPDIR)/fake_ntlm-timediff.Po \
361371 ../../lib/$(DEPDIR)/fake_ntlm-warnless.Po \
362372 ../../lib/$(DEPDIR)/getpart-base64.Po \
363373 ../../lib/$(DEPDIR)/getpart-curl_ctype.Po \
368378 ../../lib/$(DEPDIR)/getpart-nonblock.Po \
369379 ../../lib/$(DEPDIR)/getpart-strdup.Po \
370380 ../../lib/$(DEPDIR)/getpart-strtoofft.Po \
381 ../../lib/$(DEPDIR)/getpart-timediff.Po \
371382 ../../lib/$(DEPDIR)/getpart-warnless.Po \
372383 ../../lib/$(DEPDIR)/mqttd-base64.Po \
373384 ../../lib/$(DEPDIR)/mqttd-curl_ctype.Po \
379390 ../../lib/$(DEPDIR)/mqttd-nonblock.Po \
380391 ../../lib/$(DEPDIR)/mqttd-strdup.Po \
381392 ../../lib/$(DEPDIR)/mqttd-strtoofft.Po \
393 ../../lib/$(DEPDIR)/mqttd-timediff.Po \
382394 ../../lib/$(DEPDIR)/mqttd-warnless.Po \
383395 ../../lib/$(DEPDIR)/resolve-base64.Po \
384396 ../../lib/$(DEPDIR)/resolve-curl_ctype.Po \
389401 ../../lib/$(DEPDIR)/resolve-nonblock.Po \
390402 ../../lib/$(DEPDIR)/resolve-strdup.Po \
391403 ../../lib/$(DEPDIR)/resolve-strtoofft.Po \
404 ../../lib/$(DEPDIR)/resolve-timediff.Po \
392405 ../../lib/$(DEPDIR)/resolve-warnless.Po \
393406 ../../lib/$(DEPDIR)/rtspd-base64.Po \
394407 ../../lib/$(DEPDIR)/rtspd-curl_ctype.Po \
399412 ../../lib/$(DEPDIR)/rtspd-nonblock.Po \
400413 ../../lib/$(DEPDIR)/rtspd-strdup.Po \
401414 ../../lib/$(DEPDIR)/rtspd-strtoofft.Po \
415 ../../lib/$(DEPDIR)/rtspd-timediff.Po \
402416 ../../lib/$(DEPDIR)/rtspd-warnless.Po \
403417 ../../lib/$(DEPDIR)/sockfilt-base64.Po \
404418 ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Po \
410424 ../../lib/$(DEPDIR)/sockfilt-nonblock.Po \
411425 ../../lib/$(DEPDIR)/sockfilt-strdup.Po \
412426 ../../lib/$(DEPDIR)/sockfilt-strtoofft.Po \
427 ../../lib/$(DEPDIR)/sockfilt-timediff.Po \
413428 ../../lib/$(DEPDIR)/sockfilt-warnless.Po \
414429 ../../lib/$(DEPDIR)/socksd-base64.Po \
415430 ../../lib/$(DEPDIR)/socksd-curl_ctype.Po \
421436 ../../lib/$(DEPDIR)/socksd-nonblock.Po \
422437 ../../lib/$(DEPDIR)/socksd-strdup.Po \
423438 ../../lib/$(DEPDIR)/socksd-strtoofft.Po \
439 ../../lib/$(DEPDIR)/socksd-timediff.Po \
424440 ../../lib/$(DEPDIR)/socksd-warnless.Po \
425441 ../../lib/$(DEPDIR)/sws-base64.Po \
426442 ../../lib/$(DEPDIR)/sws-curl_ctype.Po \
432448 ../../lib/$(DEPDIR)/sws-nonblock.Po \
433449 ../../lib/$(DEPDIR)/sws-strdup.Po \
434450 ../../lib/$(DEPDIR)/sws-strtoofft.Po \
451 ../../lib/$(DEPDIR)/sws-timediff.Po \
435452 ../../lib/$(DEPDIR)/sws-warnless.Po \
436453 ../../lib/$(DEPDIR)/tftpd-base64.Po \
437454 ../../lib/$(DEPDIR)/tftpd-curl_ctype.Po \
442459 ../../lib/$(DEPDIR)/tftpd-nonblock.Po \
443460 ../../lib/$(DEPDIR)/tftpd-strdup.Po \
444461 ../../lib/$(DEPDIR)/tftpd-strtoofft.Po \
462 ../../lib/$(DEPDIR)/tftpd-timediff.Po \
445463 ../../lib/$(DEPDIR)/tftpd-warnless.Po ./$(DEPDIR)/disabled.Po \
446464 ./$(DEPDIR)/fake_ntlm-fake_ntlm.Po \
447465 ./$(DEPDIR)/fake_ntlm-getpart.Po ./$(DEPDIR)/fake_ntlm-util.Po \
552570 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
553571 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
554572 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
573 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
555574 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
556575 CYGPATH_W = @CYGPATH_W@
557576 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
569588 ETAGS = @ETAGS@
570589 EXEEXT = @EXEEXT@
571590 FGREP = @FGREP@
591 FILECMD = @FILECMD@
572592 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
573593 GCOV = @GCOV@
574594 GREP = @GREP@
646666 USE_LIBSSH = @USE_LIBSSH@
647667 USE_LIBSSH2 = @USE_LIBSSH2@
648668 USE_MBEDTLS = @USE_MBEDTLS@
669 USE_MSH3 = @USE_MSH3@
649670 USE_NGHTTP2 = @USE_NGHTTP2@
650671 USE_NGHTTP3 = @USE_NGHTTP3@
651672 USE_NGTCP2 = @USE_NGTCP2@
761782 ../../lib/nonblock.c \
762783 ../../lib/strtoofft.c \
763784 ../../lib/warnless.c \
785 ../../lib/timediff.c \
764786 ../../lib/curl_ctype.c \
765787 ../../lib/dynbuf.c \
766788 ../../lib/strdup.c \
771793 ../../lib/nonblock.h \
772794 ../../lib/strtoofft.h \
773795 ../../lib/warnless.h \
796 ../../lib/timediff.h \
774797 ../../lib/curl_ctype.h \
775798 ../../lib/dynbuf.h \
776799 ../../lib/strdup.h \
912935 ../../lib/$(DEPDIR)/$(am__dirstamp)
913936 ../../lib/fake_ntlm-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
914937 ../../lib/$(DEPDIR)/$(am__dirstamp)
938 ../../lib/fake_ntlm-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
939 ../../lib/$(DEPDIR)/$(am__dirstamp)
915940 ../../lib/fake_ntlm-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
916941 ../../lib/$(DEPDIR)/$(am__dirstamp)
917942 ../../lib/fake_ntlm-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
936961 ../../lib/$(DEPDIR)/$(am__dirstamp)
937962 ../../lib/getpart-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
938963 ../../lib/$(DEPDIR)/$(am__dirstamp)
964 ../../lib/getpart-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
965 ../../lib/$(DEPDIR)/$(am__dirstamp)
939966 ../../lib/getpart-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
940967 ../../lib/$(DEPDIR)/$(am__dirstamp)
941968 ../../lib/getpart-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
960987 ../../lib/$(DEPDIR)/$(am__dirstamp)
961988 ../../lib/mqttd-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
962989 ../../lib/$(DEPDIR)/$(am__dirstamp)
990 ../../lib/mqttd-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
991 ../../lib/$(DEPDIR)/$(am__dirstamp)
963992 ../../lib/mqttd-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
964993 ../../lib/$(DEPDIR)/$(am__dirstamp)
965994 ../../lib/mqttd-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
9861015 ../../lib/$(DEPDIR)/$(am__dirstamp)
9871016 ../../lib/resolve-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
9881017 ../../lib/$(DEPDIR)/$(am__dirstamp)
1018 ../../lib/resolve-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
1019 ../../lib/$(DEPDIR)/$(am__dirstamp)
9891020 ../../lib/resolve-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
9901021 ../../lib/$(DEPDIR)/$(am__dirstamp)
9911022 ../../lib/resolve-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
10101041 ../../lib/$(DEPDIR)/$(am__dirstamp)
10111042 ../../lib/rtspd-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
10121043 ../../lib/$(DEPDIR)/$(am__dirstamp)
1044 ../../lib/rtspd-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
1045 ../../lib/$(DEPDIR)/$(am__dirstamp)
10131046 ../../lib/rtspd-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
10141047 ../../lib/$(DEPDIR)/$(am__dirstamp)
10151048 ../../lib/rtspd-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
10341067 ../../lib/$(DEPDIR)/$(am__dirstamp)
10351068 ../../lib/sockfilt-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
10361069 ../../lib/$(DEPDIR)/$(am__dirstamp)
1070 ../../lib/sockfilt-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
1071 ../../lib/$(DEPDIR)/$(am__dirstamp)
10371072 ../../lib/sockfilt-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
10381073 ../../lib/$(DEPDIR)/$(am__dirstamp)
10391074 ../../lib/sockfilt-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
10601095 ../../lib/$(DEPDIR)/$(am__dirstamp)
10611096 ../../lib/socksd-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
10621097 ../../lib/$(DEPDIR)/$(am__dirstamp)
1098 ../../lib/socksd-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
1099 ../../lib/$(DEPDIR)/$(am__dirstamp)
10631100 ../../lib/socksd-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
10641101 ../../lib/$(DEPDIR)/$(am__dirstamp)
10651102 ../../lib/socksd-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
10861123 ../../lib/$(DEPDIR)/$(am__dirstamp)
10871124 ../../lib/sws-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
10881125 ../../lib/$(DEPDIR)/$(am__dirstamp)
1126 ../../lib/sws-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
1127 ../../lib/$(DEPDIR)/$(am__dirstamp)
10891128 ../../lib/sws-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
10901129 ../../lib/$(DEPDIR)/$(am__dirstamp)
10911130 ../../lib/sws-dynbuf.$(OBJEXT): ../../lib/$(am__dirstamp) \
11111150 ../../lib/tftpd-strtoofft.$(OBJEXT): ../../lib/$(am__dirstamp) \
11121151 ../../lib/$(DEPDIR)/$(am__dirstamp)
11131152 ../../lib/tftpd-warnless.$(OBJEXT): ../../lib/$(am__dirstamp) \
1153 ../../lib/$(DEPDIR)/$(am__dirstamp)
1154 ../../lib/tftpd-timediff.$(OBJEXT): ../../lib/$(am__dirstamp) \
11141155 ../../lib/$(DEPDIR)/$(am__dirstamp)
11151156 ../../lib/tftpd-curl_ctype.$(OBJEXT): ../../lib/$(am__dirstamp) \
11161157 ../../lib/$(DEPDIR)/$(am__dirstamp)
11451186 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/fake_ntlm-nonblock.Po@am__quote@ # am--include-marker
11461187 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/fake_ntlm-strdup.Po@am__quote@ # am--include-marker
11471188 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/fake_ntlm-strtoofft.Po@am__quote@ # am--include-marker
1189 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/fake_ntlm-timediff.Po@am__quote@ # am--include-marker
11481190 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/fake_ntlm-warnless.Po@am__quote@ # am--include-marker
11491191 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-base64.Po@am__quote@ # am--include-marker
11501192 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-curl_ctype.Po@am__quote@ # am--include-marker
11551197 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-nonblock.Po@am__quote@ # am--include-marker
11561198 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-strdup.Po@am__quote@ # am--include-marker
11571199 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-strtoofft.Po@am__quote@ # am--include-marker
1200 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-timediff.Po@am__quote@ # am--include-marker
11581201 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/getpart-warnless.Po@am__quote@ # am--include-marker
11591202 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-base64.Po@am__quote@ # am--include-marker
11601203 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-curl_ctype.Po@am__quote@ # am--include-marker
11661209 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-nonblock.Po@am__quote@ # am--include-marker
11671210 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-strdup.Po@am__quote@ # am--include-marker
11681211 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-strtoofft.Po@am__quote@ # am--include-marker
1212 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-timediff.Po@am__quote@ # am--include-marker
11691213 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/mqttd-warnless.Po@am__quote@ # am--include-marker
11701214 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-base64.Po@am__quote@ # am--include-marker
11711215 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-curl_ctype.Po@am__quote@ # am--include-marker
11761220 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-nonblock.Po@am__quote@ # am--include-marker
11771221 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-strdup.Po@am__quote@ # am--include-marker
11781222 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-strtoofft.Po@am__quote@ # am--include-marker
1223 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-timediff.Po@am__quote@ # am--include-marker
11791224 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/resolve-warnless.Po@am__quote@ # am--include-marker
11801225 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-base64.Po@am__quote@ # am--include-marker
11811226 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-curl_ctype.Po@am__quote@ # am--include-marker
11861231 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-nonblock.Po@am__quote@ # am--include-marker
11871232 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-strdup.Po@am__quote@ # am--include-marker
11881233 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-strtoofft.Po@am__quote@ # am--include-marker
1234 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-timediff.Po@am__quote@ # am--include-marker
11891235 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/rtspd-warnless.Po@am__quote@ # am--include-marker
11901236 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-base64.Po@am__quote@ # am--include-marker
11911237 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-curl_ctype.Po@am__quote@ # am--include-marker
11971243 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-nonblock.Po@am__quote@ # am--include-marker
11981244 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-strdup.Po@am__quote@ # am--include-marker
11991245 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-strtoofft.Po@am__quote@ # am--include-marker
1246 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-timediff.Po@am__quote@ # am--include-marker
12001247 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sockfilt-warnless.Po@am__quote@ # am--include-marker
12011248 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-base64.Po@am__quote@ # am--include-marker
12021249 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-curl_ctype.Po@am__quote@ # am--include-marker
12081255 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-nonblock.Po@am__quote@ # am--include-marker
12091256 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-strdup.Po@am__quote@ # am--include-marker
12101257 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-strtoofft.Po@am__quote@ # am--include-marker
1258 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-timediff.Po@am__quote@ # am--include-marker
12111259 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/socksd-warnless.Po@am__quote@ # am--include-marker
12121260 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-base64.Po@am__quote@ # am--include-marker
12131261 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-curl_ctype.Po@am__quote@ # am--include-marker
12191267 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-nonblock.Po@am__quote@ # am--include-marker
12201268 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-strdup.Po@am__quote@ # am--include-marker
12211269 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-strtoofft.Po@am__quote@ # am--include-marker
1270 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-timediff.Po@am__quote@ # am--include-marker
12221271 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/sws-warnless.Po@am__quote@ # am--include-marker
12231272 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-base64.Po@am__quote@ # am--include-marker
12241273 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-curl_ctype.Po@am__quote@ # am--include-marker
12291278 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-nonblock.Po@am__quote@ # am--include-marker
12301279 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-strdup.Po@am__quote@ # am--include-marker
12311280 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-strtoofft.Po@am__quote@ # am--include-marker
1281 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-timediff.Po@am__quote@ # am--include-marker
12321282 @AMDEP_TRUE@@am__include@ @am__quote@../../lib/$(DEPDIR)/tftpd-warnless.Po@am__quote@ # am--include-marker
12331283 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/disabled.Po@am__quote@ # am--include-marker
12341284 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fake_ntlm-fake_ntlm.Po@am__quote@ # am--include-marker
13441394 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
13451395 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -c -o ../../lib/fake_ntlm-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
13461396
1397 ../../lib/fake_ntlm-timediff.o: ../../lib/timediff.c
1398 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -MT ../../lib/fake_ntlm-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/fake_ntlm-timediff.Tpo -c -o ../../lib/fake_ntlm-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1399 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/fake_ntlm-timediff.Tpo ../../lib/$(DEPDIR)/fake_ntlm-timediff.Po
1400 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/fake_ntlm-timediff.o' libtool=no @AMDEPBACKSLASH@
1401 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1402 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -c -o ../../lib/fake_ntlm-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1403
1404 ../../lib/fake_ntlm-timediff.obj: ../../lib/timediff.c
1405 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -MT ../../lib/fake_ntlm-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/fake_ntlm-timediff.Tpo -c -o ../../lib/fake_ntlm-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1406 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/fake_ntlm-timediff.Tpo ../../lib/$(DEPDIR)/fake_ntlm-timediff.Po
1407 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/fake_ntlm-timediff.obj' libtool=no @AMDEPBACKSLASH@
1408 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1409 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -c -o ../../lib/fake_ntlm-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1410
13471411 ../../lib/fake_ntlm-curl_ctype.o: ../../lib/curl_ctype.c
13481412 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fake_ntlm_CFLAGS) $(CFLAGS) -MT ../../lib/fake_ntlm-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/fake_ntlm-curl_ctype.Tpo -c -o ../../lib/fake_ntlm-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
13491413 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/fake_ntlm-curl_ctype.Tpo ../../lib/$(DEPDIR)/fake_ntlm-curl_ctype.Po
15261590 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
15271591 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -c -o ../../lib/getpart-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
15281592
1593 ../../lib/getpart-timediff.o: ../../lib/timediff.c
1594 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -MT ../../lib/getpart-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/getpart-timediff.Tpo -c -o ../../lib/getpart-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1595 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/getpart-timediff.Tpo ../../lib/$(DEPDIR)/getpart-timediff.Po
1596 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/getpart-timediff.o' libtool=no @AMDEPBACKSLASH@
1597 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1598 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -c -o ../../lib/getpart-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1599
1600 ../../lib/getpart-timediff.obj: ../../lib/timediff.c
1601 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -MT ../../lib/getpart-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/getpart-timediff.Tpo -c -o ../../lib/getpart-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1602 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/getpart-timediff.Tpo ../../lib/$(DEPDIR)/getpart-timediff.Po
1603 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/getpart-timediff.obj' libtool=no @AMDEPBACKSLASH@
1604 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1605 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -c -o ../../lib/getpart-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1606
15291607 ../../lib/getpart-curl_ctype.o: ../../lib/curl_ctype.c
15301608 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(getpart_CFLAGS) $(CFLAGS) -MT ../../lib/getpart-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/getpart-curl_ctype.Tpo -c -o ../../lib/getpart-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
15311609 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/getpart-curl_ctype.Tpo ../../lib/$(DEPDIR)/getpart-curl_ctype.Po
16941772 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
16951773 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -c -o ../../lib/mqttd-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
16961774
1775 ../../lib/mqttd-timediff.o: ../../lib/timediff.c
1776 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -MT ../../lib/mqttd-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/mqttd-timediff.Tpo -c -o ../../lib/mqttd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1777 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/mqttd-timediff.Tpo ../../lib/$(DEPDIR)/mqttd-timediff.Po
1778 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/mqttd-timediff.o' libtool=no @AMDEPBACKSLASH@
1779 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1780 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -c -o ../../lib/mqttd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1781
1782 ../../lib/mqttd-timediff.obj: ../../lib/timediff.c
1783 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -MT ../../lib/mqttd-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/mqttd-timediff.Tpo -c -o ../../lib/mqttd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1784 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/mqttd-timediff.Tpo ../../lib/$(DEPDIR)/mqttd-timediff.Po
1785 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/mqttd-timediff.obj' libtool=no @AMDEPBACKSLASH@
1786 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1787 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -c -o ../../lib/mqttd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1788
16971789 ../../lib/mqttd-curl_ctype.o: ../../lib/curl_ctype.c
16981790 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mqttd_CFLAGS) $(CFLAGS) -MT ../../lib/mqttd-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/mqttd-curl_ctype.Tpo -c -o ../../lib/mqttd-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
16991791 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/mqttd-curl_ctype.Tpo ../../lib/$(DEPDIR)/mqttd-curl_ctype.Po
18901982 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
18911983 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -c -o ../../lib/resolve-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
18921984
1985 ../../lib/resolve-timediff.o: ../../lib/timediff.c
1986 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -MT ../../lib/resolve-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/resolve-timediff.Tpo -c -o ../../lib/resolve-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1987 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/resolve-timediff.Tpo ../../lib/$(DEPDIR)/resolve-timediff.Po
1988 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/resolve-timediff.o' libtool=no @AMDEPBACKSLASH@
1989 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1990 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -c -o ../../lib/resolve-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
1991
1992 ../../lib/resolve-timediff.obj: ../../lib/timediff.c
1993 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -MT ../../lib/resolve-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/resolve-timediff.Tpo -c -o ../../lib/resolve-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1994 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/resolve-timediff.Tpo ../../lib/$(DEPDIR)/resolve-timediff.Po
1995 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/resolve-timediff.obj' libtool=no @AMDEPBACKSLASH@
1996 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1997 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -c -o ../../lib/resolve-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
1998
18931999 ../../lib/resolve-curl_ctype.o: ../../lib/curl_ctype.c
18942000 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(resolve_CFLAGS) $(CFLAGS) -MT ../../lib/resolve-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/resolve-curl_ctype.Tpo -c -o ../../lib/resolve-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
18952001 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/resolve-curl_ctype.Tpo ../../lib/$(DEPDIR)/resolve-curl_ctype.Po
20722178 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
20732179 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -c -o ../../lib/rtspd-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
20742180
2181 ../../lib/rtspd-timediff.o: ../../lib/timediff.c
2182 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -MT ../../lib/rtspd-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/rtspd-timediff.Tpo -c -o ../../lib/rtspd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2183 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/rtspd-timediff.Tpo ../../lib/$(DEPDIR)/rtspd-timediff.Po
2184 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/rtspd-timediff.o' libtool=no @AMDEPBACKSLASH@
2185 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2186 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -c -o ../../lib/rtspd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2187
2188 ../../lib/rtspd-timediff.obj: ../../lib/timediff.c
2189 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -MT ../../lib/rtspd-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/rtspd-timediff.Tpo -c -o ../../lib/rtspd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2190 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/rtspd-timediff.Tpo ../../lib/$(DEPDIR)/rtspd-timediff.Po
2191 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/rtspd-timediff.obj' libtool=no @AMDEPBACKSLASH@
2192 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2193 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -c -o ../../lib/rtspd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2194
20752195 ../../lib/rtspd-curl_ctype.o: ../../lib/curl_ctype.c
20762196 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rtspd_CFLAGS) $(CFLAGS) -MT ../../lib/rtspd-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/rtspd-curl_ctype.Tpo -c -o ../../lib/rtspd-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
20772197 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/rtspd-curl_ctype.Tpo ../../lib/$(DEPDIR)/rtspd-curl_ctype.Po
22542374 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
22552375 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -c -o ../../lib/sockfilt-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
22562376
2377 ../../lib/sockfilt-timediff.o: ../../lib/timediff.c
2378 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -MT ../../lib/sockfilt-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/sockfilt-timediff.Tpo -c -o ../../lib/sockfilt-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2379 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sockfilt-timediff.Tpo ../../lib/$(DEPDIR)/sockfilt-timediff.Po
2380 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/sockfilt-timediff.o' libtool=no @AMDEPBACKSLASH@
2381 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2382 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -c -o ../../lib/sockfilt-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2383
2384 ../../lib/sockfilt-timediff.obj: ../../lib/timediff.c
2385 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -MT ../../lib/sockfilt-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/sockfilt-timediff.Tpo -c -o ../../lib/sockfilt-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2386 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sockfilt-timediff.Tpo ../../lib/$(DEPDIR)/sockfilt-timediff.Po
2387 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/sockfilt-timediff.obj' libtool=no @AMDEPBACKSLASH@
2388 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2389 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -c -o ../../lib/sockfilt-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2390
22572391 ../../lib/sockfilt-curl_ctype.o: ../../lib/curl_ctype.c
22582392 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sockfilt_CFLAGS) $(CFLAGS) -MT ../../lib/sockfilt-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Tpo -c -o ../../lib/sockfilt-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
22592393 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Tpo ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Po
24502584 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
24512585 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -c -o ../../lib/socksd-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
24522586
2587 ../../lib/socksd-timediff.o: ../../lib/timediff.c
2588 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -MT ../../lib/socksd-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/socksd-timediff.Tpo -c -o ../../lib/socksd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2589 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/socksd-timediff.Tpo ../../lib/$(DEPDIR)/socksd-timediff.Po
2590 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/socksd-timediff.o' libtool=no @AMDEPBACKSLASH@
2591 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2592 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -c -o ../../lib/socksd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2593
2594 ../../lib/socksd-timediff.obj: ../../lib/timediff.c
2595 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -MT ../../lib/socksd-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/socksd-timediff.Tpo -c -o ../../lib/socksd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2596 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/socksd-timediff.Tpo ../../lib/$(DEPDIR)/socksd-timediff.Po
2597 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/socksd-timediff.obj' libtool=no @AMDEPBACKSLASH@
2598 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2599 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -c -o ../../lib/socksd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2600
24532601 ../../lib/socksd-curl_ctype.o: ../../lib/curl_ctype.c
24542602 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(socksd_CFLAGS) $(CFLAGS) -MT ../../lib/socksd-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/socksd-curl_ctype.Tpo -c -o ../../lib/socksd-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
24552603 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/socksd-curl_ctype.Tpo ../../lib/$(DEPDIR)/socksd-curl_ctype.Po
26462794 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
26472795 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -c -o ../../lib/sws-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
26482796
2797 ../../lib/sws-timediff.o: ../../lib/timediff.c
2798 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -MT ../../lib/sws-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/sws-timediff.Tpo -c -o ../../lib/sws-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2799 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sws-timediff.Tpo ../../lib/$(DEPDIR)/sws-timediff.Po
2800 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/sws-timediff.o' libtool=no @AMDEPBACKSLASH@
2801 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2802 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -c -o ../../lib/sws-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
2803
2804 ../../lib/sws-timediff.obj: ../../lib/timediff.c
2805 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -MT ../../lib/sws-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/sws-timediff.Tpo -c -o ../../lib/sws-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2806 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sws-timediff.Tpo ../../lib/$(DEPDIR)/sws-timediff.Po
2807 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/sws-timediff.obj' libtool=no @AMDEPBACKSLASH@
2808 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2809 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -c -o ../../lib/sws-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
2810
26492811 ../../lib/sws-curl_ctype.o: ../../lib/curl_ctype.c
26502812 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sws_CFLAGS) $(CFLAGS) -MT ../../lib/sws-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/sws-curl_ctype.Tpo -c -o ../../lib/sws-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
26512813 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/sws-curl_ctype.Tpo ../../lib/$(DEPDIR)/sws-curl_ctype.Po
28413003 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/warnless.c' object='../../lib/tftpd-warnless.obj' libtool=no @AMDEPBACKSLASH@
28423004 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
28433005 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -c -o ../../lib/tftpd-warnless.obj `if test -f '../../lib/warnless.c'; then $(CYGPATH_W) '../../lib/warnless.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/warnless.c'; fi`
3006
3007 ../../lib/tftpd-timediff.o: ../../lib/timediff.c
3008 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -MT ../../lib/tftpd-timediff.o -MD -MP -MF ../../lib/$(DEPDIR)/tftpd-timediff.Tpo -c -o ../../lib/tftpd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
3009 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/tftpd-timediff.Tpo ../../lib/$(DEPDIR)/tftpd-timediff.Po
3010 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/tftpd-timediff.o' libtool=no @AMDEPBACKSLASH@
3011 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3012 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -c -o ../../lib/tftpd-timediff.o `test -f '../../lib/timediff.c' || echo '$(srcdir)/'`../../lib/timediff.c
3013
3014 ../../lib/tftpd-timediff.obj: ../../lib/timediff.c
3015 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -MT ../../lib/tftpd-timediff.obj -MD -MP -MF ../../lib/$(DEPDIR)/tftpd-timediff.Tpo -c -o ../../lib/tftpd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
3016 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ../../lib/$(DEPDIR)/tftpd-timediff.Tpo ../../lib/$(DEPDIR)/tftpd-timediff.Po
3017 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../../lib/timediff.c' object='../../lib/tftpd-timediff.obj' libtool=no @AMDEPBACKSLASH@
3018 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3019 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -c -o ../../lib/tftpd-timediff.obj `if test -f '../../lib/timediff.c'; then $(CYGPATH_W) '../../lib/timediff.c'; else $(CYGPATH_W) '$(srcdir)/../../lib/timediff.c'; fi`
28443020
28453021 ../../lib/tftpd-curl_ctype.o: ../../lib/curl_ctype.c
28463022 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tftpd_CFLAGS) $(CFLAGS) -MT ../../lib/tftpd-curl_ctype.o -MD -MP -MF ../../lib/$(DEPDIR)/tftpd-curl_ctype.Tpo -c -o ../../lib/tftpd-curl_ctype.o `test -f '../../lib/curl_ctype.c' || echo '$(srcdir)/'`../../lib/curl_ctype.c
31103286 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-nonblock.Po
31113287 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-strdup.Po
31123288 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-strtoofft.Po
3289 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-timediff.Po
31133290 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-warnless.Po
31143291 -rm -f ../../lib/$(DEPDIR)/getpart-base64.Po
31153292 -rm -f ../../lib/$(DEPDIR)/getpart-curl_ctype.Po
31203297 -rm -f ../../lib/$(DEPDIR)/getpart-nonblock.Po
31213298 -rm -f ../../lib/$(DEPDIR)/getpart-strdup.Po
31223299 -rm -f ../../lib/$(DEPDIR)/getpart-strtoofft.Po
3300 -rm -f ../../lib/$(DEPDIR)/getpart-timediff.Po
31233301 -rm -f ../../lib/$(DEPDIR)/getpart-warnless.Po
31243302 -rm -f ../../lib/$(DEPDIR)/mqttd-base64.Po
31253303 -rm -f ../../lib/$(DEPDIR)/mqttd-curl_ctype.Po
31313309 -rm -f ../../lib/$(DEPDIR)/mqttd-nonblock.Po
31323310 -rm -f ../../lib/$(DEPDIR)/mqttd-strdup.Po
31333311 -rm -f ../../lib/$(DEPDIR)/mqttd-strtoofft.Po
3312 -rm -f ../../lib/$(DEPDIR)/mqttd-timediff.Po
31343313 -rm -f ../../lib/$(DEPDIR)/mqttd-warnless.Po
31353314 -rm -f ../../lib/$(DEPDIR)/resolve-base64.Po
31363315 -rm -f ../../lib/$(DEPDIR)/resolve-curl_ctype.Po
31413320 -rm -f ../../lib/$(DEPDIR)/resolve-nonblock.Po
31423321 -rm -f ../../lib/$(DEPDIR)/resolve-strdup.Po
31433322 -rm -f ../../lib/$(DEPDIR)/resolve-strtoofft.Po
3323 -rm -f ../../lib/$(DEPDIR)/resolve-timediff.Po
31443324 -rm -f ../../lib/$(DEPDIR)/resolve-warnless.Po
31453325 -rm -f ../../lib/$(DEPDIR)/rtspd-base64.Po
31463326 -rm -f ../../lib/$(DEPDIR)/rtspd-curl_ctype.Po
31513331 -rm -f ../../lib/$(DEPDIR)/rtspd-nonblock.Po
31523332 -rm -f ../../lib/$(DEPDIR)/rtspd-strdup.Po
31533333 -rm -f ../../lib/$(DEPDIR)/rtspd-strtoofft.Po
3334 -rm -f ../../lib/$(DEPDIR)/rtspd-timediff.Po
31543335 -rm -f ../../lib/$(DEPDIR)/rtspd-warnless.Po
31553336 -rm -f ../../lib/$(DEPDIR)/sockfilt-base64.Po
31563337 -rm -f ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Po
31623343 -rm -f ../../lib/$(DEPDIR)/sockfilt-nonblock.Po
31633344 -rm -f ../../lib/$(DEPDIR)/sockfilt-strdup.Po
31643345 -rm -f ../../lib/$(DEPDIR)/sockfilt-strtoofft.Po
3346 -rm -f ../../lib/$(DEPDIR)/sockfilt-timediff.Po
31653347 -rm -f ../../lib/$(DEPDIR)/sockfilt-warnless.Po
31663348 -rm -f ../../lib/$(DEPDIR)/socksd-base64.Po
31673349 -rm -f ../../lib/$(DEPDIR)/socksd-curl_ctype.Po
31733355 -rm -f ../../lib/$(DEPDIR)/socksd-nonblock.Po
31743356 -rm -f ../../lib/$(DEPDIR)/socksd-strdup.Po
31753357 -rm -f ../../lib/$(DEPDIR)/socksd-strtoofft.Po
3358 -rm -f ../../lib/$(DEPDIR)/socksd-timediff.Po
31763359 -rm -f ../../lib/$(DEPDIR)/socksd-warnless.Po
31773360 -rm -f ../../lib/$(DEPDIR)/sws-base64.Po
31783361 -rm -f ../../lib/$(DEPDIR)/sws-curl_ctype.Po
31843367 -rm -f ../../lib/$(DEPDIR)/sws-nonblock.Po
31853368 -rm -f ../../lib/$(DEPDIR)/sws-strdup.Po
31863369 -rm -f ../../lib/$(DEPDIR)/sws-strtoofft.Po
3370 -rm -f ../../lib/$(DEPDIR)/sws-timediff.Po
31873371 -rm -f ../../lib/$(DEPDIR)/sws-warnless.Po
31883372 -rm -f ../../lib/$(DEPDIR)/tftpd-base64.Po
31893373 -rm -f ../../lib/$(DEPDIR)/tftpd-curl_ctype.Po
31943378 -rm -f ../../lib/$(DEPDIR)/tftpd-nonblock.Po
31953379 -rm -f ../../lib/$(DEPDIR)/tftpd-strdup.Po
31963380 -rm -f ../../lib/$(DEPDIR)/tftpd-strtoofft.Po
3381 -rm -f ../../lib/$(DEPDIR)/tftpd-timediff.Po
31973382 -rm -f ../../lib/$(DEPDIR)/tftpd-warnless.Po
31983383 -rm -f ./$(DEPDIR)/disabled.Po
31993384 -rm -f ./$(DEPDIR)/fake_ntlm-fake_ntlm.Po
32763461 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-nonblock.Po
32773462 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-strdup.Po
32783463 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-strtoofft.Po
3464 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-timediff.Po
32793465 -rm -f ../../lib/$(DEPDIR)/fake_ntlm-warnless.Po
32803466 -rm -f ../../lib/$(DEPDIR)/getpart-base64.Po
32813467 -rm -f ../../lib/$(DEPDIR)/getpart-curl_ctype.Po
32863472 -rm -f ../../lib/$(DEPDIR)/getpart-nonblock.Po
32873473 -rm -f ../../lib/$(DEPDIR)/getpart-strdup.Po
32883474 -rm -f ../../lib/$(DEPDIR)/getpart-strtoofft.Po
3475 -rm -f ../../lib/$(DEPDIR)/getpart-timediff.Po
32893476 -rm -f ../../lib/$(DEPDIR)/getpart-warnless.Po
32903477 -rm -f ../../lib/$(DEPDIR)/mqttd-base64.Po
32913478 -rm -f ../../lib/$(DEPDIR)/mqttd-curl_ctype.Po
32973484 -rm -f ../../lib/$(DEPDIR)/mqttd-nonblock.Po
32983485 -rm -f ../../lib/$(DEPDIR)/mqttd-strdup.Po
32993486 -rm -f ../../lib/$(DEPDIR)/mqttd-strtoofft.Po
3487 -rm -f ../../lib/$(DEPDIR)/mqttd-timediff.Po
33003488 -rm -f ../../lib/$(DEPDIR)/mqttd-warnless.Po
33013489 -rm -f ../../lib/$(DEPDIR)/resolve-base64.Po
33023490 -rm -f ../../lib/$(DEPDIR)/resolve-curl_ctype.Po
33073495 -rm -f ../../lib/$(DEPDIR)/resolve-nonblock.Po
33083496 -rm -f ../../lib/$(DEPDIR)/resolve-strdup.Po
33093497 -rm -f ../../lib/$(DEPDIR)/resolve-strtoofft.Po
3498 -rm -f ../../lib/$(DEPDIR)/resolve-timediff.Po
33103499 -rm -f ../../lib/$(DEPDIR)/resolve-warnless.Po
33113500 -rm -f ../../lib/$(DEPDIR)/rtspd-base64.Po
33123501 -rm -f ../../lib/$(DEPDIR)/rtspd-curl_ctype.Po
33173506 -rm -f ../../lib/$(DEPDIR)/rtspd-nonblock.Po
33183507 -rm -f ../../lib/$(DEPDIR)/rtspd-strdup.Po
33193508 -rm -f ../../lib/$(DEPDIR)/rtspd-strtoofft.Po
3509 -rm -f ../../lib/$(DEPDIR)/rtspd-timediff.Po
33203510 -rm -f ../../lib/$(DEPDIR)/rtspd-warnless.Po
33213511 -rm -f ../../lib/$(DEPDIR)/sockfilt-base64.Po
33223512 -rm -f ../../lib/$(DEPDIR)/sockfilt-curl_ctype.Po
33283518 -rm -f ../../lib/$(DEPDIR)/sockfilt-nonblock.Po
33293519 -rm -f ../../lib/$(DEPDIR)/sockfilt-strdup.Po
33303520 -rm -f ../../lib/$(DEPDIR)/sockfilt-strtoofft.Po
3521 -rm -f ../../lib/$(DEPDIR)/sockfilt-timediff.Po
33313522 -rm -f ../../lib/$(DEPDIR)/sockfilt-warnless.Po
33323523 -rm -f ../../lib/$(DEPDIR)/socksd-base64.Po
33333524 -rm -f ../../lib/$(DEPDIR)/socksd-curl_ctype.Po
33393530 -rm -f ../../lib/$(DEPDIR)/socksd-nonblock.Po
33403531 -rm -f ../../lib/$(DEPDIR)/socksd-strdup.Po
33413532 -rm -f ../../lib/$(DEPDIR)/socksd-strtoofft.Po
3533 -rm -f ../../lib/$(DEPDIR)/socksd-timediff.Po
33423534 -rm -f ../../lib/$(DEPDIR)/socksd-warnless.Po
33433535 -rm -f ../../lib/$(DEPDIR)/sws-base64.Po
33443536 -rm -f ../../lib/$(DEPDIR)/sws-curl_ctype.Po
33503542 -rm -f ../../lib/$(DEPDIR)/sws-nonblock.Po
33513543 -rm -f ../../lib/$(DEPDIR)/sws-strdup.Po
33523544 -rm -f ../../lib/$(DEPDIR)/sws-strtoofft.Po
3545 -rm -f ../../lib/$(DEPDIR)/sws-timediff.Po
33533546 -rm -f ../../lib/$(DEPDIR)/sws-warnless.Po
33543547 -rm -f ../../lib/$(DEPDIR)/tftpd-base64.Po
33553548 -rm -f ../../lib/$(DEPDIR)/tftpd-curl_ctype.Po
33603553 -rm -f ../../lib/$(DEPDIR)/tftpd-nonblock.Po
33613554 -rm -f ../../lib/$(DEPDIR)/tftpd-strdup.Po
33623555 -rm -f ../../lib/$(DEPDIR)/tftpd-strtoofft.Po
3556 -rm -f ../../lib/$(DEPDIR)/tftpd-timediff.Po
33633557 -rm -f ../../lib/$(DEPDIR)/tftpd-warnless.Po
33643558 -rm -f ./$(DEPDIR)/disabled.Po
33653559 -rm -f ./$(DEPDIR)/fake_ntlm-fake_ntlm.Po
34263620
34273621
34283622 checksrc:
3429 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
3623 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch]
34303624
34313625 # for debug builds, we scan the sources on all regular make invokes
34323626 @CURLDEBUG_TRUE@all-local: checksrc
44 # | (__| |_| | _ <| |___
55 # \___|\___/|_| \_\_____|
66 #
7 # Copyright (C) 2009 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 # Copyright (C) 2009 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 #
99 # This software is licensed as described in the file COPYING, which
1010 # you should have received as part of this distribution. The terms
2727 ../../lib/nonblock.c \
2828 ../../lib/strtoofft.c \
2929 ../../lib/warnless.c \
30 ../../lib/timediff.c \
3031 ../../lib/curl_ctype.c \
3132 ../../lib/dynbuf.c \
3233 ../../lib/strdup.c \
3738 ../../lib/nonblock.h \
3839 ../../lib/strtoofft.h \
3940 ../../lib/warnless.h \
41 ../../lib/timediff.h \
4042 ../../lib/curl_ctype.h \
4143 ../../lib/dynbuf.h \
4244 ../../lib/strdup.h \
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
6969 #ifndef ENABLE_WAKEUP
7070 "wakeup",
7171 #endif
72 #ifndef USE_HEADERS_API
73 "headers-api",
74 #endif
7275 NULL
7376 };
7477
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
106106 #include "inet_pton.h"
107107 #include "util.h"
108108 #include "server_sockaddr.h"
109 #include "timediff.h"
109110 #include "warnless.h"
110111
111112 /* include memdebug.h last */
638639
639640 /* convert struct timeval to milliseconds */
640641 if(tv) {
641 timeout_ms = (tv->tv_sec*1000) + (DWORD)(((double)tv->tv_usec)/1000.0);
642 timeout_ms = (DWORD)curlx_tvtoms(tv);
642643 }
643644 else {
644645 timeout_ms = INFINITE;
142142 const char *reqlogfile = DEFAULT_REQFILE;
143143 static const char *configfile = DEFAULT_CONFIG;
144144
145 #ifdef ENABLE_IPV6
146 static bool use_ipv6 = FALSE;
147 #endif
148 static const char *ipv_inuse = "IPv4";
145 static const char *socket_type = "IPv4";
149146 static unsigned short port = DEFAULT_PORT;
150147
151148 static void resetdefaults(void)
175172 unsigned long num = strtoul(value, NULL, 10);
176173 return num & 0xffff;
177174 }
175
176 static enum {
177 socket_domain_inet = AF_INET
178 #ifdef ENABLE_IPV6
179 , socket_domain_inet6 = AF_INET6
180 #endif
181 #ifdef USE_UNIX_SOCKETS
182 , socket_domain_unix = AF_UNIX
183 #endif
184 } socket_domain = AF_INET;
178185
179186 static void getconfig(void)
180187 {
776783 }
777784
778785 static curl_socket_t sockdaemon(curl_socket_t sock,
779 unsigned short *listenport)
786 unsigned short *listenport
787 #ifdef USE_UNIX_SOCKETS
788 , const char *unix_socket
789 #endif
790 )
780791 {
781792 /* passive daemon style */
782793 srvr_sockaddr_union_t listener;
827838 /* When the specified listener port is zero, it is actually a
828839 request to let the system choose a non-zero available port. */
829840
841 switch(socket_domain) {
842 case AF_INET:
843 memset(&listener.sa4, 0, sizeof(listener.sa4));
844 listener.sa4.sin_family = AF_INET;
845 listener.sa4.sin_addr.s_addr = INADDR_ANY;
846 listener.sa4.sin_port = htons(*listenport);
847 rc = bind(sock, &listener.sa, sizeof(listener.sa4));
848 break;
830849 #ifdef ENABLE_IPV6
831 if(!use_ipv6) {
832 #endif
833 memset(&listener.sa4, 0, sizeof(listener.sa4));
834 listener.sa4.sin_family = AF_INET;
835 listener.sa4.sin_addr.s_addr = INADDR_ANY;
836 listener.sa4.sin_port = htons(*listenport);
837 rc = bind(sock, &listener.sa, sizeof(listener.sa4));
838 #ifdef ENABLE_IPV6
839 }
840 else {
841 memset(&listener.sa6, 0, sizeof(listener.sa6));
842 listener.sa6.sin6_family = AF_INET6;
843 listener.sa6.sin6_addr = in6addr_any;
844 listener.sa6.sin6_port = htons(*listenport);
845 rc = bind(sock, &listener.sa, sizeof(listener.sa6));
846 }
850 case AF_INET6:
851 memset(&listener.sa6, 0, sizeof(listener.sa6));
852 listener.sa6.sin6_family = AF_INET6;
853 listener.sa6.sin6_addr = in6addr_any;
854 listener.sa6.sin6_port = htons(*listenport);
855 rc = bind(sock, &listener.sa, sizeof(listener.sa6));
856 break;
847857 #endif /* ENABLE_IPV6 */
858 #ifdef USE_UNIX_SOCKETS
859 case AF_UNIX:
860 rc = bind_unix_socket(sock, unix_socket, &listener.sau);
861 #endif
862 }
863
848864 if(rc) {
849865 error = SOCKERRNO;
850866 logmsg("Error binding socket on port %hu: (%d) %s",
853869 return CURL_SOCKET_BAD;
854870 }
855871
856 if(!*listenport) {
872 if(!*listenport
873 #ifdef USE_UNIX_SOCKETS
874 && !unix_socket
875 #endif
876 ) {
857877 /* The system was supposed to choose a port number, figure out which
858878 port we actually got and update the listener port value with it. */
859879 curl_socklen_t la_size;
860880 srvr_sockaddr_union_t localaddr;
861881 #ifdef ENABLE_IPV6
862 if(!use_ipv6)
882 if(socket_domain == AF_INET6)
883 la_size = sizeof(localaddr.sa6);
884 else
863885 #endif
864886 la_size = sizeof(localaddr.sa4);
865 #ifdef ENABLE_IPV6
866 else
867 la_size = sizeof(localaddr.sa6);
868 #endif
869887 memset(&localaddr.sa, 0, (size_t)la_size);
870888 if(getsockname(sock, &localaddr.sa, &la_size) < 0) {
871889 error = SOCKERRNO;
923941 int error;
924942 int arg = 1;
925943
944 #ifdef USE_UNIX_SOCKETS
945 const char *unix_socket = NULL;
946 bool unlink_socket = false;
947 #endif
948
926949 while(argc>arg) {
927950 if(!strcmp("--version", argv[arg])) {
928951 printf("socksd IPv4%s\n",
971994 }
972995 else if(!strcmp("--ipv6", argv[arg])) {
973996 #ifdef ENABLE_IPV6
974 ipv_inuse = "IPv6";
975 use_ipv6 = TRUE;
997 socket_domain = AF_INET6;
998 socket_type = "IPv6";
976999 #endif
9771000 arg++;
9781001 }
9791002 else if(!strcmp("--ipv4", argv[arg])) {
9801003 /* for completeness, we support this option as well */
9811004 #ifdef ENABLE_IPV6
982 ipv_inuse = "IPv4";
983 use_ipv6 = FALSE;
1005 socket_type = "IPv4";
9841006 #endif
9851007 arg++;
1008 }
1009 else if(!strcmp("--unix-socket", argv[arg])) {
1010 arg++;
1011 if(argc>arg) {
1012 #ifdef USE_UNIX_SOCKETS
1013 struct sockaddr_un sau;
1014 unix_socket = argv[arg];
1015 if(strlen(unix_socket) >= sizeof(sau.sun_path)) {
1016 fprintf(stderr,
1017 "socksd: socket path must be shorter than %zu chars\n",
1018 sizeof(sau.sun_path));
1019 return 0;
1020 }
1021 socket_domain = AF_UNIX;
1022 socket_type = "unix";
1023 #endif
1024 arg++;
1025 }
9861026 }
9871027 else if(!strcmp("--port", argv[arg])) {
9881028 arg++;
10051045 " --reqfile [file]\n"
10061046 " --ipv4\n"
10071047 " --ipv6\n"
1048 " --unix-socket [file]\n"
10081049 " --bindonly\n"
10091050 " --port [port]\n");
10101051 return 0;
10221063
10231064 install_signal_handlers(false);
10241065
1025 #ifdef ENABLE_IPV6
1026 if(!use_ipv6)
1027 #endif
1028 sock = socket(AF_INET, SOCK_STREAM, 0);
1029 #ifdef ENABLE_IPV6
1030 else
1031 sock = socket(AF_INET6, SOCK_STREAM, 0);
1032 #endif
1066 sock = socket(socket_domain, SOCK_STREAM, 0);
10331067
10341068 if(CURL_SOCKET_BAD == sock) {
10351069 error = SOCKERRNO;
10401074
10411075 {
10421076 /* passive daemon style */
1043 sock = sockdaemon(sock, &port);
1077 sock = sockdaemon(sock, &port
1078 #ifdef USE_UNIX_SOCKETS
1079 , unix_socket
1080 #endif
1081 );
10441082 if(CURL_SOCKET_BAD == sock) {
10451083 goto socks5_cleanup;
10461084 }
1085 #ifdef USE_UNIX_SOCKETS
1086 unlink_socket = true;
1087 #endif
10471088 msgsock = CURL_SOCKET_BAD; /* no stream socket yet */
10481089 }
10491090
1050 logmsg("Running %s version", ipv_inuse);
1091 logmsg("Running %s version", socket_type);
1092
1093 #ifdef USE_UNIX_SOCKETS
1094 if(socket_domain == AF_UNIX)
1095 logmsg("Listening on unix socket %s", unix_socket);
1096 else
1097 #endif
10511098 logmsg("Listening on port %hu", port);
10521099
10531100 wrotepidfile = write_pidfile(pidname);
10731120
10741121 if(sock != CURL_SOCKET_BAD)
10751122 sclose(sock);
1123
1124 #ifdef USE_UNIX_SOCKETS
1125 if(unlink_socket && socket_domain == AF_UNIX) {
1126 error = unlink(unix_socket);
1127 logmsg("unlink(%s) = %d (%s)", unix_socket, error, strerror(error));
1128 }
1129 #endif
10761130
10771131 if(wrotepidfile)
10781132 unlink(pidname);
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
20652065 #endif /* ENABLE_IPV6 */
20662066 #ifdef USE_UNIX_SOCKETS
20672067 case AF_UNIX:
2068 memset(&me.sau, 0, sizeof(me.sau));
2069 me.sau.sun_family = AF_UNIX;
2070 strncpy(me.sau.sun_path, unix_socket, sizeof(me.sau.sun_path) - 1);
2071 rc = bind(sock, &me.sa, sizeof(me.sau));
2072 if(0 != rc && errno == EADDRINUSE) {
2073 struct_stat statbuf;
2074 /* socket already exists. Perhaps it is stale? */
2075 curl_socket_t unixfd = socket(AF_UNIX, SOCK_STREAM, 0);
2076 if(CURL_SOCKET_BAD == unixfd) {
2077 error = SOCKERRNO;
2078 logmsg("Error binding socket, failed to create socket at %s: (%d) %s",
2079 unix_socket, error, strerror(error));
2080 goto sws_cleanup;
2081 }
2082 /* check whether the server is alive */
2083 rc = connect(unixfd, &me.sa, sizeof(me.sau));
2084 error = errno;
2085 sclose(unixfd);
2086 if(ECONNREFUSED != error) {
2087 logmsg("Error binding socket, failed to connect to %s: (%d) %s",
2088 unix_socket, error, strerror(error));
2089 goto sws_cleanup;
2090 }
2091 /* socket server is not alive, now check if it was actually a socket. */
2092 #ifdef WIN32
2093 /* Windows does not have lstat function. */
2094 rc = curlx_win32_stat(unix_socket, &statbuf);
2095 #else
2096 rc = lstat(unix_socket, &statbuf);
2097 #endif
2098 if(0 != rc) {
2099 logmsg("Error binding socket, failed to stat %s: (%d) %s",
2100 unix_socket, errno, strerror(errno));
2101 goto sws_cleanup;
2102 }
2103 #ifdef S_IFSOCK
2104 if((statbuf.st_mode & S_IFSOCK) != S_IFSOCK) {
2105 logmsg("Error binding socket, failed to stat %s: (%d) %s",
2106 unix_socket, error, strerror(error));
2107 goto sws_cleanup;
2108 }
2109 #endif
2110 /* dead socket, cleanup and retry bind */
2111 rc = unlink(unix_socket);
2112 if(0 != rc) {
2113 logmsg("Error binding socket, failed to unlink %s: (%d) %s",
2114 unix_socket, errno, strerror(errno));
2115 goto sws_cleanup;
2116 }
2117 /* stale socket is gone, retry bind */
2118 rc = bind(sock, &me.sa, sizeof(me.sau));
2119 }
2120 break;
2068 rc = bind_unix_socket(sock, unix_socket, &me.sau);
21212069 #endif /* USE_UNIX_SOCKETS */
21222070 }
21232071 if(0 != rc) {
158158 fprintf(stderr, "%s: ", msg);
159159 fprintf(stderr, "%s\n", buf);
160160 }
161 #endif /* WIN32 */
162
161
162 void win32_init(void)
163 {
163164 #ifdef USE_WINSOCK
164 void win32_init(void)
165 {
166165 WORD wVersionRequested;
167166 WSADATA wsaData;
168167 int err;
183182 logmsg("No suitable winsock.dll found -- aborting");
184183 exit(1);
185184 }
185 #endif /* USE_WINSOCK */
186186 }
187187
188188 void win32_cleanup(void)
189189 {
190 #ifdef USE_WINSOCK
190191 WSACleanup();
191 }
192192 #endif /* USE_WINSOCK */
193
194 /* flush buffers of all streams regardless of their mode */
195 _flushall();
196 }
197 #endif /* WIN32 */
193198
194199 /* set by the main code to point to where the test dir is */
195200 const char *path = ".";
803808 }
804809 #endif
805810 }
811
812 #ifdef USE_UNIX_SOCKETS
813
814 int bind_unix_socket(curl_socket_t sock, const char *unix_socket,
815 struct sockaddr_un *sau) {
816 int error;
817 int rc;
818
819 memset(sau, 0, sizeof(struct sockaddr_un));
820 sau->sun_family = AF_UNIX;
821 strncpy(sau->sun_path, unix_socket, sizeof(sau->sun_path) - 1);
822 rc = bind(sock, (struct sockaddr*)sau, sizeof(struct sockaddr_un));
823 if(0 != rc && errno == EADDRINUSE) {
824 struct_stat statbuf;
825 /* socket already exists. Perhaps it is stale? */
826 curl_socket_t unixfd = socket(AF_UNIX, SOCK_STREAM, 0);
827 if(CURL_SOCKET_BAD == unixfd) {
828 error = SOCKERRNO;
829 logmsg("Error binding socket, failed to create socket at %s: (%d) %s",
830 unix_socket, error, strerror(error));
831 return rc;
832 }
833 /* check whether the server is alive */
834 rc = connect(unixfd, (struct sockaddr*)sau, sizeof(struct sockaddr_un));
835 error = errno;
836 sclose(unixfd);
837 if(ECONNREFUSED != error) {
838 logmsg("Error binding socket, failed to connect to %s: (%d) %s",
839 unix_socket, error, strerror(error));
840 return rc;
841 }
842 /* socket server is not alive, now check if it was actually a socket. */
843 #ifdef WIN32
844 /* Windows does not have lstat function. */
845 rc = curlx_win32_stat(unix_socket, &statbuf);
846 #else
847 rc = lstat(unix_socket, &statbuf);
848 #endif
849 if(0 != rc) {
850 logmsg("Error binding socket, failed to stat %s: (%d) %s",
851 unix_socket, errno, strerror(errno));
852 return rc;
853 }
854 #ifdef S_IFSOCK
855 if((statbuf.st_mode & S_IFSOCK) != S_IFSOCK) {
856 logmsg("Error binding socket, failed to stat %s: (%d) %s",
857 unix_socket, error, strerror(error));
858 return rc;
859 }
860 #endif
861 /* dead socket, cleanup and retry bind */
862 rc = unlink(unix_socket);
863 if(0 != rc) {
864 logmsg("Error binding socket, failed to unlink %s: (%d) %s",
865 unix_socket, errno, strerror(errno));
866 return rc;
867 }
868 /* stale socket is gone, retry bind */
869 rc = bind(sock, (struct sockaddr*)sau, sizeof(struct sockaddr_un));
870 }
871 return rc;
872 }
873 #endif
66 * | (__| |_| | _ <| |___
77 * \___|\___/|_| \_\_____|
88 *
9 * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
9 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
1010 *
1111 * This software is licensed as described in the file COPYING, which
1212 * you should have received as part of this distribution. The terms
3939
4040 extern const char *cmdfile;
4141
42 #if defined(WIN32) || defined(_WIN32)
42 #ifdef WIN32
4343 #include <process.h>
4444 #include <fcntl.h>
4545
4848 #undef perror
4949 #define perror(m) win32_perror(m)
5050 void win32_perror(const char *msg);
51 #endif /* WIN32 or _WIN32 */
5251
53 #ifdef USE_WINSOCK
5452 void win32_init(void);
5553 void win32_cleanup(void);
56 #endif /* USE_WINSOCK */
54 #endif /* WIN32 */
5755
5856 /* fopens the test case file */
5957 FILE *test2fopen(long testno);
8078 void install_signal_handlers(bool keep_sigalrm);
8179 void restore_signal_handlers(bool keep_sigalrm);
8280
81 #ifdef USE_UNIX_SOCKETS
82
83 #ifdef HAVE_SYS_UN_H
84 #include <sys/un.h> /* for sockaddr_un */
85 #endif /* HAVE_SYS_UN_H */
86
87 int bind_unix_socket(curl_socket_t sock, const char *unix_socket,
88 struct sockaddr_un *sau);
89 #endif /* USE_UNIX_SOCKETS */
90
8391 #endif /* HEADER_CURL_SERVER_UTIL_H */
55 # | (__| |_| | _ <| |___
66 # \___|\___/|_| \_\_____|
77 #
8 # Copyright (C) 2010 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
8 # Copyright (C) 2010 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
99 #
1010 # This software is licensed as described in the file COPYING, which
1111 # you should have received as part of this distribution. The terms
5353 my $h = "$root/include/curl/curl.h";
5454 my $mh = "$root/include/curl/multi.h";
5555 my $ua = "$root/include/curl/urlapi.h";
56 my $hd = "$root/include/curl/header.h";
5657
5758 my $verbose=0;
5859 my $summary=0;
6263 my %doc;
6364 my %rem;
6465
65 open H_IN, "-|", "$Cpreprocessor $i$h" || die "Cannot preprocess curl.h";
66 while ( <H_IN> ) {
67 if ( /enum\s+(\S+\s+)?{/ .. /}/ ) {
68 s/^\s+//;
69 next unless /^CURL/;
70 chomp;
71 s/[,\s].*//;
72 push @syms, $_;
66 # scanenum runs the preprocessor on curl.h so it will process all enums
67 # included by it, which *should* be all headers
68 sub scanenum {
69 my ($file) = @_;
70 open H_IN, "-|", "$Cpreprocessor $i$file" || die "Cannot preprocess $file";
71 while ( <H_IN> ) {
72 if ( /enum\s+(\S+\s+)?{/ .. /}/ ) {
73 s/^\s+//;
74 next unless /^CURL/;
75 chomp;
76 s/[,\s].*//;
77 push @syms, $_;
78 print STDERR "$_\n";
79 }
7380 }
81 close H_IN || die "Error preprocessing $file";
7482 }
75 close H_IN || die "Error preprocessing curl.h";
7683
7784 sub scanheader {
7885 my ($f)=@_;
8592 close H;
8693 }
8794
95 scanenum($h);
8896 scanheader($h);
8997 scanheader($mh);
9098 scanheader($ua);
99 scanheader($hd);
91100
92101 open S, "<$root/docs/libcurl/symbols-in-versions";
93102 while(<S>) {
1919 .\" *
2020 .\" **************************************************************************
2121 .\"
22 .TH testcurl.pl 1 "January 31, 2022" "Curl 7.82.0" "testcurl"
22 .TH testcurl.pl 1 "January 31, 2022" "Curl 7.83.0" "testcurl"
2323
2424 .SH NAME
2525 testcurl.pl \- (automatically) test curl
5757 CS_ = $(CS_0)
5858
5959 checksrc:
60 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
60 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch]
6161
6262 if BUILD_UNITTESTS
6363 noinst_PROGRAMS = $(UNITPROGS)
618618 CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
619619 CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
620620 CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
621 CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
621622 CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
622623 CYGPATH_W = @CYGPATH_W@
623624 DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
635636 ETAGS = @ETAGS@
636637 EXEEXT = @EXEEXT@
637638 FGREP = @FGREP@
639 FILECMD = @FILECMD@
638640 FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
639641 GCOV = @GCOV@
640642 GREP = @GREP@
712714 USE_LIBSSH = @USE_LIBSSH@
713715 USE_LIBSSH2 = @USE_LIBSSH2@
714716 USE_MBEDTLS = @USE_MBEDTLS@
717 USE_MSH3 = @USE_MSH3@
715718 USE_NGHTTP2 = @USE_NGHTTP2@
716719 USE_NGHTTP3 = @USE_NGHTTP3@
717720 USE_NGTCP2 = @USE_NGTCP2@
28372840
28382841
28392842 checksrc:
2840 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
2843 $(CHECKSRC)@PERL@ $(top_srcdir)/scripts/checksrc.pl $(srcdir)/*.[ch]
28412844
28422845 # Tell versions [3.59,3.63) of GNU make to not export all variables.
28432846 # Otherwise a system limit (for SysV at least) may be exceeded.
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
44 * | (__| |_| | _ <| |___
55 * \___|\___/|_| \_\_____|
66 *
7 * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
7 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
88 *
99 * This software is licensed as described in the file COPYING, which
1010 * you should have received as part of this distribution. The terms
2727
2828 static CURLcode unit_setup(void)
2929 {
30 return CURLE_OK;
30 int res = CURLE_OK;
31 global_init(CURL_GLOBAL_ALL);
32 return res;
3133 }
3234
3335 static void unit_stop(void)
3436 {
37 curl_global_cleanup();
3538 }
3639
3740 UNITTEST_START
148148 USE_NGHTTP2 = false
149149 !ENDIF
150150
151 !IF "$(ENABLE_MSH3)"=="yes"
152 # compatibility bit, WITH_MSH3 is the correct flag
153 WITH_MSH3 = dll
154 USE_MSH3 = true
155 MSH3 = dll
156 !ELSEIF "$(WITH_MSH3)"=="dll"
157 USE_MSH3 = true
158 MSH3 = dll
159 !ELSEIF "$(WITH_MSH3)"=="static"
160 USE_MSH3 = true
161 MSH3 = static
162 !ENDIF
163
164 !IFNDEF USE_MSH3
165 USE_MSH3 = false
166 !ENDIF
167
151168 !IF "$(WITH_MBEDTLS)"=="dll" || "$(WITH_MBEDTLS)"=="static"
152169 USE_MBEDTLS = true
153170 MBEDTLS = $(WITH_MBEDTLS)
239256 CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-nghttp2-$(NGHTTP2)
240257 !ENDIF
241258
259 !IF "$(USE_MSH3)"=="true"
260 CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-msh3
261 !ENDIF
262
242263 !MESSAGE configuration name: $(CONFIG_NAME_LIB)
243264
244265 BUILD_DIR=../builds/$(CONFIG_NAME_LIB)
260281 @SET CONFIG_NAME_LIB=$(CONFIG_NAME_LIB)
261282 @SET MACHINE=$(MACHINE)
262283 @SET USE_NGHTTP2=$(USE_NGHTTP2)
284 @SET USE_MSH3=$(USE_MSH3)
263285 @SET USE_IDN=$(USE_IDN)
264286 @SET USE_IPV6=$(USE_IPV6)
265287 @SET USE_SSPI=$(USE_SSPI)
163163 !ENDIF
164164 !ENDIF
165165
166 !IFDEF MSH3_PATH
167 MSH3_INC_DIR = $(MSH3_PATH)\include
168 MSH3_LIB_DIR = $(MSH3_PATH)\lib
169 MSH3_LFLAGS = $(MSH3_LFLAGS) "/LIBPATH:$(MSH3_LIB_DIR)"
170 !ELSE
171 MSH3_INC_DIR = $(DEVEL_INCLUDE)
172 MSH3_LIB_DIR = $(DEVEL_LIB)
173 !ENDIF
174
175 !IF "$(WITH_MSH3)"=="dll"
176 MSH3_CFLAGS = /DUSE_MSH3 /I"$(MSH3_INC_DIR)"
177 MSH3_LIBS = msh3.lib
178 !ELSEIF "$(WITH_MSH3)"=="static"
179 MSH3_CFLAGS = /DUSE_MSH3 /DMSH3_STATICLIB /I"$(MSH3_INC_DIR)"
180 !IF EXISTS("$(NGHTTP2_LIB_DIR)\msh3_static.lib")
181 MSH3_LIBS = msh3_static.lib
182 !ELSE
183 MSH3_LIBS = msh3.lib
184 !ENDIF
185 !ENDIF
166186
167187 !IFDEF MBEDTLS_PATH
168188 MBEDTLS_INC_DIR = $(MBEDTLS_PATH)\include
491511 LFLAGS = $(LFLAGS) $(NGHTTP2_LFLAGS) $(NGHTTP2_LIBS)
492512 !ENDIF
493513
514 !IF "$(USE_MSH3)"=="true"
515 CFLAGS = $(CFLAGS) $(MSH3_CFLAGS)
516 LFLAGS = $(LFLAGS) $(MSH3_LFLAGS) $(MSH3_LIBS)
517 !ENDIF
518
494519 !IF "$(GEN_PDB)"=="true"
495520 CFLAGS = $(CFLAGS) $(CFLAGS_PDB) /Fd"$(LIB_DIROBJ)\$(PDB)"
496521 LFLAGS = $(LFLAGS) $(LFLAGS_PDB)
544569 $(TARGET): $(LIB_OBJS) $(LIB_DIROBJ) $(DIRDIST)
545570 @echo Using SSL: $(USE_SSL)
546571 @echo Using NGHTTP2: $(USE_NGHTTP2)
572 @echo Using MSH3: $(USE_MSH3)
547573 @echo Using c-ares: $(USE_CARES)
548574 @echo Using SSH2: $(USE_SSH2)
549575 @echo Using SSH: $(USE_SSH)
5555 [type] Native of Cross platform build. This type of command prompt may not
5656 exist in all Visual Studio versions.
5757
58 See also: [Set the Path and Environment Variables for Command-Line Builds](https://msdn.microsoft.com/en-us/library/f2ccy3wt.aspx)
58 See also: [Set the Path and Environment Variables for Command-Line Builds](https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line)
5959
6060 ## Build in the console
6161
7979 Uncompress them into the deps folder.
8080 - `WITH_SSL=<dll/static>` - Enable OpenSSL support, DLL or static
8181 - `WITH_NGHTTP2=<dll/static>` - Enable HTTP/2 support, DLL or static
82 - `WITH_MSH3=<dll/static>` - Enable (experimental) HTTP/3 support, DLL or static
8283 - `WITH_MBEDTLS=<dll/static>` - Enable mbedTLS support, DLL or static
8384 - `WITH_CARES=<dll/static>` - Enable c-ares support, DLL or static
8485 - `WITH_ZLIB=<dll/static>` - Enable zlib support, DLL or static
102103 - `CARES_PATH=<path>` - Custom path for c-ares
103104 - `MBEDTLS_PATH=<path>` - Custom path for mbedTLS
104105 - `NGHTTP2_PATH=<path>` - Custom path for nghttp2
106 - `MSH3_PATH=<path>` - Custom path for msh3
105107 - `SSH2_PATH=<path>` - Custom path for libSSH2
106108 - `SSL_PATH=<path>` - Custom path for OpenSSL
107109 - `ZLIB_PATH=<path>` - Custom path for zlib
117119 differently, you must destroy the build directory containing the
118120 configuration so that nmake can build it from scratch.
119121
122 This option is not recommended unless you have enough development experience
123 to know how to match the runtime library for linking (that is, the CRT).
124 If RTLIBCFG=static then release builds use /MT and debug builds use /MTd.
125
126 ## Building your own application with libcurl (Visual Studio example)
127
128 When you build curl and libcurl, nmake will show the relative path where the
129 output directory is. The output directory is named from the options nmake used
130 when building. You may also see temp directories of the same name but with
131 suffixes -obj-curl and -obj-lib.
132
133 For example let's say you've built curl.exe and libcurl.dll from the Visual
134 Studio 2010 x64 Win64 Command Prompt:
135
136 nmake /f Makefile.vc mode=dll VC=10
137
138 The output directory will have a name similar to
139 ..\builds\libcurl-vc10-x64-release-dll-ipv6-sspi-schannel.
140
141 The output directory contains subdirectories bin, lib and include. Those are
142 the directories to set in your Visual Studio project. You can either copy the
143 output directory to your project or leave it in place. Following the example,
144 let's assume you leave it in place and your curl top source directory is
145 C:\curl-7.82.0. You would set these options for configurations using the x64
146 platform:
147
148 ~~~
149 - Configuration Properties > Debugging > Environment
150 PATH=C:\curl-7.82.0\builds\libcurl-vc10-x64-release-dll-ipv6-sspi-schannel\bin;%PATH%
151
152 - C/C++ > General > Additional Include Directories
153 C:\curl-7.82.0\builds\libcurl-vc10-x64-release-dll-ipv6-sspi-schannel\include;
154
155 - Linker > General > Additional Library Directories
156 C:\curl-7.82.0\builds\libcurl-vc10-x64-release-dll-ipv6-sspi-schannel\lib;
157
158 - Linker > Input > Additional Dependencies
159 libcurl.lib;
160 ~~~
161
162 For configurations using the x86 platform (aka Win32 platform) you would
163 need to make a separate x86 build of libcurl.
164
165 If you build libcurl static (mode=static) or debug (DEBUG=yes) then the
166 library name will vary and separate builds may be necessary for separate
167 configurations of your project within the same platform. This is discussed
168 in the next section.
169
120170 ## Building your own application with a static libcurl
121171
122172 When building an application that uses the static libcurl library on Windows,
123173 you must define CURL_STATICLIB. Otherwise the linker will look for dynamic
124174 import symbols.
175
176 The static library name has an '_a' suffix in the basename and the debug
177 library name has a '_debug' suffix in the basename. For example,
178 libcurl_a_debug.lib is a static debug build of libcurl.
179
180 You may need a separate build of libcurl for each VC configuration combination
181 (eg: Debug|Win32, Debug|x64, Release|Win32, Release|x64).
182
183 You must specify any additional dependencies needed by your build of static
184 libcurl (eg: advapi32.lib;crypt32.lib;normaliz.lib;ws2_32.lib;wldap32.lib).
125185
126186 ## Legacy Windows and SSL
127187