<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/115725>115725</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[clang] clang crashes at clang::CallExpr::getCallReturnType(clang::ASTContext const&) const
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang:frontend,
crash-on-valid,
clang:frontend:fuzzer,
regression:18
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
yijan4845
</td>
</tr>
</table>
<pre>
**This testcase is generated by a fuzzer.**
Compiler Explorer: [https://godbolt.org/z/qMPdKaf48](https://godbolt.org/z/qMPdKaf48)
This valid code will crash on clang trunk and clang assertion trunk:
```cpp
template<auto ...> struct X {};
template<typename T, typename ...Ts> struct A {
template<Ts ...Ns, T *...Ps> A(X<0(Ps)...>, Ts (*...qs)[Ns]);
};
```
This goes back to clang-18.
Stack dump:
```
clang++: /root/llvm-project/clang/include/clang/AST/Type.h:8815: const T* clang::Type::castAs() const [with T = clang::FunctionType]: Assertion `isa<T>(CanonicalType)' failed.
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 <source>
1. <source>:3:34: at annotation token
2. <source>:2:38: parsing struct/union/class body 'A'
#0 0x0000000003bfdd38 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3bfdd38)
#1 0x0000000003bfba3c llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3bfba3c)
#2 0x0000000003b49038 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x00007eb274242520 (/lib/x86_64-linux-gnu/libc.so.6+0x42520)
#4 0x00007eb2742969fc pthread_kill (/lib/x86_64-linux-gnu/libc.so.6+0x969fc)
#5 0x00007eb274242476 gsignal (/lib/x86_64-linux-gnu/libc.so.6+0x42476)
#6 0x00007eb2742287f3 abort (/lib/x86_64-linux-gnu/libc.so.6+0x287f3)
#7 0x00007eb27422871b (/lib/x86_64-linux-gnu/libc.so.6+0x2871b)
#8 0x00007eb274239e96 (/lib/x86_64-linux-gnu/libc.so.6+0x39e96)
#9 0x0000000007bf713f clang::CallExpr::getCallReturnType(clang::ASTContext const&) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x7bf713f)
#10 0x0000000007c05f6b ClassifyInternal(clang::ASTContext&, clang::Expr const*) ExprClassification.cpp:0:0
#11 0x0000000007c07284 clang::Expr::ClassifyImpl(clang::ASTContext&, clang::SourceLocation*) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x7c07284)
#12 0x00000000073e9050 clang::Sema::DeduceAutoType(clang::TypeLoc, clang::Expr*, clang::QualType&, clang::sema::TemplateDeductionInfo&, bool, bool, clang::TemplateSpecCandidateSet*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x73e9050)
#13 0x00000000072e0672 clang::Sema::CheckTemplateArgument(clang::NonTypeTemplateParmDecl*, clang::QualType, clang::Expr*, clang::TemplateArgument&, clang::TemplateArgument&, clang::Sema::CheckTemplateArgumentKind) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x72e0672)
#14 0x00000000072e71dd clang::Sema::CheckTemplateArgument(clang::NamedDecl*, clang::TemplateArgumentLoc&, clang::NamedDecl*, clang::SourceLocation, clang::SourceLocation, unsigned int, llvm::SmallVectorImpl<clang::TemplateArgument>&, llvm::SmallVectorImpl<clang::TemplateArgument>&, clang::Sema::CheckTemplateArgumentKind) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x72e71dd)
#15 0x00000000072e8ee7 clang::Sema::CheckTemplateArgumentList(clang::TemplateDecl*, clang::SourceLocation, clang::TemplateArgumentListInfo&, clang::DefaultArguments const&, bool, llvm::SmallVectorImpl<clang::TemplateArgument>&, llvm::SmallVectorImpl<clang::TemplateArgument>&, bool, bool*, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x72e8ee7)
#16 0x00000000072ec690 clang::Sema::CheckTemplateIdType(clang::TemplateName, clang::SourceLocation, clang::TemplateArgumentListInfo&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x72ec690)
#17 0x00000000072ef527 clang::Sema::ActOnTemplateIdType(clang::Scope*, clang::CXXScopeSpec&, clang::SourceLocation, clang::OpaquePtr<clang::TemplateName>, clang::IdentifierInfo const*, clang::SourceLocation, clang::SourceLocation, llvm::MutableArrayRef<clang::ParsedTemplateArgument>, clang::SourceLocation, bool, bool, clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x72ef527)
#18 0x000000000683373b clang::Parser::AnnotateTemplateIdTokenAsType(clang::CXXScopeSpec&, clang::ImplicitTypenameContext, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x683373b)
#19 0x00000000067295f0 clang::Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec(clang::CXXScopeSpec&, bool, clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x67295f0)
#20 0x000000000672c0ce clang::Parser::TryAnnotateTypeOrScopeToken(clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x672c0ce)
#21 0x0000000006756e53 clang::Parser::isDeclarationSpecifier(clang::ImplicitTypenameContext, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6756e53)
#22 0x0000000006757d1b clang::Parser::isConstructorDeclarator(bool, bool, clang::DeclSpec::FriendSpecified, clang::Parser::ParsedTemplateInfo const*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6757d1b)
#23 0x000000000676fb6c clang::Parser::ParseDeclarationSpecifiers(clang::DeclSpec&, clang::Parser::ParsedTemplateInfo&, clang::AccessSpecifier, clang::Parser::DeclSpecContext, clang::Parser::LateParsedAttrList*, clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x676fb6c)
#24 0x0000000006791cdd clang::Parser::ParseCXXClassMemberDeclaration(clang::AccessSpecifier, clang::ParsedAttributes&, clang::Parser::ParsedTemplateInfo&, clang::ParsingDeclRAIIObject*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6791cdd)
#25 0x0000000006834cd5 clang::Parser::ParseDeclarationAfterTemplate(clang::DeclaratorContext, clang::Parser::ParsedTemplateInfo&, clang::ParsingDeclRAIIObject&, clang::SourceLocation&, clang::ParsedAttributes&, clang::AccessSpecifier) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6834cd5)
#26 0x000000000684224c clang::Parser::ParseTemplateDeclarationOrSpecialization(clang::DeclaratorContext, clang::SourceLocation&, clang::ParsedAttributes&, clang::AccessSpecifier) (.part.0) ParseTemplate.cpp:0:0
#27 0x000000000679214b clang::Parser::ParseCXXClassMemberDeclaration(clang::AccessSpecifier, clang::ParsedAttributes&, clang::Parser::ParsedTemplateInfo&, clang::ParsingDeclRAIIObject*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x679214b)
#28 0x00000000067942b1 clang::Parser::ParseCXXClassMemberDeclarationWithPragmas(clang::AccessSpecifier&, clang::ParsedAttributes&, clang::TypeSpecifierType, clang::Decl*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x67942b1)
#29 0x0000000006795df7 clang::Parser::ParseCXXMemberSpecification(clang::SourceLocation, clang::SourceLocation, clang::ParsedAttributes&, unsigned int, clang::Decl*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6795df7)
#30 0x00000000067985a3 clang::Parser::ParseClassSpecifier(clang::tok::TokenKind, clang::SourceLocation, clang::DeclSpec&, clang::Parser::ParsedTemplateInfo&, clang::AccessSpecifier, bool, clang::Parser::DeclSpecContext, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x67985a3)
#31 0x000000000676cda0 clang::Parser::ParseDeclarationSpecifiers(clang::DeclSpec&, clang::Parser::ParsedTemplateInfo&, clang::AccessSpecifier, clang::Parser::DeclSpecContext, clang::Parser::LateParsedAttrList*, clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x676cda0)
#32 0x000000000683492a clang::Parser::ParseDeclarationAfterTemplate(clang::DeclaratorContext, clang::Parser::ParsedTemplateInfo&, clang::ParsingDeclRAIIObject&, clang::SourceLocation&, clang::ParsedAttributes&, clang::AccessSpecifier) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x683492a)
#33 0x000000000684224c clang::Parser::ParseTemplateDeclarationOrSpecialization(clang::DeclaratorContext, clang::SourceLocation&, clang::ParsedAttributes&, clang::AccessSpecifier) (.part.0) ParseTemplate.cpp:0:0
#34 0x000000000684256a clang::Parser::ParseDeclarationStartingWithTemplate(clang::DeclaratorContext, clang::SourceLocation&, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x684256a)
#35 0x0000000006773a93 clang::Parser::ParseDeclaration(clang::DeclaratorContext, clang::SourceLocation&, clang::ParsedAttributes&, clang::ParsedAttributes&, clang::SourceLocation*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6773a93)
#36 0x0000000006732a57 clang::Parser::ParseExternalDeclaration(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6732a57)
#37 0x00000000067338fd clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&, clang::Sema::ModuleImportState&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x67338fd)
#38 0x0000000006725e1a clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6725e1a)
#39 0x0000000004579e08 clang::CodeGenAction::ExecuteAction() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x4579e08)
#40 0x0000000004834f69 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x4834f69)
#41 0x00000000047b41de clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x47b41de)
#42 0x000000000491ad6e clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x491ad6e)
#43 0x0000000000cea79f cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xcea79f)
#44 0x0000000000ce245a ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#45 0x00000000045bd009 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
#46 0x0000000003b494e4 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3b494e4)
#47 0x00000000045bd5ff 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
#48 0x00000000045838ed clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x45838ed)
#49 0x00000000045849dd 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+++0x45849dd)
#50 0x000000000458bd95 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x458bd95)
#51 0x0000000000ce7639 clang_main(int, char**, llvm::ToolContext const&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xce7639)
#52 0x0000000000bb3b64 main (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xbb3b64)
#53 0x00007eb274229d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
#54 0x00007eb274229e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
#55 0x0000000000ce1f0e _start (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xce1f0e)
clang++: error: clang frontend command failed with exit code 134 (use -v to see invocation)
Compiler returned: 134
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsW1tT3LqW_jXmRdVdtnx_4ME0cIZ9kh0mUDN5o2RZ7tbBbXlLMoH8-ildurHcN8jGOVN1QkHSrcvSt761tLRkS0gIumwJOffiCy--PEO9XDF-_kL_hdooi-KzklUv5x4sPFjcr6gAkgiJkSCACrAkLeFIkgqULwCBuv_xg_C5aez5l55v_12wdUcbwsHVc9cwTrgXFsCLL1ZSdsILCw9ee_B6yaqSNXLO-NKD1z88eP3X59vqn6iOMi--9GD29uYwHw6vcT-hhlYAs4qA77RpAOZIrABrAW5QuwSS9-0jQG1lvyMhCJeUtaZGjWokJr75xV1nSiRZdw2SxAsXqJcMzOdzL7wCQvIeS_ANeOmFl1564cVOc_nSkRatCbj34AJsv83n83sxEFFoEbozAIPu90I1_VOozvfAg8V8Pr_VHQsPZt-8cOF7MLsVHswNJt1QAA9mpvFfqsqLL_4Umt98i3GId6vwDqNLRgQoEX4EkhnWZkE2Hza7k6q26tfdLn_mq-7mwQv1q3wCXnPGpAevm-ZpPes4-xfB6qttd01b3PQVGZQUd_cevL5_6ch85YVFlgWxkoRZK6QitjDQFICwUM3MJ4yELISmIreNvfjiO5UrxWV4Oex13bdYuYLuHV8q8cXWPbzEpwIpc2iGswVqWUsxanRrmHswBTWiDaksNbefroq7KyD6ck0lQKDsl4CTjnGpeBz5OJWrvpxjtraU7DJDheiJ8OC1dl7LD5ArYj1cGUhyhImyfsdJxxkmQpAKCNZzU6x6IiEYpnoy874FAnPayflBO_pzz89vOVtytAaIL_s1aaWwNmSdtpmd9TOymfXWarPt5BIzM7vgdUnbV6MqdwCzZfUd8XoWgdkSzJiSi7pOSe9l18u5ALO14gLMZs9ZMkNiPRMvrUTPXnhJW0kaMKtbNnsivGSCqHowuwOz2RLjmWSswStEWy-8PIpXNRYt6sSKSTCrMWsYn1UULVsmJMXCjKGZdoq9cGHpDa8MYYEizCkOi1D9RYo0JAFqWyaRCTnskbSmG9zTDapumerWIS5ou7SRwoPXfUuZJVIIoGI38GBaeDC1AcSDoQ_8Z3_zE5Z1VYUZ0M6lvV28CPPhltNWatPfG__JXhtx9P2BCckJWnswUT5EW6mmkp5RH-IAHrzwny28bUBX-IMR_hKFeB_-RUNQ23df2ju6bFHjwaxv9WJXgYapUaZAq8A4aKGLNsr9MAML5TBfCWZPhL8YeP-F2qpRg2aWSafNgrWSPMu5WnXCwtd_2yFCO0RKSphGMIIx9K1qDS09eP2cJQ9JNGto2z_Plm1vKvBcsHmigesuDuzIlZkneY1BJ1ecoOrhUS2g7xpA93cGiMegozQBS6G5eC_4KE0c2YkrG2ZpHQJUqhD7Lsm6oyM53ZEclO-WGZSOzMyVGeYkT94nU3dxZOZDr0vLOg3CerikLVDTXD133HxbEqkKvhLZc7PKwWzQuLi7t_5nVko947er5sdOIYv1NYODYeAErBT7cZ2UYKEiHK1fblpJuJneeyHb8DSoU3pvFCmUIqrAiqNYR-DdeaZwBCMcKcyiseBN6LHg1t07gN3pGP-JGQwW3DQsG_AOy06gSkOS-7HvoCNrZD5dkqrHpOgl2_UVVfKJ4T2Ua32c0v_uN1nSmAmxHeve5rt6TKXaTVsz26FkrBn-P4Rhu911BC9QW9FKfSEbi380nYYth87QoRMSP0nhfjoXK4IfN4ALm0q5rP5pks9No1vE15cEN8cofQP_u2OO7XC6xQk1_knbagrCDZ8O4dGI8DSoqp8nHK1JtZ_icUft7WNajvQfz_ITlducRacFi0Gic7dGTfM_BEvGdZwJF8cspzYnyYcI-P9gfWVcx_rxyPoZIek7kH6iYuQBr4Hn3UbcJ3wQtgYtL0mN-kZuGorB-voa1v79FncDbfH6cQrTKss5pk1GpsVJfmBhckx7U-1ZnWydmp4fZtEpSFA6OiSkIxLqGB7w7wLLL-0xEu4wU0Vjl158-6Zr1JJ5OjdxKr906K-e3Eq-36E02-bx06D2piKtpDUlXDE5SMj-TrR8dfXPvURlQwrO0ctXUrvIbhEXpNrr8CcGOJJzqBlFMZX39kHeNs-bwkGU_R0HyYYOkmRhmIYlGKts09PCPGogAy9hj6QtxK6zHPeKgypPFiCsZo7qzmYnSWEe1_4h1e_5y1b7l4584Vo7o34tCR8oe4KGf6sHWC2HNEB_RAP2MfkJGlzFf6lKCrGjUuCqFCckDg-pRIVaqhHXU1XZSceWN2oznb8a0I5WcKRVWgUHpyoVCxUYea_W7I2CTKl1JBKpdtpTzeNrTklbbRipRm2Hg7lhcRSWp6BGae5QE7rUJHWZ4KNo99lcuEbfsrETvo7rvtu-wJgIMfCtg9I2Yw4c7EDLT2Y_J0hVSMlNHjpeBH_lJNSUOzaJXJvkAXY3VjssLr590w9APpN1SfjAQqNHIafZ1JzQspdE_H3r3ZqH5QrP1-Lm5ktp3qBM49qaJYfGeLRAR7iK3-raemnaaLfr3SYmnPa1v8HSqXxwr3GOmm_H_FPkCopkxwqJa4UIwuh4gBnuA601vnCNGjX0xx63PmWQqZibd4jLuUoJgAN877NMmI4mNQyig2vQ70m9mdSKJcedshGNESyDn6Pxf6lc3XK0XCNxgtH3O4xaN7YC9jwe3D7jmIIzRYnD2Shdz-OqTk9xZuiyOuA9fvfOfeJp-sbP3X4VXYqNIV3hKK3PsxgdzIENXcq_DiTAkj1al1Cpvnk-93aqJs2k9uSx78yoxkacwjyKfcc8oy1Kgit0cPP5O2OdJGNVlDs2geNUK4fod6o1daqVQ-RYIfydamkeojEPcfJmb7yTiEvaLlV28HNO-VMcTOAfWm3HP9wNUZqGKD--sB1MOqf3g9Mt9r68__BYp0lyWHQ3NGkIUXw8m7p6NgcmDrL5EWwMQptZyKahQ2vr0DHa14RhVh9_WHHPuk_kiTQmqRvycOCthmr4D876Tr9VOPpS9DOr-obcrDvG5Z3UU3eatESr6fAw2pjAmAS7QUefnc3G0Pe985viaa-C5GB2NgZRnObEz5w3VKwi_yBtoc-BmKKrZ4J7SWyROc37wUgtkCHSyMnJoyyM6iR3TgxzFYfaag_UiUAaDA5IJzON0jIKKuLSaYa9aYVELSb7GT2s1SS-bHE6ijjpXJQHqEqIe7pFQ37V54nt2yLu6DtJULL4HAWcTMjHBKV5DTAOHtZIyRicqx2-rlyhwTE1-2rSKYML8MRoNY0eBqWjRjRSA0YxAhvyF8G9jhTZ0dMGOzqNDigoGfvOGlacPhG-N7-KYjdslJXv55qYgdzaHuF_4JpbXWtmojlSrW8ENE2J8OND3boB34xtfWgRLNh6jdpqPKn32lBI2451anSkOBjwIzltl3YZMQbednh4wM_PQWC-lEhQ_CB0c8ui01gVPEiOqBSb6pE41DRqTjA-qFdNCudYhz1taLp4MG3QuqyQB9NXqmC2OTv9Byv32yMZn3iOSDQwxb5zzabma9_eoZo0Lw6dx003xSFujdjx_HTsYnHtHKf9j3OR0S7ooC9kLnFZmJHqIHHadmhnxdyw6QTzUce1vrk1ODz1tqaFk-xMdNjWqu041CjVyaK8ejcvf7BSHCblD1Z-okI6pBwLzVs_6BBVLrD72PMoj9ZZfgmbiqwhm7E_YrOs8vgQ8svBZydx2JMxHLLCL2RzgnRW0-PwF4wW9jQJbTq7yVA2-HVYKWxQOL1sf3hOopA50J3c0C_LsEwioEB_9NhGtDP26N4NzKv8nfdudBdHZjSWSSIfPDyobg9CIi4fBsq9eRQSuaPEI4MHtU-Akf_xNlPCt6MPq8MCEM6Zvg2sy0FtdxgA2xlhbk4CfS-TPFNpLvAGYaRg9oKA2ROQDAhCAB2k_fno3jHXN1uImpOq8-gq6ll1HlZ5mKMzch6kYRCGmZ-FZ6tzlOV1gEmZ1hEpISFJ7lfED1AS4lwl-Wf0HPowCtRPHEQRnCOS-LhKaxSEaQTTzIt8ska0mau5Mmd8eabva54HQZzC-KxBJWmEvnsN4SY4bEjwIPTgQlXo64Wsnek7zK_F4_YqV_rxQxnJtuBkyYkQZuEIMlUeX57xc32FtOyXwov8hgopXuFJKht9GdxIj-1FWHOZlAiApLOF_KhrRGc9b85__u6rpfPpHP5fAAAA__8Qm3M2">