Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920<html>
 <body>
  <amp-script>
  </amp-script>
  <img alt="" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fclick.connect.etoro.com%252Fopen.aspx%253Fffcb10-fec51c707d660c7d-fe531376726206787210-fe3a117075640474741773-ff9b1070-fe2816727763017b701777-ff3815707461%2526d%253D500014%2526bmt%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjbGljay5jb25uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE1ODg3NH0:1tzaNv:o6pDQ9JrPO6ZRiDQqDdCnw4XLr4R-b62jHF2LIH8RJo" width="1"/>
  <!DOCTYPE html>
  <title>
   Daily Bites
  </title>
  <!--[if !mso]><!-->
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!--<![endif]-->
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <style type="text/css">
   #outlook a{padding:0}body{margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}table,td{border-collapse:collapse;mso-table-lspace:0;mso-table-rspace:0}img{border:0;height:auto;line-height:100%;outline:0;text-decoration:none;-ms-interpolation-mode:bicubic}p{display:block;margin:13px 0}
  </style>
  <style type="text/css">
   @media only screen and (min-width:640px){.col-per-100{width:100%!important;max-width:100%}.col-per-70{width:70%!important;max-width:70%}.col-per-30{width:30%!important;max-width:30%;}.col-px-30{width:30px!important;max-width:30px}.col-per-75{width:75%!important;max-width:75%}.col-per-55{width:55%!important;max-width:55%}.col-per-28{width:28%!important;max-width:28%}.col-per-33{width:33%!important;max-width:33%}.col-per-22{width:22%!important;max-width:22%}.col-per-45{width:45%!important;max-width:45%}.col-per-49{width:49%!important;max-width:49%}.col-per-8{width:8%!important;max-width:8%}.col-px-344{width:344px!important;max-width:344px}.col-px-260{width:260px!important;max-width:260px}.col-per-20{width:20%!important;max-width:20%}}
  </style>
  <style type="text/css">
   @media only screen and (max-width:640px){.section-inner{padding-left:10px!important;padding-right:10px!important}.fwsection-inner{padding-left:5px!important;padding-right:5px!important}.nilfw-item__heading{padding-left:5px!important}.market-mover{padding:10px 8px!important}.market-mover.expanded{padding:20px!important}.mm__table-inner{width:100%!important}.market-mover__info,.market-mover__stats{padding-left:5px!important}.market-mover__perc,.market-mover__price{padding-left:2px!important}.analyst-col-inner,.itn-col-inner{padding:20px!important}.trust__logos-wrapper{padding:22px 0 0 0!important}.trust__logo-col-jsafra{width:40%!important}.social-footer__icons-group{width:260px!important}}
  </style>
  <div style="background-color:#F5F5F5">
   <div class="preheader" style="margin:0 auto;max-width:640px">
    <table align="center" border="0" cellpadding="0" cellspacing="0" style="width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:5px 0;text-align:center">
        <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;table-layout:fixed;">
         <table border="0" cellpadding="0" cellspacing="0" style="vertical-align:top;table-layout:fixed;" width="100%">
          <tbody>
           <tr>
            <td align="left" style="font-size:0px;padding:0;word-break:break-word">
             <table border="0" cellpadding="0" cellspacing="0" style="color:#000;font-size:0;line-height:0;table-layout:fixed;width:100%;border:0" width="100%">
              <tr>
               <td style="width:70%;min-width:250px;" width="250">
                <div style="font-family:Verdana,sans-serif;text-align:left;color:#4d4d64;font-size:10px;line-height:12px;direction:ltr">
                 No one really knows what’s happening, except maybe Trump?
                </div>
               </td>
               <td align="right" style="width:30%;" width="100">
                <a style="text-decoration:none;font-weight:normal;font-size:11px;line-height:12px;font-family:Arial,Verdana,sans-serif;color:#3d99da;border-bottom:0" target="_blank" title="View this email in your browser">
                 View Online
                </a>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <div style="margin:0 auto;max-width:640px">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
        <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size:0px;padding:0;word-break:break-word">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
              <tbody>
               <tr>
                <td style="width:640px">
                 <a target="_blank">
                  <img alt="Daily Bites" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FDailyHeaderDarkBlue.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE2NjI4Nn0:1tzaNv:Su7o8V7D8gWt-m58dCrUj_dyPmwxs31mzOFZ14dptdY" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="640"/>
                 </a>
                </td>
               </tr>
              </tbody>
             </table>
            </td>
           </tr>
           <tr>
            <td align="center" style="font-size:0;padding:5px 0 5px 0;word-break:break-word">
             <div style="font-family:Verdana,sans-serif;font-size:12px;line-height:19px;text-align:center;color:#4d4d64">
              April 01, 2025
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" role="presentation" style="min-width: 100%; " width="100%">
    <tr>
     <td class="stylingblock-content-wrapper camarker-inner">
      <table align="center" border="0" cellpadding="0" cellspacing="0" id="tblWrap" style="width:100%;min-width:100%;">
       <tr>
        <td>
         <!--Daily Start here-->
         <!--smartling.placeholder_format_custom=(\{\{.+?\}})|(\%\%.+?\%%) -->
         <!--newSTR-->
         <div style="background-color:#FFF;margin:0 auto;max-width:640px">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFF;width:100%">
           <tr>
            <td align="center" class="section-inner" style="direction:ltr;font-size:0;padding:0;padding-bottom:22px;padding-top:22px;text-align:center;padding-left:40px;padding-right:40px">
             <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
               <tr>
                <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word;padding-bottom:12px">
                 <div style="font-family:Verdana,sans-serif;text-align:left;color:#4d4d64;font-size:24px;line-height:32px;font-weight:bold">
                  Euro Inflation and US ISM Data Front and Centre
                 </div>
                </td>
               </tr>
               <tr>
                <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                 <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:left;color:#4d4d64">
                  <ul style="padding-left:20px;margin:0">
                   <li style="padding:3px 0">
                    <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                     <strong>
                      Euro
                     </strong>
                    </a>
                    Inflation and US ISM Data in Focus
                   </li>
                   <li style="padding:3px 0">
                    Trump's Tariffs Weigh on Automotive Stocks
                   </li>
                   <li style="padding:3px 0">
                    <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                     <strong>
                      Gold
                     </strong>
                    </a>
                    Hits Record High Amid Market Turmoil
                   </li>
                   <li style="padding:3px 0">
                    <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                     <strong>
                      CoreWeave
                     </strong>
                    </a>
                    Debuts Strong Amid AI Growth
                   </li>
                   <li style="padding:3px 0">
                    <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                     <strong>
                      Discover Financial
                     </strong>
                    </a>
                    Reassures Investors With Bold Deal
                   </li>
                  </ul>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <div style="margin:0 auto;max-width:640px;background-color:#FFF">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
           <tr>
            <td align="center" class="fwsection-inner" style="direction:ltr;font-size:0;text-align:center;padding-left:40px;padding-right:40px;padding-top:17px;padding-bottom:17px">
             <div style="margin:0 auto;max-width:640px;padding:0 0 15px 0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td class="nilfw-item__heading" style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0px;padding:0;word-break:break-word">
                     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="color:#000;font-size:0;line-height:0;table-layout:fixed;width:100%;border:0" width="100%">
                      <tr>
                       <td style="width:30px" width="30">
                        <img height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FVolumeBoosters.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE2NzkwOH0:1tzaNv:o4pgONVtELo2uWb4Rv-2wUEvWQirHGEkov5fM4IkkOo" style="border:0;display:block;outline:0;text-decoration:none;height:30px;width:100%;font-size:13px" width="30"/>
                       </td>
                       <td style="padding:0 6px">
                        <div style="font-family:Verdana,sans-serif;font-size:13px;font-weight:bold;line-height:18px;text-align:left;color:#4d4d64">
                         Market Movers
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover" style="max-width:640px;padding:10px 8px;border-radius:10px;margin:8px 0 0 0;background-color:#eaf8e9">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%;min-width:100%;">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;table-layout:auto;border:0;width:390px" width="390">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro">
                            <img alt="CORT" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F9590%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE2OTU2Mn0:1tzaNv:e1bY1IHwq0Qk4spxTksYS6lOnFTYdhZAIfJ_HfQ8i2Q" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px" translate="no"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="width:119px;padding-left:16px;padding:0 0 0 16px" valign="middle" width="119">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;border-bottom:0;font-weight:700;line-height:20px" target="_blank" title="View on eToro" translate="no">
                               CORT
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              Corcept Therapeutics
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="left" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#13c636" width="12">
                              ▲
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#13c636">
                              109.08%
                             </td>
                            </tr>
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#13c636" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              114.22
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" style="width:35px" valign="middle" width="35">
                           <a target="_blank" title="Add to Watchlist">
                            <img class="market-mover__cta" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FPlus_DarkBlue.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE3MDkyNn0:1tzaNv:Owmt9P2I0wYGYWNniQlCMvqx77LbxUj9oJiTe8m3yHk" style="width:100%;max-width:45px"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover" style="max-width:640px;padding:10px 8px;border-radius:10px;margin:8px 0 0 0;background-color:#FAE6E8">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%;min-width:100%;">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;table-layout:auto;border:0;width:390px" width="390">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro">
                            <img alt="VFS" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F1364%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE3MjExM30:1tzaNv:jQjuLlouujJrmnFK3MXhQ-NjGFwLoAUOT5UJm_uJcuk" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px" translate="no"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="width:119px;padding-left:16px;padding:0 0 0 16px" valign="middle" width="119">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;border-bottom:0;font-weight:700;line-height:20px" target="_blank" title="View on eToro" translate="no">
                               VFS
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              VinFast Auto Ltd
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="left" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -6.19%
                             </td>
                            </tr>
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              3.18
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" style="width:35px" valign="middle" width="35">
                           <a target="_blank" title="Add to Watchlist">
                            <img class="market-mover__cta" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FPlus_DarkBlue.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE3MzM5NH0:1tzaNv:tb-Khghq-z3aMrrOupNztIzaTYR3944KOra0NanQqrA" style="width:100%;max-width:45px"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover" style="max-width:640px;padding:10px 8px;border-radius:10px;margin:8px 0 0 0;background-color:#FAE6E8">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%;min-width:100%;">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;table-layout:auto;border:0;width:390px" width="390">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro">
                            <img alt="APP" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F6218%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE3NDUxfQ:1tzaNv:z_vSPfLmyuGMcKH25mG7hpux89SValQrh6wLcyEO7Q0" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px" translate="no"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="width:119px;padding-left:16px;padding:0 0 0 16px" valign="middle" width="119">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;border-bottom:0;font-weight:700;line-height:20px" target="_blank" title="View on eToro" translate="no">
                               APP
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              Applovin Corp
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="left" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -2.72%
                             </td>
                            </tr>
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              264.97
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" style="width:35px" valign="middle" width="35">
                           <a target="_blank" title="Add to Watchlist">
                            <img class="market-mover__cta" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FPlus_DarkBlue.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE3NjMxMn0:1tzaNv:qtn0DI-ZNT_d7dFym_3htFj_Gfhw0KZLWEANb3gKIfw" style="width:100%;max-width:45px"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover" style="max-width:640px;padding:10px 8px;border-radius:10px;margin:8px 0 0 0;background-color:#FAE6E8">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%;min-width:100%;">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;table-layout:auto;border:0;width:390px" width="390">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro">
                            <img alt="MRNA" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F6152%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE3Nzk3NH0:1tzaNv:L-tcuA3MRgfsjB9mp6AIIJLzT2lzzCK8gj4x--T66us" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px" translate="no"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="width:119px;padding-left:16px;padding:0 0 0 16px" valign="middle" width="119">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;border-bottom:0;font-weight:700;line-height:20px" target="_blank" title="View on eToro" translate="no">
                               MRNA
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              Moderna Inc
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="left" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -8.90%
                             </td>
                            </tr>
                            <tr>
                             <td style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              28.35
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" style="width:35px" valign="middle" width="35">
                           <a target="_blank" title="Add to Watchlist">
                            <img class="market-mover__cta" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FPlus_DarkBlue.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE3OTIxOH0:1tzaNv:ySuE1b_9MlIRnQwnneHx7DrqcXaR9TO8Sms0rQrlcuU" style="width:100%;max-width:45px"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div style="margin:0 auto;max-width:640px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:center;color:#4d4d64">
                      <a style="text-decoration:none;border-bottom:2px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank">
                       Discover all Market Movers
                      </a>
                     </div>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <!--conditionstart  -->
         <div class="notranslate" style="margin:0 auto;max-width:640px">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
           <tr>
            <td style="font-size:0px;padding:0;text-align:center">
             <div class="col-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
               <tr>
                <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                  <tr>
                   <td style="width:640px">
                    <a target="_blank">
                     <img alt="EN-EN_010425" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FEN-EN_010425.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE4MDczMn0:1tzaNv:w-8C1gWvKoBeDCNn6B9p9lLN3Sn9xfLNobY3BMlc92o" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="640"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <!--conditionend  -->
         <div style="margin:0 auto;max-width:640px;background-color:#FFF">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
           <tr>
            <td align="center" class="section-inner" style="font-size:0;padding:20px 0;text-align:center;padding-left:40px;padding-right:40px;padding-top:0">
             <div style="border-top:2px solid #f8f8f8;margin:0 auto;max-width:640px;padding:17px 0 0 0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0px;padding:0;word-break:break-word">
                     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="color:#000;font-size:13px;line-height:22px;table-layout:fixed;width:100%;border:0;direction:ltr" width="100%">
                      <tr>
                       <td style="width:30px" width="30">
                        <img height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FNewsHighlights.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE4MjAzNH0:1tzaNv:SXiHTpmQLDp-EzZiZONlRK6SoO_3DgItRJnGbsQkr4Y" style="border:0;display:block;outline:0;text-decoration:none;height:30px;width:100%;font-size:13px" width="30"/>
                       </td>
                       <td style="padding:0 6px">
                        <div style="font-family:Verdana,sans-serif;font-size:13px;font-weight:bold;line-height:18px;text-align:left;color:#4d4d64">
                         News Highlights
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div style="margin:0 auto;max-width:640px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" class="news-highlights__item__heading h2" style="font-size:0;padding:27px 0 0 0;word-break:break-word">
                     <div style="margin:0;font-family:Verdana,sans-serif;color:#4d4d64;font-size:22px;line-height:28px;font-weight:bold">
                      Trump’s “Liberation Day” Tariffs: What’s the Deal?
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64">
                      As “Liberation Day” on April 2nd approaches, traders are in the dark about what’s coming.
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        European stocks
                       </strong>
                      </a>
                      dipped 1.5%, while U.S. stocks have had their worst quarter since 2022, falling 4.6% in Q1. Investors are getting nervous ahead of Trump’s new tariffs. The White House promises an announcement, but specifics remain elusive, and no one really knows what’s happening.
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" class="news-highlights__item__heading h2" style="font-size:0;padding:27px 0 0 0;word-break:break-word">
                     <div style="margin:0;font-family:Verdana,sans-serif;color:#4d4d64;font-size:22px;line-height:28px;font-weight:bold">
                      Tesla and Automaker Stocks Fall
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64">
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        Tesla
                       </strong>
                      </a>
                      and
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        Toyota
                       </strong>
                      </a>
                      , meanwhile, saw declines as concerns over upcoming 25% auto import tariffs weighed on the sector. Despite this,
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        Ford
                       </strong>
                      </a>
                      managed to see gains. Toyota, with its significant U.S. exposure, is expected to suffer the most from President Trump's new 25% tariffs on foreign cars. Shares fell 9.4% following the announcement, highlighting the vulnerability of Japanese automakers reliant on the U.S market.
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64">
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        Stellantis
                       </strong>
                      </a>
                      , Nissan, and Hyundai also saw sharp declines in their stock prices, dropping 9.3% and 11.2%, respectively, amid concerns over the U.S. tariffs. These companies are heavily reliant on U.S. sales, making them especially vulnerable to the new import duties.
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64">
                      <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                       Lucid Motors
                      </a>
                      , meanwhile, is gaining traction among former Tesla buyers with its new Gravity SUV driving interest. The SUV is considered an alternative for Tesla fans seeking something different, and Lucid expects to produce 20,000 vehicles by year-end, positioning itself against rivals like Tesla’s Model X.
                     </div>
                    </td>
                   </tr>
                   <!--START:EXPLAINER -->
                   <tr>
                    <td align="left" style="font-size:0;padding:26px 0 0 0;word-break:break-word;direction:ltr">
                     <table border="0" cellpadding="0" cellspacing="0" style="color:#000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:0" width="100%">
                      <tr>
                      </tr>
                     </table>
                     <table style="width:100%;min-width:100%;background-color:#ECF8FE;border-radius:8px">
                      <tr>
                       <td style="padding:20px 20px 0 20px">
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;font-weight:bold">
                         <img src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FInfoblock.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE4MzE4fQ:1tzaNv:pl6sMS_JJutLLKW7ihTGCwTHdAdBwfrcPmS6SaeEfu4" style="width:18px;height:auto;vertical-align:middle;padding-right:8px" width="18"/>
                         Automakers in Focus
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          AutoNation
                         </a>
                         : -11% in the last month, -18% from February high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          CarMax
                         </a>
                         : -6% in the last month, -14.6% from Dec. 19 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Carvana
                         </a>
                         : -10% in the last month, -28% from Feb. 19 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Ferrari
                         </a>
                         : -8% in the last month, -16% from Feb. 25 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Ford
                         </a>
                         : +5% in the last month, but -32% from July high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          General Motors
                         </a>
                         : -4.3% in the last month, -23% from Nov. 25 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Honda (U.S.)
                         </a>
                         : -2.4% in the last month, -27% from April 2024 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <strong>
                          Hyundai (U.S.)
                         </strong>
                         : -2% in the last month, -27% from August high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Stellantis
                         </a>
                         : -12% in the last month, -60% from April 2024 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:14px 20px 0 20px;text-align:left">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Tesla
                         </a>
                         : -11.5% in the last month, -47% from Dec. 18 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64;padding:10px 20px 0 20px">
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Toyota
                         </a>
                         : -2.7% in the last month, -30% from April 2024 high.
                        </div>
                       </td>
                      </tr>
                      <tr>
                       <td>
                        <div style="font-size:0;line-height:0;padding:10px">
                         &amp;nbsp;
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <!--END:EXPLAINER -->
                   <tr>
                    <td align="left" class="news-highlights__item__heading h2" style="font-size:0;padding:27px 0 0 0;word-break:break-word">
                     <div style="margin:0;font-family:Verdana,sans-serif;color:#4d4d64;font-size:22px;line-height:28px;font-weight:bold">
                      Nvidia and Tech Stocks Dip
                     </div>
                    </td>
                   </tr>
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;color:#4d4d64">
                      <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                       <strong>
                        Nvidia
                       </strong>
                      </a>
                      and other semiconductor stocks are also dropping. The new tariffs, which apply to all countries, have created volatility in the tech sector, leading to broader market sell-offs.
                     </div>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <div style="margin:0 auto;max-width:640px;background-color:#FFF">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
           <tr>
            <td align="center" class="section-inner" style="direction:ltr;font-size:0;padding:20px 0;text-align:center;padding-left:40px;padding-right:40px;padding-top:0">
             <div style="border-top:2px solid #f8f8f8;margin:0 auto;max-width:640px;padding:17px 0 22px 0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0px;padding:0;word-break:break-word">
                     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="color:#000;font-size:13px;line-height:22px;table-layout:fixed;width:100%;border:0;direction:ltr" width="100%">
                      <tr>
                       <td style="width:30px" width="30">
                        <img height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FMoversAndShakers.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE4NDI5N30:1tzaNv:LItOaYoUdB_w5FPckXf57KgrHxS4tM3M-QdRvy792j8" style="border:0;display:block;outline:0;text-decoration:none;height:30px;width:100%;font-size:13px" width="30"/>
                       </td>
                       <td style="padding:0 6px">
                        <div style="font-family:Verdana,sans-serif;font-size:13px;font-weight:bold;line-height:18px;text-align:left;color:#4d4d64">
                         Movers &amp; Shakers
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover expanded" style="max-width:640px;border-radius:10px;margin:8px 0 0 0;background-color:#f8f8f8;padding:20px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;border:0;width:100%;min-width:100%;" width="100%">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" class="market-mover__icon-wrapper" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro" translate="no">
                            <img alt="CRWV" class="market-mover__icon" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F12167%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE4NTQzfQ:1tzaNv:xCGFMHRpNV03O8go08-vpQvEb5djlB0J1BKqsuC9v78" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="padding-left:16px;padding:0 0 0 16px;width:auto" valign="middle">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;border-bottom:2px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank" title="View on eToro" translate="no">
                               CRWV
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__name" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              CoreWeave Inc
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -7.30%
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              37.08
                             </td>
                            </tr>
                           </table>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td class="market-mover-expanded__text-wrapper" style="padding:10px 0 0 0">
                        <div class="market-mover-expanded__text" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px">
                         CoreWeave, an AI cloud provider backed by Nvidia, saw its stock drop nearly 10% in its second day of trading, well below its IPO price of $40. The debut raised $1.5 billion, marking the biggest tech IPO since 2021. Despite a strong growth in revenue last year (up 737%), the company reported a net loss of $863 million.
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover expanded" style="max-width:640px;border-radius:10px;margin:8px 0 0 0;background-color:#f8f8f8;padding:20px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;border:0;width:100%;min-width:100%;" width="100%">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" class="market-mover__icon-wrapper" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro" translate="no">
                            <img alt="MRNA" class="market-mover__icon" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F6152%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE4NjU2OX0:1tzaNv:mRwG9YP00qMAxNL0DJp4HhcOvqiziYd9E9f4FLcD7E4" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="padding-left:16px;padding:0 0 0 16px;width:auto" valign="middle">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;border-bottom:2px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank" title="View on eToro" translate="no">
                               MRNA
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__name" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              Moderna Inc
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -8.90%
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              28.35
                             </td>
                            </tr>
                           </table>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td class="market-mover-expanded__text-wrapper" style="padding:10px 0 0 0">
                        <div class="market-mover-expanded__text" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px">
                         Moderna and other vaccine stocks declined following the resignation of a key FDA vaccine regulator, who left in a dispute with Health and Human Services Secretary Robert F. Kennedy Jr. This uncertainty around the vaccine industry has caused investor jitters, pushing these stocks lower.
                         <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                          Check out our VaccineMed portfolio
                         </a>
                         .
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover expanded" style="max-width:640px;border-radius:10px;margin:8px 0 0 0;background-color:#f8f8f8;padding:20px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;border:0;width:100%;min-width:100%;" width="100%">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" class="market-mover__icon-wrapper" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro" translate="no">
                            <img alt="GOLD" class="market-mover__icon" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F18%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE4ODU5M30:1tzaNv:WZXZ_PuGraQTugT7bdmQZEkEWpzKTBLpTyNgLK0aJz4" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="padding-left:16px;padding:0 0 0 16px;width:auto" valign="middle">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;border-bottom:2px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank" title="View on eToro" translate="no">
                               GOLD
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__name" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              Gold (Non Expiry)
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#13c636" width="12">
                              ▲
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#13c636">
                              0.27%
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              3132.23
                             </td>
                            </tr>
                           </table>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td class="market-mover-expanded__text-wrapper" style="padding:10px 0 0 0">
                        <div class="market-mover-expanded__text" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px">
                         Gold prices surged to a new all-time high of $3,120, breaking through a key resistance level. They surged 20% in Q1 2025. Retail investors flocked to the precious metal amid economic uncertainty and tariff fears. Central banks and China’s insurance industry also fuelled demand. Bank of America predicts further gains, with a $3,500 target in two years.
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div class="market-mover expanded" style="max-width:640px;border-radius:10px;margin:8px 0 0 0;background-color:#f8f8f8;padding:20px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;min-width:100%;">
               <tr>
                <td style="font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;min-width:100%;" width="100%">
                   <tr>
                    <td align="center" style="font-size:0;word-break:break-word;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" class="mm__table-inner" style="color:#000;font-size:13px;line-height:22px;border:0;width:100%;min-width:100%;" width="100%">
                      <tr>
                       <td>
                        <table border="0" cellpadding="0" cellspacing="0" style="min-width:100%;" width="100%">
                         <tr>
                          <td align="left" class="market-mover__icon-wrapper" style="width:40px" valign="middle" width="40">
                           <a style="display:block" target="_blank" title="View on eToro" translate="no">
                            <img alt="SXRG.DE11" class="market-mover__icon" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-cdn.etorostatic.com%252Fmarket-avatars%252F2427%252F150x150.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1jZG4uZSIsInRpbWUiOjE3NDM1MDkxODcuMTE5MDI5NX0:1tzaNv:gfn1FS-uFVRegkEvPlfJZYZgEFCkFsUYtqrQKAB23iM" style="border:0;border-radius:5px;display:block;outline:0;text-decoration:none;width:100%;min-width:33px;max-width:40px"/>
                           </a>
                          </td>
                          <td align="left" class="market-mover__info" style="padding-left:16px;padding:0 0 0 16px;width:auto" valign="middle">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td>
                              <a style="text-decoration:none;border-bottom:2px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank" title="View on eToro" translate="no">
                               SXRG.DE
                              </a>
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__name" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px" translate="no">
                              iShares MSCI USA Small Cap ESG Enhanced UCITS ETF USD
                             </td>
                            </tr>
                           </table>
                          </td>
                          <td align="right" class="market-mover__stats" style="width:106px;padding-left:16px" valign="middle" width="106">
                           <table border="0" cellpadding="0" cellspacing="0">
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                              ▼
                             </td>
                             <td class="market-mover__perc" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;padding-left:6px;letter-spacing:-0.22px;color:#D0021B">
                              -0.62%
                             </td>
                            </tr>
                            <tr>
                             <td class="market-mover__sign" style="font-size:15px;font-family:Verdana,sans-serif;font-weight:bold;line-height:20px;width:12px;color:#D0021B" width="12">
                             </td>
                             <td class="market-mover__price" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:20px;padding-left:6px">
                              449.17
                             </td>
                            </tr>
                           </table>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td class="market-mover-expanded__text-wrapper" style="padding:10px 0 0 0">
                        <div class="market-mover-expanded__text" style="color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px">
                         Wells Fargo predicts the US dollar will rally due to Trump's trade war. Tariffs could weaken foreign currencies, pushing the dollar up by 1.5% to 11%. The Fed's monetary policy and minimal retaliation from other countries could fuel this rise, despite recent volatility.
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <div style="margin:0 auto;max-width:640px;background-color:#FFF">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
           <tr>
            <td align="center" class="section-inner" style="direction:ltr;font-size:0;padding:20px 0;text-align:center;padding-left:40px;padding-right:40px;padding-top:0">
             <div style="border-top:2px solid #f8f8f8;margin:0 auto;max-width:640px;padding:17px 0 10px 0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0px;padding:0;word-break:break-word">
                     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="color:#000;font-size:13px;line-height:22px;table-layout:fixed;width:100%;border:0;direction:ltr" width="100%">
                      <tr>
                       <td style="width:30px" width="30">
                        <img height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FComingUpToday.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5MjE4OH0:1tzaNv:O7iK1uDw6ww3SIQkgTGyrJrnS2QxBbSj7MEqcFNsbGM" style="border:0;display:block;outline:0;text-decoration:none;height:30px;width:100%;font-size:13px" width="30"/>
                       </td>
                       <td style="padding:0 6px">
                        <div style="font-family:Verdana,sans-serif;font-size:13px;font-weight:bold;line-height:18px;text-align:left;color:#4d4d64">
                         Coming Up Today
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div style="margin:0 auto;max-width:640px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:left;color:#4d4d64">
                      <ul style="padding-left:20px;margin:0">
                       <li style="padding:3px 0">
                        <b>
                         10 AM GMT – Eurozone Inflation (Mar)
                        </b>
                        : Headline CPI seen at 2.1% YoY (from 2.3%), 0.6% MoM (from 0.4%). Core CPI steady at 2.6%. Watch:
                        <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                         EUR pairs
                        </a>
                        .
                       </li>
                       <li style="padding:3px 0">
                        <b>
                         3 PM GMT – US ISM Manufacturing (Mar)
                        </b>
                        : PMI expected at 49.7 (from 50.3), signalling contraction. Watch:
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          US indices
                         </strong>
                        </a>
                        ,
                        <a style="border-bottom:1px solid #13c636;font-weight:bold;text-decoration:none;text-transform:none;color:inherit;" target="_blank">
                         <strong>
                          USD
                         </strong>
                         pairs
                        </a>
                        .
                       </li>
                      </ul>
                     </div>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <div style="margin:0 auto;max-width:640px;background-color:#FFF">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
           <tr>
            <td align="center" class="section-inner" style="direction:ltr;font-size:0;padding:20px 0;text-align:center;padding-left:40px;padding-right:40px;padding-top:0">
             <div style="border-top:2px solid #f8f8f8;margin:0 auto;max-width:640px;padding:17px 0 10px 0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0px;padding:0;word-break:break-word">
                     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="color:#000;font-size:13px;line-height:22px;table-layout:fixed;width:100%;border:0;direction:ltr" width="100%">
                      <tr>
                       <td style="width:30px" width="30">
                        <img height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FIcons%252FDaily%252FWhatToWatch.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5MzgzOH0:1tzaNv:EWzAxnpvqFhu-V29qz3k2_ljX-x_Q4NndulaJmbVOj0" style="border:0;display:block;outline:0;text-decoration:none;height:30px;width:100%;font-size:13px" width="30"/>
                       </td>
                       <td style="padding:0 6px">
                        <div style="font-family:Verdana,sans-serif;font-size:13px;font-weight:bold;line-height:18px;text-align:left;color:#4d4d64">
                         What to Watch
                        </div>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
             <div style="margin:0 auto;max-width:640px">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
               <tr>
                <td style="direction:ltr;font-size:0px;padding:0;text-align:center">
                 <div class="col-per-100" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%">
                  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                   <tr>
                    <td align="left" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                     <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:left;color:#4d4d64">
                      <ul style="padding-left:20px;margin:0">
                       <li style="padding:3px 0">
                        <b id="docs-internal-guid-c0aa6250-7fff-5538-1d7a-36b8889a462d">
                         Lockheed Martin Scores a Big Win:
                        </b>
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          Lockheed Martin
                         </strong>
                        </a>
                        has just secured a massive $4.94 billion contract with the U.S. Army to produce Precision Strike Missiles (PrSM), set to replace the Army Tactical Missile. With demand for weaponry rising globally, this deal gives Lockheed a boost—its shares climbed more than 1% after the news.
                       </li>
                       <li style="padding:3px 0">
                        <b id="docs-internal-guid-b9003009-7fff-e17f-1fbf-87483c6a5944">
                         Aston Martin Gets a Financial Boost
                        </b>
                        <b>
                         :
                        </b>
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          Aston Martin
                         </strong>
                        </a>
                        saw its shares jump 13% after Canadian billionaire Lawrence Stroll's investment group, Yew Tree Consortium, raised £125 million for the company. Stroll’s stake is set to rise to 33%, and with plans to sell part of its F1 team stake, Aston Martin is focused on ramping up innovation and profitability.
                       </li>
                       <li style="padding:3px 0">
                        <b id="docs-internal-guid-942d1a55-7fff-ffc7-557b-b0f02f34a004">
                         Discover Financial Shines Bright
                        </b>
                        <b>
                         :
                        </b>
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          Discover Financial Services
                         </strong>
                        </a>
                        (DFS) stood out in the
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          S&amp;P 500
                         </strong>
                        </a>
                        after announcing it will keep interim CEO J. Michael Shepherd on board until Capital One’s $35.3 billion acquisition is complete. This move has reassured investors, sending DFS stock soaring.
                       </li>
                       <li style="padding:3px 0">
                        <b id="docs-internal-guid-f85a14c8-7fff-24c7-9bbb-60a750bb1eb3">
                         AIG Shares Soar
                        </b>
                        <b>
                         :
                        </b>
                        <a style="color:inherit;text-transform:none;border-bottom:1px solid #13c636;text-decoration:none;" target="_blank">
                         <strong>
                          American International Group
                         </strong>
                        </a>
                        (AIG) saw a significant jump in stock price after revealing a $7.5 billion stock buyback plan. The announcement has been well-received by the market, signaling strong investor confidence in AIG’s future and its strategy to boost shareholder value.
                       </li>
                      </ul>
                     </div>
                    </td>
                   </tr>
                  </table>
                 </div>
                </td>
               </tr>
              </table>
             </div>
            </td>
           </tr>
          </table>
         </div>
        </td>
       </tr>
      </table>
     </td>
    </tr>
   </table>
   <div style="background-color:#f8f8f8;margin:0 auto;max-width:640px">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#F8F8F8;width:100%">
     <tbody>
      <tr>
       <td style="font-size:0;padding:22px 0;text-align:center">
        <div class="section" style="margin:0 auto;max-width:640px">
         <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
          <tbody>
           <tr>
            <td align="center" class="section-inner" style="font-size:0;padding:0;text-align:center;padding-left:40px;padding-right:40px">
             <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="trust__title-wrapper" style="font-size:0;word-break:break-word;padding:0">
                  <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:center;color:#4d4d64">
                   <h2 style="font-family:Verdana,sans-serif;color:#4d4d64;margin:0;font-size:22px;line-height:28px;font-weight:bold">
                    Your funds are held in top-tier institutions
                   </h2>
                  </div>
                 </td>
                </tr>
                <tr>
                 <td align="center" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                  <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:center;color:#4d4d64">
                   eToro works with globally renowned banking partners including:
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <div class="trust__logos-wrapper" style="padding:22px 0 0 0;margin:0 auto;max-width:640px">
         <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
          <tbody>
           <tr>
            <td style="font-size:0px;padding:0;text-align:center">
             <div class="col-per-55" style="font-size:0;line-height:0;text-align:left;display:inline-block;width:100%">
              <div class="col-per-28 trust__logo-col" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:28%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:91px">
                       <img alt="J.P.Morgan" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FJPMorgan.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5NTEwMn0:1tzaNv:pL2AXw-7YFvZw9OgAklZN5RJBHilS8E3kXFke-ISt4g" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="91"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-33 trust__logo-col" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:33%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:104px">
                       <img alt="Deutsche Bank" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FDeutscheBank.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5NjMwOH0:1tzaNv:O11dYVrUvG_dJ6WUvp6q0pHix7wvd7HxXNVLeuLCuVA" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="104"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-22 trust__logo-col" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:22%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:70px">
                       <img alt="Coutts" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FCoutts.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5NzcyNH0:1tzaNv:Uz_3zS9bb_wK81c23AfleTihLL7BP3jpcIJRjPGSRB8" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="70"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
             </div>
             <div class="col-per-45" style="font-size:0;line-height:0;text-align:left;display:inline-block;width:100%">
              <div class="col-per-49 trust__logo-col trust__logo-col-jsafra" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:49%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:129px">
                       <img alt="J. Safra Sarasin" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FJSafraSarasin.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTE5OTE3Nn0:1tzaNv:OxQSIDxGymCkXBj4Q_7XiOpWMT6JlDc9G9pFzQ7FWi0" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="129"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-22 trust__logo-col" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:22%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:59px">
                       <img alt="PICTET" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FPICTET.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwMDc4M30:1tzaNv:sDAnRVOqIz1cq5rsp2fCdDq4hHyAOUcJZxqr0o4MEg0" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="59"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-8 trust__logo-col" style="font-size:0;text-align:left;display:inline-block;vertical-align:top;width:8%;padding:10px 9px">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
                <tbody>
                 <tr>
                  <td align="center" class="trust__logo" style="font-size:0px;padding:0;word-break:break-word">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                    <tbody>
                     <tr>
                      <td style="width:22px">
                       <img alt="UBP" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FDaily%252FTrust%252FUBP.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwMjcyfQ:1tzaNv:xjpu-J6j2YCbbZtw68EDt0YHgu7PpFKCzNUbx1VHGCE" style="border:0;display:block;outline:none;text-decoration:none;height:20px;width:100%;font-size:13px" width="22"/>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <div class="section" style="margin:0 auto;max-width:640px">
         <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
          <tbody>
           <tr>
            <td align="center" class="section-inner" style="font-size:0;padding:0;text-align:center;padding-top:20px;padding-left:40px;padding-right:40px">
             <div class="col-per-100" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
               <tbody>
                <tr>
                 <td align="center" style="font-size:0;word-break:break-word;padding:0">
                  <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:center;color:#4d4d64">
                   <a style="text-decoration:none;border-bottom:1px solid #13c636;font-weight:bold;color:#4d4d64;font-size:15px;font-family:Verdana,sans-serif;line-height:22px" target="_blank">
                    Learn More About Our Fund Protection
                   </a>
                  </div>
                 </td>
                </tr>
                <tr>
                 <td align="center" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                  <div style="font-family:Verdana,sans-serif;font-size:15px;line-height:22px;text-align:center;color:#4d4d64">
                   * These banks are partnered with the eToro group and do not serve all entities within the group
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <table align="center" bgcolor="#c4e7fb" border="0" cellpadding="0" cellspacing="0" style="background-color:#000021;width:100%;max-width:640px" width="640">
    <tr style="background-color:#000021">
     <td align="center" valign="top">
      <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
       <tr>
        <td height="10">
        </td>
       </tr>
       <tr>
        <td align="center" valign="top">
         <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
          <tr>
           <td align="center" style="color:#000021;padding-bottom:0">
            <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="height:72px;max-width:100%;padding:0 30px">
             <tr>
              <td valign="top">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width">
                <tr>
                 <td align="center" style="min-width:100%;padding:0 10px">
                  <p style="margin:4px 0;font-family:Verdana;text-align:center;padding:5px 0 10px 0;font-size:22px;font-weight:400;line-height:22px;color:#fff">
                   <span>
                    Did you
                    <b>
                     understand
                    </b>
                    this email?
                   </span>
                  </p>
                 </td>
                </tr>
                <tr>
                 <td align="center" colspan="2" width="100%">
                  <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width">
                   <tr>
                    <td>
                     <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width">
                      <tr>
                       <td align="center" height="50" style="font-weight:400;font-family:verdana,Arial,sans-serif,Tahoma,Helvetica;font-size:16px;border-radius:100px;padding:5px 20px;min-height:45px;background-color:#13c636;line-height:normal;height:auto" valign="middle" width="auto">
                        <a style="text-decoration:none;color:#000021" target="_blank">
                         Yes
                        </a>
                       </td>
                      </tr>
                     </table>
                    </td>
                    <td>
                     <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width">
                      <tr>
                       <td align="center" valign="top" width=" ">
                        <p style="padding:10px;margin:10px">
                        </p>
                       </td>
                      </tr>
                     </table>
                    </td>
                    <td>
                     <table align="left" border="0" cellpadding="0" cellspacing="0" class="full-width">
                      <tr>
                       <td align="center" height="50" style="font-weight:400;font-family:verdana,Arial,sans-serif,Tahoma,Helvetica;font-size:16px;border-radius:100px;padding:5px 25px;min-height:45px;background-color:#13c636;line-height:normal;height:auto" valign="middle" width="auto">
                        <a style="text-decoration:none;color:#000021" target="_blank">
                         No
                        </a>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </td>
                </tr>
               </table>
              </td>
             </tr>
            </table>
           </td>
          </tr>
         </table>
        </td>
       </tr>
       <tr>
        <td height="10">
        </td>
       </tr>
      </table>
     </td>
    </tr>
   </table>
   <div style="background-color:#000021;margin:0 auto;max-width:640px">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#000021;width:100%">
     <tbody>
      <tr>
       <td style="font-size:0;padding:0 20px;text-align:center">
        <div style="margin:0 auto;max-width:600px">
         <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
          <tbody>
           <tr>
            <td style="font-size:0px;padding:0;text-align:center">
             <div class="col-px-344" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:100%">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top" width="100%">
               <tbody>
                <tr>
                 <td align="center" style="font-size:0;padding:12px 0 0 0;word-break:break-word">
                  <div style="font-family:Verdana,sans-serif;font-size:14px;line-height:22px;text-align:center;color:#FFF;direction:ltr;">
                   Follow us on our social channels. Don't miss out.
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <div style="margin:0 auto;max-width:600px">
         <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%">
          <tbody>
           <tr>
            <td style="font-size:0;padding:20px 0 12px 0;text-align:center">
             <div class="col-px-260" style="font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;max-width:260px;">
              <div class="col-per-20" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:20%">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tbody>
                 <tr>
                  <td style="vertical-align:top;padding:0 10px">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                       <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                        <tbody>
                         <tr>
                          <td style="width:32px">
                           <a target="_blank">
                            <img alt="Facebook" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FSocial%252FSocials_fb_White.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwNDMzM30:1tzaNv:yPBWXh1GCRHvGtAgw0zMmOgeH7GiNFTPN9YUEZLkjYo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="32"/>
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-20" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:20%">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tbody>
                 <tr>
                  <td style="vertical-align:top;padding:0 10px">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                       <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                        <tbody>
                         <tr>
                          <td style="width:32px">
                           <a target="_blank">
                            <img alt="Instagram" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FSocial%252FSocials_ig_White.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwNjEwMn0:1tzaNv:1kqnFbBEoERGjkpY8hwUO9-_ljs-QpK6INmLzCMv3eY" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="32"/>
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-20" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:20%">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tbody>
                 <tr>
                  <td style="vertical-align:top;padding:0 10px">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                       <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                        <tbody>
                         <tr>
                          <td style="width:32px">
                           <a target="_blank">
                            <img alt="LinkedIn" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FSocial%252FSocials_LinkedIn_White.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwNzM3M30:1tzaNv:Se3jCB7ioVnawSomzoz1meBqgtyULOnY_zypSjLskGw" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="32"/>
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-20" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:20%">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tbody>
                 <tr>
                  <td style="vertical-align:top;padding:0 10px">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                       <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                        <tbody>
                         <tr>
                          <td style="width:32px">
                           <a target="_blank">
                            <img alt="X" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FSocial%252FSocials_X_White.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwODUzMn0:1tzaNv:zvXfjDOwrImmjm53jtjTkiSXBdqKD6XETvIJlZeuezQ" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="32"/>
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <div class="col-per-20" style="font-size:0px;text-align:left;display:inline-block;vertical-align:top;width:20%">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                <tbody>
                 <tr>
                  <td style="vertical-align:top;padding:0 10px">
                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="font-size:0px;padding:0;word-break:break-word">
                       <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px">
                        <tbody>
                         <tr>
                          <td style="width:32px">
                           <a target="_blank">
                            <img alt="YouTube" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fetoro-production.s3.eu-west-1.amazonaws.com%252Fe-marketing%252FMarketingAutomation%252FSocial%252FSocials_youtube_White.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZldG9yby1wcm9kdSIsInRpbWUiOjE3NDM1MDkxODcuMTIwOTk1OH0:1tzaNv:4bQyvVDbHfWiorrCM3cfX2R0wTHhN2PlzJPBas1XoM0" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px" width="32"/>
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <table align="center" cellpadding="5" style="max-width:100%" width="640">
    <tr>
     <td>
     </td>
    </tr>
    <tr>
     <td align="center" valign="top">
      <table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color: transparent; padding-left: 10px; padding-right: 10px;">
       <tr>
        <td align="center" valign="top">
         <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
          <!--element end id =333798349-->
          <!--element start id=1014361108-->
          <tr>
           <td align="center">
            <p data-elem-name="paragraph" style="margin: 0; font-family: Arial,Tahoma, Helvetica, sans-serif; color: #5c606b; text-align: center; font-size: 11px; line-height: 12px;">
             This is a marketing communication and should not be taken as investment advice, personal                recommendation, or an offer of, or solicitation to buy or sell, any financial                instruments. This material has been prepared without having regard to any particular                investment objectives or financial situation, and has not been prepared in accordance                with the legal and regulatory requirements to promote independent research. Any                references to past or future performance of a financial instrument, index or a packaged               
 investment product are not, and should not be taken as a reliable indicator of future                results. eToro makes no representation and assumes no liability as to the accuracy or                completeness of the content of this publication, which has been prepared utilising                publicly available information. Certain behavior on eToro's social media such as                organizing or executing coordinated strategies to trade or place orders at certain                conditions and times to move a product's price could constitute market manipulation. For                more information please refer to our Community Guidelines.
            </p>
           </td>
          </tr>
          <tr>
           <td height="10">
           </td>
          </tr>
          <!--element end id =1014361108-->
          <!--element start id=1836730605-->
          <tr>
           <td align="center">
            <p data-elem-name="paragraph" style="margin: 0; font-family: Arial,Tahoma, Helvetica, sans-serif; color: #5c606b; text-align: center; font-size: 11px; line-height: 12px;">
             eToro Group Ltd., a British Virgin Island Company. Services on eToro Trading Platform                are offered by different regulated entities of eToro Group:
            </p>
           </td>
          </tr>
          <tr>
           <td height="10">
           </td>
          </tr>
          <!--element end id =1836730605-->
          <!--element start id=627401081-->
          <tr>
           <td align="center">
            <p data-elem-name="paragraph" style="margin: 0; font-family: Arial,Tahoma, Helvetica, sans-serif; color: #5c606b; text-align: center; font-size: 11px; line-height: 12px;">
             eToro (Europe) Ltd., a Financial Services Company, authorized and regulated by the                Cyprus Securities Exchange Commission (CySEC) under the license # 109/10.
             <br/>
             eToro (UK) Ltd, a Financial Services Company Authorised and regulated by the Financial                Conduct Authority (FCA) under the license FRN 583263.
             <br/>
             eToro AUS Capital Pty Ltd. is a company authorised by the Australian Securities and                Investments Commission (ASIC) under the Australian Financial Services License                491139.
             <br/>
             eToro USA LLC is a registered money services business with FinCEN, and holds money                transmitter licenses in various states.
             <br/>
             eToro (Seychelles) Limited is licenced by the Financial Services Authority Seychelles                ("FSAS") to provide broker-dealer services under the Securities Act 2007                License no.SD076
            </p>
           </td>
          </tr>
          <tr>
           <td height="10">
           </td>
          </tr>
          <!--element end id =627401081-->
          <!--element start id=1203186902-->
         </table>
        </td>
       </tr>
      </table>
     </td>
    </tr>
    <tr>
     <td align="center" width="110">
      <hr style="border:0;border-top:2px solid #d3d3d3;width:110px;padding:10px 0 0 0"/>
     </td>
    </tr>
    <tr>
     <td style="font-family:Verdana,sans-serif;font-size:11px;line-height:18px;text-align:center;color:#8a8c93">
      To review or change your settings,
      <a name="optout_1" style="color: #434651; text-decoration: none;" target="_blank" xt="SPCLICK">
       click here
      </a>
      . To unsubscribe, please
      <a name="optout_1" style="color: #434651; text-decoration: none;" target="_blank" xt="SPCLICK">
       click here
      </a>
      .
     </td>
    </tr>
    <tr>
     <td>
     </td>
    </tr>
   </table>
  </div>
 </body>
</html>