<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/77535>77535</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            Clang trunk crashes with OpenMP reduction pragma
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            clang
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          rkchang
      </td>
    </tr>
</table>

<pre>
    I simplified the arguments a bit and ran it through godbolt: https://godbolt.org/z/W6Y587bKK

Here's the original:
Preprocessed source
```
# 1 "<built-in>"
# 1 "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c"
int
foo ()
{
  int r = 0;
  #pragma omp scope reduction(+:r)      /* { dg-error "reduction variable 'r' is private in outer context" } */
  r++;
  return r;
}
```

Run script
```
# Crash reproducer for clang version 18.0.0git (git@github.com:llvm/llvm-project.git 25e0dc92a1df906d6e42c66a32f1fa764f1acabd)
# Driver args: "-c" "-fopenmp" "-fcrash-diagnostics-dir=trigger/diagnostics" "-fsanitize=undefined,address" "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c" "-o" "/tmp/exe_tid7.o"
# Original command:  "/home/rkchang/dev/omp/compilers/llvm_install/bin/clang-18" "-cc1" "-triple" "x86_64-unknown-linux-gnu" "-emit-obj" "-mrelax-all" "-disable-free" "-clear-ast-before-backend" "-main-file-name" "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c" "-mrelocation-model" "pic" "-pic-level" "2" "-pic-is-pie" "-mframe-pointer=all" "-fmath-errno" "-ffp-contract=on" "-fno-rounding-math" "-mconstructor-aliases" "-funwind-tables=2" "-target-cpu" "x86-64" "-tune-cpu" "generic" "-debugger-tuning=gdb" "-fdebug-compilation-dir=/home/rkchang/dev/omp/trigger/clang" "-mllvm" "-crash-diagnostics-dir=trigger/diagnostics" "-fcoverage-compilation-dir=/home/rkchang/dev/omp/trigger/clang" "-resource-dir" "/home/rkchang/dev/omp/compilers/llvm_install/lib/clang/18" "-internal-isystem" "/home/rkchang/dev/omp/compilers/llvm_install/lib/clang/18/include" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/usr/lib/gcc/x86_64-linux-gnu/12/../../../../x86_64-linux-gnu/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-ferror-limit" "19" "-fopenmp" "-fsanitize=address,alignment,array-bounds,bool,builtin,enum,float-cast-overflow,function,integer-divide-by-zero,nonnull-attribute,null,pointer-overflow,return,returns-nonnull-attribute,shift-base,shift-exponent,signed-integer-overflow,unreachable,vla-bound,vptr" "-fsanitize-recover=alignment,array-bounds,bool,builtin,enum,float-cast-overflow,function,integer-divide-by-zero,nonnull-attribute,null,pointer-overflow,returns-nonnull-attribute,shift-base,shift-exponent,signed-integer-overflow,vla-bound,vptr" "-fno-sanitize-memory-param-retval" "-fsanitize-address-use-after-scope" "-fsanitize-address-globals-dead-stripping" "-fno-assume-sane-operator-new" "-fgnuc-version=4.2.1" "-fcolor-diagnostics" "-faddrsig" "-D__GCC_HAVE_DWARF2_CFI_ASM=1" "-o" "/tmp/exe_tid7.o" "-x" "c" "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c"
 "/home/rkchang/dev/omp/compilers/llvm_install/bin/clang-18" "-cc1" "-triple" "x86_64-unknown-linux-gnu" "-emit-obj" "-mrelax-all" "-disable-free" "-clear-ast-before-backend" "-main-file-name" "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c" "-mrelocation-model" "pic" "-pic-level" "2" "-pic-is-pie" "-mframe-pointer=all" "-fmath-errno" "-ffp-contract=on" "-fno-rounding-math" "-mconstructor-aliases" "-funwind-tables=2" "-target-cpu" "x86-64" "-tune-cpu" "generic" "-debugger-tuning=gdb" "-fdebug-compilation-dir=/home/rkchang/dev/omp/trigger/clang" "-mllvm" "-crash-diagnostics-dir=trigger/diagnostics" "-fcoverage-compilation-dir=/home/rkchang/dev/omp/trigger/clang" "-ferror-limit" "19" "-fopenmp" "-fsanitize=address,alignment,array-bounds,bool,builtin,enum,float-cast-overflow,function,integer-divide-by-zero,nonnull-attribute,null,pointer-overflow,return,returns-nonnull-attribute,shift-base,shift-exponent,signed-integer-overflow,unreachable,vla-bound,vptr" "-fsanitize-recover=alignment,array-bounds,bool,builtin,enum,float-cast-overflow,function,integer-divide-by-zero,nonnull-attribute,null,pointer-overflow,returns-nonnull-attribute,shift-base,shift-exponent,signed-integer-overflow,vla-bound,vptr" "-fno-sanitize-memory-param-retval" "-fsanitize-address-use-after-scope" "-fsanitize-address-globals-dead-stripping" "-fno-assume-sane-operator-new" "-fgnuc-version=4.2.1" "-fcolor-diagnostics" "-faddrsig" "-D__GCC_HAVE_DWARF2_CFI_ASM=1" "-x" "c" "ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440-3e7b76.c"
```

```
❯ ~/dev/omp/compilers/llvm_install/bin/clang -c -fopenmp -fcrash-diagnostics-dir='trigger/diagnostics' -fsanitize=undefined,address ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c -o /tmp/exe_tid7.o

scope not supported with FE outlining
UNREACHABLE executed at /home/rkchang/dev/omp/compilers/llvm-project/clang/lib/CodeGen/CGStmt.cpp:413!
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: /home/rkchang/dev/omp/compilers/llvm_install/bin/clang -c -fopenmp -fcrash-diagnostics-dir=trigger/diagnostics -fsanitize=undefined,address ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c -o /tmp/exe_tid7.o
1.      <eof> parser at end of file
2.      Per-file LLVM IR generation
3.      ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440.c:5:1: Generating code for declaration 'foo'
 #0 0x0000563ab1ecab50 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x418db50)
 #1 0x0000563ab1ec7f5f llvm::sys::RunSignalHandlers() (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x418af5f)
 #2 0x0000563ab1e0c178 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
 #3 0x00007f0daa242520 (/lib/x86_64-linux-gnu/libc.so.6+0x42520)
 #4 0x00007f0daa2969fc __pthread_kill_implementation ./nptl/pthread_kill.c:44:76
 #5 0x00007f0daa2969fc __pthread_kill_internal ./nptl/pthread_kill.c:78:10
 #6 0x00007f0daa2969fc pthread_kill ./nptl/pthread_kill.c:89:10
 #7 0x00007f0daa242476 gsignal ./signal/../sysdeps/posix/raise.c:27:6
 #8 0x00007f0daa2287f3 abort ./stdlib/abort.c:81:7
 #9 0x0000563ab1e167be (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x40d97be)
#10 0x0000563ab22510e9 clang::CodeGen::CodeGenFunction::EmitStmt(clang::Stmt const*, llvm::ArrayRef<clang::Attr const*>) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x45140e9)
#11 0x0000563ab2257054 clang::CodeGen::CodeGenFunction::EmitCompoundStmtWithoutScope(clang::CompoundStmt const&, bool, clang::CodeGen::AggValueSlot) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x451a054)
#12 0x0000563ab2224ff5 clang::CodeGen::CodeGenFunction::EmitFunctionBody(clang::Stmt const*) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x44e7ff5)
#13 0x0000563ab2238c54 clang::CodeGen::CodeGenFunction::GenerateCode(clang::GlobalDecl, llvm::Function*, clang::CodeGen::CGFunctionInfo const&) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x44fbc54)
#14 0x0000563ab21deb79 clang::CodeGen::CodeGenModule::EmitGlobalFunctionDefinition(clang::GlobalDecl, llvm::GlobalValue*) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x44a1b79)
#15 0x0000563ab21d8b75 clang::CodeGen::CodeGenModule::EmitGlobalDefinition(clang::GlobalDecl, llvm::GlobalValue*) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x449bb75)
#16 0x0000563ab21e400b clang::CodeGen::CodeGenModule::EmitDeferred() (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x44a700b)
#17 0x0000563ab21e6844 clang::CodeGen::CodeGenModule::Release() (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x44a9844)
#18 0x0000563ab284e0d2 (anonymous namespace)::CodeGeneratorImpl::HandleTranslationUnit(clang::ASTContext&) ModuleBuilder.cpp:0:0
#19 0x0000563ab284ca33 clang::BackendConsumer::HandleTranslationUnit(clang::ASTContext&) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4b0fa33)
#20 0x0000563ab4704409 clang::ParseAST(clang::Sema&, bool, bool) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x69c7409)
#21 0x0000563ab2c2fe39 clang::FrontendAction::Execute() (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4ef2e39)
#22 0x0000563ab2ba75d5 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4e6a5d5)
#23 0x0000563ab2d0ab95 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4fcdb95)
#24 0x0000563ab091fff9 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x2be2ff9)
#25 0x0000563ab0917863 ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#26 0x0000563ab29e871d 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
#27 0x0000563ab1e0c640 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x40cf640)
#28 0x0000563ab29e8f9e 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
#29 0x0000563ab29aa05a clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4c6d05a)
#30 0x0000563ab29aab2d clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4c6db2d)
#31 0x0000563ab29b6624 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x4c79624)
#32 0x0000563ab091cda0 clang_main(int, char**, llvm::ToolContext const&) (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x2bdfda0)
#33 0x0000563ab092d343 main (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x2bf0343)
#34 0x00007f0daa229d90 __libc_start_call_main ./csu/../sysdeps/nptl/libc_start_call_main.h:58:16
#35 0x00007f0daa229e40 call_init ./csu/../csu/libc-start.c:128:20
#36 0x00007f0daa229e40 __libc_start_main ./csu/../csu/libc-start.c:379:5
#37 0x0000563ab09164a5 _start (/home/rkchang/dev/omp/compilers/llvm_install/bin/clang+0x2bd94a5)
clang: error: clang frontend command failed with exit code 134 (use -v to see invocation)
clang version 18.0.0git (git@github.com:llvm/llvm-project.git 25e0dc92a1df906d6e42c66a32f1fa764f1acabd)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/rkchang/dev/omp/compilers/llvm_install/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: trigger/diagnostics/ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440-4ea7e8.c
clang: note: diagnostic msg: trigger/diagnostics/ret134_8bb3be45-13a1-47e9-a46d-089a2e34d440-4ea7e8.sh
clang: note: diagnostic msg: 

********************
```

</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsO01v27i2v4bZEDIkSpasRRaOHbed27ktkswM3sqgyCObtxIpkFSazOL99gdSsiy5Ttt0knkD3BZpIpOH54vnS4c0NUbsJMAlml-h-fqCtnav9KX-xPZU7i4KxR8v32Ej6qYSpQCO7R4w1bu2BmkNprgQFlPJsaYSC4vtXqt2t8c7xQtVWRQv8d7axqB4icgGkU0_MVN6h8jmT0Q2f6T_M19kxb_-hcI1Cpfd77egAZHMeHpKi52QtHJI_OxHDY1WDIwBjo1qNYN-cRr2P91HEuMII0JQvCpaUdlASBRfu4HpvAYbxcl2URRxAck8iGIaBUkGeUCTlAfhIqcE4oQnSThjw3IhbfdQKoURWSCS93izq-4BYyEt1hjFaxyieBhFJG403dUUq7rBhqkGsAbeMiuU9JiuULzUiOTY__O6W2KUXWG-C0BrpTu2-yX4nmpBiwowIplGJMPC4EaLe2oBC4lVa0FjpqSFB4sIwShbY0T8nvQsaUfTkR2Y1GBbLbEehlC2Pq9m__umldgwLRr75F6sNDV77DePtww0LpXGrKJyh-9BGydItJiFs3AnrFPoTliUuA_7tpgxVaN4WVX3NSIb9ydotPoPMDtz0GQOIWc5oREv8zDlKSSEpSmNSRmVNEuTMqKMFvy4RyTGay3uQTt7dgbqNBowrx1CglI1IOtm-Mgc7wEXdCeVsYKZgAuN4rXVYrcDjchmNDesMlQKK_4EFK9byaEUEjgiK8q5BnMAe671edSqf0BkYx2bG3iArRU8m6mJfX_onQczVddUcidov26vakBk0zu7kwDuEdkoj46puhEVaNNreyuksbSqENkUQjoAt29BtDgwxFh0eLRaNBX0nx4W6TZNglZ-kuqzDCoh24dgJ9sDMNTCBqr4z-FzraGiD4En1Y1wYZxtB6UGGKhVQHVAjQ0KKJWGoKDsE0g-YKFCBqWoIJC0hr-iaMePYtS5WVArDge2GjGANIIFFdwPU2Q8IUzQiIHvutS0hqBRQlpw9jOSs6yp3TvvlmoYKpvAua2mzKJ47YJDPyFVoFUruZC7wK0bCDAljdUts0oHtBLUwNEcW_lZSB5Yp06D4vXAqKV6BzZgTXvctSBNhulWwmhyBxL0UXwORet8wIEJuUPxeseLgaafDTpz6rTYOc63DPDoWN7SBvm6CNBbwQ85JVP3oOkOXo4pDV0W8lgGv_xR_6pEcSSwOXqYNxlJq0CYR2Ohfg1KGyFZ1XL4Ns3WODU416h-YJknvGMMkU0fIEaBYRM5yNnsy19nYJ-iDA_ugT3FwbDsDM7vxfRXSff26PN5UIla2H4syp9KQ6OEMiSRFa3ETrqKzD1rTR-DwoUGN1UoVbk_rvpxYXsFsq0RWZWVojZgLoA6bygr9dmNtrIvQVZOGOfTXNwLDkHxGPwJWiGykkrKtqoCaq0WRWvBjbXOnFZ9VBtj7IqI4cEE55abvShtUFBz_AAPjZKdRL5C5cGBoRHyVmqgbO-iGSKr-4p2crvnxuovdBZo8K7vo-4_XGMvq6gnVSNVMGinhlrpx6ChmtaBBntPqy9V2Btd0BoIaOlY99Xr04C7ShW0MgEHygPjKoNGHAOnY4Aa09bg-IBANaCpy1wSPg8wO9myoC8QUbxOZmQWjYJ5pXRwLsw7DowYSK232zer1fbt8vfr7fqP5c2GbFebd9vl7a8oXkffV1Z5kIf-gf1gVdHX1z9rsJ812M8a7OWY-plGf6bRn2n0H5JG_0KODGLIiiwdpcqz7abTwWuC8jVabvD__lASxQHDhyiBn-72IJI9Edcy_K1uD35W6sOBwueKkJEKur6hVBabtmmUtsDxZ2H3eHONVWsr4TOBB_3t3zfXy9Xb5dX7awwPwFoHSy1-bgVy6LmN3hq7V7mV4vAGnDpXb25tbWesaVC8TKIYkajv2r6_Xt5eY9MWtbCY4qLdYQ2Ob2zVaZv42PPrCH9JXxjTurS68f3n_p3K94v95mFXjLic7XwcN2c6xmTlV1JjFBPUKUQPLcxZx_KtpewT5m3dDL3ncNa1ZD9qtdO0PjbDuw7iSxR032mLZw3x77TCqFcFilegShRf44ZqA9oZFkiOVYld9dcBk4PeQPuaEL9___uv-N0N9oWMz_8dYNwDPq9QjJdzFC8jtwlveoRyh5ni4JvMHFhFOyoYkaxUCpFsKMTjEIcPYRiG8zSmRQSMFvMQe7OLlyhemkfTPXzUQlpvFHedZS2OQJp-3ipjNdAakdRZl3DpJO9OBl7CLhC5Ch-SaMGLeTj0sR370Qn7WTkvz7F_08pbsZO0eksl78gtXoVDWs7LCYdkymHIomzRHQfcdMXE44QxRBa98iYwq-4Ao48tof8_kIh7ElkZckpJQuYk7CXrQtSZ3lElCjYzapZ2jLslE7aTKc48zUuGt9vG7jVQvv0kqmor6qYCFwE665ohspGNdYoZg3kTTRIUL7P0iH_-Pfj7rtJXMWcLZ_0jbaTnMI-XfRXdIj9Bl50qN8lSvDN-zzym7vHQpjOPhkPjbKVRRjw4q6LCgMdNMhQvRzpYTFGTRVbGmBYuLXhUlnfb54c67pybj7w3nxpXlGYFvLRNhzzPChifHkWToEHIPAoh706zOm87pMTxh82hzvWD17WwLlkishitcyPYv0H6E7rVyJOXrsa-gRLFq9GCpbX6uCC-fgWXnkdJCPlE_OhE_CycJ88Xf6XqxlXUTug_hN2r1t52lfBigusIdZDUh9j-LeNJusvd7ndatXBbqdeIxfOIhvNkohYyVQtJynL-fLUcRq4Uf_yqdby4SAlkZTmfiBRPRYoX7Lk73adkcJNTcd7495o1sGpq6cP6zgWepPbmAPhOlmpkGi-vl7JgJ1udTPQScSiybwaAXxVvKzhudCf_QYi1q9ZEfwngO7TUjXsLfyVroFGRTf1-fiL1osi-aeDnpf7nSZsXRTa1_XQqLSRhWDxX2jWUoLUrwl-j2kpoFobFhOnshOl0kXzTYcdM30AFvjnyOvzmi2TqSIsJv4sEQk4cWSqVfKxVa7CkNZjGl9z5hO2uz_GubqpuuCsg7zSVpmsq_ibFSX5d3t6tDjdhfKToRL9qRcVBf1lcOg7zEw4ZjeOxRq-6zvdKSdPWoH-clxdWdhGWNI7HyiaTsiXJwiQJJ1Hro3uHW97enaQdqOlJzu3-vjTLac6yJJyEHDItNRgpIZ6wvNFOh5Ivx1m063K8jg1DSSCe8jjN-wXN5vwkLHbo3zmsksGEyyX7MgqeCPUq5gEpnfNJwCPTZM9DWuQTOXqOj-Lc9wczX1ZsE3FfJWCXjBf5lP9JUg7zqCzLHDMWbWvqVi_OF9N7elJBr_B0jKzwvRL8VcQgBZCynJrT_ESMbJHG-KD7VXTnfW8kzG1Nq-p3YEMwPCNTOk2nDkcffCaFE_e34s7GQTJNhzkssoh7xYzwHnr5W-1162f725HxdQfCaFUVlH3alnL6KtPR7k1oFa2GO2sTjz67h8b2cKpx1KnTwUg_Vgu585DX_QYPC7Zb9vAQRd2HghrBtsaD91qcALuBrdVUWHOYPkFHK39WqfRo3oEsj0HTG1Gnc78EkayidcEpItlRVWRRKWciOf5FFef3Izvtq6TJuHF1rntybAXREqrHiTq_vnUv778hK9MknBj-4tTCyhzwf7OFOJ3PGqrtLPyqKUxLlJzScE6fVNzx0PU0qnttTkL5yUIHMHkH_z7Q5aR6GMn2kvbEUh7O6diepq1dp5aC8Oeq5RdVmKd18osq3gsz7Ut8LTAPZtBQ4SzAdzq_X429rfwtyizI5ML0tNFM8iJNSfIU4-vR86RoOFMtPLUJf6MyXzy2sSxPyeQ9Z9oFD_OIcRp2rB6qkwP7PqYsv-j_PZWyX7oe4SWnk7Acx1PWCY-TGDumX5x2GcbJ5I3ltAtPcp6HeLutROHCMNV26-oJr0LfMmam_bIR3be6zy2a7VG8nPsOenqkOj-lCkmI_RohhT0l1D067IHH7hvVEXFIyTFIn7blO6QTUc5JcRZ5nOX-1GvAnZ1YV5rQOe6wvryB5Ak91t0Hb8P-Co576M4xy_4V5vDdA1xSUR0OqeFB2O6ALooTx2BrAAf32CpsALAYvViMyfz93xS58_eynFRPXqPr4PwhCu7up8VL3B19-Kl3nSqBr4V-gXPiqdKlsu5tEh9PgXFt_MzBNv7Cz-i6QX9-v7y7W67e4ru313jz4f37D3-8-_cbvHn3_voW333ww1e_vcE31x8_3Nx99RtbZGFc7HryDH4A0IB9veSvLAwov0P-J65qbJ5zGyUBmsFixv4_iJr9c7f6pTZ8ernmgl_GPI9zegGXURYmizhfzOcX-8scSp5FKU2BAplHC1qyLI9YMmdhEcWQX4hLEpIkjMKckDiL5zNKozxLchJFYUrIIkFJCDUV1cyZ-Uzp3YW_13GZZfN4flHRAirjv5xIyOG2H5qvL_Sl9-ui3RmUhJUw1hwxWGEruFz5aGF1Kz91N0LAdIHnQwPy14_H79vh7qt4F62uLn_8Fopn-P8CAAD__wwmuj8">