<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133252>133252</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
Clang 19.1.7 crash when calling a static template method inside a constructor ---
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
diegonehab
</td>
</tr>
</table>
<pre>
# Summary
Clang crashes when compiling a small C++ program that calls a templated static method from a constructor. The crash yields a segmentation fault. Below is the minimal reproduction code, the command line used, and the backtrace.
# Steps to Reproduce
1. Save the following code as `a.cpp`:
```cpp
class A {
public:
A() {
int i = 0;
foo(i);
}
template <typename T>
static auto foo(T t) {
return t;
}
};
int main(void) {
A a{};
return 0;
}
```
2. Compile with Clang (version 19.1.7) using the following command:
```
clang++ -v -std=c++20 -Wall -O0 -g -o a a.cpp
```
3. Observe the segmentation fault and compiler crash.
# Expected Behavior
The code should fail to compile because the deduced return type cannot be used before it is defined.
# Actual Behavior
Clang fails with a segmentation fault and requests that a bug report be filed.
```
clang++ -v -std=c++20 -Wall -O0 -g -o a a.cpp
clang version 19.1.7
Target: arm64-apple-darwin23.5.0
Thread model: posix
InstalledDir: /opt/local/libexec/llvm-19/bin
"/opt/local/libexec/llvm-19/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Werror=undef-prefix -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -dumpdir a- -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name a.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -funwind-tables=1 -target-sdk-version=15.2 -fcompatibility-qualified-id-block-type-checking -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.4a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debug-info-kind=standalone -dwarf-version=4 -debugger-tuning=lldb -fdebug-compilation-dir=/Users/diego/cartesi/emulator/clang-crash -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/diego/cartesi/emulator/clang-crash -resource-dir /opt/local/libexec/llvm-19/lib/clang/19 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /opt/local/libexec/llvm-19/bin/../include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /opt/local/libexec/llvm-19/lib/clang/19/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -O0 -Wall -std=c++20 -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcolor-diagnostics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /var/folders/c1/9gdm_twx72q20qy1qy3bcqvr0000gn/T/a-c9f6e1.o -x c++ a.cpp
clang -cc1 version 19.1.7 based upon LLVM 19.1.7 default target arm64-apple-darwin23.5.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"
#include "..." search starts here:
#include <...> search starts here:
/usr/local/include
/opt/local/libexec/llvm-19/bin/../include/c++/v1
/opt/local/libexec/llvm-19/lib/clang/19/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)
End of search list.
a.cpp:5:9: error: cannot compile this l-value expression yet
5 | foo(i);
| ^~~
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/local/libexec/llvm-19/bin/clang -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Werror=undef-prefix -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -dumpdir a- -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name a.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -funwind-tables=1 -target-sdk-version=15.2 -fcompatibility-qualified-id-block-type-checking -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.4a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debug-info-kind=standalone -dwarf-version=4 -debugger-tuning=lldb -fdebug-compilation-dir=/Users/diego/cartesi/emulator/clang-crash -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/diego/cartesi/emulator/clang-crash -resource-dir /opt/local/libexec/llvm-19/lib/clang/19 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /opt/local/libexec/llvm-19/bin/../include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /opt/local/libexec/llvm-19/lib/clang/19/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -O0 -Wall -std=c++20 -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcolor-diagnostics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /var/folders/c1/9gdm_twx72q20qy1qy3bcqvr0000gn/T/a-c9f6e1.o -x c++ a.cpp
1. <eof> parser at end of file
2. Per-file LLVM IR generation
3. a.cpp:3:5: Generating code for declaration 'A::A'
4. a.cpp:3:9: LLVM IR generation of compound statement ('{}')
#0 0x00000001116d2d14 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/local/libexec/llvm-19/lib/libLLVM.dylib+0x14ed14)
#1 0x00000001116d0f28 llvm::sys::RunSignalHandlers() (/opt/local/libexec/llvm-19/lib/libLLVM.dylib+0x14cf28)
#2 0x00000001116d33d0 SignalHandler(int) (/opt/local/libexec/llvm-19/lib/libLLVM.dylib+0x14f3d0)
#3 0x0000000198ceb584 (/usr/lib/system/libsystem_platform.dylib+0x180477584)
#4 0x0000000106b2c02c arrangeFreeFunctionLikeCall(clang::CodeGen::CodeGenTypes&, clang::CodeGen::CodeGenModule&, clang::CodeGen::CallArgList const&, clang::FunctionType const*, unsigned int, bool) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x151402c)
#5 0x0000000106bf2108 clang::CodeGen::CodeGenFunction::EmitCall(clang::QualType, clang::CodeGen::CGCallee const&, clang::CallExpr const*, clang::CodeGen::ReturnValueSlot, llvm::Value*) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x15da108)
#6 0x0000000106bf1304 clang::CodeGen::CodeGenFunction::EmitCallExpr(clang::CallExpr const*, clang::CodeGen::ReturnValueSlot) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x15d9304)
#7 0x0000000106c34dec (anonymous namespace)::ScalarExprEmitter::VisitCallExpr(clang::CallExpr const*) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x161cdec)
#8 0x0000000106c24674 clang::CodeGen::CodeGenFunction::EmitScalarExpr(clang::Expr const*, bool) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x160c674)
#9 0x0000000106bd65dc clang::CodeGen::CodeGenFunction::EmitAnyExpr(clang::Expr const*, clang::CodeGen::AggValueSlot, bool) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x15be5dc)
#10 0x0000000106bd642c clang::CodeGen::CodeGenFunction::EmitIgnoredExpr(clang::Expr const*) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x15be42c)
#11 0x0000000106d13a70 clang::CodeGen::CodeGenFunction::EmitStmt(clang::Stmt const*, llvm::ArrayRef<clang::Attr const*>) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x16fba70)
#12 0x0000000106d14a40 clang::CodeGen::CodeGenFunction::EmitSimpleStmt(clang::Stmt const*, llvm::ArrayRef<clang::Attr const*>) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x16fca40)
#13 0x0000000106d1399c clang::CodeGen::CodeGenFunction::EmitStmt(clang::Stmt const*, llvm::ArrayRef<clang::Attr const*>) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x16fb99c)
#14 0x0000000106b482e4 clang::CodeGen::CodeGenFunction::EmitConstructorBody(clang::CodeGen::FunctionArgList&) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x15302e4)
#15 0x0000000106d77990 clang::CodeGen::CodeGenFunction::GenerateCode(clang::GlobalDecl, llvm::Function*, clang::CodeGen::CGFunctionInfo const&) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x175f990)
#16 0x0000000106b2737c clang::CodeGen::CodeGenModule::codegenCXXStructor(clang::GlobalDecl) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x150f37c)
#17 0x0000000106e1bcf0 (anonymous namespace)::ItaniumCXXABI::emitCXXStructor(clang::GlobalDecl) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x1803cf0)
#18 0x0000000106d919bc clang::CodeGen::CodeGenModule::EmitGlobalDefinition(clang::GlobalDecl, llvm::GlobalValue*) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x17799bc)
#19 0x0000000106d85d9c clang::CodeGen::CodeGenModule::EmitDeferred() (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x176dd9c)
#20 0x0000000106d85db4 clang::CodeGen::CodeGenModule::EmitDeferred() (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x176ddb4)
#21 0x0000000106d837ec clang::CodeGen::CodeGenModule::Release() (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x176b7ec)
#22 0x0000000106e370a8 (anonymous namespace)::CodeGeneratorImpl::HandleTranslationUnit(clang::ASTContext&) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x181f0a8)
#23 0x0000000106d69870 clang::BackendConsumer::HandleTranslationUnit(clang::ASTContext&) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x1751870)
#24 0x00000001057e5a30 clang::ParseAST(clang::Sema&, bool, bool) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x1cda30)
#25 0x000000010784e408 clang::FrontendAction::Execute() (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x2236408)
#26 0x00000001077d31d8 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x21bb1d8)
#27 0x00000001078cd7bc clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/local/libexec/llvm-19/lib/libclang-cpp.dylib+0x22b57bc)
#28 0x0000000100afd9c4 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/local/libexec/llvm-19/bin/clang+0x1000099c4)
#29 0x0000000100afb018 ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) (/opt/local/libexec/llvm-19/bin/clang+0x100007018)
#30 0x0000000100afa44c clang_main(int, char**, llvm::ToolContext const&) (/opt/local/libexec/llvm-19/bin/clang+0x10000644c)
#31 0x0000000100b06470 main (/opt/local/libexec/llvm-19/bin/clang+0x100012470)
#32 0x00000001989320e0
clang++: error: unable to execute command: Segmentation fault: 11
clang++: error: clang frontend command failed due to signal (use -v to see invocation)
clang version 19.1.7
Target: arm64-apple-darwin23.5.0
Thread model: posix
InstalledDir: /opt/local/libexec/llvm-19/bin
clang++: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang++: note: diagnostic msg: /var/folders/c1/9gdm_twx72q20qy1qy3bcqvr0000gn/T/a-7ca65a.cpp
clang++: note: diagnostic msg: /var/folders/c1/9gdm_twx72q20qy1qy3bcqvr0000gn/T/a-7ca65a.sh
clang++: note: diagnostic msg: Crash backtrace is located in
clang++: note: diagnostic msg: /Users/diego/Library/Logs/DiagnosticReports/clang_<YYYY-MM-DD-HHMMSS>_<hostname>.crash
clang++: note: diagnostic msg: (choose the .crash file that corresponds to your crash)
clang++: note: diagnostic msg:
********************
```
# Additional Details
- **Clang version**: 19.1.7
- **Target**: arm64-apple-darwin23.5.0
- **Compile flags**: `-v -std=c++20 -Wall -O0 -g`
# Attachments
Preprocessed source file, run script, crash back-trace, as requested.
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJzsfMty2ziz8NMwGxRUJCiJ0sILWrIS15_8ybH9zWRWLhBoShiDAAOAjjyL79lPAaQsUpaT2NGZmUVSrorUABp9RzcuotaKtQI4iybn0WT5hjZuo80ZF7DWCja0eFNo_nAWkRRdN1VFzUMU5wtJ1RoxQ-0GLPq6AYWYrmohhVojimxFpUSLiJxH5BzVRq8NrZDbUIcYldIiihxUtaQOOLKOOsFQBW6jOSqNrhBFTCvrTMOcNiN0s4F2LvQgQHI_3MK6AuVHaoVK2kg3Qucg9VckLHIbQJVQoqISGaiN5g0LHZnmEJFF6MB0VVHFkRQKUGOB-wYP8I0FZXfOUAajKM79n-feQW2R0-iqQwltWzJC1_QewrhSS6m_eiH4qRC1KJrGdMTqOprGUZp32KZx--fhcc4ktRblKMrOozivm0IK1vZFCKE8IrOIzLtW1P0TyiGBonSJ4igNDaXWEZmJiMw7AEIoypbtjP7LTuIoShfuoQZFK0A3UXrRtXd6oI3THbIb5HozG3CNUcg9QZ8tW1AU556sigoVkdm9FnxId46o_7Lr7kEdzo6HDt9OOi1KMkKLYFqAvgq3Qa3p-QnAWK_UZD5KRpmfqrFe8od6CGruZN9DzTyezkLxPcLW8ShdshZCYoR_9zaMP8YIrxHWiKJWj08ITEfoY2HBdCbw1DKDVbXuAaY15J5ZXWxrYN4PzmFD74U2bVOweW9DdqMbyVFJhfTG1-FBBTDa2HZKDt4a-aOGHmpAjCqlHSpa20YFlNoAEs77B4dSKOA9InLmGioPSGgl7Se2reiPuV1gzsCXBqyzrYtTVDRr73jaBAJKIYGP0IHt_5QKwkh0YAFxfkPNGlyU5oiaajrGtK4lYE7NV6FIOpqM4iBZA5SjSnOQvmutrdhGcX6prKNSAl8K4-ERWenaRWQlNaPS_y8K2ALzn-R9hZN5RFaFUN6UI0J-uDtZdXwThBlLEHZG1BIGJFeUabtNxqN45MXQKA4lrg2UYhuly5v86u3Fze3H61uEfwdjtInSZb8Pwr9zqA0wH2CxLv5kWFiKG0vX0BvyjT5QCeeBCPOmqrkwiGKEubC0kIBLA4Awk0ANptbh1rqwj5qg-L5fYPwejCgFmABm1HB8T2UD2Mcfi7APF9ibSAC0Gka4MuDl6O0MB02hWjCEa8GwhHuQiCBclYZWgGstlAPPj9IKS6AlwmVZY6aVD-EuSpdaIVwqjY1uFBdqjSvqNgiXjfoqFMfOE2ujdOmVEUwIW36HO_Py8MmIIFx636NOFEIK94C_NFR6xjgWHBdSszvsPQ-zDbA7H3pweS_srrdQfqGxeCM4B4XbYIuDreB7ahAuW6_cEaCtNwKj7SNJrG5QZx17OkugrjGAInL-F6uOg_86Br6fjcb0WAMFexQsnfqL3R9rYozXR-G6quVWNUfJYoYdA3Pt_OJ6rKmsMTXV_ex4WzItK3m8yXkDOdrUSOlHHmv70zKtjrIrLRwDK_BW9hRe-4TqaAOYsnpmjAFujuvB0ONgVh-Vp-FHpW-Lo9ANJc_A06PwGpgB64xgR-VrbbEnlhYCtZG4ZhZhDkWzxkKVGt8Jvz4vraOKU6kVIMy_UlP2HHDcDViDwa5RQq2jdCklL4LfeEztutgGDO4D-DIiq_9YMDYiq5DM-sBLjQMrIrKCqpHUabOLxrjNL3fESqHuwODHBSaepKOEhEWqZPoeDF3DqaY0YHVjGHgcP7boSFHsV5FVMkdY2AdrtHZ-fF7XUrSh0xPy2WcRI1rXEVkttHKgnAcvfRTVNXhyPknqSm0qD_9A2cfrz6O6Ax30vF7-v14ny-8QvozIqrGmR7JQTDYcEA5xWVEZyHNQ_fiSSlaj0R6TZ7ZNCiKyuk-OI_5b2T41z4caPYoRtv4D--eZfiTt42OO9iR1K3vJRVjIEC5D3oGlqIRD3mqto-wO10Y78IUeShAuw0JqfWflmQlMKw67FdbXqm188UnIWlgHBq-lLqjE3Gljsc9UMXWwFQ7hcq0a1o8jIzJK2lxAVF50wvn0opE-2Jb2TtRYc9Mu4VgovK58MsG2WwxbBnWQs6et_6Wi23bhp1KsQ7YwDVFCaoO5oGulrRM-5C1vb98uFrfv8t8ubpe_51crcrtYXd7m1x_a1EN7jd5TL-FSS97GEZZEZDVf8-rWfd1m5AuJvzwkXx7Sgn25N3Ecx2vvLTcRWVHM5uUUkpFGeIs6VRxkzCHhHKbNqKC-QGhqrdD797992IE5tPl9GxG_lVCLtdLGJzxKK9h6lSiHuDBBqQ9dbvyvcE9Pyr-U3veiMNQ8RGS18lntV23ubEtuRNKdw0WEjHxgJMgCNWzja3bjLNqAga7C7XVOF75zevFsZ_SsnOIXlD_fjNU_jOn5CNih-EdD3T9Ew3UI9M9YB4rIrNx929tvROZRnF8ojnS507wU1vlqvw0GaT6J0nzua9yuEsx32wW73QW3ERbJtlBDsK0N2BAyHsB1OzcTFGWL3W7U0c0nFHpEk4v__jeK80_vL_LrC2Sbwkf_wRaB02jjXG29UZJVRFZr4TZNMWK66kxkZym10X8C86YkrG3AyyvsP-xM3j1uFD5u4EVkgeqwCcjA-kDXJlu7zT5qrWYi7EOaRiHLjKiDqK792oR88dv6SjyK4vmnbieTmnVTBW2_ZJ-gM-9fVf-vqv9X1f-r6v9V9f-q-n9V_b-q_l9V_6-q__-q6k981hqlC9ClLwRraiwYRB2Ctj7wGVg4Y_XJLZiQkbW7AJdXaA0KTLCycMoZxfNd_ZB2NQR623XZHXiX2iAOTNJ2HIpIlvv8Oc3ziGRRnI8P0YQy5OmMnjgfaX3qFk6mwefbKJyFZ90pMsnaWgdFJI1RvI3bf0mSTDnhyRiF0iHMbh9s--GTEcqF3P6mrQ5m-06Gfr3V1hmgVUSmvkIQqj0A97P-sD9LUXh-RvwhfD-Pt8kYeDLeE5scEBuXZHaM2KtGXXvLl--o4jJYxuw09LAyYOroIQf0pCmP0WBmX9ydShZlyuP93Glv7vmMQTGZjbtJulgbENldJSxF0X6-3QWwPvJZPM6yyawn63EPfzwtCIsJQ9QYqtawMgCrRoW7Ie_FHSyolBGZtQE5aGChObwFNfhy81D7yjMYyHe6fghB5nt9qZS5Wb8X1rXXXp723xF5E0722z6579OocHmHt5a6QIXW8lVa6nKTuu5Lc5KMY8L2spwMZVmSJJ59TwQ70lvgRSXcUyn_T0OlZ-2bUnrrxwE8JyLferGtzUA8zyG7ChclfvMF6bXUQXJ79wvggOBkcuQ0iXv-Nj2QY5LG49fJ0XN8YLE_JYfTcTxP454XZgOOWTrmwPxUVGn1UOnGorAvUIeQPG-Ju2ZUUuN58dyGWj-oR9gX8H4qhqYJ49BzhdmQITKeZq9Q4Z7FISNPFHhav57GbJr1tDMf2iOfTjh7OTO5evgBTp5Dm6_XA388cSQrYMI79fkFOD7keExewfHlWmkD_Ltcn5CLMelxkQy44ElKs_gVRugqNyTfQwZK2wfH3Bj6cAVllC56A3LnevymFyc01bKgWbxnmRywPKbj17DsywD4lzPO6LjHeHqo6_n8FRb7L2e5mM975n2Quo1nBF6zTO5vEp9r_vCN_G43tkvGQo5xMtdNYwLjPW_DVIpn2Xz-QjvuSi9YhDvNfabehsJ4CUwO9fk4_tuRePF21_FSlbqXb51KFtmknM97pn2QDpEszb5r2l1mHUC-8lyDWnz-fN0p-nl5nEyfcZlmPVsdJjiQFKyMv5fgXDqqRFMtPn_Ozy9bEHiD_Tv5mMUpK3u6GOY1fJ7Mixfpwnvcjs5SKNHa249YZws_ffLtXavoaWqY7PDZhH8_kB5yuIQSjAH-2nr8OKFTznvhj8RPCC2-G_7-NkKLfSwjB2nILM3gRRK9AgnUwolpLDLoCXOYN0CaxXT2Pf_sSPVRVpvLqpYtuN0SuTFU2fYY4D9KHCyq-fVN2IjdnjZwzpIyprM9Uwc5wXQ-G-Z_5-3JrF8Bm2pXP_1z5GeTZNbL5chgfZ9kMKHpgPxP1FjIr28OEhaoaFf-tzXCqWsFxmnao3KwUmezMYyHmx4rE7bced7PO7bAGndSiyYknY7jnvIHq2aW8TThB5sx7YOT8KxBMRhQ1hE7EOwBIyfUPEmKIuE92rOhTBnPhqtMR-WehfvuVsBh9nbA4gnXDUKKSdZbN8hgZYxpyedsjBhLbrv3Tsfz5g09SJYXaAgjC9S-lHoR6YN3JN5oPVnzOetF5fkBvUWczNBOsIvkJvhMj-rrikr5WziSaWPdEeKnwyXb4-gCxavSxKNcZHGyt5TBvr7ngo7HnaXs5N7tfHpigxDzv4HG6Xi8t4zBdn4cF_F0nMXhFdxPTZKQcS9YDvbo57N5SmI4eEI1uM_VKFpIQE4jaFXeewiHrp-84vLQJPkGvvbmUtmFiMfHkyUVEjjiTZgqHNNJz3VjAeH7AANAoue_83_f660DnpV2Plii_Skequx6d73yJ_7C-7fuHlx-c5Mv3qGbdxdo9fH9-4-_X_7_t2h1-f7iGt18DODz_7xFVxefPl7dtFN_OnaJbWa9LT97ke2xgwEULlYBR9S1-H6U6589nswYnU4Gt5D_vknt5iVzLoY3B5Gwj0J7kZ2gIxdC9hc43-t1OJ1_HHUVbkHaXQC4jdLFH3_88Qf-8AEvl_jduw8frq-j9MLDN9o6n6dG6cUo3CN5GVUzttG6ezPajg8HwN3DbG0M2ForHh45P-ime6va89kfdJKf95P-C1uSopzzUElSiZbgqJC2nQajdsiiH1A6LD6i7SLLrl8XYR47fCPOPKLubsSWknq97UZG0_h7L1YfHwgHDpyjbNPeGY2fcef2NJ4sBg686F1oxY83WqndvbkFPnrDz1I-T-f0DZwl2TiNZ2k2mb3ZnBWzaTKdZRzoeEyLCS2KZAp8ArOSZwmdlG_EGYnJJE5JlqSTyWQ2SngSz5JxGvPJlJMEonEMFRVy5GPmSJv1m3Dx9ixJUzIhbyQtQNrwywGE7F61RpPlG3MWgmzRrG00jqWwzu5ROOEknLU66x4btDy2vyNA5e5XBNoH6Y_v1rtfCBDKCg7D3whAGOM3jZFnr79I3LF0f0b-NwAA__9dELuF">