Mozart_AnChloe.xml 106 KB

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