BrahWiMeSample.musicxml 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
  3. <score-partwise version="3.1">
  4. <movement-title>Wie Melodien zieht es mir (Page 1)</movement-title>
  5. <identification>
  6. <creator type="composer">Johannes Brahms</creator>
  7. <creator type="lyricist">Klaus Groth</creator>
  8. <rights>Copyright © 2002 MakeMusic, Inc.</rights>
  9. <encoding>
  10. <software>Finale v25 for Mac</software>
  11. <encoding-date>2017-12-12</encoding-date>
  12. <supports attribute="new-system" element="print" type="yes" value="yes"/>
  13. <supports attribute="new-page" element="print" type="yes" value="yes"/>
  14. <supports element="accidental" type="yes"/>
  15. <supports element="beam" type="yes"/>
  16. <supports element="stem" type="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">1.25</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. <distance type="hyphen">60</distance>
  59. <distance type="beam">8</distance>
  60. </appearance>
  61. <music-font font-family="Maestro,engraved" font-size="18"/>
  62. <word-font font-family="Times New Roman" font-size="9"/>
  63. <lyric-font font-family="Times New Roman" font-size="10"/>
  64. </defaults>
  65. <credit page="1">
  66. <credit-type>page number</credit-type>
  67. <credit-words default-x="80" default-y="1680" font-size="12" valign="top">2</credit-words>
  68. </credit>
  69. <credit page="1">
  70. <credit-type>rights</credit-type>
  71. <credit-words default-x="680" default-y="80" font-size="9" halign="center" valign="bottom">Copyright © 2002 MakeMusic, Inc.</credit-words>
  72. </credit>
  73. <credit page="1">
  74. <credit-type>title</credit-type>
  75. <credit-words default-x="680" default-y="1640" font-size="24" justify="center" valign="top">Wie Melodien zieht es mir</credit-words>
  76. </credit>
  77. <credit page="1">
  78. <credit-words default-x="680" default-y="1580" font-size="14" justify="center" valign="top">Op. 105, No. 1</credit-words>
  79. </credit>
  80. <credit page="1">
  81. <credit-type>lyricist</credit-type>
  82. <credit-words default-x="80" default-y="1500" font-size="10" valign="bottom">Klaus Groth</credit-words>
  83. </credit>
  84. <credit page="1">
  85. <credit-type>composer</credit-type>
  86. <credit-words default-x="1280" default-y="1500" font-size="10" halign="right" valign="bottom">Johannes Brahms</credit-words>
  87. </credit>
  88. <part-list>
  89. <score-part id="P1">
  90. <part-name>Voice</part-name>
  91. <score-instrument id="P1-I1">
  92. <instrument-name>Voice</instrument-name>
  93. <instrument-sound>voice.vocals</instrument-sound>
  94. <solo/>
  95. </score-instrument>
  96. <midi-instrument id="P1-I1">
  97. <midi-channel>1</midi-channel>
  98. <midi-program>53</midi-program>
  99. <volume>80</volume>
  100. <pan>0</pan>
  101. </midi-instrument>
  102. </score-part>
  103. <score-part id="P2">
  104. <part-name>Piano</part-name>
  105. <score-instrument id="P2-I2">
  106. <instrument-name>Acoustic Grand Piano</instrument-name>
  107. <instrument-sound>keyboard.piano</instrument-sound>
  108. </score-instrument>
  109. <midi-instrument id="P2-I2">
  110. <midi-channel>2</midi-channel>
  111. <midi-program>1</midi-program>
  112. <volume>80</volume>
  113. <pan>0</pan>
  114. </midi-instrument>
  115. </score-part>
  116. </part-list>
  117. <!--=========================================================-->
  118. <part id="P1">
  119. <measure number="1" width="340">
  120. <print page-number="2">
  121. <system-layout>
  122. <system-margins>
  123. <left-margin>120</left-margin>
  124. <right-margin>0</right-margin>
  125. </system-margins>
  126. <top-system-distance>230</top-system-distance>
  127. </system-layout>
  128. <measure-numbering>system</measure-numbering>
  129. </print>
  130. <attributes>
  131. <divisions>2</divisions>
  132. <key>
  133. <fifths>3</fifths>
  134. <mode>major</mode>
  135. </key>
  136. <time symbol="cut">
  137. <beats>2</beats>
  138. <beat-type>2</beat-type>
  139. </time>
  140. <clef>
  141. <sign>G</sign>
  142. <line>2</line>
  143. </clef>
  144. </attributes>
  145. <direction directive="yes" placement="above">
  146. <direction-type>
  147. <words default-y="15" font-size="10.5" font-weight="bold">Zart</words>
  148. </direction-type>
  149. <sound tempo="96"/>
  150. </direction>
  151. <note default-x="139">
  152. <rest/>
  153. <duration>2</duration>
  154. <voice>1</voice>
  155. <type>quarter</type>
  156. </note>
  157. <note default-x="189">
  158. <pitch>
  159. <step>C</step>
  160. <alter>1</alter>
  161. <octave>4</octave>
  162. </pitch>
  163. <duration>2</duration>
  164. <voice>1</voice>
  165. <type>quarter</type>
  166. <stem default-y="-14">up</stem>
  167. <lyric default-y="-80" number="1">
  168. <syllabic>single</syllabic>
  169. <text>Wie</text>
  170. </lyric>
  171. </note>
  172. <note default-x="239">
  173. <pitch>
  174. <step>E</step>
  175. <octave>4</octave>
  176. </pitch>
  177. <duration>2</duration>
  178. <voice>1</voice>
  179. <type>quarter</type>
  180. <stem default-y="-4">up</stem>
  181. <lyric default-y="-80" number="1">
  182. <syllabic>begin</syllabic>
  183. <text>Me</text>
  184. </lyric>
  185. </note>
  186. <note default-x="289">
  187. <pitch>
  188. <step>A</step>
  189. <octave>4</octave>
  190. </pitch>
  191. <duration>2</duration>
  192. <voice>1</voice>
  193. <type>quarter</type>
  194. <stem default-y="11">up</stem>
  195. <lyric default-y="-80" number="1">
  196. <syllabic>middle</syllabic>
  197. <text>lo</text>
  198. </lyric>
  199. </note>
  200. </measure>
  201. <!--=======================================================-->
  202. <measure number="2" width="220">
  203. <note default-x="18">
  204. <pitch>
  205. <step>D</step>
  206. <octave>5</octave>
  207. </pitch>
  208. <duration>2</duration>
  209. <voice>1</voice>
  210. <type>quarter</type>
  211. <stem default-y="-45.5">down</stem>
  212. <notations>
  213. <slur number="1" placement="above" type="start"/>
  214. </notations>
  215. <lyric default-y="-80" number="1">
  216. <syllabic>middle</syllabic>
  217. <text>di</text>
  218. </lyric>
  219. </note>
  220. <note default-x="68">
  221. <pitch>
  222. <step>C</step>
  223. <alter>1</alter>
  224. <octave>5</octave>
  225. </pitch>
  226. <duration>2</duration>
  227. <voice>1</voice>
  228. <type>quarter</type>
  229. <stem default-y="-50.5">down</stem>
  230. <notations>
  231. <slur number="1" type="stop"/>
  232. </notations>
  233. </note>
  234. <note default-x="118">
  235. <pitch>
  236. <step>B</step>
  237. <octave>4</octave>
  238. </pitch>
  239. <duration>2</duration>
  240. <voice>1</voice>
  241. <type>quarter</type>
  242. <stem default-y="-55.5">down</stem>
  243. <notations>
  244. <slur number="1" placement="above" type="start"/>
  245. </notations>
  246. <lyric default-y="-80" number="1">
  247. <syllabic>end</syllabic>
  248. <text>en</text>
  249. <extend/>
  250. </lyric>
  251. </note>
  252. <note default-x="168">
  253. <pitch>
  254. <step>A</step>
  255. <octave>4</octave>
  256. </pitch>
  257. <duration>2</duration>
  258. <voice>1</voice>
  259. <type>quarter</type>
  260. <stem default-y="11">up</stem>
  261. <notations>
  262. <slur number="1" type="stop"/>
  263. </notations>
  264. </note>
  265. </measure>
  266. <!--=======================================================-->
  267. <measure number="3" width="217">
  268. <note default-x="18">
  269. <pitch>
  270. <step>G</step>
  271. <alter>1</alter>
  272. <octave>4</octave>
  273. </pitch>
  274. <duration>4</duration>
  275. <voice>1</voice>
  276. <type>half</type>
  277. <stem default-y="6">up</stem>
  278. <lyric default-y="-80" number="1">
  279. <syllabic>single</syllabic>
  280. <text>zieht</text>
  281. </lyric>
  282. </note>
  283. <note default-x="116">
  284. <pitch>
  285. <step>F</step>
  286. <alter>1</alter>
  287. <octave>4</octave>
  288. </pitch>
  289. <duration>2</duration>
  290. <voice>1</voice>
  291. <type>quarter</type>
  292. <stem default-y="1">up</stem>
  293. <lyric default-y="-80" number="1">
  294. <syllabic>single</syllabic>
  295. <text>es</text>
  296. </lyric>
  297. </note>
  298. <note default-x="166">
  299. <pitch>
  300. <step>A</step>
  301. <octave>4</octave>
  302. </pitch>
  303. <duration>2</duration>
  304. <voice>1</voice>
  305. <type>quarter</type>
  306. <stem default-y="11">up</stem>
  307. <lyric default-y="-80" number="1">
  308. <syllabic>single</syllabic>
  309. <text>mir</text>
  310. </lyric>
  311. </note>
  312. </measure>
  313. <!--=======================================================-->
  314. <measure number="4" width="303">
  315. <note default-x="26">
  316. <pitch>
  317. <step>F</step>
  318. <octave>4</octave>
  319. </pitch>
  320. <duration>3</duration>
  321. <voice>1</voice>
  322. <type>quarter</type>
  323. <dot/>
  324. <accidental>natural</accidental>
  325. <stem default-y="1">up</stem>
  326. <lyric default-y="-80" number="1">
  327. <syllabic>begin</syllabic>
  328. <text>lei</text>
  329. </lyric>
  330. </note>
  331. <note default-x="132">
  332. <pitch>
  333. <step>G</step>
  334. <octave>4</octave>
  335. </pitch>
  336. <duration>1</duration>
  337. <voice>1</voice>
  338. <type>eighth</type>
  339. <accidental>natural</accidental>
  340. <stem default-y="6">up</stem>
  341. <lyric default-y="-80" number="1">
  342. <syllabic>end</syllabic>
  343. <text>se</text>
  344. </lyric>
  345. </note>
  346. <note default-x="175">
  347. <pitch>
  348. <step>F</step>
  349. <octave>4</octave>
  350. </pitch>
  351. <duration>3</duration>
  352. <voice>1</voice>
  353. <type>quarter</type>
  354. <dot/>
  355. <stem default-y="1">up</stem>
  356. <lyric default-y="-80" number="1">
  357. <syllabic>single</syllabic>
  358. <text>durch</text>
  359. </lyric>
  360. </note>
  361. <note default-x="265">
  362. <pitch>
  363. <step>G</step>
  364. <octave>4</octave>
  365. </pitch>
  366. <duration>1</duration>
  367. <voice>1</voice>
  368. <type>eighth</type>
  369. <stem default-y="6">up</stem>
  370. <lyric default-y="-80" number="1">
  371. <syllabic>single</syllabic>
  372. <text>den</text>
  373. </lyric>
  374. </note>
  375. </measure>
  376. <!--=======================================================-->
  377. <measure number="5" width="371">
  378. <print new-system="yes">
  379. <system-layout>
  380. <system-distance>165</system-distance>
  381. </system-layout>
  382. </print>
  383. <note default-x="107">
  384. <pitch>
  385. <step>E</step>
  386. <octave>4</octave>
  387. </pitch>
  388. <duration>4</duration>
  389. <voice>1</voice>
  390. <type>half</type>
  391. <stem default-y="-4">up</stem>
  392. <lyric default-y="-80" number="1" relative-x="3">
  393. <syllabic>single</syllabic>
  394. <text>Sinn,</text>
  395. </lyric>
  396. </note>
  397. <note default-x="243">
  398. <rest/>
  399. <duration>2</duration>
  400. <voice>1</voice>
  401. <type>quarter</type>
  402. </note>
  403. <note default-x="304">
  404. <pitch>
  405. <step>C</step>
  406. <alter>1</alter>
  407. <octave>5</octave>
  408. </pitch>
  409. <duration>2</duration>
  410. <voice>1</voice>
  411. <type>quarter</type>
  412. <stem default-y="-50.5">down</stem>
  413. <lyric default-y="-80" number="1">
  414. <syllabic>single</syllabic>
  415. <text>wie</text>
  416. </lyric>
  417. </note>
  418. </measure>
  419. <!--=======================================================-->
  420. <measure number="6" width="315">
  421. <note default-x="18">
  422. <pitch>
  423. <step>B</step>
  424. <octave>4</octave>
  425. </pitch>
  426. <duration>3</duration>
  427. <voice>1</voice>
  428. <type>quarter</type>
  429. <dot/>
  430. <stem default-y="-55.5">down</stem>
  431. <lyric default-y="-80" number="1">
  432. <syllabic>begin</syllabic>
  433. <text>Früh</text>
  434. </lyric>
  435. </note>
  436. <note default-x="124">
  437. <pitch>
  438. <step>F</step>
  439. <alter>1</alter>
  440. <octave>4</octave>
  441. </pitch>
  442. <duration>1</duration>
  443. <voice>1</voice>
  444. <type>eighth</type>
  445. <stem default-y="1">up</stem>
  446. <lyric default-y="-80" number="1">
  447. <syllabic>middle</syllabic>
  448. <text>lings</text>
  449. </lyric>
  450. </note>
  451. <note default-x="168">
  452. <pitch>
  453. <step>G</step>
  454. <alter>1</alter>
  455. <octave>4</octave>
  456. </pitch>
  457. <duration>3</duration>
  458. <voice>1</voice>
  459. <type>quarter</type>
  460. <dot/>
  461. <stem default-y="6">up</stem>
  462. <lyric default-y="-80" number="1">
  463. <syllabic>middle</syllabic>
  464. <text>blu</text>
  465. </lyric>
  466. </note>
  467. <note default-x="274">
  468. <pitch>
  469. <step>E</step>
  470. <octave>4</octave>
  471. </pitch>
  472. <duration>1</duration>
  473. <voice>1</voice>
  474. <type>eighth</type>
  475. <stem default-y="-4">up</stem>
  476. <lyric default-y="-80" number="1">
  477. <syllabic>end</syllabic>
  478. <text>men</text>
  479. </lyric>
  480. </note>
  481. </measure>
  482. <!--=======================================================-->
  483. <measure number="7" width="230">
  484. <note default-x="18">
  485. <pitch>
  486. <step>B</step>
  487. <octave>4</octave>
  488. </pitch>
  489. <duration>4</duration>
  490. <voice>1</voice>
  491. <type>half</type>
  492. <stem default-y="-55.5">down</stem>
  493. <lyric default-y="-80" number="1">
  494. <syllabic>single</syllabic>
  495. <text>blüht</text>
  496. </lyric>
  497. </note>
  498. <note default-x="123">
  499. <pitch>
  500. <step>A</step>
  501. <octave>4</octave>
  502. </pitch>
  503. <duration>2</duration>
  504. <voice>1</voice>
  505. <type>quarter</type>
  506. <stem default-y="11">up</stem>
  507. <lyric default-y="-80" number="1">
  508. <syllabic>single</syllabic>
  509. <text>es</text>
  510. </lyric>
  511. </note>
  512. <note default-x="175">
  513. <pitch>
  514. <step>E</step>
  515. <octave>5</octave>
  516. </pitch>
  517. <duration>2</duration>
  518. <voice>1</voice>
  519. <type>quarter</type>
  520. <stem default-y="-40.5">down</stem>
  521. <lyric default-y="-80" number="1">
  522. <syllabic>single</syllabic>
  523. <text>und</text>
  524. </lyric>
  525. </note>
  526. </measure>
  527. <!--=======================================================-->
  528. <measure number="8" width="284">
  529. <note default-x="27">
  530. <pitch>
  531. <step>D</step>
  532. <alter>1</alter>
  533. <octave>5</octave>
  534. </pitch>
  535. <duration>3</duration>
  536. <voice>1</voice>
  537. <type>quarter</type>
  538. <dot/>
  539. <accidental>sharp</accidental>
  540. <stem default-y="-45.5">down</stem>
  541. <lyric default-y="-80" number="1">
  542. <syllabic>single</syllabic>
  543. <text>schwebt</text>
  544. </lyric>
  545. </note>
  546. <note default-x="120">
  547. <pitch>
  548. <step>C</step>
  549. <alter>1</alter>
  550. <octave>5</octave>
  551. </pitch>
  552. <duration>1</duration>
  553. <voice>1</voice>
  554. <type>eighth</type>
  555. <stem default-y="-50.5">down</stem>
  556. <lyric default-y="-80" number="1">
  557. <syllabic>single</syllabic>
  558. <text>wie</text>
  559. </lyric>
  560. </note>
  561. <note default-x="163">
  562. <pitch>
  563. <step>B</step>
  564. <octave>4</octave>
  565. </pitch>
  566. <duration>3</duration>
  567. <voice>1</voice>
  568. <type>quarter</type>
  569. <dot/>
  570. <stem default-y="-55.5">down</stem>
  571. <lyric default-y="-80" number="1">
  572. <syllabic>single</syllabic>
  573. <text>Duft</text>
  574. </lyric>
  575. </note>
  576. <note default-x="249">
  577. <pitch>
  578. <step>F</step>
  579. <alter>2</alter>
  580. <octave>4</octave>
  581. </pitch>
  582. <duration>1</duration>
  583. <voice>1</voice>
  584. <type>eighth</type>
  585. <accidental>double-sharp</accidental>
  586. <stem default-y="1">up</stem>
  587. <lyric default-y="-80" number="1">
  588. <syllabic>begin</syllabic>
  589. <text>da</text>
  590. </lyric>
  591. </note>
  592. </measure>
  593. <!--=======================================================-->
  594. <measure number="9" width="296">
  595. <print new-system="yes">
  596. <system-layout>
  597. <system-distance>165</system-distance>
  598. </system-layout>
  599. </print>
  600. <note default-x="113">
  601. <pitch>
  602. <step>G</step>
  603. <alter>1</alter>
  604. <octave>4</octave>
  605. </pitch>
  606. <duration>4</duration>
  607. <voice>1</voice>
  608. <type>half</type>
  609. <stem default-y="6">up</stem>
  610. <lyric default-y="-80" number="1" relative-x="3">
  611. <syllabic>end</syllabic>
  612. <text>hin,</text>
  613. </lyric>
  614. </note>
  615. <note default-x="210">
  616. <rest/>
  617. <duration>4</duration>
  618. <voice>1</voice>
  619. <type>half</type>
  620. </note>
  621. </measure>
  622. <!--=======================================================-->
  623. <measure number="10" width="202">
  624. <note default-x="16">
  625. <rest/>
  626. <duration>4</duration>
  627. <voice>1</voice>
  628. <type>half</type>
  629. </note>
  630. <note default-x="118">
  631. <rest/>
  632. <duration>2</duration>
  633. <voice>1</voice>
  634. <type>quarter</type>
  635. </note>
  636. <note default-x="159">
  637. <pitch>
  638. <step>B</step>
  639. <alter>1</alter>
  640. <octave>4</octave>
  641. </pitch>
  642. <duration>2</duration>
  643. <voice>1</voice>
  644. <type>quarter</type>
  645. <accidental>sharp</accidental>
  646. <stem default-y="-55.5">down</stem>
  647. <lyric default-y="-80" number="1">
  648. <syllabic>single</syllabic>
  649. <text>und</text>
  650. </lyric>
  651. </note>
  652. </measure>
  653. <!--=======================================================-->
  654. <measure number="11" width="251">
  655. <note default-x="39">
  656. <pitch>
  657. <step>D</step>
  658. <alter>1</alter>
  659. <octave>5</octave>
  660. </pitch>
  661. <duration>3</duration>
  662. <voice>1</voice>
  663. <type>quarter</type>
  664. <dot/>
  665. <accidental>sharp</accidental>
  666. <stem default-y="-45.5">down</stem>
  667. <lyric default-y="-80" number="1">
  668. <syllabic>single</syllabic>
  669. <text>schwebt</text>
  670. </lyric>
  671. </note>
  672. <note default-x="108">
  673. <pitch>
  674. <step>C</step>
  675. <alter>1</alter>
  676. <octave>5</octave>
  677. </pitch>
  678. <duration>1</duration>
  679. <voice>1</voice>
  680. <type>eighth</type>
  681. <stem default-y="-50.5">down</stem>
  682. <lyric default-y="-80" number="1">
  683. <syllabic>single</syllabic>
  684. <text>wie</text>
  685. </lyric>
  686. </note>
  687. <note default-x="151">
  688. <pitch>
  689. <step>A</step>
  690. <octave>4</octave>
  691. </pitch>
  692. <duration>3</duration>
  693. <voice>1</voice>
  694. <type>quarter</type>
  695. <dot/>
  696. <stem default-y="11">up</stem>
  697. <lyric default-y="-80" number="1">
  698. <syllabic>single</syllabic>
  699. <text>Duft</text>
  700. </lyric>
  701. </note>
  702. <note default-x="221">
  703. <pitch>
  704. <step>D</step>
  705. <alter>1</alter>
  706. <octave>4</octave>
  707. </pitch>
  708. <duration>1</duration>
  709. <voice>1</voice>
  710. <type>eighth</type>
  711. <accidental>sharp</accidental>
  712. <stem default-y="-9">up</stem>
  713. <lyric default-y="-80" number="1">
  714. <syllabic>begin</syllabic>
  715. <text>da</text>
  716. </lyric>
  717. </note>
  718. </measure>
  719. <!--=======================================================-->
  720. <measure number="12" width="220">
  721. <note default-x="24">
  722. <pitch>
  723. <step>E</step>
  724. <octave>4</octave>
  725. </pitch>
  726. <duration>4</duration>
  727. <voice>1</voice>
  728. <type>half</type>
  729. <stem default-y="-4">up</stem>
  730. <lyric default-y="-80" number="1">
  731. <syllabic>end</syllabic>
  732. <text>hin.</text>
  733. </lyric>
  734. </note>
  735. <note default-x="120">
  736. <rest/>
  737. <duration>4</duration>
  738. <voice>1</voice>
  739. <type>half</type>
  740. </note>
  741. </measure>
  742. <!--=======================================================-->
  743. <measure number="13" width="231">
  744. <note>
  745. <rest measure="yes"/>
  746. <duration>8</duration>
  747. <voice>1</voice>
  748. </note>
  749. </measure>
  750. </part>
  751. <!--=========================================================-->
  752. <part id="P2">
  753. <measure number="1" width="340">
  754. <print>
  755. <staff-layout number="1">
  756. <staff-distance>100</staff-distance>
  757. </staff-layout>
  758. <staff-layout number="2">
  759. <staff-distance>60</staff-distance>
  760. </staff-layout>
  761. <measure-numbering>none</measure-numbering>
  762. </print>
  763. <attributes>
  764. <divisions>8</divisions>
  765. <key>
  766. <fifths>3</fifths>
  767. <mode>major</mode>
  768. </key>
  769. <time symbol="cut">
  770. <beats>2</beats>
  771. <beat-type>2</beat-type>
  772. </time>
  773. <staves>2</staves>
  774. <clef number="1">
  775. <sign>F</sign>
  776. <line>4</line>
  777. </clef>
  778. <clef number="2">
  779. <sign>F</sign>
  780. <line>4</line>
  781. </clef>
  782. </attributes>
  783. <direction placement="below">
  784. <direction-type>
  785. <dynamics default-y="-80" halign="left">
  786. <p/>
  787. </dynamics>
  788. </direction-type>
  789. <staff>1</staff>
  790. <sound dynamics="54"/>
  791. </direction>
  792. <note default-x="139">
  793. <rest/>
  794. <duration>4</duration>
  795. <voice>1</voice>
  796. <type>eighth</type>
  797. <staff>1</staff>
  798. </note>
  799. <direction placement="below">
  800. <direction-type>
  801. <words default-y="-80" font-style="italic" relative-x="14">sempre dolce</words>
  802. </direction-type>
  803. <staff>1</staff>
  804. </direction>
  805. <note default-x="164">
  806. <pitch>
  807. <step>E</step>
  808. <octave>3</octave>
  809. </pitch>
  810. <duration>4</duration>
  811. <voice>1</voice>
  812. <type>eighth</type>
  813. <stem default-y="-50">down</stem>
  814. <staff>1</staff>
  815. <beam number="1">begin</beam>
  816. <notations>
  817. <slur default-x="7" default-y="14" number="1" placement="above" type="start"/>
  818. </notations>
  819. </note>
  820. <note default-x="189">
  821. <pitch>
  822. <step>E</step>
  823. <octave>4</octave>
  824. </pitch>
  825. <duration>4</duration>
  826. <voice>1</voice>
  827. <type>eighth</type>
  828. <stem default-y="-48">down</stem>
  829. <staff>1</staff>
  830. <beam number="1">continue</beam>
  831. </note>
  832. <note default-x="214">
  833. <pitch>
  834. <step>C</step>
  835. <alter>1</alter>
  836. <octave>4</octave>
  837. </pitch>
  838. <duration>4</duration>
  839. <voice>1</voice>
  840. <type>eighth</type>
  841. <stem default-y="-45">down</stem>
  842. <staff>1</staff>
  843. <beam number="1">end</beam>
  844. </note>
  845. <note default-x="239">
  846. <pitch>
  847. <step>A</step>
  848. <octave>3</octave>
  849. </pitch>
  850. <duration>4</duration>
  851. <voice>1</voice>
  852. <type>eighth</type>
  853. <stem default-y="-55">down</stem>
  854. <staff>1</staff>
  855. <beam number="1">begin</beam>
  856. </note>
  857. <note default-x="264">
  858. <pitch>
  859. <step>E</step>
  860. <octave>3</octave>
  861. </pitch>
  862. <duration>4</duration>
  863. <voice>1</voice>
  864. <type>eighth</type>
  865. <stem default-y="-60.5">down</stem>
  866. <staff>1</staff>
  867. <beam number="1">continue</beam>
  868. </note>
  869. <note default-x="289">
  870. <pitch>
  871. <step>C</step>
  872. <alter>1</alter>
  873. <octave>3</octave>
  874. </pitch>
  875. <duration>4</duration>
  876. <voice>1</voice>
  877. <type>eighth</type>
  878. <stem default-y="36">up</stem>
  879. <staff>2</staff>
  880. <beam number="1">continue</beam>
  881. </note>
  882. <note default-x="313">
  883. <pitch>
  884. <step>A</step>
  885. <octave>2</octave>
  886. </pitch>
  887. <duration>4</duration>
  888. <voice>1</voice>
  889. <type>eighth</type>
  890. <stem default-y="30">up</stem>
  891. <staff>2</staff>
  892. <beam number="1">end</beam>
  893. <notations>
  894. <slur number="1" type="stop"/>
  895. </notations>
  896. </note>
  897. <backup>
  898. <duration>32</duration>
  899. </backup>
  900. <note default-x="139">
  901. <pitch>
  902. <step>A</step>
  903. <octave>1</octave>
  904. </pitch>
  905. <duration>16</duration>
  906. <voice>3</voice>
  907. <type>half</type>
  908. <stem default-y="1">up</stem>
  909. <staff>2</staff>
  910. </note>
  911. <note default-x="139">
  912. <chord/>
  913. <pitch>
  914. <step>A</step>
  915. <octave>2</octave>
  916. </pitch>
  917. <duration>16</duration>
  918. <voice>3</voice>
  919. <type>half</type>
  920. <stem>up</stem>
  921. <staff>2</staff>
  922. </note>
  923. <note default-x="239">
  924. <rest/>
  925. <duration>8</duration>
  926. <voice>3</voice>
  927. <type>quarter</type>
  928. <staff>2</staff>
  929. </note>
  930. <forward>
  931. <duration>8</duration>
  932. <voice>3</voice>
  933. <staff>2</staff>
  934. </forward>
  935. </measure>
  936. <!--=======================================================-->
  937. <measure number="2" width="220">
  938. <note default-x="18">
  939. <rest/>
  940. <duration>4</duration>
  941. <voice>1</voice>
  942. <type>eighth</type>
  943. <staff>1</staff>
  944. </note>
  945. <note default-x="43">
  946. <pitch>
  947. <step>A</step>
  948. <octave>3</octave>
  949. </pitch>
  950. <duration>4</duration>
  951. <voice>1</voice>
  952. <type>eighth</type>
  953. <stem default-y="-35">down</stem>
  954. <staff>1</staff>
  955. <beam number="1">begin</beam>
  956. <notations>
  957. <slur default-x="7" default-y="20" number="1" placement="above" type="start"/>
  958. </notations>
  959. </note>
  960. <note default-x="68">
  961. <pitch>
  962. <step>A</step>
  963. <octave>4</octave>
  964. </pitch>
  965. <duration>4</duration>
  966. <voice>1</voice>
  967. <type>eighth</type>
  968. <stem default-y="-32">down</stem>
  969. <staff>1</staff>
  970. <beam number="1">continue</beam>
  971. </note>
  972. <note default-x="93">
  973. <pitch>
  974. <step>E</step>
  975. <octave>4</octave>
  976. </pitch>
  977. <duration>4</duration>
  978. <voice>1</voice>
  979. <type>eighth</type>
  980. <stem default-y="-30">down</stem>
  981. <staff>1</staff>
  982. <beam number="1">end</beam>
  983. </note>
  984. <note default-x="118">
  985. <pitch>
  986. <step>C</step>
  987. <alter>1</alter>
  988. <octave>4</octave>
  989. </pitch>
  990. <duration>4</duration>
  991. <voice>1</voice>
  992. <type>eighth</type>
  993. <stem default-y="-55">down</stem>
  994. <staff>1</staff>
  995. <beam number="1">begin</beam>
  996. </note>
  997. <note default-x="143">
  998. <pitch>
  999. <step>A</step>
  1000. <octave>3</octave>
  1001. </pitch>
  1002. <duration>4</duration>
  1003. <voice>1</voice>
  1004. <type>eighth</type>
  1005. <stem default-y="-60.5">down</stem>
  1006. <staff>1</staff>
  1007. <beam number="1">continue</beam>
  1008. </note>
  1009. <note default-x="168">
  1010. <pitch>
  1011. <step>E</step>
  1012. <octave>3</octave>
  1013. </pitch>
  1014. <duration>4</duration>
  1015. <voice>1</voice>
  1016. <type>eighth</type>
  1017. <stem default-y="36">up</stem>
  1018. <staff>2</staff>
  1019. <beam number="1">continue</beam>
  1020. </note>
  1021. <note default-x="193">
  1022. <pitch>
  1023. <step>C</step>
  1024. <alter>1</alter>
  1025. <octave>3</octave>
  1026. </pitch>
  1027. <duration>4</duration>
  1028. <voice>1</voice>
  1029. <type>eighth</type>
  1030. <stem default-y="30">up</stem>
  1031. <staff>2</staff>
  1032. <beam number="1">end</beam>
  1033. <notations>
  1034. <slur number="1" type="stop"/>
  1035. </notations>
  1036. </note>
  1037. <backup>
  1038. <duration>32</duration>
  1039. </backup>
  1040. <note default-x="18">
  1041. <pitch>
  1042. <step>C</step>
  1043. <alter>1</alter>
  1044. <octave>2</octave>
  1045. </pitch>
  1046. <duration>16</duration>
  1047. <voice>3</voice>
  1048. <type>half</type>
  1049. <stem default-y="-19">up</stem>
  1050. <staff>2</staff>
  1051. </note>
  1052. <note default-x="119">
  1053. <rest/>
  1054. <duration>8</duration>
  1055. <voice>3</voice>
  1056. <type>quarter</type>
  1057. <staff>2</staff>
  1058. </note>
  1059. <forward>
  1060. <duration>8</duration>
  1061. <voice>3</voice>
  1062. <staff>2</staff>
  1063. </forward>
  1064. </measure>
  1065. <!--=======================================================-->
  1066. <measure number="3" width="217">
  1067. <forward>
  1068. <duration>32</duration>
  1069. <voice>1</voice>
  1070. <staff>1</staff>
  1071. </forward>
  1072. <backup>
  1073. <duration>32</duration>
  1074. </backup>
  1075. <note default-x="18">
  1076. <pitch>
  1077. <step>D</step>
  1078. <octave>2</octave>
  1079. </pitch>
  1080. <duration>4</duration>
  1081. <voice>3</voice>
  1082. <type>eighth</type>
  1083. <stem default-y="29">up</stem>
  1084. <staff>2</staff>
  1085. <beam number="1">begin</beam>
  1086. <notations>
  1087. <slur number="1" placement="below" type="start"/>
  1088. </notations>
  1089. </note>
  1090. <note default-x="43">
  1091. <pitch>
  1092. <step>A</step>
  1093. <octave>2</octave>
  1094. </pitch>
  1095. <duration>4</duration>
  1096. <voice>3</voice>
  1097. <type>eighth</type>
  1098. <stem default-y="35">up</stem>
  1099. <staff>2</staff>
  1100. <beam number="1">continue</beam>
  1101. </note>
  1102. <note default-x="68">
  1103. <pitch>
  1104. <step>D</step>
  1105. <octave>3</octave>
  1106. </pitch>
  1107. <duration>4</duration>
  1108. <voice>3</voice>
  1109. <type>eighth</type>
  1110. <stem default-y="41">up</stem>
  1111. <staff>2</staff>
  1112. <beam number="1">continue</beam>
  1113. <notations>
  1114. <slur default-x="6" default-y="-37" number="1" type="stop"/>
  1115. </notations>
  1116. </note>
  1117. <note default-x="92">
  1118. <pitch>
  1119. <step>F</step>
  1120. <alter>1</alter>
  1121. <octave>3</octave>
  1122. </pitch>
  1123. <duration>4</duration>
  1124. <voice>3</voice>
  1125. <type>eighth</type>
  1126. <stem default-y="-61">down</stem>
  1127. <staff>1</staff>
  1128. <beam number="1">end</beam>
  1129. </note>
  1130. <note default-x="92">
  1131. <chord/>
  1132. <pitch>
  1133. <step>A</step>
  1134. <octave>3</octave>
  1135. </pitch>
  1136. <duration>4</duration>
  1137. <voice>3</voice>
  1138. <type>eighth</type>
  1139. <stem>down</stem>
  1140. <staff>1</staff>
  1141. </note>
  1142. <note default-x="116">
  1143. <pitch>
  1144. <step>D</step>
  1145. <octave>2</octave>
  1146. </pitch>
  1147. <duration>4</duration>
  1148. <voice>3</voice>
  1149. <type>eighth</type>
  1150. <stem default-y="29">up</stem>
  1151. <staff>2</staff>
  1152. <beam number="1">begin</beam>
  1153. <notations>
  1154. <slur number="1" placement="below" type="start"/>
  1155. </notations>
  1156. </note>
  1157. <note default-x="141">
  1158. <pitch>
  1159. <step>D</step>
  1160. <octave>3</octave>
  1161. </pitch>
  1162. <duration>4</duration>
  1163. <voice>3</voice>
  1164. <type>eighth</type>
  1165. <stem default-y="35">up</stem>
  1166. <staff>2</staff>
  1167. <beam number="1">continue</beam>
  1168. </note>
  1169. <note default-x="166">
  1170. <pitch>
  1171. <step>F</step>
  1172. <alter>1</alter>
  1173. <octave>3</octave>
  1174. </pitch>
  1175. <duration>4</duration>
  1176. <voice>3</voice>
  1177. <type>eighth</type>
  1178. <stem default-y="41">up</stem>
  1179. <staff>2</staff>
  1180. <beam number="1">continue</beam>
  1181. <notations>
  1182. <slur default-x="6" default-y="-26" number="1" type="stop"/>
  1183. </notations>
  1184. </note>
  1185. <note default-x="191">
  1186. <pitch>
  1187. <step>A</step>
  1188. <octave>3</octave>
  1189. </pitch>
  1190. <duration>4</duration>
  1191. <voice>3</voice>
  1192. <type>eighth</type>
  1193. <stem default-y="-61">down</stem>
  1194. <staff>1</staff>
  1195. <beam number="1">end</beam>
  1196. </note>
  1197. <note default-x="191">
  1198. <chord/>
  1199. <pitch>
  1200. <step>D</step>
  1201. <octave>4</octave>
  1202. </pitch>
  1203. <duration>4</duration>
  1204. <voice>3</voice>
  1205. <type>eighth</type>
  1206. <stem>down</stem>
  1207. <staff>1</staff>
  1208. </note>
  1209. </measure>
  1210. <!--=======================================================-->
  1211. <measure number="4" width="303">
  1212. <forward>
  1213. <duration>32</duration>
  1214. <voice>1</voice>
  1215. <staff>1</staff>
  1216. </forward>
  1217. <backup>
  1218. <duration>32</duration>
  1219. </backup>
  1220. <note default-x="26">
  1221. <pitch>
  1222. <step>D</step>
  1223. <octave>2</octave>
  1224. </pitch>
  1225. <duration>4</duration>
  1226. <voice>3</voice>
  1227. <type>eighth</type>
  1228. <stem default-y="29.5">up</stem>
  1229. <staff>2</staff>
  1230. <beam number="1">begin</beam>
  1231. <notations>
  1232. <slur number="1" placement="below" type="start"/>
  1233. </notations>
  1234. </note>
  1235. <note default-x="62">
  1236. <pitch>
  1237. <step>B</step>
  1238. <alter>-1</alter>
  1239. <octave>2</octave>
  1240. </pitch>
  1241. <duration>4</duration>
  1242. <voice>3</voice>
  1243. <type>eighth</type>
  1244. <accidental>flat</accidental>
  1245. <stem default-y="35">up</stem>
  1246. <staff>2</staff>
  1247. <beam number="1">continue</beam>
  1248. </note>
  1249. <note default-x="90">
  1250. <pitch>
  1251. <step>D</step>
  1252. <octave>3</octave>
  1253. </pitch>
  1254. <duration>4</duration>
  1255. <voice>3</voice>
  1256. <type>eighth</type>
  1257. <stem default-y="39.5">up</stem>
  1258. <staff>2</staff>
  1259. <beam number="1">continue</beam>
  1260. <notations>
  1261. <slur default-x="8" default-y="-37" number="1" type="stop"/>
  1262. </notations>
  1263. </note>
  1264. <note default-x="132">
  1265. <pitch>
  1266. <step>F</step>
  1267. <octave>3</octave>
  1268. </pitch>
  1269. <duration>4</duration>
  1270. <voice>3</voice>
  1271. <type>eighth</type>
  1272. <accidental>natural</accidental>
  1273. <stem default-y="-60.5">down</stem>
  1274. <staff>1</staff>
  1275. <beam number="1">end</beam>
  1276. </note>
  1277. <note default-x="132">
  1278. <chord/>
  1279. <pitch>
  1280. <step>B</step>
  1281. <alter>-1</alter>
  1282. <octave>3</octave>
  1283. </pitch>
  1284. <duration>4</duration>
  1285. <voice>3</voice>
  1286. <type>eighth</type>
  1287. <accidental>flat</accidental>
  1288. <stem>down</stem>
  1289. <staff>1</staff>
  1290. </note>
  1291. <note default-x="175">
  1292. <pitch>
  1293. <step>D</step>
  1294. <octave>2</octave>
  1295. </pitch>
  1296. <duration>4</duration>
  1297. <voice>3</voice>
  1298. <type>eighth</type>
  1299. <stem default-y="29">up</stem>
  1300. <staff>2</staff>
  1301. <beam number="1">begin</beam>
  1302. <notations>
  1303. <slur number="1" placement="below" type="start"/>
  1304. </notations>
  1305. </note>
  1306. <note default-x="204">
  1307. <pitch>
  1308. <step>D</step>
  1309. <octave>3</octave>
  1310. </pitch>
  1311. <duration>4</duration>
  1312. <voice>3</voice>
  1313. <type>eighth</type>
  1314. <stem default-y="34.5">up</stem>
  1315. <staff>2</staff>
  1316. <beam number="1">continue</beam>
  1317. </note>
  1318. <note default-x="237">
  1319. <pitch>
  1320. <step>F</step>
  1321. <octave>3</octave>
  1322. </pitch>
  1323. <duration>4</duration>
  1324. <voice>3</voice>
  1325. <type>eighth</type>
  1326. <accidental>natural</accidental>
  1327. <stem default-y="41">up</stem>
  1328. <staff>2</staff>
  1329. <beam number="1">continue</beam>
  1330. <notations>
  1331. <slur default-x="6" default-y="-26" number="1" type="stop"/>
  1332. </notations>
  1333. </note>
  1334. <note default-x="265">
  1335. <pitch>
  1336. <step>B</step>
  1337. <alter>-1</alter>
  1338. <octave>3</octave>
  1339. </pitch>
  1340. <duration>4</duration>
  1341. <voice>3</voice>
  1342. <type>eighth</type>
  1343. <stem default-y="-60.5">down</stem>
  1344. <staff>1</staff>
  1345. <beam number="1">end</beam>
  1346. </note>
  1347. <note default-x="265">
  1348. <chord/>
  1349. <pitch>
  1350. <step>D</step>
  1351. <octave>4</octave>
  1352. </pitch>
  1353. <duration>4</duration>
  1354. <voice>3</voice>
  1355. <type>eighth</type>
  1356. <stem>down</stem>
  1357. <staff>1</staff>
  1358. </note>
  1359. </measure>
  1360. <!--=======================================================-->
  1361. <measure number="5" width="371">
  1362. <print new-system="yes">
  1363. <staff-layout number="2">
  1364. <staff-distance>70</staff-distance>
  1365. </staff-layout>
  1366. </print>
  1367. <forward>
  1368. <duration>16</duration>
  1369. <voice>1</voice>
  1370. <staff>1</staff>
  1371. </forward>
  1372. <attributes>
  1373. <clef number="1">
  1374. <sign>G</sign>
  1375. <line>2</line>
  1376. </clef>
  1377. </attributes>
  1378. <note default-x="243">
  1379. <rest/>
  1380. <duration>4</duration>
  1381. <voice>1</voice>
  1382. <type>eighth</type>
  1383. <staff>1</staff>
  1384. </note>
  1385. <note default-x="271">
  1386. <pitch>
  1387. <step>C</step>
  1388. <alter>1</alter>
  1389. <octave>4</octave>
  1390. </pitch>
  1391. <duration>4</duration>
  1392. <voice>1</voice>
  1393. <type>eighth</type>
  1394. <stem default-y="-4">up</stem>
  1395. <staff>1</staff>
  1396. </note>
  1397. <note default-x="271">
  1398. <chord/>
  1399. <pitch>
  1400. <step>E</step>
  1401. <octave>4</octave>
  1402. </pitch>
  1403. <duration>4</duration>
  1404. <voice>1</voice>
  1405. <type>eighth</type>
  1406. <stem>up</stem>
  1407. <staff>1</staff>
  1408. </note>
  1409. <note default-x="304">
  1410. <rest/>
  1411. <duration>4</duration>
  1412. <voice>1</voice>
  1413. <type>eighth</type>
  1414. <staff>1</staff>
  1415. </note>
  1416. <note default-x="337">
  1417. <pitch>
  1418. <step>E</step>
  1419. <octave>4</octave>
  1420. </pitch>
  1421. <duration>4</duration>
  1422. <voice>1</voice>
  1423. <type>eighth</type>
  1424. <stem default-y="11">up</stem>
  1425. <staff>1</staff>
  1426. </note>
  1427. <note default-x="337">
  1428. <chord/>
  1429. <pitch>
  1430. <step>A</step>
  1431. <octave>4</octave>
  1432. </pitch>
  1433. <duration>4</duration>
  1434. <voice>1</voice>
  1435. <type>eighth</type>
  1436. <stem>up</stem>
  1437. <staff>1</staff>
  1438. </note>
  1439. <backup>
  1440. <duration>32</duration>
  1441. </backup>
  1442. <note default-x="107">
  1443. <pitch>
  1444. <step>A</step>
  1445. <octave>1</octave>
  1446. </pitch>
  1447. <duration>4</duration>
  1448. <voice>3</voice>
  1449. <type>eighth</type>
  1450. <stem default-y="34">up</stem>
  1451. <staff>2</staff>
  1452. <beam number="1">begin</beam>
  1453. <notations>
  1454. <slur number="1" placement="below" type="start"/>
  1455. </notations>
  1456. </note>
  1457. <note default-x="136">
  1458. <pitch>
  1459. <step>A</step>
  1460. <octave>2</octave>
  1461. </pitch>
  1462. <duration>4</duration>
  1463. <voice>3</voice>
  1464. <type>eighth</type>
  1465. <stem default-y="40">up</stem>
  1466. <staff>2</staff>
  1467. <beam number="1">continue</beam>
  1468. </note>
  1469. <note default-x="164">
  1470. <pitch>
  1471. <step>E</step>
  1472. <octave>3</octave>
  1473. </pitch>
  1474. <duration>4</duration>
  1475. <voice>3</voice>
  1476. <type>eighth</type>
  1477. <stem default-y="46">up</stem>
  1478. <staff>2</staff>
  1479. <beam number="1">continue</beam>
  1480. <notations>
  1481. <slur default-x="6" default-y="-35" number="1" type="stop"/>
  1482. </notations>
  1483. </note>
  1484. <note default-x="194">
  1485. <pitch>
  1486. <step>A</step>
  1487. <octave>3</octave>
  1488. </pitch>
  1489. <duration>4</duration>
  1490. <voice>3</voice>
  1491. <type>eighth</type>
  1492. <stem default-y="-66">down</stem>
  1493. <staff>1</staff>
  1494. <beam number="1">end</beam>
  1495. </note>
  1496. <note default-x="194">
  1497. <chord/>
  1498. <pitch>
  1499. <step>C</step>
  1500. <alter>1</alter>
  1501. <octave>4</octave>
  1502. </pitch>
  1503. <duration>4</duration>
  1504. <voice>3</voice>
  1505. <type>eighth</type>
  1506. <stem>down</stem>
  1507. <staff>1</staff>
  1508. </note>
  1509. <note default-x="243">
  1510. <pitch>
  1511. <step>A</step>
  1512. <octave>3</octave>
  1513. </pitch>
  1514. <duration>4</duration>
  1515. <voice>3</voice>
  1516. <type>eighth</type>
  1517. <stem default-y="-35.5">down</stem>
  1518. <staff>2</staff>
  1519. </note>
  1520. <note default-x="271">
  1521. <rest/>
  1522. <duration>4</duration>
  1523. <voice>3</voice>
  1524. <type>eighth</type>
  1525. <staff>2</staff>
  1526. </note>
  1527. <note default-x="304">
  1528. <pitch>
  1529. <step>C</step>
  1530. <alter>1</alter>
  1531. <octave>3</octave>
  1532. </pitch>
  1533. <duration>4</duration>
  1534. <voice>3</voice>
  1535. <type>eighth</type>
  1536. <stem default-y="11">up</stem>
  1537. <staff>2</staff>
  1538. </note>
  1539. <note default-x="337">
  1540. <rest/>
  1541. <duration>4</duration>
  1542. <voice>3</voice>
  1543. <type>eighth</type>
  1544. <staff>2</staff>
  1545. </note>
  1546. </measure>
  1547. <!--=======================================================-->
  1548. <measure number="6" width="315">
  1549. <note default-x="18">
  1550. <rest/>
  1551. <duration>4</duration>
  1552. <voice>1</voice>
  1553. <type>eighth</type>
  1554. <staff>1</staff>
  1555. </note>
  1556. <note default-x="52">
  1557. <pitch>
  1558. <step>F</step>
  1559. <alter>1</alter>
  1560. <octave>3</octave>
  1561. </pitch>
  1562. <duration>4</duration>
  1563. <tie type="start"/>
  1564. <voice>1</voice>
  1565. <type>eighth</type>
  1566. <stem default-y="-19">up</stem>
  1567. <staff>1</staff>
  1568. <notations>
  1569. <tied type="start"/>
  1570. </notations>
  1571. </note>
  1572. <note default-x="96">
  1573. <pitch>
  1574. <step>F</step>
  1575. <alter>1</alter>
  1576. <octave>3</octave>
  1577. </pitch>
  1578. <duration>8</duration>
  1579. <tie type="stop"/>
  1580. <voice>1</voice>
  1581. <type>quarter</type>
  1582. <stem default-y="1">up</stem>
  1583. <staff>1</staff>
  1584. <notations>
  1585. <tied type="stop"/>
  1586. </notations>
  1587. </note>
  1588. <note default-x="96">
  1589. <chord/>
  1590. <pitch>
  1591. <step>F</step>
  1592. <alter>1</alter>
  1593. <octave>4</octave>
  1594. </pitch>
  1595. <duration>8</duration>
  1596. <voice>1</voice>
  1597. <type>quarter</type>
  1598. <stem>up</stem>
  1599. <staff>1</staff>
  1600. </note>
  1601. <note default-x="168">
  1602. <rest/>
  1603. <duration>4</duration>
  1604. <voice>1</voice>
  1605. <type>eighth</type>
  1606. <staff>1</staff>
  1607. </note>
  1608. <note default-x="202">
  1609. <pitch>
  1610. <step>E</step>
  1611. <octave>3</octave>
  1612. </pitch>
  1613. <duration>4</duration>
  1614. <tie type="start"/>
  1615. <voice>1</voice>
  1616. <type>eighth</type>
  1617. <stem default-y="-19">up</stem>
  1618. <staff>1</staff>
  1619. <notations>
  1620. <tied type="start"/>
  1621. </notations>
  1622. </note>
  1623. <note default-x="247">
  1624. <pitch>
  1625. <step>E</step>
  1626. <octave>3</octave>
  1627. </pitch>
  1628. <duration>8</duration>
  1629. <tie type="stop"/>
  1630. <voice>1</voice>
  1631. <type>quarter</type>
  1632. <stem default-y="-4">up</stem>
  1633. <staff>1</staff>
  1634. <notations>
  1635. <tied type="stop"/>
  1636. </notations>
  1637. </note>
  1638. <note default-x="247">
  1639. <chord/>
  1640. <pitch>
  1641. <step>E</step>
  1642. <octave>4</octave>
  1643. </pitch>
  1644. <duration>8</duration>
  1645. <voice>1</voice>
  1646. <type>quarter</type>
  1647. <stem>up</stem>
  1648. <staff>1</staff>
  1649. </note>
  1650. <backup>
  1651. <duration>32</duration>
  1652. </backup>
  1653. <note default-x="18">
  1654. <pitch>
  1655. <step>D</step>
  1656. <octave>2</octave>
  1657. </pitch>
  1658. <duration>12</duration>
  1659. <voice>3</voice>
  1660. <type>quarter</type>
  1661. <dot/>
  1662. <stem default-y="-19">up</stem>
  1663. <staff>2</staff>
  1664. <notations>
  1665. <slur number="1" placement="above" type="start"/>
  1666. </notations>
  1667. </note>
  1668. <note default-x="124">
  1669. <pitch>
  1670. <step>D</step>
  1671. <octave>3</octave>
  1672. </pitch>
  1673. <duration>4</duration>
  1674. <voice>3</voice>
  1675. <type>eighth</type>
  1676. <stem default-y="-55.5">down</stem>
  1677. <staff>2</staff>
  1678. </note>
  1679. <note default-x="168">
  1680. <pitch>
  1681. <step>D</step>
  1682. <octave>2</octave>
  1683. </pitch>
  1684. <duration>12</duration>
  1685. <voice>3</voice>
  1686. <type>quarter</type>
  1687. <dot/>
  1688. <stem default-y="-19">up</stem>
  1689. <staff>2</staff>
  1690. </note>
  1691. <note default-x="274">
  1692. <pitch>
  1693. <step>D</step>
  1694. <octave>3</octave>
  1695. </pitch>
  1696. <duration>4</duration>
  1697. <voice>3</voice>
  1698. <type>eighth</type>
  1699. <stem default-y="-55.5">down</stem>
  1700. <staff>2</staff>
  1701. <notations>
  1702. <slur number="1" type="stop"/>
  1703. </notations>
  1704. </note>
  1705. </measure>
  1706. <!--=======================================================-->
  1707. <measure number="7" width="230">
  1708. <note default-x="18">
  1709. <rest/>
  1710. <duration>4</duration>
  1711. <voice>1</voice>
  1712. <type>eighth</type>
  1713. <staff>1</staff>
  1714. </note>
  1715. <note default-x="44">
  1716. <pitch>
  1717. <step>E</step>
  1718. <octave>3</octave>
  1719. </pitch>
  1720. <duration>4</duration>
  1721. <voice>1</voice>
  1722. <type>eighth</type>
  1723. <stem default-y="-5">up</stem>
  1724. <staff>1</staff>
  1725. <beam number="1">begin</beam>
  1726. <notations>
  1727. <slur number="1" placement="below" type="start"/>
  1728. </notations>
  1729. </note>
  1730. <note default-x="70">
  1731. <pitch>
  1732. <step>E</step>
  1733. <octave>4</octave>
  1734. </pitch>
  1735. <duration>4</duration>
  1736. <voice>1</voice>
  1737. <type>eighth</type>
  1738. <stem default-y="-5">up</stem>
  1739. <staff>1</staff>
  1740. <beam number="1">continue</beam>
  1741. </note>
  1742. <note default-x="96">
  1743. <pitch>
  1744. <step>C</step>
  1745. <alter>1</alter>
  1746. <octave>4</octave>
  1747. </pitch>
  1748. <duration>4</duration>
  1749. <voice>1</voice>
  1750. <type>eighth</type>
  1751. <stem default-y="-5">up</stem>
  1752. <staff>1</staff>
  1753. <beam number="1">end</beam>
  1754. </note>
  1755. <note default-x="123">
  1756. <rest/>
  1757. <duration>8</duration>
  1758. <voice>1</voice>
  1759. <type>quarter</type>
  1760. <staff>1</staff>
  1761. </note>
  1762. <note default-x="175">
  1763. <pitch>
  1764. <step>C</step>
  1765. <alter>1</alter>
  1766. <octave>5</octave>
  1767. </pitch>
  1768. <duration>8</duration>
  1769. <voice>1</voice>
  1770. <type>quarter</type>
  1771. <stem default-y="-50.5">down</stem>
  1772. <staff>1</staff>
  1773. <notations>
  1774. <slur number="2" placement="above" type="start"/>
  1775. </notations>
  1776. </note>
  1777. <note default-x="175">
  1778. <chord/>
  1779. <pitch>
  1780. <step>E</step>
  1781. <octave>5</octave>
  1782. </pitch>
  1783. <duration>8</duration>
  1784. <voice>1</voice>
  1785. <type>quarter</type>
  1786. <stem>down</stem>
  1787. <staff>1</staff>
  1788. </note>
  1789. <backup>
  1790. <duration>32</duration>
  1791. </backup>
  1792. <note default-x="18">
  1793. <pitch>
  1794. <step>C</step>
  1795. <alter>1</alter>
  1796. <octave>2</octave>
  1797. </pitch>
  1798. <duration>16</duration>
  1799. <voice>3</voice>
  1800. <type>half</type>
  1801. <stem default-y="-19">up</stem>
  1802. <staff>2</staff>
  1803. </note>
  1804. <note default-x="123">
  1805. <pitch>
  1806. <step>A</step>
  1807. <octave>3</octave>
  1808. </pitch>
  1809. <duration>4</duration>
  1810. <voice>3</voice>
  1811. <type>eighth</type>
  1812. <stem default-y="35">up</stem>
  1813. <staff>2</staff>
  1814. <beam number="1">begin</beam>
  1815. </note>
  1816. <note default-x="149">
  1817. <pitch>
  1818. <step>E</step>
  1819. <octave>3</octave>
  1820. </pitch>
  1821. <duration>4</duration>
  1822. <voice>3</voice>
  1823. <type>eighth</type>
  1824. <stem default-y="33.5">up</stem>
  1825. <staff>2</staff>
  1826. <beam number="1">continue</beam>
  1827. </note>
  1828. <note default-x="175">
  1829. <pitch>
  1830. <step>C</step>
  1831. <alter>1</alter>
  1832. <octave>3</octave>
  1833. </pitch>
  1834. <duration>4</duration>
  1835. <voice>3</voice>
  1836. <type>eighth</type>
  1837. <stem default-y="32">up</stem>
  1838. <staff>2</staff>
  1839. <beam number="1">continue</beam>
  1840. </note>
  1841. <note default-x="201">
  1842. <pitch>
  1843. <step>A</step>
  1844. <octave>2</octave>
  1845. </pitch>
  1846. <duration>4</duration>
  1847. <voice>3</voice>
  1848. <type>eighth</type>
  1849. <stem default-y="30">up</stem>
  1850. <staff>2</staff>
  1851. <beam number="1">end</beam>
  1852. <notations>
  1853. <slur number="1" type="stop"/>
  1854. </notations>
  1855. </note>
  1856. </measure>
  1857. <!--=======================================================-->
  1858. <measure number="8" width="284">
  1859. <note default-x="27">
  1860. <pitch>
  1861. <step>B</step>
  1862. <octave>4</octave>
  1863. </pitch>
  1864. <duration>12</duration>
  1865. <voice>1</voice>
  1866. <type>quarter</type>
  1867. <dot/>
  1868. <stem default-y="-55.5">down</stem>
  1869. <staff>1</staff>
  1870. </note>
  1871. <note default-x="27">
  1872. <chord/>
  1873. <pitch>
  1874. <step>D</step>
  1875. <alter>1</alter>
  1876. <octave>5</octave>
  1877. </pitch>
  1878. <duration>12</duration>
  1879. <voice>1</voice>
  1880. <type>quarter</type>
  1881. <dot/>
  1882. <accidental>sharp</accidental>
  1883. <stem>down</stem>
  1884. <staff>1</staff>
  1885. </note>
  1886. <note default-x="120">
  1887. <pitch>
  1888. <step>A</step>
  1889. <octave>4</octave>
  1890. </pitch>
  1891. <duration>4</duration>
  1892. <voice>1</voice>
  1893. <type>eighth</type>
  1894. <stem default-y="-58">down</stem>
  1895. <staff>1</staff>
  1896. </note>
  1897. <note default-x="120">
  1898. <chord/>
  1899. <pitch>
  1900. <step>C</step>
  1901. <alter>1</alter>
  1902. <octave>5</octave>
  1903. </pitch>
  1904. <duration>4</duration>
  1905. <voice>1</voice>
  1906. <type>eighth</type>
  1907. <stem>down</stem>
  1908. <staff>1</staff>
  1909. </note>
  1910. <note default-x="163">
  1911. <pitch>
  1912. <step>G</step>
  1913. <alter>1</alter>
  1914. <octave>4</octave>
  1915. </pitch>
  1916. <duration>12</duration>
  1917. <voice>1</voice>
  1918. <type>quarter</type>
  1919. <dot/>
  1920. <stem default-y="16">up</stem>
  1921. <staff>1</staff>
  1922. </note>
  1923. <note default-x="163">
  1924. <chord/>
  1925. <pitch>
  1926. <step>B</step>
  1927. <octave>4</octave>
  1928. </pitch>
  1929. <duration>12</duration>
  1930. <voice>1</voice>
  1931. <type>quarter</type>
  1932. <dot/>
  1933. <stem>up</stem>
  1934. <staff>1</staff>
  1935. </note>
  1936. <note default-x="249">
  1937. <pitch>
  1938. <step>D</step>
  1939. <alter>1</alter>
  1940. <octave>4</octave>
  1941. </pitch>
  1942. <duration>4</duration>
  1943. <voice>1</voice>
  1944. <type>eighth</type>
  1945. <accidental>sharp</accidental>
  1946. <stem default-y="1">up</stem>
  1947. <staff>1</staff>
  1948. <notations>
  1949. <slur number="2" type="stop"/>
  1950. </notations>
  1951. </note>
  1952. <note default-x="249">
  1953. <chord/>
  1954. <pitch>
  1955. <step>F</step>
  1956. <alter>2</alter>
  1957. <octave>4</octave>
  1958. </pitch>
  1959. <duration>4</duration>
  1960. <voice>1</voice>
  1961. <type>eighth</type>
  1962. <accidental>double-sharp</accidental>
  1963. <stem>up</stem>
  1964. <staff>1</staff>
  1965. </note>
  1966. <backup>
  1967. <duration>32</duration>
  1968. </backup>
  1969. <note default-x="27">
  1970. <pitch>
  1971. <step>B</step>
  1972. <octave>1</octave>
  1973. </pitch>
  1974. <duration>4</duration>
  1975. <voice>3</voice>
  1976. <type>eighth</type>
  1977. <stem default-y="10">up</stem>
  1978. <staff>2</staff>
  1979. <beam number="1">begin</beam>
  1980. <notations>
  1981. <slur number="1" placement="below" type="start"/>
  1982. </notations>
  1983. </note>
  1984. <note default-x="56">
  1985. <pitch>
  1986. <step>B</step>
  1987. <octave>2</octave>
  1988. </pitch>
  1989. <duration>4</duration>
  1990. <voice>3</voice>
  1991. <type>eighth</type>
  1992. <stem default-y="12">up</stem>
  1993. <staff>2</staff>
  1994. <beam number="1">continue</beam>
  1995. </note>
  1996. <note default-x="91">
  1997. <pitch>
  1998. <step>D</step>
  1999. <alter>1</alter>
  2000. <octave>3</octave>
  2001. </pitch>
  2002. <duration>4</duration>
  2003. <voice>3</voice>
  2004. <type>eighth</type>
  2005. <accidental>sharp</accidental>
  2006. <stem default-y="15">up</stem>
  2007. <staff>2</staff>
  2008. <beam number="1">end</beam>
  2009. <notations>
  2010. <slur default-x="6" default-y="-36" number="1" type="stop"/>
  2011. </notations>
  2012. </note>
  2013. <note default-x="120">
  2014. <rest/>
  2015. <duration>4</duration>
  2016. <voice>3</voice>
  2017. <type>eighth</type>
  2018. <staff>2</staff>
  2019. </note>
  2020. <note default-x="163">
  2021. <rest/>
  2022. <duration>4</duration>
  2023. <voice>3</voice>
  2024. <type>eighth</type>
  2025. <staff>2</staff>
  2026. </note>
  2027. <note default-x="191">
  2028. <pitch>
  2029. <step>B</step>
  2030. <octave>2</octave>
  2031. </pitch>
  2032. <duration>4</duration>
  2033. <voice>3</voice>
  2034. <type>eighth</type>
  2035. <stem default-y="-65">down</stem>
  2036. <staff>2</staff>
  2037. <beam number="1">begin</beam>
  2038. <notations>
  2039. <slur default-x="6" default-y="-15" number="1" placement="above" type="start"/>
  2040. </notations>
  2041. </note>
  2042. <note default-x="220">
  2043. <pitch>
  2044. <step>A</step>
  2045. <octave>3</octave>
  2046. </pitch>
  2047. <duration>4</duration>
  2048. <voice>3</voice>
  2049. <type>eighth</type>
  2050. <stem default-y="-60">down</stem>
  2051. <staff>2</staff>
  2052. <beam number="1">end</beam>
  2053. <notations>
  2054. <slur number="1" type="stop"/>
  2055. </notations>
  2056. </note>
  2057. <note default-x="249">
  2058. <rest/>
  2059. <duration>4</duration>
  2060. <voice>3</voice>
  2061. <type>eighth</type>
  2062. <staff>2</staff>
  2063. </note>
  2064. </measure>
  2065. <!--=======================================================-->
  2066. <measure number="9" width="296">
  2067. <print new-system="yes">
  2068. <staff-layout number="2">
  2069. <staff-distance>90</staff-distance>
  2070. </staff-layout>
  2071. </print>
  2072. <note default-x="113">
  2073. <pitch>
  2074. <step>E</step>
  2075. <octave>4</octave>
  2076. </pitch>
  2077. <duration>8</duration>
  2078. <voice>1</voice>
  2079. <type>quarter</type>
  2080. <stem default-y="6">up</stem>
  2081. <staff>1</staff>
  2082. </note>
  2083. <note default-x="113">
  2084. <chord/>
  2085. <pitch>
  2086. <step>G</step>
  2087. <alter>1</alter>
  2088. <octave>4</octave>
  2089. </pitch>
  2090. <duration>8</duration>
  2091. <voice>1</voice>
  2092. <type>quarter</type>
  2093. <stem>up</stem>
  2094. <staff>1</staff>
  2095. </note>
  2096. <note default-x="159">
  2097. <pitch>
  2098. <step>E</step>
  2099. <octave>5</octave>
  2100. </pitch>
  2101. <duration>16</duration>
  2102. <voice>1</voice>
  2103. <type>half</type>
  2104. <stem default-y="-40.5">down</stem>
  2105. <staff>1</staff>
  2106. <notations>
  2107. <slur number="1" placement="above" type="start"/>
  2108. </notations>
  2109. </note>
  2110. <note default-x="159">
  2111. <chord/>
  2112. <pitch>
  2113. <step>G</step>
  2114. <alter>1</alter>
  2115. <octave>5</octave>
  2116. </pitch>
  2117. <duration>16</duration>
  2118. <voice>1</voice>
  2119. <type>half</type>
  2120. <stem>down</stem>
  2121. <staff>1</staff>
  2122. </note>
  2123. <note default-x="253">
  2124. <pitch>
  2125. <step>D</step>
  2126. <alter>1</alter>
  2127. <octave>5</octave>
  2128. </pitch>
  2129. <duration>8</duration>
  2130. <tie type="start"/>
  2131. <voice>1</voice>
  2132. <type>quarter</type>
  2133. <accidental>sharp</accidental>
  2134. <stem default-y="-45.5">down</stem>
  2135. <staff>1</staff>
  2136. <notations>
  2137. <tied type="start"/>
  2138. </notations>
  2139. </note>
  2140. <note default-x="253">
  2141. <chord/>
  2142. <pitch>
  2143. <step>F</step>
  2144. <alter>1</alter>
  2145. <octave>5</octave>
  2146. </pitch>
  2147. <duration>8</duration>
  2148. <tie type="start"/>
  2149. <voice>1</voice>
  2150. <type>quarter</type>
  2151. <stem>down</stem>
  2152. <staff>1</staff>
  2153. <notations>
  2154. <tied type="start"/>
  2155. </notations>
  2156. </note>
  2157. <backup>
  2158. <duration>32</duration>
  2159. </backup>
  2160. <note default-x="113">
  2161. <pitch>
  2162. <step>E</step>
  2163. <octave>2</octave>
  2164. </pitch>
  2165. <duration>4</duration>
  2166. <voice>3</voice>
  2167. <type>eighth</type>
  2168. <stem default-y="35">up</stem>
  2169. <staff>2</staff>
  2170. <beam number="1">begin</beam>
  2171. <notations>
  2172. <slur number="2" placement="above" type="start"/>
  2173. </notations>
  2174. </note>
  2175. <note default-x="136">
  2176. <pitch>
  2177. <step>E</step>
  2178. <octave>3</octave>
  2179. </pitch>
  2180. <duration>4</duration>
  2181. <voice>3</voice>
  2182. <type>eighth</type>
  2183. <stem default-y="37">up</stem>
  2184. <staff>2</staff>
  2185. <beam number="1">continue</beam>
  2186. </note>
  2187. <note default-x="159">
  2188. <pitch>
  2189. <step>G</step>
  2190. <alter>1</alter>
  2191. <octave>3</octave>
  2192. </pitch>
  2193. <duration>4</duration>
  2194. <voice>3</voice>
  2195. <type>eighth</type>
  2196. <stem default-y="38.5">up</stem>
  2197. <staff>2</staff>
  2198. <beam number="1">continue</beam>
  2199. </note>
  2200. <note default-x="182">
  2201. <pitch>
  2202. <step>B</step>
  2203. <octave>3</octave>
  2204. </pitch>
  2205. <duration>4</duration>
  2206. <voice>3</voice>
  2207. <type>eighth</type>
  2208. <stem default-y="40">up</stem>
  2209. <staff>2</staff>
  2210. <beam number="1">end</beam>
  2211. </note>
  2212. <note default-x="212">
  2213. <pitch>
  2214. <step>B</step>
  2215. <alter>1</alter>
  2216. <octave>3</octave>
  2217. </pitch>
  2218. <duration>4</duration>
  2219. <voice>3</voice>
  2220. <type>eighth</type>
  2221. <accidental>sharp</accidental>
  2222. <stem default-y="-30.5">down</stem>
  2223. <staff>2</staff>
  2224. </note>
  2225. <note default-x="235">
  2226. <pitch>
  2227. <step>G</step>
  2228. <alter>1</alter>
  2229. <octave>3</octave>
  2230. </pitch>
  2231. <duration>8</duration>
  2232. <voice>3</voice>
  2233. <type>quarter</type>
  2234. <stem default-y="-40.5">down</stem>
  2235. <staff>2</staff>
  2236. </note>
  2237. <note default-x="272">
  2238. <pitch>
  2239. <step>E</step>
  2240. <octave>3</octave>
  2241. </pitch>
  2242. <duration>4</duration>
  2243. <voice>3</voice>
  2244. <type>eighth</type>
  2245. <stem default-y="-50.5">down</stem>
  2246. <staff>2</staff>
  2247. <notations>
  2248. <slur number="2" type="stop"/>
  2249. </notations>
  2250. </note>
  2251. </measure>
  2252. <!--=======================================================-->
  2253. <measure number="10" width="202">
  2254. <note default-x="18">
  2255. <pitch>
  2256. <step>D</step>
  2257. <alter>1</alter>
  2258. <octave>5</octave>
  2259. </pitch>
  2260. <duration>8</duration>
  2261. <tie type="stop"/>
  2262. <voice>1</voice>
  2263. <type>quarter</type>
  2264. <stem default-y="-45.5">down</stem>
  2265. <staff>1</staff>
  2266. <notations>
  2267. <tied type="stop"/>
  2268. </notations>
  2269. </note>
  2270. <note default-x="18">
  2271. <chord/>
  2272. <pitch>
  2273. <step>F</step>
  2274. <alter>1</alter>
  2275. <octave>5</octave>
  2276. </pitch>
  2277. <duration>8</duration>
  2278. <tie type="stop"/>
  2279. <voice>1</voice>
  2280. <type>quarter</type>
  2281. <stem>down</stem>
  2282. <staff>1</staff>
  2283. <notations>
  2284. <tied type="stop"/>
  2285. </notations>
  2286. </note>
  2287. <note default-x="63">
  2288. <pitch>
  2289. <step>C</step>
  2290. <alter>1</alter>
  2291. <octave>5</octave>
  2292. </pitch>
  2293. <duration>16</duration>
  2294. <voice>1</voice>
  2295. <type>half</type>
  2296. <stem default-y="-50.5">down</stem>
  2297. <staff>1</staff>
  2298. </note>
  2299. <note default-x="63">
  2300. <chord/>
  2301. <pitch>
  2302. <step>E</step>
  2303. <octave>5</octave>
  2304. </pitch>
  2305. <duration>16</duration>
  2306. <voice>1</voice>
  2307. <type>half</type>
  2308. <stem>down</stem>
  2309. <staff>1</staff>
  2310. </note>
  2311. <note default-x="159">
  2312. <pitch>
  2313. <step>G</step>
  2314. <alter>1</alter>
  2315. <octave>4</octave>
  2316. </pitch>
  2317. <duration>8</duration>
  2318. <voice>1</voice>
  2319. <type>quarter</type>
  2320. <stem default-y="16">up</stem>
  2321. <staff>1</staff>
  2322. <notations>
  2323. <slur number="1" type="stop"/>
  2324. </notations>
  2325. </note>
  2326. <note default-x="159">
  2327. <chord/>
  2328. <pitch>
  2329. <step>B</step>
  2330. <alter>1</alter>
  2331. <octave>4</octave>
  2332. </pitch>
  2333. <duration>8</duration>
  2334. <voice>1</voice>
  2335. <type>quarter</type>
  2336. <accidental>sharp</accidental>
  2337. <stem>up</stem>
  2338. <staff>1</staff>
  2339. </note>
  2340. <backup>
  2341. <duration>32</duration>
  2342. </backup>
  2343. <note default-x="18">
  2344. <pitch>
  2345. <step>E</step>
  2346. <octave>2</octave>
  2347. </pitch>
  2348. <duration>4</duration>
  2349. <voice>3</voice>
  2350. <type>eighth</type>
  2351. <stem default-y="-85">down</stem>
  2352. <staff>2</staff>
  2353. <beam number="1">begin</beam>
  2354. <notations>
  2355. <slur bezier-x="25" bezier-y="74" default-x="6" default-y="-25" number="1" placement="above" type="start"/>
  2356. </notations>
  2357. </note>
  2358. <note default-x="41">
  2359. <pitch>
  2360. <step>E</step>
  2361. <octave>3</octave>
  2362. </pitch>
  2363. <duration>4</duration>
  2364. <voice>3</voice>
  2365. <type>eighth</type>
  2366. <stem default-y="-83">down</stem>
  2367. <staff>2</staff>
  2368. <beam number="1">continue</beam>
  2369. </note>
  2370. <note default-x="63">
  2371. <pitch>
  2372. <step>G</step>
  2373. <alter>1</alter>
  2374. <octave>3</octave>
  2375. </pitch>
  2376. <duration>4</duration>
  2377. <voice>3</voice>
  2378. <type>eighth</type>
  2379. <stem default-y="-81.5">down</stem>
  2380. <staff>2</staff>
  2381. <beam number="1">continue</beam>
  2382. </note>
  2383. <note default-x="86">
  2384. <pitch>
  2385. <step>C</step>
  2386. <alter>1</alter>
  2387. <octave>4</octave>
  2388. </pitch>
  2389. <duration>4</duration>
  2390. <voice>3</voice>
  2391. <type>eighth</type>
  2392. <stem default-y="-80">down</stem>
  2393. <staff>2</staff>
  2394. <beam number="1">end</beam>
  2395. </note>
  2396. <note default-x="118">
  2397. <pitch>
  2398. <step>D</step>
  2399. <octave>4</octave>
  2400. </pitch>
  2401. <duration>4</duration>
  2402. <voice>3</voice>
  2403. <type>eighth</type>
  2404. <accidental>natural</accidental>
  2405. <stem default-y="-20.5">down</stem>
  2406. <staff>2</staff>
  2407. </note>
  2408. <note default-x="141">
  2409. <pitch>
  2410. <step>G</step>
  2411. <alter>1</alter>
  2412. <octave>3</octave>
  2413. </pitch>
  2414. <duration>8</duration>
  2415. <voice>3</voice>
  2416. <type>quarter</type>
  2417. <stem default-y="-40.5">down</stem>
  2418. <staff>2</staff>
  2419. </note>
  2420. <note default-x="177">
  2421. <pitch>
  2422. <step>E</step>
  2423. <octave>3</octave>
  2424. </pitch>
  2425. <duration>4</duration>
  2426. <voice>3</voice>
  2427. <type>eighth</type>
  2428. <stem default-y="-50.5">down</stem>
  2429. <staff>2</staff>
  2430. <notations>
  2431. <slur bezier-x="-42" bezier-y="44" default-x="6" default-y="5" number="1" type="stop"/>
  2432. </notations>
  2433. </note>
  2434. </measure>
  2435. <!--=======================================================-->
  2436. <measure number="11" width="251">
  2437. <note default-x="39">
  2438. <pitch>
  2439. <step>B</step>
  2440. <octave>4</octave>
  2441. </pitch>
  2442. <duration>12</duration>
  2443. <voice>1</voice>
  2444. <type>quarter</type>
  2445. <dot/>
  2446. <accidental>natural</accidental>
  2447. <stem default-y="-55.5">down</stem>
  2448. <staff>1</staff>
  2449. <notations>
  2450. <slur number="1" placement="above" type="start"/>
  2451. </notations>
  2452. </note>
  2453. <note default-x="39">
  2454. <chord/>
  2455. <pitch>
  2456. <step>D</step>
  2457. <alter>1</alter>
  2458. <octave>5</octave>
  2459. </pitch>
  2460. <duration>12</duration>
  2461. <voice>1</voice>
  2462. <type>quarter</type>
  2463. <dot/>
  2464. <accidental>sharp</accidental>
  2465. <stem>down</stem>
  2466. <staff>1</staff>
  2467. </note>
  2468. <note default-x="108">
  2469. <pitch>
  2470. <step>A</step>
  2471. <octave>4</octave>
  2472. </pitch>
  2473. <duration>4</duration>
  2474. <voice>1</voice>
  2475. <type>eighth</type>
  2476. <stem default-y="-58">down</stem>
  2477. <staff>1</staff>
  2478. </note>
  2479. <note default-x="108">
  2480. <chord/>
  2481. <pitch>
  2482. <step>C</step>
  2483. <alter>1</alter>
  2484. <octave>5</octave>
  2485. </pitch>
  2486. <duration>4</duration>
  2487. <voice>1</voice>
  2488. <type>eighth</type>
  2489. <stem>down</stem>
  2490. <staff>1</staff>
  2491. </note>
  2492. <note default-x="151">
  2493. <pitch>
  2494. <step>F</step>
  2495. <alter>1</alter>
  2496. <octave>4</octave>
  2497. </pitch>
  2498. <duration>12</duration>
  2499. <voice>1</voice>
  2500. <type>quarter</type>
  2501. <dot/>
  2502. <stem default-y="11">up</stem>
  2503. <staff>1</staff>
  2504. </note>
  2505. <note default-x="151">
  2506. <chord/>
  2507. <pitch>
  2508. <step>A</step>
  2509. <octave>4</octave>
  2510. </pitch>
  2511. <duration>12</duration>
  2512. <voice>1</voice>
  2513. <type>quarter</type>
  2514. <dot/>
  2515. <stem>up</stem>
  2516. <staff>1</staff>
  2517. </note>
  2518. <note default-x="221">
  2519. <pitch>
  2520. <step>A</step>
  2521. <octave>3</octave>
  2522. </pitch>
  2523. <duration>4</duration>
  2524. <voice>1</voice>
  2525. <type>eighth</type>
  2526. <stem default-y="-9">up</stem>
  2527. <staff>1</staff>
  2528. <notations>
  2529. <slur number="1" type="stop"/>
  2530. </notations>
  2531. </note>
  2532. <note default-x="221">
  2533. <chord/>
  2534. <pitch>
  2535. <step>D</step>
  2536. <alter>1</alter>
  2537. <octave>4</octave>
  2538. </pitch>
  2539. <duration>4</duration>
  2540. <voice>1</voice>
  2541. <type>eighth</type>
  2542. <accidental>sharp</accidental>
  2543. <stem>up</stem>
  2544. <staff>1</staff>
  2545. </note>
  2546. <backup>
  2547. <duration>32</duration>
  2548. </backup>
  2549. <note default-x="39">
  2550. <pitch>
  2551. <step>A</step>
  2552. <octave>1</octave>
  2553. </pitch>
  2554. <duration>4</duration>
  2555. <voice>3</voice>
  2556. <type>eighth</type>
  2557. <stem default-y="20">up</stem>
  2558. <staff>2</staff>
  2559. <beam number="1">begin</beam>
  2560. <notations>
  2561. <slur bezier-x="30" bezier-y="1" default-x="7" default-y="-82" number="1" placement="below" type="start"/>
  2562. </notations>
  2563. </note>
  2564. <note default-x="62">
  2565. <pitch>
  2566. <step>A</step>
  2567. <octave>2</octave>
  2568. </pitch>
  2569. <duration>4</duration>
  2570. <voice>3</voice>
  2571. <type>eighth</type>
  2572. <stem default-y="22">up</stem>
  2573. <staff>2</staff>
  2574. <beam number="1">continue</beam>
  2575. </note>
  2576. <note default-x="85">
  2577. <pitch>
  2578. <step>C</step>
  2579. <alter>1</alter>
  2580. <octave>3</octave>
  2581. </pitch>
  2582. <duration>4</duration>
  2583. <voice>3</voice>
  2584. <type>eighth</type>
  2585. <stem default-y="23.5">up</stem>
  2586. <staff>2</staff>
  2587. <beam number="1">continue</beam>
  2588. </note>
  2589. <note default-x="108">
  2590. <pitch>
  2591. <step>F</step>
  2592. <alter>1</alter>
  2593. <octave>3</octave>
  2594. </pitch>
  2595. <duration>4</duration>
  2596. <voice>3</voice>
  2597. <type>eighth</type>
  2598. <stem default-y="25">up</stem>
  2599. <staff>2</staff>
  2600. <beam number="1">end</beam>
  2601. <notations>
  2602. <slur bezier-x="-6" bezier-y="-30" default-x="7" default-y="-24" number="1" type="stop"/>
  2603. </notations>
  2604. </note>
  2605. <note default-x="151">
  2606. <rest/>
  2607. <duration>4</duration>
  2608. <voice>3</voice>
  2609. <type>eighth</type>
  2610. <staff>2</staff>
  2611. </note>
  2612. <note default-x="175">
  2613. <pitch>
  2614. <step>B</step>
  2615. <octave>1</octave>
  2616. </pitch>
  2617. <duration>4</duration>
  2618. <voice>3</voice>
  2619. <type>eighth</type>
  2620. <stem default-y="20">up</stem>
  2621. <staff>2</staff>
  2622. <beam number="1">begin</beam>
  2623. <notations>
  2624. <slur bezier-x="24" bezier-y="-1" default-x="7" default-y="-77" number="1" placement="below" type="start"/>
  2625. </notations>
  2626. </note>
  2627. <note default-x="198">
  2628. <pitch>
  2629. <step>B</step>
  2630. <octave>2</octave>
  2631. </pitch>
  2632. <duration>4</duration>
  2633. <voice>3</voice>
  2634. <type>eighth</type>
  2635. <stem default-y="23">up</stem>
  2636. <staff>2</staff>
  2637. <beam number="1">continue</beam>
  2638. </note>
  2639. <note default-x="221">
  2640. <pitch>
  2641. <step>F</step>
  2642. <alter>1</alter>
  2643. <octave>3</octave>
  2644. </pitch>
  2645. <duration>4</duration>
  2646. <voice>3</voice>
  2647. <type>eighth</type>
  2648. <stem default-y="25">up</stem>
  2649. <staff>2</staff>
  2650. <beam number="1">end</beam>
  2651. <notations>
  2652. <slur bezier-x="-2" bezier-y="-25" default-x="6" default-y="-35" number="1" type="stop"/>
  2653. </notations>
  2654. </note>
  2655. </measure>
  2656. <!--=======================================================-->
  2657. <measure number="12" width="220">
  2658. <forward>
  2659. <duration>16</duration>
  2660. <voice>1</voice>
  2661. <staff>1</staff>
  2662. </forward>
  2663. <forward>
  2664. <duration>8</duration>
  2665. <voice>1</voice>
  2666. <staff>1</staff>
  2667. </forward>
  2668. <direction placement="below">
  2669. <direction-type>
  2670. <wedge default-y="-73" type="crescendo"/>
  2671. </direction-type>
  2672. <offset>-1</offset>
  2673. <staff>1</staff>
  2674. </direction>
  2675. <note default-x="168">
  2676. <rest>
  2677. <display-step>B</display-step>
  2678. <display-octave>4</display-octave>
  2679. </rest>
  2680. <duration>4</duration>
  2681. <voice>1</voice>
  2682. <type>eighth</type>
  2683. <staff>1</staff>
  2684. </note>
  2685. <direction>
  2686. <direction-type>
  2687. <wedge spread="12" type="stop"/>
  2688. </direction-type>
  2689. <offset>2</offset>
  2690. <staff>1</staff>
  2691. </direction>
  2692. <note default-x="191">
  2693. <pitch>
  2694. <step>G</step>
  2695. <alter>1</alter>
  2696. <octave>4</octave>
  2697. </pitch>
  2698. <duration>4</duration>
  2699. <voice>1</voice>
  2700. <type>eighth</type>
  2701. <stem default-y="6">up</stem>
  2702. <staff>1</staff>
  2703. <notations>
  2704. <slur number="1" placement="above" type="start"/>
  2705. </notations>
  2706. </note>
  2707. <backup>
  2708. <duration>32</duration>
  2709. </backup>
  2710. <note default-x="24">
  2711. <rest>
  2712. <display-step>B</display-step>
  2713. <display-octave>4</display-octave>
  2714. </rest>
  2715. <duration>4</duration>
  2716. <voice>2</voice>
  2717. <type>eighth</type>
  2718. <staff>1</staff>
  2719. </note>
  2720. <note default-x="47">
  2721. <pitch>
  2722. <step>E</step>
  2723. <octave>4</octave>
  2724. </pitch>
  2725. <duration>4</duration>
  2726. <voice>2</voice>
  2727. <type>eighth</type>
  2728. <stem default-y="-75">down</stem>
  2729. <staff>1</staff>
  2730. <beam number="1">begin</beam>
  2731. <notations>
  2732. <slur bezier-x="19" bezier-y="45" default-x="6" default-y="-7" number="2" placement="above" type="start"/>
  2733. </notations>
  2734. </note>
  2735. <note default-x="76">
  2736. <pitch>
  2737. <step>D</step>
  2738. <octave>5</octave>
  2739. </pitch>
  2740. <duration>4</duration>
  2741. <voice>2</voice>
  2742. <type>eighth</type>
  2743. <accidental>natural</accidental>
  2744. <stem default-y="-72">down</stem>
  2745. <staff>1</staff>
  2746. <beam number="1">continue</beam>
  2747. </note>
  2748. <note default-x="98">
  2749. <pitch>
  2750. <step>B</step>
  2751. <octave>4</octave>
  2752. </pitch>
  2753. <duration>4</duration>
  2754. <voice>2</voice>
  2755. <type>eighth</type>
  2756. <stem default-y="-70">down</stem>
  2757. <staff>1</staff>
  2758. <beam number="1">end</beam>
  2759. </note>
  2760. <note default-x="122">
  2761. <pitch>
  2762. <step>G</step>
  2763. <alter>1</alter>
  2764. <octave>4</octave>
  2765. </pitch>
  2766. <duration>4</duration>
  2767. <voice>2</voice>
  2768. <type>eighth</type>
  2769. <stem default-y="-80">down</stem>
  2770. <staff>1</staff>
  2771. <beam number="1">begin</beam>
  2772. </note>
  2773. <note default-x="145">
  2774. <pitch>
  2775. <step>E</step>
  2776. <octave>4</octave>
  2777. </pitch>
  2778. <duration>4</duration>
  2779. <voice>2</voice>
  2780. <type>eighth</type>
  2781. <stem default-y="-84">down</stem>
  2782. <staff>1</staff>
  2783. <beam number="1">continue</beam>
  2784. </note>
  2785. <note default-x="168">
  2786. <pitch>
  2787. <step>D</step>
  2788. <octave>4</octave>
  2789. </pitch>
  2790. <duration>4</duration>
  2791. <voice>2</voice>
  2792. <type>eighth</type>
  2793. <stem default-y="44.5">up</stem>
  2794. <staff>2</staff>
  2795. <beam number="1">continue</beam>
  2796. </note>
  2797. <note default-x="191">
  2798. <pitch>
  2799. <step>B</step>
  2800. <octave>3</octave>
  2801. </pitch>
  2802. <duration>4</duration>
  2803. <voice>2</voice>
  2804. <type>eighth</type>
  2805. <stem default-y="40">up</stem>
  2806. <staff>2</staff>
  2807. <beam number="1">end</beam>
  2808. </note>
  2809. <backup>
  2810. <duration>32</duration>
  2811. </backup>
  2812. <note default-x="24">
  2813. <pitch>
  2814. <step>E</step>
  2815. <octave>2</octave>
  2816. </pitch>
  2817. <duration>4</duration>
  2818. <voice>3</voice>
  2819. <type>eighth</type>
  2820. <stem default-y="25">up</stem>
  2821. <staff>2</staff>
  2822. <beam number="1">begin</beam>
  2823. <notations>
  2824. <slur number="3" placement="below" type="start"/>
  2825. </notations>
  2826. </note>
  2827. <note default-x="47">
  2828. <pitch>
  2829. <step>E</step>
  2830. <octave>3</octave>
  2831. </pitch>
  2832. <duration>4</duration>
  2833. <voice>3</voice>
  2834. <type>eighth</type>
  2835. <stem default-y="27">up</stem>
  2836. <staff>2</staff>
  2837. <beam number="1">continue</beam>
  2838. </note>
  2839. <note default-x="76">
  2840. <pitch>
  2841. <step>G</step>
  2842. <alter>1</alter>
  2843. <octave>3</octave>
  2844. </pitch>
  2845. <duration>4</duration>
  2846. <voice>3</voice>
  2847. <type>eighth</type>
  2848. <stem default-y="30">up</stem>
  2849. <staff>2</staff>
  2850. <beam number="1">end</beam>
  2851. <notations>
  2852. <slur number="3" type="stop"/>
  2853. </notations>
  2854. </note>
  2855. <note default-x="98">
  2856. <rest/>
  2857. <duration>4</duration>
  2858. <voice>3</voice>
  2859. <type>eighth</type>
  2860. <staff>2</staff>
  2861. </note>
  2862. <note default-x="122">
  2863. <rest/>
  2864. <duration>8</duration>
  2865. <voice>3</voice>
  2866. <type>quarter</type>
  2867. <staff>2</staff>
  2868. </note>
  2869. <forward>
  2870. <duration>8</duration>
  2871. <voice>3</voice>
  2872. <staff>2</staff>
  2873. </forward>
  2874. </measure>
  2875. <!--=======================================================-->
  2876. <measure number="13" width="231">
  2877. <direction placement="below">
  2878. <direction-type>
  2879. <wedge default-y="-73" spread="12" type="diminuendo"/>
  2880. </direction-type>
  2881. <staff>1</staff>
  2882. </direction>
  2883. <note default-x="15">
  2884. <pitch>
  2885. <step>F</step>
  2886. <alter>1</alter>
  2887. <octave>5</octave>
  2888. </pitch>
  2889. <duration>4</duration>
  2890. <voice>1</voice>
  2891. <type>eighth</type>
  2892. <stem default-y="-60">down</stem>
  2893. <staff>1</staff>
  2894. <beam number="1">begin</beam>
  2895. </note>
  2896. <note default-x="38">
  2897. <pitch>
  2898. <step>D</step>
  2899. <octave>5</octave>
  2900. </pitch>
  2901. <duration>4</duration>
  2902. <voice>1</voice>
  2903. <type>eighth</type>
  2904. <stem default-y="-61.5">down</stem>
  2905. <staff>1</staff>
  2906. <beam number="1">continue</beam>
  2907. </note>
  2908. <note default-x="61">
  2909. <pitch>
  2910. <step>B</step>
  2911. <octave>4</octave>
  2912. </pitch>
  2913. <duration>4</duration>
  2914. <voice>1</voice>
  2915. <type>eighth</type>
  2916. <stem default-y="-63">down</stem>
  2917. <staff>1</staff>
  2918. <beam number="1">continue</beam>
  2919. </note>
  2920. <direction>
  2921. <direction-type>
  2922. <wedge type="stop"/>
  2923. </direction-type>
  2924. <offset>1</offset>
  2925. <staff>1</staff>
  2926. </direction>
  2927. <note default-x="84">
  2928. <pitch>
  2929. <step>G</step>
  2930. <alter>1</alter>
  2931. <octave>4</octave>
  2932. </pitch>
  2933. <duration>4</duration>
  2934. <voice>1</voice>
  2935. <type>eighth</type>
  2936. <stem default-y="-65">down</stem>
  2937. <staff>1</staff>
  2938. <beam number="1">end</beam>
  2939. </note>
  2940. <attributes>
  2941. <clef number="1">
  2942. <sign>F</sign>
  2943. <line>4</line>
  2944. </clef>
  2945. </attributes>
  2946. <note default-x="136">
  2947. <pitch>
  2948. <step>F</step>
  2949. <alter>1</alter>
  2950. <octave>4</octave>
  2951. </pitch>
  2952. <duration>4</duration>
  2953. <voice>1</voice>
  2954. <type>eighth</type>
  2955. <stem default-y="-35">down</stem>
  2956. <staff>1</staff>
  2957. <beam number="1">begin</beam>
  2958. </note>
  2959. <note default-x="160">
  2960. <pitch>
  2961. <step>D</step>
  2962. <octave>4</octave>
  2963. </pitch>
  2964. <duration>4</duration>
  2965. <voice>1</voice>
  2966. <type>eighth</type>
  2967. <stem default-y="-36.5">down</stem>
  2968. <staff>1</staff>
  2969. <beam number="1">continue</beam>
  2970. </note>
  2971. <note default-x="183">
  2972. <pitch>
  2973. <step>B</step>
  2974. <octave>3</octave>
  2975. </pitch>
  2976. <duration>4</duration>
  2977. <voice>1</voice>
  2978. <type>eighth</type>
  2979. <stem default-y="-38">down</stem>
  2980. <staff>1</staff>
  2981. <beam number="1">continue</beam>
  2982. </note>
  2983. <note default-x="206">
  2984. <pitch>
  2985. <step>G</step>
  2986. <alter>1</alter>
  2987. <octave>3</octave>
  2988. </pitch>
  2989. <duration>4</duration>
  2990. <voice>1</voice>
  2991. <type>eighth</type>
  2992. <stem default-y="-40">down</stem>
  2993. <staff>1</staff>
  2994. <beam number="1">end</beam>
  2995. <notations>
  2996. <slur number="1" type="stop"/>
  2997. </notations>
  2998. </note>
  2999. <backup>
  3000. <duration>32</duration>
  3001. </backup>
  3002. <note default-x="15">
  3003. <pitch>
  3004. <step>E</step>
  3005. <octave>3</octave>
  3006. </pitch>
  3007. <duration>8</duration>
  3008. <voice>3</voice>
  3009. <type>quarter</type>
  3010. <stem default-y="-50.5">down</stem>
  3011. <staff>2</staff>
  3012. <notations>
  3013. <slur bezier-x="-32" bezier-y="118" default-x="7" default-y="-5" number="2" type="stop"/>
  3014. </notations>
  3015. </note>
  3016. <note default-x="61">
  3017. <rest/>
  3018. <duration>8</duration>
  3019. <voice>3</voice>
  3020. <type>quarter</type>
  3021. <staff>2</staff>
  3022. </note>
  3023. <note default-x="134">
  3024. <rest/>
  3025. <duration>16</duration>
  3026. <voice>3</voice>
  3027. <type>half</type>
  3028. <staff>2</staff>
  3029. </note>
  3030. </measure>
  3031. </part>
  3032. <!--=========================================================-->
  3033. </score-partwise>