<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/117975>117975</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
Clang-20 crash at clang::CallExpr::getUnusedResultAttr(clang::ASTContext const&) const
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
iamanonymouscs
</td>
</tr>
</table>
<pre>
### Description
I encountered a crash in Clang-20 when compiling the following code
[clangcrash.zip](https://github.com/user-attachments/files/17944587/clangcrash.zip)
### Command
The compilation command used was:
```sh
clang++ -fno-rtlib-add-rpath -fno-ident -flto -O3 -Wall -Wextra -fno-strict-aliasing -fwrapv -g -fsanitize=address clangcrash.c
```
### Error Message
```sh
In file included from core.c:11:
In file included from ./helpers.h:13:
./aArray.h:3255:34: error: use of undeclared identifier 'std'
3255 | char errLoc[], int8_t vec[], std::function<void(int8_t*)> f), {
| ^
./aArray.h:3262:35: error: use of undeclared identifier 'std'
3262 | char errLoc[], int16_t vec[], std::function<void(int16_t*)> f), {
| ^
./aArray.h:3269:35: error: use of undeclared identifier 'std'
3269 | char errLoc[], int32_t vec[], std::function<void(int32_t*)> f), {
| ^
./aArray.h:3276:35: error: use of undeclared identifier 'std'
3276 | char errLoc[], int64_t vec[], std::function<void(int64_t*)> f), {
| ^
./aArray.h:3291:46: error: use of undeclared identifier 'std'
3291 | char errLoc[], int8_t vec[], size_t pos, std::function<int(size_t)> f), {
| ^
./aArray.h:3305:47: error: use of undeclared identifier 'std'
3305 | char errLoc[], int16_t vec[], size_t pos, std::function<int(size_t)> f), {
| ^
./aArray.h:3319:47: error: use of undeclared identifier 'std'
3319 | char errLoc[], int32_t vec[], size_t pos, std::function<int(size_t)> f), {
| ^
./aArray.h:3333:47: error: use of undeclared identifier 'std'
3333 | char errLoc[], int64_t vec[], size_t pos, std::function<int(size_t)> f), {
| ^
./aArray.h:3356:34: error: use of undeclared identifier 'std'
3356 | char errLoc[], int8_t vec[], std::function<int(int8_t*)> f), {
| ^
./aArray.h:3366:35: error: use of undeclared identifier 'std'
3366 | char errLoc[], int16_t vec[], std::function<int(int16_t*)> f), {
| ^
./aArray.h:3376:35: error: use of undeclared identifier 'std'
3376 | char errLoc[], int32_t vec[], std::function<int(int32_t*)> f), {
| ^
./aArray.h:3386:35: error: use of undeclared identifier 'std'
3386 | char errLoc[], int64_t vec[], std::function<int(int64_t*)> f), {
| ^
./aArray.h:3733:5: error: use of undeclared identifier 'std'
3733 | std::function<int8_t(int8_t,int8_t)>f), {
| ^
./aArray.h:3741:5: error: use of undeclared identifier 'std'
3741 | std::function<int16_t(int16_t,int8_t)>f), {
| ^
./aArray.h:3749:5: error: use of undeclared identifier 'std'
3749 | std::function<int32_t(int32_t,int8_t)>f), {
| ^
./aArray.h:3757:5: error: use of undeclared identifier 'std'
3757 | std::function<int64_t(int64_t,int8_t)>f), {
| ^
./aArray.h:3765:5: error: use of undeclared identifier 'std'
3765 | std::function<int8_t(int8_t,int16_t)>f), {
| ^
./aArray.h:3773:5: error: use of undeclared identifier 'std'
3773 | std::function<int16_t(int16_t,int16_t)>f), {
| ^
./aArray.h:3781:5: error: use of undeclared identifier 'std'
3781 | std::function<int32_t(int32_t,int16_t)>f), {
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
Stack dump:
0. Program arguments: /opt/compiler-explorer/clang-assertions-trunk/bin/clang++ -gdwarf-4 -g -o /app/output.s -mllvm --x86-asm-syntax=intel -fno-verbose-asm -S --gcc-toolchain=/opt/compiler-explorer/gcc-snapshot -fcolor-diagnostics -fno-crash-diagnostics -fno-rtlib-add-rpath -fno-ident -flto -O3 -Wall -Wextra -fno-strict-aliasing -fwrapv -g -fsanitize=address <source>
1. core.c:154:60: current parser token '}'
2. core.c:139:50: parsing function body 'id_print_name'
3. core.c:139:50: in compound statement ('{}')
4. core.c:144:17: in compound statement ('{}')
5. core.c:154:10: in compound statement ('{}')
#0 0x0000000003c15168 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3c15168)
#1 0x0000000003c12e6c llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3c12e6c)
#2 0x0000000003b60558 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x00007cf1b7442520 (/lib/x86_64-linux-gnu/libc.so.6+0x42520)
#4 0x000000000764f77b clang::CallExpr::getUnusedResultAttr(clang::ASTContext const&) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x764f77b)
#5 0x0000000006e567be clang::Sema::DiagnoseUnusedExprResult(clang::Stmt const*, unsigned int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6e567be)
#6 0x0000000006b3eecc clang::Sema::ActOnFinishFullExpr(clang::Expr*, clang::SourceLocation, bool, bool, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6b3eecc)
#7 0x0000000006e479ae clang::Sema::ActOnExprStmt(clang::ActionResult<clang::Expr*, true>, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6e479ae)
#8 0x0000000006649284 clang::Parser::ParseExprStatement(clang::Parser::ParsedStmtContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6649284)
#9 0x000000000663f39e clang::Parser::ParseStatementOrDeclarationAfterAttributes(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*, clang::ParsedAttributes&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x663f39e)
#10 0x00000000066402f0 clang::Parser::ParseStatementOrDeclaration(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66402f0)
#11 0x00000000066411d5 clang::Parser::ParseCompoundStatementBody(bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66411d5)
#12 0x00000000066418c4 clang::Parser::ParseCompoundStatement(bool, unsigned int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66418c4)
#13 0x000000000663e367 clang::Parser::ParseStatementOrDeclarationAfterAttributes(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*, clang::ParsedAttributes&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x663e367)
#14 0x00000000066402f0 clang::Parser::ParseStatementOrDeclaration(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66402f0)
#15 0x0000000006642b68 clang::Parser::ParseStatement(clang::SourceLocation*, clang::Parser::ParsedStmtContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6642b68)
#16 0x0000000006645e02 clang::Parser::ParseIfStatement(clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6645e02)
#17 0x000000000663ebd8 clang::Parser::ParseStatementOrDeclarationAfterAttributes(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*, clang::ParsedAttributes&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x663ebd8)
#18 0x00000000066402f0 clang::Parser::ParseStatementOrDeclaration(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66402f0)
#19 0x00000000066411d5 clang::Parser::ParseCompoundStatementBody(bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66411d5)
#20 0x00000000066418c4 clang::Parser::ParseCompoundStatement(bool, unsigned int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66418c4)
#21 0x000000000663e367 clang::Parser::ParseStatementOrDeclarationAfterAttributes(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*, clang::ParsedAttributes&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x663e367)
#22 0x00000000066402f0 clang::Parser::ParseStatementOrDeclaration(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66402f0)
#23 0x0000000006642b68 clang::Parser::ParseStatement(clang::SourceLocation*, clang::Parser::ParsedStmtContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6642b68)
#24 0x0000000006645cff clang::Parser::ParseIfStatement(clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6645cff)
#25 0x000000000663ebd8 clang::Parser::ParseStatementOrDeclarationAfterAttributes(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*, clang::ParsedAttributes&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x663ebd8)
#26 0x00000000066402f0 clang::Parser::ParseStatementOrDeclaration(llvm::SmallVector<clang::Stmt*, 32u>&, clang::Parser::ParsedStmtContext, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66402f0)
#27 0x00000000066411d5 clang::Parser::ParseCompoundStatementBody(bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66411d5)
#28 0x00000000066429da clang::Parser::ParseFunctionStatementBody(clang::Decl*, clang::Parser::ParseScope&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x66429da)
#29 0x0000000006555fe3 clang::Parser::ParseFunctionDefinition(clang::ParsingDeclarator&, clang::Parser::ParsedTemplateInfo const&, clang::Parser::LateParsedAttrList*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6555fe3)
#30 0x000000000658a79d clang::Parser::ParseDeclGroup(clang::ParsingDeclSpec&, clang::DeclaratorContext, clang::ParsedAttributes&, clang::Parser::ParsedTemplateInfo&, clang::SourceLocation*, clang::Parser::ForRangeInit*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x658a79d)
#31 0x0000000006549d2e clang::Parser::ParseDeclOrFunctionDefInternal(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec&, clang::AccessSpecifier) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6549d2e)
#32 0x000000000654a4ee clang::Parser::ParseDeclarationOrFunctionDefinition(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*, clang::AccessSpecifier) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x654a4ee)
#33 0x0000000006551c83 clang::Parser::ParseExternalDeclaration(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6551c83)
#34 0x0000000006552b6d clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&, clang::Sema::ModuleImportState&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6552b6d)
#35 0x000000000654508a clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x654508a)
#36 0x000000000459b908 clang::CodeGenAction::ExecuteAction() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x459b908)
#37 0x0000000004855fe9 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x4855fe9)
#38 0x00000000047d5efe clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x47d5efe)
#39 0x000000000494104e clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x494104e)
#40 0x0000000000cae571 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xcae571)
#41 0x0000000000ca60fa ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#42 0x00000000045deb19 void llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const::'lambda'()>(long) Job.cpp:0:0
#43 0x0000000003b60a04 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3b60a04)
#44 0x00000000045df10f clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const (.part.0) Job.cpp:0:0
#45 0x00000000045a53ed clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x45a53ed)
#46 0x00000000045a64dd clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x45a64dd)
#47 0x00000000045ad895 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x45ad895)
#48 0x0000000000cab3a3 clang_main(int, char**, llvm::ToolContext const&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xcab3a3)
#49 0x0000000000b7ee94 main (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xb7ee94)
#50 0x00007cf1b7429d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
#51 0x00007cf1b7429e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
#52 0x0000000000ca5bae _start (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xca5bae)
clang++: error: clang frontend command failed with exit code 139 (use -v to see invocation)
Compiler returned: 139
```
The issue can also be reproduced on Compiler Explorer:https://godbolt.org/z/v4W5WcjKM
Please let me know if you need any more details.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsXFtzo7qW_jXkRYULxP0hD8SJz2RP7-quTmb60SWEsHUaS4wkculfPyUJG0N8SeK4z96140qXadDl-z6ttbQQwkhKumCEXDrRlRNdX6BWLbm4pGiFGGfPK95KLC8KXj5fOjCwf-CaSCxooyhnjpffAsIwb5kigpQAASyQXALKwLRGbOFCDzwuCQOYrxpaU7YAaklAxeuaP-r_YV4S4Hi5E11hXcFUn_yijRNdOzBdKtVIJ8gdOHPgbEHVsi0mmK8cOGslES5SCuHlijAlHTiraE30t59kYRiliQNno0ZhpvuyfxtCU75aIVba0_dL0oFFmqE-1hdBK0kJHpEB4-VO7Nk_uXS83HTiwCsHXgG3YtwVqqaFi8rSFQ1SS2DP0pIwBdyqVhy4XwPg_kB1Ddwf5EkJZItIJShWLqopkloet3oUqHkArj6UiFFFfxEnuEZlKYiUAIAtgngb2JjkjRBcgD-JlGhBXjC4ZUCLByjDdVuSElSCrwDmgkywE-S-b2nvLjZx4GxJ6oYIOVnq0oEtrc-jXAj0bE4HMIr0V-gEOSAajj5oJQG8Ai0rCa6RtiEjE60oEcCBiVSlAxPHy4GuD5xkCvQHL5HQjXzh2NquA6eAMpXOFXggW-d0_SB3grxqGTY2G0wfOC0dmNriDsy1WQQ3oNLfcAqc5Er3Zz7r_g5-nOhmF90Y6q_o3XRjeJSuH7-Nry5_nPA-PtmJfDLT-j4uAXwbF13-3VyS-DQuSXx0bOLwbXx0-XfzybSHhvG7-WT-wbF56Vb0F5kr0HC5jxhlyoGpLbeb06t867ifBZ4exjB5L_fAOx5WdvjZBwhwZFADPzuNmJ8dJbbD6X4DsSA4jVgQvMf7fgOxKD5phgui42HlVTOcZXJkgjthbgvi0-JnEB8n-rq5bcP0lKktOHE6CLrp4LSpbUPllJktSE-kkn7UzLahc8rElphQ8W42SRcp9uAz3rFxk80ZjfNQMrgHauifBDX0D0G15t0b-qvA7gOanQY0OwTUGm9vxqcAjZKTgEbJIaDWLHsDPQVoHJ0ENI7eZqXWBN5ppslpHpUc9KhdZnoc7R6k6WkOlR50qF12-hZdK6RQ3QNTnIMVYs_2jARkRZUipQ2OvGn03Tzjj8CJrtzKlHFruqLKCa51DPXyb19u8rsbINtiRRVAoGgXQJCGCwUUBwcWQur6Yf3lNoL_m2DlwBmVsjWLIQCxcn3DbhZf7ApNgfBPJRAmGmEjSCM4JlKSEkjeCnta10RSckyRIiUQLQN26WfiePmdQvgnKNtVY-_2vYnjZd8EXwi0AkgsWrsqE-TAgTPeaEx2XYUIlzw1NRdErBdoXCQlEXpspKtEy346cFZQtr68XlpZlI9IVG5olkO4bhc1jW69VU2rJhK4K60CcN2nNHaRXLnymSn05ATXlClS2zWWByIKLom-Dtw74LoLjF3FeY2XiDI9Hofw6sKSoUYuuQJuhXnNhVtStGBcKoql7cNo_PL0eF3oXMtCTjDtRjHQpurroekXcyKdn8aeHhrcCqF7b5CQRADFfxKm3chJrq0bwWHVwMwcpqquorGsvQoUvHzWdWk5bwRlas7QithWgr2tULs0yFtWAqmQItpqgANTA-Kqw2GW7cJhI6Fm4SdvbCTaIYX_ViTAgYEHvCdv_QmwH_lxCowrmlgjn6U9-KalML5yb70t7QsJ9DjnUgmCVg6Mu-TKgZnt9UOcxoFX3lMHrwfvj8BDEuNd4Kc1QaxtvrI7umCodmDaMrNiXIKa6y7OAVWD6aHCAdQi9qIoBVPtXt8J5g9EPFts_4VYWese007DQZkpZ4o8qQludLTyzD_bftC1n-DKL5IwhBH0OlI1LRw4e0rjeRy6NWXtk7tgrb2AJ5JPYgPZVOkBh9uAkziskqSwq7Sdpqiub54aYf-3IOp_WCtJ-Z3Itla5UprCVvH87r4DDzBnUhlDyezxR4vfoe25RNtcYhLFSUG2udyRFbJH1zbUEUtG87OEhmTu1GpDI9f2vjGn8xh-B7knFA8IFQEhGO8mlGP1lc0oo3I5a7sRG3CxZwyL7QZM2P3CsXl6oC8WnNcvvz-eqiXTU02GYxcmGdozdoaqpqOHZ2R9JrR3QxlMd9NXojUTzRnJWfg9uXRALg4zmIbb5L6Z-Wzr2NLrovqQ44uypdahc7pzkLFwezLZkExQBRk5SGZD5Ku4NmmwMba8UkToAEKLVunUb2umuVuhuv5fgpVOVqcjj-yGMYCtGcV4ZNJH9Dlo_mP3sPW3Qe7sbVziDGNgVO6eB8LA90YG5cHKe8cY_FVEP4fRakl6wfyRYL5fRgcJTLvkaiPcFS-fHZieK2RYSD1gOAac4sMh4wXgDdjzz1sWXg8-GIUIEsTJZ4g4d4jQKvdjEH6GiLeFiGgkGCzi9HWCjbLG11jM753ANZWeaDwiGhEPHgR4W72e6jnga4A9_GQcXIryleP0GVxOCC5FuWVC44T2M7gcCS7Z3yz_gOMM8--Uf0D_M__4T-cfcJzAfoaIwyECBv-Q_AOOM9MIV9VfO__AVdXDjz7zj_90_gHHKexncDkSXJK_W_4xzjBhVqKDgGfdg70x4K06euRfEQ_vMG_IuQzZEOlpDvPCKIoqEryK5jWpKKOdEY8qULZYGzkXrzHWe7JqaqTILav41nObvbW-IEV6z_9CuwckHy-XFWQj1_AxZhylKMnKg9S0Dv8SvG32qnTXEPySba_fbid-ZWTcq_LL8m-ZtmdcfEdsQW4ZPZvyRtte-WFKHYVZCQ-v-msFv4otc71ligj7WPb0KeZFiYOjmWNMpNTXzM6bs-hlFOn1giO9UEiO69VNSwPZ9nr5h6s2trjfoprWpVctGIVDH6eHw-HNkzWq4aT-G5Q6R6zTbHstwpEWsIgPx7p73nwhD6S209y2CF8b9H8t-aZGic0mOH4n1c60pn_o-icv25rcrhoulJlhzzQ_Wpq9CNHIjSIvfZkG5Hf3o_sCjduyOfdzbAupBzzITMMoKzJvcHcw5SX5F2F5t7UvN8-mCW4V6U5pfB8OswPSwxzkg2Gqp9lsG-ZM6GmPlTtwngmhxdAjHCSAYVJGpCJDIW2ft0wqxDDZreV-Smex3w5nz2KQ34VZ6HvhgEWHtyfzsEkA0kNkzxKCOnwb9OEg3fIwIlHiA4z9-QrR4c2T2QdrwsjUbMPf7JqxGy2G5-AU2PfIzkHCouw5-CMOsVchsJZ96t-buLD7NvB21dQ7CZnI0lfRbeza9VQK-kDEaBeXxgSHQaIkhZ8ZSbYaXW9UnAujqrlqXU9DMEUwqusC4Z_zig0Du-24M52pv35jeOTFO0dvs_2Ym1emkRZgSxwlKFt004Ud2k2F-Rw_PdlXb4O8QJLiuTTFOwkHhfWJuRKIKrm-PGoO1bV2BXsz3l3XRfI-muebrWW2igOTGq0KfX-V9FLBdL357w9e7BiMYLxlD3nh1jjs2phnr3xv2R2qSP080PLwuJ1hC6JF3Bt8ODKuyvcGy2v_OOPQik8aJNTE228F0VA1FAWk3Kta_8L9OIobKQehe1TRvJ2_5xb7QNF8kM6caUNlR7s3pVEyg-KwfLMof_BC7lfkD158oVINFDkUizcW0CAq1m9tvV7Ezkx-i5RarF7KZCRlmWbRPtjXW8eDBGFHZrBvCH6jlGfIVo08vXjpaA4vAtTdFq4zkTV4E0ryLhAcn6E_PPfQyHrcg-zPKxJCshBoxB_dsW1603HkDbeJw6zM3rhN3FTpG_THDZLQA_O5rjOXCgk136L16i5IuNUFHA1yVCACbOMfP066cdv19rXtV7fMeVB1Nw2bH1apEK1JCR6pWgLyRJX9SRg_MLbUSgLcB6A4kIQAupXM657WSTwQRLWCEe1-uubL30G5XxJg3ogCGDGAaslBQYB566lsMSkBZ2DT2s1ahiAfvXbFy4LXasLFwoGzXw6cPYQ_oh_43__9p-Pl32qCJAE1UWBFwE_GHwGtwDNvASOkBIg9gxUXBJREIVrLyUV5GZRZkKELcuknAUxSL_H8i-VlGhEv8MIIBzCDOAy8zEMwKmGKCPIgDC7oJfRg6Psw9ZIohf7Ej3ERekWWoiQksYec0CMrROuJdlgN98KQv_T9JEuiixoVpJbmR38g7IYLOtH1hbg0b5EV7UI6oVdTqWTfhKKqJpebn_Wxr5EhdaZ3Gy5aUV--_623junDJfz_AAAA__8tKzEB">