Beethoven_AnDieFerneGeliebte.xml 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <score-partwise version="2.0">
  3. <work>
  4. <work-number>Op. 98</work-number>
  5. <work-title>An die ferne Geliebte (Page 1)</work-title>
  6. </work>
  7. <identification>
  8. <creator type="composer">Ludwig van Beethoven</creator>
  9. <creator type="lyricist">Aloys Jeitteles</creator>
  10. <rights>Copyright © 2002 Recordare LLC</rights>
  11. <encoding>
  12. <software>Finale 2011 for Windows</software>
  13. <software>Dolet Light for Finale 2011</software>
  14. <encoding-date>2010-12-10</encoding-date>
  15. <supports attribute="new-system" element="print" type="yes" value="yes"/>
  16. <supports attribute="new-page" element="print" type="yes" value="yes"/>
  17. </encoding>
  18. </identification>
  19. <defaults>
  20. <scaling>
  21. <millimeters>6.35</millimeters>
  22. <tenths>40</tenths>
  23. </scaling>
  24. <page-layout>
  25. <page-height>1760</page-height>
  26. <page-width>1360</page-width>
  27. <page-margins type="both">
  28. <left-margin>80</left-margin>
  29. <right-margin>80</right-margin>
  30. <top-margin>80</top-margin>
  31. <bottom-margin>80</bottom-margin>
  32. </page-margins>
  33. </page-layout>
  34. <system-layout>
  35. <system-margins>
  36. <left-margin>71</left-margin>
  37. <right-margin>0</right-margin>
  38. </system-margins>
  39. <system-distance>108</system-distance>
  40. <top-system-distance>65</top-system-distance>
  41. </system-layout>
  42. <staff-layout>
  43. <staff-distance>101</staff-distance>
  44. </staff-layout>
  45. <appearance>
  46. <line-width type="stem">0.957</line-width>
  47. <line-width type="beam">5.0391</line-width>
  48. <line-width type="staff">0.957</line-width>
  49. <line-width type="light barline">1.875</line-width>
  50. <line-width type="heavy barline">5.0391</line-width>
  51. <line-width type="leger">1.875</line-width>
  52. <line-width type="ending">0.957</line-width>
  53. <line-width type="wedge">0.957</line-width>
  54. <line-width type="enclosure">0.957</line-width>
  55. <line-width type="tuplet bracket">0.957</line-width>
  56. <note-size type="grace">60</note-size>
  57. <note-size type="cue">60</note-size>
  58. </appearance>
  59. <music-font font-family="Maestro" font-size="18"/>
  60. <word-font font-family="Times New Roman" font-size="9"/>
  61. <lyric-font font-family="Times New Roman" font-size="10"/>
  62. </defaults>
  63. <credit page="1">
  64. <credit-words default-x="680" default-y="1678" font-size="24" justify="center" valign="top">An die ferne Geliebte</credit-words>
  65. <credit-words font-size="24" font-weight="bold"> 
  66. </credit-words>
  67. <credit-words font-size="14" font-weight="normal">Op. 98</credit-words>
  68. </credit>
  69. <credit page="1">
  70. <credit-words default-x="680" default-y="65" font-size="9" justify="center" valign="bottom">Copyright © 2002 Recordare LLC</credit-words>
  71. </credit>
  72. <credit page="1">
  73. <credit-words default-x="80" default-y="1545" font-size="12" valign="top">Aloys Jeitteles</credit-words>
  74. </credit>
  75. <credit page="1">
  76. <credit-words default-x="1280" default-y="1545" font-size="12" halign="right" justify="center" valign="top">Ludwig van Beethoven</credit-words>
  77. </credit>
  78. <part-list>
  79. <score-part id="P1">
  80. <part-name>Voice</part-name>
  81. <score-instrument id="P1-I3">
  82. <instrument-name>Voice</instrument-name>
  83. </score-instrument>
  84. <midi-instrument id="P1-I3">
  85. <midi-channel>1</midi-channel>
  86. <midi-program>53</midi-program>
  87. <volume>80</volume>
  88. <pan>0</pan>
  89. </midi-instrument>
  90. </score-part>
  91. <score-part id="P2">
  92. <part-name>Piano</part-name>
  93. <score-instrument id="P2-I2">
  94. <instrument-name>Acoustic Grand Piano</instrument-name>
  95. </score-instrument>
  96. <midi-instrument id="P2-I2">
  97. <midi-channel>2</midi-channel>
  98. <midi-program>1</midi-program>
  99. <volume>80</volume>
  100. <pan>0</pan>
  101. </midi-instrument>
  102. </score-part>
  103. </part-list>
  104. <!--=========================================================-->
  105. <part id="P1">
  106. <measure number="1" width="324">
  107. <print page-number="1">
  108. <system-layout>
  109. <system-margins>
  110. <left-margin>150</left-margin>
  111. <right-margin>0</right-margin>
  112. </system-margins>
  113. <top-system-distance>300</top-system-distance>
  114. </system-layout>
  115. <measure-numbering>system</measure-numbering>
  116. </print>
  117. <attributes>
  118. <divisions>24</divisions>
  119. <key>
  120. <fifths>-3</fifths>
  121. <mode>major</mode>
  122. </key>
  123. <time>
  124. <beats>3</beats>
  125. <beat-type>4</beat-type>
  126. </time>
  127. <clef>
  128. <sign>G</sign>
  129. <line>2</line>
  130. </clef>
  131. </attributes>
  132. <direction directive="yes" placement="above">
  133. <direction-type>
  134. <words default-y="26" font-size="11" font-weight="bold">Ziemlich langsam und mit Ausdruck</words>
  135. </direction-type>
  136. <sound tempo="60"/>
  137. </direction>
  138. <direction directive="yes" placement="above">
  139. <direction-type>
  140. <words default-y="60" font-size="16" font-weight="bold" xml:lang="de">No. 1</words>
  141. </direction-type>
  142. </direction>
  143. <note default-x="136">
  144. <rest/>
  145. <duration>24</duration>
  146. <voice>1</voice>
  147. <type>quarter</type>
  148. </note>
  149. <note default-x="196">
  150. <pitch>
  151. <step>B</step>
  152. <alter>-1</alter>
  153. <octave>4</octave>
  154. </pitch>
  155. <duration>24</duration>
  156. <voice>1</voice>
  157. <type>quarter</type>
  158. <stem default-y="-55.5">down</stem>
  159. <lyric default-y="-80" number="1">
  160. <syllabic>single</syllabic>
  161. <text>Auf</text>
  162. </lyric>
  163. </note>
  164. <note default-x="257">
  165. <pitch>
  166. <step>B</step>
  167. <alter>-1</alter>
  168. <octave>4</octave>
  169. </pitch>
  170. <duration>24</duration>
  171. <voice>1</voice>
  172. <type>quarter</type>
  173. <stem default-y="-55.5">down</stem>
  174. <lyric default-y="-80" number="1">
  175. <syllabic>single</syllabic>
  176. <text>dem</text>
  177. </lyric>
  178. </note>
  179. </measure>
  180. <!--=======================================================-->
  181. <measure number="2" width="261">
  182. <note default-x="15">
  183. <pitch>
  184. <step>B</step>
  185. <alter>-1</alter>
  186. <octave>4</octave>
  187. </pitch>
  188. <duration>36</duration>
  189. <voice>1</voice>
  190. <type>quarter</type>
  191. <dot/>
  192. <stem default-y="-55.5">down</stem>
  193. <lyric default-y="-80" number="1">
  194. <syllabic>begin</syllabic>
  195. <text>Hü</text>
  196. </lyric>
  197. </note>
  198. <note default-x="110">
  199. <pitch>
  200. <step>C</step>
  201. <octave>5</octave>
  202. </pitch>
  203. <duration>12</duration>
  204. <voice>1</voice>
  205. <type>eighth</type>
  206. <stem default-y="-50.5">down</stem>
  207. <lyric default-y="-80" number="1">
  208. <syllabic>end</syllabic>
  209. <text>gel</text>
  210. </lyric>
  211. </note>
  212. <note default-x="158">
  213. <pitch>
  214. <step>D</step>
  215. <octave>5</octave>
  216. </pitch>
  217. <duration>12</duration>
  218. <voice>1</voice>
  219. <type>eighth</type>
  220. <stem default-y="-42">down</stem>
  221. <beam number="1">begin</beam>
  222. <lyric default-y="-80" number="1">
  223. <syllabic>single</syllabic>
  224. <text>sitz’</text>
  225. </lyric>
  226. </note>
  227. <note default-x="206">
  228. <pitch>
  229. <step>E</step>
  230. <alter>-1</alter>
  231. <octave>5</octave>
  232. </pitch>
  233. <duration>12</duration>
  234. <voice>1</voice>
  235. <type>eighth</type>
  236. <stem default-y="-42">down</stem>
  237. <beam number="1">end</beam>
  238. <lyric default-y="-80" number="1">
  239. <syllabic>single</syllabic>
  240. <text>ich</text>
  241. </lyric>
  242. </note>
  243. </measure>
  244. <!--=======================================================-->
  245. <measure number="3" width="245">
  246. <note default-x="16">
  247. <pitch>
  248. <step>E</step>
  249. <alter>-1</alter>
  250. <octave>5</octave>
  251. </pitch>
  252. <duration>24</duration>
  253. <voice>1</voice>
  254. <type>quarter</type>
  255. <stem default-y="-40.5">down</stem>
  256. <lyric default-y="-80" number="1">
  257. <syllabic>begin</syllabic>
  258. <text>spä</text>
  259. </lyric>
  260. </note>
  261. <note default-x="71">
  262. <pitch>
  263. <step>G</step>
  264. <octave>4</octave>
  265. </pitch>
  266. <duration>12</duration>
  267. <voice>1</voice>
  268. <type>eighth</type>
  269. <stem default-y="6">up</stem>
  270. <lyric default-y="-80" number="1">
  271. <syllabic>end</syllabic>
  272. <text>hend</text>
  273. </lyric>
  274. </note>
  275. <note default-x="113">
  276. <rest/>
  277. <duration>12</duration>
  278. <voice>1</voice>
  279. <type>eighth</type>
  280. </note>
  281. <note default-x="155">
  282. <pitch>
  283. <step>A</step>
  284. <alter>-1</alter>
  285. <octave>4</octave>
  286. </pitch>
  287. <duration>12</duration>
  288. <voice>1</voice>
  289. <type>eighth</type>
  290. <stem default-y="5">up</stem>
  291. <beam number="1">begin</beam>
  292. <lyric default-y="-80" number="1">
  293. <syllabic>single</syllabic>
  294. <text>in</text>
  295. </lyric>
  296. </note>
  297. <note default-x="196">
  298. <pitch>
  299. <step>G</step>
  300. <octave>4</octave>
  301. </pitch>
  302. <duration>12</duration>
  303. <voice>1</voice>
  304. <type>eighth</type>
  305. <stem default-y="5">up</stem>
  306. <beam number="1">end</beam>
  307. <lyric default-y="-80" number="1">
  308. <syllabic>single</syllabic>
  309. <text>das</text>
  310. </lyric>
  311. </note>
  312. </measure>
  313. <!--=======================================================-->
  314. <measure number="4" width="220">
  315. <note default-x="20">
  316. <pitch>
  317. <step>F</step>
  318. <octave>4</octave>
  319. </pitch>
  320. <duration>12</duration>
  321. <voice>1</voice>
  322. <type>eighth</type>
  323. <stem default-y="3.5">up</stem>
  324. <beam number="1">begin</beam>
  325. <lyric default-y="-80" number="1">
  326. <syllabic>begin</syllabic>
  327. <text>blau</text>
  328. </lyric>
  329. </note>
  330. <note default-x="61">
  331. <pitch>
  332. <step>A</step>
  333. <alter>-1</alter>
  334. <octave>4</octave>
  335. </pitch>
  336. <duration>12</duration>
  337. <voice>1</voice>
  338. <type>eighth</type>
  339. <stem default-y="5">up</stem>
  340. <beam number="1">end</beam>
  341. <lyric default-y="-80" number="1">
  342. <syllabic>end</syllabic>
  343. <text>e</text>
  344. </lyric>
  345. </note>
  346. <note default-x="103">
  347. <pitch>
  348. <step>C</step>
  349. <octave>5</octave>
  350. </pitch>
  351. <duration>24</duration>
  352. <voice>1</voice>
  353. <type>quarter</type>
  354. <stem default-y="-50.5">down</stem>
  355. <lyric default-y="-80" number="1">
  356. <syllabic>begin</syllabic>
  357. <text>Ne</text>
  358. </lyric>
  359. </note>
  360. <note default-x="158">
  361. <pitch>
  362. <step>C</step>
  363. <octave>5</octave>
  364. </pitch>
  365. <duration>24</duration>
  366. <voice>1</voice>
  367. <type>quarter</type>
  368. <stem default-y="-50.5">down</stem>
  369. <lyric default-y="-80" number="1">
  370. <syllabic>middle</syllabic>
  371. <text>bel</text>
  372. </lyric>
  373. </note>
  374. </measure>
  375. <!--=======================================================-->
  376. <measure number="5" width="267">
  377. <print new-system="yes">
  378. <system-layout>
  379. <system-margins>
  380. <left-margin>0</left-margin>
  381. <right-margin>0</right-margin>
  382. </system-margins>
  383. <system-distance>192</system-distance>
  384. </system-layout>
  385. </print>
  386. <note default-x="108">
  387. <pitch>
  388. <step>F</step>
  389. <octave>4</octave>
  390. </pitch>
  391. <duration>24</duration>
  392. <voice>1</voice>
  393. <type>quarter</type>
  394. <stem default-y="1">up</stem>
  395. <lyric default-y="-80" number="1">
  396. <syllabic>end</syllabic>
  397. <text>land,</text>
  398. </lyric>
  399. </note>
  400. <note default-x="154">
  401. <pitch>
  402. <step>B</step>
  403. <alter>-1</alter>
  404. <octave>4</octave>
  405. </pitch>
  406. <duration>36</duration>
  407. <voice>1</voice>
  408. <type>quarter</type>
  409. <dot/>
  410. <stem default-y="-55">down</stem>
  411. <lyric default-y="-80" number="1">
  412. <syllabic>single</syllabic>
  413. <text>nach</text>
  414. </lyric>
  415. </note>
  416. <note default-x="225">
  417. <pitch>
  418. <step>C</step>
  419. <octave>5</octave>
  420. </pitch>
  421. <duration>12</duration>
  422. <voice>1</voice>
  423. <type>eighth</type>
  424. <stem default-y="-50">down</stem>
  425. <lyric default-y="-80" number="1">
  426. <syllabic>single</syllabic>
  427. <text>den</text>
  428. </lyric>
  429. </note>
  430. </measure>
  431. <!--=======================================================-->
  432. <measure number="6" width="194">
  433. <note default-x="22">
  434. <pitch>
  435. <step>B</step>
  436. <alter>-1</alter>
  437. <octave>4</octave>
  438. </pitch>
  439. <duration>24</duration>
  440. <voice>1</voice>
  441. <type>quarter</type>
  442. <stem default-y="-55">down</stem>
  443. <lyric default-y="-80" number="1">
  444. <syllabic>begin</syllabic>
  445. <text>fer</text>
  446. </lyric>
  447. </note>
  448. <note default-x="69">
  449. <pitch>
  450. <step>A</step>
  451. <octave>4</octave>
  452. </pitch>
  453. <duration>24</duration>
  454. <voice>1</voice>
  455. <type>quarter</type>
  456. <accidental>natural</accidental>
  457. <stem default-y="11">up</stem>
  458. <lyric default-y="-80" number="1">
  459. <syllabic>end</syllabic>
  460. <text>nen</text>
  461. </lyric>
  462. </note>
  463. <note default-x="116">
  464. <pitch>
  465. <step>A</step>
  466. <alter>-1</alter>
  467. <octave>4</octave>
  468. </pitch>
  469. <duration>12</duration>
  470. <voice>1</voice>
  471. <type>eighth</type>
  472. <accidental>flat</accidental>
  473. <stem default-y="12.5">up</stem>
  474. <beam number="1">begin</beam>
  475. <lyric default-y="-80" number="1">
  476. <syllabic>begin</syllabic>
  477. <text>Trif</text>
  478. </lyric>
  479. </note>
  480. <note default-x="152">
  481. <pitch>
  482. <step>B</step>
  483. <alter>-1</alter>
  484. <octave>4</octave>
  485. </pitch>
  486. <duration>12</duration>
  487. <voice>1</voice>
  488. <type>eighth</type>
  489. <stem default-y="12.5">up</stem>
  490. <beam number="1">end</beam>
  491. <lyric default-y="-80" number="1">
  492. <syllabic>end</syllabic>
  493. <text>ten</text>
  494. </lyric>
  495. </note>
  496. </measure>
  497. <!--=======================================================-->
  498. <measure number="7" width="178">
  499. <note default-x="12">
  500. <pitch>
  501. <step>A</step>
  502. <alter>-1</alter>
  503. <octave>4</octave>
  504. </pitch>
  505. <duration>24</duration>
  506. <voice>1</voice>
  507. <type>quarter</type>
  508. <stem default-y="11">up</stem>
  509. <lyric default-y="-80" number="1">
  510. <syllabic>begin</syllabic>
  511. <text>se</text>
  512. </lyric>
  513. </note>
  514. <note default-x="57">
  515. <pitch>
  516. <step>G</step>
  517. <octave>4</octave>
  518. </pitch>
  519. <duration>24</duration>
  520. <voice>1</voice>
  521. <type>quarter</type>
  522. <stem default-y="6">up</stem>
  523. <lyric default-y="-80" number="1">
  524. <syllabic>end</syllabic>
  525. <text>hend,</text>
  526. </lyric>
  527. </note>
  528. <note default-x="102">
  529. <pitch>
  530. <step>E</step>
  531. <alter>-1</alter>
  532. <octave>5</octave>
  533. </pitch>
  534. <duration>12</duration>
  535. <voice>1</voice>
  536. <type>eighth</type>
  537. <stem default-y="-42.5">down</stem>
  538. <beam number="1">begin</beam>
  539. <lyric default-y="-80" number="1">
  540. <syllabic>single</syllabic>
  541. <text>wo</text>
  542. </lyric>
  543. </note>
  544. <note default-x="137">
  545. <pitch>
  546. <step>D</step>
  547. <octave>5</octave>
  548. </pitch>
  549. <duration>12</duration>
  550. <voice>1</voice>
  551. <type>eighth</type>
  552. <stem default-y="-42.5">down</stem>
  553. <beam number="1">end</beam>
  554. <lyric default-y="-80" number="1">
  555. <syllabic>single</syllabic>
  556. <text>ich</text>
  557. </lyric>
  558. </note>
  559. </measure>
  560. <!--=======================================================-->
  561. <measure number="8" width="211">
  562. <note default-x="12">
  563. <pitch>
  564. <step>D</step>
  565. <octave>5</octave>
  566. </pitch>
  567. <duration>24</duration>
  568. <voice>1</voice>
  569. <type>quarter</type>
  570. <stem default-y="-45">down</stem>
  571. <notations>
  572. <slur bezier-x="16" bezier-y="13" default-x="5" default-y="2" number="1" placement="above" type="start"/>
  573. </notations>
  574. <lyric default-y="-80" justify="left" number="1">
  575. <syllabic>single</syllabic>
  576. <text>dich,</text>
  577. <extend/>
  578. </lyric>
  579. </note>
  580. <note default-x="60">
  581. <pitch>
  582. <step>C</step>
  583. <octave>5</octave>
  584. </pitch>
  585. <duration>12</duration>
  586. <voice>1</voice>
  587. <type>eighth</type>
  588. <stem default-y="-52.5">down</stem>
  589. <beam number="1">begin</beam>
  590. <notations>
  591. <slur bezier-x="-11" bezier-y="17" default-x="6" default-y="-5" number="1" type="stop"/>
  592. </notations>
  593. </note>
  594. <note default-x="95">
  595. <pitch>
  596. <step>B</step>
  597. <alter>-1</alter>
  598. <octave>4</octave>
  599. </pitch>
  600. <duration>12</duration>
  601. <voice>1</voice>
  602. <type>eighth</type>
  603. <stem default-y="-52.5">down</stem>
  604. <beam number="1">end</beam>
  605. <lyric default-y="-80" number="1">
  606. <syllabic>begin</syllabic>
  607. <text>Ge</text>
  608. </lyric>
  609. </note>
  610. <note default-x="132">
  611. <pitch>
  612. <step>A</step>
  613. <alter>-1</alter>
  614. <octave>4</octave>
  615. </pitch>
  616. <duration>12</duration>
  617. <voice>1</voice>
  618. <type>eighth</type>
  619. <stem default-y="5">up</stem>
  620. <beam number="1">begin</beam>
  621. <lyric default-y="-80" number="1">
  622. <syllabic>middle</syllabic>
  623. <text>lieb</text>
  624. </lyric>
  625. </note>
  626. <note default-x="168">
  627. <pitch>
  628. <step>F</step>
  629. <octave>4</octave>
  630. </pitch>
  631. <duration>12</duration>
  632. <voice>1</voice>
  633. <type>eighth</type>
  634. <stem default-y="3.5">up</stem>
  635. <beam number="1">end</beam>
  636. <lyric default-y="-80" number="1">
  637. <syllabic>end</syllabic>
  638. <text>te,</text>
  639. </lyric>
  640. </note>
  641. </measure>
  642. <!--=======================================================-->
  643. <measure number="9" width="180">
  644. <note default-x="22">
  645. <pitch>
  646. <step>E</step>
  647. <alter>-1</alter>
  648. <octave>4</octave>
  649. </pitch>
  650. <duration>24</duration>
  651. <voice>1</voice>
  652. <type>quarter</type>
  653. <stem default-y="-4">up</stem>
  654. <lyric default-y="-80" number="1">
  655. <syllabic>single</syllabic>
  656. <text>fand.</text>
  657. </lyric>
  658. </note>
  659. <note default-x="69">
  660. <rest/>
  661. <duration>24</duration>
  662. <voice>1</voice>
  663. <type>quarter</type>
  664. </note>
  665. <note default-x="115">
  666. <rest/>
  667. <duration>24</duration>
  668. <voice>1</voice>
  669. <type>quarter</type>
  670. </note>
  671. </measure>
  672. <!--=======================================================-->
  673. <measure number="10" width="169">
  674. <note>
  675. <rest/>
  676. <duration>72</duration>
  677. <voice>1</voice>
  678. </note>
  679. </measure>
  680. <!--=======================================================-->
  681. <measure number="11" width="288">
  682. <print new-system="yes">
  683. <system-layout>
  684. <system-margins>
  685. <left-margin>0</left-margin>
  686. <right-margin>0</right-margin>
  687. </system-margins>
  688. <system-distance>192</system-distance>
  689. </system-layout>
  690. </print>
  691. <note default-x="99">
  692. <rest/>
  693. <duration>24</duration>
  694. <voice>1</voice>
  695. <type>quarter</type>
  696. </note>
  697. <note default-x="159">
  698. <pitch>
  699. <step>B</step>
  700. <alter>-1</alter>
  701. <octave>4</octave>
  702. </pitch>
  703. <duration>24</duration>
  704. <voice>1</voice>
  705. <type>quarter</type>
  706. <stem default-y="-55">down</stem>
  707. <lyric default-y="-80" number="1">
  708. <syllabic>single</syllabic>
  709. <text>Weit</text>
  710. </lyric>
  711. </note>
  712. <note default-x="221">
  713. <pitch>
  714. <step>B</step>
  715. <alter>-1</alter>
  716. <octave>4</octave>
  717. </pitch>
  718. <duration>24</duration>
  719. <voice>1</voice>
  720. <type>quarter</type>
  721. <stem default-y="-55">down</stem>
  722. <lyric default-y="-80" number="1">
  723. <syllabic>single</syllabic>
  724. <text>bin</text>
  725. </lyric>
  726. </note>
  727. </measure>
  728. <!--=======================================================-->
  729. <measure number="12" width="229">
  730. <note default-x="22">
  731. <pitch>
  732. <step>B</step>
  733. <alter>-1</alter>
  734. <octave>4</octave>
  735. </pitch>
  736. <duration>36</duration>
  737. <voice>1</voice>
  738. <type>quarter</type>
  739. <dot/>
  740. <stem default-y="-55">down</stem>
  741. <lyric default-y="-80" number="1">
  742. <syllabic>single</syllabic>
  743. <text>ich</text>
  744. </lyric>
  745. </note>
  746. <note default-x="115">
  747. <pitch>
  748. <step>C</step>
  749. <octave>5</octave>
  750. </pitch>
  751. <duration>12</duration>
  752. <voice>1</voice>
  753. <type>eighth</type>
  754. <stem default-y="-50">down</stem>
  755. <lyric default-y="-80" number="1">
  756. <syllabic>single</syllabic>
  757. <text>von</text>
  758. </lyric>
  759. </note>
  760. <note default-x="160">
  761. <pitch>
  762. <step>D</step>
  763. <octave>5</octave>
  764. </pitch>
  765. <duration>12</duration>
  766. <voice>1</voice>
  767. <type>eighth</type>
  768. <stem default-y="-42">down</stem>
  769. <beam number="1">begin</beam>
  770. <lyric default-y="-80" number="1">
  771. <syllabic>single</syllabic>
  772. <text>dir</text>
  773. </lyric>
  774. </note>
  775. <note default-x="192">
  776. <pitch>
  777. <step>E</step>
  778. <alter>-1</alter>
  779. <octave>5</octave>
  780. </pitch>
  781. <duration>12</duration>
  782. <voice>1</voice>
  783. <type>eighth</type>
  784. <stem default-y="-42">down</stem>
  785. <beam number="1">end</beam>
  786. <lyric default-y="-80" number="1">
  787. <syllabic>begin</syllabic>
  788. <text>ge</text>
  789. </lyric>
  790. </note>
  791. </measure>
  792. <!--=======================================================-->
  793. <measure number="13" width="224">
  794. <note default-x="25">
  795. <pitch>
  796. <step>E</step>
  797. <alter>-1</alter>
  798. <octave>5</octave>
  799. </pitch>
  800. <duration>24</duration>
  801. <voice>1</voice>
  802. <type>quarter</type>
  803. <stem default-y="-40">down</stem>
  804. <lyric default-y="-80" number="1" relative-x="-3">
  805. <syllabic>middle</syllabic>
  806. <text>schie</text>
  807. </lyric>
  808. </note>
  809. <note default-x="66">
  810. <pitch>
  811. <step>G</step>
  812. <octave>4</octave>
  813. </pitch>
  814. <duration>12</duration>
  815. <voice>1</voice>
  816. <type>eighth</type>
  817. <stem default-y="5.5">up</stem>
  818. <lyric default-y="-80" number="1" relative-x="7">
  819. <syllabic>end</syllabic>
  820. <text>den,</text>
  821. </lyric>
  822. </note>
  823. <note default-x="103">
  824. <rest/>
  825. <duration>12</duration>
  826. <voice>1</voice>
  827. <type>eighth</type>
  828. </note>
  829. <note default-x="148">
  830. <pitch>
  831. <step>A</step>
  832. <alter>-1</alter>
  833. <octave>4</octave>
  834. </pitch>
  835. <duration>12</duration>
  836. <voice>1</voice>
  837. <type>eighth</type>
  838. <stem default-y="5.5">up</stem>
  839. <beam number="1">begin</beam>
  840. <lyric default-y="-80" number="1" relative-x="-7">
  841. <syllabic>begin</syllabic>
  842. <text>tren</text>
  843. </lyric>
  844. </note>
  845. <note default-x="178">
  846. <pitch>
  847. <step>G</step>
  848. <octave>4</octave>
  849. </pitch>
  850. <duration>12</duration>
  851. <voice>1</voice>
  852. <type>eighth</type>
  853. <stem default-y="5.5">up</stem>
  854. <beam number="1">end</beam>
  855. <lyric default-y="-80" number="1" relative-x="7">
  856. <syllabic>end</syllabic>
  857. <text>nend</text>
  858. </lyric>
  859. </note>
  860. </measure>
  861. <!--=======================================================-->
  862. <measure number="14" width="233">
  863. <note default-x="19">
  864. <pitch>
  865. <step>F</step>
  866. <octave>4</octave>
  867. </pitch>
  868. <duration>12</duration>
  869. <voice>1</voice>
  870. <type>eighth</type>
  871. <stem default-y="4">up</stem>
  872. <beam number="1">begin</beam>
  873. <lyric default-y="-80" number="1" relative-x="-6">
  874. <syllabic>begin</syllabic>
  875. <text>lie</text>
  876. </lyric>
  877. </note>
  878. <note default-x="50">
  879. <pitch>
  880. <step>A</step>
  881. <alter>-1</alter>
  882. <octave>4</octave>
  883. </pitch>
  884. <duration>12</duration>
  885. <voice>1</voice>
  886. <type>eighth</type>
  887. <stem default-y="5.5">up</stem>
  888. <beam number="1">end</beam>
  889. <lyric default-y="-80" number="1">
  890. <syllabic>end</syllabic>
  891. <text>gen</text>
  892. </lyric>
  893. </note>
  894. <note default-x="82">
  895. <pitch>
  896. <step>C</step>
  897. <octave>5</octave>
  898. </pitch>
  899. <duration>24</duration>
  900. <voice>1</voice>
  901. <type>quarter</type>
  902. <stem default-y="-50">down</stem>
  903. <lyric default-y="-80" number="1" relative-x="7">
  904. <syllabic>single</syllabic>
  905. <text>Berg</text>
  906. </lyric>
  907. </note>
  908. <note default-x="165">
  909. <pitch>
  910. <step>C</step>
  911. <octave>5</octave>
  912. </pitch>
  913. <duration>24</duration>
  914. <voice>1</voice>
  915. <type>quarter</type>
  916. <stem default-y="-50">down</stem>
  917. <lyric default-y="-80" number="1">
  918. <syllabic>single</syllabic>
  919. <text>und</text>
  920. </lyric>
  921. </note>
  922. </measure>
  923. <!--=======================================================-->
  924. <measure number="15" width="226">
  925. <note default-x="20">
  926. <pitch>
  927. <step>F</step>
  928. <octave>4</octave>
  929. </pitch>
  930. <duration>24</duration>
  931. <voice>1</voice>
  932. <type>quarter</type>
  933. <stem default-y="0.5">up</stem>
  934. <lyric default-y="-80" number="1">
  935. <syllabic>single</syllabic>
  936. <text>Thal</text>
  937. </lyric>
  938. </note>
  939. <note default-x="82">
  940. <pitch>
  941. <step>B</step>
  942. <alter>-1</alter>
  943. <octave>4</octave>
  944. </pitch>
  945. <duration>36</duration>
  946. <voice>1</voice>
  947. <type>quarter</type>
  948. <dot/>
  949. <stem default-y="-55">down</stem>
  950. <lyric default-y="-80" number="1">
  951. <syllabic>begin</syllabic>
  952. <text>zwi</text>
  953. </lyric>
  954. </note>
  955. <note default-x="184">
  956. <pitch>
  957. <step>C</step>
  958. <octave>5</octave>
  959. </pitch>
  960. <duration>12</duration>
  961. <voice>1</voice>
  962. <type>eighth</type>
  963. <stem default-y="-50">down</stem>
  964. <lyric default-y="-80" number="1">
  965. <syllabic>end</syllabic>
  966. <text>schen</text>
  967. </lyric>
  968. </note>
  969. </measure>
  970. </part>
  971. <!--=========================================================-->
  972. <part id="P2">
  973. <measure number="1" width="324">
  974. <print>
  975. <staff-layout number="2">
  976. <staff-distance>70</staff-distance>
  977. </staff-layout>
  978. <measure-numbering>none</measure-numbering>
  979. </print>
  980. <attributes>
  981. <divisions>96</divisions>
  982. <key>
  983. <fifths>-3</fifths>
  984. <mode>major</mode>
  985. </key>
  986. <time>
  987. <beats>3</beats>
  988. <beat-type>4</beat-type>
  989. </time>
  990. <staves>2</staves>
  991. <clef number="1">
  992. <sign>G</sign>
  993. <line>2</line>
  994. </clef>
  995. <clef number="2">
  996. <sign>F</sign>
  997. <line>4</line>
  998. </clef>
  999. </attributes>
  1000. <direction placement="below">
  1001. <direction-type>
  1002. <dynamics default-y="-81">
  1003. <p/>
  1004. </dynamics>
  1005. </direction-type>
  1006. <staff>1</staff>
  1007. <sound dynamics="54"/>
  1008. </direction>
  1009. <note default-x="136">
  1010. <pitch>
  1011. <step>B</step>
  1012. <alter>-1</alter>
  1013. <octave>3</octave>
  1014. </pitch>
  1015. <duration>96</duration>
  1016. <voice>1</voice>
  1017. <type>quarter</type>
  1018. <stem default-y="15.5">up</stem>
  1019. <staff>1</staff>
  1020. </note>
  1021. <note default-x="136">
  1022. <chord/>
  1023. <pitch>
  1024. <step>E</step>
  1025. <alter>-1</alter>
  1026. <octave>4</octave>
  1027. </pitch>
  1028. <duration>96</duration>
  1029. <voice>1</voice>
  1030. <type>quarter</type>
  1031. <stem>up</stem>
  1032. <staff>1</staff>
  1033. </note>
  1034. <note default-x="136">
  1035. <chord/>
  1036. <pitch>
  1037. <step>G</step>
  1038. <octave>4</octave>
  1039. </pitch>
  1040. <duration>96</duration>
  1041. <voice>1</voice>
  1042. <type>quarter</type>
  1043. <stem>up</stem>
  1044. <staff>1</staff>
  1045. </note>
  1046. <note default-x="136">
  1047. <chord/>
  1048. <pitch>
  1049. <step>B</step>
  1050. <alter>-1</alter>
  1051. <octave>4</octave>
  1052. </pitch>
  1053. <duration>96</duration>
  1054. <voice>1</voice>
  1055. <type>quarter</type>
  1056. <stem>up</stem>
  1057. <staff>1</staff>
  1058. </note>
  1059. <note default-x="196">
  1060. <pitch>
  1061. <step>B</step>
  1062. <alter>-1</alter>
  1063. <octave>4</octave>
  1064. </pitch>
  1065. <duration>96</duration>
  1066. <voice>1</voice>
  1067. <type>quarter</type>
  1068. <stem default-y="-55">down</stem>
  1069. <staff>1</staff>
  1070. <notations>
  1071. <slur bezier-x="19" bezier-y="12" default-x="7" default-y="-11" number="1" placement="above" type="start"/>
  1072. </notations>
  1073. </note>
  1074. <note default-x="257">
  1075. <pitch>
  1076. <step>A</step>
  1077. <alter>-1</alter>
  1078. <octave>4</octave>
  1079. </pitch>
  1080. <duration>96</duration>
  1081. <voice>1</voice>
  1082. <type>quarter</type>
  1083. <stem default-y="10.5">up</stem>
  1084. <staff>1</staff>
  1085. <notations>
  1086. <slur bezier-x="-16" bezier-y="14" default-x="7" default-y="-15" number="1" type="stop"/>
  1087. </notations>
  1088. </note>
  1089. <backup>
  1090. <duration>288</duration>
  1091. </backup>
  1092. <direction placement="below">
  1093. <direction-type>
  1094. <pedal default-y="-96" line="no" relative-x="-9" type="start"/>
  1095. </direction-type>
  1096. <staff>2</staff>
  1097. <sound damper-pedal="yes"/>
  1098. </direction>
  1099. <note default-x="136">
  1100. <pitch>
  1101. <step>E</step>
  1102. <alter>-1</alter>
  1103. <octave>2</octave>
  1104. </pitch>
  1105. <duration>96</duration>
  1106. <voice>3</voice>
  1107. <type>quarter</type>
  1108. <stem default-y="18">up</stem>
  1109. <staff>2</staff>
  1110. </note>
  1111. <note default-x="136">
  1112. <chord/>
  1113. <pitch>
  1114. <step>E</step>
  1115. <alter>-1</alter>
  1116. <octave>3</octave>
  1117. </pitch>
  1118. <duration>96</duration>
  1119. <voice>3</voice>
  1120. <type>quarter</type>
  1121. <stem>up</stem>
  1122. <staff>2</staff>
  1123. </note>
  1124. <attributes>
  1125. <clef number="2">
  1126. <sign>G</sign>
  1127. <line>2</line>
  1128. </clef>
  1129. </attributes>
  1130. <direction placement="below">
  1131. <direction-type>
  1132. <pedal default-y="-95" line="no" type="stop"/>
  1133. </direction-type>
  1134. <offset sound="yes">32</offset>
  1135. <staff>2</staff>
  1136. <sound damper-pedal="no"/>
  1137. </direction>
  1138. <note default-x="196">
  1139. <pitch>
  1140. <step>G</step>
  1141. <octave>4</octave>
  1142. </pitch>
  1143. <duration>96</duration>
  1144. <voice>3</voice>
  1145. <type>quarter</type>
  1146. <stem default-y="5.5">up</stem>
  1147. <staff>2</staff>
  1148. <notations>
  1149. <slur bezier-x="17" bezier-y="-14" default-x="7" default-y="-42" number="1" placement="below" type="start"/>
  1150. </notations>
  1151. </note>
  1152. <note default-x="257">
  1153. <pitch>
  1154. <step>F</step>
  1155. <octave>4</octave>
  1156. </pitch>
  1157. <duration>96</duration>
  1158. <voice>3</voice>
  1159. <type>quarter</type>
  1160. <stem default-y="0.5">up</stem>
  1161. <staff>2</staff>
  1162. <notations>
  1163. <slur bezier-x="-18" bezier-y="-12" default-x="7" default-y="-45" number="1" type="stop"/>
  1164. </notations>
  1165. </note>
  1166. </measure>
  1167. <!--=======================================================-->
  1168. <measure number="2" width="261">
  1169. <note default-x="15">
  1170. <pitch>
  1171. <step>G</step>
  1172. <octave>4</octave>
  1173. </pitch>
  1174. <duration>96</duration>
  1175. <voice>1</voice>
  1176. <type>quarter</type>
  1177. <stem default-y="5.5">up</stem>
  1178. <staff>1</staff>
  1179. </note>
  1180. <note default-x="79">
  1181. <pitch>
  1182. <step>G</step>
  1183. <octave>3</octave>
  1184. </pitch>
  1185. <duration>96</duration>
  1186. <voice>1</voice>
  1187. <type>quarter</type>
  1188. <stem default-y="5.5">up</stem>
  1189. <staff>1</staff>
  1190. </note>
  1191. <note default-x="79">
  1192. <chord/>
  1193. <pitch>
  1194. <step>E</step>
  1195. <alter>-1</alter>
  1196. <octave>4</octave>
  1197. </pitch>
  1198. <duration>96</duration>
  1199. <voice>1</voice>
  1200. <type>quarter</type>
  1201. <stem>up</stem>
  1202. <staff>1</staff>
  1203. </note>
  1204. <note default-x="79">
  1205. <chord/>
  1206. <pitch>
  1207. <step>G</step>
  1208. <octave>4</octave>
  1209. </pitch>
  1210. <duration>96</duration>
  1211. <voice>1</voice>
  1212. <type>quarter</type>
  1213. <stem>up</stem>
  1214. <staff>1</staff>
  1215. </note>
  1216. <note default-x="158">
  1217. <rest/>
  1218. <duration>96</duration>
  1219. <voice>1</voice>
  1220. <type>quarter</type>
  1221. <staff>1</staff>
  1222. </note>
  1223. <backup>
  1224. <duration>288</duration>
  1225. </backup>
  1226. <note default-x="15">
  1227. <pitch>
  1228. <step>E</step>
  1229. <alter>-1</alter>
  1230. <octave>4</octave>
  1231. </pitch>
  1232. <duration>96</duration>
  1233. <voice>3</voice>
  1234. <type>quarter</type>
  1235. <stem default-y="-4.5">up</stem>
  1236. <staff>2</staff>
  1237. </note>
  1238. <attributes>
  1239. <clef number="2">
  1240. <sign>F</sign>
  1241. <line>4</line>
  1242. </clef>
  1243. </attributes>
  1244. <direction placement="below">
  1245. <direction-type>
  1246. <pedal default-y="-95" line="no" type="start"/>
  1247. </direction-type>
  1248. <offset sound="yes">-17</offset>
  1249. <staff>2</staff>
  1250. <sound damper-pedal="yes"/>
  1251. </direction>
  1252. <note default-x="79">
  1253. <pitch>
  1254. <step>E</step>
  1255. <alter>-1</alter>
  1256. <octave>2</octave>
  1257. </pitch>
  1258. <duration>96</duration>
  1259. <voice>3</voice>
  1260. <type>quarter</type>
  1261. <stem default-y="18">up</stem>
  1262. <staff>2</staff>
  1263. </note>
  1264. <note default-x="79">
  1265. <chord/>
  1266. <pitch>
  1267. <step>E</step>
  1268. <alter>-1</alter>
  1269. <octave>3</octave>
  1270. </pitch>
  1271. <duration>96</duration>
  1272. <voice>3</voice>
  1273. <type>quarter</type>
  1274. <stem>up</stem>
  1275. <staff>2</staff>
  1276. </note>
  1277. <direction placement="below">
  1278. <direction-type>
  1279. <pedal default-y="-95" line="no" type="stop"/>
  1280. </direction-type>
  1281. <offset sound="yes">-6</offset>
  1282. <staff>2</staff>
  1283. <sound damper-pedal="no"/>
  1284. </direction>
  1285. <note default-x="158">
  1286. <rest/>
  1287. <duration>96</duration>
  1288. <voice>3</voice>
  1289. <type>quarter</type>
  1290. <staff>2</staff>
  1291. </note>
  1292. </measure>
  1293. <!--=======================================================-->
  1294. <measure number="3" width="245">
  1295. <note default-x="16">
  1296. <rest/>
  1297. <duration>96</duration>
  1298. <voice>1</voice>
  1299. <type>quarter</type>
  1300. <staff>1</staff>
  1301. </note>
  1302. <note default-x="71">
  1303. <pitch>
  1304. <step>G</step>
  1305. <octave>3</octave>
  1306. </pitch>
  1307. <duration>96</duration>
  1308. <voice>1</voice>
  1309. <type>quarter</type>
  1310. <stem default-y="5.5">up</stem>
  1311. <staff>1</staff>
  1312. </note>
  1313. <note default-x="71">
  1314. <chord/>
  1315. <pitch>
  1316. <step>C</step>
  1317. <octave>4</octave>
  1318. </pitch>
  1319. <duration>96</duration>
  1320. <voice>1</voice>
  1321. <type>quarter</type>
  1322. <stem>up</stem>
  1323. <staff>1</staff>
  1324. </note>
  1325. <note default-x="71">
  1326. <chord/>
  1327. <pitch>
  1328. <step>E</step>
  1329. <alter>-1</alter>
  1330. <octave>4</octave>
  1331. </pitch>
  1332. <duration>96</duration>
  1333. <voice>1</voice>
  1334. <type>quarter</type>
  1335. <stem>up</stem>
  1336. <staff>1</staff>
  1337. </note>
  1338. <note default-x="71">
  1339. <chord/>
  1340. <pitch>
  1341. <step>G</step>
  1342. <octave>4</octave>
  1343. </pitch>
  1344. <duration>96</duration>
  1345. <voice>1</voice>
  1346. <type>quarter</type>
  1347. <stem>up</stem>
  1348. <staff>1</staff>
  1349. </note>
  1350. <note default-x="155">
  1351. <rest/>
  1352. <duration>48</duration>
  1353. <voice>1</voice>
  1354. <type>eighth</type>
  1355. <staff>1</staff>
  1356. </note>
  1357. <note default-x="196">
  1358. <pitch>
  1359. <step>G</step>
  1360. <octave>3</octave>
  1361. </pitch>
  1362. <duration>48</duration>
  1363. <voice>1</voice>
  1364. <type>eighth</type>
  1365. <stem default-y="5.5">up</stem>
  1366. <staff>1</staff>
  1367. </note>
  1368. <note default-x="196">
  1369. <chord/>
  1370. <pitch>
  1371. <step>E</step>
  1372. <alter>-1</alter>
  1373. <octave>4</octave>
  1374. </pitch>
  1375. <duration>48</duration>
  1376. <voice>1</voice>
  1377. <type>eighth</type>
  1378. <stem>up</stem>
  1379. <staff>1</staff>
  1380. </note>
  1381. <note default-x="196">
  1382. <chord/>
  1383. <pitch>
  1384. <step>G</step>
  1385. <octave>4</octave>
  1386. </pitch>
  1387. <duration>48</duration>
  1388. <voice>1</voice>
  1389. <type>eighth</type>
  1390. <stem>up</stem>
  1391. <staff>1</staff>
  1392. </note>
  1393. <backup>
  1394. <duration>288</duration>
  1395. </backup>
  1396. <note default-x="16">
  1397. <rest/>
  1398. <duration>96</duration>
  1399. <voice>3</voice>
  1400. <type>quarter</type>
  1401. <staff>2</staff>
  1402. </note>
  1403. <direction placement="below">
  1404. <direction-type>
  1405. <pedal default-y="-95" line="no" type="start"/>
  1406. </direction-type>
  1407. <offset sound="yes">-22</offset>
  1408. <staff>2</staff>
  1409. <sound damper-pedal="yes"/>
  1410. </direction>
  1411. <note default-x="71">
  1412. <pitch>
  1413. <step>C</step>
  1414. <octave>2</octave>
  1415. </pitch>
  1416. <duration>96</duration>
  1417. <voice>3</voice>
  1418. <type>quarter</type>
  1419. <stem default-y="10.5">up</stem>
  1420. <staff>2</staff>
  1421. </note>
  1422. <note default-x="71">
  1423. <chord/>
  1424. <pitch>
  1425. <step>C</step>
  1426. <octave>3</octave>
  1427. </pitch>
  1428. <duration>96</duration>
  1429. <voice>3</voice>
  1430. <type>quarter</type>
  1431. <stem>up</stem>
  1432. <staff>2</staff>
  1433. </note>
  1434. <direction placement="below">
  1435. <direction-type>
  1436. <pedal default-y="-95" line="no" type="stop"/>
  1437. </direction-type>
  1438. <staff>2</staff>
  1439. <sound damper-pedal="no"/>
  1440. </direction>
  1441. <note default-x="155">
  1442. <rest/>
  1443. <duration>48</duration>
  1444. <voice>3</voice>
  1445. <type>eighth</type>
  1446. <staff>2</staff>
  1447. </note>
  1448. <note default-x="196">
  1449. <pitch>
  1450. <step>B</step>
  1451. <alter>-1</alter>
  1452. <octave>1</octave>
  1453. </pitch>
  1454. <duration>48</duration>
  1455. <voice>3</voice>
  1456. <type>eighth</type>
  1457. <stem default-y="5.5">up</stem>
  1458. <staff>2</staff>
  1459. </note>
  1460. <note default-x="196">
  1461. <chord/>
  1462. <pitch>
  1463. <step>B</step>
  1464. <alter>-1</alter>
  1465. <octave>2</octave>
  1466. </pitch>
  1467. <duration>48</duration>
  1468. <voice>3</voice>
  1469. <type>eighth</type>
  1470. <stem>up</stem>
  1471. <staff>2</staff>
  1472. </note>
  1473. </measure>
  1474. <!--=======================================================-->
  1475. <measure number="4" width="220">
  1476. <note default-x="20">
  1477. <pitch>
  1478. <step>F</step>
  1479. <octave>4</octave>
  1480. </pitch>
  1481. <duration>48</duration>
  1482. <voice>1</voice>
  1483. <type>eighth</type>
  1484. <stem default-y="4">up</stem>
  1485. <staff>1</staff>
  1486. <beam number="1">begin</beam>
  1487. <notations>
  1488. <slur bezier-x="25" bezier-y="20" default-x="13" default-y="5" number="1" placement="above" type="start"/>
  1489. </notations>
  1490. </note>
  1491. <note default-x="61">
  1492. <pitch>
  1493. <step>A</step>
  1494. <alter>-1</alter>
  1495. <octave>4</octave>
  1496. </pitch>
  1497. <duration>48</duration>
  1498. <voice>1</voice>
  1499. <type>eighth</type>
  1500. <stem default-y="5.5">up</stem>
  1501. <staff>1</staff>
  1502. <beam number="1">end</beam>
  1503. </note>
  1504. <note default-x="103">
  1505. <pitch>
  1506. <step>C</step>
  1507. <octave>5</octave>
  1508. </pitch>
  1509. <duration>96</duration>
  1510. <voice>1</voice>
  1511. <type>quarter</type>
  1512. <stem default-y="18">up</stem>
  1513. <staff>1</staff>
  1514. <notations>
  1515. <slur bezier-x="-15" bezier-y="23" default-x="9" default-y="-2" number="1" type="stop"/>
  1516. </notations>
  1517. </note>
  1518. <note default-x="158">
  1519. <pitch>
  1520. <step>C</step>
  1521. <octave>5</octave>
  1522. </pitch>
  1523. <duration>96</duration>
  1524. <voice>1</voice>
  1525. <type>quarter</type>
  1526. <stem default-y="18">up</stem>
  1527. <staff>1</staff>
  1528. </note>
  1529. <backup>
  1530. <duration>288</duration>
  1531. </backup>
  1532. <note default-x="20">
  1533. <pitch>
  1534. <step>C</step>
  1535. <octave>4</octave>
  1536. </pitch>
  1537. <duration>96</duration>
  1538. <voice>2</voice>
  1539. <type>quarter</type>
  1540. <stem default-y="-75">down</stem>
  1541. <staff>1</staff>
  1542. </note>
  1543. <note default-x="103">
  1544. <pitch>
  1545. <step>C</step>
  1546. <octave>4</octave>
  1547. </pitch>
  1548. <duration>96</duration>
  1549. <voice>2</voice>
  1550. <type>quarter</type>
  1551. <stem default-y="-75">down</stem>
  1552. <staff>1</staff>
  1553. </note>
  1554. <note default-x="103">
  1555. <chord/>
  1556. <pitch>
  1557. <step>F</step>
  1558. <octave>4</octave>
  1559. </pitch>
  1560. <duration>96</duration>
  1561. <voice>2</voice>
  1562. <type>quarter</type>
  1563. <stem>down</stem>
  1564. <staff>1</staff>
  1565. </note>
  1566. <note default-x="158">
  1567. <pitch>
  1568. <step>C</step>
  1569. <octave>4</octave>
  1570. </pitch>
  1571. <duration>96</duration>
  1572. <voice>2</voice>
  1573. <type>quarter</type>
  1574. <stem default-y="-75">down</stem>
  1575. <staff>1</staff>
  1576. <notations>
  1577. <slur bezier-x="13" bezier-y="-13" default-x="10" default-y="-42" number="1" placement="below" type="start"/>
  1578. <slur bezier-x="-16" bezier-y="-11" default-x="72" default-y="-49" number="1" type="continue"/>
  1579. </notations>
  1580. </note>
  1581. <note default-x="146">
  1582. <chord/>
  1583. <pitch>
  1584. <step>E</step>
  1585. <alter>-1</alter>
  1586. <octave>4</octave>
  1587. </pitch>
  1588. <duration>96</duration>
  1589. <voice>2</voice>
  1590. <type>quarter</type>
  1591. <stem>down</stem>
  1592. <staff>1</staff>
  1593. </note>
  1594. <note default-x="158">
  1595. <chord/>
  1596. <pitch>
  1597. <step>F</step>
  1598. <octave>4</octave>
  1599. </pitch>
  1600. <duration>96</duration>
  1601. <tie type="start"/>
  1602. <voice>2</voice>
  1603. <type>quarter</type>
  1604. <stem>down</stem>
  1605. <staff>1</staff>
  1606. <notations>
  1607. <tied orientation="over" type="start"/>
  1608. </notations>
  1609. </note>
  1610. <backup>
  1611. <duration>288</duration>
  1612. </backup>
  1613. <note default-x="20">
  1614. <pitch>
  1615. <step>A</step>
  1616. <alter>-1</alter>
  1617. <octave>1</octave>
  1618. </pitch>
  1619. <duration>96</duration>
  1620. <voice>3</voice>
  1621. <type>quarter</type>
  1622. <stem default-y="0.5">up</stem>
  1623. <staff>2</staff>
  1624. </note>
  1625. <note default-x="20">
  1626. <chord/>
  1627. <pitch>
  1628. <step>A</step>
  1629. <alter>-1</alter>
  1630. <octave>2</octave>
  1631. </pitch>
  1632. <duration>96</duration>
  1633. <voice>3</voice>
  1634. <type>quarter</type>
  1635. <stem>up</stem>
  1636. <staff>2</staff>
  1637. </note>
  1638. <note default-x="103">
  1639. <pitch>
  1640. <step>A</step>
  1641. <alter>-1</alter>
  1642. <octave>1</octave>
  1643. </pitch>
  1644. <duration>96</duration>
  1645. <voice>3</voice>
  1646. <type>quarter</type>
  1647. <stem default-y="0.5">up</stem>
  1648. <staff>2</staff>
  1649. <notations>
  1650. <slur bezier-x="27" bezier-y="-22" default-x="7" default-y="-81" number="2" placement="below" type="start"/>
  1651. <slur bezier-x="-28" bezier-y="-19" default-x="114" default-y="-85" number="2" type="continue"/>
  1652. </notations>
  1653. </note>
  1654. <note default-x="103">
  1655. <chord/>
  1656. <pitch>
  1657. <step>A</step>
  1658. <alter>-1</alter>
  1659. <octave>2</octave>
  1660. </pitch>
  1661. <duration>96</duration>
  1662. <voice>3</voice>
  1663. <type>quarter</type>
  1664. <stem>up</stem>
  1665. <staff>2</staff>
  1666. </note>
  1667. <note default-x="158">
  1668. <pitch>
  1669. <step>A</step>
  1670. <octave>1</octave>
  1671. </pitch>
  1672. <duration>96</duration>
  1673. <voice>3</voice>
  1674. <type>quarter</type>
  1675. <accidental>natural</accidental>
  1676. <stem default-y="0.5">up</stem>
  1677. <staff>2</staff>
  1678. </note>
  1679. <note default-x="158">
  1680. <chord/>
  1681. <pitch>
  1682. <step>A</step>
  1683. <octave>2</octave>
  1684. </pitch>
  1685. <duration>96</duration>
  1686. <voice>3</voice>
  1687. <type>quarter</type>
  1688. <accidental>natural</accidental>
  1689. <stem>up</stem>
  1690. <staff>2</staff>
  1691. </note>
  1692. </measure>
  1693. <!--=======================================================-->
  1694. <measure number="5" width="267">
  1695. <print new-system="yes">
  1696. <staff-layout number="2">
  1697. <staff-distance>70</staff-distance>
  1698. </staff-layout>
  1699. </print>
  1700. <forward>
  1701. <duration>96</duration>
  1702. <voice>1</voice>
  1703. <staff>1</staff>
  1704. </forward>
  1705. <note default-x="154">
  1706. <pitch>
  1707. <step>B</step>
  1708. <alter>-1</alter>
  1709. <octave>4</octave>
  1710. </pitch>
  1711. <duration>144</duration>
  1712. <voice>1</voice>
  1713. <type>quarter</type>
  1714. <dot/>
  1715. <stem default-y="15.5">up</stem>
  1716. <staff>1</staff>
  1717. <notations>
  1718. <slur bezier-x="45" bezier-y="36" default-x="15" default-y="5" number="3" placement="above" type="start"/>
  1719. </notations>
  1720. </note>
  1721. <note default-x="225">
  1722. <pitch>
  1723. <step>C</step>
  1724. <octave>5</octave>
  1725. </pitch>
  1726. <duration>48</duration>
  1727. <voice>1</voice>
  1728. <type>eighth</type>
  1729. <stem default-y="18">up</stem>
  1730. <staff>1</staff>
  1731. </note>
  1732. <backup>
  1733. <duration>288</duration>
  1734. </backup>
  1735. <note default-x="108">
  1736. <pitch>
  1737. <step>D</step>
  1738. <octave>4</octave>
  1739. </pitch>
  1740. <duration>96</duration>
  1741. <voice>2</voice>
  1742. <type>quarter</type>
  1743. <stem default-y="0.5">up</stem>
  1744. <staff>1</staff>
  1745. <notations>
  1746. <slur bezier-x2="11" bezier-y2="-7" default-x="-26" default-y="-60" number="1" type="continue"/>
  1747. <slur bezier-x="-7" bezier-y="-12" default-x="6" default-y="-53" number="1" type="stop"/>
  1748. </notations>
  1749. </note>
  1750. <note default-x="108">
  1751. <chord/>
  1752. <pitch>
  1753. <step>F</step>
  1754. <octave>4</octave>
  1755. </pitch>
  1756. <duration>96</duration>
  1757. <tie type="stop"/>
  1758. <voice>2</voice>
  1759. <type>quarter</type>
  1760. <stem>up</stem>
  1761. <staff>1</staff>
  1762. <notations>
  1763. <tied type="stop"/>
  1764. </notations>
  1765. </note>
  1766. <note default-x="154">
  1767. <pitch>
  1768. <step>F</step>
  1769. <octave>4</octave>
  1770. </pitch>
  1771. <duration>96</duration>
  1772. <voice>2</voice>
  1773. <type>quarter</type>
  1774. <stem default-y="-63">down</stem>
  1775. <staff>1</staff>
  1776. </note>
  1777. <note default-x="201">
  1778. <pitch>
  1779. <step>G</step>
  1780. <octave>4</octave>
  1781. </pitch>
  1782. <duration>96</duration>
  1783. <voice>2</voice>
  1784. <type>quarter</type>
  1785. <stem default-y="-60.5">down</stem>
  1786. <staff>1</staff>
  1787. </note>
  1788. <backup>
  1789. <duration>288</duration>
  1790. </backup>
  1791. <note default-x="108">
  1792. <pitch>
  1793. <step>B</step>
  1794. <alter>-1</alter>
  1795. <octave>1</octave>
  1796. </pitch>
  1797. <duration>96</duration>
  1798. <voice>3</voice>
  1799. <type>quarter</type>
  1800. <stem default-y="5.5">up</stem>
  1801. <staff>2</staff>
  1802. <notations>
  1803. <slur bezier-x2="12" bezier-y2="-13" default-x="-30" default-y="-80" number="2" type="continue"/>
  1804. <slur bezier-x="-7" bezier-y="-15" default-x="7" default-y="-75" number="2" type="stop"/>
  1805. </notations>
  1806. </note>
  1807. <note default-x="108">
  1808. <chord/>
  1809. <pitch>
  1810. <step>B</step>
  1811. <alter>-1</alter>
  1812. <octave>2</octave>
  1813. </pitch>
  1814. <duration>96</duration>
  1815. <voice>3</voice>
  1816. <type>quarter</type>
  1817. <stem>up</stem>
  1818. <staff>2</staff>
  1819. </note>
  1820. <note default-x="154">
  1821. <pitch>
  1822. <step>D</step>
  1823. <octave>3</octave>
  1824. </pitch>
  1825. <duration>96</duration>
  1826. <voice>3</voice>
  1827. <type>quarter</type>
  1828. <stem default-y="-55.5">down</stem>
  1829. <staff>2</staff>
  1830. <notations>
  1831. <slur bezier-x="33" bezier-y="36" default-x="7" default-y="-6" number="1" placement="above" type="start"/>
  1832. </notations>
  1833. </note>
  1834. <note default-x="201">
  1835. <pitch>
  1836. <step>E</step>
  1837. <alter>-1</alter>
  1838. <octave>3</octave>
  1839. </pitch>
  1840. <duration>96</duration>
  1841. <voice>3</voice>
  1842. <type>quarter</type>
  1843. <stem default-y="-50.5">down</stem>
  1844. <staff>2</staff>
  1845. </note>
  1846. </measure>
  1847. <!--=======================================================-->
  1848. <measure number="6" width="194">
  1849. <note default-x="22">
  1850. <pitch>
  1851. <step>B</step>
  1852. <alter>-1</alter>
  1853. <octave>4</octave>
  1854. </pitch>
  1855. <duration>96</duration>
  1856. <voice>1</voice>
  1857. <type>quarter</type>
  1858. <stem default-y="15.5">up</stem>
  1859. <staff>1</staff>
  1860. </note>
  1861. <note default-x="69">
  1862. <pitch>
  1863. <step>A</step>
  1864. <octave>4</octave>
  1865. </pitch>
  1866. <duration>96</duration>
  1867. <voice>1</voice>
  1868. <type>quarter</type>
  1869. <accidental>natural</accidental>
  1870. <stem default-y="10.5">up</stem>
  1871. <staff>1</staff>
  1872. <notations>
  1873. <slur bezier-x="-25" bezier-y="39" default-x="9" default-y="-5" number="3" type="stop"/>
  1874. </notations>
  1875. </note>
  1876. <note default-x="116">
  1877. <pitch>
  1878. <step>A</step>
  1879. <alter>-1</alter>
  1880. <octave>4</octave>
  1881. </pitch>
  1882. <duration>48</duration>
  1883. <voice>1</voice>
  1884. <type>eighth</type>
  1885. <accidental>flat</accidental>
  1886. <stem default-y="13">up</stem>
  1887. <staff>1</staff>
  1888. <beam number="1">begin</beam>
  1889. <notations>
  1890. <slur bezier-x="11" bezier-y="12" default-x="12" default-y="16" number="2" placement="above" type="start"/>
  1891. </notations>
  1892. </note>
  1893. <note default-x="152">
  1894. <pitch>
  1895. <step>B</step>
  1896. <alter>-1</alter>
  1897. <octave>4</octave>
  1898. </pitch>
  1899. <duration>48</duration>
  1900. <voice>1</voice>
  1901. <type>eighth</type>
  1902. <stem default-y="13">up</stem>
  1903. <staff>1</staff>
  1904. <beam number="1">end</beam>
  1905. <notations>
  1906. <slur bezier-x="-11" bezier-y="12" default-x="13" default-y="16" number="2" type="stop"/>
  1907. </notations>
  1908. </note>
  1909. <backup>
  1910. <duration>288</duration>
  1911. </backup>
  1912. <note default-x="22">
  1913. <pitch>
  1914. <step>E</step>
  1915. <alter>-1</alter>
  1916. <octave>4</octave>
  1917. </pitch>
  1918. <duration>192</duration>
  1919. <voice>2</voice>
  1920. <type>half</type>
  1921. <stem default-y="-65.5">down</stem>
  1922. <staff>1</staff>
  1923. </note>
  1924. <note default-x="22">
  1925. <chord/>
  1926. <pitch>
  1927. <step>G</step>
  1928. <alter>-1</alter>
  1929. <octave>4</octave>
  1930. </pitch>
  1931. <duration>192</duration>
  1932. <voice>2</voice>
  1933. <type>half</type>
  1934. <accidental>flat</accidental>
  1935. <stem>down</stem>
  1936. <staff>1</staff>
  1937. </note>
  1938. <note default-x="116">
  1939. <pitch>
  1940. <step>F</step>
  1941. <octave>4</octave>
  1942. </pitch>
  1943. <duration>96</duration>
  1944. <voice>2</voice>
  1945. <type>quarter</type>
  1946. <stem default-y="-63">down</stem>
  1947. <staff>1</staff>
  1948. </note>
  1949. <backup>
  1950. <duration>288</duration>
  1951. </backup>
  1952. <note default-x="22">
  1953. <pitch>
  1954. <step>C</step>
  1955. <octave>3</octave>
  1956. </pitch>
  1957. <duration>96</duration>
  1958. <voice>3</voice>
  1959. <type>quarter</type>
  1960. <stem default-y="10.5">up</stem>
  1961. <staff>2</staff>
  1962. </note>
  1963. <note default-x="69">
  1964. <pitch>
  1965. <step>C</step>
  1966. <octave>4</octave>
  1967. </pitch>
  1968. <duration>96</duration>
  1969. <voice>3</voice>
  1970. <type>quarter</type>
  1971. <stem default-y="35.5">up</stem>
  1972. <staff>2</staff>
  1973. <notations>
  1974. <slur bezier-x="-49" bezier-y="25" default-x="9" default-y="19" number="1" type="stop"/>
  1975. </notations>
  1976. </note>
  1977. <forward>
  1978. <duration>96</duration>
  1979. <voice>3</voice>
  1980. <staff>2</staff>
  1981. </forward>
  1982. <backup>
  1983. <duration>288</duration>
  1984. </backup>
  1985. <note default-x="37">
  1986. <pitch>
  1987. <step>C</step>
  1988. <octave>3</octave>
  1989. </pitch>
  1990. <duration>192</duration>
  1991. <voice>4</voice>
  1992. <type>half</type>
  1993. <stem default-y="-58">down</stem>
  1994. <staff>2</staff>
  1995. </note>
  1996. <note default-x="116">
  1997. <pitch>
  1998. <step>D</step>
  1999. <octave>3</octave>
  2000. </pitch>
  2001. <duration>96</duration>
  2002. <voice>4</voice>
  2003. <type>quarter</type>
  2004. <stem default-y="-55.5">down</stem>
  2005. <staff>2</staff>
  2006. </note>
  2007. <note default-x="116">
  2008. <chord/>
  2009. <pitch>
  2010. <step>B</step>
  2011. <alter>-1</alter>
  2012. <octave>3</octave>
  2013. </pitch>
  2014. <duration>96</duration>
  2015. <voice>4</voice>
  2016. <type>quarter</type>
  2017. <stem>down</stem>
  2018. <staff>2</staff>
  2019. </note>
  2020. <note default-x="116">
  2021. <chord/>
  2022. <pitch>
  2023. <step>D</step>
  2024. <octave>4</octave>
  2025. </pitch>
  2026. <duration>96</duration>
  2027. <voice>4</voice>
  2028. <type>quarter</type>
  2029. <stem>down</stem>
  2030. <staff>2</staff>
  2031. </note>
  2032. </measure>
  2033. <!--=======================================================-->
  2034. <measure number="7" width="178">
  2035. <note default-x="12">
  2036. <pitch>
  2037. <step>F</step>
  2038. <octave>4</octave>
  2039. </pitch>
  2040. <duration>96</duration>
  2041. <voice>1</voice>
  2042. <type>quarter</type>
  2043. <stem default-y="10.5">up</stem>
  2044. <staff>1</staff>
  2045. <notations>
  2046. <slur bezier-x="14" bezier-y="-13" default-x="7" default-y="-45" number="1" placement="below" type="start"/>
  2047. </notations>
  2048. </note>
  2049. <note default-x="12">
  2050. <chord/>
  2051. <pitch>
  2052. <step>A</step>
  2053. <alter>-1</alter>
  2054. <octave>4</octave>
  2055. </pitch>
  2056. <duration>96</duration>
  2057. <voice>1</voice>
  2058. <type>quarter</type>
  2059. <stem>up</stem>
  2060. <staff>1</staff>
  2061. </note>
  2062. <note default-x="57">
  2063. <pitch>
  2064. <step>G</step>
  2065. <octave>4</octave>
  2066. </pitch>
  2067. <duration>96</duration>
  2068. <voice>1</voice>
  2069. <type>quarter</type>
  2070. <accidental>natural</accidental>
  2071. <stem default-y="5.5">up</stem>
  2072. <staff>1</staff>
  2073. <notations>
  2074. <slur bezier-x="-12" bezier-y="-14" default-x="7" default-y="-41" number="1" type="stop"/>
  2075. </notations>
  2076. </note>
  2077. <direction placement="below">
  2078. <direction-type>
  2079. <wedge default-y="-70" spread="0" type="crescendo"/>
  2080. </direction-type>
  2081. <staff>1</staff>
  2082. </direction>
  2083. <note default-x="102">
  2084. <pitch>
  2085. <step>E</step>
  2086. <alter>-1</alter>
  2087. <octave>4</octave>
  2088. </pitch>
  2089. <duration>48</duration>
  2090. <voice>1</voice>
  2091. <type>eighth</type>
  2092. <stem default-y="23">up</stem>
  2093. <staff>1</staff>
  2094. <beam number="1">begin</beam>
  2095. </note>
  2096. <note default-x="102">
  2097. <chord/>
  2098. <pitch>
  2099. <step>B</step>
  2100. <alter>-1</alter>
  2101. <octave>4</octave>
  2102. </pitch>
  2103. <duration>48</duration>
  2104. <voice>1</voice>
  2105. <type>eighth</type>
  2106. <stem>up</stem>
  2107. <staff>1</staff>
  2108. </note>
  2109. <note default-x="102">
  2110. <chord/>
  2111. <pitch>
  2112. <step>E</step>
  2113. <alter>-1</alter>
  2114. <octave>5</octave>
  2115. </pitch>
  2116. <duration>48</duration>
  2117. <voice>1</voice>
  2118. <type>eighth</type>
  2119. <stem>up</stem>
  2120. <staff>1</staff>
  2121. </note>
  2122. <note default-x="137">
  2123. <pitch>
  2124. <step>E</step>
  2125. <alter>-1</alter>
  2126. <octave>4</octave>
  2127. </pitch>
  2128. <duration>48</duration>
  2129. <voice>1</voice>
  2130. <type>eighth</type>
  2131. <stem default-y="23">up</stem>
  2132. <staff>1</staff>
  2133. <beam number="1">end</beam>
  2134. </note>
  2135. <note default-x="137">
  2136. <chord/>
  2137. <pitch>
  2138. <step>B</step>
  2139. <alter>-1</alter>
  2140. <octave>4</octave>
  2141. </pitch>
  2142. <duration>48</duration>
  2143. <voice>1</voice>
  2144. <type>eighth</type>
  2145. <stem>up</stem>
  2146. <staff>1</staff>
  2147. </note>
  2148. <note default-x="137">
  2149. <chord/>
  2150. <pitch>
  2151. <step>D</step>
  2152. <octave>5</octave>
  2153. </pitch>
  2154. <duration>48</duration>
  2155. <voice>1</voice>
  2156. <type>eighth</type>
  2157. <stem>up</stem>
  2158. <staff>1</staff>
  2159. </note>
  2160. <direction>
  2161. <direction-type>
  2162. <wedge spread="15" type="stop"/>
  2163. </direction-type>
  2164. <offset>-8</offset>
  2165. <staff>1</staff>
  2166. </direction>
  2167. <backup>
  2168. <duration>288</duration>
  2169. </backup>
  2170. <note default-x="12">
  2171. <pitch>
  2172. <step>B</step>
  2173. <alter>-1</alter>
  2174. <octave>3</octave>
  2175. </pitch>
  2176. <duration>96</duration>
  2177. <voice>3</voice>
  2178. <type>quarter</type>
  2179. <stem default-y="30.5">up</stem>
  2180. <staff>2</staff>
  2181. <notations>
  2182. <slur bezier-x="6" bezier-y="18" default-x="15" default-y="16" number="1" placement="above" type="start"/>
  2183. </notations>
  2184. </note>
  2185. <note default-x="57">
  2186. <pitch>
  2187. <step>E</step>
  2188. <alter>-1</alter>
  2189. <octave>4</octave>
  2190. </pitch>
  2191. <duration>96</duration>
  2192. <voice>3</voice>
  2193. <type>quarter</type>
  2194. <stem default-y="45.5">up</stem>
  2195. <staff>2</staff>
  2196. <notations>
  2197. <slur bezier-x="-15" bezier-y="10" default-x="7" default-y="30" number="1" type="stop"/>
  2198. </notations>
  2199. </note>
  2200. <forward>
  2201. <duration>96</duration>
  2202. <voice>3</voice>
  2203. <staff>2</staff>
  2204. </forward>
  2205. <backup>
  2206. <duration>288</duration>
  2207. </backup>
  2208. <note default-x="12">
  2209. <pitch>
  2210. <step>E</step>
  2211. <alter>-1</alter>
  2212. <octave>3</octave>
  2213. </pitch>
  2214. <duration>192</duration>
  2215. <voice>4</voice>
  2216. <type>half</type>
  2217. <stem default-y="-50.5">down</stem>
  2218. <staff>2</staff>
  2219. </note>
  2220. <note default-x="102">
  2221. <pitch>
  2222. <step>G</step>
  2223. <octave>2</octave>
  2224. </pitch>
  2225. <duration>96</duration>
  2226. <voice>4</voice>
  2227. <type>quarter</type>
  2228. <stem default-y="-65.5">down</stem>
  2229. <staff>2</staff>
  2230. </note>
  2231. <note default-x="102">
  2232. <chord/>
  2233. <pitch>
  2234. <step>E</step>
  2235. <alter>-1</alter>
  2236. <octave>3</octave>
  2237. </pitch>
  2238. <duration>96</duration>
  2239. <voice>4</voice>
  2240. <type>quarter</type>
  2241. <stem>down</stem>
  2242. <staff>2</staff>
  2243. </note>
  2244. <note default-x="102">
  2245. <chord/>
  2246. <pitch>
  2247. <step>G</step>
  2248. <octave>3</octave>
  2249. </pitch>
  2250. <duration>96</duration>
  2251. <voice>4</voice>
  2252. <type>quarter</type>
  2253. <stem>down</stem>
  2254. <staff>2</staff>
  2255. </note>
  2256. </measure>
  2257. <!--=======================================================-->
  2258. <measure number="8" width="211">
  2259. <direction placement="below">
  2260. <direction-type>
  2261. <wedge default-y="-70" spread="15" type="diminuendo"/>
  2262. </direction-type>
  2263. <staff>1</staff>
  2264. </direction>
  2265. <note default-x="12">
  2266. <pitch>
  2267. <step>E</step>
  2268. <alter>-1</alter>
  2269. <octave>4</octave>
  2270. </pitch>
  2271. <duration>96</duration>
  2272. <voice>1</voice>
  2273. <type>quarter</type>
  2274. <stem default-y="20.5">up</stem>
  2275. <staff>1</staff>
  2276. <notations>
  2277. <slur bezier-x="14" bezier-y="8" default-x="15" default-y="3" number="1" placement="above" type="start"/>
  2278. </notations>
  2279. </note>
  2280. <note default-x="12">
  2281. <chord/>
  2282. <pitch>
  2283. <step>B</step>
  2284. <alter>-1</alter>
  2285. <octave>4</octave>
  2286. </pitch>
  2287. <duration>96</duration>
  2288. <voice>1</voice>
  2289. <type>quarter</type>
  2290. <stem>up</stem>
  2291. <staff>1</staff>
  2292. </note>
  2293. <note default-x="12">
  2294. <chord/>
  2295. <pitch>
  2296. <step>D</step>
  2297. <octave>5</octave>
  2298. </pitch>
  2299. <duration>96</duration>
  2300. <voice>1</voice>
  2301. <type>quarter</type>
  2302. <stem>up</stem>
  2303. <staff>1</staff>
  2304. </note>
  2305. <note default-x="60">
  2306. <pitch>
  2307. <step>E</step>
  2308. <alter>-1</alter>
  2309. <octave>4</octave>
  2310. </pitch>
  2311. <duration>48</duration>
  2312. <voice>1</voice>
  2313. <type>eighth</type>
  2314. <stem default-y="18">up</stem>
  2315. <staff>1</staff>
  2316. <beam number="1">begin</beam>
  2317. <notations>
  2318. <slur bezier-x="-8" bezier-y="14" default-x="7" default-y="-7" number="1" type="stop"/>
  2319. </notations>
  2320. </note>
  2321. <note default-x="60">
  2322. <chord/>
  2323. <pitch>
  2324. <step>A</step>
  2325. <alter>-1</alter>
  2326. <octave>4</octave>
  2327. </pitch>
  2328. <duration>48</duration>
  2329. <voice>1</voice>
  2330. <type>eighth</type>
  2331. <stem>up</stem>
  2332. <staff>1</staff>
  2333. </note>
  2334. <note default-x="60">
  2335. <chord/>
  2336. <pitch>
  2337. <step>C</step>
  2338. <octave>5</octave>
  2339. </pitch>
  2340. <duration>48</duration>
  2341. <voice>1</voice>
  2342. <type>eighth</type>
  2343. <stem>up</stem>
  2344. <staff>1</staff>
  2345. </note>
  2346. <direction>
  2347. <direction-type>
  2348. <wedge spread="0" type="stop"/>
  2349. </direction-type>
  2350. <offset>-17</offset>
  2351. <staff>1</staff>
  2352. </direction>
  2353. <note default-x="95">
  2354. <pitch>
  2355. <step>E</step>
  2356. <alter>-1</alter>
  2357. <octave>4</octave>
  2358. </pitch>
  2359. <duration>48</duration>
  2360. <voice>1</voice>
  2361. <type>eighth</type>
  2362. <stem default-y="13">up</stem>
  2363. <staff>1</staff>
  2364. <beam number="1">continue</beam>
  2365. </note>
  2366. <note default-x="95">
  2367. <chord/>
  2368. <pitch>
  2369. <step>G</step>
  2370. <octave>4</octave>
  2371. </pitch>
  2372. <duration>48</duration>
  2373. <voice>1</voice>
  2374. <type>eighth</type>
  2375. <stem>up</stem>
  2376. <staff>1</staff>
  2377. </note>
  2378. <note default-x="95">
  2379. <chord/>
  2380. <pitch>
  2381. <step>B</step>
  2382. <alter>-1</alter>
  2383. <octave>4</octave>
  2384. </pitch>
  2385. <duration>48</duration>
  2386. <voice>1</voice>
  2387. <type>eighth</type>
  2388. <stem>up</stem>
  2389. <staff>1</staff>
  2390. </note>
  2391. <note default-x="132">
  2392. <pitch>
  2393. <step>D</step>
  2394. <octave>4</octave>
  2395. </pitch>
  2396. <duration>48</duration>
  2397. <voice>1</voice>
  2398. <type>eighth</type>
  2399. <stem default-y="8">up</stem>
  2400. <staff>1</staff>
  2401. <beam number="1">continue</beam>
  2402. </note>
  2403. <note default-x="132">
  2404. <chord/>
  2405. <pitch>
  2406. <step>F</step>
  2407. <octave>4</octave>
  2408. </pitch>
  2409. <duration>48</duration>
  2410. <voice>1</voice>
  2411. <type>eighth</type>
  2412. <stem>up</stem>
  2413. <staff>1</staff>
  2414. </note>
  2415. <note default-x="132">
  2416. <chord/>
  2417. <pitch>
  2418. <step>A</step>
  2419. <alter>-1</alter>
  2420. <octave>4</octave>
  2421. </pitch>
  2422. <duration>48</duration>
  2423. <voice>1</voice>
  2424. <type>eighth</type>
  2425. <stem>up</stem>
  2426. <staff>1</staff>
  2427. </note>
  2428. <note default-x="168">
  2429. <pitch>
  2430. <step>A</step>
  2431. <alter>-1</alter>
  2432. <octave>3</octave>
  2433. </pitch>
  2434. <duration>48</duration>
  2435. <voice>1</voice>
  2436. <type>eighth</type>
  2437. <stem default-y="3">up</stem>
  2438. <staff>1</staff>
  2439. <beam number="1">end</beam>
  2440. </note>
  2441. <note default-x="168">
  2442. <chord/>
  2443. <pitch>
  2444. <step>D</step>
  2445. <octave>4</octave>
  2446. </pitch>
  2447. <duration>48</duration>
  2448. <voice>1</voice>
  2449. <type>eighth</type>
  2450. <stem>up</stem>
  2451. <staff>1</staff>
  2452. </note>
  2453. <note default-x="168">
  2454. <chord/>
  2455. <pitch>
  2456. <step>F</step>
  2457. <octave>4</octave>
  2458. </pitch>
  2459. <duration>48</duration>
  2460. <voice>1</voice>
  2461. <type>eighth</type>
  2462. <stem>up</stem>
  2463. <staff>1</staff>
  2464. </note>
  2465. <backup>
  2466. <duration>288</duration>
  2467. </backup>
  2468. <note default-x="12">
  2469. <pitch>
  2470. <step>A</step>
  2471. <alter>-1</alter>
  2472. <octave>2</octave>
  2473. </pitch>
  2474. <duration>96</duration>
  2475. <voice>3</voice>
  2476. <type>quarter</type>
  2477. <stem default-y="-63">down</stem>
  2478. <staff>2</staff>
  2479. </note>
  2480. <note default-x="12">
  2481. <chord/>
  2482. <pitch>
  2483. <step>E</step>
  2484. <alter>-1</alter>
  2485. <octave>3</octave>
  2486. </pitch>
  2487. <duration>96</duration>
  2488. <voice>3</voice>
  2489. <type>quarter</type>
  2490. <stem>down</stem>
  2491. <staff>2</staff>
  2492. </note>
  2493. <note default-x="12">
  2494. <chord/>
  2495. <pitch>
  2496. <step>A</step>
  2497. <alter>-1</alter>
  2498. <octave>3</octave>
  2499. </pitch>
  2500. <duration>96</duration>
  2501. <voice>3</voice>
  2502. <type>quarter</type>
  2503. <stem>down</stem>
  2504. <staff>2</staff>
  2505. </note>
  2506. <note default-x="60">
  2507. <pitch>
  2508. <step>A</step>
  2509. <alter>-1</alter>
  2510. <octave>2</octave>
  2511. </pitch>
  2512. <duration>48</duration>
  2513. <voice>3</voice>
  2514. <type>eighth</type>
  2515. <stem default-y="35">up</stem>
  2516. <staff>2</staff>
  2517. <beam number="1">begin</beam>
  2518. </note>
  2519. <note default-x="60">
  2520. <chord/>
  2521. <pitch>
  2522. <step>E</step>
  2523. <alter>-1</alter>
  2524. <octave>3</octave>
  2525. </pitch>
  2526. <duration>48</duration>
  2527. <voice>3</voice>
  2528. <type>eighth</type>
  2529. <stem>up</stem>
  2530. <staff>2</staff>
  2531. </note>
  2532. <note default-x="60">
  2533. <chord/>
  2534. <pitch>
  2535. <step>A</step>
  2536. <alter>-1</alter>
  2537. <octave>3</octave>
  2538. </pitch>
  2539. <duration>48</duration>
  2540. <voice>3</voice>
  2541. <type>eighth</type>
  2542. <stem>up</stem>
  2543. <staff>2</staff>
  2544. </note>
  2545. <note default-x="95">
  2546. <pitch>
  2547. <step>B</step>
  2548. <alter>-1</alter>
  2549. <octave>2</octave>
  2550. </pitch>
  2551. <duration>48</duration>
  2552. <voice>3</voice>
  2553. <type>eighth</type>
  2554. <stem default-y="35">up</stem>
  2555. <staff>2</staff>
  2556. <beam number="1">continue</beam>
  2557. </note>
  2558. <note default-x="95">
  2559. <chord/>
  2560. <pitch>
  2561. <step>E</step>
  2562. <alter>-1</alter>
  2563. <octave>3</octave>
  2564. </pitch>
  2565. <duration>48</duration>
  2566. <voice>3</voice>
  2567. <type>eighth</type>
  2568. <stem>up</stem>
  2569. <staff>2</staff>
  2570. </note>
  2571. <note default-x="95">
  2572. <chord/>
  2573. <pitch>
  2574. <step>B</step>
  2575. <alter>-1</alter>
  2576. <octave>3</octave>
  2577. </pitch>
  2578. <duration>48</duration>
  2579. <voice>3</voice>
  2580. <type>eighth</type>
  2581. <stem>up</stem>
  2582. <staff>2</staff>
  2583. </note>
  2584. <note default-x="132">
  2585. <pitch>
  2586. <step>B</step>
  2587. <alter>-1</alter>
  2588. <octave>2</octave>
  2589. </pitch>
  2590. <duration>48</duration>
  2591. <voice>3</voice>
  2592. <type>eighth</type>
  2593. <stem default-y="35">up</stem>
  2594. <staff>2</staff>
  2595. <beam number="1">continue</beam>
  2596. </note>
  2597. <note default-x="132">
  2598. <chord/>
  2599. <pitch>
  2600. <step>B</step>
  2601. <alter>-1</alter>
  2602. <octave>3</octave>
  2603. </pitch>
  2604. <duration>48</duration>
  2605. <voice>3</voice>
  2606. <type>eighth</type>
  2607. <stem>up</stem>
  2608. <staff>2</staff>
  2609. </note>
  2610. <note default-x="168">
  2611. <pitch>
  2612. <step>B</step>
  2613. <alter>-1</alter>
  2614. <octave>1</octave>
  2615. </pitch>
  2616. <duration>48</duration>
  2617. <voice>3</voice>
  2618. <type>eighth</type>
  2619. <stem default-y="35">up</stem>
  2620. <staff>2</staff>
  2621. <beam number="1">end</beam>
  2622. </note>
  2623. <note default-x="168">
  2624. <chord/>
  2625. <pitch>
  2626. <step>B</step>
  2627. <alter>-1</alter>
  2628. <octave>2</octave>
  2629. </pitch>
  2630. <duration>48</duration>
  2631. <voice>3</voice>
  2632. <type>eighth</type>
  2633. <stem>up</stem>
  2634. <staff>2</staff>
  2635. </note>
  2636. </measure>
  2637. <!--=======================================================-->
  2638. <measure number="9" width="180">
  2639. <note default-x="22">
  2640. <pitch>
  2641. <step>G</step>
  2642. <octave>3</octave>
  2643. </pitch>
  2644. <duration>96</duration>
  2645. <voice>1</voice>
  2646. <type>quarter</type>
  2647. <stem default-y="-4.5">up</stem>
  2648. <staff>1</staff>
  2649. </note>
  2650. <note default-x="22">
  2651. <chord/>
  2652. <pitch>
  2653. <step>E</step>
  2654. <alter>-1</alter>
  2655. <octave>4</octave>
  2656. </pitch>
  2657. <duration>96</duration>
  2658. <voice>1</voice>
  2659. <type>quarter</type>
  2660. <stem>up</stem>
  2661. <staff>1</staff>
  2662. </note>
  2663. <note default-x="46">
  2664. <grace slash="yes"/>
  2665. <pitch>
  2666. <step>B</step>
  2667. <alter>-1</alter>
  2668. <octave>4</octave>
  2669. </pitch>
  2670. <voice>1</voice>
  2671. <type>eighth</type>
  2672. <stem default-y="2">up</stem>
  2673. <staff>1</staff>
  2674. <notations>
  2675. <slur bezier-x="-3" bezier-y="12" default-x="8" default-y="5" number="1" placement="above" type="start"/>
  2676. </notations>
  2677. </note>
  2678. <direction placement="above">
  2679. <direction-type>
  2680. <words default-y="33" font-size="11" font-weight="bold" xml:lang="de">Ausdrucksvoll</words>
  2681. </direction-type>
  2682. <staff>1</staff>
  2683. </direction>
  2684. <direction placement="below">
  2685. <direction-type>
  2686. <wedge default-y="-57" spread="15" type="diminuendo"/>
  2687. </direction-type>
  2688. <staff>1</staff>
  2689. </direction>
  2690. <direction placement="below">
  2691. <direction-type>
  2692. <words default-y="-80" font-size="10" font-style="italic">espressivo</words>
  2693. </direction-type>
  2694. <offset>18</offset>
  2695. <staff>1</staff>
  2696. </direction>
  2697. <note default-x="69">
  2698. <pitch>
  2699. <step>B</step>
  2700. <alter>-1</alter>
  2701. <octave>5</octave>
  2702. </pitch>
  2703. <duration>144</duration>
  2704. <voice>1</voice>
  2705. <type>quarter</type>
  2706. <dot/>
  2707. <stem default-y="-20.5">down</stem>
  2708. <staff>1</staff>
  2709. <notations>
  2710. <slur bezier-x="-10" bezier-y="3" default-x="1" default-y="20" number="1" type="stop"/>
  2711. </notations>
  2712. </note>
  2713. <direction>
  2714. <direction-type>
  2715. <wedge spread="0" type="stop"/>
  2716. </direction-type>
  2717. <offset>-34</offset>
  2718. <staff>1</staff>
  2719. </direction>
  2720. <note default-x="138">
  2721. <pitch>
  2722. <step>E</step>
  2723. <alter>-1</alter>
  2724. <octave>5</octave>
  2725. </pitch>
  2726. <duration>48</duration>
  2727. <voice>1</voice>
  2728. <type>eighth</type>
  2729. <stem default-y="-40.5">down</stem>
  2730. <staff>1</staff>
  2731. </note>
  2732. <backup>
  2733. <duration>288</duration>
  2734. </backup>
  2735. <note default-x="22">
  2736. <pitch>
  2737. <step>E</step>
  2738. <alter>-1</alter>
  2739. <octave>2</octave>
  2740. </pitch>
  2741. <duration>96</duration>
  2742. <voice>3</voice>
  2743. <type>quarter</type>
  2744. <stem default-y="18">up</stem>
  2745. <staff>2</staff>
  2746. </note>
  2747. <note default-x="22">
  2748. <chord/>
  2749. <pitch>
  2750. <step>E</step>
  2751. <alter>-1</alter>
  2752. <octave>3</octave>
  2753. </pitch>
  2754. <duration>96</duration>
  2755. <voice>3</voice>
  2756. <type>quarter</type>
  2757. <stem>up</stem>
  2758. <staff>2</staff>
  2759. </note>
  2760. <note default-x="69">
  2761. <pitch>
  2762. <step>E</step>
  2763. <alter>-1</alter>
  2764. <octave>3</octave>
  2765. </pitch>
  2766. <duration>192</duration>
  2767. <voice>3</voice>
  2768. <type>half</type>
  2769. <stem default-y="-50.5">down</stem>
  2770. <staff>2</staff>
  2771. </note>
  2772. <note default-x="69">
  2773. <chord/>
  2774. <pitch>
  2775. <step>G</step>
  2776. <octave>3</octave>
  2777. </pitch>
  2778. <duration>192</duration>
  2779. <voice>3</voice>
  2780. <type>half</type>
  2781. <stem>down</stem>
  2782. <staff>2</staff>
  2783. </note>
  2784. <note default-x="69">
  2785. <chord/>
  2786. <pitch>
  2787. <step>B</step>
  2788. <alter>-1</alter>
  2789. <octave>3</octave>
  2790. </pitch>
  2791. <duration>192</duration>
  2792. <voice>3</voice>
  2793. <type>half</type>
  2794. <stem>down</stem>
  2795. <staff>2</staff>
  2796. </note>
  2797. <note default-x="69">
  2798. <chord/>
  2799. <pitch>
  2800. <step>E</step>
  2801. <alter>-1</alter>
  2802. <octave>4</octave>
  2803. </pitch>
  2804. <duration>192</duration>
  2805. <voice>3</voice>
  2806. <type>half</type>
  2807. <stem>down</stem>
  2808. <staff>2</staff>
  2809. </note>
  2810. </measure>
  2811. <!--=======================================================-->
  2812. <measure number="10" width="169">
  2813. <note default-x="22">
  2814. <pitch>
  2815. <step>D</step>
  2816. <octave>5</octave>
  2817. </pitch>
  2818. <duration>96</duration>
  2819. <voice>1</voice>
  2820. <type>quarter</type>
  2821. <stem default-y="-45.5">down</stem>
  2822. <staff>1</staff>
  2823. </note>
  2824. <note default-x="44">
  2825. <grace slash="yes"/>
  2826. <pitch>
  2827. <step>B</step>
  2828. <alter>-1</alter>
  2829. <octave>4</octave>
  2830. </pitch>
  2831. <voice>1</voice>
  2832. <type>eighth</type>
  2833. <stem default-y="2">up</stem>
  2834. <staff>1</staff>
  2835. <notations>
  2836. <slur bezier-x="0" bezier-y="13" default-x="8" default-y="5" number="1" placement="above" type="start"/>
  2837. </notations>
  2838. </note>
  2839. <direction placement="below">
  2840. <direction-type>
  2841. <wedge default-y="-69" spread="15" type="diminuendo"/>
  2842. </direction-type>
  2843. <offset>-7</offset>
  2844. <staff>1</staff>
  2845. </direction>
  2846. <note default-x="69">
  2847. <pitch>
  2848. <step>B</step>
  2849. <alter>-1</alter>
  2850. <octave>5</octave>
  2851. </pitch>
  2852. <duration>144</duration>
  2853. <voice>1</voice>
  2854. <type>quarter</type>
  2855. <dot/>
  2856. <stem default-y="-20.5">down</stem>
  2857. <staff>1</staff>
  2858. <notations>
  2859. <slur bezier-x="-12" bezier-y="4" default-x="2" default-y="20" number="1" type="stop"/>
  2860. </notations>
  2861. </note>
  2862. <direction>
  2863. <direction-type>
  2864. <wedge spread="0" type="stop"/>
  2865. </direction-type>
  2866. <offset>-44</offset>
  2867. <staff>1</staff>
  2868. </direction>
  2869. <direction placement="below">
  2870. <direction-type>
  2871. <words default-y="-73" font-size="10" font-style="italic">dim.</words>
  2872. </direction-type>
  2873. <offset>-25</offset>
  2874. <staff>1</staff>
  2875. </direction>
  2876. <note default-x="127">
  2877. <pitch>
  2878. <step>D</step>
  2879. <octave>5</octave>
  2880. </pitch>
  2881. <duration>48</duration>
  2882. <voice>1</voice>
  2883. <type>eighth</type>
  2884. <stem default-y="-45.5">down</stem>
  2885. <staff>1</staff>
  2886. <notations>
  2887. <slur bezier-x="7" bezier-y="16" default-x="4" default-y="-2" number="1" placement="above" type="start"/>
  2888. <slur bezier-x="-12" bezier-y="11" default-x="41" default-y="5" number="1" type="continue"/>
  2889. </notations>
  2890. </note>
  2891. <backup>
  2892. <duration>288</duration>
  2893. </backup>
  2894. <note default-x="9">
  2895. <pitch>
  2896. <step>E</step>
  2897. <alter>-1</alter>
  2898. <octave>3</octave>
  2899. </pitch>
  2900. <duration>96</duration>
  2901. <voice>3</voice>
  2902. <type>quarter</type>
  2903. <stem default-y="-50.5">down</stem>
  2904. <staff>2</staff>
  2905. </note>
  2906. <note default-x="22">
  2907. <chord/>
  2908. <pitch>
  2909. <step>F</step>
  2910. <octave>3</octave>
  2911. </pitch>
  2912. <duration>96</duration>
  2913. <voice>3</voice>
  2914. <type>quarter</type>
  2915. <stem>down</stem>
  2916. <staff>2</staff>
  2917. </note>
  2918. <note default-x="22">
  2919. <chord/>
  2920. <pitch>
  2921. <step>A</step>
  2922. <alter>-1</alter>
  2923. <octave>3</octave>
  2924. </pitch>
  2925. <duration>96</duration>
  2926. <voice>3</voice>
  2927. <type>quarter</type>
  2928. <stem>down</stem>
  2929. <staff>2</staff>
  2930. </note>
  2931. <note default-x="22">
  2932. <chord/>
  2933. <pitch>
  2934. <step>D</step>
  2935. <octave>4</octave>
  2936. </pitch>
  2937. <duration>96</duration>
  2938. <voice>3</voice>
  2939. <type>quarter</type>
  2940. <stem>down</stem>
  2941. <staff>2</staff>
  2942. </note>
  2943. <note default-x="56">
  2944. <pitch>
  2945. <step>E</step>
  2946. <alter>-1</alter>
  2947. <octave>3</octave>
  2948. </pitch>
  2949. <duration>144</duration>
  2950. <voice>3</voice>
  2951. <type>quarter</type>
  2952. <dot/>
  2953. <stem default-y="-50.5">down</stem>
  2954. <staff>2</staff>
  2955. </note>
  2956. <note default-x="69">
  2957. <chord/>
  2958. <pitch>
  2959. <step>F</step>
  2960. <octave>3</octave>
  2961. </pitch>
  2962. <duration>144</duration>
  2963. <voice>3</voice>
  2964. <type>quarter</type>
  2965. <dot/>
  2966. <stem>down</stem>
  2967. <staff>2</staff>
  2968. </note>
  2969. <note default-x="56">
  2970. <chord/>
  2971. <pitch>
  2972. <step>A</step>
  2973. <alter>-1</alter>
  2974. <octave>3</octave>
  2975. </pitch>
  2976. <duration>144</duration>
  2977. <voice>3</voice>
  2978. <type>quarter</type>
  2979. <dot/>
  2980. <stem>down</stem>
  2981. <staff>2</staff>
  2982. </note>
  2983. <note default-x="69">
  2984. <chord/>
  2985. <pitch>
  2986. <step>B</step>
  2987. <alter>-1</alter>
  2988. <octave>3</octave>
  2989. </pitch>
  2990. <duration>144</duration>
  2991. <voice>3</voice>
  2992. <type>quarter</type>
  2993. <dot/>
  2994. <stem>down</stem>
  2995. <staff>2</staff>
  2996. </note>
  2997. <note default-x="69">
  2998. <chord/>
  2999. <pitch>
  3000. <step>D</step>
  3001. <octave>4</octave>
  3002. </pitch>
  3003. <duration>144</duration>
  3004. <voice>3</voice>
  3005. <type>quarter</type>
  3006. <dot/>
  3007. <stem>down</stem>
  3008. <staff>2</staff>
  3009. </note>
  3010. <note default-x="127">
  3011. <pitch>
  3012. <step>D</step>
  3013. <octave>4</octave>
  3014. </pitch>
  3015. <duration>48</duration>
  3016. <voice>3</voice>
  3017. <type>eighth</type>
  3018. <stem default-y="-20.5">down</stem>
  3019. <staff>2</staff>
  3020. <notations>
  3021. <slur bezier-x="9" bezier-y="14" default-x="6" default-y="23" number="2" placement="above" type="start"/>
  3022. <slur bezier-x="-11" bezier-y="12" default-x="41" default-y="25" number="2" type="continue"/>
  3023. </notations>
  3024. </note>
  3025. </measure>
  3026. <!--=======================================================-->
  3027. <measure number="11" width="288">
  3028. <print new-system="yes">
  3029. <staff-layout number="2">
  3030. <staff-distance>70</staff-distance>
  3031. </staff-layout>
  3032. </print>
  3033. <note default-x="99">
  3034. <pitch>
  3035. <step>F</step>
  3036. <octave>5</octave>
  3037. </pitch>
  3038. <duration>48</duration>
  3039. <voice>1</voice>
  3040. <type>eighth</type>
  3041. <stem default-y="25">up</stem>
  3042. <staff>1</staff>
  3043. <beam number="1">begin</beam>
  3044. </note>
  3045. <note default-x="129">
  3046. <pitch>
  3047. <step>F</step>
  3048. <octave>4</octave>
  3049. </pitch>
  3050. <duration>48</duration>
  3051. <voice>1</voice>
  3052. <type>eighth</type>
  3053. <stem default-y="25">up</stem>
  3054. <staff>1</staff>
  3055. <beam number="1">continue</beam>
  3056. <notations>
  3057. <slur bezier-x2="19" bezier-y2="14" default-x="-54" default-y="29" number="1" type="continue"/>
  3058. <slur bezier-x="-16" bezier-y="15" default-x="12" default-y="26" number="1" type="stop"/>
  3059. </notations>
  3060. </note>
  3061. <note default-x="129">
  3062. <chord/>
  3063. <pitch>
  3064. <step>A</step>
  3065. <alter>-1</alter>
  3066. <octave>4</octave>
  3067. </pitch>
  3068. <duration>48</duration>
  3069. <voice>1</voice>
  3070. <type>eighth</type>
  3071. <stem>up</stem>
  3072. <staff>1</staff>
  3073. </note>
  3074. <note default-x="159">
  3075. <pitch>
  3076. <step>F</step>
  3077. <octave>4</octave>
  3078. </pitch>
  3079. <duration>48</duration>
  3080. <voice>1</voice>
  3081. <type>eighth</type>
  3082. <stem default-y="26">up</stem>
  3083. <staff>1</staff>
  3084. <beam number="1">continue</beam>
  3085. <notations>
  3086. <slur bezier-x="19" bezier-y="-22" default-x="6" default-y="-45" number="1" placement="below" type="start"/>
  3087. </notations>
  3088. </note>
  3089. <note default-x="159">
  3090. <chord/>
  3091. <pitch>
  3092. <step>A</step>
  3093. <alter>-1</alter>
  3094. <octave>4</octave>
  3095. </pitch>
  3096. <duration>48</duration>
  3097. <voice>1</voice>
  3098. <type>eighth</type>
  3099. <stem>up</stem>
  3100. <staff>1</staff>
  3101. </note>
  3102. <note default-x="190">
  3103. <pitch>
  3104. <step>E</step>
  3105. <octave>4</octave>
  3106. </pitch>
  3107. <duration>48</duration>
  3108. <voice>1</voice>
  3109. <type>eighth</type>
  3110. <accidental>natural</accidental>
  3111. <stem default-y="26">up</stem>
  3112. <staff>1</staff>
  3113. <beam number="1">continue</beam>
  3114. </note>
  3115. <note default-x="190">
  3116. <chord/>
  3117. <pitch>
  3118. <step>G</step>
  3119. <octave>4</octave>
  3120. </pitch>
  3121. <duration>48</duration>
  3122. <voice>1</voice>
  3123. <type>eighth</type>
  3124. <stem>up</stem>
  3125. <staff>1</staff>
  3126. </note>
  3127. <note default-x="221">
  3128. <pitch>
  3129. <step>G</step>
  3130. <octave>4</octave>
  3131. </pitch>
  3132. <duration>48</duration>
  3133. <voice>1</voice>
  3134. <type>eighth</type>
  3135. <stem default-y="26">up</stem>
  3136. <staff>1</staff>
  3137. <beam number="1">continue</beam>
  3138. </note>
  3139. <note default-x="221">
  3140. <chord/>
  3141. <pitch>
  3142. <step>B</step>
  3143. <alter>-1</alter>
  3144. <octave>4</octave>
  3145. </pitch>
  3146. <duration>48</duration>
  3147. <voice>1</voice>
  3148. <type>eighth</type>
  3149. <stem>up</stem>
  3150. <staff>1</staff>
  3151. </note>
  3152. <note default-x="251">
  3153. <pitch>
  3154. <step>F</step>
  3155. <octave>4</octave>
  3156. </pitch>
  3157. <duration>48</duration>
  3158. <voice>1</voice>
  3159. <type>eighth</type>
  3160. <stem default-y="26">up</stem>
  3161. <staff>1</staff>
  3162. <beam number="1">end</beam>
  3163. <notations>
  3164. <slur bezier-x="-24" bezier-y="-23" default-x="7" default-y="-43" number="1" type="stop"/>
  3165. </notations>
  3166. </note>
  3167. <note default-x="251">
  3168. <chord/>
  3169. <pitch>
  3170. <step>A</step>
  3171. <alter>-1</alter>
  3172. <octave>4</octave>
  3173. </pitch>
  3174. <duration>48</duration>
  3175. <voice>1</voice>
  3176. <type>eighth</type>
  3177. <stem>up</stem>
  3178. <staff>1</staff>
  3179. </note>
  3180. <backup>
  3181. <duration>288</duration>
  3182. </backup>
  3183. <note default-x="99">
  3184. <pitch>
  3185. <step>F</step>
  3186. <octave>4</octave>
  3187. </pitch>
  3188. <duration>48</duration>
  3189. <voice>3</voice>
  3190. <type>eighth</type>
  3191. <stem default-y="-45">down</stem>
  3192. <staff>2</staff>
  3193. <beam number="1">begin</beam>
  3194. </note>
  3195. <note default-x="129">
  3196. <pitch>
  3197. <step>F</step>
  3198. <octave>3</octave>
  3199. </pitch>
  3200. <duration>48</duration>
  3201. <voice>3</voice>
  3202. <type>eighth</type>
  3203. <stem default-y="-45">down</stem>
  3204. <staff>2</staff>
  3205. <beam number="1">continue</beam>
  3206. <notations>
  3207. <slur bezier-x2="24" bezier-y2="11" default-x="-53" default-y="37" number="2" type="continue"/>
  3208. <slur bezier-x="-10" bezier-y="25" default-x="7" default-y="12" number="2" type="stop"/>
  3209. </notations>
  3210. </note>
  3211. <note default-x="129">
  3212. <chord/>
  3213. <pitch>
  3214. <step>A</step>
  3215. <alter>-1</alter>
  3216. <octave>3</octave>
  3217. </pitch>
  3218. <duration>48</duration>
  3219. <voice>3</voice>
  3220. <type>eighth</type>
  3221. <stem>down</stem>
  3222. <staff>2</staff>
  3223. </note>
  3224. <note default-x="159">
  3225. <pitch>
  3226. <step>F</step>
  3227. <octave>3</octave>
  3228. </pitch>
  3229. <duration>48</duration>
  3230. <voice>3</voice>
  3231. <type>eighth</type>
  3232. <stem default-y="-45">down</stem>
  3233. <staff>2</staff>
  3234. <beam number="1">continue</beam>
  3235. <notations>
  3236. <slur bezier-x="24" bezier-y="19" default-x="7" default-y="8" number="1" placement="above" type="start"/>
  3237. </notations>
  3238. </note>
  3239. <note default-x="159">
  3240. <chord/>
  3241. <pitch>
  3242. <step>A</step>
  3243. <alter>-1</alter>
  3244. <octave>3</octave>
  3245. </pitch>
  3246. <duration>48</duration>
  3247. <voice>3</voice>
  3248. <type>eighth</type>
  3249. <stem>down</stem>
  3250. <staff>2</staff>
  3251. </note>
  3252. <note default-x="190">
  3253. <pitch>
  3254. <step>E</step>
  3255. <octave>3</octave>
  3256. </pitch>
  3257. <duration>48</duration>
  3258. <voice>3</voice>
  3259. <type>eighth</type>
  3260. <accidental>natural</accidental>
  3261. <stem default-y="-45">down</stem>
  3262. <staff>2</staff>
  3263. <beam number="1">continue</beam>
  3264. </note>
  3265. <note default-x="190">
  3266. <chord/>
  3267. <pitch>
  3268. <step>G</step>
  3269. <octave>3</octave>
  3270. </pitch>
  3271. <duration>48</duration>
  3272. <voice>3</voice>
  3273. <type>eighth</type>
  3274. <stem>down</stem>
  3275. <staff>2</staff>
  3276. </note>
  3277. <note default-x="221">
  3278. <pitch>
  3279. <step>G</step>
  3280. <octave>3</octave>
  3281. </pitch>
  3282. <duration>48</duration>
  3283. <voice>3</voice>
  3284. <type>eighth</type>
  3285. <stem default-y="-45">down</stem>
  3286. <staff>2</staff>
  3287. <beam number="1">continue</beam>
  3288. </note>
  3289. <note default-x="221">
  3290. <chord/>
  3291. <pitch>
  3292. <step>B</step>
  3293. <alter>-1</alter>
  3294. <octave>3</octave>
  3295. </pitch>
  3296. <duration>48</duration>
  3297. <voice>3</voice>
  3298. <type>eighth</type>
  3299. <stem>down</stem>
  3300. <staff>2</staff>
  3301. </note>
  3302. <note default-x="251">
  3303. <pitch>
  3304. <step>F</step>
  3305. <octave>3</octave>
  3306. </pitch>
  3307. <duration>48</duration>
  3308. <voice>3</voice>
  3309. <type>eighth</type>
  3310. <stem default-y="-45">down</stem>
  3311. <staff>2</staff>
  3312. <beam number="1">end</beam>
  3313. <notations>
  3314. <slur bezier-x="-24" bezier-y="19" default-x="6" default-y="8" number="1" type="stop"/>
  3315. </notations>
  3316. </note>
  3317. <note default-x="251">
  3318. <chord/>
  3319. <pitch>
  3320. <step>A</step>
  3321. <alter>-1</alter>
  3322. <octave>3</octave>
  3323. </pitch>
  3324. <duration>48</duration>
  3325. <voice>3</voice>
  3326. <type>eighth</type>
  3327. <stem>down</stem>
  3328. <staff>2</staff>
  3329. </note>
  3330. </measure>
  3331. <!--=======================================================-->
  3332. <measure number="12" width="229">
  3333. <note default-x="22">
  3334. <pitch>
  3335. <step>E</step>
  3336. <alter>-1</alter>
  3337. <octave>4</octave>
  3338. </pitch>
  3339. <duration>48</duration>
  3340. <voice>1</voice>
  3341. <type>eighth</type>
  3342. <accidental>flat</accidental>
  3343. <stem default-y="6">up</stem>
  3344. <staff>1</staff>
  3345. </note>
  3346. <note default-x="22">
  3347. <chord/>
  3348. <pitch>
  3349. <step>G</step>
  3350. <octave>4</octave>
  3351. </pitch>
  3352. <duration>48</duration>
  3353. <voice>1</voice>
  3354. <type>eighth</type>
  3355. <stem>up</stem>
  3356. <staff>1</staff>
  3357. </note>
  3358. <note default-x="53">
  3359. <rest>
  3360. <display-step>B</display-step>
  3361. <display-octave>4</display-octave>
  3362. </rest>
  3363. <duration>48</duration>
  3364. <voice>1</voice>
  3365. <type>eighth</type>
  3366. <staff>1</staff>
  3367. </note>
  3368. <note default-x="84">
  3369. <pitch>
  3370. <step>B</step>
  3371. <alter>-1</alter>
  3372. <octave>3</octave>
  3373. </pitch>
  3374. <duration>48</duration>
  3375. <voice>1</voice>
  3376. <type>eighth</type>
  3377. <stem default-y="3">up</stem>
  3378. <staff>1</staff>
  3379. <beam number="1">begin</beam>
  3380. </note>
  3381. <note default-x="84">
  3382. <chord/>
  3383. <pitch>
  3384. <step>G</step>
  3385. <octave>4</octave>
  3386. </pitch>
  3387. <duration>48</duration>
  3388. <voice>1</voice>
  3389. <type>eighth</type>
  3390. <stem>up</stem>
  3391. <staff>1</staff>
  3392. </note>
  3393. <note default-x="115">
  3394. <rest/>
  3395. <duration>24</duration>
  3396. <voice>1</voice>
  3397. <type>16th</type>
  3398. <staff>1</staff>
  3399. </note>
  3400. <note default-x="137">
  3401. <pitch>
  3402. <step>B</step>
  3403. <alter>-1</alter>
  3404. <octave>3</octave>
  3405. </pitch>
  3406. <duration>24</duration>
  3407. <voice>1</voice>
  3408. <type>16th</type>
  3409. <stem default-y="3">up</stem>
  3410. <staff>1</staff>
  3411. <beam number="1">end</beam>
  3412. <beam number="2">backward hook</beam>
  3413. </note>
  3414. <note default-x="137">
  3415. <chord/>
  3416. <pitch>
  3417. <step>G</step>
  3418. <octave>4</octave>
  3419. </pitch>
  3420. <duration>24</duration>
  3421. <voice>1</voice>
  3422. <type>16th</type>
  3423. <stem>up</stem>
  3424. <staff>1</staff>
  3425. </note>
  3426. <note default-x="160">
  3427. <pitch>
  3428. <step>B</step>
  3429. <alter>-1</alter>
  3430. <octave>3</octave>
  3431. </pitch>
  3432. <duration>48</duration>
  3433. <voice>1</voice>
  3434. <type>eighth</type>
  3435. <stem default-y="6">up</stem>
  3436. <staff>1</staff>
  3437. </note>
  3438. <note default-x="160">
  3439. <chord/>
  3440. <pitch>
  3441. <step>G</step>
  3442. <octave>4</octave>
  3443. </pitch>
  3444. <duration>48</duration>
  3445. <voice>1</voice>
  3446. <type>eighth</type>
  3447. <stem>up</stem>
  3448. <staff>1</staff>
  3449. </note>
  3450. <note default-x="192">
  3451. <rest>
  3452. <display-step>B</display-step>
  3453. <display-octave>4</display-octave>
  3454. </rest>
  3455. <duration>48</duration>
  3456. <voice>1</voice>
  3457. <type>eighth</type>
  3458. <staff>1</staff>
  3459. </note>
  3460. <backup>
  3461. <duration>288</duration>
  3462. </backup>
  3463. <note default-x="22">
  3464. <pitch>
  3465. <step>E</step>
  3466. <alter>-1</alter>
  3467. <octave>3</octave>
  3468. </pitch>
  3469. <duration>48</duration>
  3470. <voice>3</voice>
  3471. <type>eighth</type>
  3472. <accidental>flat</accidental>
  3473. <stem default-y="-50.5">down</stem>
  3474. <staff>2</staff>
  3475. </note>
  3476. <note default-x="22">
  3477. <chord/>
  3478. <pitch>
  3479. <step>G</step>
  3480. <octave>3</octave>
  3481. </pitch>
  3482. <duration>48</duration>
  3483. <voice>3</voice>
  3484. <type>eighth</type>
  3485. <stem>down</stem>
  3486. <staff>2</staff>
  3487. </note>
  3488. <note default-x="55">
  3489. <rest>
  3490. <display-step>D</display-step>
  3491. <display-octave>3</display-octave>
  3492. </rest>
  3493. <duration>48</duration>
  3494. <voice>3</voice>
  3495. <type>eighth</type>
  3496. <staff>2</staff>
  3497. </note>
  3498. <note default-x="84">
  3499. <pitch>
  3500. <step>E</step>
  3501. <alter>-1</alter>
  3502. <octave>3</octave>
  3503. </pitch>
  3504. <duration>48</duration>
  3505. <voice>3</voice>
  3506. <type>eighth</type>
  3507. <stem default-y="-50">down</stem>
  3508. <staff>2</staff>
  3509. <beam number="1">begin</beam>
  3510. </note>
  3511. <note default-x="115">
  3512. <rest/>
  3513. <duration>24</duration>
  3514. <voice>3</voice>
  3515. <type>16th</type>
  3516. <staff>2</staff>
  3517. </note>
  3518. <note default-x="137">
  3519. <pitch>
  3520. <step>E</step>
  3521. <alter>-1</alter>
  3522. <octave>3</octave>
  3523. </pitch>
  3524. <duration>24</duration>
  3525. <voice>3</voice>
  3526. <type>16th</type>
  3527. <stem default-y="-50">down</stem>
  3528. <staff>2</staff>
  3529. <beam number="1">end</beam>
  3530. <beam number="2">backward hook</beam>
  3531. </note>
  3532. <note default-x="160">
  3533. <pitch>
  3534. <step>E</step>
  3535. <alter>-1</alter>
  3536. <octave>2</octave>
  3537. </pitch>
  3538. <duration>48</duration>
  3539. <voice>3</voice>
  3540. <type>eighth</type>
  3541. <stem default-y="-14">up</stem>
  3542. <staff>2</staff>
  3543. </note>
  3544. <note default-x="192">
  3545. <rest>
  3546. <display-step>D</display-step>
  3547. <display-octave>3</display-octave>
  3548. </rest>
  3549. <duration>48</duration>
  3550. <voice>3</voice>
  3551. <type>eighth</type>
  3552. <staff>2</staff>
  3553. </note>
  3554. </measure>
  3555. <!--=======================================================-->
  3556. <measure number="13" width="224">
  3557. <note default-x="26">
  3558. <rest>
  3559. <display-step>B</display-step>
  3560. <display-octave>4</display-octave>
  3561. </rest>
  3562. <duration>96</duration>
  3563. <voice>1</voice>
  3564. <type>quarter</type>
  3565. <staff>1</staff>
  3566. </note>
  3567. <note default-x="66">
  3568. <pitch>
  3569. <step>E</step>
  3570. <alter>-1</alter>
  3571. <octave>4</octave>
  3572. </pitch>
  3573. <duration>48</duration>
  3574. <voice>1</voice>
  3575. <type>eighth</type>
  3576. <stem default-y="3">up</stem>
  3577. <staff>1</staff>
  3578. <beam number="1">begin</beam>
  3579. </note>
  3580. <note default-x="66">
  3581. <chord/>
  3582. <pitch>
  3583. <step>G</step>
  3584. <octave>4</octave>
  3585. </pitch>
  3586. <duration>48</duration>
  3587. <voice>1</voice>
  3588. <type>eighth</type>
  3589. <stem>up</stem>
  3590. <staff>1</staff>
  3591. </note>
  3592. <note default-x="102">
  3593. <rest/>
  3594. <duration>24</duration>
  3595. <voice>1</voice>
  3596. <type>16th</type>
  3597. <staff>1</staff>
  3598. </note>
  3599. <note default-x="126">
  3600. <pitch>
  3601. <step>E</step>
  3602. <alter>-1</alter>
  3603. <octave>4</octave>
  3604. </pitch>
  3605. <duration>24</duration>
  3606. <voice>1</voice>
  3607. <type>16th</type>
  3608. <stem default-y="3">up</stem>
  3609. <staff>1</staff>
  3610. <beam number="1">end</beam>
  3611. <beam number="2">backward hook</beam>
  3612. </note>
  3613. <note default-x="126">
  3614. <chord/>
  3615. <pitch>
  3616. <step>G</step>
  3617. <octave>4</octave>
  3618. </pitch>
  3619. <duration>24</duration>
  3620. <voice>1</voice>
  3621. <type>16th</type>
  3622. <stem>up</stem>
  3623. <staff>1</staff>
  3624. </note>
  3625. <note default-x="148">
  3626. <pitch>
  3627. <step>E</step>
  3628. <alter>-1</alter>
  3629. <octave>4</octave>
  3630. </pitch>
  3631. <duration>48</duration>
  3632. <voice>1</voice>
  3633. <type>eighth</type>
  3634. <stem default-y="23">up</stem>
  3635. <staff>1</staff>
  3636. <beam number="1">begin</beam>
  3637. </note>
  3638. <note default-x="148">
  3639. <chord/>
  3640. <pitch>
  3641. <step>A</step>
  3642. <alter>-1</alter>
  3643. <octave>4</octave>
  3644. </pitch>
  3645. <duration>48</duration>
  3646. <voice>1</voice>
  3647. <type>eighth</type>
  3648. <stem>up</stem>
  3649. <staff>1</staff>
  3650. </note>
  3651. <note default-x="148">
  3652. <chord/>
  3653. <pitch>
  3654. <step>E</step>
  3655. <alter>-1</alter>
  3656. <octave>5</octave>
  3657. </pitch>
  3658. <duration>48</duration>
  3659. <voice>1</voice>
  3660. <type>eighth</type>
  3661. <stem>up</stem>
  3662. <staff>1</staff>
  3663. </note>
  3664. <note default-x="178">
  3665. <pitch>
  3666. <step>E</step>
  3667. <alter>-1</alter>
  3668. <octave>4</octave>
  3669. </pitch>
  3670. <duration>48</duration>
  3671. <voice>1</voice>
  3672. <type>eighth</type>
  3673. <stem default-y="18.5">up</stem>
  3674. <staff>1</staff>
  3675. <beam number="1">end</beam>
  3676. </note>
  3677. <note default-x="178">
  3678. <chord/>
  3679. <pitch>
  3680. <step>G</step>
  3681. <octave>4</octave>
  3682. </pitch>
  3683. <duration>48</duration>
  3684. <voice>1</voice>
  3685. <type>eighth</type>
  3686. <stem>up</stem>
  3687. <staff>1</staff>
  3688. </note>
  3689. <backup>
  3690. <duration>288</duration>
  3691. </backup>
  3692. <note default-x="26">
  3693. <rest>
  3694. <display-step>D</display-step>
  3695. <display-octave>3</display-octave>
  3696. </rest>
  3697. <duration>96</duration>
  3698. <voice>3</voice>
  3699. <type>quarter</type>
  3700. <staff>2</staff>
  3701. </note>
  3702. <note default-x="66">
  3703. <pitch>
  3704. <step>C</step>
  3705. <octave>4</octave>
  3706. </pitch>
  3707. <duration>48</duration>
  3708. <voice>3</voice>
  3709. <type>eighth</type>
  3710. <stem default-y="-22">down</stem>
  3711. <staff>2</staff>
  3712. <beam number="1">begin</beam>
  3713. </note>
  3714. <note default-x="104">
  3715. <rest>
  3716. <display-step>C</display-step>
  3717. <display-octave>4</display-octave>
  3718. </rest>
  3719. <duration>24</duration>
  3720. <voice>3</voice>
  3721. <type>16th</type>
  3722. <staff>2</staff>
  3723. </note>
  3724. <note default-x="126">
  3725. <pitch>
  3726. <step>C</step>
  3727. <octave>4</octave>
  3728. </pitch>
  3729. <duration>24</duration>
  3730. <voice>3</voice>
  3731. <type>16th</type>
  3732. <stem default-y="-22">down</stem>
  3733. <staff>2</staff>
  3734. <beam number="1">end</beam>
  3735. <beam number="2">backward hook</beam>
  3736. </note>
  3737. <note default-x="148">
  3738. <pitch>
  3739. <step>C</step>
  3740. <octave>3</octave>
  3741. </pitch>
  3742. <duration>48</duration>
  3743. <voice>3</voice>
  3744. <type>eighth</type>
  3745. <stem default-y="5">up</stem>
  3746. <staff>2</staff>
  3747. <beam number="1">begin</beam>
  3748. </note>
  3749. <note default-x="178">
  3750. <pitch>
  3751. <step>B</step>
  3752. <alter>-1</alter>
  3753. <octave>2</octave>
  3754. </pitch>
  3755. <duration>48</duration>
  3756. <voice>3</voice>
  3757. <type>eighth</type>
  3758. <stem default-y="5">up</stem>
  3759. <staff>2</staff>
  3760. <beam number="1">end</beam>
  3761. </note>
  3762. </measure>
  3763. <!--=======================================================-->
  3764. <measure number="14" width="233">
  3765. <note default-x="19">
  3766. <pitch>
  3767. <step>C</step>
  3768. <octave>4</octave>
  3769. </pitch>
  3770. <duration>48</duration>
  3771. <voice>1</voice>
  3772. <type>eighth</type>
  3773. <stem default-y="1">up</stem>
  3774. <staff>1</staff>
  3775. </note>
  3776. <note default-x="19">
  3777. <chord/>
  3778. <pitch>
  3779. <step>F</step>
  3780. <octave>4</octave>
  3781. </pitch>
  3782. <duration>48</duration>
  3783. <voice>1</voice>
  3784. <type>eighth</type>
  3785. <stem>up</stem>
  3786. <staff>1</staff>
  3787. </note>
  3788. <note default-x="50">
  3789. <rest>
  3790. <display-step>B</display-step>
  3791. <display-octave>4</display-octave>
  3792. </rest>
  3793. <duration>48</duration>
  3794. <voice>1</voice>
  3795. <type>eighth</type>
  3796. <staff>1</staff>
  3797. </note>
  3798. <note default-x="82">
  3799. <pitch>
  3800. <step>C</step>
  3801. <octave>4</octave>
  3802. </pitch>
  3803. <duration>48</duration>
  3804. <voice>1</voice>
  3805. <type>eighth</type>
  3806. <stem default-y="0">up</stem>
  3807. <staff>1</staff>
  3808. <beam number="1">begin</beam>
  3809. </note>
  3810. <note default-x="82">
  3811. <chord/>
  3812. <pitch>
  3813. <step>F</step>
  3814. <octave>4</octave>
  3815. </pitch>
  3816. <duration>48</duration>
  3817. <voice>1</voice>
  3818. <type>eighth</type>
  3819. <stem>up</stem>
  3820. <staff>1</staff>
  3821. </note>
  3822. <note default-x="113">
  3823. <rest/>
  3824. <duration>24</duration>
  3825. <voice>1</voice>
  3826. <type>16th</type>
  3827. <staff>1</staff>
  3828. </note>
  3829. <note default-x="135">
  3830. <pitch>
  3831. <step>C</step>
  3832. <octave>4</octave>
  3833. </pitch>
  3834. <duration>24</duration>
  3835. <voice>1</voice>
  3836. <type>16th</type>
  3837. <stem default-y="0">up</stem>
  3838. <staff>1</staff>
  3839. <beam number="1">end</beam>
  3840. <beam number="2">backward hook</beam>
  3841. </note>
  3842. <note default-x="135">
  3843. <chord/>
  3844. <pitch>
  3845. <step>F</step>
  3846. <octave>4</octave>
  3847. </pitch>
  3848. <duration>24</duration>
  3849. <voice>1</voice>
  3850. <type>16th</type>
  3851. <stem>up</stem>
  3852. <staff>1</staff>
  3853. </note>
  3854. <note default-x="165">
  3855. <pitch>
  3856. <step>C</step>
  3857. <octave>4</octave>
  3858. </pitch>
  3859. <duration>48</duration>
  3860. <voice>1</voice>
  3861. <type>eighth</type>
  3862. <stem default-y="18">up</stem>
  3863. <staff>1</staff>
  3864. </note>
  3865. <note default-x="165">
  3866. <chord/>
  3867. <pitch>
  3868. <step>E</step>
  3869. <alter>-1</alter>
  3870. <octave>4</octave>
  3871. </pitch>
  3872. <duration>48</duration>
  3873. <voice>1</voice>
  3874. <type>eighth</type>
  3875. <stem>up</stem>
  3876. <staff>1</staff>
  3877. </note>
  3878. <note default-x="177">
  3879. <chord/>
  3880. <pitch>
  3881. <step>F</step>
  3882. <octave>4</octave>
  3883. </pitch>
  3884. <duration>48</duration>
  3885. <voice>1</voice>
  3886. <type>eighth</type>
  3887. <stem>up</stem>
  3888. <staff>1</staff>
  3889. </note>
  3890. <note default-x="165">
  3891. <chord/>
  3892. <pitch>
  3893. <step>C</step>
  3894. <octave>5</octave>
  3895. </pitch>
  3896. <duration>48</duration>
  3897. <voice>1</voice>
  3898. <type>eighth</type>
  3899. <stem>up</stem>
  3900. <staff>1</staff>
  3901. </note>
  3902. <note default-x="196">
  3903. <rest>
  3904. <display-step>B</display-step>
  3905. <display-octave>4</display-octave>
  3906. </rest>
  3907. <duration>48</duration>
  3908. <voice>1</voice>
  3909. <type>eighth</type>
  3910. <staff>1</staff>
  3911. </note>
  3912. <backup>
  3913. <duration>288</duration>
  3914. </backup>
  3915. <note default-x="19">
  3916. <pitch>
  3917. <step>A</step>
  3918. <alter>-1</alter>
  3919. <octave>2</octave>
  3920. </pitch>
  3921. <duration>48</duration>
  3922. <voice>3</voice>
  3923. <type>eighth</type>
  3924. <stem default-y="1">up</stem>
  3925. <staff>2</staff>
  3926. </note>
  3927. <note default-x="50">
  3928. <rest>
  3929. <display-step>D</display-step>
  3930. <display-octave>3</display-octave>
  3931. </rest>
  3932. <duration>48</duration>
  3933. <voice>3</voice>
  3934. <type>eighth</type>
  3935. <staff>2</staff>
  3936. </note>
  3937. <note default-x="82">
  3938. <pitch>
  3939. <step>A</step>
  3940. <alter>-1</alter>
  3941. <octave>3</octave>
  3942. </pitch>
  3943. <duration>48</duration>
  3944. <voice>3</voice>
  3945. <type>eighth</type>
  3946. <stem default-y="-58">down</stem>
  3947. <staff>2</staff>
  3948. <beam number="1">begin</beam>
  3949. </note>
  3950. <note default-x="113">
  3951. <rest/>
  3952. <duration>24</duration>
  3953. <voice>3</voice>
  3954. <type>16th</type>
  3955. <staff>2</staff>
  3956. </note>
  3957. <note default-x="135">
  3958. <pitch>
  3959. <step>A</step>
  3960. <alter>-1</alter>
  3961. <octave>2</octave>
  3962. </pitch>
  3963. <duration>24</duration>
  3964. <voice>3</voice>
  3965. <type>16th</type>
  3966. <stem default-y="-67">down</stem>
  3967. <staff>2</staff>
  3968. <beam number="1">end</beam>
  3969. <beam number="2">backward hook</beam>
  3970. </note>
  3971. <note default-x="135">
  3972. <chord/>
  3973. <pitch>
  3974. <step>A</step>
  3975. <alter>-1</alter>
  3976. <octave>3</octave>
  3977. </pitch>
  3978. <duration>24</duration>
  3979. <voice>3</voice>
  3980. <type>16th</type>
  3981. <stem>down</stem>
  3982. <staff>2</staff>
  3983. </note>
  3984. <note default-x="165">
  3985. <pitch>
  3986. <step>A</step>
  3987. <octave>2</octave>
  3988. </pitch>
  3989. <duration>96</duration>
  3990. <voice>3</voice>
  3991. <type>quarter</type>
  3992. <accidental>natural</accidental>
  3993. <stem default-y="-60.5">down</stem>
  3994. <staff>2</staff>
  3995. </note>
  3996. <note default-x="165">
  3997. <chord/>
  3998. <pitch>
  3999. <step>A</step>
  4000. <octave>3</octave>
  4001. </pitch>
  4002. <duration>96</duration>
  4003. <voice>3</voice>
  4004. <type>quarter</type>
  4005. <accidental>natural</accidental>
  4006. <stem>down</stem>
  4007. <staff>2</staff>
  4008. </note>
  4009. </measure>
  4010. <!--=======================================================-->
  4011. <measure number="15" width="226">
  4012. <note default-x="20">
  4013. <pitch>
  4014. <step>D</step>
  4015. <octave>4</octave>
  4016. </pitch>
  4017. <duration>48</duration>
  4018. <voice>1</voice>
  4019. <type>eighth</type>
  4020. <stem default-y="1">up</stem>
  4021. <staff>1</staff>
  4022. </note>
  4023. <note default-x="20">
  4024. <chord/>
  4025. <pitch>
  4026. <step>F</step>
  4027. <octave>4</octave>
  4028. </pitch>
  4029. <duration>48</duration>
  4030. <voice>1</voice>
  4031. <type>eighth</type>
  4032. <stem>up</stem>
  4033. <staff>1</staff>
  4034. </note>
  4035. <note default-x="52">
  4036. <rest>
  4037. <display-step>B</display-step>
  4038. <display-octave>4</display-octave>
  4039. </rest>
  4040. <duration>48</duration>
  4041. <voice>1</voice>
  4042. <type>eighth</type>
  4043. <staff>1</staff>
  4044. </note>
  4045. <note default-x="82">
  4046. <pitch>
  4047. <step>F</step>
  4048. <octave>4</octave>
  4049. </pitch>
  4050. <duration>48</duration>
  4051. <voice>1</voice>
  4052. <type>eighth</type>
  4053. <stem default-y="13">up</stem>
  4054. <staff>1</staff>
  4055. <beam number="1">begin</beam>
  4056. </note>
  4057. <note default-x="82">
  4058. <chord/>
  4059. <pitch>
  4060. <step>B</step>
  4061. <alter>-1</alter>
  4062. <octave>4</octave>
  4063. </pitch>
  4064. <duration>48</duration>
  4065. <voice>1</voice>
  4066. <type>eighth</type>
  4067. <stem>up</stem>
  4068. <staff>1</staff>
  4069. </note>
  4070. <note default-x="112">
  4071. <rest/>
  4072. <duration>24</duration>
  4073. <voice>1</voice>
  4074. <type>16th</type>
  4075. <staff>1</staff>
  4076. </note>
  4077. <note default-x="132">
  4078. <pitch>
  4079. <step>F</step>
  4080. <octave>4</octave>
  4081. </pitch>
  4082. <duration>24</duration>
  4083. <voice>1</voice>
  4084. <type>16th</type>
  4085. <stem default-y="13">up</stem>
  4086. <staff>1</staff>
  4087. <beam number="1">end</beam>
  4088. <beam number="2">backward hook</beam>
  4089. </note>
  4090. <note default-x="132">
  4091. <chord/>
  4092. <pitch>
  4093. <step>B</step>
  4094. <alter>-1</alter>
  4095. <octave>4</octave>
  4096. </pitch>
  4097. <duration>24</duration>
  4098. <voice>1</voice>
  4099. <type>16th</type>
  4100. <stem>up</stem>
  4101. <staff>1</staff>
  4102. </note>
  4103. <note default-x="152">
  4104. <pitch>
  4105. <step>G</step>
  4106. <octave>4</octave>
  4107. </pitch>
  4108. <duration>48</duration>
  4109. <voice>1</voice>
  4110. <type>eighth</type>
  4111. <stem default-y="16">up</stem>
  4112. <staff>1</staff>
  4113. </note>
  4114. <note default-x="152">
  4115. <chord/>
  4116. <pitch>
  4117. <step>B</step>
  4118. <alter>-1</alter>
  4119. <octave>4</octave>
  4120. </pitch>
  4121. <duration>48</duration>
  4122. <voice>1</voice>
  4123. <type>eighth</type>
  4124. <stem>up</stem>
  4125. <staff>1</staff>
  4126. </note>
  4127. <note default-x="184">
  4128. <rest>
  4129. <display-step>B</display-step>
  4130. <display-octave>4</display-octave>
  4131. </rest>
  4132. <duration>48</duration>
  4133. <voice>1</voice>
  4134. <type>eighth</type>
  4135. <staff>1</staff>
  4136. </note>
  4137. <backup>
  4138. <duration>288</duration>
  4139. </backup>
  4140. <note default-x="20">
  4141. <pitch>
  4142. <step>B</step>
  4143. <alter>-1</alter>
  4144. <octave>2</octave>
  4145. </pitch>
  4146. <duration>48</duration>
  4147. <voice>3</voice>
  4148. <type>eighth</type>
  4149. <stem default-y="-60.5">down</stem>
  4150. <staff>2</staff>
  4151. </note>
  4152. <note default-x="20">
  4153. <chord/>
  4154. <pitch>
  4155. <step>B</step>
  4156. <alter>-1</alter>
  4157. <octave>3</octave>
  4158. </pitch>
  4159. <duration>48</duration>
  4160. <voice>3</voice>
  4161. <type>eighth</type>
  4162. <stem>down</stem>
  4163. <staff>2</staff>
  4164. </note>
  4165. <note default-x="52">
  4166. <rest>
  4167. <display-step>D</display-step>
  4168. <display-octave>3</display-octave>
  4169. </rest>
  4170. <duration>48</duration>
  4171. <voice>3</voice>
  4172. <type>eighth</type>
  4173. <staff>2</staff>
  4174. </note>
  4175. <note default-x="82">
  4176. <pitch>
  4177. <step>D</step>
  4178. <octave>3</octave>
  4179. </pitch>
  4180. <duration>48</duration>
  4181. <voice>3</voice>
  4182. <type>eighth</type>
  4183. <stem default-y="-52">down</stem>
  4184. <staff>2</staff>
  4185. <beam number="1">begin</beam>
  4186. </note>
  4187. <note default-x="82">
  4188. <chord/>
  4189. <pitch>
  4190. <step>B</step>
  4191. <alter>-1</alter>
  4192. <octave>3</octave>
  4193. </pitch>
  4194. <duration>48</duration>
  4195. <voice>3</voice>
  4196. <type>eighth</type>
  4197. <stem>down</stem>
  4198. <staff>2</staff>
  4199. </note>
  4200. <note default-x="112">
  4201. <rest/>
  4202. <duration>24</duration>
  4203. <voice>3</voice>
  4204. <type>16th</type>
  4205. <staff>2</staff>
  4206. </note>
  4207. <note default-x="132">
  4208. <pitch>
  4209. <step>D</step>
  4210. <octave>3</octave>
  4211. </pitch>
  4212. <duration>24</duration>
  4213. <voice>3</voice>
  4214. <type>16th</type>
  4215. <stem default-y="-52">down</stem>
  4216. <staff>2</staff>
  4217. <beam number="1">end</beam>
  4218. <beam number="2">backward hook</beam>
  4219. </note>
  4220. <note default-x="132">
  4221. <chord/>
  4222. <pitch>
  4223. <step>B</step>
  4224. <alter>-1</alter>
  4225. <octave>3</octave>
  4226. </pitch>
  4227. <duration>24</duration>
  4228. <voice>3</voice>
  4229. <type>16th</type>
  4230. <stem>down</stem>
  4231. <staff>2</staff>
  4232. </note>
  4233. <note default-x="152">
  4234. <pitch>
  4235. <step>E</step>
  4236. <alter>-1</alter>
  4237. <octave>3</octave>
  4238. </pitch>
  4239. <duration>48</duration>
  4240. <voice>3</voice>
  4241. <type>eighth</type>
  4242. <stem default-y="-50.5">down</stem>
  4243. <staff>2</staff>
  4244. </note>
  4245. <note default-x="152">
  4246. <chord/>
  4247. <pitch>
  4248. <step>B</step>
  4249. <alter>-1</alter>
  4250. <octave>3</octave>
  4251. </pitch>
  4252. <duration>48</duration>
  4253. <voice>3</voice>
  4254. <type>eighth</type>
  4255. <stem>down</stem>
  4256. <staff>2</staff>
  4257. </note>
  4258. <note default-x="184">
  4259. <rest>
  4260. <display-step>D</display-step>
  4261. <display-octave>3</display-octave>
  4262. </rest>
  4263. <duration>48</duration>
  4264. <voice>3</voice>
  4265. <type>eighth</type>
  4266. <staff>2</staff>
  4267. </note>
  4268. </measure>
  4269. </part>
  4270. <!--=========================================================-->
  4271. </score-partwise>