Schubert_An_die_Musik.xml 239 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549
  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. <identification>
  5. <encoding>
  6. <software>MuseScore 2.3.2</software>
  7. <encoding-date>2018-08-13</encoding-date>
  8. <supports element="accidental" type="yes"/>
  9. <supports element="beam" type="yes"/>
  10. <supports element="print" attribute="new-page" type="yes" value="yes"/>
  11. <supports element="print" attribute="new-system" type="yes" value="yes"/>
  12. <supports element="stem" type="yes"/>
  13. </encoding>
  14. <source>http://musescore.com/score/547256</source>
  15. </identification>
  16. <defaults>
  17. <scaling>
  18. <millimeters>7.056</millimeters>
  19. <tenths>40</tenths>
  20. </scaling>
  21. <page-layout>
  22. <page-height>1683.67</page-height>
  23. <page-width>1190.48</page-width>
  24. <page-margins type="even">
  25. <left-margin>56.6893</left-margin>
  26. <right-margin>56.6893</right-margin>
  27. <top-margin>56.6893</top-margin>
  28. <bottom-margin>113.379</bottom-margin>
  29. </page-margins>
  30. <page-margins type="odd">
  31. <left-margin>56.6893</left-margin>
  32. <right-margin>56.6893</right-margin>
  33. <top-margin>56.6893</top-margin>
  34. <bottom-margin>113.379</bottom-margin>
  35. </page-margins>
  36. </page-layout>
  37. <word-font font-family="FreeSerif" font-size="10"/>
  38. <lyric-font font-family="FreeSerif" font-size="11"/>
  39. </defaults>
  40. <credit page="1">
  41. <credit-words default-x="1133.79" default-y="1501.98" justify="right" valign="bottom" font-family="Times New Roman" font-size="12">Franz Schubert</credit-words>
  42. </credit>
  43. <credit page="1">
  44. <credit-words default-x="595.24" default-y="1626.98" justify="center" valign="top" font-family="Times New Roman" font-size="24">An die Musik</credit-words>
  45. </credit>
  46. <part-list>
  47. <score-part id="P1">
  48. <part-name>Voice</part-name>
  49. <part-abbreviation>Voice
  50. </part-abbreviation>
  51. <score-instrument id="P1-I1">
  52. <instrument-name>Flute</instrument-name>
  53. </score-instrument>
  54. <midi-device id="P1-I1" port="1"></midi-device>
  55. <midi-instrument id="P1-I1">
  56. <midi-channel>1</midi-channel>
  57. <midi-program>74</midi-program>
  58. <volume>78.7402</volume>
  59. <pan>0</pan>
  60. </midi-instrument>
  61. </score-part>
  62. <part-group type="start" number="1">
  63. <group-symbol>brace</group-symbol>
  64. </part-group>
  65. <score-part id="P2">
  66. <part-name>Piano</part-name>
  67. <part-abbreviation>Pno.</part-abbreviation>
  68. <score-instrument id="P2-I1">
  69. <instrument-name>Piano</instrument-name>
  70. </score-instrument>
  71. <midi-device id="P2-I1" port="1"></midi-device>
  72. <midi-instrument id="P2-I1">
  73. <midi-channel>2</midi-channel>
  74. <midi-program>1</midi-program>
  75. <volume>78.7402</volume>
  76. <pan>0</pan>
  77. </midi-instrument>
  78. </score-part>
  79. <score-part id="P3">
  80. <part-name print-object="no">Piano</part-name>
  81. <score-instrument id="P3-I1">
  82. <instrument-name>Piano</instrument-name>
  83. </score-instrument>
  84. <midi-device id="P3-I1" port="1"></midi-device>
  85. <midi-instrument id="P3-I1">
  86. <midi-channel>3</midi-channel>
  87. <midi-program>1</midi-program>
  88. <volume>78.7402</volume>
  89. <pan>0</pan>
  90. </midi-instrument>
  91. </score-part>
  92. <part-group type="stop" number="1"/>
  93. </part-list>
  94. <part id="P1">
  95. <measure number="1" width="371.57">
  96. <print>
  97. <system-layout>
  98. <system-margins>
  99. <left-margin>78.16</left-margin>
  100. <right-margin>0.00</right-margin>
  101. </system-margins>
  102. <top-system-distance>195.00</top-system-distance>
  103. </system-layout>
  104. </print>
  105. <attributes>
  106. <divisions>2</divisions>
  107. <key>
  108. <fifths>2</fifths>
  109. <mode>major</mode>
  110. </key>
  111. <time symbol="cut">
  112. <beats>2</beats>
  113. <beat-type>2</beat-type>
  114. </time>
  115. <clef>
  116. <sign>G</sign>
  117. <line>2</line>
  118. </clef>
  119. </attributes>
  120. <direction placement="above">
  121. <direction-type>
  122. <words default-x="-35.74" default-y="40.00" font-weight="bold" font-family="Times New Roman" font-size="12">Mäßig</words>
  123. </direction-type>
  124. <sound tempo="112"/>
  125. </direction>
  126. <note>
  127. <rest/>
  128. <duration>8</duration>
  129. <voice>1</voice>
  130. <type>whole</type>
  131. </note>
  132. </measure>
  133. <measure number="2" width="334.32">
  134. <note>
  135. <rest/>
  136. <duration>8</duration>
  137. <voice>1</voice>
  138. <type>whole</type>
  139. </note>
  140. </measure>
  141. <measure number="3" width="293.06">
  142. <barline location="left">
  143. <bar-style>heavy-light</bar-style>
  144. <repeat direction="forward"/>
  145. </barline>
  146. <note>
  147. <rest/>
  148. <duration>2</duration>
  149. <voice>1</voice>
  150. <type>quarter</type>
  151. </note>
  152. <note default-x="82.57" default-y="-25.00" dynamics="141.11">
  153. <pitch>
  154. <step>A</step>
  155. <octave>4</octave>
  156. </pitch>
  157. <duration>2</duration>
  158. <voice>1</voice>
  159. <type>quarter</type>
  160. <stem>up</stem>
  161. <lyric number="1" default-x="6.58" default-y="-80.00">
  162. <syllabic>single</syllabic>
  163. <text font-family="Times New Roman">Du</text>
  164. </lyric>
  165. <lyric number="2" default-x="6.58" default-y="-106.00">
  166. <syllabic>single</syllabic>
  167. <text font-family="Times New Roman">Oft</text>
  168. </lyric>
  169. </note>
  170. <note default-x="152.20" default-y="-10.00" dynamics="141.11">
  171. <pitch>
  172. <step>D</step>
  173. <octave>5</octave>
  174. </pitch>
  175. <duration>2</duration>
  176. <voice>1</voice>
  177. <type>quarter</type>
  178. <stem>down</stem>
  179. <lyric number="1" default-x="6.58" default-y="-80.00">
  180. <syllabic>begin</syllabic>
  181. <text font-family="Times New Roman">hol</text>
  182. </lyric>
  183. <lyric number="2" default-x="6.58" default-y="-106.00">
  184. <syllabic>single</syllabic>
  185. <text font-family="Times New Roman">hat</text>
  186. </lyric>
  187. </note>
  188. <note default-x="221.83" default-y="-10.00" dynamics="141.11">
  189. <pitch>
  190. <step>D</step>
  191. <octave>5</octave>
  192. </pitch>
  193. <duration>2</duration>
  194. <voice>1</voice>
  195. <type>quarter</type>
  196. <stem>down</stem>
  197. <lyric number="1" default-x="6.58" default-y="-80.00">
  198. <syllabic>end</syllabic>
  199. <text font-family="Times New Roman">de</text>
  200. </lyric>
  201. <lyric number="2" default-x="6.58" default-y="-106.00">
  202. <syllabic>single</syllabic>
  203. <text font-family="Times New Roman">ein</text>
  204. </lyric>
  205. </note>
  206. </measure>
  207. <measure number="4" width="376.05">
  208. <print new-system="yes">
  209. <system-layout>
  210. <system-margins>
  211. <left-margin>78.16</left-margin>
  212. <right-margin>0.00</right-margin>
  213. </system-margins>
  214. <system-distance>150.00</system-distance>
  215. </system-layout>
  216. </print>
  217. <note default-x="97.60" default-y="-35.00">
  218. <pitch>
  219. <step>F</step>
  220. <alter>1</alter>
  221. <octave>4</octave>
  222. </pitch>
  223. <duration>6</duration>
  224. <voice>1</voice>
  225. <type>half</type>
  226. <dot/>
  227. <stem>up</stem>
  228. <lyric number="1" default-x="7.97" default-y="-80.00">
  229. <syllabic>single</syllabic>
  230. <text font-family="Times New Roman">Kunst,</text>
  231. </lyric>
  232. <lyric number="2" default-x="6.22" default-y="-106.00">
  233. <syllabic>begin</syllabic>
  234. <text font-family="Times New Roman">Seuf</text>
  235. </lyric>
  236. </note>
  237. <note default-x="305.33" default-y="-20.00" dynamics="141.11">
  238. <pitch>
  239. <step>B</step>
  240. <octave>4</octave>
  241. </pitch>
  242. <duration>2</duration>
  243. <voice>1</voice>
  244. <type>quarter</type>
  245. <stem>down</stem>
  246. <lyric number="1" default-x="6.58" default-y="-80.00">
  247. <syllabic>single</syllabic>
  248. <text font-family="Times New Roman">in</text>
  249. </lyric>
  250. <lyric number="2" default-x="8.33" default-y="-106.00">
  251. <syllabic>end</syllabic>
  252. <text font-family="Times New Roman">zer,</text>
  253. </lyric>
  254. </note>
  255. </measure>
  256. <measure number="5" width="323.33">
  257. <note default-x="7.75" default-y="-20.00">
  258. <grace/>
  259. <pitch>
  260. <step>B</step>
  261. <octave>4</octave>
  262. </pitch>
  263. <voice>1</voice>
  264. <type>eighth</type>
  265. <stem>up</stem>
  266. </note>
  267. <note default-x="26.19" default-y="-45.00">
  268. <pitch>
  269. <step>D</step>
  270. <octave>4</octave>
  271. </pitch>
  272. <duration>3</duration>
  273. <voice>1</voice>
  274. <type>quarter</type>
  275. <dot/>
  276. <stem>up</stem>
  277. <lyric number="1" default-x="6.58" default-y="-80.00">
  278. <syllabic>single</syllabic>
  279. <text font-family="Times New Roman">wie</text>
  280. </lyric>
  281. <lyric number="2" default-x="6.58" default-y="-106.00" relative-x="1.00">
  282. <syllabic>begin</syllabic>
  283. <text font-family="Times New Roman">dei</text>
  284. </lyric>
  285. </note>
  286. <note default-x="133.68" default-y="-45.00" dynamics="141.11">
  287. <pitch>
  288. <step>D</step>
  289. <octave>4</octave>
  290. </pitch>
  291. <duration>1</duration>
  292. <voice>1</voice>
  293. <type>eighth</type>
  294. <stem>up</stem>
  295. <lyric number="1" default-x="6.58" default-y="-80.00">
  296. <syllabic>single</syllabic>
  297. <text font-family="Times New Roman">viel</text>
  298. </lyric>
  299. <lyric number="2" default-x="6.58" default-y="-106.00">
  300. <syllabic>end</syllabic>
  301. <text font-family="Times New Roman">ner</text>
  302. </lyric>
  303. </note>
  304. <note default-x="169.51" default-y="-35.00" dynamics="141.11">
  305. <pitch>
  306. <step>F</step>
  307. <alter>1</alter>
  308. <octave>4</octave>
  309. </pitch>
  310. <duration>1</duration>
  311. <voice>1</voice>
  312. <type>eighth</type>
  313. <stem>up</stem>
  314. <beam number="1">begin</beam>
  315. <lyric number="1" default-x="17.11" default-y="-80.00">
  316. <syllabic>begin</syllabic>
  317. <text>grau</text>
  318. </lyric>
  319. <lyric number="2" default-x="20.12" default-y="-106.00">
  320. <syllabic>single</syllabic>
  321. <text font-family="Times New Roman">Harf'</text>
  322. <extend/>
  323. </lyric>
  324. </note>
  325. <note default-x="214.24" default-y="-40.00" dynamics="141.11">
  326. <pitch>
  327. <step>E</step>
  328. <octave>4</octave>
  329. </pitch>
  330. <duration>1</duration>
  331. <voice>1</voice>
  332. <type>eighth</type>
  333. <stem>up</stem>
  334. <beam number="1">end</beam>
  335. </note>
  336. <note default-x="250.07" default-y="-45.00" dynamics="141.11">
  337. <pitch>
  338. <step>D</step>
  339. <octave>4</octave>
  340. </pitch>
  341. <duration>1</duration>
  342. <voice>1</voice>
  343. <type>eighth</type>
  344. <stem>up</stem>
  345. <beam number="1">begin</beam>
  346. <lyric number="1" default-x="8.26" default-y="-80.00">
  347. <syllabic>single</syllabic>
  348. <text>en</text>
  349. <extend/>
  350. </lyric>
  351. <lyric number="2" default-x="11.44" default-y="-106.00">
  352. <syllabic>begin</syllabic>
  353. <text font-family="Times New Roman">ent</text>
  354. </lyric>
  355. </note>
  356. <note default-x="285.90" default-y="-40.00" dynamics="141.11">
  357. <pitch>
  358. <step>E</step>
  359. <octave>4</octave>
  360. </pitch>
  361. <duration>1</duration>
  362. <voice>1</voice>
  363. <type>eighth</type>
  364. <stem>up</stem>
  365. <beam number="1">end</beam>
  366. </note>
  367. </measure>
  368. <measure number="6" width="299.57">
  369. <note default-x="25.60" default-y="-35.00" dynamics="141.11">
  370. <pitch>
  371. <step>F</step>
  372. <alter>1</alter>
  373. <octave>4</octave>
  374. </pitch>
  375. <duration>2</duration>
  376. <voice>1</voice>
  377. <type>quarter</type>
  378. <stem>up</stem>
  379. <lyric number="1" default-x="6.58" default-y="-80.00">
  380. <syllabic>begin</syllabic>
  381. <text font-family="Times New Roman">Stun</text>
  382. </lyric>
  383. <lyric number="2" default-x="6.58" default-y="-106.00">
  384. <syllabic>middle</syllabic>
  385. <text font-family="Times New Roman">flo</text>
  386. </lyric>
  387. </note>
  388. <note default-x="93.69" default-y="-45.00" dynamics="141.11">
  389. <pitch>
  390. <step>D</step>
  391. <octave>4</octave>
  392. </pitch>
  393. <duration>2</duration>
  394. <voice>1</voice>
  395. <type>quarter</type>
  396. <stem>up</stem>
  397. <lyric number="1" default-x="8.33" default-y="-80.00">
  398. <syllabic>end</syllabic>
  399. <text font-family="Times New Roman">den,</text>
  400. </lyric>
  401. <lyric number="2" default-x="6.58" default-y="-106.00">
  402. <syllabic>end</syllabic>
  403. <text font-family="Times New Roman">ssen</text>
  404. </lyric>
  405. </note>
  406. <note>
  407. <rest/>
  408. <duration>4</duration>
  409. <voice>1</voice>
  410. <type>half</type>
  411. </note>
  412. </measure>
  413. <measure number="7" width="353.44">
  414. <print new-system="yes">
  415. <system-layout>
  416. <system-margins>
  417. <left-margin>78.16</left-margin>
  418. <right-margin>-0.00</right-margin>
  419. </system-margins>
  420. <system-distance>150.00</system-distance>
  421. </system-layout>
  422. </print>
  423. <note>
  424. <rest/>
  425. <duration>2</duration>
  426. <voice>1</voice>
  427. <type>quarter</type>
  428. </note>
  429. <note default-x="146.61" default-y="-25.00" dynamics="141.11">
  430. <pitch>
  431. <step>A</step>
  432. <octave>4</octave>
  433. </pitch>
  434. <duration>2</duration>
  435. <voice>1</voice>
  436. <type>quarter</type>
  437. <stem>up</stem>
  438. <lyric number="1" default-x="6.58" default-y="-80.00">
  439. <syllabic>single</syllabic>
  440. <text font-family="Times New Roman">wo</text>
  441. </lyric>
  442. <lyric number="2" default-x="6.58" default-y="-106.00">
  443. <syllabic>single</syllabic>
  444. <text font-family="Times New Roman">ein</text>
  445. </lyric>
  446. </note>
  447. <note default-x="215.02" default-y="-20.00" dynamics="141.11">
  448. <pitch>
  449. <step>B</step>
  450. <octave>4</octave>
  451. </pitch>
  452. <duration>2</duration>
  453. <voice>1</voice>
  454. <type>quarter</type>
  455. <stem>down</stem>
  456. <lyric number="1" default-x="6.58" default-y="-80.00">
  457. <syllabic>single</syllabic>
  458. <text font-family="Times New Roman">mich</text>
  459. </lyric>
  460. <lyric number="2" default-x="6.58" default-y="-106.00">
  461. <syllabic>begin</syllabic>
  462. <text font-family="Times New Roman">sü</text>
  463. </lyric>
  464. </note>
  465. <note default-x="283.43" default-y="-20.00" dynamics="141.11">
  466. <pitch>
  467. <step>B</step>
  468. <octave>4</octave>
  469. </pitch>
  470. <duration>2</duration>
  471. <voice>1</voice>
  472. <type>quarter</type>
  473. <stem>down</stem>
  474. <lyric number="1" default-x="6.58" default-y="-80.00">
  475. <syllabic>single</syllabic>
  476. <text font-family="Times New Roman">des</text>
  477. </lyric>
  478. <lyric number="2" default-x="6.58" default-y="-106.00">
  479. <syllabic>end</syllabic>
  480. <text font-family="Times New Roman">sser</text>
  481. </lyric>
  482. </note>
  483. </measure>
  484. <measure number="8" width="297.40">
  485. <note default-x="18.86" default-y="-50.00">
  486. <pitch>
  487. <step>C</step>
  488. <alter>1</alter>
  489. <octave>4</octave>
  490. </pitch>
  491. <duration>3</duration>
  492. <voice>1</voice>
  493. <type>quarter</type>
  494. <dot/>
  495. <stem>up</stem>
  496. <lyric number="1" default-x="6.58" default-y="-80.00">
  497. <syllabic>begin</syllabic>
  498. <text font-family="Times New Roman">Le</text>
  499. </lyric>
  500. <lyric number="2" default-x="6.58" default-y="-106.00">
  501. <syllabic>begin</syllabic>
  502. <text font-family="Times New Roman">hei</text>
  503. </lyric>
  504. </note>
  505. <note default-x="121.81" default-y="-50.00" dynamics="141.11">
  506. <pitch>
  507. <step>C</step>
  508. <alter>1</alter>
  509. <octave>4</octave>
  510. </pitch>
  511. <duration>1</duration>
  512. <voice>1</voice>
  513. <type>eighth</type>
  514. <stem>up</stem>
  515. <lyric number="1" default-x="6.58" default-y="-80.00">
  516. <syllabic>end</syllabic>
  517. <text font-family="Times New Roman">bens</text>
  518. </lyric>
  519. <lyric number="2" default-x="6.58" default-y="-106.00">
  520. <syllabic>middle</syllabic>
  521. <text font-family="Times New Roman">li</text>
  522. </lyric>
  523. </note>
  524. <note default-x="158.53" default-y="-45.00">
  525. <pitch>
  526. <step>D</step>
  527. <octave>4</octave>
  528. </pitch>
  529. <duration>3</duration>
  530. <voice>1</voice>
  531. <type>quarter</type>
  532. <dot/>
  533. <stem>up</stem>
  534. <lyric number="1" default-x="6.58" default-y="-80.00">
  535. <syllabic>begin</syllabic>
  536. <text font-family="Times New Roman">wil</text>
  537. </lyric>
  538. <lyric number="2" default-x="6.58" default-y="-106.00">
  539. <syllabic>end</syllabic>
  540. <text font-family="Times New Roman">ger</text>
  541. </lyric>
  542. </note>
  543. <note default-x="261.48" default-y="-45.00" dynamics="141.11">
  544. <pitch>
  545. <step>D</step>
  546. <octave>4</octave>
  547. </pitch>
  548. <duration>1</duration>
  549. <voice>1</voice>
  550. <type>eighth</type>
  551. <stem>up</stem>
  552. <lyric number="1" default-x="6.58" default-y="-80.00">
  553. <syllabic>end</syllabic>
  554. <text font-family="Times New Roman">der</text>
  555. </lyric>
  556. <lyric number="2" default-x="6.58" default-y="-106.00">
  557. <syllabic>begin</syllabic>
  558. <text font-family="Times New Roman">Ac</text>
  559. </lyric>
  560. </note>
  561. </measure>
  562. <measure number="9" width="348.10">
  563. <note default-x="14.00" default-y="-35.00" dynamics="141.11">
  564. <pitch>
  565. <step>F</step>
  566. <alter>1</alter>
  567. <octave>4</octave>
  568. </pitch>
  569. <duration>1</duration>
  570. <voice>1</voice>
  571. <type>eighth</type>
  572. <stem>up</stem>
  573. <beam number="1">begin</beam>
  574. <lyric number="1" default-x="21.82" default-y="-80.00">
  575. <syllabic>single</syllabic>
  576. <text font-family="Times New Roman">Kreis</text>
  577. <extend/>
  578. </lyric>
  579. <lyric number="2" default-x="17.54" default-y="-106.00">
  580. <syllabic>end</syllabic>
  581. <text font-family="Times New Roman">cord</text>
  582. <extend/>
  583. </lyric>
  584. </note>
  585. <note default-x="62.14" default-y="-40.00" dynamics="141.11">
  586. <pitch>
  587. <step>E</step>
  588. <octave>4</octave>
  589. </pitch>
  590. <duration>1</duration>
  591. <voice>1</voice>
  592. <type>eighth</type>
  593. <stem>up</stem>
  594. <beam number="1">end</beam>
  595. </note>
  596. <note default-x="102.76" default-y="-45.00" dynamics="141.11">
  597. <pitch>
  598. <step>D</step>
  599. <octave>4</octave>
  600. </pitch>
  601. <duration>1</duration>
  602. <voice>1</voice>
  603. <type>eighth</type>
  604. <stem>up</stem>
  605. <beam number="1">begin</beam>
  606. <lyric number="1" default-x="12.06" default-y="-80.00">
  607. <syllabic>begin</syllabic>
  608. <text font-family="Times New Roman">um</text>
  609. </lyric>
  610. <lyric number="2" default-x="14.50" default-y="-106.00">
  611. <syllabic>single</syllabic>
  612. <text font-family="Times New Roman">von</text>
  613. <extend/>
  614. </lyric>
  615. </note>
  616. <note default-x="143.38" default-y="-40.00" dynamics="141.11">
  617. <pitch>
  618. <step>E</step>
  619. <octave>4</octave>
  620. </pitch>
  621. <duration>1</duration>
  622. <voice>1</voice>
  623. <type>eighth</type>
  624. <stem>up</stem>
  625. <beam number="1">end</beam>
  626. </note>
  627. <note default-x="183.65" default-y="-35.00" dynamics="141.11">
  628. <pitch>
  629. <step>F</step>
  630. <alter>1</alter>
  631. <octave>4</octave>
  632. </pitch>
  633. <duration>4</duration>
  634. <voice>1</voice>
  635. <type>half</type>
  636. <stem>up</stem>
  637. <lyric number="1" default-x="7.97" default-y="-80.00">
  638. <syllabic>end</syllabic>
  639. <text font-family="Times New Roman">strickt,</text>
  640. </lyric>
  641. <lyric number="2" default-x="7.97" default-y="-106.00">
  642. <syllabic>single</syllabic>
  643. <text font-family="Times New Roman">dir,</text>
  644. </lyric>
  645. </note>
  646. </measure>
  647. <measure number="10" width="367.04">
  648. <print new-page="yes">
  649. <system-layout>
  650. <system-margins>
  651. <left-margin>78.16</left-margin>
  652. <right-margin>0.00</right-margin>
  653. </system-margins>
  654. <top-system-distance>70.00</top-system-distance>
  655. </system-layout>
  656. </print>
  657. <note>
  658. <rest/>
  659. <duration>8</duration>
  660. <voice>1</voice>
  661. <type>whole</type>
  662. </note>
  663. </measure>
  664. <measure number="11" width="315.23">
  665. <note>
  666. <rest/>
  667. <duration>2</duration>
  668. <voice>1</voice>
  669. <type>quarter</type>
  670. </note>
  671. <note default-x="87.83" default-y="-10.00" dynamics="141.11">
  672. <pitch>
  673. <step>D</step>
  674. <octave>5</octave>
  675. </pitch>
  676. <duration>2</duration>
  677. <voice>1</voice>
  678. <type>quarter</type>
  679. <stem>down</stem>
  680. <lyric number="1" default-x="6.58" default-y="-80.00">
  681. <syllabic>single</syllabic>
  682. <text font-family="Times New Roman">hast</text>
  683. </lyric>
  684. <lyric number="2" default-x="6.58" default-y="-106.00">
  685. <syllabic>single</syllabic>
  686. <text font-family="Times New Roman">den</text>
  687. </lyric>
  688. </note>
  689. <note default-x="162.72" default-y="-5.00">
  690. <pitch>
  691. <step>E</step>
  692. <octave>5</octave>
  693. </pitch>
  694. <duration>3</duration>
  695. <voice>1</voice>
  696. <type>quarter</type>
  697. <dot/>
  698. <stem>down</stem>
  699. <lyric number="1" default-x="6.58" default-y="-80.00">
  700. <syllabic>single</syllabic>
  701. <text font-family="Times New Roman">du</text>
  702. </lyric>
  703. <lyric number="2" default-x="6.58" default-y="-106.00">
  704. <syllabic>begin</syllabic>
  705. <text font-family="Times New Roman">Him</text>
  706. </lyric>
  707. </note>
  708. <note default-x="275.05" default-y="-30.00" dynamics="141.11">
  709. <pitch>
  710. <step>G</step>
  711. <octave>4</octave>
  712. </pitch>
  713. <duration>1</duration>
  714. <voice>1</voice>
  715. <type>eighth</type>
  716. <stem>up</stem>
  717. <lyric number="1" default-x="6.58" default-y="-80.00">
  718. <syllabic>single</syllabic>
  719. <text font-family="Times New Roman">mein</text>
  720. </lyric>
  721. <lyric number="2" default-x="6.58" default-y="-106.00">
  722. <syllabic>end</syllabic>
  723. <text font-family="Times New Roman">mel</text>
  724. </lyric>
  725. </note>
  726. </measure>
  727. <measure number="12" width="316.67">
  728. <note default-x="14.00" default-y="-35.00" dynamics="141.11">
  729. <pitch>
  730. <step>F</step>
  731. <alter>1</alter>
  732. <octave>4</octave>
  733. </pitch>
  734. <duration>2</duration>
  735. <voice>1</voice>
  736. <type>quarter</type>
  737. <stem>up</stem>
  738. <notations>
  739. <slur type="start" number="1"/>
  740. </notations>
  741. <lyric number="1" default-x="19.36" default-y="-80.00">
  742. <syllabic>single</syllabic>
  743. <text font-family="Times New Roman">Herz</text>
  744. <extend/>
  745. </lyric>
  746. <lyric number="2" default-x="18.92" default-y="-106.00">
  747. <syllabic>begin</syllabic>
  748. <text font-family="Times New Roman">bess'</text>
  749. </lyric>
  750. </note>
  751. <note default-x="88.91" default-y="-25.00" dynamics="141.11">
  752. <pitch>
  753. <step>A</step>
  754. <octave>4</octave>
  755. </pitch>
  756. <duration>4</duration>
  757. <voice>1</voice>
  758. <type>half</type>
  759. <stem>up</stem>
  760. <notations>
  761. <slur type="stop" number="1"/>
  762. </notations>
  763. </note>
  764. <note default-x="239.80" default-y="-20.00" dynamics="141.11">
  765. <pitch>
  766. <step>B</step>
  767. <octave>4</octave>
  768. </pitch>
  769. <duration>1</duration>
  770. <voice>1</voice>
  771. <type>eighth</type>
  772. <stem>down</stem>
  773. <beam number="1">begin</beam>
  774. <lyric number="1" default-x="8.38" default-y="-80.00">
  775. <syllabic>single</syllabic>
  776. <text font-family="Times New Roman">zu</text>
  777. <extend/>
  778. </lyric>
  779. <lyric number="2" default-x="10.20" default-y="-106.00">
  780. <syllabic>end</syllabic>
  781. <text font-family="Times New Roman">rer</text>
  782. <extend/>
  783. </lyric>
  784. </note>
  785. <note default-x="277.44" default-y="-15.00" dynamics="141.11">
  786. <pitch>
  787. <step>C</step>
  788. <alter>1</alter>
  789. <octave>5</octave>
  790. </pitch>
  791. <duration>1</duration>
  792. <voice>1</voice>
  793. <type>eighth</type>
  794. <stem>down</stem>
  795. <beam number="1">end</beam>
  796. </note>
  797. </measure>
  798. <measure number="13" width="377.84">
  799. <print new-system="yes">
  800. <system-layout>
  801. <system-margins>
  802. <left-margin>78.16</left-margin>
  803. <right-margin>0.00</right-margin>
  804. </system-margins>
  805. <system-distance>150.00</system-distance>
  806. </system-layout>
  807. </print>
  808. <note default-x="87.16" default-y="-10.00">
  809. <pitch>
  810. <step>D</step>
  811. <octave>5</octave>
  812. </pitch>
  813. <duration>3</duration>
  814. <voice>1</voice>
  815. <type>quarter</type>
  816. <dot/>
  817. <stem>down</stem>
  818. <lyric number="1" default-x="6.58" default-y="-80.00">
  819. <syllabic>begin</syllabic>
  820. <text font-family="Times New Roman">war</text>
  821. </lyric>
  822. <lyric number="2" default-x="6.58" default-y="-106.00">
  823. <syllabic>begin</syllabic>
  824. <text font-family="Times New Roman">Zei</text>
  825. </lyric>
  826. </note>
  827. <note default-x="191.80" default-y="0.00" dynamics="141.11">
  828. <pitch>
  829. <step>F</step>
  830. <alter>1</alter>
  831. <octave>5</octave>
  832. </pitch>
  833. <duration>1</duration>
  834. <voice>1</voice>
  835. <type>eighth</type>
  836. <stem>down</stem>
  837. <lyric number="1" default-x="6.58" default-y="-80.00">
  838. <syllabic>end</syllabic>
  839. <text font-family="Times New Roman">mer</text>
  840. </lyric>
  841. <lyric number="2" default-x="6.58" default-y="-106.00">
  842. <syllabic>end</syllabic>
  843. <text font-family="Times New Roman">ten</text>
  844. </lyric>
  845. </note>
  846. <note default-x="226.67" default-y="-5.00" dynamics="141.11">
  847. <pitch>
  848. <step>E</step>
  849. <octave>5</octave>
  850. </pitch>
  851. <duration>1</duration>
  852. <voice>1</voice>
  853. <type>eighth</type>
  854. <stem>down</stem>
  855. <beam number="1">begin</beam>
  856. <lyric number="1" default-x="20.14" default-y="-80.00">
  857. <syllabic>single</syllabic>
  858. <text font-family="Times New Roman">Lieb'</text>
  859. <extend/>
  860. </lyric>
  861. <lyric number="2" default-x="13.28" default-y="-106.00">
  862. <syllabic>single</syllabic>
  863. <text font-family="Times New Roman">mir</text>
  864. <extend/>
  865. </lyric>
  866. </note>
  867. <note default-x="271.45" default-y="-15.00" dynamics="141.11">
  868. <pitch>
  869. <step>C</step>
  870. <alter>1</alter>
  871. <octave>5</octave>
  872. </pitch>
  873. <duration>1</duration>
  874. <voice>1</voice>
  875. <type>eighth</type>
  876. <stem>down</stem>
  877. <beam number="1">end</beam>
  878. </note>
  879. <note default-x="306.33" default-y="-25.00" dynamics="141.11">
  880. <pitch>
  881. <step>A</step>
  882. <octave>4</octave>
  883. </pitch>
  884. <duration>1</duration>
  885. <voice>1</voice>
  886. <type>eighth</type>
  887. <stem>up</stem>
  888. <beam number="1">begin</beam>
  889. <lyric number="1" default-x="11.44" default-y="-80.00">
  890. <syllabic>begin</syllabic>
  891. <text font-family="Times New Roman">ent</text>
  892. </lyric>
  893. <lyric number="2" default-x="6.54" default-y="-106.00">
  894. <syllabic>begin</syllabic>
  895. <text font-family="Times New Roman">er</text>
  896. </lyric>
  897. </note>
  898. <note default-x="341.21" default-y="-30.00" dynamics="141.11">
  899. <pitch>
  900. <step>G</step>
  901. <octave>4</octave>
  902. </pitch>
  903. <duration>1</duration>
  904. <voice>1</voice>
  905. <type>eighth</type>
  906. <stem>up</stem>
  907. <beam number="1">end</beam>
  908. </note>
  909. </measure>
  910. <measure number="14" width="324.65">
  911. <note default-x="7.75" default-y="-30.00">
  912. <grace/>
  913. <pitch>
  914. <step>G</step>
  915. <octave>4</octave>
  916. </pitch>
  917. <voice>1</voice>
  918. <type>eighth</type>
  919. <stem>up</stem>
  920. </note>
  921. <note default-x="26.19" default-y="-35.00" dynamics="141.11">
  922. <pitch>
  923. <step>F</step>
  924. <alter>1</alter>
  925. <octave>4</octave>
  926. </pitch>
  927. <duration>2</duration>
  928. <voice>1</voice>
  929. <type>quarter</type>
  930. <stem>up</stem>
  931. <lyric number="1" default-x="6.58" default-y="-80.00">
  932. <syllabic>middle</syllabic>
  933. <text font-family="Times New Roman">zun</text>
  934. </lyric>
  935. <lyric number="2" default-x="6.58" default-y="-106.00">
  936. <syllabic>middle</syllabic>
  937. <text font-family="Times New Roman">schlo</text>
  938. </lyric>
  939. </note>
  940. <note default-x="100.41" default-y="-35.00" dynamics="141.11">
  941. <pitch>
  942. <step>F</step>
  943. <alter>1</alter>
  944. <octave>4</octave>
  945. </pitch>
  946. <duration>2</duration>
  947. <voice>1</voice>
  948. <type>quarter</type>
  949. <stem>up</stem>
  950. <lyric number="1" default-x="8.33" default-y="-80.00">
  951. <syllabic>end</syllabic>
  952. <text font-family="Times New Roman">den,</text>
  953. </lyric>
  954. <lyric number="2" default-x="8.33" default-y="-106.00">
  955. <syllabic>end</syllabic>
  956. <text font-family="Times New Roman">ssen,</text>
  957. </lyric>
  958. </note>
  959. <note>
  960. <rest/>
  961. <duration>2</duration>
  962. <voice>1</voice>
  963. <type>quarter</type>
  964. </note>
  965. <note default-x="248.84" default-y="-25.00" dynamics="141.11">
  966. <pitch>
  967. <step>A</step>
  968. <octave>4</octave>
  969. </pitch>
  970. <duration>2</duration>
  971. <voice>1</voice>
  972. <type>quarter</type>
  973. <stem>up</stem>
  974. <lyric number="1" default-x="6.58" default-y="-80.00">
  975. <syllabic>single</syllabic>
  976. <text font-family="Times New Roman">hast</text>
  977. </lyric>
  978. <lyric number="2" default-x="6.58" default-y="-106.00">
  979. <syllabic>single</syllabic>
  980. <text font-family="Times New Roman">du</text>
  981. </lyric>
  982. </note>
  983. </measure>
  984. <measure number="15" width="296.45">
  985. <note default-x="27.42" default-y="-20.00">
  986. <pitch>
  987. <step>B</step>
  988. <octave>4</octave>
  989. </pitch>
  990. <duration>3</duration>
  991. <voice>1</voice>
  992. <type>quarter</type>
  993. <dot/>
  994. <stem>down</stem>
  995. <lyric number="1" default-x="6.58" default-y="-80.00">
  996. <syllabic>single</syllabic>
  997. <text font-family="Times New Roman">mich</text>
  998. </lyric>
  999. <lyric number="2" default-x="6.58" default-y="-106.00">
  1000. <syllabic>begin</syllabic>
  1001. <text font-family="Times New Roman">hol</text>
  1002. </lyric>
  1003. </note>
  1004. <note default-x="125.25" default-y="-20.00" dynamics="141.11">
  1005. <pitch>
  1006. <step>B</step>
  1007. <octave>4</octave>
  1008. </pitch>
  1009. <duration>1</duration>
  1010. <voice>1</voice>
  1011. <type>eighth</type>
  1012. <stem>down</stem>
  1013. <lyric number="1" default-x="6.58" default-y="-80.00">
  1014. <syllabic>single</syllabic>
  1015. <text font-family="Times New Roman">in</text>
  1016. </lyric>
  1017. <lyric number="2" default-x="6.58" default-y="-106.00">
  1018. <syllabic>end</syllabic>
  1019. <text font-family="Times New Roman">de</text>
  1020. </lyric>
  1021. </note>
  1022. <note default-x="164.41" default-y="-20.00" dynamics="141.11">
  1023. <pitch>
  1024. <step>B</step>
  1025. <octave>4</octave>
  1026. </pitch>
  1027. <duration>2</duration>
  1028. <voice>1</voice>
  1029. <type>quarter</type>
  1030. <stem>down</stem>
  1031. <lyric number="1" default-x="6.58" default-y="-80.00">
  1032. <syllabic>begin</syllabic>
  1033. <text font-family="Times New Roman">ei</text>
  1034. </lyric>
  1035. <lyric number="2" default-x="6.58" default-y="-106.00">
  1036. <syllabic>single</syllabic>
  1037. <text font-family="Times New Roman">Kunst</text>
  1038. </lyric>
  1039. </note>
  1040. <note default-x="229.63" default-y="-15.00" dynamics="141.11">
  1041. <pitch>
  1042. <step>C</step>
  1043. <alter>1</alter>
  1044. <octave>5</octave>
  1045. </pitch>
  1046. <duration>1</duration>
  1047. <voice>1</voice>
  1048. <type>eighth</type>
  1049. <stem>down</stem>
  1050. <beam number="1">begin</beam>
  1051. <lyric number="1" default-x="8.38" default-y="-80.00">
  1052. <syllabic>end</syllabic>
  1053. <text font-family="Times New Roman">ne</text>
  1054. <extend/>
  1055. </lyric>
  1056. <lyric number="2" default-x="11.44" default-y="-106.00">
  1057. <syllabic>single</syllabic>
  1058. <text font-family="Times New Roman">ich</text>
  1059. <extend/>
  1060. </lyric>
  1061. </note>
  1062. <note default-x="262.24" default-y="-10.00" dynamics="141.11">
  1063. <pitch>
  1064. <step>D</step>
  1065. <octave>5</octave>
  1066. </pitch>
  1067. <duration>1</duration>
  1068. <voice>1</voice>
  1069. <type>eighth</type>
  1070. <stem>down</stem>
  1071. <beam number="1">end</beam>
  1072. </note>
  1073. </measure>
  1074. <measure number="16" width="365.96">
  1075. <print new-system="yes">
  1076. <system-layout>
  1077. <system-margins>
  1078. <left-margin>78.16</left-margin>
  1079. <right-margin>0.00</right-margin>
  1080. </system-margins>
  1081. <system-distance>150.00</system-distance>
  1082. </system-layout>
  1083. </print>
  1084. <note default-x="90.40" default-y="-10.00">
  1085. <pitch>
  1086. <step>D</step>
  1087. <octave>5</octave>
  1088. </pitch>
  1089. <duration>3</duration>
  1090. <voice>1</voice>
  1091. <type>quarter</type>
  1092. <dot/>
  1093. <stem>down</stem>
  1094. <lyric number="1" default-x="7.78" default-y="-80.00">
  1095. <syllabic>begin</syllabic>
  1096. <text font-family="Times New Roman">bess'</text>
  1097. </lyric>
  1098. <lyric number="2" default-x="6.58" default-y="-106.00">
  1099. <syllabic>begin</syllabic>
  1100. <text font-family="Times New Roman">dan</text>
  1101. </lyric>
  1102. </note>
  1103. <note default-x="192.80" default-y="-10.00" dynamics="141.11">
  1104. <pitch>
  1105. <step>D</step>
  1106. <octave>5</octave>
  1107. </pitch>
  1108. <duration>1</duration>
  1109. <voice>1</voice>
  1110. <type>eighth</type>
  1111. <stem>down</stem>
  1112. <lyric number="1" default-x="6.58" default-y="-80.00">
  1113. <syllabic>end</syllabic>
  1114. <text font-family="Times New Roman">re</text>
  1115. </lyric>
  1116. <lyric number="2" default-x="6.58" default-y="-106.00">
  1117. <syllabic>end</syllabic>
  1118. <text font-family="Times New Roman">ke</text>
  1119. </lyric>
  1120. </note>
  1121. <note default-x="226.93" default-y="0.00">
  1122. <pitch>
  1123. <step>F</step>
  1124. <alter>1</alter>
  1125. <octave>5</octave>
  1126. </pitch>
  1127. <duration>3</duration>
  1128. <voice>1</voice>
  1129. <type>quarter</type>
  1130. <dot/>
  1131. <stem>down</stem>
  1132. <lyric number="1" default-x="6.58" default-y="-80.00">
  1133. <syllabic>single</syllabic>
  1134. <text font-family="Times New Roman">Welt</text>
  1135. </lyric>
  1136. <lyric number="2" default-x="6.58" default-y="-106.00">
  1137. <syllabic>single</syllabic>
  1138. <text font-family="Times New Roman">dir</text>
  1139. </lyric>
  1140. </note>
  1141. <note default-x="329.32" default-y="-5.00" dynamics="141.11">
  1142. <pitch>
  1143. <step>E</step>
  1144. <octave>5</octave>
  1145. </pitch>
  1146. <duration>1</duration>
  1147. <voice>1</voice>
  1148. <type>eighth</type>
  1149. <stem>down</stem>
  1150. <lyric number="1" default-x="6.58" default-y="-80.00">
  1151. <syllabic>begin</syllabic>
  1152. <text font-family="Times New Roman">ent</text>
  1153. </lyric>
  1154. <lyric number="2" default-x="6.58" default-y="-106.00">
  1155. <syllabic>begin</syllabic>
  1156. <text font-family="Times New Roman">da</text>
  1157. </lyric>
  1158. </note>
  1159. </measure>
  1160. <measure number="17" width="290.96">
  1161. <note default-x="7.39" default-y="-5.00">
  1162. <grace/>
  1163. <pitch>
  1164. <step>E</step>
  1165. <octave>5</octave>
  1166. </pitch>
  1167. <voice>1</voice>
  1168. <type>eighth</type>
  1169. <stem>up</stem>
  1170. </note>
  1171. <note default-x="25.83" default-y="-10.00">
  1172. <pitch>
  1173. <step>D</step>
  1174. <octave>5</octave>
  1175. </pitch>
  1176. <duration>4</duration>
  1177. <voice>1</voice>
  1178. <type>half</type>
  1179. <stem>down</stem>
  1180. <lyric number="1" default-x="8.69" default-y="-80.00">
  1181. <syllabic>end</syllabic>
  1182. <text font-family="Times New Roman">rückt,</text>
  1183. </lyric>
  1184. <lyric number="2" default-x="8.69" default-y="-106.00">
  1185. <syllabic>end</syllabic>
  1186. <text font-family="Times New Roman">für,</text>
  1187. </lyric>
  1188. </note>
  1189. <note>
  1190. <rest/>
  1191. <duration>1</duration>
  1192. <voice>1</voice>
  1193. <type>eighth</type>
  1194. </note>
  1195. <note default-x="190.67" default-y="-20.00" dynamics="141.11">
  1196. <pitch>
  1197. <step>B</step>
  1198. <octave>4</octave>
  1199. </pitch>
  1200. <duration>1</duration>
  1201. <voice>1</voice>
  1202. <type>eighth</type>
  1203. <stem>down</stem>
  1204. <beam number="1">begin</beam>
  1205. <lyric number="1" default-x="6.58" default-y="-80.00">
  1206. <syllabic>single</syllabic>
  1207. <text font-family="Times New Roman">in</text>
  1208. </lyric>
  1209. <lyric number="2" default-x="6.58" default-y="-106.00">
  1210. <syllabic>single</syllabic>
  1211. <text font-family="Times New Roman">du</text>
  1212. </lyric>
  1213. </note>
  1214. <note default-x="223.57" default-y="-15.00" dynamics="141.11">
  1215. <pitch>
  1216. <step>C</step>
  1217. <alter>1</alter>
  1218. <octave>5</octave>
  1219. </pitch>
  1220. <duration>1</duration>
  1221. <voice>1</voice>
  1222. <type>eighth</type>
  1223. <stem>down</stem>
  1224. <beam number="1">continue</beam>
  1225. <lyric number="1" default-x="6.58" default-y="-80.00">
  1226. <syllabic>begin</syllabic>
  1227. <text font-family="Times New Roman">ei</text>
  1228. </lyric>
  1229. <lyric number="2" default-x="6.58" default-y="-106.00">
  1230. <syllabic>begin</syllabic>
  1231. <text font-family="Times New Roman">hol</text>
  1232. </lyric>
  1233. </note>
  1234. <note default-x="256.47" default-y="-10.00" dynamics="141.11">
  1235. <pitch>
  1236. <step>D</step>
  1237. <octave>5</octave>
  1238. </pitch>
  1239. <duration>1</duration>
  1240. <voice>1</voice>
  1241. <type>eighth</type>
  1242. <stem>down</stem>
  1243. <beam number="1">end</beam>
  1244. <lyric number="1" default-x="6.58" default-y="-80.00">
  1245. <syllabic>end</syllabic>
  1246. <text font-family="Times New Roman">ne</text>
  1247. </lyric>
  1248. <lyric number="2" default-x="6.58" default-y="-106.00">
  1249. <syllabic>end</syllabic>
  1250. <text font-family="Times New Roman">de</text>
  1251. </lyric>
  1252. </note>
  1253. </measure>
  1254. <measure number="18" width="342.02">
  1255. <note default-x="14.00" default-y="-10.00" dynamics="141.11">
  1256. <pitch>
  1257. <step>D</step>
  1258. <octave>5</octave>
  1259. </pitch>
  1260. <duration>2</duration>
  1261. <voice>1</voice>
  1262. <type>quarter</type>
  1263. <stem>down</stem>
  1264. <notations>
  1265. <slur type="start" number="1"/>
  1266. </notations>
  1267. <lyric number="1" default-x="18.92" default-y="-80.00">
  1268. <syllabic>begin</syllabic>
  1269. <text font-family="Times New Roman">bess'</text>
  1270. </lyric>
  1271. <lyric number="2" default-x="27.03" default-y="-106.00">
  1272. <syllabic>single</syllabic>
  1273. <text font-family="Times New Roman">Kunst,</text>
  1274. <extend/>
  1275. </lyric>
  1276. </note>
  1277. <note default-x="95.61" default-y="-35.00" dynamics="141.11">
  1278. <pitch>
  1279. <step>F</step>
  1280. <alter>1</alter>
  1281. <octave>4</octave>
  1282. </pitch>
  1283. <duration>1</duration>
  1284. <voice>1</voice>
  1285. <type>eighth</type>
  1286. <stem>up</stem>
  1287. <beam number="1">begin</beam>
  1288. <notations>
  1289. <slur type="stop" number="1"/>
  1290. </notations>
  1291. </note>
  1292. <note default-x="136.41" default-y="-35.00" dynamics="141.11">
  1293. <pitch>
  1294. <step>F</step>
  1295. <alter>1</alter>
  1296. <octave>4</octave>
  1297. </pitch>
  1298. <duration>1</duration>
  1299. <voice>1</voice>
  1300. <type>eighth</type>
  1301. <stem>up</stem>
  1302. <beam number="1">end</beam>
  1303. <lyric number="1" default-x="6.58" default-y="-80.00">
  1304. <syllabic>end</syllabic>
  1305. <text font-family="Times New Roman">re</text>
  1306. </lyric>
  1307. <lyric number="2" default-x="6.58" default-y="-106.00">
  1308. <syllabic>single</syllabic>
  1309. <text font-family="Times New Roman">ich</text>
  1310. </lyric>
  1311. </note>
  1312. <note default-x="177.21" default-y="-25.00" dynamics="141.11">
  1313. <pitch>
  1314. <step>A</step>
  1315. <octave>4</octave>
  1316. </pitch>
  1317. <duration>2</duration>
  1318. <voice>1</voice>
  1319. <type>quarter</type>
  1320. <stem>up</stem>
  1321. <notations>
  1322. <slur type="start" number="1"/>
  1323. </notations>
  1324. <lyric number="1" default-x="18.50" default-y="-80.00">
  1325. <syllabic>begin</syllabic>
  1326. <text font-family="Times New Roman">Welt</text>
  1327. </lyric>
  1328. <lyric number="2" default-x="13.88" default-y="-106.00">
  1329. <syllabic>begin</syllabic>
  1330. <text font-family="Times New Roman">dan</text>
  1331. </lyric>
  1332. </note>
  1333. <note default-x="258.82" default-y="-50.00" dynamics="141.11">
  1334. <pitch>
  1335. <step>C</step>
  1336. <alter>1</alter>
  1337. <octave>4</octave>
  1338. </pitch>
  1339. <duration>1</duration>
  1340. <voice>1</voice>
  1341. <type>eighth</type>
  1342. <stem>up</stem>
  1343. <beam number="1">begin</beam>
  1344. <notations>
  1345. <slur type="stop" number="1"/>
  1346. </notations>
  1347. </note>
  1348. <note default-x="299.62" default-y="-50.00" dynamics="141.11">
  1349. <pitch>
  1350. <step>C</step>
  1351. <alter>1</alter>
  1352. <octave>4</octave>
  1353. </pitch>
  1354. <duration>1</duration>
  1355. <voice>1</voice>
  1356. <type>eighth</type>
  1357. <stem>up</stem>
  1358. <beam number="1">end</beam>
  1359. <lyric number="1" default-x="6.58" default-y="-80.00">
  1360. <syllabic>middle</syllabic>
  1361. <text font-family="Times New Roman">ent</text>
  1362. </lyric>
  1363. <lyric number="2" default-x="6.58" default-y="-106.00">
  1364. <syllabic>end</syllabic>
  1365. <text font-family="Times New Roman">ke</text>
  1366. </lyric>
  1367. </note>
  1368. </measure>
  1369. <measure number="19" width="998.94">
  1370. <print new-page="yes">
  1371. <system-layout>
  1372. <system-margins>
  1373. <left-margin>78.16</left-margin>
  1374. <right-margin>0.00</right-margin>
  1375. </system-margins>
  1376. <top-system-distance>70.00</top-system-distance>
  1377. </system-layout>
  1378. </print>
  1379. <note default-x="93.92" default-y="-45.00" dynamics="141.11">
  1380. <pitch>
  1381. <step>D</step>
  1382. <octave>4</octave>
  1383. </pitch>
  1384. <duration>4</duration>
  1385. <voice>1</voice>
  1386. <type>half</type>
  1387. <stem>up</stem>
  1388. <lyric number="1" default-x="7.97" default-y="-80.00">
  1389. <syllabic>end</syllabic>
  1390. <text font-family="Times New Roman">rückt.</text>
  1391. </lyric>
  1392. <lyric number="2" default-x="7.97" default-y="-106.00">
  1393. <syllabic>single</syllabic>
  1394. <text font-family="Times New Roman">dir.</text>
  1395. </lyric>
  1396. </note>
  1397. <note>
  1398. <rest/>
  1399. <duration>4</duration>
  1400. <voice>1</voice>
  1401. <type>half</type>
  1402. </note>
  1403. </measure>
  1404. <measure number="20" width="255.67">
  1405. <print new-system="yes">
  1406. <system-layout>
  1407. <system-margins>
  1408. <left-margin>78.16</left-margin>
  1409. <right-margin>-0.00</right-margin>
  1410. </system-margins>
  1411. <system-distance>150.00</system-distance>
  1412. </system-layout>
  1413. </print>
  1414. <note print-object="no">
  1415. <rest/>
  1416. <duration>8</duration>
  1417. <voice>1</voice>
  1418. </note>
  1419. </measure>
  1420. <measure number="21" width="240.04">
  1421. <note print-object="no">
  1422. <rest/>
  1423. <duration>8</duration>
  1424. <voice>1</voice>
  1425. </note>
  1426. </measure>
  1427. <measure number="22" width="293.17">
  1428. <note print-object="no">
  1429. <rest/>
  1430. <duration>8</duration>
  1431. <voice>1</voice>
  1432. </note>
  1433. <barline location="right">
  1434. <bar-style>light-heavy</bar-style>
  1435. <repeat direction="backward"/>
  1436. </barline>
  1437. </measure>
  1438. <measure number="23" width="210.07">
  1439. <note print-object="no">
  1440. <rest/>
  1441. <duration>8</duration>
  1442. <voice>1</voice>
  1443. </note>
  1444. </measure>
  1445. </part>
  1446. <part id="P2">
  1447. <measure number="1" width="371.57">
  1448. <print>
  1449. <staff-layout number="1">
  1450. <staff-distance>106.00</staff-distance>
  1451. </staff-layout>
  1452. </print>
  1453. <attributes>
  1454. <divisions>2</divisions>
  1455. <key>
  1456. <fifths>2</fifths>
  1457. <mode>major</mode>
  1458. </key>
  1459. <time symbol="cut">
  1460. <beats>2</beats>
  1461. <beat-type>2</beat-type>
  1462. </time>
  1463. <clef>
  1464. <sign>G</sign>
  1465. <line>2</line>
  1466. </clef>
  1467. </attributes>
  1468. <note default-x="100.51" default-y="-206.00" dynamics="141.11">
  1469. <pitch>
  1470. <step>A</step>
  1471. <octave>3</octave>
  1472. </pitch>
  1473. <duration>1</duration>
  1474. <voice>1</voice>
  1475. <type>eighth</type>
  1476. <stem>up</stem>
  1477. <beam number="1">begin</beam>
  1478. </note>
  1479. <note default-x="100.51" default-y="-191.00" dynamics="141.11">
  1480. <chord/>
  1481. <pitch>
  1482. <step>D</step>
  1483. <octave>4</octave>
  1484. </pitch>
  1485. <duration>1</duration>
  1486. <voice>1</voice>
  1487. <type>eighth</type>
  1488. <stem>up</stem>
  1489. </note>
  1490. <note default-x="100.51" default-y="-181.00" dynamics="141.11">
  1491. <chord/>
  1492. <pitch>
  1493. <step>F</step>
  1494. <alter>1</alter>
  1495. <octave>4</octave>
  1496. </pitch>
  1497. <duration>1</duration>
  1498. <voice>1</voice>
  1499. <type>eighth</type>
  1500. <stem>up</stem>
  1501. </note>
  1502. <note default-x="134.19" default-y="-206.00" dynamics="141.11">
  1503. <pitch>
  1504. <step>A</step>
  1505. <octave>3</octave>
  1506. </pitch>
  1507. <duration>1</duration>
  1508. <voice>1</voice>
  1509. <type>eighth</type>
  1510. <stem>up</stem>
  1511. <beam number="1">continue</beam>
  1512. </note>
  1513. <note default-x="134.19" default-y="-191.00" dynamics="141.11">
  1514. <chord/>
  1515. <pitch>
  1516. <step>D</step>
  1517. <octave>4</octave>
  1518. </pitch>
  1519. <duration>1</duration>
  1520. <voice>1</voice>
  1521. <type>eighth</type>
  1522. <stem>up</stem>
  1523. </note>
  1524. <note default-x="134.19" default-y="-181.00" dynamics="141.11">
  1525. <chord/>
  1526. <pitch>
  1527. <step>F</step>
  1528. <alter>1</alter>
  1529. <octave>4</octave>
  1530. </pitch>
  1531. <duration>1</duration>
  1532. <voice>1</voice>
  1533. <type>eighth</type>
  1534. <stem>up</stem>
  1535. </note>
  1536. <note default-x="167.88" default-y="-206.00" dynamics="141.11">
  1537. <pitch>
  1538. <step>A</step>
  1539. <octave>3</octave>
  1540. </pitch>
  1541. <duration>1</duration>
  1542. <voice>1</voice>
  1543. <type>eighth</type>
  1544. <stem>up</stem>
  1545. <beam number="1">continue</beam>
  1546. </note>
  1547. <note default-x="167.88" default-y="-191.00" dynamics="141.11">
  1548. <chord/>
  1549. <pitch>
  1550. <step>D</step>
  1551. <octave>4</octave>
  1552. </pitch>
  1553. <duration>1</duration>
  1554. <voice>1</voice>
  1555. <type>eighth</type>
  1556. <stem>up</stem>
  1557. </note>
  1558. <note default-x="167.88" default-y="-181.00" dynamics="141.11">
  1559. <chord/>
  1560. <pitch>
  1561. <step>F</step>
  1562. <alter>1</alter>
  1563. <octave>4</octave>
  1564. </pitch>
  1565. <duration>1</duration>
  1566. <voice>1</voice>
  1567. <type>eighth</type>
  1568. <stem>up</stem>
  1569. </note>
  1570. <note default-x="201.56" default-y="-206.00" dynamics="141.11">
  1571. <pitch>
  1572. <step>A</step>
  1573. <octave>3</octave>
  1574. </pitch>
  1575. <duration>1</duration>
  1576. <voice>1</voice>
  1577. <type>eighth</type>
  1578. <stem>up</stem>
  1579. <beam number="1">end</beam>
  1580. </note>
  1581. <note default-x="201.56" default-y="-191.00" dynamics="141.11">
  1582. <chord/>
  1583. <pitch>
  1584. <step>D</step>
  1585. <octave>4</octave>
  1586. </pitch>
  1587. <duration>1</duration>
  1588. <voice>1</voice>
  1589. <type>eighth</type>
  1590. <stem>up</stem>
  1591. </note>
  1592. <note default-x="201.56" default-y="-181.00" dynamics="141.11">
  1593. <chord/>
  1594. <pitch>
  1595. <step>F</step>
  1596. <alter>1</alter>
  1597. <octave>4</octave>
  1598. </pitch>
  1599. <duration>1</duration>
  1600. <voice>1</voice>
  1601. <type>eighth</type>
  1602. <stem>up</stem>
  1603. </note>
  1604. <note default-x="235.24" default-y="-206.00" dynamics="141.11">
  1605. <pitch>
  1606. <step>A</step>
  1607. <octave>3</octave>
  1608. </pitch>
  1609. <duration>1</duration>
  1610. <voice>1</voice>
  1611. <type>eighth</type>
  1612. <stem>up</stem>
  1613. <beam number="1">begin</beam>
  1614. </note>
  1615. <note default-x="235.24" default-y="-191.00" dynamics="141.11">
  1616. <chord/>
  1617. <pitch>
  1618. <step>D</step>
  1619. <octave>4</octave>
  1620. </pitch>
  1621. <duration>1</duration>
  1622. <voice>1</voice>
  1623. <type>eighth</type>
  1624. <stem>up</stem>
  1625. </note>
  1626. <note default-x="235.24" default-y="-181.00" dynamics="141.11">
  1627. <chord/>
  1628. <pitch>
  1629. <step>F</step>
  1630. <alter>1</alter>
  1631. <octave>4</octave>
  1632. </pitch>
  1633. <duration>1</duration>
  1634. <voice>1</voice>
  1635. <type>eighth</type>
  1636. <stem>up</stem>
  1637. </note>
  1638. <note default-x="268.92" default-y="-206.00" dynamics="141.11">
  1639. <pitch>
  1640. <step>A</step>
  1641. <octave>3</octave>
  1642. </pitch>
  1643. <duration>1</duration>
  1644. <voice>1</voice>
  1645. <type>eighth</type>
  1646. <stem>up</stem>
  1647. <beam number="1">continue</beam>
  1648. </note>
  1649. <note default-x="268.92" default-y="-191.00" dynamics="141.11">
  1650. <chord/>
  1651. <pitch>
  1652. <step>D</step>
  1653. <octave>4</octave>
  1654. </pitch>
  1655. <duration>1</duration>
  1656. <voice>1</voice>
  1657. <type>eighth</type>
  1658. <stem>up</stem>
  1659. </note>
  1660. <note default-x="268.92" default-y="-181.00" dynamics="141.11">
  1661. <chord/>
  1662. <pitch>
  1663. <step>F</step>
  1664. <alter>1</alter>
  1665. <octave>4</octave>
  1666. </pitch>
  1667. <duration>1</duration>
  1668. <voice>1</voice>
  1669. <type>eighth</type>
  1670. <stem>up</stem>
  1671. </note>
  1672. <note default-x="302.60" default-y="-206.00" dynamics="141.11">
  1673. <pitch>
  1674. <step>A</step>
  1675. <octave>3</octave>
  1676. </pitch>
  1677. <duration>1</duration>
  1678. <voice>1</voice>
  1679. <type>eighth</type>
  1680. <stem>up</stem>
  1681. <beam number="1">continue</beam>
  1682. </note>
  1683. <note default-x="302.60" default-y="-191.00" dynamics="141.11">
  1684. <chord/>
  1685. <pitch>
  1686. <step>D</step>
  1687. <octave>4</octave>
  1688. </pitch>
  1689. <duration>1</duration>
  1690. <voice>1</voice>
  1691. <type>eighth</type>
  1692. <stem>up</stem>
  1693. </note>
  1694. <note default-x="302.60" default-y="-181.00" dynamics="141.11">
  1695. <chord/>
  1696. <pitch>
  1697. <step>F</step>
  1698. <alter>1</alter>
  1699. <octave>4</octave>
  1700. </pitch>
  1701. <duration>1</duration>
  1702. <voice>1</voice>
  1703. <type>eighth</type>
  1704. <stem>up</stem>
  1705. </note>
  1706. <note default-x="336.29" default-y="-206.00" dynamics="141.11">
  1707. <pitch>
  1708. <step>A</step>
  1709. <octave>3</octave>
  1710. </pitch>
  1711. <duration>1</duration>
  1712. <voice>1</voice>
  1713. <type>eighth</type>
  1714. <stem>up</stem>
  1715. <beam number="1">end</beam>
  1716. </note>
  1717. <note default-x="336.29" default-y="-191.00" dynamics="141.11">
  1718. <chord/>
  1719. <pitch>
  1720. <step>D</step>
  1721. <octave>4</octave>
  1722. </pitch>
  1723. <duration>1</duration>
  1724. <voice>1</voice>
  1725. <type>eighth</type>
  1726. <stem>up</stem>
  1727. </note>
  1728. <note default-x="336.29" default-y="-181.00" dynamics="141.11">
  1729. <chord/>
  1730. <pitch>
  1731. <step>F</step>
  1732. <alter>1</alter>
  1733. <octave>4</octave>
  1734. </pitch>
  1735. <duration>1</duration>
  1736. <voice>1</voice>
  1737. <type>eighth</type>
  1738. <stem>up</stem>
  1739. </note>
  1740. </measure>
  1741. <measure number="2" width="334.32">
  1742. <note default-x="12.36" default-y="-206.00" dynamics="141.11">
  1743. <pitch>
  1744. <step>A</step>
  1745. <octave>3</octave>
  1746. </pitch>
  1747. <duration>1</duration>
  1748. <voice>1</voice>
  1749. <type>eighth</type>
  1750. <stem>up</stem>
  1751. <beam number="1">begin</beam>
  1752. </note>
  1753. <note default-x="12.36" default-y="-191.00" dynamics="141.11">
  1754. <chord/>
  1755. <pitch>
  1756. <step>D</step>
  1757. <octave>4</octave>
  1758. </pitch>
  1759. <duration>1</duration>
  1760. <voice>1</voice>
  1761. <type>eighth</type>
  1762. <stem>up</stem>
  1763. </note>
  1764. <note default-x="12.36" default-y="-171.00" dynamics="141.11">
  1765. <chord/>
  1766. <pitch>
  1767. <step>A</step>
  1768. <octave>4</octave>
  1769. </pitch>
  1770. <duration>1</duration>
  1771. <voice>1</voice>
  1772. <type>eighth</type>
  1773. <stem>up</stem>
  1774. </note>
  1775. <note default-x="50.21" default-y="-206.00" dynamics="141.11">
  1776. <pitch>
  1777. <step>A</step>
  1778. <octave>3</octave>
  1779. </pitch>
  1780. <duration>1</duration>
  1781. <voice>1</voice>
  1782. <type>eighth</type>
  1783. <stem>up</stem>
  1784. <beam number="1">continue</beam>
  1785. </note>
  1786. <note default-x="50.21" default-y="-191.00" dynamics="141.11">
  1787. <chord/>
  1788. <pitch>
  1789. <step>D</step>
  1790. <octave>4</octave>
  1791. </pitch>
  1792. <duration>1</duration>
  1793. <voice>1</voice>
  1794. <type>eighth</type>
  1795. <stem>up</stem>
  1796. </note>
  1797. <note default-x="50.21" default-y="-171.00" dynamics="141.11">
  1798. <chord/>
  1799. <pitch>
  1800. <step>A</step>
  1801. <octave>4</octave>
  1802. </pitch>
  1803. <duration>1</duration>
  1804. <voice>1</voice>
  1805. <type>eighth</type>
  1806. <stem>up</stem>
  1807. </note>
  1808. <note default-x="88.07" default-y="-206.00" dynamics="141.11">
  1809. <pitch>
  1810. <step>A</step>
  1811. <octave>3</octave>
  1812. </pitch>
  1813. <duration>1</duration>
  1814. <voice>1</voice>
  1815. <type>eighth</type>
  1816. <stem>up</stem>
  1817. <beam number="1">continue</beam>
  1818. </note>
  1819. <note default-x="88.07" default-y="-191.00" dynamics="141.11">
  1820. <chord/>
  1821. <pitch>
  1822. <step>D</step>
  1823. <octave>4</octave>
  1824. </pitch>
  1825. <duration>1</duration>
  1826. <voice>1</voice>
  1827. <type>eighth</type>
  1828. <stem>up</stem>
  1829. </note>
  1830. <note default-x="88.07" default-y="-171.00" dynamics="141.11">
  1831. <chord/>
  1832. <pitch>
  1833. <step>A</step>
  1834. <octave>4</octave>
  1835. </pitch>
  1836. <duration>1</duration>
  1837. <voice>1</voice>
  1838. <type>eighth</type>
  1839. <stem>up</stem>
  1840. </note>
  1841. <note default-x="125.92" default-y="-206.00" dynamics="141.11">
  1842. <pitch>
  1843. <step>A</step>
  1844. <octave>3</octave>
  1845. </pitch>
  1846. <duration>1</duration>
  1847. <voice>1</voice>
  1848. <type>eighth</type>
  1849. <stem>up</stem>
  1850. <beam number="1">end</beam>
  1851. </note>
  1852. <note default-x="125.92" default-y="-191.00" dynamics="141.11">
  1853. <chord/>
  1854. <pitch>
  1855. <step>D</step>
  1856. <octave>4</octave>
  1857. </pitch>
  1858. <duration>1</duration>
  1859. <voice>1</voice>
  1860. <type>eighth</type>
  1861. <stem>up</stem>
  1862. </note>
  1863. <note default-x="125.92" default-y="-171.00" dynamics="141.11">
  1864. <chord/>
  1865. <pitch>
  1866. <step>A</step>
  1867. <octave>4</octave>
  1868. </pitch>
  1869. <duration>1</duration>
  1870. <voice>1</voice>
  1871. <type>eighth</type>
  1872. <stem>up</stem>
  1873. </note>
  1874. <note default-x="163.77" default-y="-206.00" dynamics="141.11">
  1875. <pitch>
  1876. <step>A</step>
  1877. <octave>3</octave>
  1878. </pitch>
  1879. <duration>1</duration>
  1880. <voice>1</voice>
  1881. <type>eighth</type>
  1882. <stem>up</stem>
  1883. <beam number="1">begin</beam>
  1884. </note>
  1885. <note default-x="163.77" default-y="-196.00" dynamics="141.11">
  1886. <chord/>
  1887. <pitch>
  1888. <step>C</step>
  1889. <alter>1</alter>
  1890. <octave>4</octave>
  1891. </pitch>
  1892. <duration>1</duration>
  1893. <voice>1</voice>
  1894. <type>eighth</type>
  1895. <stem>up</stem>
  1896. </note>
  1897. <note default-x="163.77" default-y="-176.00" dynamics="141.11">
  1898. <chord/>
  1899. <pitch>
  1900. <step>G</step>
  1901. <octave>4</octave>
  1902. </pitch>
  1903. <duration>1</duration>
  1904. <voice>1</voice>
  1905. <type>eighth</type>
  1906. <stem>up</stem>
  1907. </note>
  1908. <note default-x="201.63" default-y="-206.00" dynamics="141.11">
  1909. <pitch>
  1910. <step>A</step>
  1911. <octave>3</octave>
  1912. </pitch>
  1913. <duration>1</duration>
  1914. <voice>1</voice>
  1915. <type>eighth</type>
  1916. <stem>up</stem>
  1917. <beam number="1">continue</beam>
  1918. </note>
  1919. <note default-x="201.63" default-y="-196.00" dynamics="141.11">
  1920. <chord/>
  1921. <pitch>
  1922. <step>C</step>
  1923. <alter>1</alter>
  1924. <octave>4</octave>
  1925. </pitch>
  1926. <duration>1</duration>
  1927. <voice>1</voice>
  1928. <type>eighth</type>
  1929. <stem>up</stem>
  1930. </note>
  1931. <note default-x="201.63" default-y="-176.00" dynamics="141.11">
  1932. <chord/>
  1933. <pitch>
  1934. <step>G</step>
  1935. <octave>4</octave>
  1936. </pitch>
  1937. <duration>1</duration>
  1938. <voice>1</voice>
  1939. <type>eighth</type>
  1940. <stem>up</stem>
  1941. </note>
  1942. <note default-x="239.48" default-y="-211.00" dynamics="141.11">
  1943. <pitch>
  1944. <step>G</step>
  1945. <octave>3</octave>
  1946. </pitch>
  1947. <duration>1</duration>
  1948. <voice>1</voice>
  1949. <type>eighth</type>
  1950. <stem>up</stem>
  1951. <beam number="1">continue</beam>
  1952. </note>
  1953. <note default-x="251.35" default-y="-206.00" dynamics="141.11">
  1954. <chord/>
  1955. <pitch>
  1956. <step>A</step>
  1957. <octave>3</octave>
  1958. </pitch>
  1959. <duration>1</duration>
  1960. <voice>1</voice>
  1961. <type>eighth</type>
  1962. <stem>up</stem>
  1963. </note>
  1964. <note default-x="239.48" default-y="-196.00" dynamics="141.11">
  1965. <chord/>
  1966. <pitch>
  1967. <step>C</step>
  1968. <alter>1</alter>
  1969. <octave>4</octave>
  1970. </pitch>
  1971. <duration>1</duration>
  1972. <voice>1</voice>
  1973. <type>eighth</type>
  1974. <stem>up</stem>
  1975. </note>
  1976. <note default-x="239.48" default-y="-186.00" dynamics="141.11">
  1977. <chord/>
  1978. <pitch>
  1979. <step>E</step>
  1980. <octave>4</octave>
  1981. </pitch>
  1982. <duration>1</duration>
  1983. <voice>1</voice>
  1984. <type>eighth</type>
  1985. <stem>up</stem>
  1986. </note>
  1987. <note default-x="277.33" default-y="-211.00" dynamics="141.11">
  1988. <pitch>
  1989. <step>G</step>
  1990. <octave>3</octave>
  1991. </pitch>
  1992. <duration>1</duration>
  1993. <voice>1</voice>
  1994. <type>eighth</type>
  1995. <stem>up</stem>
  1996. <beam number="1">end</beam>
  1997. </note>
  1998. <note default-x="289.20" default-y="-206.00" dynamics="141.11">
  1999. <chord/>
  2000. <pitch>
  2001. <step>A</step>
  2002. <octave>3</octave>
  2003. </pitch>
  2004. <duration>1</duration>
  2005. <voice>1</voice>
  2006. <type>eighth</type>
  2007. <stem>up</stem>
  2008. </note>
  2009. <note default-x="277.33" default-y="-196.00" dynamics="141.11">
  2010. <chord/>
  2011. <pitch>
  2012. <step>C</step>
  2013. <alter>1</alter>
  2014. <octave>4</octave>
  2015. </pitch>
  2016. <duration>1</duration>
  2017. <voice>1</voice>
  2018. <type>eighth</type>
  2019. <stem>up</stem>
  2020. </note>
  2021. <note default-x="277.33" default-y="-186.00" dynamics="141.11">
  2022. <chord/>
  2023. <pitch>
  2024. <step>E</step>
  2025. <octave>4</octave>
  2026. </pitch>
  2027. <duration>1</duration>
  2028. <voice>1</voice>
  2029. <type>eighth</type>
  2030. <stem>up</stem>
  2031. </note>
  2032. </measure>
  2033. <measure number="3" width="293.06">
  2034. <barline location="left">
  2035. <bar-style>heavy-light</bar-style>
  2036. <repeat direction="forward"/>
  2037. </barline>
  2038. <note default-x="12.94" default-y="-216.00" dynamics="141.11">
  2039. <pitch>
  2040. <step>F</step>
  2041. <alter>1</alter>
  2042. <octave>3</octave>
  2043. </pitch>
  2044. <duration>1</duration>
  2045. <voice>1</voice>
  2046. <type>eighth</type>
  2047. <stem>up</stem>
  2048. <beam number="1">begin</beam>
  2049. </note>
  2050. <note default-x="12.94" default-y="-206.00" dynamics="141.11">
  2051. <chord/>
  2052. <pitch>
  2053. <step>A</step>
  2054. <octave>3</octave>
  2055. </pitch>
  2056. <duration>1</duration>
  2057. <voice>1</voice>
  2058. <type>eighth</type>
  2059. <stem>up</stem>
  2060. </note>
  2061. <note default-x="12.94" default-y="-191.00" dynamics="141.11">
  2062. <chord/>
  2063. <pitch>
  2064. <step>D</step>
  2065. <octave>4</octave>
  2066. </pitch>
  2067. <duration>1</duration>
  2068. <voice>1</voice>
  2069. <type>eighth</type>
  2070. <stem>up</stem>
  2071. </note>
  2072. <note default-x="47.75" default-y="-206.00" dynamics="141.11">
  2073. <pitch>
  2074. <step>A</step>
  2075. <octave>3</octave>
  2076. </pitch>
  2077. <duration>1</duration>
  2078. <voice>1</voice>
  2079. <type>eighth</type>
  2080. <stem>up</stem>
  2081. <beam number="1">continue</beam>
  2082. </note>
  2083. <note default-x="47.75" default-y="-191.00" dynamics="141.11">
  2084. <chord/>
  2085. <pitch>
  2086. <step>D</step>
  2087. <octave>4</octave>
  2088. </pitch>
  2089. <duration>1</duration>
  2090. <voice>1</voice>
  2091. <type>eighth</type>
  2092. <stem>up</stem>
  2093. </note>
  2094. <note default-x="47.75" default-y="-181.00" dynamics="141.11">
  2095. <chord/>
  2096. <pitch>
  2097. <step>F</step>
  2098. <alter>1</alter>
  2099. <octave>4</octave>
  2100. </pitch>
  2101. <duration>1</duration>
  2102. <voice>1</voice>
  2103. <type>eighth</type>
  2104. <stem>up</stem>
  2105. </note>
  2106. <note default-x="82.57" default-y="-206.00" dynamics="141.11">
  2107. <pitch>
  2108. <step>A</step>
  2109. <octave>3</octave>
  2110. </pitch>
  2111. <duration>1</duration>
  2112. <voice>1</voice>
  2113. <type>eighth</type>
  2114. <stem>up</stem>
  2115. <beam number="1">continue</beam>
  2116. </note>
  2117. <note default-x="82.57" default-y="-191.00" dynamics="141.11">
  2118. <chord/>
  2119. <pitch>
  2120. <step>D</step>
  2121. <octave>4</octave>
  2122. </pitch>
  2123. <duration>1</duration>
  2124. <voice>1</voice>
  2125. <type>eighth</type>
  2126. <stem>up</stem>
  2127. </note>
  2128. <note default-x="82.57" default-y="-181.00" dynamics="141.11">
  2129. <chord/>
  2130. <pitch>
  2131. <step>F</step>
  2132. <alter>1</alter>
  2133. <octave>4</octave>
  2134. </pitch>
  2135. <duration>1</duration>
  2136. <voice>1</voice>
  2137. <type>eighth</type>
  2138. <stem>up</stem>
  2139. </note>
  2140. <note default-x="117.38" default-y="-206.00" dynamics="141.11">
  2141. <pitch>
  2142. <step>A</step>
  2143. <octave>3</octave>
  2144. </pitch>
  2145. <duration>1</duration>
  2146. <voice>1</voice>
  2147. <type>eighth</type>
  2148. <stem>up</stem>
  2149. <beam number="1">end</beam>
  2150. </note>
  2151. <note default-x="117.38" default-y="-191.00" dynamics="141.11">
  2152. <chord/>
  2153. <pitch>
  2154. <step>D</step>
  2155. <octave>4</octave>
  2156. </pitch>
  2157. <duration>1</duration>
  2158. <voice>1</voice>
  2159. <type>eighth</type>
  2160. <stem>up</stem>
  2161. </note>
  2162. <note default-x="117.38" default-y="-181.00" dynamics="141.11">
  2163. <chord/>
  2164. <pitch>
  2165. <step>F</step>
  2166. <alter>1</alter>
  2167. <octave>4</octave>
  2168. </pitch>
  2169. <duration>1</duration>
  2170. <voice>1</voice>
  2171. <type>eighth</type>
  2172. <stem>up</stem>
  2173. </note>
  2174. <note default-x="152.20" default-y="-206.00" dynamics="141.11">
  2175. <pitch>
  2176. <step>A</step>
  2177. <octave>3</octave>
  2178. </pitch>
  2179. <duration>1</duration>
  2180. <voice>1</voice>
  2181. <type>eighth</type>
  2182. <stem>up</stem>
  2183. <beam number="1">begin</beam>
  2184. </note>
  2185. <note default-x="152.20" default-y="-191.00" dynamics="141.11">
  2186. <chord/>
  2187. <pitch>
  2188. <step>D</step>
  2189. <octave>4</octave>
  2190. </pitch>
  2191. <duration>1</duration>
  2192. <voice>1</voice>
  2193. <type>eighth</type>
  2194. <stem>up</stem>
  2195. </note>
  2196. <note default-x="152.20" default-y="-181.00" dynamics="141.11">
  2197. <chord/>
  2198. <pitch>
  2199. <step>F</step>
  2200. <alter>1</alter>
  2201. <octave>4</octave>
  2202. </pitch>
  2203. <duration>1</duration>
  2204. <voice>1</voice>
  2205. <type>eighth</type>
  2206. <stem>up</stem>
  2207. </note>
  2208. <note default-x="187.01" default-y="-206.00" dynamics="141.11">
  2209. <pitch>
  2210. <step>A</step>
  2211. <octave>3</octave>
  2212. </pitch>
  2213. <duration>1</duration>
  2214. <voice>1</voice>
  2215. <type>eighth</type>
  2216. <stem>up</stem>
  2217. <beam number="1">continue</beam>
  2218. </note>
  2219. <note default-x="187.01" default-y="-191.00" dynamics="141.11">
  2220. <chord/>
  2221. <pitch>
  2222. <step>D</step>
  2223. <octave>4</octave>
  2224. </pitch>
  2225. <duration>1</duration>
  2226. <voice>1</voice>
  2227. <type>eighth</type>
  2228. <stem>up</stem>
  2229. </note>
  2230. <note default-x="187.01" default-y="-181.00" dynamics="141.11">
  2231. <chord/>
  2232. <pitch>
  2233. <step>F</step>
  2234. <alter>1</alter>
  2235. <octave>4</octave>
  2236. </pitch>
  2237. <duration>1</duration>
  2238. <voice>1</voice>
  2239. <type>eighth</type>
  2240. <stem>up</stem>
  2241. </note>
  2242. <note default-x="221.83" default-y="-206.00" dynamics="141.11">
  2243. <pitch>
  2244. <step>A</step>
  2245. <octave>3</octave>
  2246. </pitch>
  2247. <duration>1</duration>
  2248. <voice>1</voice>
  2249. <type>eighth</type>
  2250. <stem>up</stem>
  2251. <beam number="1">continue</beam>
  2252. </note>
  2253. <note default-x="221.83" default-y="-191.00" dynamics="141.11">
  2254. <chord/>
  2255. <pitch>
  2256. <step>D</step>
  2257. <octave>4</octave>
  2258. </pitch>
  2259. <duration>1</duration>
  2260. <voice>1</voice>
  2261. <type>eighth</type>
  2262. <stem>up</stem>
  2263. </note>
  2264. <note default-x="221.83" default-y="-181.00" dynamics="141.11">
  2265. <chord/>
  2266. <pitch>
  2267. <step>F</step>
  2268. <alter>1</alter>
  2269. <octave>4</octave>
  2270. </pitch>
  2271. <duration>1</duration>
  2272. <voice>1</voice>
  2273. <type>eighth</type>
  2274. <stem>up</stem>
  2275. </note>
  2276. <note default-x="256.64" default-y="-206.00" dynamics="141.11">
  2277. <pitch>
  2278. <step>A</step>
  2279. <octave>3</octave>
  2280. </pitch>
  2281. <duration>1</duration>
  2282. <voice>1</voice>
  2283. <type>eighth</type>
  2284. <stem>up</stem>
  2285. <beam number="1">end</beam>
  2286. </note>
  2287. <note default-x="256.64" default-y="-191.00" dynamics="141.11">
  2288. <chord/>
  2289. <pitch>
  2290. <step>D</step>
  2291. <octave>4</octave>
  2292. </pitch>
  2293. <duration>1</duration>
  2294. <voice>1</voice>
  2295. <type>eighth</type>
  2296. <stem>up</stem>
  2297. </note>
  2298. <note default-x="256.64" default-y="-181.00" dynamics="141.11">
  2299. <chord/>
  2300. <pitch>
  2301. <step>F</step>
  2302. <alter>1</alter>
  2303. <octave>4</octave>
  2304. </pitch>
  2305. <duration>1</duration>
  2306. <voice>1</voice>
  2307. <type>eighth</type>
  2308. <stem>up</stem>
  2309. </note>
  2310. </measure>
  2311. <measure number="4" width="376.05">
  2312. <print new-system="yes">
  2313. <staff-layout number="1">
  2314. <staff-distance>106.00</staff-distance>
  2315. </staff-layout>
  2316. </print>
  2317. <note default-x="97.96" default-y="-206.00" dynamics="141.11">
  2318. <pitch>
  2319. <step>A</step>
  2320. <octave>3</octave>
  2321. </pitch>
  2322. <duration>1</duration>
  2323. <voice>1</voice>
  2324. <type>eighth</type>
  2325. <stem>up</stem>
  2326. <beam number="1">begin</beam>
  2327. </note>
  2328. <note default-x="97.96" default-y="-191.00" dynamics="141.11">
  2329. <chord/>
  2330. <pitch>
  2331. <step>D</step>
  2332. <octave>4</octave>
  2333. </pitch>
  2334. <duration>1</duration>
  2335. <voice>1</voice>
  2336. <type>eighth</type>
  2337. <stem>up</stem>
  2338. </note>
  2339. <note default-x="97.96" default-y="-181.00" dynamics="141.11">
  2340. <chord/>
  2341. <pitch>
  2342. <step>F</step>
  2343. <alter>1</alter>
  2344. <octave>4</octave>
  2345. </pitch>
  2346. <duration>1</duration>
  2347. <voice>1</voice>
  2348. <type>eighth</type>
  2349. <stem>up</stem>
  2350. </note>
  2351. <note default-x="132.52" default-y="-206.00" dynamics="141.11">
  2352. <pitch>
  2353. <step>A</step>
  2354. <octave>3</octave>
  2355. </pitch>
  2356. <duration>1</duration>
  2357. <voice>1</voice>
  2358. <type>eighth</type>
  2359. <stem>up</stem>
  2360. <beam number="1">continue</beam>
  2361. </note>
  2362. <note default-x="132.52" default-y="-191.00" dynamics="141.11">
  2363. <chord/>
  2364. <pitch>
  2365. <step>D</step>
  2366. <octave>4</octave>
  2367. </pitch>
  2368. <duration>1</duration>
  2369. <voice>1</voice>
  2370. <type>eighth</type>
  2371. <stem>up</stem>
  2372. </note>
  2373. <note default-x="132.52" default-y="-181.00" dynamics="141.11">
  2374. <chord/>
  2375. <pitch>
  2376. <step>F</step>
  2377. <alter>1</alter>
  2378. <octave>4</octave>
  2379. </pitch>
  2380. <duration>1</duration>
  2381. <voice>1</voice>
  2382. <type>eighth</type>
  2383. <stem>up</stem>
  2384. </note>
  2385. <note default-x="167.09" default-y="-206.00" dynamics="141.11">
  2386. <pitch>
  2387. <step>A</step>
  2388. <octave>3</octave>
  2389. </pitch>
  2390. <duration>1</duration>
  2391. <voice>1</voice>
  2392. <type>eighth</type>
  2393. <stem>up</stem>
  2394. <beam number="1">continue</beam>
  2395. </note>
  2396. <note default-x="167.09" default-y="-191.00" dynamics="141.11">
  2397. <chord/>
  2398. <pitch>
  2399. <step>D</step>
  2400. <octave>4</octave>
  2401. </pitch>
  2402. <duration>1</duration>
  2403. <voice>1</voice>
  2404. <type>eighth</type>
  2405. <stem>up</stem>
  2406. </note>
  2407. <note default-x="167.09" default-y="-181.00" dynamics="141.11">
  2408. <chord/>
  2409. <pitch>
  2410. <step>F</step>
  2411. <alter>1</alter>
  2412. <octave>4</octave>
  2413. </pitch>
  2414. <duration>1</duration>
  2415. <voice>1</voice>
  2416. <type>eighth</type>
  2417. <stem>up</stem>
  2418. </note>
  2419. <note default-x="201.65" default-y="-206.00" dynamics="141.11">
  2420. <pitch>
  2421. <step>A</step>
  2422. <octave>3</octave>
  2423. </pitch>
  2424. <duration>1</duration>
  2425. <voice>1</voice>
  2426. <type>eighth</type>
  2427. <stem>up</stem>
  2428. <beam number="1">end</beam>
  2429. </note>
  2430. <note default-x="201.65" default-y="-191.00" dynamics="141.11">
  2431. <chord/>
  2432. <pitch>
  2433. <step>D</step>
  2434. <octave>4</octave>
  2435. </pitch>
  2436. <duration>1</duration>
  2437. <voice>1</voice>
  2438. <type>eighth</type>
  2439. <stem>up</stem>
  2440. </note>
  2441. <note default-x="201.65" default-y="-181.00" dynamics="141.11">
  2442. <chord/>
  2443. <pitch>
  2444. <step>F</step>
  2445. <alter>1</alter>
  2446. <octave>4</octave>
  2447. </pitch>
  2448. <duration>1</duration>
  2449. <voice>1</voice>
  2450. <type>eighth</type>
  2451. <stem>up</stem>
  2452. </note>
  2453. <note default-x="236.21" default-y="-216.00" dynamics="141.11">
  2454. <pitch>
  2455. <step>F</step>
  2456. <alter>1</alter>
  2457. <octave>3</octave>
  2458. </pitch>
  2459. <duration>1</duration>
  2460. <voice>1</voice>
  2461. <type>eighth</type>
  2462. <stem>up</stem>
  2463. <beam number="1">begin</beam>
  2464. </note>
  2465. <note default-x="236.21" default-y="-191.00" dynamics="141.11">
  2466. <chord/>
  2467. <pitch>
  2468. <step>D</step>
  2469. <octave>4</octave>
  2470. </pitch>
  2471. <duration>1</duration>
  2472. <voice>1</voice>
  2473. <type>eighth</type>
  2474. <stem>up</stem>
  2475. </note>
  2476. <note default-x="236.21" default-y="-181.00" dynamics="141.11">
  2477. <chord/>
  2478. <pitch>
  2479. <step>F</step>
  2480. <alter>1</alter>
  2481. <octave>4</octave>
  2482. </pitch>
  2483. <duration>1</duration>
  2484. <voice>1</voice>
  2485. <type>eighth</type>
  2486. <stem>up</stem>
  2487. </note>
  2488. <note default-x="270.77" default-y="-216.00" dynamics="141.11">
  2489. <pitch>
  2490. <step>F</step>
  2491. <alter>1</alter>
  2492. <octave>3</octave>
  2493. </pitch>
  2494. <duration>1</duration>
  2495. <voice>1</voice>
  2496. <type>eighth</type>
  2497. <stem>up</stem>
  2498. <beam number="1">continue</beam>
  2499. </note>
  2500. <note default-x="270.77" default-y="-181.00" dynamics="141.11">
  2501. <chord/>
  2502. <pitch>
  2503. <step>F</step>
  2504. <alter>1</alter>
  2505. <octave>4</octave>
  2506. </pitch>
  2507. <duration>1</duration>
  2508. <voice>1</voice>
  2509. <type>eighth</type>
  2510. <stem>up</stem>
  2511. </note>
  2512. <note default-x="305.33" default-y="-201.00" dynamics="141.11">
  2513. <pitch>
  2514. <step>B</step>
  2515. <octave>3</octave>
  2516. </pitch>
  2517. <duration>1</duration>
  2518. <voice>1</voice>
  2519. <type>eighth</type>
  2520. <stem>up</stem>
  2521. <beam number="1">continue</beam>
  2522. </note>
  2523. <note default-x="305.33" default-y="-191.00" dynamics="141.11">
  2524. <chord/>
  2525. <pitch>
  2526. <step>D</step>
  2527. <octave>4</octave>
  2528. </pitch>
  2529. <duration>1</duration>
  2530. <voice>1</voice>
  2531. <type>eighth</type>
  2532. <stem>up</stem>
  2533. </note>
  2534. <note default-x="305.33" default-y="-181.00" dynamics="141.11">
  2535. <chord/>
  2536. <pitch>
  2537. <step>F</step>
  2538. <alter>1</alter>
  2539. <octave>4</octave>
  2540. </pitch>
  2541. <duration>1</duration>
  2542. <voice>1</voice>
  2543. <type>eighth</type>
  2544. <stem>up</stem>
  2545. </note>
  2546. <note default-x="339.89" default-y="-201.00" dynamics="141.11">
  2547. <pitch>
  2548. <step>B</step>
  2549. <octave>3</octave>
  2550. </pitch>
  2551. <duration>1</duration>
  2552. <voice>1</voice>
  2553. <type>eighth</type>
  2554. <stem>up</stem>
  2555. <beam number="1">end</beam>
  2556. </note>
  2557. <note default-x="339.89" default-y="-191.00" dynamics="141.11">
  2558. <chord/>
  2559. <pitch>
  2560. <step>D</step>
  2561. <octave>4</octave>
  2562. </pitch>
  2563. <duration>1</duration>
  2564. <voice>1</voice>
  2565. <type>eighth</type>
  2566. <stem>up</stem>
  2567. </note>
  2568. <note default-x="339.89" default-y="-181.00" dynamics="141.11">
  2569. <chord/>
  2570. <pitch>
  2571. <step>F</step>
  2572. <alter>1</alter>
  2573. <octave>4</octave>
  2574. </pitch>
  2575. <duration>1</duration>
  2576. <voice>1</voice>
  2577. <type>eighth</type>
  2578. <stem>up</stem>
  2579. </note>
  2580. </measure>
  2581. <measure number="5" width="323.33">
  2582. <note>
  2583. <rest/>
  2584. <duration>1</duration>
  2585. <voice>1</voice>
  2586. <type>eighth</type>
  2587. </note>
  2588. <note default-x="62.02" default-y="-206.00" dynamics="141.11">
  2589. <pitch>
  2590. <step>A</step>
  2591. <octave>3</octave>
  2592. </pitch>
  2593. <duration>1</duration>
  2594. <voice>1</voice>
  2595. <type>eighth</type>
  2596. <stem>up</stem>
  2597. <beam number="1">begin</beam>
  2598. </note>
  2599. <note default-x="62.02" default-y="-191.00" dynamics="141.11">
  2600. <chord/>
  2601. <pitch>
  2602. <step>D</step>
  2603. <octave>4</octave>
  2604. </pitch>
  2605. <duration>1</duration>
  2606. <voice>1</voice>
  2607. <type>eighth</type>
  2608. <stem>up</stem>
  2609. </note>
  2610. <note default-x="62.02" default-y="-181.00" dynamics="141.11">
  2611. <chord/>
  2612. <pitch>
  2613. <step>F</step>
  2614. <alter>1</alter>
  2615. <octave>4</octave>
  2616. </pitch>
  2617. <duration>1</duration>
  2618. <voice>1</voice>
  2619. <type>eighth</type>
  2620. <stem>up</stem>
  2621. </note>
  2622. <note default-x="97.85" default-y="-206.00" dynamics="141.11">
  2623. <pitch>
  2624. <step>A</step>
  2625. <octave>3</octave>
  2626. </pitch>
  2627. <duration>1</duration>
  2628. <voice>1</voice>
  2629. <type>eighth</type>
  2630. <stem>up</stem>
  2631. <beam number="1">continue</beam>
  2632. </note>
  2633. <note default-x="97.85" default-y="-191.00" dynamics="141.11">
  2634. <chord/>
  2635. <pitch>
  2636. <step>D</step>
  2637. <octave>4</octave>
  2638. </pitch>
  2639. <duration>1</duration>
  2640. <voice>1</voice>
  2641. <type>eighth</type>
  2642. <stem>up</stem>
  2643. </note>
  2644. <note default-x="97.85" default-y="-181.00" dynamics="141.11">
  2645. <chord/>
  2646. <pitch>
  2647. <step>F</step>
  2648. <alter>1</alter>
  2649. <octave>4</octave>
  2650. </pitch>
  2651. <duration>1</duration>
  2652. <voice>1</voice>
  2653. <type>eighth</type>
  2654. <stem>up</stem>
  2655. </note>
  2656. <note default-x="133.68" default-y="-206.00" dynamics="141.11">
  2657. <pitch>
  2658. <step>A</step>
  2659. <octave>3</octave>
  2660. </pitch>
  2661. <duration>1</duration>
  2662. <voice>1</voice>
  2663. <type>eighth</type>
  2664. <stem>up</stem>
  2665. <beam number="1">end</beam>
  2666. </note>
  2667. <note default-x="133.68" default-y="-191.00" dynamics="141.11">
  2668. <chord/>
  2669. <pitch>
  2670. <step>D</step>
  2671. <octave>4</octave>
  2672. </pitch>
  2673. <duration>1</duration>
  2674. <voice>1</voice>
  2675. <type>eighth</type>
  2676. <stem>up</stem>
  2677. </note>
  2678. <note default-x="133.68" default-y="-181.00" dynamics="141.11">
  2679. <chord/>
  2680. <pitch>
  2681. <step>F</step>
  2682. <alter>1</alter>
  2683. <octave>4</octave>
  2684. </pitch>
  2685. <duration>1</duration>
  2686. <voice>1</voice>
  2687. <type>eighth</type>
  2688. <stem>up</stem>
  2689. </note>
  2690. <note>
  2691. <rest/>
  2692. <duration>1</duration>
  2693. <voice>1</voice>
  2694. <type>eighth</type>
  2695. </note>
  2696. <note default-x="214.24" default-y="-206.00" dynamics="141.11">
  2697. <pitch>
  2698. <step>A</step>
  2699. <octave>3</octave>
  2700. </pitch>
  2701. <duration>1</duration>
  2702. <voice>1</voice>
  2703. <type>eighth</type>
  2704. <stem>up</stem>
  2705. <beam number="1">begin</beam>
  2706. </note>
  2707. <note default-x="214.24" default-y="-196.00" dynamics="141.11">
  2708. <chord/>
  2709. <pitch>
  2710. <step>C</step>
  2711. <alter>1</alter>
  2712. <octave>4</octave>
  2713. </pitch>
  2714. <duration>1</duration>
  2715. <voice>1</voice>
  2716. <type>eighth</type>
  2717. <stem>up</stem>
  2718. </note>
  2719. <note default-x="214.24" default-y="-176.00" dynamics="141.11">
  2720. <chord/>
  2721. <pitch>
  2722. <step>G</step>
  2723. <octave>4</octave>
  2724. </pitch>
  2725. <duration>1</duration>
  2726. <voice>1</voice>
  2727. <type>eighth</type>
  2728. <stem>up</stem>
  2729. </note>
  2730. <note default-x="250.07" default-y="-206.00" dynamics="141.11">
  2731. <pitch>
  2732. <step>A</step>
  2733. <octave>3</octave>
  2734. </pitch>
  2735. <duration>1</duration>
  2736. <voice>1</voice>
  2737. <type>eighth</type>
  2738. <stem>up</stem>
  2739. <beam number="1">continue</beam>
  2740. </note>
  2741. <note default-x="250.07" default-y="-196.00" dynamics="141.11">
  2742. <chord/>
  2743. <pitch>
  2744. <step>C</step>
  2745. <alter>1</alter>
  2746. <octave>4</octave>
  2747. </pitch>
  2748. <duration>1</duration>
  2749. <voice>1</voice>
  2750. <type>eighth</type>
  2751. <stem>up</stem>
  2752. </note>
  2753. <note default-x="250.07" default-y="-176.00" dynamics="141.11">
  2754. <chord/>
  2755. <pitch>
  2756. <step>G</step>
  2757. <octave>4</octave>
  2758. </pitch>
  2759. <duration>1</duration>
  2760. <voice>1</voice>
  2761. <type>eighth</type>
  2762. <stem>up</stem>
  2763. </note>
  2764. <note default-x="285.90" default-y="-206.00" dynamics="141.11">
  2765. <pitch>
  2766. <step>A</step>
  2767. <octave>3</octave>
  2768. </pitch>
  2769. <duration>1</duration>
  2770. <voice>1</voice>
  2771. <type>eighth</type>
  2772. <stem>up</stem>
  2773. <beam number="1">end</beam>
  2774. </note>
  2775. <note default-x="285.90" default-y="-196.00" dynamics="141.11">
  2776. <chord/>
  2777. <pitch>
  2778. <step>C</step>
  2779. <alter>1</alter>
  2780. <octave>4</octave>
  2781. </pitch>
  2782. <duration>1</duration>
  2783. <voice>1</voice>
  2784. <type>eighth</type>
  2785. <stem>up</stem>
  2786. </note>
  2787. <note default-x="285.90" default-y="-176.00" dynamics="141.11">
  2788. <chord/>
  2789. <pitch>
  2790. <step>G</step>
  2791. <octave>4</octave>
  2792. </pitch>
  2793. <duration>1</duration>
  2794. <voice>1</voice>
  2795. <type>eighth</type>
  2796. <stem>up</stem>
  2797. </note>
  2798. </measure>
  2799. <measure number="6" width="299.57">
  2800. <note>
  2801. <rest/>
  2802. <duration>1</duration>
  2803. <voice>1</voice>
  2804. <type>eighth</type>
  2805. </note>
  2806. <note default-x="59.64" default-y="-206.00" dynamics="141.11">
  2807. <pitch>
  2808. <step>A</step>
  2809. <octave>3</octave>
  2810. </pitch>
  2811. <duration>1</duration>
  2812. <voice>1</voice>
  2813. <type>eighth</type>
  2814. <stem>up</stem>
  2815. <beam number="1">begin</beam>
  2816. </note>
  2817. <note default-x="59.64" default-y="-191.00" dynamics="141.11">
  2818. <chord/>
  2819. <pitch>
  2820. <step>D</step>
  2821. <octave>4</octave>
  2822. </pitch>
  2823. <duration>1</duration>
  2824. <voice>1</voice>
  2825. <type>eighth</type>
  2826. <stem>up</stem>
  2827. </note>
  2828. <note default-x="59.64" default-y="-181.00" dynamics="141.11">
  2829. <chord/>
  2830. <pitch>
  2831. <step>F</step>
  2832. <alter>1</alter>
  2833. <octave>4</octave>
  2834. </pitch>
  2835. <duration>1</duration>
  2836. <voice>1</voice>
  2837. <type>eighth</type>
  2838. <stem>up</stem>
  2839. </note>
  2840. <note default-x="93.69" default-y="-206.00" dynamics="141.11">
  2841. <pitch>
  2842. <step>A</step>
  2843. <octave>3</octave>
  2844. </pitch>
  2845. <duration>1</duration>
  2846. <voice>1</voice>
  2847. <type>eighth</type>
  2848. <stem>up</stem>
  2849. <beam number="1">continue</beam>
  2850. </note>
  2851. <note default-x="93.69" default-y="-191.00" dynamics="141.11">
  2852. <chord/>
  2853. <pitch>
  2854. <step>D</step>
  2855. <octave>4</octave>
  2856. </pitch>
  2857. <duration>1</duration>
  2858. <voice>1</voice>
  2859. <type>eighth</type>
  2860. <stem>up</stem>
  2861. </note>
  2862. <note default-x="93.69" default-y="-181.00" dynamics="141.11">
  2863. <chord/>
  2864. <pitch>
  2865. <step>F</step>
  2866. <alter>1</alter>
  2867. <octave>4</octave>
  2868. </pitch>
  2869. <duration>1</duration>
  2870. <voice>1</voice>
  2871. <type>eighth</type>
  2872. <stem>up</stem>
  2873. </note>
  2874. <note default-x="127.73" default-y="-206.00" dynamics="141.11">
  2875. <pitch>
  2876. <step>A</step>
  2877. <octave>3</octave>
  2878. </pitch>
  2879. <duration>1</duration>
  2880. <voice>1</voice>
  2881. <type>eighth</type>
  2882. <stem>up</stem>
  2883. <beam number="1">end</beam>
  2884. </note>
  2885. <note default-x="127.73" default-y="-191.00" dynamics="141.11">
  2886. <chord/>
  2887. <pitch>
  2888. <step>D</step>
  2889. <octave>4</octave>
  2890. </pitch>
  2891. <duration>1</duration>
  2892. <voice>1</voice>
  2893. <type>eighth</type>
  2894. <stem>up</stem>
  2895. </note>
  2896. <note default-x="127.73" default-y="-181.00" dynamics="141.11">
  2897. <chord/>
  2898. <pitch>
  2899. <step>F</step>
  2900. <alter>1</alter>
  2901. <octave>4</octave>
  2902. </pitch>
  2903. <duration>1</duration>
  2904. <voice>1</voice>
  2905. <type>eighth</type>
  2906. <stem>up</stem>
  2907. </note>
  2908. <note default-x="161.78" default-y="-206.00" dynamics="141.11">
  2909. <pitch>
  2910. <step>A</step>
  2911. <octave>3</octave>
  2912. </pitch>
  2913. <duration>1</duration>
  2914. <voice>1</voice>
  2915. <type>eighth</type>
  2916. <stem>up</stem>
  2917. <beam number="1">begin</beam>
  2918. </note>
  2919. <note default-x="161.78" default-y="-191.00" dynamics="141.11">
  2920. <chord/>
  2921. <pitch>
  2922. <step>D</step>
  2923. <octave>4</octave>
  2924. </pitch>
  2925. <duration>1</duration>
  2926. <voice>1</voice>
  2927. <type>eighth</type>
  2928. <stem>up</stem>
  2929. </note>
  2930. <note default-x="161.78" default-y="-181.00" dynamics="141.11">
  2931. <chord/>
  2932. <pitch>
  2933. <step>F</step>
  2934. <alter>1</alter>
  2935. <octave>4</octave>
  2936. </pitch>
  2937. <duration>1</duration>
  2938. <voice>1</voice>
  2939. <type>eighth</type>
  2940. <stem>up</stem>
  2941. </note>
  2942. <note default-x="195.83" default-y="-206.00" dynamics="141.11">
  2943. <pitch>
  2944. <step>A</step>
  2945. <octave>3</octave>
  2946. </pitch>
  2947. <duration>1</duration>
  2948. <voice>1</voice>
  2949. <type>eighth</type>
  2950. <stem>up</stem>
  2951. <beam number="1">continue</beam>
  2952. </note>
  2953. <note default-x="195.83" default-y="-191.00" dynamics="141.11">
  2954. <chord/>
  2955. <pitch>
  2956. <step>D</step>
  2957. <octave>4</octave>
  2958. </pitch>
  2959. <duration>1</duration>
  2960. <voice>1</voice>
  2961. <type>eighth</type>
  2962. <stem>up</stem>
  2963. </note>
  2964. <note default-x="195.83" default-y="-181.00" dynamics="141.11">
  2965. <chord/>
  2966. <pitch>
  2967. <step>F</step>
  2968. <alter>1</alter>
  2969. <octave>4</octave>
  2970. </pitch>
  2971. <duration>1</duration>
  2972. <voice>1</voice>
  2973. <type>eighth</type>
  2974. <stem>up</stem>
  2975. </note>
  2976. <note default-x="229.87" default-y="-206.00" dynamics="141.11">
  2977. <pitch>
  2978. <step>A</step>
  2979. <octave>3</octave>
  2980. </pitch>
  2981. <duration>1</duration>
  2982. <voice>1</voice>
  2983. <type>eighth</type>
  2984. <stem>up</stem>
  2985. <beam number="1">continue</beam>
  2986. </note>
  2987. <note default-x="229.87" default-y="-191.00" dynamics="141.11">
  2988. <chord/>
  2989. <pitch>
  2990. <step>D</step>
  2991. <octave>4</octave>
  2992. </pitch>
  2993. <duration>1</duration>
  2994. <voice>1</voice>
  2995. <type>eighth</type>
  2996. <stem>up</stem>
  2997. </note>
  2998. <note default-x="229.87" default-y="-181.00" dynamics="141.11">
  2999. <chord/>
  3000. <pitch>
  3001. <step>F</step>
  3002. <alter>1</alter>
  3003. <octave>4</octave>
  3004. </pitch>
  3005. <duration>1</duration>
  3006. <voice>1</voice>
  3007. <type>eighth</type>
  3008. <stem>up</stem>
  3009. </note>
  3010. <note default-x="263.92" default-y="-206.00" dynamics="141.11">
  3011. <pitch>
  3012. <step>A</step>
  3013. <octave>3</octave>
  3014. </pitch>
  3015. <duration>1</duration>
  3016. <voice>1</voice>
  3017. <type>eighth</type>
  3018. <stem>up</stem>
  3019. <beam number="1">end</beam>
  3020. </note>
  3021. <note default-x="263.92" default-y="-191.00" dynamics="141.11">
  3022. <chord/>
  3023. <pitch>
  3024. <step>D</step>
  3025. <octave>4</octave>
  3026. </pitch>
  3027. <duration>1</duration>
  3028. <voice>1</voice>
  3029. <type>eighth</type>
  3030. <stem>up</stem>
  3031. </note>
  3032. <note default-x="263.92" default-y="-181.00" dynamics="141.11">
  3033. <chord/>
  3034. <pitch>
  3035. <step>F</step>
  3036. <alter>1</alter>
  3037. <octave>4</octave>
  3038. </pitch>
  3039. <duration>1</duration>
  3040. <voice>1</voice>
  3041. <type>eighth</type>
  3042. <stem>up</stem>
  3043. </note>
  3044. </measure>
  3045. <measure number="7" width="353.44">
  3046. <print new-system="yes">
  3047. <staff-layout number="1">
  3048. <staff-distance>106.00</staff-distance>
  3049. </staff-layout>
  3050. </print>
  3051. <note default-x="78.21" default-y="-206.00" dynamics="141.11">
  3052. <pitch>
  3053. <step>A</step>
  3054. <octave>3</octave>
  3055. </pitch>
  3056. <duration>1</duration>
  3057. <voice>1</voice>
  3058. <type>eighth</type>
  3059. <stem>up</stem>
  3060. <beam number="1">begin</beam>
  3061. </note>
  3062. <note default-x="78.21" default-y="-191.00" dynamics="141.11">
  3063. <chord/>
  3064. <pitch>
  3065. <step>D</step>
  3066. <octave>4</octave>
  3067. </pitch>
  3068. <duration>1</duration>
  3069. <voice>1</voice>
  3070. <type>eighth</type>
  3071. <stem>up</stem>
  3072. </note>
  3073. <note default-x="78.21" default-y="-171.00" dynamics="141.11">
  3074. <chord/>
  3075. <pitch>
  3076. <step>A</step>
  3077. <octave>4</octave>
  3078. </pitch>
  3079. <duration>1</duration>
  3080. <voice>1</voice>
  3081. <type>eighth</type>
  3082. <stem>up</stem>
  3083. </note>
  3084. <note default-x="112.41" default-y="-206.00" dynamics="141.11">
  3085. <pitch>
  3086. <step>A</step>
  3087. <octave>3</octave>
  3088. </pitch>
  3089. <duration>1</duration>
  3090. <voice>1</voice>
  3091. <type>eighth</type>
  3092. <stem>up</stem>
  3093. <beam number="1">continue</beam>
  3094. </note>
  3095. <note default-x="112.41" default-y="-191.00" dynamics="141.11">
  3096. <chord/>
  3097. <pitch>
  3098. <step>D</step>
  3099. <octave>4</octave>
  3100. </pitch>
  3101. <duration>1</duration>
  3102. <voice>1</voice>
  3103. <type>eighth</type>
  3104. <stem>up</stem>
  3105. </note>
  3106. <note default-x="112.41" default-y="-171.00" dynamics="141.11">
  3107. <chord/>
  3108. <pitch>
  3109. <step>A</step>
  3110. <octave>4</octave>
  3111. </pitch>
  3112. <duration>1</duration>
  3113. <voice>1</voice>
  3114. <type>eighth</type>
  3115. <stem>up</stem>
  3116. </note>
  3117. <note default-x="146.61" default-y="-206.00" dynamics="141.11">
  3118. <pitch>
  3119. <step>A</step>
  3120. <octave>3</octave>
  3121. </pitch>
  3122. <duration>1</duration>
  3123. <voice>1</voice>
  3124. <type>eighth</type>
  3125. <stem>up</stem>
  3126. <beam number="1">continue</beam>
  3127. </note>
  3128. <note default-x="146.61" default-y="-191.00" dynamics="141.11">
  3129. <chord/>
  3130. <pitch>
  3131. <step>D</step>
  3132. <octave>4</octave>
  3133. </pitch>
  3134. <duration>1</duration>
  3135. <voice>1</voice>
  3136. <type>eighth</type>
  3137. <stem>up</stem>
  3138. </note>
  3139. <note default-x="146.61" default-y="-171.00" dynamics="141.11">
  3140. <chord/>
  3141. <pitch>
  3142. <step>A</step>
  3143. <octave>4</octave>
  3144. </pitch>
  3145. <duration>1</duration>
  3146. <voice>1</voice>
  3147. <type>eighth</type>
  3148. <stem>up</stem>
  3149. </note>
  3150. <note default-x="180.82" default-y="-206.00" dynamics="141.11">
  3151. <pitch>
  3152. <step>A</step>
  3153. <octave>3</octave>
  3154. </pitch>
  3155. <duration>1</duration>
  3156. <voice>1</voice>
  3157. <type>eighth</type>
  3158. <stem>up</stem>
  3159. <beam number="1">end</beam>
  3160. </note>
  3161. <note default-x="180.82" default-y="-191.00" dynamics="141.11">
  3162. <chord/>
  3163. <pitch>
  3164. <step>D</step>
  3165. <octave>4</octave>
  3166. </pitch>
  3167. <duration>1</duration>
  3168. <voice>1</voice>
  3169. <type>eighth</type>
  3170. <stem>up</stem>
  3171. </note>
  3172. <note default-x="180.82" default-y="-171.00" dynamics="141.11">
  3173. <chord/>
  3174. <pitch>
  3175. <step>A</step>
  3176. <octave>4</octave>
  3177. </pitch>
  3178. <duration>1</duration>
  3179. <voice>1</voice>
  3180. <type>eighth</type>
  3181. <stem>up</stem>
  3182. </note>
  3183. <note default-x="215.02" default-y="-201.00" dynamics="141.11">
  3184. <pitch>
  3185. <step>B</step>
  3186. <octave>3</octave>
  3187. </pitch>
  3188. <duration>1</duration>
  3189. <voice>1</voice>
  3190. <type>eighth</type>
  3191. <stem>up</stem>
  3192. <beam number="1">begin</beam>
  3193. </note>
  3194. <note default-x="215.02" default-y="-191.00" dynamics="141.11">
  3195. <chord/>
  3196. <pitch>
  3197. <step>D</step>
  3198. <octave>4</octave>
  3199. </pitch>
  3200. <duration>1</duration>
  3201. <voice>1</voice>
  3202. <type>eighth</type>
  3203. <stem>up</stem>
  3204. </note>
  3205. <note default-x="215.02" default-y="-166.00" dynamics="141.11">
  3206. <chord/>
  3207. <pitch>
  3208. <step>B</step>
  3209. <octave>4</octave>
  3210. </pitch>
  3211. <duration>1</duration>
  3212. <voice>1</voice>
  3213. <type>eighth</type>
  3214. <stem>up</stem>
  3215. </note>
  3216. <note default-x="249.23" default-y="-201.00" dynamics="141.11">
  3217. <pitch>
  3218. <step>B</step>
  3219. <octave>3</octave>
  3220. </pitch>
  3221. <duration>1</duration>
  3222. <voice>1</voice>
  3223. <type>eighth</type>
  3224. <stem>up</stem>
  3225. <beam number="1">continue</beam>
  3226. </note>
  3227. <note default-x="249.23" default-y="-191.00" dynamics="141.11">
  3228. <chord/>
  3229. <pitch>
  3230. <step>D</step>
  3231. <octave>4</octave>
  3232. </pitch>
  3233. <duration>1</duration>
  3234. <voice>1</voice>
  3235. <type>eighth</type>
  3236. <stem>up</stem>
  3237. </note>
  3238. <note default-x="249.23" default-y="-166.00" dynamics="141.11">
  3239. <chord/>
  3240. <pitch>
  3241. <step>B</step>
  3242. <octave>4</octave>
  3243. </pitch>
  3244. <duration>1</duration>
  3245. <voice>1</voice>
  3246. <type>eighth</type>
  3247. <stem>up</stem>
  3248. </note>
  3249. <note default-x="283.43" default-y="-201.00" dynamics="141.11">
  3250. <pitch>
  3251. <step>B</step>
  3252. <octave>3</octave>
  3253. </pitch>
  3254. <duration>1</duration>
  3255. <voice>1</voice>
  3256. <type>eighth</type>
  3257. <stem>up</stem>
  3258. <beam number="1">continue</beam>
  3259. </note>
  3260. <note default-x="283.43" default-y="-191.00" dynamics="141.11">
  3261. <chord/>
  3262. <pitch>
  3263. <step>D</step>
  3264. <octave>4</octave>
  3265. </pitch>
  3266. <duration>1</duration>
  3267. <voice>1</voice>
  3268. <type>eighth</type>
  3269. <stem>up</stem>
  3270. </note>
  3271. <note default-x="283.43" default-y="-166.00" dynamics="141.11">
  3272. <chord/>
  3273. <pitch>
  3274. <step>B</step>
  3275. <octave>4</octave>
  3276. </pitch>
  3277. <duration>1</duration>
  3278. <voice>1</voice>
  3279. <type>eighth</type>
  3280. <stem>up</stem>
  3281. </note>
  3282. <note default-x="317.64" default-y="-201.00" dynamics="141.11">
  3283. <pitch>
  3284. <step>B</step>
  3285. <octave>3</octave>
  3286. </pitch>
  3287. <duration>1</duration>
  3288. <voice>1</voice>
  3289. <type>eighth</type>
  3290. <stem>up</stem>
  3291. <beam number="1">end</beam>
  3292. </note>
  3293. <note default-x="317.64" default-y="-191.00" dynamics="141.11">
  3294. <chord/>
  3295. <pitch>
  3296. <step>D</step>
  3297. <octave>4</octave>
  3298. </pitch>
  3299. <duration>1</duration>
  3300. <voice>1</voice>
  3301. <type>eighth</type>
  3302. <stem>up</stem>
  3303. </note>
  3304. <note default-x="317.64" default-y="-166.00" dynamics="141.11">
  3305. <chord/>
  3306. <pitch>
  3307. <step>B</step>
  3308. <octave>4</octave>
  3309. </pitch>
  3310. <duration>1</duration>
  3311. <voice>1</voice>
  3312. <type>eighth</type>
  3313. <stem>up</stem>
  3314. </note>
  3315. </measure>
  3316. <measure number="8" width="297.40">
  3317. <note>
  3318. <rest/>
  3319. <duration>1</duration>
  3320. <voice>1</voice>
  3321. <type>eighth</type>
  3322. </note>
  3323. <note default-x="53.17" default-y="-221.00" dynamics="141.11">
  3324. <pitch>
  3325. <step>E</step>
  3326. <octave>3</octave>
  3327. </pitch>
  3328. <duration>1</duration>
  3329. <voice>1</voice>
  3330. <type>eighth</type>
  3331. <stem>up</stem>
  3332. <beam number="1">begin</beam>
  3333. </note>
  3334. <note default-x="53.17" default-y="-211.00" dynamics="141.11">
  3335. <chord/>
  3336. <pitch>
  3337. <step>G</step>
  3338. <octave>3</octave>
  3339. </pitch>
  3340. <duration>1</duration>
  3341. <voice>1</voice>
  3342. <type>eighth</type>
  3343. <stem>up</stem>
  3344. </note>
  3345. <note default-x="53.17" default-y="-196.00" dynamics="141.11">
  3346. <chord/>
  3347. <pitch>
  3348. <step>C</step>
  3349. <alter>1</alter>
  3350. <octave>4</octave>
  3351. </pitch>
  3352. <duration>1</duration>
  3353. <voice>1</voice>
  3354. <type>eighth</type>
  3355. <stem>up</stem>
  3356. </note>
  3357. <note default-x="87.49" default-y="-221.00" dynamics="141.11">
  3358. <pitch>
  3359. <step>E</step>
  3360. <octave>3</octave>
  3361. </pitch>
  3362. <duration>1</duration>
  3363. <voice>1</voice>
  3364. <type>eighth</type>
  3365. <stem>up</stem>
  3366. <beam number="1">continue</beam>
  3367. </note>
  3368. <note default-x="87.49" default-y="-211.00" dynamics="141.11">
  3369. <chord/>
  3370. <pitch>
  3371. <step>G</step>
  3372. <octave>3</octave>
  3373. </pitch>
  3374. <duration>1</duration>
  3375. <voice>1</voice>
  3376. <type>eighth</type>
  3377. <stem>up</stem>
  3378. </note>
  3379. <note default-x="87.49" default-y="-196.00" dynamics="141.11">
  3380. <chord/>
  3381. <pitch>
  3382. <step>C</step>
  3383. <alter>1</alter>
  3384. <octave>4</octave>
  3385. </pitch>
  3386. <duration>1</duration>
  3387. <voice>1</voice>
  3388. <type>eighth</type>
  3389. <stem>up</stem>
  3390. </note>
  3391. <note default-x="121.81" default-y="-221.00" dynamics="141.11">
  3392. <pitch>
  3393. <step>E</step>
  3394. <octave>3</octave>
  3395. </pitch>
  3396. <duration>1</duration>
  3397. <voice>1</voice>
  3398. <type>eighth</type>
  3399. <stem>up</stem>
  3400. <beam number="1">end</beam>
  3401. </note>
  3402. <note default-x="121.81" default-y="-211.00" dynamics="141.11">
  3403. <chord/>
  3404. <pitch>
  3405. <step>G</step>
  3406. <octave>3</octave>
  3407. </pitch>
  3408. <duration>1</duration>
  3409. <voice>1</voice>
  3410. <type>eighth</type>
  3411. <stem>up</stem>
  3412. </note>
  3413. <note default-x="121.81" default-y="-196.00" dynamics="141.11">
  3414. <chord/>
  3415. <pitch>
  3416. <step>C</step>
  3417. <alter>1</alter>
  3418. <octave>4</octave>
  3419. </pitch>
  3420. <duration>1</duration>
  3421. <voice>1</voice>
  3422. <type>eighth</type>
  3423. <stem>up</stem>
  3424. </note>
  3425. <note>
  3426. <rest/>
  3427. <duration>1</duration>
  3428. <voice>1</voice>
  3429. <type>eighth</type>
  3430. </note>
  3431. <note default-x="192.85" default-y="-226.00" dynamics="141.11">
  3432. <pitch>
  3433. <step>D</step>
  3434. <octave>3</octave>
  3435. </pitch>
  3436. <duration>1</duration>
  3437. <voice>1</voice>
  3438. <type>eighth</type>
  3439. <stem>up</stem>
  3440. <beam number="1">begin</beam>
  3441. </note>
  3442. <note default-x="192.85" default-y="-216.00" dynamics="141.11">
  3443. <chord/>
  3444. <pitch>
  3445. <step>F</step>
  3446. <alter>1</alter>
  3447. <octave>3</octave>
  3448. </pitch>
  3449. <duration>1</duration>
  3450. <voice>1</voice>
  3451. <type>eighth</type>
  3452. <stem>up</stem>
  3453. </note>
  3454. <note default-x="192.85" default-y="-191.00" dynamics="141.11">
  3455. <chord/>
  3456. <pitch>
  3457. <step>D</step>
  3458. <octave>4</octave>
  3459. </pitch>
  3460. <duration>1</duration>
  3461. <voice>1</voice>
  3462. <type>eighth</type>
  3463. <stem>up</stem>
  3464. </note>
  3465. <note default-x="227.16" default-y="-226.00" dynamics="141.11">
  3466. <pitch>
  3467. <step>D</step>
  3468. <octave>3</octave>
  3469. </pitch>
  3470. <duration>1</duration>
  3471. <voice>1</voice>
  3472. <type>eighth</type>
  3473. <stem>up</stem>
  3474. <beam number="1">continue</beam>
  3475. </note>
  3476. <note default-x="227.16" default-y="-216.00" dynamics="141.11">
  3477. <chord/>
  3478. <pitch>
  3479. <step>F</step>
  3480. <alter>1</alter>
  3481. <octave>3</octave>
  3482. </pitch>
  3483. <duration>1</duration>
  3484. <voice>1</voice>
  3485. <type>eighth</type>
  3486. <stem>up</stem>
  3487. </note>
  3488. <note default-x="227.16" default-y="-191.00" dynamics="141.11">
  3489. <chord/>
  3490. <pitch>
  3491. <step>D</step>
  3492. <octave>4</octave>
  3493. </pitch>
  3494. <duration>1</duration>
  3495. <voice>1</voice>
  3496. <type>eighth</type>
  3497. <stem>up</stem>
  3498. </note>
  3499. <note default-x="261.48" default-y="-226.00" dynamics="141.11">
  3500. <pitch>
  3501. <step>D</step>
  3502. <octave>3</octave>
  3503. </pitch>
  3504. <duration>1</duration>
  3505. <voice>1</voice>
  3506. <type>eighth</type>
  3507. <stem>up</stem>
  3508. <beam number="1">end</beam>
  3509. </note>
  3510. <note default-x="261.48" default-y="-216.00" dynamics="141.11">
  3511. <chord/>
  3512. <pitch>
  3513. <step>F</step>
  3514. <alter>1</alter>
  3515. <octave>3</octave>
  3516. </pitch>
  3517. <duration>1</duration>
  3518. <voice>1</voice>
  3519. <type>eighth</type>
  3520. <stem>up</stem>
  3521. </note>
  3522. <note default-x="261.48" default-y="-191.00" dynamics="141.11">
  3523. <chord/>
  3524. <pitch>
  3525. <step>D</step>
  3526. <octave>4</octave>
  3527. </pitch>
  3528. <duration>1</duration>
  3529. <voice>1</voice>
  3530. <type>eighth</type>
  3531. <stem>up</stem>
  3532. </note>
  3533. </measure>
  3534. <measure number="9" width="348.10">
  3535. <note>
  3536. <rest/>
  3537. <duration>1</duration>
  3538. <voice>1</voice>
  3539. <type>eighth</type>
  3540. </note>
  3541. <note default-x="62.14" default-y="-211.00" dynamics="141.11">
  3542. <pitch>
  3543. <step>G</step>
  3544. <octave>3</octave>
  3545. </pitch>
  3546. <duration>1</duration>
  3547. <voice>1</voice>
  3548. <type>eighth</type>
  3549. <stem>up</stem>
  3550. <beam number="1">begin</beam>
  3551. </note>
  3552. <note default-x="74.00" default-y="-206.00" dynamics="141.11">
  3553. <chord/>
  3554. <pitch>
  3555. <step>A</step>
  3556. <octave>3</octave>
  3557. </pitch>
  3558. <duration>1</duration>
  3559. <voice>1</voice>
  3560. <type>eighth</type>
  3561. <stem>up</stem>
  3562. </note>
  3563. <note default-x="62.14" default-y="-186.00" dynamics="141.11">
  3564. <chord/>
  3565. <pitch>
  3566. <step>E</step>
  3567. <octave>4</octave>
  3568. </pitch>
  3569. <duration>1</duration>
  3570. <voice>1</voice>
  3571. <type>eighth</type>
  3572. <stem>up</stem>
  3573. </note>
  3574. <note default-x="102.76" default-y="-211.00" dynamics="141.11">
  3575. <pitch>
  3576. <step>G</step>
  3577. <octave>3</octave>
  3578. </pitch>
  3579. <duration>1</duration>
  3580. <voice>1</voice>
  3581. <type>eighth</type>
  3582. <stem>up</stem>
  3583. <beam number="1">continue</beam>
  3584. </note>
  3585. <note default-x="114.63" default-y="-206.00" dynamics="141.11">
  3586. <chord/>
  3587. <pitch>
  3588. <step>A</step>
  3589. <octave>3</octave>
  3590. </pitch>
  3591. <duration>1</duration>
  3592. <voice>1</voice>
  3593. <type>eighth</type>
  3594. <stem>up</stem>
  3595. </note>
  3596. <note default-x="102.76" default-y="-186.00" dynamics="141.11">
  3597. <chord/>
  3598. <pitch>
  3599. <step>E</step>
  3600. <octave>4</octave>
  3601. </pitch>
  3602. <duration>1</duration>
  3603. <voice>1</voice>
  3604. <type>eighth</type>
  3605. <stem>up</stem>
  3606. </note>
  3607. <note default-x="143.38" default-y="-211.00" dynamics="141.11">
  3608. <pitch>
  3609. <step>G</step>
  3610. <octave>3</octave>
  3611. </pitch>
  3612. <duration>1</duration>
  3613. <voice>1</voice>
  3614. <type>eighth</type>
  3615. <stem>up</stem>
  3616. <beam number="1">end</beam>
  3617. </note>
  3618. <note default-x="155.25" default-y="-206.00" dynamics="141.11">
  3619. <chord/>
  3620. <pitch>
  3621. <step>A</step>
  3622. <octave>3</octave>
  3623. </pitch>
  3624. <duration>1</duration>
  3625. <voice>1</voice>
  3626. <type>eighth</type>
  3627. <stem>up</stem>
  3628. </note>
  3629. <note default-x="143.38" default-y="-186.00" dynamics="141.11">
  3630. <chord/>
  3631. <pitch>
  3632. <step>E</step>
  3633. <octave>4</octave>
  3634. </pitch>
  3635. <duration>1</duration>
  3636. <voice>1</voice>
  3637. <type>eighth</type>
  3638. <stem>up</stem>
  3639. </note>
  3640. <note>
  3641. <rest/>
  3642. <duration>1</duration>
  3643. <voice>1</voice>
  3644. <type>eighth</type>
  3645. </note>
  3646. <note default-x="224.63" default-y="-216.00" dynamics="141.11">
  3647. <pitch>
  3648. <step>F</step>
  3649. <alter>1</alter>
  3650. <octave>3</octave>
  3651. </pitch>
  3652. <duration>1</duration>
  3653. <voice>1</voice>
  3654. <type>eighth</type>
  3655. <stem>up</stem>
  3656. <beam number="1">begin</beam>
  3657. </note>
  3658. <note default-x="224.63" default-y="-206.00" dynamics="141.11">
  3659. <chord/>
  3660. <pitch>
  3661. <step>A</step>
  3662. <octave>3</octave>
  3663. </pitch>
  3664. <duration>1</duration>
  3665. <voice>1</voice>
  3666. <type>eighth</type>
  3667. <stem>up</stem>
  3668. </note>
  3669. <note default-x="224.63" default-y="-181.00" dynamics="141.11">
  3670. <chord/>
  3671. <pitch>
  3672. <step>F</step>
  3673. <alter>1</alter>
  3674. <octave>4</octave>
  3675. </pitch>
  3676. <duration>1</duration>
  3677. <voice>1</voice>
  3678. <type>eighth</type>
  3679. <stem>up</stem>
  3680. </note>
  3681. <note default-x="265.26" default-y="-216.00" dynamics="141.11">
  3682. <pitch>
  3683. <step>F</step>
  3684. <alter>1</alter>
  3685. <octave>3</octave>
  3686. </pitch>
  3687. <duration>1</duration>
  3688. <voice>1</voice>
  3689. <type>eighth</type>
  3690. <stem>up</stem>
  3691. <beam number="1">continue</beam>
  3692. </note>
  3693. <note default-x="265.26" default-y="-206.00" dynamics="141.11">
  3694. <chord/>
  3695. <pitch>
  3696. <step>A</step>
  3697. <octave>3</octave>
  3698. </pitch>
  3699. <duration>1</duration>
  3700. <voice>1</voice>
  3701. <type>eighth</type>
  3702. <stem>up</stem>
  3703. </note>
  3704. <note default-x="265.26" default-y="-181.00" dynamics="141.11">
  3705. <chord/>
  3706. <pitch>
  3707. <step>F</step>
  3708. <alter>1</alter>
  3709. <octave>4</octave>
  3710. </pitch>
  3711. <duration>1</duration>
  3712. <voice>1</voice>
  3713. <type>eighth</type>
  3714. <stem>up</stem>
  3715. </note>
  3716. <note default-x="305.88" default-y="-216.00" dynamics="141.11">
  3717. <pitch>
  3718. <step>F</step>
  3719. <alter>1</alter>
  3720. <octave>3</octave>
  3721. </pitch>
  3722. <duration>1</duration>
  3723. <voice>1</voice>
  3724. <type>eighth</type>
  3725. <stem>up</stem>
  3726. <beam number="1">end</beam>
  3727. </note>
  3728. <note default-x="305.88" default-y="-206.00" dynamics="141.11">
  3729. <chord/>
  3730. <pitch>
  3731. <step>A</step>
  3732. <octave>3</octave>
  3733. </pitch>
  3734. <duration>1</duration>
  3735. <voice>1</voice>
  3736. <type>eighth</type>
  3737. <stem>up</stem>
  3738. </note>
  3739. <note default-x="305.88" default-y="-181.00" dynamics="141.11">
  3740. <chord/>
  3741. <pitch>
  3742. <step>F</step>
  3743. <alter>1</alter>
  3744. <octave>4</octave>
  3745. </pitch>
  3746. <duration>1</duration>
  3747. <voice>1</voice>
  3748. <type>eighth</type>
  3749. <stem>up</stem>
  3750. </note>
  3751. </measure>
  3752. <measure number="10" width="367.04">
  3753. <print new-page="yes">
  3754. <staff-layout number="1">
  3755. <staff-distance>106.00</staff-distance>
  3756. </staff-layout>
  3757. </print>
  3758. <note default-x="77.27" default-y="-206.00" dynamics="141.11">
  3759. <pitch>
  3760. <step>A</step>
  3761. <octave>3</octave>
  3762. </pitch>
  3763. <duration>1</duration>
  3764. <voice>1</voice>
  3765. <type>eighth</type>
  3766. <stem>up</stem>
  3767. <beam number="1">begin</beam>
  3768. </note>
  3769. <note default-x="77.27" default-y="-196.00" dynamics="141.11">
  3770. <chord/>
  3771. <pitch>
  3772. <step>C</step>
  3773. <alter>1</alter>
  3774. <octave>4</octave>
  3775. </pitch>
  3776. <duration>1</duration>
  3777. <voice>1</voice>
  3778. <type>eighth</type>
  3779. <stem>up</stem>
  3780. </note>
  3781. <note default-x="77.27" default-y="-186.00" dynamics="141.11">
  3782. <chord/>
  3783. <pitch>
  3784. <step>E</step>
  3785. <octave>4</octave>
  3786. </pitch>
  3787. <duration>1</duration>
  3788. <voice>1</voice>
  3789. <type>eighth</type>
  3790. <stem>up</stem>
  3791. </note>
  3792. <note default-x="113.29" default-y="-206.00" dynamics="141.11">
  3793. <pitch>
  3794. <step>A</step>
  3795. <octave>3</octave>
  3796. </pitch>
  3797. <duration>1</duration>
  3798. <voice>1</voice>
  3799. <type>eighth</type>
  3800. <stem>up</stem>
  3801. <beam number="1">continue</beam>
  3802. </note>
  3803. <note default-x="113.29" default-y="-196.00" dynamics="141.11">
  3804. <chord/>
  3805. <pitch>
  3806. <step>C</step>
  3807. <alter>1</alter>
  3808. <octave>4</octave>
  3809. </pitch>
  3810. <duration>1</duration>
  3811. <voice>1</voice>
  3812. <type>eighth</type>
  3813. <stem>up</stem>
  3814. </note>
  3815. <note default-x="113.29" default-y="-186.00" dynamics="141.11">
  3816. <chord/>
  3817. <pitch>
  3818. <step>E</step>
  3819. <octave>4</octave>
  3820. </pitch>
  3821. <duration>1</duration>
  3822. <voice>1</voice>
  3823. <type>eighth</type>
  3824. <stem>up</stem>
  3825. </note>
  3826. <note default-x="149.31" default-y="-206.00" dynamics="141.11">
  3827. <pitch>
  3828. <step>A</step>
  3829. <octave>3</octave>
  3830. </pitch>
  3831. <duration>1</duration>
  3832. <voice>1</voice>
  3833. <type>eighth</type>
  3834. <stem>up</stem>
  3835. <beam number="1">continue</beam>
  3836. </note>
  3837. <note default-x="149.31" default-y="-196.00" dynamics="141.11">
  3838. <chord/>
  3839. <pitch>
  3840. <step>C</step>
  3841. <alter>1</alter>
  3842. <octave>4</octave>
  3843. </pitch>
  3844. <duration>1</duration>
  3845. <voice>1</voice>
  3846. <type>eighth</type>
  3847. <stem>up</stem>
  3848. </note>
  3849. <note default-x="149.31" default-y="-171.00" dynamics="141.11">
  3850. <chord/>
  3851. <pitch>
  3852. <step>A</step>
  3853. <octave>4</octave>
  3854. </pitch>
  3855. <duration>1</duration>
  3856. <voice>1</voice>
  3857. <type>eighth</type>
  3858. <stem>up</stem>
  3859. </note>
  3860. <note default-x="185.33" default-y="-206.00" dynamics="141.11">
  3861. <pitch>
  3862. <step>A</step>
  3863. <octave>3</octave>
  3864. </pitch>
  3865. <duration>1</duration>
  3866. <voice>1</voice>
  3867. <type>eighth</type>
  3868. <stem>up</stem>
  3869. <beam number="1">end</beam>
  3870. </note>
  3871. <note default-x="185.33" default-y="-196.00" dynamics="141.11">
  3872. <chord/>
  3873. <pitch>
  3874. <step>C</step>
  3875. <alter>1</alter>
  3876. <octave>4</octave>
  3877. </pitch>
  3878. <duration>1</duration>
  3879. <voice>1</voice>
  3880. <type>eighth</type>
  3881. <stem>up</stem>
  3882. </note>
  3883. <note default-x="185.33" default-y="-171.00" dynamics="141.11">
  3884. <chord/>
  3885. <pitch>
  3886. <step>A</step>
  3887. <octave>4</octave>
  3888. </pitch>
  3889. <duration>1</duration>
  3890. <voice>1</voice>
  3891. <type>eighth</type>
  3892. <stem>up</stem>
  3893. </note>
  3894. <note default-x="221.36" default-y="-201.00" dynamics="141.11">
  3895. <pitch>
  3896. <step>B</step>
  3897. <octave>3</octave>
  3898. </pitch>
  3899. <duration>1</duration>
  3900. <voice>1</voice>
  3901. <type>eighth</type>
  3902. <stem>up</stem>
  3903. <beam number="1">begin</beam>
  3904. </note>
  3905. <note default-x="221.36" default-y="-191.00" dynamics="141.11">
  3906. <chord/>
  3907. <pitch>
  3908. <step>D</step>
  3909. <octave>4</octave>
  3910. </pitch>
  3911. <duration>1</duration>
  3912. <voice>1</voice>
  3913. <type>eighth</type>
  3914. <stem>up</stem>
  3915. </note>
  3916. <note default-x="221.36" default-y="-171.00" dynamics="141.11">
  3917. <chord/>
  3918. <pitch>
  3919. <step>A</step>
  3920. <octave>4</octave>
  3921. </pitch>
  3922. <duration>1</duration>
  3923. <voice>1</voice>
  3924. <type>eighth</type>
  3925. <stem>up</stem>
  3926. </note>
  3927. <note default-x="257.38" default-y="-201.00" dynamics="141.11">
  3928. <pitch>
  3929. <step>B</step>
  3930. <octave>3</octave>
  3931. </pitch>
  3932. <duration>1</duration>
  3933. <voice>1</voice>
  3934. <type>eighth</type>
  3935. <stem>up</stem>
  3936. <beam number="1">continue</beam>
  3937. </note>
  3938. <note default-x="257.38" default-y="-191.00" dynamics="141.11">
  3939. <chord/>
  3940. <pitch>
  3941. <step>D</step>
  3942. <octave>4</octave>
  3943. </pitch>
  3944. <duration>1</duration>
  3945. <voice>1</voice>
  3946. <type>eighth</type>
  3947. <stem>up</stem>
  3948. </note>
  3949. <note default-x="257.38" default-y="-171.00" dynamics="141.11">
  3950. <chord/>
  3951. <pitch>
  3952. <step>A</step>
  3953. <octave>4</octave>
  3954. </pitch>
  3955. <duration>1</duration>
  3956. <voice>1</voice>
  3957. <type>eighth</type>
  3958. <stem>up</stem>
  3959. </note>
  3960. <note default-x="293.40" default-y="-196.00" dynamics="141.11">
  3961. <pitch>
  3962. <step>C</step>
  3963. <alter>1</alter>
  3964. <octave>4</octave>
  3965. </pitch>
  3966. <duration>1</duration>
  3967. <voice>1</voice>
  3968. <type>eighth</type>
  3969. <stem>up</stem>
  3970. <beam number="1">continue</beam>
  3971. </note>
  3972. <note default-x="293.40" default-y="-186.00" dynamics="141.11">
  3973. <chord/>
  3974. <pitch>
  3975. <step>E</step>
  3976. <octave>4</octave>
  3977. </pitch>
  3978. <duration>1</duration>
  3979. <voice>1</voice>
  3980. <type>eighth</type>
  3981. <stem>up</stem>
  3982. </note>
  3983. <note default-x="293.40" default-y="-171.00" dynamics="141.11">
  3984. <chord/>
  3985. <pitch>
  3986. <step>A</step>
  3987. <octave>4</octave>
  3988. </pitch>
  3989. <duration>1</duration>
  3990. <voice>1</voice>
  3991. <type>eighth</type>
  3992. <stem>up</stem>
  3993. </note>
  3994. <note default-x="329.42" default-y="-196.00" dynamics="141.11">
  3995. <pitch>
  3996. <step>C</step>
  3997. <alter>1</alter>
  3998. <octave>4</octave>
  3999. </pitch>
  4000. <duration>1</duration>
  4001. <voice>1</voice>
  4002. <type>eighth</type>
  4003. <stem>up</stem>
  4004. <beam number="1">end</beam>
  4005. </note>
  4006. <note default-x="329.42" default-y="-186.00" dynamics="141.11">
  4007. <chord/>
  4008. <pitch>
  4009. <step>E</step>
  4010. <octave>4</octave>
  4011. </pitch>
  4012. <duration>1</duration>
  4013. <voice>1</voice>
  4014. <type>eighth</type>
  4015. <stem>up</stem>
  4016. </note>
  4017. <note default-x="329.42" default-y="-171.00" dynamics="141.11">
  4018. <chord/>
  4019. <pitch>
  4020. <step>A</step>
  4021. <octave>4</octave>
  4022. </pitch>
  4023. <duration>1</duration>
  4024. <voice>1</voice>
  4025. <type>eighth</type>
  4026. <stem>up</stem>
  4027. </note>
  4028. </measure>
  4029. <measure number="11" width="315.23">
  4030. <note default-x="12.94" default-y="-191.00" dynamics="141.11">
  4031. <pitch>
  4032. <step>D</step>
  4033. <octave>4</octave>
  4034. </pitch>
  4035. <duration>1</duration>
  4036. <voice>1</voice>
  4037. <type>eighth</type>
  4038. <stem>up</stem>
  4039. <beam number="1">begin</beam>
  4040. </note>
  4041. <note default-x="12.94" default-y="-181.00" dynamics="141.11">
  4042. <chord/>
  4043. <pitch>
  4044. <step>F</step>
  4045. <alter>1</alter>
  4046. <octave>4</octave>
  4047. </pitch>
  4048. <duration>1</duration>
  4049. <voice>1</voice>
  4050. <type>eighth</type>
  4051. <stem>up</stem>
  4052. </note>
  4053. <note default-x="12.94" default-y="-171.00" dynamics="141.11">
  4054. <chord/>
  4055. <pitch>
  4056. <step>A</step>
  4057. <octave>4</octave>
  4058. </pitch>
  4059. <duration>1</duration>
  4060. <voice>1</voice>
  4061. <type>eighth</type>
  4062. <stem>up</stem>
  4063. </note>
  4064. <note default-x="50.38" default-y="-191.00" dynamics="141.11">
  4065. <pitch>
  4066. <step>D</step>
  4067. <octave>4</octave>
  4068. </pitch>
  4069. <duration>1</duration>
  4070. <voice>1</voice>
  4071. <type>eighth</type>
  4072. <stem>up</stem>
  4073. <beam number="1">continue</beam>
  4074. </note>
  4075. <note default-x="50.38" default-y="-181.00" dynamics="141.11">
  4076. <chord/>
  4077. <pitch>
  4078. <step>F</step>
  4079. <alter>1</alter>
  4080. <octave>4</octave>
  4081. </pitch>
  4082. <duration>1</duration>
  4083. <voice>1</voice>
  4084. <type>eighth</type>
  4085. <stem>up</stem>
  4086. </note>
  4087. <note default-x="50.38" default-y="-171.00" dynamics="141.11">
  4088. <chord/>
  4089. <pitch>
  4090. <step>A</step>
  4091. <octave>4</octave>
  4092. </pitch>
  4093. <duration>1</duration>
  4094. <voice>1</voice>
  4095. <type>eighth</type>
  4096. <stem>up</stem>
  4097. </note>
  4098. <note default-x="87.83" default-y="-191.00" dynamics="141.11">
  4099. <pitch>
  4100. <step>D</step>
  4101. <octave>4</octave>
  4102. </pitch>
  4103. <duration>1</duration>
  4104. <voice>1</voice>
  4105. <type>eighth</type>
  4106. <stem>up</stem>
  4107. <beam number="1">continue</beam>
  4108. </note>
  4109. <note default-x="87.83" default-y="-181.00" dynamics="141.11">
  4110. <chord/>
  4111. <pitch>
  4112. <step>F</step>
  4113. <alter>1</alter>
  4114. <octave>4</octave>
  4115. </pitch>
  4116. <duration>1</duration>
  4117. <voice>1</voice>
  4118. <type>eighth</type>
  4119. <stem>up</stem>
  4120. </note>
  4121. <note default-x="87.83" default-y="-171.00" dynamics="141.11">
  4122. <chord/>
  4123. <pitch>
  4124. <step>A</step>
  4125. <octave>4</octave>
  4126. </pitch>
  4127. <duration>1</duration>
  4128. <voice>1</voice>
  4129. <type>eighth</type>
  4130. <stem>up</stem>
  4131. </note>
  4132. <note default-x="125.27" default-y="-191.00" dynamics="141.11">
  4133. <pitch>
  4134. <step>D</step>
  4135. <octave>4</octave>
  4136. </pitch>
  4137. <duration>1</duration>
  4138. <voice>1</voice>
  4139. <type>eighth</type>
  4140. <stem>up</stem>
  4141. <beam number="1">end</beam>
  4142. </note>
  4143. <note default-x="125.27" default-y="-181.00" dynamics="141.11">
  4144. <chord/>
  4145. <pitch>
  4146. <step>F</step>
  4147. <alter>1</alter>
  4148. <octave>4</octave>
  4149. </pitch>
  4150. <duration>1</duration>
  4151. <voice>1</voice>
  4152. <type>eighth</type>
  4153. <stem>up</stem>
  4154. </note>
  4155. <note default-x="125.27" default-y="-171.00" dynamics="141.11">
  4156. <chord/>
  4157. <pitch>
  4158. <step>A</step>
  4159. <octave>4</octave>
  4160. </pitch>
  4161. <duration>1</duration>
  4162. <voice>1</voice>
  4163. <type>eighth</type>
  4164. <stem>up</stem>
  4165. </note>
  4166. <note default-x="162.72" default-y="-186.00" dynamics="141.11">
  4167. <pitch>
  4168. <step>E</step>
  4169. <octave>4</octave>
  4170. </pitch>
  4171. <duration>1</duration>
  4172. <voice>1</voice>
  4173. <type>eighth</type>
  4174. <stem>up</stem>
  4175. <beam number="1">begin</beam>
  4176. </note>
  4177. <note default-x="162.72" default-y="-176.00" dynamics="141.11">
  4178. <chord/>
  4179. <pitch>
  4180. <step>G</step>
  4181. <octave>4</octave>
  4182. </pitch>
  4183. <duration>1</duration>
  4184. <voice>1</voice>
  4185. <type>eighth</type>
  4186. <stem>up</stem>
  4187. </note>
  4188. <note default-x="174.58" default-y="-171.00" dynamics="141.11">
  4189. <chord/>
  4190. <pitch>
  4191. <step>A</step>
  4192. <octave>4</octave>
  4193. </pitch>
  4194. <duration>1</duration>
  4195. <voice>1</voice>
  4196. <type>eighth</type>
  4197. <stem>up</stem>
  4198. </note>
  4199. <note default-x="200.16" default-y="-186.00" dynamics="141.11">
  4200. <pitch>
  4201. <step>E</step>
  4202. <octave>4</octave>
  4203. </pitch>
  4204. <duration>1</duration>
  4205. <voice>1</voice>
  4206. <type>eighth</type>
  4207. <stem>up</stem>
  4208. <beam number="1">continue</beam>
  4209. </note>
  4210. <note default-x="200.16" default-y="-176.00" dynamics="141.11">
  4211. <chord/>
  4212. <pitch>
  4213. <step>G</step>
  4214. <octave>4</octave>
  4215. </pitch>
  4216. <duration>1</duration>
  4217. <voice>1</voice>
  4218. <type>eighth</type>
  4219. <stem>up</stem>
  4220. </note>
  4221. <note default-x="212.03" default-y="-171.00" dynamics="141.11">
  4222. <chord/>
  4223. <pitch>
  4224. <step>A</step>
  4225. <octave>4</octave>
  4226. </pitch>
  4227. <duration>1</duration>
  4228. <voice>1</voice>
  4229. <type>eighth</type>
  4230. <stem>up</stem>
  4231. </note>
  4232. <note default-x="237.61" default-y="-186.00" dynamics="141.11">
  4233. <pitch>
  4234. <step>E</step>
  4235. <octave>4</octave>
  4236. </pitch>
  4237. <duration>1</duration>
  4238. <voice>1</voice>
  4239. <type>eighth</type>
  4240. <stem>up</stem>
  4241. <beam number="1">continue</beam>
  4242. </note>
  4243. <note default-x="237.61" default-y="-176.00" dynamics="141.11">
  4244. <chord/>
  4245. <pitch>
  4246. <step>G</step>
  4247. <octave>4</octave>
  4248. </pitch>
  4249. <duration>1</duration>
  4250. <voice>1</voice>
  4251. <type>eighth</type>
  4252. <stem>up</stem>
  4253. </note>
  4254. <note default-x="249.47" default-y="-171.00" dynamics="141.11">
  4255. <chord/>
  4256. <pitch>
  4257. <step>A</step>
  4258. <octave>4</octave>
  4259. </pitch>
  4260. <duration>1</duration>
  4261. <voice>1</voice>
  4262. <type>eighth</type>
  4263. <stem>up</stem>
  4264. </note>
  4265. <note default-x="275.05" default-y="-186.00" dynamics="141.11">
  4266. <pitch>
  4267. <step>E</step>
  4268. <octave>4</octave>
  4269. </pitch>
  4270. <duration>1</duration>
  4271. <voice>1</voice>
  4272. <type>eighth</type>
  4273. <stem>up</stem>
  4274. <beam number="1">end</beam>
  4275. </note>
  4276. <note default-x="275.05" default-y="-176.00" dynamics="141.11">
  4277. <chord/>
  4278. <pitch>
  4279. <step>G</step>
  4280. <octave>4</octave>
  4281. </pitch>
  4282. <duration>1</duration>
  4283. <voice>1</voice>
  4284. <type>eighth</type>
  4285. <stem>up</stem>
  4286. </note>
  4287. <note default-x="286.92" default-y="-171.00" dynamics="141.11">
  4288. <chord/>
  4289. <pitch>
  4290. <step>A</step>
  4291. <octave>4</octave>
  4292. </pitch>
  4293. <duration>1</duration>
  4294. <voice>1</voice>
  4295. <type>eighth</type>
  4296. <stem>up</stem>
  4297. </note>
  4298. </measure>
  4299. <measure number="12" width="316.67">
  4300. <note default-x="14.00" default-y="-191.00" dynamics="141.11">
  4301. <pitch>
  4302. <step>D</step>
  4303. <octave>4</octave>
  4304. </pitch>
  4305. <duration>1</duration>
  4306. <voice>1</voice>
  4307. <type>eighth</type>
  4308. <stem>up</stem>
  4309. <beam number="1">begin</beam>
  4310. </note>
  4311. <note default-x="14.00" default-y="-181.00" dynamics="141.11">
  4312. <chord/>
  4313. <pitch>
  4314. <step>F</step>
  4315. <alter>1</alter>
  4316. <octave>4</octave>
  4317. </pitch>
  4318. <duration>1</duration>
  4319. <voice>1</voice>
  4320. <type>eighth</type>
  4321. <stem>up</stem>
  4322. </note>
  4323. <note default-x="14.00" default-y="-171.00" dynamics="141.11">
  4324. <chord/>
  4325. <pitch>
  4326. <step>A</step>
  4327. <octave>4</octave>
  4328. </pitch>
  4329. <duration>1</duration>
  4330. <voice>1</voice>
  4331. <type>eighth</type>
  4332. <stem>up</stem>
  4333. </note>
  4334. <note default-x="51.63" default-y="-191.00" dynamics="141.11">
  4335. <pitch>
  4336. <step>D</step>
  4337. <octave>4</octave>
  4338. </pitch>
  4339. <duration>1</duration>
  4340. <voice>1</voice>
  4341. <type>eighth</type>
  4342. <stem>up</stem>
  4343. <beam number="1">continue</beam>
  4344. </note>
  4345. <note default-x="51.63" default-y="-181.00" dynamics="141.11">
  4346. <chord/>
  4347. <pitch>
  4348. <step>F</step>
  4349. <alter>1</alter>
  4350. <octave>4</octave>
  4351. </pitch>
  4352. <duration>1</duration>
  4353. <voice>1</voice>
  4354. <type>eighth</type>
  4355. <stem>up</stem>
  4356. </note>
  4357. <note default-x="51.63" default-y="-171.00" dynamics="141.11">
  4358. <chord/>
  4359. <pitch>
  4360. <step>A</step>
  4361. <octave>4</octave>
  4362. </pitch>
  4363. <duration>1</duration>
  4364. <voice>1</voice>
  4365. <type>eighth</type>
  4366. <stem>up</stem>
  4367. </note>
  4368. <note default-x="89.27" default-y="-196.00" dynamics="141.11">
  4369. <pitch>
  4370. <step>C</step>
  4371. <alter>1</alter>
  4372. <octave>4</octave>
  4373. </pitch>
  4374. <duration>1</duration>
  4375. <voice>1</voice>
  4376. <type>eighth</type>
  4377. <stem>up</stem>
  4378. <beam number="1">continue</beam>
  4379. </note>
  4380. <note default-x="89.27" default-y="-186.00" dynamics="141.11">
  4381. <chord/>
  4382. <pitch>
  4383. <step>E</step>
  4384. <octave>4</octave>
  4385. </pitch>
  4386. <duration>1</duration>
  4387. <voice>1</voice>
  4388. <type>eighth</type>
  4389. <stem>up</stem>
  4390. </note>
  4391. <note default-x="89.27" default-y="-171.00" dynamics="141.11">
  4392. <chord/>
  4393. <pitch>
  4394. <step>A</step>
  4395. <octave>4</octave>
  4396. </pitch>
  4397. <duration>1</duration>
  4398. <voice>1</voice>
  4399. <type>eighth</type>
  4400. <stem>up</stem>
  4401. </note>
  4402. <note default-x="126.90" default-y="-196.00" dynamics="141.11">
  4403. <pitch>
  4404. <step>C</step>
  4405. <alter>1</alter>
  4406. <octave>4</octave>
  4407. </pitch>
  4408. <duration>1</duration>
  4409. <voice>1</voice>
  4410. <type>eighth</type>
  4411. <stem>up</stem>
  4412. <beam number="1">end</beam>
  4413. </note>
  4414. <note default-x="126.90" default-y="-186.00" dynamics="141.11">
  4415. <chord/>
  4416. <pitch>
  4417. <step>E</step>
  4418. <octave>4</octave>
  4419. </pitch>
  4420. <duration>1</duration>
  4421. <voice>1</voice>
  4422. <type>eighth</type>
  4423. <stem>up</stem>
  4424. </note>
  4425. <note default-x="126.90" default-y="-171.00" dynamics="141.11">
  4426. <chord/>
  4427. <pitch>
  4428. <step>A</step>
  4429. <octave>4</octave>
  4430. </pitch>
  4431. <duration>1</duration>
  4432. <voice>1</voice>
  4433. <type>eighth</type>
  4434. <stem>up</stem>
  4435. </note>
  4436. <note default-x="164.53" default-y="-201.00" dynamics="141.11">
  4437. <pitch>
  4438. <step>B</step>
  4439. <octave>3</octave>
  4440. </pitch>
  4441. <duration>1</duration>
  4442. <voice>1</voice>
  4443. <type>eighth</type>
  4444. <stem>up</stem>
  4445. <beam number="1">begin</beam>
  4446. </note>
  4447. <note default-x="164.53" default-y="-191.00" dynamics="141.11">
  4448. <chord/>
  4449. <pitch>
  4450. <step>D</step>
  4451. <octave>4</octave>
  4452. </pitch>
  4453. <duration>1</duration>
  4454. <voice>1</voice>
  4455. <type>eighth</type>
  4456. <stem>up</stem>
  4457. </note>
  4458. <note default-x="164.53" default-y="-171.00" dynamics="141.11">
  4459. <chord/>
  4460. <pitch>
  4461. <step>A</step>
  4462. <octave>4</octave>
  4463. </pitch>
  4464. <duration>1</duration>
  4465. <voice>1</voice>
  4466. <type>eighth</type>
  4467. <stem>up</stem>
  4468. </note>
  4469. <note default-x="202.17" default-y="-201.00" dynamics="141.11">
  4470. <pitch>
  4471. <step>B</step>
  4472. <octave>3</octave>
  4473. </pitch>
  4474. <duration>1</duration>
  4475. <voice>1</voice>
  4476. <type>eighth</type>
  4477. <stem>up</stem>
  4478. <beam number="1">continue</beam>
  4479. </note>
  4480. <note default-x="202.17" default-y="-191.00" dynamics="141.11">
  4481. <chord/>
  4482. <pitch>
  4483. <step>D</step>
  4484. <octave>4</octave>
  4485. </pitch>
  4486. <duration>1</duration>
  4487. <voice>1</voice>
  4488. <type>eighth</type>
  4489. <stem>up</stem>
  4490. </note>
  4491. <note default-x="202.17" default-y="-171.00" dynamics="141.11">
  4492. <chord/>
  4493. <pitch>
  4494. <step>A</step>
  4495. <octave>4</octave>
  4496. </pitch>
  4497. <duration>1</duration>
  4498. <voice>1</voice>
  4499. <type>eighth</type>
  4500. <stem>up</stem>
  4501. </note>
  4502. <note default-x="239.80" default-y="-196.00" dynamics="141.11">
  4503. <pitch>
  4504. <step>C</step>
  4505. <alter>1</alter>
  4506. <octave>4</octave>
  4507. </pitch>
  4508. <duration>1</duration>
  4509. <voice>1</voice>
  4510. <type>eighth</type>
  4511. <stem>up</stem>
  4512. <beam number="1">continue</beam>
  4513. </note>
  4514. <note default-x="239.80" default-y="-186.00" dynamics="141.11">
  4515. <chord/>
  4516. <pitch>
  4517. <step>E</step>
  4518. <octave>4</octave>
  4519. </pitch>
  4520. <duration>1</duration>
  4521. <voice>1</voice>
  4522. <type>eighth</type>
  4523. <stem>up</stem>
  4524. </note>
  4525. <note default-x="239.80" default-y="-171.00" dynamics="141.11">
  4526. <chord/>
  4527. <pitch>
  4528. <step>A</step>
  4529. <octave>4</octave>
  4530. </pitch>
  4531. <duration>1</duration>
  4532. <voice>1</voice>
  4533. <type>eighth</type>
  4534. <stem>up</stem>
  4535. </note>
  4536. <note default-x="277.44" default-y="-196.00" dynamics="141.11">
  4537. <pitch>
  4538. <step>C</step>
  4539. <alter>1</alter>
  4540. <octave>4</octave>
  4541. </pitch>
  4542. <duration>1</duration>
  4543. <voice>1</voice>
  4544. <type>eighth</type>
  4545. <stem>up</stem>
  4546. <beam number="1">end</beam>
  4547. </note>
  4548. <note default-x="277.44" default-y="-186.00" dynamics="141.11">
  4549. <chord/>
  4550. <pitch>
  4551. <step>E</step>
  4552. <octave>4</octave>
  4553. </pitch>
  4554. <duration>1</duration>
  4555. <voice>1</voice>
  4556. <type>eighth</type>
  4557. <stem>up</stem>
  4558. </note>
  4559. <note default-x="277.44" default-y="-171.00" dynamics="141.11">
  4560. <chord/>
  4561. <pitch>
  4562. <step>A</step>
  4563. <octave>4</octave>
  4564. </pitch>
  4565. <duration>1</duration>
  4566. <voice>1</voice>
  4567. <type>eighth</type>
  4568. <stem>up</stem>
  4569. </note>
  4570. </measure>
  4571. <measure number="13" width="377.84">
  4572. <print new-system="yes">
  4573. <staff-layout number="1">
  4574. <staff-distance>106.00</staff-distance>
  4575. </staff-layout>
  4576. </print>
  4577. <note default-x="87.16" default-y="-191.00" dynamics="141.11">
  4578. <pitch>
  4579. <step>D</step>
  4580. <octave>4</octave>
  4581. </pitch>
  4582. <duration>1</duration>
  4583. <voice>1</voice>
  4584. <type>eighth</type>
  4585. <stem>up</stem>
  4586. <beam number="1">begin</beam>
  4587. </note>
  4588. <note default-x="87.16" default-y="-181.00" dynamics="141.11">
  4589. <chord/>
  4590. <pitch>
  4591. <step>F</step>
  4592. <alter>1</alter>
  4593. <octave>4</octave>
  4594. </pitch>
  4595. <duration>1</duration>
  4596. <voice>1</voice>
  4597. <type>eighth</type>
  4598. <stem>up</stem>
  4599. </note>
  4600. <note default-x="87.16" default-y="-171.00" dynamics="141.11">
  4601. <chord/>
  4602. <pitch>
  4603. <step>A</step>
  4604. <octave>4</octave>
  4605. </pitch>
  4606. <duration>1</duration>
  4607. <voice>1</voice>
  4608. <type>eighth</type>
  4609. <stem>up</stem>
  4610. </note>
  4611. <note default-x="122.04" default-y="-191.00" dynamics="141.11">
  4612. <pitch>
  4613. <step>D</step>
  4614. <octave>4</octave>
  4615. </pitch>
  4616. <duration>1</duration>
  4617. <voice>1</voice>
  4618. <type>eighth</type>
  4619. <stem>up</stem>
  4620. <beam number="1">continue</beam>
  4621. </note>
  4622. <note default-x="122.04" default-y="-181.00" dynamics="141.11">
  4623. <chord/>
  4624. <pitch>
  4625. <step>F</step>
  4626. <alter>1</alter>
  4627. <octave>4</octave>
  4628. </pitch>
  4629. <duration>1</duration>
  4630. <voice>1</voice>
  4631. <type>eighth</type>
  4632. <stem>up</stem>
  4633. </note>
  4634. <note default-x="122.04" default-y="-171.00" dynamics="141.11">
  4635. <chord/>
  4636. <pitch>
  4637. <step>A</step>
  4638. <octave>4</octave>
  4639. </pitch>
  4640. <duration>1</duration>
  4641. <voice>1</voice>
  4642. <type>eighth</type>
  4643. <stem>up</stem>
  4644. </note>
  4645. <note default-x="156.92" default-y="-191.00" dynamics="141.11">
  4646. <pitch>
  4647. <step>D</step>
  4648. <octave>4</octave>
  4649. </pitch>
  4650. <duration>1</duration>
  4651. <voice>1</voice>
  4652. <type>eighth</type>
  4653. <stem>up</stem>
  4654. <beam number="1">continue</beam>
  4655. </note>
  4656. <note default-x="156.92" default-y="-181.00" dynamics="141.11">
  4657. <chord/>
  4658. <pitch>
  4659. <step>F</step>
  4660. <alter>1</alter>
  4661. <octave>4</octave>
  4662. </pitch>
  4663. <duration>1</duration>
  4664. <voice>1</voice>
  4665. <type>eighth</type>
  4666. <stem>up</stem>
  4667. </note>
  4668. <note default-x="156.92" default-y="-171.00" dynamics="141.11">
  4669. <chord/>
  4670. <pitch>
  4671. <step>A</step>
  4672. <octave>4</octave>
  4673. </pitch>
  4674. <duration>1</duration>
  4675. <voice>1</voice>
  4676. <type>eighth</type>
  4677. <stem>up</stem>
  4678. </note>
  4679. <note default-x="191.80" default-y="-191.00" dynamics="141.11">
  4680. <pitch>
  4681. <step>D</step>
  4682. <octave>4</octave>
  4683. </pitch>
  4684. <duration>1</duration>
  4685. <voice>1</voice>
  4686. <type>eighth</type>
  4687. <stem>up</stem>
  4688. <beam number="1">end</beam>
  4689. </note>
  4690. <note default-x="191.80" default-y="-181.00" dynamics="141.11">
  4691. <chord/>
  4692. <pitch>
  4693. <step>F</step>
  4694. <alter>1</alter>
  4695. <octave>4</octave>
  4696. </pitch>
  4697. <duration>1</duration>
  4698. <voice>1</voice>
  4699. <type>eighth</type>
  4700. <stem>up</stem>
  4701. </note>
  4702. <note default-x="191.80" default-y="-171.00" dynamics="141.11">
  4703. <chord/>
  4704. <pitch>
  4705. <step>A</step>
  4706. <octave>4</octave>
  4707. </pitch>
  4708. <duration>1</duration>
  4709. <voice>1</voice>
  4710. <type>eighth</type>
  4711. <stem>up</stem>
  4712. </note>
  4713. <note default-x="226.67" default-y="-186.00" dynamics="141.11">
  4714. <pitch>
  4715. <step>E</step>
  4716. <octave>4</octave>
  4717. </pitch>
  4718. <duration>1</duration>
  4719. <voice>1</voice>
  4720. <type>eighth</type>
  4721. <stem>up</stem>
  4722. <beam number="1">begin</beam>
  4723. </note>
  4724. <note default-x="226.67" default-y="-176.00" dynamics="141.11">
  4725. <chord/>
  4726. <pitch>
  4727. <step>G</step>
  4728. <octave>4</octave>
  4729. </pitch>
  4730. <duration>1</duration>
  4731. <voice>1</voice>
  4732. <type>eighth</type>
  4733. <stem>up</stem>
  4734. </note>
  4735. <note default-x="238.54" default-y="-171.00" dynamics="141.11">
  4736. <chord/>
  4737. <pitch>
  4738. <step>A</step>
  4739. <octave>4</octave>
  4740. </pitch>
  4741. <duration>1</duration>
  4742. <voice>1</voice>
  4743. <type>eighth</type>
  4744. <stem>up</stem>
  4745. </note>
  4746. <note default-x="271.45" default-y="-186.00" dynamics="141.11">
  4747. <pitch>
  4748. <step>E</step>
  4749. <octave>4</octave>
  4750. </pitch>
  4751. <duration>1</duration>
  4752. <voice>1</voice>
  4753. <type>eighth</type>
  4754. <stem>up</stem>
  4755. <beam number="1">continue</beam>
  4756. </note>
  4757. <note default-x="271.45" default-y="-176.00" dynamics="141.11">
  4758. <chord/>
  4759. <pitch>
  4760. <step>G</step>
  4761. <octave>4</octave>
  4762. </pitch>
  4763. <duration>1</duration>
  4764. <voice>1</voice>
  4765. <type>eighth</type>
  4766. <stem>up</stem>
  4767. </note>
  4768. <note default-x="283.32" default-y="-171.00" dynamics="141.11">
  4769. <chord/>
  4770. <pitch>
  4771. <step>A</step>
  4772. <octave>4</octave>
  4773. </pitch>
  4774. <duration>1</duration>
  4775. <voice>1</voice>
  4776. <type>eighth</type>
  4777. <stem>up</stem>
  4778. </note>
  4779. <note default-x="306.33" default-y="-186.00" dynamics="141.11">
  4780. <pitch>
  4781. <step>E</step>
  4782. <octave>4</octave>
  4783. </pitch>
  4784. <duration>1</duration>
  4785. <voice>1</voice>
  4786. <type>eighth</type>
  4787. <stem>up</stem>
  4788. <beam number="1">continue</beam>
  4789. </note>
  4790. <note default-x="306.33" default-y="-176.00" dynamics="141.11">
  4791. <chord/>
  4792. <pitch>
  4793. <step>G</step>
  4794. <octave>4</octave>
  4795. </pitch>
  4796. <duration>1</duration>
  4797. <voice>1</voice>
  4798. <type>eighth</type>
  4799. <stem>up</stem>
  4800. </note>
  4801. <note default-x="318.19" default-y="-171.00" dynamics="141.11">
  4802. <chord/>
  4803. <pitch>
  4804. <step>A</step>
  4805. <octave>4</octave>
  4806. </pitch>
  4807. <duration>1</duration>
  4808. <voice>1</voice>
  4809. <type>eighth</type>
  4810. <stem>up</stem>
  4811. </note>
  4812. <note default-x="341.21" default-y="-186.00" dynamics="141.11">
  4813. <pitch>
  4814. <step>E</step>
  4815. <octave>4</octave>
  4816. </pitch>
  4817. <duration>1</duration>
  4818. <voice>1</voice>
  4819. <type>eighth</type>
  4820. <stem>up</stem>
  4821. <beam number="1">end</beam>
  4822. </note>
  4823. <note default-x="341.21" default-y="-176.00" dynamics="141.11">
  4824. <chord/>
  4825. <pitch>
  4826. <step>G</step>
  4827. <octave>4</octave>
  4828. </pitch>
  4829. <duration>1</duration>
  4830. <voice>1</voice>
  4831. <type>eighth</type>
  4832. <stem>up</stem>
  4833. </note>
  4834. <note default-x="353.07" default-y="-171.00" dynamics="141.11">
  4835. <chord/>
  4836. <pitch>
  4837. <step>A</step>
  4838. <octave>4</octave>
  4839. </pitch>
  4840. <duration>1</duration>
  4841. <voice>1</voice>
  4842. <type>eighth</type>
  4843. <stem>up</stem>
  4844. </note>
  4845. </measure>
  4846. <measure number="14" width="324.65">
  4847. <note>
  4848. <rest/>
  4849. <duration>1</duration>
  4850. <voice>1</voice>
  4851. <type>eighth</type>
  4852. </note>
  4853. <note default-x="63.30" default-y="-206.00" dynamics="141.11">
  4854. <pitch>
  4855. <step>A</step>
  4856. <octave>3</octave>
  4857. </pitch>
  4858. <duration>1</duration>
  4859. <voice>1</voice>
  4860. <type>eighth</type>
  4861. <stem>up</stem>
  4862. <beam number="1">begin</beam>
  4863. </note>
  4864. <note default-x="63.30" default-y="-191.00" dynamics="141.11">
  4865. <chord/>
  4866. <pitch>
  4867. <step>D</step>
  4868. <octave>4</octave>
  4869. </pitch>
  4870. <duration>1</duration>
  4871. <voice>1</voice>
  4872. <type>eighth</type>
  4873. <stem>up</stem>
  4874. </note>
  4875. <note default-x="63.30" default-y="-181.00" dynamics="141.11">
  4876. <chord/>
  4877. <pitch>
  4878. <step>F</step>
  4879. <alter>1</alter>
  4880. <octave>4</octave>
  4881. </pitch>
  4882. <duration>1</duration>
  4883. <voice>1</voice>
  4884. <type>eighth</type>
  4885. <stem>up</stem>
  4886. </note>
  4887. <note default-x="100.41" default-y="-206.00" dynamics="141.11">
  4888. <pitch>
  4889. <step>A</step>
  4890. <octave>3</octave>
  4891. </pitch>
  4892. <duration>1</duration>
  4893. <voice>1</voice>
  4894. <type>eighth</type>
  4895. <stem>up</stem>
  4896. <beam number="1">continue</beam>
  4897. </note>
  4898. <note default-x="100.41" default-y="-191.00" dynamics="141.11">
  4899. <chord/>
  4900. <pitch>
  4901. <step>D</step>
  4902. <octave>4</octave>
  4903. </pitch>
  4904. <duration>1</duration>
  4905. <voice>1</voice>
  4906. <type>eighth</type>
  4907. <stem>up</stem>
  4908. </note>
  4909. <note default-x="100.41" default-y="-181.00" dynamics="141.11">
  4910. <chord/>
  4911. <pitch>
  4912. <step>F</step>
  4913. <alter>1</alter>
  4914. <octave>4</octave>
  4915. </pitch>
  4916. <duration>1</duration>
  4917. <voice>1</voice>
  4918. <type>eighth</type>
  4919. <stem>up</stem>
  4920. </note>
  4921. <note default-x="137.52" default-y="-206.00" dynamics="141.11">
  4922. <pitch>
  4923. <step>A</step>
  4924. <octave>3</octave>
  4925. </pitch>
  4926. <duration>1</duration>
  4927. <voice>1</voice>
  4928. <type>eighth</type>
  4929. <stem>up</stem>
  4930. <beam number="1">end</beam>
  4931. </note>
  4932. <note default-x="137.52" default-y="-191.00" dynamics="141.11">
  4933. <chord/>
  4934. <pitch>
  4935. <step>D</step>
  4936. <octave>4</octave>
  4937. </pitch>
  4938. <duration>1</duration>
  4939. <voice>1</voice>
  4940. <type>eighth</type>
  4941. <stem>up</stem>
  4942. </note>
  4943. <note default-x="137.52" default-y="-181.00" dynamics="141.11">
  4944. <chord/>
  4945. <pitch>
  4946. <step>F</step>
  4947. <alter>1</alter>
  4948. <octave>4</octave>
  4949. </pitch>
  4950. <duration>1</duration>
  4951. <voice>1</voice>
  4952. <type>eighth</type>
  4953. <stem>up</stem>
  4954. </note>
  4955. <note default-x="174.62" default-y="-206.00" dynamics="141.11">
  4956. <pitch>
  4957. <step>A</step>
  4958. <octave>3</octave>
  4959. </pitch>
  4960. <duration>1</duration>
  4961. <voice>1</voice>
  4962. <type>eighth</type>
  4963. <stem>up</stem>
  4964. <beam number="1">begin</beam>
  4965. </note>
  4966. <note default-x="174.62" default-y="-196.00" dynamics="141.11">
  4967. <chord/>
  4968. <pitch>
  4969. <step>C</step>
  4970. <alter>1</alter>
  4971. <octave>4</octave>
  4972. </pitch>
  4973. <duration>1</duration>
  4974. <voice>1</voice>
  4975. <type>eighth</type>
  4976. <stem>up</stem>
  4977. </note>
  4978. <note default-x="174.62" default-y="-176.00" dynamics="141.11">
  4979. <chord/>
  4980. <pitch>
  4981. <step>G</step>
  4982. <octave>4</octave>
  4983. </pitch>
  4984. <duration>1</duration>
  4985. <voice>1</voice>
  4986. <type>eighth</type>
  4987. <stem>up</stem>
  4988. </note>
  4989. <note default-x="211.73" default-y="-206.00" dynamics="141.11">
  4990. <pitch>
  4991. <step>A</step>
  4992. <octave>3</octave>
  4993. </pitch>
  4994. <duration>1</duration>
  4995. <voice>1</voice>
  4996. <type>eighth</type>
  4997. <stem>up</stem>
  4998. <beam number="1">continue</beam>
  4999. </note>
  5000. <note default-x="211.73" default-y="-196.00" dynamics="141.11">
  5001. <chord/>
  5002. <pitch>
  5003. <step>C</step>
  5004. <alter>1</alter>
  5005. <octave>4</octave>
  5006. </pitch>
  5007. <duration>1</duration>
  5008. <voice>1</voice>
  5009. <type>eighth</type>
  5010. <stem>up</stem>
  5011. </note>
  5012. <note default-x="211.73" default-y="-176.00" dynamics="141.11">
  5013. <chord/>
  5014. <pitch>
  5015. <step>G</step>
  5016. <octave>4</octave>
  5017. </pitch>
  5018. <duration>1</duration>
  5019. <voice>1</voice>
  5020. <type>eighth</type>
  5021. <stem>up</stem>
  5022. </note>
  5023. <note default-x="248.84" default-y="-196.00" dynamics="141.11">
  5024. <pitch>
  5025. <step>C</step>
  5026. <octave>4</octave>
  5027. </pitch>
  5028. <duration>1</duration>
  5029. <voice>1</voice>
  5030. <type>eighth</type>
  5031. <accidental>natural</accidental>
  5032. <stem>up</stem>
  5033. <beam number="1">continue</beam>
  5034. </note>
  5035. <note default-x="260.70" default-y="-191.00" dynamics="141.11">
  5036. <chord/>
  5037. <pitch>
  5038. <step>D</step>
  5039. <octave>4</octave>
  5040. </pitch>
  5041. <duration>1</duration>
  5042. <voice>1</voice>
  5043. <type>eighth</type>
  5044. <stem>up</stem>
  5045. </note>
  5046. <note default-x="248.84" default-y="-171.00" dynamics="141.11">
  5047. <chord/>
  5048. <pitch>
  5049. <step>A</step>
  5050. <octave>4</octave>
  5051. </pitch>
  5052. <duration>1</duration>
  5053. <voice>1</voice>
  5054. <type>eighth</type>
  5055. <stem>up</stem>
  5056. </note>
  5057. <note default-x="285.95" default-y="-196.00" dynamics="141.11">
  5058. <pitch>
  5059. <step>C</step>
  5060. <octave>4</octave>
  5061. </pitch>
  5062. <duration>1</duration>
  5063. <voice>1</voice>
  5064. <type>eighth</type>
  5065. <stem>up</stem>
  5066. <beam number="1">end</beam>
  5067. </note>
  5068. <note default-x="297.81" default-y="-191.00" dynamics="141.11">
  5069. <chord/>
  5070. <pitch>
  5071. <step>D</step>
  5072. <octave>4</octave>
  5073. </pitch>
  5074. <duration>1</duration>
  5075. <voice>1</voice>
  5076. <type>eighth</type>
  5077. <stem>up</stem>
  5078. </note>
  5079. <note default-x="285.95" default-y="-171.00" dynamics="141.11">
  5080. <chord/>
  5081. <pitch>
  5082. <step>A</step>
  5083. <octave>4</octave>
  5084. </pitch>
  5085. <duration>1</duration>
  5086. <voice>1</voice>
  5087. <type>eighth</type>
  5088. <stem>up</stem>
  5089. </note>
  5090. </measure>
  5091. <measure number="15" width="296.45">
  5092. <note>
  5093. <rest/>
  5094. <duration>1</duration>
  5095. <voice>1</voice>
  5096. <type>eighth</type>
  5097. </note>
  5098. <note default-x="60.03" default-y="-201.00" dynamics="141.11">
  5099. <pitch>
  5100. <step>B</step>
  5101. <octave>3</octave>
  5102. </pitch>
  5103. <duration>1</duration>
  5104. <voice>1</voice>
  5105. <type>eighth</type>
  5106. <stem>up</stem>
  5107. <beam number="1">begin</beam>
  5108. </note>
  5109. <note default-x="60.03" default-y="-191.00" dynamics="141.11">
  5110. <chord/>
  5111. <pitch>
  5112. <step>D</step>
  5113. <octave>4</octave>
  5114. </pitch>
  5115. <duration>1</duration>
  5116. <voice>1</voice>
  5117. <type>eighth</type>
  5118. <stem>up</stem>
  5119. </note>
  5120. <note default-x="60.03" default-y="-166.00" dynamics="141.11">
  5121. <chord/>
  5122. <pitch>
  5123. <step>B</step>
  5124. <octave>4</octave>
  5125. </pitch>
  5126. <duration>1</duration>
  5127. <voice>1</voice>
  5128. <type>eighth</type>
  5129. <stem>up</stem>
  5130. </note>
  5131. <note default-x="92.64" default-y="-201.00" dynamics="141.11">
  5132. <pitch>
  5133. <step>B</step>
  5134. <octave>3</octave>
  5135. </pitch>
  5136. <duration>1</duration>
  5137. <voice>1</voice>
  5138. <type>eighth</type>
  5139. <stem>up</stem>
  5140. <beam number="1">continue</beam>
  5141. </note>
  5142. <note default-x="92.64" default-y="-191.00" dynamics="141.11">
  5143. <chord/>
  5144. <pitch>
  5145. <step>D</step>
  5146. <octave>4</octave>
  5147. </pitch>
  5148. <duration>1</duration>
  5149. <voice>1</voice>
  5150. <type>eighth</type>
  5151. <stem>up</stem>
  5152. </note>
  5153. <note default-x="92.64" default-y="-166.00" dynamics="141.11">
  5154. <chord/>
  5155. <pitch>
  5156. <step>B</step>
  5157. <octave>4</octave>
  5158. </pitch>
  5159. <duration>1</duration>
  5160. <voice>1</voice>
  5161. <type>eighth</type>
  5162. <stem>up</stem>
  5163. </note>
  5164. <note default-x="125.25" default-y="-201.00" dynamics="141.11">
  5165. <pitch>
  5166. <step>B</step>
  5167. <octave>3</octave>
  5168. </pitch>
  5169. <duration>1</duration>
  5170. <voice>1</voice>
  5171. <type>eighth</type>
  5172. <stem>up</stem>
  5173. <beam number="1">end</beam>
  5174. </note>
  5175. <note default-x="125.25" default-y="-191.00" dynamics="141.11">
  5176. <chord/>
  5177. <pitch>
  5178. <step>D</step>
  5179. <octave>4</octave>
  5180. </pitch>
  5181. <duration>1</duration>
  5182. <voice>1</voice>
  5183. <type>eighth</type>
  5184. <stem>up</stem>
  5185. </note>
  5186. <note default-x="125.25" default-y="-166.00" dynamics="141.11">
  5187. <chord/>
  5188. <pitch>
  5189. <step>B</step>
  5190. <octave>4</octave>
  5191. </pitch>
  5192. <duration>1</duration>
  5193. <voice>1</voice>
  5194. <type>eighth</type>
  5195. <stem>up</stem>
  5196. </note>
  5197. <direction placement="below">
  5198. <direction-type>
  5199. <dynamics default-x="5.06" default-y="-80.00" relative-y="6.00">
  5200. <p/>
  5201. </dynamics>
  5202. </direction-type>
  5203. <sound dynamics="72.22"/>
  5204. </direction>
  5205. <note>
  5206. <rest/>
  5207. <duration>1</duration>
  5208. <voice>1</voice>
  5209. <type>eighth</type>
  5210. </note>
  5211. <note default-x="197.02" default-y="-191.00" dynamics="141.11">
  5212. <pitch>
  5213. <step>D</step>
  5214. <octave>4</octave>
  5215. </pitch>
  5216. <duration>1</duration>
  5217. <voice>1</voice>
  5218. <type>eighth</type>
  5219. <stem>up</stem>
  5220. <beam number="1">begin</beam>
  5221. </note>
  5222. <note default-x="197.02" default-y="-181.00" dynamics="141.11">
  5223. <chord/>
  5224. <pitch>
  5225. <step>F</step>
  5226. <alter>1</alter>
  5227. <octave>4</octave>
  5228. </pitch>
  5229. <duration>1</duration>
  5230. <voice>1</voice>
  5231. <type>eighth</type>
  5232. <stem>up</stem>
  5233. </note>
  5234. <note default-x="197.02" default-y="-166.00" dynamics="141.11">
  5235. <chord/>
  5236. <pitch>
  5237. <step>B</step>
  5238. <octave>4</octave>
  5239. </pitch>
  5240. <duration>1</duration>
  5241. <voice>1</voice>
  5242. <type>eighth</type>
  5243. <stem>up</stem>
  5244. </note>
  5245. <note default-x="229.63" default-y="-191.00" dynamics="141.11">
  5246. <pitch>
  5247. <step>D</step>
  5248. <octave>4</octave>
  5249. </pitch>
  5250. <duration>1</duration>
  5251. <voice>1</voice>
  5252. <type>eighth</type>
  5253. <stem>up</stem>
  5254. <beam number="1">continue</beam>
  5255. </note>
  5256. <note default-x="229.63" default-y="-181.00" dynamics="141.11">
  5257. <chord/>
  5258. <pitch>
  5259. <step>F</step>
  5260. <alter>1</alter>
  5261. <octave>4</octave>
  5262. </pitch>
  5263. <duration>1</duration>
  5264. <voice>1</voice>
  5265. <type>eighth</type>
  5266. <stem>up</stem>
  5267. </note>
  5268. <note default-x="229.63" default-y="-166.00" dynamics="141.11">
  5269. <chord/>
  5270. <pitch>
  5271. <step>B</step>
  5272. <octave>4</octave>
  5273. </pitch>
  5274. <duration>1</duration>
  5275. <voice>1</voice>
  5276. <type>eighth</type>
  5277. <stem>up</stem>
  5278. </note>
  5279. <note default-x="262.24" default-y="-191.00" dynamics="141.11">
  5280. <pitch>
  5281. <step>D</step>
  5282. <octave>4</octave>
  5283. </pitch>
  5284. <duration>1</duration>
  5285. <voice>1</voice>
  5286. <type>eighth</type>
  5287. <stem>up</stem>
  5288. <beam number="1">end</beam>
  5289. </note>
  5290. <note default-x="262.24" default-y="-181.00" dynamics="141.11">
  5291. <chord/>
  5292. <pitch>
  5293. <step>F</step>
  5294. <alter>1</alter>
  5295. <octave>4</octave>
  5296. </pitch>
  5297. <duration>1</duration>
  5298. <voice>1</voice>
  5299. <type>eighth</type>
  5300. <stem>up</stem>
  5301. </note>
  5302. <note default-x="262.24" default-y="-166.00" dynamics="141.11">
  5303. <chord/>
  5304. <pitch>
  5305. <step>B</step>
  5306. <octave>4</octave>
  5307. </pitch>
  5308. <duration>1</duration>
  5309. <voice>1</voice>
  5310. <type>eighth</type>
  5311. <stem>up</stem>
  5312. </note>
  5313. </measure>
  5314. <measure number="16" width="365.96">
  5315. <print new-system="yes">
  5316. <staff-layout number="1">
  5317. <staff-distance>106.00</staff-distance>
  5318. </staff-layout>
  5319. </print>
  5320. <note>
  5321. <rest/>
  5322. <duration>1</duration>
  5323. <voice>1</voice>
  5324. <type>eighth</type>
  5325. </note>
  5326. <note default-x="124.54" default-y="-191.00" dynamics="141.11">
  5327. <pitch>
  5328. <step>D</step>
  5329. <octave>4</octave>
  5330. </pitch>
  5331. <duration>1</duration>
  5332. <voice>1</voice>
  5333. <type>eighth</type>
  5334. <stem>up</stem>
  5335. <beam number="1">begin</beam>
  5336. </note>
  5337. <note default-x="124.54" default-y="-181.00" dynamics="141.11">
  5338. <chord/>
  5339. <pitch>
  5340. <step>F</step>
  5341. <alter>1</alter>
  5342. <octave>4</octave>
  5343. </pitch>
  5344. <duration>1</duration>
  5345. <voice>1</voice>
  5346. <type>eighth</type>
  5347. <stem>up</stem>
  5348. </note>
  5349. <note default-x="124.54" default-y="-171.00" dynamics="141.11">
  5350. <chord/>
  5351. <pitch>
  5352. <step>A</step>
  5353. <octave>4</octave>
  5354. </pitch>
  5355. <duration>1</duration>
  5356. <voice>1</voice>
  5357. <type>eighth</type>
  5358. <stem>up</stem>
  5359. </note>
  5360. <note default-x="158.67" default-y="-191.00" dynamics="141.11">
  5361. <pitch>
  5362. <step>D</step>
  5363. <octave>4</octave>
  5364. </pitch>
  5365. <duration>1</duration>
  5366. <voice>1</voice>
  5367. <type>eighth</type>
  5368. <stem>up</stem>
  5369. <beam number="1">continue</beam>
  5370. </note>
  5371. <note default-x="158.67" default-y="-181.00" dynamics="141.11">
  5372. <chord/>
  5373. <pitch>
  5374. <step>F</step>
  5375. <alter>1</alter>
  5376. <octave>4</octave>
  5377. </pitch>
  5378. <duration>1</duration>
  5379. <voice>1</voice>
  5380. <type>eighth</type>
  5381. <stem>up</stem>
  5382. </note>
  5383. <note default-x="158.67" default-y="-171.00" dynamics="141.11">
  5384. <chord/>
  5385. <pitch>
  5386. <step>A</step>
  5387. <octave>4</octave>
  5388. </pitch>
  5389. <duration>1</duration>
  5390. <voice>1</voice>
  5391. <type>eighth</type>
  5392. <stem>up</stem>
  5393. </note>
  5394. <note default-x="192.80" default-y="-191.00" dynamics="141.11">
  5395. <pitch>
  5396. <step>D</step>
  5397. <octave>4</octave>
  5398. </pitch>
  5399. <duration>1</duration>
  5400. <voice>1</voice>
  5401. <type>eighth</type>
  5402. <stem>up</stem>
  5403. <beam number="1">end</beam>
  5404. </note>
  5405. <note default-x="192.80" default-y="-181.00" dynamics="141.11">
  5406. <chord/>
  5407. <pitch>
  5408. <step>F</step>
  5409. <alter>1</alter>
  5410. <octave>4</octave>
  5411. </pitch>
  5412. <duration>1</duration>
  5413. <voice>1</voice>
  5414. <type>eighth</type>
  5415. <stem>up</stem>
  5416. </note>
  5417. <note default-x="192.80" default-y="-171.00" dynamics="141.11">
  5418. <chord/>
  5419. <pitch>
  5420. <step>A</step>
  5421. <octave>4</octave>
  5422. </pitch>
  5423. <duration>1</duration>
  5424. <voice>1</voice>
  5425. <type>eighth</type>
  5426. <stem>up</stem>
  5427. </note>
  5428. <note>
  5429. <rest/>
  5430. <duration>1</duration>
  5431. <voice>1</voice>
  5432. <type>eighth</type>
  5433. </note>
  5434. <note default-x="261.06" default-y="-186.00" dynamics="141.11">
  5435. <pitch>
  5436. <step>E</step>
  5437. <octave>4</octave>
  5438. </pitch>
  5439. <duration>1</duration>
  5440. <voice>1</voice>
  5441. <type>eighth</type>
  5442. <stem>up</stem>
  5443. <beam number="1">begin</beam>
  5444. </note>
  5445. <note default-x="272.93" default-y="-181.00" dynamics="141.11">
  5446. <chord/>
  5447. <pitch>
  5448. <step>F</step>
  5449. <alter>1</alter>
  5450. <octave>4</octave>
  5451. </pitch>
  5452. <duration>1</duration>
  5453. <voice>1</voice>
  5454. <type>eighth</type>
  5455. <stem>up</stem>
  5456. </note>
  5457. <note default-x="261.06" default-y="-161.00" dynamics="141.11">
  5458. <chord/>
  5459. <pitch>
  5460. <step>C</step>
  5461. <alter>1</alter>
  5462. <octave>5</octave>
  5463. </pitch>
  5464. <duration>1</duration>
  5465. <voice>1</voice>
  5466. <type>eighth</type>
  5467. <stem>up</stem>
  5468. </note>
  5469. <note default-x="295.19" default-y="-186.00" dynamics="141.11">
  5470. <pitch>
  5471. <step>E</step>
  5472. <octave>4</octave>
  5473. </pitch>
  5474. <duration>1</duration>
  5475. <voice>1</voice>
  5476. <type>eighth</type>
  5477. <stem>up</stem>
  5478. <beam number="1">continue</beam>
  5479. </note>
  5480. <note default-x="307.06" default-y="-181.00" dynamics="141.11">
  5481. <chord/>
  5482. <pitch>
  5483. <step>F</step>
  5484. <alter>1</alter>
  5485. <octave>4</octave>
  5486. </pitch>
  5487. <duration>1</duration>
  5488. <voice>1</voice>
  5489. <type>eighth</type>
  5490. <stem>up</stem>
  5491. </note>
  5492. <note default-x="295.19" default-y="-161.00" dynamics="141.11">
  5493. <chord/>
  5494. <pitch>
  5495. <step>C</step>
  5496. <alter>1</alter>
  5497. <octave>5</octave>
  5498. </pitch>
  5499. <duration>1</duration>
  5500. <voice>1</voice>
  5501. <type>eighth</type>
  5502. <stem>up</stem>
  5503. </note>
  5504. <note default-x="329.32" default-y="-186.00" dynamics="141.11">
  5505. <pitch>
  5506. <step>E</step>
  5507. <octave>4</octave>
  5508. </pitch>
  5509. <duration>1</duration>
  5510. <voice>1</voice>
  5511. <type>eighth</type>
  5512. <stem>up</stem>
  5513. <beam number="1">end</beam>
  5514. </note>
  5515. <note default-x="341.19" default-y="-181.00" dynamics="141.11">
  5516. <chord/>
  5517. <pitch>
  5518. <step>F</step>
  5519. <alter>1</alter>
  5520. <octave>4</octave>
  5521. </pitch>
  5522. <duration>1</duration>
  5523. <voice>1</voice>
  5524. <type>eighth</type>
  5525. <stem>up</stem>
  5526. </note>
  5527. <note default-x="329.32" default-y="-161.00" dynamics="141.11">
  5528. <chord/>
  5529. <pitch>
  5530. <step>C</step>
  5531. <alter>1</alter>
  5532. <octave>5</octave>
  5533. </pitch>
  5534. <duration>1</duration>
  5535. <voice>1</voice>
  5536. <type>eighth</type>
  5537. <stem>up</stem>
  5538. </note>
  5539. </measure>
  5540. <measure number="17" width="290.96">
  5541. <note>
  5542. <rest/>
  5543. <duration>1</duration>
  5544. <voice>1</voice>
  5545. <type>eighth</type>
  5546. </note>
  5547. <note default-x="59.09" default-y="-191.00" dynamics="141.11">
  5548. <pitch>
  5549. <step>D</step>
  5550. <octave>4</octave>
  5551. </pitch>
  5552. <duration>1</duration>
  5553. <voice>1</voice>
  5554. <type>eighth</type>
  5555. <stem>up</stem>
  5556. <beam number="1">begin</beam>
  5557. </note>
  5558. <note default-x="59.09" default-y="-181.00" dynamics="141.11">
  5559. <chord/>
  5560. <pitch>
  5561. <step>F</step>
  5562. <alter>1</alter>
  5563. <octave>4</octave>
  5564. </pitch>
  5565. <duration>1</duration>
  5566. <voice>1</voice>
  5567. <type>eighth</type>
  5568. <stem>up</stem>
  5569. </note>
  5570. <note default-x="59.09" default-y="-156.00" dynamics="141.11">
  5571. <chord/>
  5572. <pitch>
  5573. <step>D</step>
  5574. <octave>5</octave>
  5575. </pitch>
  5576. <duration>1</duration>
  5577. <voice>1</voice>
  5578. <type>eighth</type>
  5579. <stem>up</stem>
  5580. </note>
  5581. <note default-x="91.99" default-y="-191.00" dynamics="141.11">
  5582. <pitch>
  5583. <step>D</step>
  5584. <octave>4</octave>
  5585. </pitch>
  5586. <duration>1</duration>
  5587. <voice>1</voice>
  5588. <type>eighth</type>
  5589. <stem>up</stem>
  5590. <beam number="1">continue</beam>
  5591. </note>
  5592. <note default-x="91.99" default-y="-181.00" dynamics="141.11">
  5593. <chord/>
  5594. <pitch>
  5595. <step>F</step>
  5596. <alter>1</alter>
  5597. <octave>4</octave>
  5598. </pitch>
  5599. <duration>1</duration>
  5600. <voice>1</voice>
  5601. <type>eighth</type>
  5602. <stem>up</stem>
  5603. </note>
  5604. <note default-x="91.99" default-y="-156.00" dynamics="141.11">
  5605. <chord/>
  5606. <pitch>
  5607. <step>D</step>
  5608. <octave>5</octave>
  5609. </pitch>
  5610. <duration>1</duration>
  5611. <voice>1</voice>
  5612. <type>eighth</type>
  5613. <stem>up</stem>
  5614. </note>
  5615. <note default-x="124.88" default-y="-191.00" dynamics="141.11">
  5616. <pitch>
  5617. <step>D</step>
  5618. <octave>4</octave>
  5619. </pitch>
  5620. <duration>1</duration>
  5621. <voice>1</voice>
  5622. <type>eighth</type>
  5623. <stem>up</stem>
  5624. <beam number="1">end</beam>
  5625. </note>
  5626. <note default-x="124.88" default-y="-181.00" dynamics="141.11">
  5627. <chord/>
  5628. <pitch>
  5629. <step>F</step>
  5630. <alter>1</alter>
  5631. <octave>4</octave>
  5632. </pitch>
  5633. <duration>1</duration>
  5634. <voice>1</voice>
  5635. <type>eighth</type>
  5636. <stem>up</stem>
  5637. </note>
  5638. <note default-x="124.88" default-y="-156.00" dynamics="141.11">
  5639. <chord/>
  5640. <pitch>
  5641. <step>D</step>
  5642. <octave>5</octave>
  5643. </pitch>
  5644. <duration>1</duration>
  5645. <voice>1</voice>
  5646. <type>eighth</type>
  5647. <stem>up</stem>
  5648. </note>
  5649. <note>
  5650. <rest/>
  5651. <duration>1</duration>
  5652. <voice>1</voice>
  5653. <type>eighth</type>
  5654. </note>
  5655. <note default-x="190.67" default-y="-191.00" dynamics="141.11">
  5656. <pitch>
  5657. <step>D</step>
  5658. <octave>4</octave>
  5659. </pitch>
  5660. <duration>1</duration>
  5661. <voice>1</voice>
  5662. <type>eighth</type>
  5663. <stem>up</stem>
  5664. <beam number="1">begin</beam>
  5665. </note>
  5666. <note default-x="190.67" default-y="-181.00" dynamics="141.11">
  5667. <chord/>
  5668. <pitch>
  5669. <step>F</step>
  5670. <octave>4</octave>
  5671. </pitch>
  5672. <duration>1</duration>
  5673. <voice>1</voice>
  5674. <type>eighth</type>
  5675. <accidental>natural</accidental>
  5676. <stem>up</stem>
  5677. </note>
  5678. <note default-x="190.67" default-y="-166.00" dynamics="141.11">
  5679. <chord/>
  5680. <pitch>
  5681. <step>B</step>
  5682. <octave>4</octave>
  5683. </pitch>
  5684. <duration>1</duration>
  5685. <voice>1</voice>
  5686. <type>eighth</type>
  5687. <stem>up</stem>
  5688. </note>
  5689. <note default-x="223.57" default-y="-191.00" dynamics="141.11">
  5690. <pitch>
  5691. <step>D</step>
  5692. <octave>4</octave>
  5693. </pitch>
  5694. <duration>1</duration>
  5695. <voice>1</voice>
  5696. <type>eighth</type>
  5697. <stem>up</stem>
  5698. <beam number="1">continue</beam>
  5699. </note>
  5700. <note default-x="223.57" default-y="-181.00" dynamics="141.11">
  5701. <chord/>
  5702. <pitch>
  5703. <step>F</step>
  5704. <octave>4</octave>
  5705. </pitch>
  5706. <duration>1</duration>
  5707. <voice>1</voice>
  5708. <type>eighth</type>
  5709. <stem>up</stem>
  5710. </note>
  5711. <note default-x="223.57" default-y="-166.00" dynamics="141.11">
  5712. <chord/>
  5713. <pitch>
  5714. <step>B</step>
  5715. <octave>4</octave>
  5716. </pitch>
  5717. <duration>1</duration>
  5718. <voice>1</voice>
  5719. <type>eighth</type>
  5720. <stem>up</stem>
  5721. </note>
  5722. <note default-x="256.47" default-y="-191.00" dynamics="141.11">
  5723. <pitch>
  5724. <step>D</step>
  5725. <octave>4</octave>
  5726. </pitch>
  5727. <duration>1</duration>
  5728. <voice>1</voice>
  5729. <type>eighth</type>
  5730. <stem>up</stem>
  5731. <beam number="1">end</beam>
  5732. </note>
  5733. <note default-x="256.47" default-y="-181.00" dynamics="141.11">
  5734. <chord/>
  5735. <pitch>
  5736. <step>F</step>
  5737. <octave>4</octave>
  5738. </pitch>
  5739. <duration>1</duration>
  5740. <voice>1</voice>
  5741. <type>eighth</type>
  5742. <stem>up</stem>
  5743. </note>
  5744. <note default-x="256.47" default-y="-166.00" dynamics="141.11">
  5745. <chord/>
  5746. <pitch>
  5747. <step>B</step>
  5748. <octave>4</octave>
  5749. </pitch>
  5750. <duration>1</duration>
  5751. <voice>1</voice>
  5752. <type>eighth</type>
  5753. <stem>up</stem>
  5754. </note>
  5755. </measure>
  5756. <measure number="18" width="342.02">
  5757. <note>
  5758. <rest/>
  5759. <duration>1</duration>
  5760. <voice>1</voice>
  5761. <type>eighth</type>
  5762. </note>
  5763. <note default-x="54.80" default-y="-191.00" dynamics="141.11">
  5764. <pitch>
  5765. <step>D</step>
  5766. <octave>4</octave>
  5767. </pitch>
  5768. <duration>1</duration>
  5769. <voice>1</voice>
  5770. <type>eighth</type>
  5771. <stem>up</stem>
  5772. <beam number="1">begin</beam>
  5773. </note>
  5774. <note default-x="54.80" default-y="-181.00" dynamics="141.11">
  5775. <chord/>
  5776. <pitch>
  5777. <step>F</step>
  5778. <alter>1</alter>
  5779. <octave>4</octave>
  5780. </pitch>
  5781. <duration>1</duration>
  5782. <voice>1</voice>
  5783. <type>eighth</type>
  5784. <accidental>sharp</accidental>
  5785. <stem>up</stem>
  5786. </note>
  5787. <note default-x="54.80" default-y="-171.00" dynamics="141.11">
  5788. <chord/>
  5789. <pitch>
  5790. <step>A</step>
  5791. <octave>4</octave>
  5792. </pitch>
  5793. <duration>1</duration>
  5794. <voice>1</voice>
  5795. <type>eighth</type>
  5796. <stem>up</stem>
  5797. </note>
  5798. <note default-x="95.61" default-y="-191.00" dynamics="141.11">
  5799. <pitch>
  5800. <step>D</step>
  5801. <octave>4</octave>
  5802. </pitch>
  5803. <duration>1</duration>
  5804. <voice>1</voice>
  5805. <type>eighth</type>
  5806. <stem>up</stem>
  5807. <beam number="1">continue</beam>
  5808. </note>
  5809. <note default-x="95.61" default-y="-181.00" dynamics="141.11">
  5810. <chord/>
  5811. <pitch>
  5812. <step>F</step>
  5813. <alter>1</alter>
  5814. <octave>4</octave>
  5815. </pitch>
  5816. <duration>1</duration>
  5817. <voice>1</voice>
  5818. <type>eighth</type>
  5819. <stem>up</stem>
  5820. </note>
  5821. <note default-x="95.61" default-y="-171.00" dynamics="141.11">
  5822. <chord/>
  5823. <pitch>
  5824. <step>A</step>
  5825. <octave>4</octave>
  5826. </pitch>
  5827. <duration>1</duration>
  5828. <voice>1</voice>
  5829. <type>eighth</type>
  5830. <stem>up</stem>
  5831. </note>
  5832. <note default-x="136.41" default-y="-191.00" dynamics="141.11">
  5833. <pitch>
  5834. <step>D</step>
  5835. <octave>4</octave>
  5836. </pitch>
  5837. <duration>1</duration>
  5838. <voice>1</voice>
  5839. <type>eighth</type>
  5840. <stem>up</stem>
  5841. <beam number="1">end</beam>
  5842. </note>
  5843. <note default-x="136.41" default-y="-181.00" dynamics="141.11">
  5844. <chord/>
  5845. <pitch>
  5846. <step>F</step>
  5847. <alter>1</alter>
  5848. <octave>4</octave>
  5849. </pitch>
  5850. <duration>1</duration>
  5851. <voice>1</voice>
  5852. <type>eighth</type>
  5853. <stem>up</stem>
  5854. </note>
  5855. <note default-x="136.41" default-y="-171.00" dynamics="141.11">
  5856. <chord/>
  5857. <pitch>
  5858. <step>A</step>
  5859. <octave>4</octave>
  5860. </pitch>
  5861. <duration>1</duration>
  5862. <voice>1</voice>
  5863. <type>eighth</type>
  5864. <stem>up</stem>
  5865. </note>
  5866. <note>
  5867. <rest/>
  5868. <duration>1</duration>
  5869. <voice>1</voice>
  5870. <type>eighth</type>
  5871. </note>
  5872. <note default-x="218.02" default-y="-211.00" dynamics="141.11">
  5873. <pitch>
  5874. <step>G</step>
  5875. <octave>3</octave>
  5876. </pitch>
  5877. <duration>1</duration>
  5878. <voice>1</voice>
  5879. <type>eighth</type>
  5880. <stem>up</stem>
  5881. <beam number="1">begin</beam>
  5882. </note>
  5883. <note default-x="229.88" default-y="-206.00" dynamics="141.11">
  5884. <chord/>
  5885. <pitch>
  5886. <step>A</step>
  5887. <octave>3</octave>
  5888. </pitch>
  5889. <duration>1</duration>
  5890. <voice>1</voice>
  5891. <type>eighth</type>
  5892. <stem>up</stem>
  5893. </note>
  5894. <note default-x="218.02" default-y="-196.00" dynamics="141.11">
  5895. <chord/>
  5896. <pitch>
  5897. <step>C</step>
  5898. <alter>1</alter>
  5899. <octave>4</octave>
  5900. </pitch>
  5901. <duration>1</duration>
  5902. <voice>1</voice>
  5903. <type>eighth</type>
  5904. <stem>up</stem>
  5905. </note>
  5906. <note default-x="258.82" default-y="-211.00" dynamics="141.11">
  5907. <pitch>
  5908. <step>G</step>
  5909. <octave>3</octave>
  5910. </pitch>
  5911. <duration>1</duration>
  5912. <voice>1</voice>
  5913. <type>eighth</type>
  5914. <stem>up</stem>
  5915. <beam number="1">continue</beam>
  5916. </note>
  5917. <note default-x="270.68" default-y="-206.00" dynamics="141.11">
  5918. <chord/>
  5919. <pitch>
  5920. <step>A</step>
  5921. <octave>3</octave>
  5922. </pitch>
  5923. <duration>1</duration>
  5924. <voice>1</voice>
  5925. <type>eighth</type>
  5926. <stem>up</stem>
  5927. </note>
  5928. <note default-x="258.82" default-y="-196.00" dynamics="141.11">
  5929. <chord/>
  5930. <pitch>
  5931. <step>C</step>
  5932. <alter>1</alter>
  5933. <octave>4</octave>
  5934. </pitch>
  5935. <duration>1</duration>
  5936. <voice>1</voice>
  5937. <type>eighth</type>
  5938. <stem>up</stem>
  5939. </note>
  5940. <note default-x="299.62" default-y="-211.00" dynamics="141.11">
  5941. <pitch>
  5942. <step>G</step>
  5943. <octave>3</octave>
  5944. </pitch>
  5945. <duration>1</duration>
  5946. <voice>1</voice>
  5947. <type>eighth</type>
  5948. <stem>up</stem>
  5949. <beam number="1">end</beam>
  5950. </note>
  5951. <note default-x="311.49" default-y="-206.00" dynamics="141.11">
  5952. <chord/>
  5953. <pitch>
  5954. <step>A</step>
  5955. <octave>3</octave>
  5956. </pitch>
  5957. <duration>1</duration>
  5958. <voice>1</voice>
  5959. <type>eighth</type>
  5960. <stem>up</stem>
  5961. </note>
  5962. <note default-x="299.62" default-y="-196.00" dynamics="141.11">
  5963. <chord/>
  5964. <pitch>
  5965. <step>C</step>
  5966. <alter>1</alter>
  5967. <octave>4</octave>
  5968. </pitch>
  5969. <duration>1</duration>
  5970. <voice>1</voice>
  5971. <type>eighth</type>
  5972. <stem>up</stem>
  5973. </note>
  5974. </measure>
  5975. <measure number="19" width="998.94">
  5976. <print new-page="yes">
  5977. <staff-layout number="1">
  5978. <staff-distance>106.00</staff-distance>
  5979. </staff-layout>
  5980. </print>
  5981. <note default-x="94.28" default-y="-216.00" dynamics="141.11">
  5982. <pitch>
  5983. <step>F</step>
  5984. <alter>1</alter>
  5985. <octave>3</octave>
  5986. </pitch>
  5987. <duration>1</duration>
  5988. <voice>1</voice>
  5989. <type>eighth</type>
  5990. <stem>up</stem>
  5991. <beam number="1">begin</beam>
  5992. </note>
  5993. <note default-x="94.28" default-y="-206.00" dynamics="141.11">
  5994. <chord/>
  5995. <pitch>
  5996. <step>A</step>
  5997. <octave>3</octave>
  5998. </pitch>
  5999. <duration>1</duration>
  6000. <voice>1</voice>
  6001. <type>eighth</type>
  6002. <stem>up</stem>
  6003. </note>
  6004. <note default-x="94.28" default-y="-191.00" dynamics="141.11">
  6005. <chord/>
  6006. <pitch>
  6007. <step>D</step>
  6008. <octave>4</octave>
  6009. </pitch>
  6010. <duration>1</duration>
  6011. <voice>1</voice>
  6012. <type>eighth</type>
  6013. <stem>up</stem>
  6014. </note>
  6015. <note default-x="207.17" default-y="-191.00" dynamics="141.11">
  6016. <pitch>
  6017. <step>D</step>
  6018. <octave>4</octave>
  6019. </pitch>
  6020. <duration>1</duration>
  6021. <voice>1</voice>
  6022. <type>eighth</type>
  6023. <stem>up</stem>
  6024. <beam number="1">continue</beam>
  6025. </note>
  6026. <note default-x="207.17" default-y="-181.00" dynamics="141.11">
  6027. <chord/>
  6028. <pitch>
  6029. <step>F</step>
  6030. <alter>1</alter>
  6031. <octave>4</octave>
  6032. </pitch>
  6033. <duration>1</duration>
  6034. <voice>1</voice>
  6035. <type>eighth</type>
  6036. <stem>up</stem>
  6037. </note>
  6038. <note default-x="207.17" default-y="-156.00" dynamics="141.11">
  6039. <chord/>
  6040. <pitch>
  6041. <step>D</step>
  6042. <octave>5</octave>
  6043. </pitch>
  6044. <duration>1</duration>
  6045. <voice>1</voice>
  6046. <type>eighth</type>
  6047. <stem>up</stem>
  6048. </note>
  6049. <note default-x="320.05" default-y="-191.00" dynamics="141.11">
  6050. <pitch>
  6051. <step>D</step>
  6052. <octave>4</octave>
  6053. </pitch>
  6054. <duration>1</duration>
  6055. <voice>1</voice>
  6056. <type>eighth</type>
  6057. <stem>up</stem>
  6058. <beam number="1">continue</beam>
  6059. </note>
  6060. <note default-x="320.05" default-y="-181.00" dynamics="141.11">
  6061. <chord/>
  6062. <pitch>
  6063. <step>F</step>
  6064. <alter>1</alter>
  6065. <octave>4</octave>
  6066. </pitch>
  6067. <duration>1</duration>
  6068. <voice>1</voice>
  6069. <type>eighth</type>
  6070. <stem>up</stem>
  6071. </note>
  6072. <note default-x="320.05" default-y="-156.00" dynamics="141.11">
  6073. <chord/>
  6074. <pitch>
  6075. <step>D</step>
  6076. <octave>5</octave>
  6077. </pitch>
  6078. <duration>1</duration>
  6079. <voice>1</voice>
  6080. <type>eighth</type>
  6081. <stem>up</stem>
  6082. </note>
  6083. <note default-x="432.93" default-y="-191.00" dynamics="141.11">
  6084. <pitch>
  6085. <step>D</step>
  6086. <octave>4</octave>
  6087. </pitch>
  6088. <duration>1</duration>
  6089. <voice>1</voice>
  6090. <type>eighth</type>
  6091. <stem>up</stem>
  6092. <beam number="1">end</beam>
  6093. </note>
  6094. <note default-x="432.93" default-y="-181.00" dynamics="141.11">
  6095. <chord/>
  6096. <pitch>
  6097. <step>F</step>
  6098. <alter>1</alter>
  6099. <octave>4</octave>
  6100. </pitch>
  6101. <duration>1</duration>
  6102. <voice>1</voice>
  6103. <type>eighth</type>
  6104. <stem>up</stem>
  6105. </note>
  6106. <note default-x="432.93" default-y="-156.00" dynamics="141.11">
  6107. <chord/>
  6108. <pitch>
  6109. <step>D</step>
  6110. <octave>5</octave>
  6111. </pitch>
  6112. <duration>1</duration>
  6113. <voice>1</voice>
  6114. <type>eighth</type>
  6115. <stem>up</stem>
  6116. </note>
  6117. <note default-x="545.81" default-y="-191.00" dynamics="141.11">
  6118. <pitch>
  6119. <step>D</step>
  6120. <octave>4</octave>
  6121. </pitch>
  6122. <duration>1</duration>
  6123. <voice>1</voice>
  6124. <type>eighth</type>
  6125. <stem>up</stem>
  6126. <beam number="1">begin</beam>
  6127. </note>
  6128. <note default-x="545.81" default-y="-181.00" dynamics="141.11">
  6129. <chord/>
  6130. <pitch>
  6131. <step>F</step>
  6132. <alter>1</alter>
  6133. <octave>4</octave>
  6134. </pitch>
  6135. <duration>1</duration>
  6136. <voice>1</voice>
  6137. <type>eighth</type>
  6138. <stem>up</stem>
  6139. </note>
  6140. <note default-x="545.81" default-y="-156.00" dynamics="141.11">
  6141. <chord/>
  6142. <pitch>
  6143. <step>D</step>
  6144. <octave>5</octave>
  6145. </pitch>
  6146. <duration>1</duration>
  6147. <voice>1</voice>
  6148. <type>eighth</type>
  6149. <stem>up</stem>
  6150. </note>
  6151. <note default-x="658.70" default-y="-191.00" dynamics="141.11">
  6152. <pitch>
  6153. <step>D</step>
  6154. <octave>4</octave>
  6155. </pitch>
  6156. <duration>1</duration>
  6157. <voice>1</voice>
  6158. <type>eighth</type>
  6159. <stem>up</stem>
  6160. <beam number="1">continue</beam>
  6161. </note>
  6162. <note default-x="658.70" default-y="-181.00" dynamics="141.11">
  6163. <chord/>
  6164. <pitch>
  6165. <step>F</step>
  6166. <alter>1</alter>
  6167. <octave>4</octave>
  6168. </pitch>
  6169. <duration>1</duration>
  6170. <voice>1</voice>
  6171. <type>eighth</type>
  6172. <stem>up</stem>
  6173. </note>
  6174. <note default-x="658.70" default-y="-156.00" dynamics="141.11">
  6175. <chord/>
  6176. <pitch>
  6177. <step>D</step>
  6178. <octave>5</octave>
  6179. </pitch>
  6180. <duration>1</duration>
  6181. <voice>1</voice>
  6182. <type>eighth</type>
  6183. <stem>up</stem>
  6184. </note>
  6185. <note default-x="771.58" default-y="-186.00" dynamics="141.11">
  6186. <pitch>
  6187. <step>E</step>
  6188. <octave>4</octave>
  6189. </pitch>
  6190. <duration>1</duration>
  6191. <voice>1</voice>
  6192. <type>eighth</type>
  6193. <stem>up</stem>
  6194. <beam number="1">continue</beam>
  6195. </note>
  6196. <note default-x="771.58" default-y="-176.00" dynamics="141.11">
  6197. <chord/>
  6198. <pitch>
  6199. <step>G</step>
  6200. <octave>4</octave>
  6201. </pitch>
  6202. <duration>1</duration>
  6203. <voice>1</voice>
  6204. <type>eighth</type>
  6205. <stem>up</stem>
  6206. </note>
  6207. <note default-x="771.58" default-y="-161.00" dynamics="141.11">
  6208. <chord/>
  6209. <pitch>
  6210. <step>C</step>
  6211. <alter>1</alter>
  6212. <octave>5</octave>
  6213. </pitch>
  6214. <duration>1</duration>
  6215. <voice>1</voice>
  6216. <type>eighth</type>
  6217. <stem>up</stem>
  6218. </note>
  6219. <note default-x="884.46" default-y="-181.00" dynamics="141.11">
  6220. <pitch>
  6221. <step>F</step>
  6222. <alter>1</alter>
  6223. <octave>4</octave>
  6224. </pitch>
  6225. <duration>1</duration>
  6226. <voice>1</voice>
  6227. <type>eighth</type>
  6228. <stem>up</stem>
  6229. <beam number="1">end</beam>
  6230. </note>
  6231. <note default-x="884.46" default-y="-171.00" dynamics="141.11">
  6232. <chord/>
  6233. <pitch>
  6234. <step>A</step>
  6235. <octave>4</octave>
  6236. </pitch>
  6237. <duration>1</duration>
  6238. <voice>1</voice>
  6239. <type>eighth</type>
  6240. <stem>up</stem>
  6241. </note>
  6242. <note default-x="884.46" default-y="-156.00" dynamics="141.11">
  6243. <chord/>
  6244. <pitch>
  6245. <step>D</step>
  6246. <octave>5</octave>
  6247. </pitch>
  6248. <duration>1</duration>
  6249. <voice>1</voice>
  6250. <type>eighth</type>
  6251. <stem>up</stem>
  6252. </note>
  6253. </measure>
  6254. <measure number="20" width="255.67">
  6255. <print new-system="yes">
  6256. <staff-layout number="1">
  6257. <staff-distance>65.00</staff-distance>
  6258. </staff-layout>
  6259. </print>
  6260. <note default-x="77.63" default-y="-150.00" dynamics="141.11">
  6261. <pitch>
  6262. <step>D</step>
  6263. <octave>4</octave>
  6264. </pitch>
  6265. <duration>1</duration>
  6266. <voice>1</voice>
  6267. <type>eighth</type>
  6268. <stem>up</stem>
  6269. <beam number="1">begin</beam>
  6270. <notations>
  6271. <slur type="start" number="1"/>
  6272. </notations>
  6273. </note>
  6274. <note default-x="77.63" default-y="-130.00" dynamics="141.11">
  6275. <chord/>
  6276. <pitch>
  6277. <step>A</step>
  6278. <octave>4</octave>
  6279. </pitch>
  6280. <duration>1</duration>
  6281. <voice>1</voice>
  6282. <type>eighth</type>
  6283. <stem>up</stem>
  6284. </note>
  6285. <note default-x="77.63" default-y="-120.00" dynamics="141.11">
  6286. <chord/>
  6287. <pitch>
  6288. <step>C</step>
  6289. <alter>1</alter>
  6290. <octave>5</octave>
  6291. </pitch>
  6292. <duration>1</duration>
  6293. <voice>1</voice>
  6294. <type>eighth</type>
  6295. <stem>up</stem>
  6296. </note>
  6297. <note default-x="99.53" default-y="-135.00" dynamics="141.11">
  6298. <pitch>
  6299. <step>G</step>
  6300. <octave>4</octave>
  6301. </pitch>
  6302. <duration>1</duration>
  6303. <voice>1</voice>
  6304. <type>eighth</type>
  6305. <stem>up</stem>
  6306. <beam number="1">continue</beam>
  6307. <notations>
  6308. <slur type="stop" number="1"/>
  6309. </notations>
  6310. </note>
  6311. <note default-x="99.53" default-y="-125.00" dynamics="141.11">
  6312. <chord/>
  6313. <pitch>
  6314. <step>B</step>
  6315. <octave>4</octave>
  6316. </pitch>
  6317. <duration>1</duration>
  6318. <voice>1</voice>
  6319. <type>eighth</type>
  6320. <stem>up</stem>
  6321. </note>
  6322. <note default-x="121.42" default-y="-150.00" dynamics="141.11">
  6323. <pitch>
  6324. <step>D</step>
  6325. <octave>4</octave>
  6326. </pitch>
  6327. <duration>1</duration>
  6328. <voice>1</voice>
  6329. <type>eighth</type>
  6330. <stem>up</stem>
  6331. <beam number="1">continue</beam>
  6332. <notations>
  6333. <articulations>
  6334. <staccato/>
  6335. </articulations>
  6336. </notations>
  6337. </note>
  6338. <note default-x="121.42" default-y="-135.00" dynamics="141.11">
  6339. <chord/>
  6340. <pitch>
  6341. <step>G</step>
  6342. <octave>4</octave>
  6343. </pitch>
  6344. <duration>1</duration>
  6345. <voice>1</voice>
  6346. <type>eighth</type>
  6347. <stem>up</stem>
  6348. </note>
  6349. <note default-x="121.42" default-y="-125.00" dynamics="141.11">
  6350. <chord/>
  6351. <pitch>
  6352. <step>B</step>
  6353. <octave>4</octave>
  6354. </pitch>
  6355. <duration>1</duration>
  6356. <voice>1</voice>
  6357. <type>eighth</type>
  6358. <stem>up</stem>
  6359. </note>
  6360. <note default-x="143.32" default-y="-150.00" dynamics="141.11">
  6361. <pitch>
  6362. <step>D</step>
  6363. <octave>4</octave>
  6364. </pitch>
  6365. <duration>1</duration>
  6366. <voice>1</voice>
  6367. <type>eighth</type>
  6368. <stem>up</stem>
  6369. <beam number="1">end</beam>
  6370. <notations>
  6371. <articulations>
  6372. <staccato/>
  6373. </articulations>
  6374. </notations>
  6375. </note>
  6376. <note default-x="143.32" default-y="-135.00" dynamics="141.11">
  6377. <chord/>
  6378. <pitch>
  6379. <step>G</step>
  6380. <octave>4</octave>
  6381. </pitch>
  6382. <duration>1</duration>
  6383. <voice>1</voice>
  6384. <type>eighth</type>
  6385. <stem>up</stem>
  6386. </note>
  6387. <note default-x="143.32" default-y="-125.00" dynamics="141.11">
  6388. <chord/>
  6389. <pitch>
  6390. <step>B</step>
  6391. <octave>4</octave>
  6392. </pitch>
  6393. <duration>1</duration>
  6394. <voice>1</voice>
  6395. <type>eighth</type>
  6396. <stem>up</stem>
  6397. </note>
  6398. <note default-x="165.21" default-y="-150.00" dynamics="141.11">
  6399. <pitch>
  6400. <step>D</step>
  6401. <octave>4</octave>
  6402. </pitch>
  6403. <duration>1</duration>
  6404. <voice>1</voice>
  6405. <type>eighth</type>
  6406. <stem>up</stem>
  6407. <beam number="1">begin</beam>
  6408. <notations>
  6409. <articulations>
  6410. <staccato/>
  6411. </articulations>
  6412. </notations>
  6413. </note>
  6414. <note default-x="165.21" default-y="-135.00" dynamics="141.11">
  6415. <chord/>
  6416. <pitch>
  6417. <step>G</step>
  6418. <octave>4</octave>
  6419. </pitch>
  6420. <duration>1</duration>
  6421. <voice>1</voice>
  6422. <type>eighth</type>
  6423. <stem>up</stem>
  6424. </note>
  6425. <note default-x="165.21" default-y="-125.00" dynamics="141.11">
  6426. <chord/>
  6427. <pitch>
  6428. <step>B</step>
  6429. <octave>4</octave>
  6430. </pitch>
  6431. <duration>1</duration>
  6432. <voice>1</voice>
  6433. <type>eighth</type>
  6434. <stem>up</stem>
  6435. </note>
  6436. <note default-x="187.11" default-y="-160.00" dynamics="141.11">
  6437. <pitch>
  6438. <step>B</step>
  6439. <octave>3</octave>
  6440. </pitch>
  6441. <duration>1</duration>
  6442. <voice>1</voice>
  6443. <type>eighth</type>
  6444. <stem>up</stem>
  6445. <beam number="1">continue</beam>
  6446. <notations>
  6447. <articulations>
  6448. <staccato/>
  6449. </articulations>
  6450. </notations>
  6451. </note>
  6452. <note default-x="187.11" default-y="-135.00" dynamics="141.11">
  6453. <chord/>
  6454. <pitch>
  6455. <step>G</step>
  6456. <octave>4</octave>
  6457. </pitch>
  6458. <duration>1</duration>
  6459. <voice>1</voice>
  6460. <type>eighth</type>
  6461. <stem>up</stem>
  6462. </note>
  6463. <note default-x="187.11" default-y="-125.00" dynamics="141.11">
  6464. <chord/>
  6465. <pitch>
  6466. <step>B</step>
  6467. <octave>4</octave>
  6468. </pitch>
  6469. <duration>1</duration>
  6470. <voice>1</voice>
  6471. <type>eighth</type>
  6472. <stem>up</stem>
  6473. </note>
  6474. <note default-x="209.01" default-y="-150.00" dynamics="141.11">
  6475. <pitch>
  6476. <step>D</step>
  6477. <octave>4</octave>
  6478. </pitch>
  6479. <duration>1</duration>
  6480. <voice>1</voice>
  6481. <type>eighth</type>
  6482. <stem>up</stem>
  6483. <beam number="1">continue</beam>
  6484. <notations>
  6485. <articulations>
  6486. <staccato/>
  6487. </articulations>
  6488. </notations>
  6489. </note>
  6490. <note default-x="209.01" default-y="-135.00" dynamics="141.11">
  6491. <chord/>
  6492. <pitch>
  6493. <step>G</step>
  6494. <octave>4</octave>
  6495. </pitch>
  6496. <duration>1</duration>
  6497. <voice>1</voice>
  6498. <type>eighth</type>
  6499. <stem>up</stem>
  6500. </note>
  6501. <note default-x="209.01" default-y="-125.00" dynamics="141.11">
  6502. <chord/>
  6503. <pitch>
  6504. <step>B</step>
  6505. <octave>4</octave>
  6506. </pitch>
  6507. <duration>1</duration>
  6508. <voice>1</voice>
  6509. <type>eighth</type>
  6510. <stem>up</stem>
  6511. </note>
  6512. <note default-x="230.90" default-y="-145.00" dynamics="141.11">
  6513. <pitch>
  6514. <step>E</step>
  6515. <octave>4</octave>
  6516. </pitch>
  6517. <duration>1</duration>
  6518. <voice>1</voice>
  6519. <type>eighth</type>
  6520. <stem>up</stem>
  6521. <beam number="1">end</beam>
  6522. <notations>
  6523. <articulations>
  6524. <staccato/>
  6525. </articulations>
  6526. </notations>
  6527. </note>
  6528. <note default-x="230.90" default-y="-135.00" dynamics="141.11">
  6529. <chord/>
  6530. <pitch>
  6531. <step>G</step>
  6532. <octave>4</octave>
  6533. </pitch>
  6534. <duration>1</duration>
  6535. <voice>1</voice>
  6536. <type>eighth</type>
  6537. <stem>up</stem>
  6538. </note>
  6539. <note default-x="230.90" default-y="-125.00" dynamics="141.11">
  6540. <chord/>
  6541. <pitch>
  6542. <step>B</step>
  6543. <octave>4</octave>
  6544. </pitch>
  6545. <duration>1</duration>
  6546. <voice>1</voice>
  6547. <type>eighth</type>
  6548. <stem>up</stem>
  6549. </note>
  6550. </measure>
  6551. <measure number="21" width="240.04">
  6552. <note default-x="12.36" default-y="-135.00" dynamics="141.11">
  6553. <pitch>
  6554. <step>G</step>
  6555. <octave>4</octave>
  6556. </pitch>
  6557. <duration>1</duration>
  6558. <voice>1</voice>
  6559. <type>eighth</type>
  6560. <stem>up</stem>
  6561. <beam number="1">begin</beam>
  6562. <notations>
  6563. <slur type="start" number="1"/>
  6564. </notations>
  6565. </note>
  6566. <note default-x="12.36" default-y="-125.00" dynamics="141.11">
  6567. <chord/>
  6568. <pitch>
  6569. <step>B</step>
  6570. <octave>4</octave>
  6571. </pitch>
  6572. <duration>1</duration>
  6573. <voice>1</voice>
  6574. <type>eighth</type>
  6575. <stem>up</stem>
  6576. </note>
  6577. <note default-x="40.62" default-y="-165.00" dynamics="141.11">
  6578. <pitch>
  6579. <step>A</step>
  6580. <octave>3</octave>
  6581. </pitch>
  6582. <duration>1</duration>
  6583. <voice>1</voice>
  6584. <type>eighth</type>
  6585. <stem>up</stem>
  6586. <beam number="1">continue</beam>
  6587. <notations>
  6588. <slur type="stop" number="1"/>
  6589. </notations>
  6590. </note>
  6591. <note default-x="40.62" default-y="-140.00" dynamics="141.11">
  6592. <chord/>
  6593. <pitch>
  6594. <step>F</step>
  6595. <alter>1</alter>
  6596. <octave>4</octave>
  6597. </pitch>
  6598. <duration>1</duration>
  6599. <voice>1</voice>
  6600. <type>eighth</type>
  6601. <stem>up</stem>
  6602. </note>
  6603. <note default-x="40.62" default-y="-130.00" dynamics="141.11">
  6604. <chord/>
  6605. <pitch>
  6606. <step>A</step>
  6607. <octave>4</octave>
  6608. </pitch>
  6609. <duration>1</duration>
  6610. <voice>1</voice>
  6611. <type>eighth</type>
  6612. <stem>up</stem>
  6613. </note>
  6614. <note default-x="68.88" default-y="-165.00" dynamics="141.11">
  6615. <pitch>
  6616. <step>A</step>
  6617. <octave>3</octave>
  6618. </pitch>
  6619. <duration>1</duration>
  6620. <voice>1</voice>
  6621. <type>eighth</type>
  6622. <stem>up</stem>
  6623. <beam number="1">continue</beam>
  6624. <notations>
  6625. <articulations>
  6626. <staccato/>
  6627. </articulations>
  6628. </notations>
  6629. </note>
  6630. <note default-x="68.88" default-y="-140.00" dynamics="141.11">
  6631. <chord/>
  6632. <pitch>
  6633. <step>F</step>
  6634. <alter>1</alter>
  6635. <octave>4</octave>
  6636. </pitch>
  6637. <duration>1</duration>
  6638. <voice>1</voice>
  6639. <type>eighth</type>
  6640. <stem>up</stem>
  6641. </note>
  6642. <note default-x="68.88" default-y="-130.00" dynamics="141.11">
  6643. <chord/>
  6644. <pitch>
  6645. <step>A</step>
  6646. <octave>4</octave>
  6647. </pitch>
  6648. <duration>1</duration>
  6649. <voice>1</voice>
  6650. <type>eighth</type>
  6651. <stem>up</stem>
  6652. </note>
  6653. <note default-x="97.14" default-y="-165.00" dynamics="141.11">
  6654. <pitch>
  6655. <step>A</step>
  6656. <octave>3</octave>
  6657. </pitch>
  6658. <duration>1</duration>
  6659. <voice>1</voice>
  6660. <type>eighth</type>
  6661. <stem>up</stem>
  6662. <beam number="1">end</beam>
  6663. <notations>
  6664. <articulations>
  6665. <staccato/>
  6666. </articulations>
  6667. </notations>
  6668. </note>
  6669. <note default-x="97.14" default-y="-140.00" dynamics="141.11">
  6670. <chord/>
  6671. <pitch>
  6672. <step>F</step>
  6673. <alter>1</alter>
  6674. <octave>4</octave>
  6675. </pitch>
  6676. <duration>1</duration>
  6677. <voice>1</voice>
  6678. <type>eighth</type>
  6679. <stem>up</stem>
  6680. </note>
  6681. <note default-x="97.14" default-y="-130.00" dynamics="141.11">
  6682. <chord/>
  6683. <pitch>
  6684. <step>A</step>
  6685. <octave>4</octave>
  6686. </pitch>
  6687. <duration>1</duration>
  6688. <voice>1</voice>
  6689. <type>eighth</type>
  6690. <stem>up</stem>
  6691. </note>
  6692. <note default-x="125.40" default-y="-165.00" dynamics="141.11">
  6693. <pitch>
  6694. <step>A</step>
  6695. <octave>3</octave>
  6696. </pitch>
  6697. <duration>1</duration>
  6698. <voice>1</voice>
  6699. <type>eighth</type>
  6700. <stem>up</stem>
  6701. <beam number="1">begin</beam>
  6702. <notations>
  6703. <articulations>
  6704. <staccato/>
  6705. </articulations>
  6706. </notations>
  6707. </note>
  6708. <note default-x="125.40" default-y="-140.00" dynamics="141.11">
  6709. <chord/>
  6710. <pitch>
  6711. <step>F</step>
  6712. <alter>1</alter>
  6713. <octave>4</octave>
  6714. </pitch>
  6715. <duration>1</duration>
  6716. <voice>1</voice>
  6717. <type>eighth</type>
  6718. <stem>up</stem>
  6719. </note>
  6720. <note default-x="125.40" default-y="-130.00" dynamics="141.11">
  6721. <chord/>
  6722. <pitch>
  6723. <step>A</step>
  6724. <octave>4</octave>
  6725. </pitch>
  6726. <duration>1</duration>
  6727. <voice>1</voice>
  6728. <type>eighth</type>
  6729. <stem>up</stem>
  6730. </note>
  6731. <note default-x="153.66" default-y="-165.00" dynamics="141.11">
  6732. <pitch>
  6733. <step>A</step>
  6734. <octave>3</octave>
  6735. </pitch>
  6736. <duration>1</duration>
  6737. <voice>1</voice>
  6738. <type>eighth</type>
  6739. <stem>up</stem>
  6740. <beam number="1">continue</beam>
  6741. <notations>
  6742. <articulations>
  6743. <staccato/>
  6744. </articulations>
  6745. </notations>
  6746. </note>
  6747. <note default-x="153.66" default-y="-140.00" dynamics="141.11">
  6748. <chord/>
  6749. <pitch>
  6750. <step>F</step>
  6751. <alter>1</alter>
  6752. <octave>4</octave>
  6753. </pitch>
  6754. <duration>1</duration>
  6755. <voice>1</voice>
  6756. <type>eighth</type>
  6757. <stem>up</stem>
  6758. </note>
  6759. <note default-x="153.66" default-y="-130.00" dynamics="141.11">
  6760. <chord/>
  6761. <pitch>
  6762. <step>A</step>
  6763. <octave>4</octave>
  6764. </pitch>
  6765. <duration>1</duration>
  6766. <voice>1</voice>
  6767. <type>eighth</type>
  6768. <stem>up</stem>
  6769. </note>
  6770. <note default-x="181.92" default-y="-155.00" dynamics="141.11">
  6771. <pitch>
  6772. <step>C</step>
  6773. <alter>1</alter>
  6774. <octave>4</octave>
  6775. </pitch>
  6776. <duration>1</duration>
  6777. <voice>1</voice>
  6778. <type>eighth</type>
  6779. <stem>up</stem>
  6780. <beam number="1">continue</beam>
  6781. <notations>
  6782. <articulations>
  6783. <staccato/>
  6784. </articulations>
  6785. </notations>
  6786. </note>
  6787. <note default-x="181.92" default-y="-140.00" dynamics="141.11">
  6788. <chord/>
  6789. <pitch>
  6790. <step>F</step>
  6791. <alter>1</alter>
  6792. <octave>4</octave>
  6793. </pitch>
  6794. <duration>1</duration>
  6795. <voice>1</voice>
  6796. <type>eighth</type>
  6797. <stem>up</stem>
  6798. </note>
  6799. <note default-x="181.92" default-y="-130.00" dynamics="141.11">
  6800. <chord/>
  6801. <pitch>
  6802. <step>A</step>
  6803. <octave>4</octave>
  6804. </pitch>
  6805. <duration>1</duration>
  6806. <voice>1</voice>
  6807. <type>eighth</type>
  6808. <stem>up</stem>
  6809. </note>
  6810. <note default-x="210.18" default-y="-150.00" dynamics="141.11">
  6811. <pitch>
  6812. <step>D</step>
  6813. <octave>4</octave>
  6814. </pitch>
  6815. <duration>1</duration>
  6816. <voice>1</voice>
  6817. <type>eighth</type>
  6818. <stem>up</stem>
  6819. <beam number="1">end</beam>
  6820. <notations>
  6821. <articulations>
  6822. <staccato/>
  6823. </articulations>
  6824. </notations>
  6825. </note>
  6826. <note default-x="210.18" default-y="-140.00" dynamics="141.11">
  6827. <chord/>
  6828. <pitch>
  6829. <step>F</step>
  6830. <alter>1</alter>
  6831. <octave>4</octave>
  6832. </pitch>
  6833. <duration>1</duration>
  6834. <voice>1</voice>
  6835. <type>eighth</type>
  6836. <stem>up</stem>
  6837. </note>
  6838. <note default-x="210.18" default-y="-130.00" dynamics="141.11">
  6839. <chord/>
  6840. <pitch>
  6841. <step>A</step>
  6842. <octave>4</octave>
  6843. </pitch>
  6844. <duration>1</duration>
  6845. <voice>1</voice>
  6846. <type>eighth</type>
  6847. <stem>up</stem>
  6848. </note>
  6849. </measure>
  6850. <measure number="22" width="293.17">
  6851. <note default-x="18.42" default-y="-160.00" dynamics="141.11">
  6852. <pitch>
  6853. <step>B</step>
  6854. <octave>3</octave>
  6855. </pitch>
  6856. <duration>1</duration>
  6857. <voice>1</voice>
  6858. <type>eighth</type>
  6859. <stem>up</stem>
  6860. <beam number="1">begin</beam>
  6861. <notations>
  6862. <slur type="start" number="1"/>
  6863. </notations>
  6864. </note>
  6865. <note default-x="18.42" default-y="-150.00" dynamics="141.11">
  6866. <chord/>
  6867. <pitch>
  6868. <step>D</step>
  6869. <alter>1</alter>
  6870. <octave>4</octave>
  6871. </pitch>
  6872. <duration>1</duration>
  6873. <voice>1</voice>
  6874. <type>eighth</type>
  6875. <accidental>sharp</accidental>
  6876. <stem>up</stem>
  6877. </note>
  6878. <note default-x="18.42" default-y="-140.00" dynamics="141.11">
  6879. <chord/>
  6880. <pitch>
  6881. <step>F</step>
  6882. <alter>1</alter>
  6883. <octave>4</octave>
  6884. </pitch>
  6885. <duration>1</duration>
  6886. <voice>1</voice>
  6887. <type>eighth</type>
  6888. <stem>up</stem>
  6889. </note>
  6890. <note default-x="18.42" default-y="-130.00" dynamics="141.11">
  6891. <chord/>
  6892. <pitch>
  6893. <step>A</step>
  6894. <octave>4</octave>
  6895. </pitch>
  6896. <duration>1</duration>
  6897. <voice>1</voice>
  6898. <type>eighth</type>
  6899. <stem>up</stem>
  6900. </note>
  6901. <note default-x="48.32" default-y="-145.00" dynamics="141.11">
  6902. <pitch>
  6903. <step>E</step>
  6904. <octave>4</octave>
  6905. </pitch>
  6906. <duration>1</duration>
  6907. <voice>1</voice>
  6908. <type>eighth</type>
  6909. <stem>up</stem>
  6910. <beam number="1">continue</beam>
  6911. <notations>
  6912. <slur type="stop" number="1"/>
  6913. </notations>
  6914. </note>
  6915. <note default-x="48.32" default-y="-135.00" dynamics="141.11">
  6916. <chord/>
  6917. <pitch>
  6918. <step>G</step>
  6919. <octave>4</octave>
  6920. </pitch>
  6921. <duration>1</duration>
  6922. <voice>1</voice>
  6923. <type>eighth</type>
  6924. <stem>up</stem>
  6925. </note>
  6926. <note default-x="78.23" default-y="-160.00" dynamics="141.11">
  6927. <pitch>
  6928. <step>B</step>
  6929. <octave>3</octave>
  6930. </pitch>
  6931. <duration>1</duration>
  6932. <voice>1</voice>
  6933. <type>eighth</type>
  6934. <stem>up</stem>
  6935. <beam number="1">continue</beam>
  6936. <notations>
  6937. <articulations>
  6938. <staccato/>
  6939. </articulations>
  6940. </notations>
  6941. </note>
  6942. <note default-x="78.23" default-y="-145.00" dynamics="141.11">
  6943. <chord/>
  6944. <pitch>
  6945. <step>E</step>
  6946. <octave>4</octave>
  6947. </pitch>
  6948. <duration>1</duration>
  6949. <voice>1</voice>
  6950. <type>eighth</type>
  6951. <stem>up</stem>
  6952. </note>
  6953. <note default-x="78.23" default-y="-135.00" dynamics="141.11">
  6954. <chord/>
  6955. <pitch>
  6956. <step>G</step>
  6957. <octave>4</octave>
  6958. </pitch>
  6959. <duration>1</duration>
  6960. <voice>1</voice>
  6961. <type>eighth</type>
  6962. <stem>up</stem>
  6963. </note>
  6964. <note default-x="108.13" default-y="-160.00" dynamics="141.11">
  6965. <pitch>
  6966. <step>B</step>
  6967. <octave>3</octave>
  6968. </pitch>
  6969. <duration>1</duration>
  6970. <voice>1</voice>
  6971. <type>eighth</type>
  6972. <stem>up</stem>
  6973. <beam number="1">end</beam>
  6974. <notations>
  6975. <articulations>
  6976. <staccato/>
  6977. </articulations>
  6978. </notations>
  6979. </note>
  6980. <note default-x="108.13" default-y="-145.00" dynamics="141.11">
  6981. <chord/>
  6982. <pitch>
  6983. <step>E</step>
  6984. <octave>4</octave>
  6985. </pitch>
  6986. <duration>1</duration>
  6987. <voice>1</voice>
  6988. <type>eighth</type>
  6989. <stem>up</stem>
  6990. </note>
  6991. <note default-x="108.13" default-y="-135.00" dynamics="141.11">
  6992. <chord/>
  6993. <pitch>
  6994. <step>G</step>
  6995. <octave>4</octave>
  6996. </pitch>
  6997. <duration>1</duration>
  6998. <voice>1</voice>
  6999. <type>eighth</type>
  7000. <stem>up</stem>
  7001. </note>
  7002. <note default-x="138.04" default-y="-155.00" dynamics="141.11">
  7003. <pitch>
  7004. <step>C</step>
  7005. <alter>1</alter>
  7006. <octave>4</octave>
  7007. </pitch>
  7008. <duration>1</duration>
  7009. <voice>1</voice>
  7010. <type>eighth</type>
  7011. <stem>up</stem>
  7012. <beam number="1">begin</beam>
  7013. <notations>
  7014. <articulations>
  7015. <staccato/>
  7016. </articulations>
  7017. </notations>
  7018. </note>
  7019. <note default-x="138.04" default-y="-145.00" dynamics="141.11">
  7020. <chord/>
  7021. <pitch>
  7022. <step>E</step>
  7023. <octave>4</octave>
  7024. </pitch>
  7025. <duration>1</duration>
  7026. <voice>1</voice>
  7027. <type>eighth</type>
  7028. <stem>up</stem>
  7029. </note>
  7030. <note default-x="138.04" default-y="-135.00" dynamics="141.11">
  7031. <chord/>
  7032. <pitch>
  7033. <step>G</step>
  7034. <octave>4</octave>
  7035. </pitch>
  7036. <duration>1</duration>
  7037. <voice>1</voice>
  7038. <type>eighth</type>
  7039. <stem>up</stem>
  7040. </note>
  7041. <note default-x="167.94" default-y="-170.00" dynamics="141.11">
  7042. <pitch>
  7043. <step>G</step>
  7044. <octave>3</octave>
  7045. </pitch>
  7046. <duration>1</duration>
  7047. <voice>1</voice>
  7048. <type>eighth</type>
  7049. <stem>up</stem>
  7050. <beam number="1">continue</beam>
  7051. <notations>
  7052. <articulations>
  7053. <staccato/>
  7054. </articulations>
  7055. </notations>
  7056. </note>
  7057. <note default-x="179.81" default-y="-165.00" dynamics="141.11">
  7058. <chord/>
  7059. <pitch>
  7060. <step>A</step>
  7061. <octave>3</octave>
  7062. </pitch>
  7063. <duration>1</duration>
  7064. <voice>1</voice>
  7065. <type>eighth</type>
  7066. <stem>up</stem>
  7067. </note>
  7068. <note default-x="167.94" default-y="-155.00" dynamics="141.11">
  7069. <chord/>
  7070. <pitch>
  7071. <step>C</step>
  7072. <alter>1</alter>
  7073. <octave>4</octave>
  7074. </pitch>
  7075. <duration>1</duration>
  7076. <voice>1</voice>
  7077. <type>eighth</type>
  7078. <stem>up</stem>
  7079. </note>
  7080. <note default-x="167.94" default-y="-145.00" dynamics="141.11">
  7081. <chord/>
  7082. <pitch>
  7083. <step>E</step>
  7084. <octave>4</octave>
  7085. </pitch>
  7086. <duration>1</duration>
  7087. <voice>1</voice>
  7088. <type>eighth</type>
  7089. <stem>up</stem>
  7090. </note>
  7091. <note default-x="203.47" default-y="-170.00" dynamics="141.11">
  7092. <pitch>
  7093. <step>G</step>
  7094. <octave>3</octave>
  7095. </pitch>
  7096. <duration>1</duration>
  7097. <voice>1</voice>
  7098. <type>eighth</type>
  7099. <stem>up</stem>
  7100. <beam number="1">continue</beam>
  7101. <notations>
  7102. <articulations>
  7103. <staccato/>
  7104. </articulations>
  7105. </notations>
  7106. </note>
  7107. <note default-x="215.34" default-y="-165.00" dynamics="141.11">
  7108. <chord/>
  7109. <pitch>
  7110. <step>A</step>
  7111. <octave>3</octave>
  7112. </pitch>
  7113. <duration>1</duration>
  7114. <voice>1</voice>
  7115. <type>eighth</type>
  7116. <stem>up</stem>
  7117. </note>
  7118. <note default-x="203.47" default-y="-155.00" dynamics="141.11">
  7119. <chord/>
  7120. <pitch>
  7121. <step>C</step>
  7122. <alter>1</alter>
  7123. <octave>4</octave>
  7124. </pitch>
  7125. <duration>1</duration>
  7126. <voice>1</voice>
  7127. <type>eighth</type>
  7128. <stem>up</stem>
  7129. </note>
  7130. <note default-x="203.47" default-y="-145.00" dynamics="141.11">
  7131. <chord/>
  7132. <pitch>
  7133. <step>E</step>
  7134. <octave>4</octave>
  7135. </pitch>
  7136. <duration>1</duration>
  7137. <voice>1</voice>
  7138. <type>eighth</type>
  7139. <stem>up</stem>
  7140. </note>
  7141. <note default-x="239.00" default-y="-170.00" dynamics="141.11">
  7142. <pitch>
  7143. <step>G</step>
  7144. <octave>3</octave>
  7145. </pitch>
  7146. <duration>1</duration>
  7147. <voice>1</voice>
  7148. <type>eighth</type>
  7149. <stem>up</stem>
  7150. <beam number="1">end</beam>
  7151. <notations>
  7152. <articulations>
  7153. <staccato/>
  7154. </articulations>
  7155. </notations>
  7156. </note>
  7157. <note default-x="250.87" default-y="-165.00" dynamics="141.11">
  7158. <chord/>
  7159. <pitch>
  7160. <step>A</step>
  7161. <octave>3</octave>
  7162. </pitch>
  7163. <duration>1</duration>
  7164. <voice>1</voice>
  7165. <type>eighth</type>
  7166. <stem>up</stem>
  7167. </note>
  7168. <note default-x="239.00" default-y="-155.00" dynamics="141.11">
  7169. <chord/>
  7170. <pitch>
  7171. <step>C</step>
  7172. <alter>1</alter>
  7173. <octave>4</octave>
  7174. </pitch>
  7175. <duration>1</duration>
  7176. <voice>1</voice>
  7177. <type>eighth</type>
  7178. <stem>up</stem>
  7179. </note>
  7180. <note default-x="239.00" default-y="-145.00" dynamics="141.11">
  7181. <chord/>
  7182. <pitch>
  7183. <step>E</step>
  7184. <octave>4</octave>
  7185. </pitch>
  7186. <duration>1</duration>
  7187. <voice>1</voice>
  7188. <type>eighth</type>
  7189. <stem>up</stem>
  7190. </note>
  7191. <barline location="right">
  7192. <bar-style>light-heavy</bar-style>
  7193. <repeat direction="backward"/>
  7194. </barline>
  7195. </measure>
  7196. <measure number="23" width="210.07">
  7197. <note default-x="12.36" default-y="-170.00" dynamics="141.11">
  7198. <pitch>
  7199. <step>G</step>
  7200. <octave>3</octave>
  7201. </pitch>
  7202. <duration>1</duration>
  7203. <voice>1</voice>
  7204. <type>eighth</type>
  7205. <stem>up</stem>
  7206. <beam number="1">begin</beam>
  7207. <notations>
  7208. <slur type="start" number="1"/>
  7209. </notations>
  7210. </note>
  7211. <note default-x="24.23" default-y="-165.00" dynamics="141.11">
  7212. <chord/>
  7213. <pitch>
  7214. <step>A</step>
  7215. <octave>3</octave>
  7216. </pitch>
  7217. <duration>1</duration>
  7218. <voice>1</voice>
  7219. <type>eighth</type>
  7220. <stem>up</stem>
  7221. </note>
  7222. <note default-x="12.36" default-y="-155.00" dynamics="141.11">
  7223. <chord/>
  7224. <pitch>
  7225. <step>C</step>
  7226. <alter>1</alter>
  7227. <octave>4</octave>
  7228. </pitch>
  7229. <duration>1</duration>
  7230. <voice>1</voice>
  7231. <type>eighth</type>
  7232. <stem>up</stem>
  7233. </note>
  7234. <note default-x="12.36" default-y="-145.00" dynamics="141.11">
  7235. <chord/>
  7236. <pitch>
  7237. <step>E</step>
  7238. <octave>4</octave>
  7239. </pitch>
  7240. <duration>1</duration>
  7241. <voice>1</voice>
  7242. <type>eighth</type>
  7243. <stem>up</stem>
  7244. </note>
  7245. <note default-x="47.89" default-y="-175.00" dynamics="141.11">
  7246. <pitch>
  7247. <step>F</step>
  7248. <alter>1</alter>
  7249. <octave>3</octave>
  7250. </pitch>
  7251. <duration>1</duration>
  7252. <voice>1</voice>
  7253. <type>eighth</type>
  7254. <stem>up</stem>
  7255. <beam number="1">continue</beam>
  7256. <notations>
  7257. <slur type="stop" number="1"/>
  7258. </notations>
  7259. </note>
  7260. <note default-x="47.89" default-y="-165.00" dynamics="141.11">
  7261. <chord/>
  7262. <pitch>
  7263. <step>A</step>
  7264. <octave>3</octave>
  7265. </pitch>
  7266. <duration>1</duration>
  7267. <voice>1</voice>
  7268. <type>eighth</type>
  7269. <stem>up</stem>
  7270. </note>
  7271. <note default-x="47.89" default-y="-150.00" dynamics="141.11">
  7272. <chord/>
  7273. <pitch>
  7274. <step>D</step>
  7275. <octave>4</octave>
  7276. </pitch>
  7277. <duration>1</duration>
  7278. <voice>1</voice>
  7279. <type>eighth</type>
  7280. <stem>up</stem>
  7281. </note>
  7282. <note default-x="73.79" default-y="-175.00" dynamics="141.11">
  7283. <pitch>
  7284. <step>F</step>
  7285. <alter>1</alter>
  7286. <octave>3</octave>
  7287. </pitch>
  7288. <duration>1</duration>
  7289. <voice>1</voice>
  7290. <type>eighth</type>
  7291. <stem>up</stem>
  7292. <beam number="1">continue</beam>
  7293. <notations>
  7294. <articulations>
  7295. <staccato/>
  7296. </articulations>
  7297. </notations>
  7298. </note>
  7299. <note default-x="73.79" default-y="-165.00" dynamics="141.11">
  7300. <chord/>
  7301. <pitch>
  7302. <step>A</step>
  7303. <octave>3</octave>
  7304. </pitch>
  7305. <duration>1</duration>
  7306. <voice>1</voice>
  7307. <type>eighth</type>
  7308. <stem>up</stem>
  7309. </note>
  7310. <note default-x="73.79" default-y="-150.00" dynamics="141.11">
  7311. <chord/>
  7312. <pitch>
  7313. <step>D</step>
  7314. <octave>4</octave>
  7315. </pitch>
  7316. <duration>1</duration>
  7317. <voice>1</voice>
  7318. <type>eighth</type>
  7319. <stem>up</stem>
  7320. </note>
  7321. <note default-x="99.69" default-y="-175.00" dynamics="141.11">
  7322. <pitch>
  7323. <step>F</step>
  7324. <alter>1</alter>
  7325. <octave>3</octave>
  7326. </pitch>
  7327. <duration>1</duration>
  7328. <voice>1</voice>
  7329. <type>eighth</type>
  7330. <stem>up</stem>
  7331. <beam number="1">end</beam>
  7332. <notations>
  7333. <articulations>
  7334. <staccato/>
  7335. </articulations>
  7336. </notations>
  7337. </note>
  7338. <note default-x="99.69" default-y="-165.00" dynamics="141.11">
  7339. <chord/>
  7340. <pitch>
  7341. <step>A</step>
  7342. <octave>3</octave>
  7343. </pitch>
  7344. <duration>1</duration>
  7345. <voice>1</voice>
  7346. <type>eighth</type>
  7347. <stem>up</stem>
  7348. </note>
  7349. <note default-x="99.69" default-y="-150.00" dynamics="141.11">
  7350. <chord/>
  7351. <pitch>
  7352. <step>D</step>
  7353. <octave>4</octave>
  7354. </pitch>
  7355. <duration>1</duration>
  7356. <voice>1</voice>
  7357. <type>eighth</type>
  7358. <stem>up</stem>
  7359. </note>
  7360. <note default-x="125.59" default-y="-175.00" dynamics="141.11">
  7361. <pitch>
  7362. <step>F</step>
  7363. <alter>1</alter>
  7364. <octave>3</octave>
  7365. </pitch>
  7366. <duration>2</duration>
  7367. <voice>1</voice>
  7368. <type>quarter</type>
  7369. <stem>up</stem>
  7370. </note>
  7371. <note default-x="125.59" default-y="-165.00" dynamics="141.11">
  7372. <chord/>
  7373. <pitch>
  7374. <step>A</step>
  7375. <octave>3</octave>
  7376. </pitch>
  7377. <duration>2</duration>
  7378. <voice>1</voice>
  7379. <type>quarter</type>
  7380. <stem>up</stem>
  7381. </note>
  7382. <note default-x="125.59" default-y="-150.00" dynamics="141.11">
  7383. <chord/>
  7384. <pitch>
  7385. <step>D</step>
  7386. <octave>4</octave>
  7387. </pitch>
  7388. <duration>2</duration>
  7389. <voice>1</voice>
  7390. <type>quarter</type>
  7391. <stem>up</stem>
  7392. </note>
  7393. <note>
  7394. <rest/>
  7395. <duration>2</duration>
  7396. <voice>1</voice>
  7397. <type>quarter</type>
  7398. </note>
  7399. </measure>
  7400. </part>
  7401. <part id="P3">
  7402. <measure number="1" width="371.57">
  7403. <print>
  7404. <staff-layout number="1">
  7405. <staff-distance>65.00</staff-distance>
  7406. </staff-layout>
  7407. </print>
  7408. <attributes>
  7409. <divisions>2</divisions>
  7410. <key>
  7411. <fifths>2</fifths>
  7412. <mode>major</mode>
  7413. </key>
  7414. <time symbol="cut">
  7415. <beats>2</beats>
  7416. <beat-type>2</beat-type>
  7417. </time>
  7418. <clef>
  7419. <sign>F</sign>
  7420. <line>4</line>
  7421. </clef>
  7422. </attributes>
  7423. <direction placement="above">
  7424. <direction-type>
  7425. <dynamics default-x="5.33" default-y="-80.00" relative-y="95.99">
  7426. <p/>
  7427. </dynamics>
  7428. </direction-type>
  7429. <sound dynamics="66.67"/>
  7430. </direction>
  7431. <note>
  7432. <rest/>
  7433. <duration>2</duration>
  7434. <voice>1</voice>
  7435. <type>quarter</type>
  7436. </note>
  7437. <note default-x="167.88" default-y="-286.00" dynamics="141.11">
  7438. <pitch>
  7439. <step>A</step>
  7440. <octave>2</octave>
  7441. </pitch>
  7442. <duration>2</duration>
  7443. <voice>1</voice>
  7444. <type>quarter</type>
  7445. <stem>up</stem>
  7446. <notations>
  7447. <slur type="start" number="1"/>
  7448. </notations>
  7449. </note>
  7450. <note default-x="235.24" default-y="-271.00" dynamics="141.11">
  7451. <pitch>
  7452. <step>D</step>
  7453. <octave>3</octave>
  7454. </pitch>
  7455. <duration>2</duration>
  7456. <voice>1</voice>
  7457. <type>quarter</type>
  7458. <stem>down</stem>
  7459. <notations>
  7460. <slur type="stop" number="1"/>
  7461. </notations>
  7462. </note>
  7463. <note default-x="302.60" default-y="-271.00" dynamics="141.11">
  7464. <pitch>
  7465. <step>D</step>
  7466. <octave>3</octave>
  7467. </pitch>
  7468. <duration>2</duration>
  7469. <voice>1</voice>
  7470. <type>quarter</type>
  7471. <stem>down</stem>
  7472. <notations>
  7473. <articulations>
  7474. <staccato/>
  7475. </articulations>
  7476. </notations>
  7477. </note>
  7478. </measure>
  7479. <measure number="2" width="334.32">
  7480. <note default-x="12.00" default-y="-296.00" dynamics="141.11">
  7481. <pitch>
  7482. <step>F</step>
  7483. <alter>1</alter>
  7484. <octave>2</octave>
  7485. </pitch>
  7486. <duration>4</duration>
  7487. <voice>1</voice>
  7488. <type>half</type>
  7489. <stem>up</stem>
  7490. <notations>
  7491. <articulations>
  7492. <accent/>
  7493. </articulations>
  7494. </notations>
  7495. </note>
  7496. <note default-x="163.77" default-y="-286.00" dynamics="141.11">
  7497. <pitch>
  7498. <step>A</step>
  7499. <octave>2</octave>
  7500. </pitch>
  7501. <duration>2</duration>
  7502. <voice>1</voice>
  7503. <type>quarter</type>
  7504. <stem>up</stem>
  7505. <notations>
  7506. <articulations>
  7507. <staccato/>
  7508. </articulations>
  7509. </notations>
  7510. </note>
  7511. <note default-x="239.48" default-y="-321.00" dynamics="141.11">
  7512. <pitch>
  7513. <step>A</step>
  7514. <octave>1</octave>
  7515. </pitch>
  7516. <duration>2</duration>
  7517. <voice>1</voice>
  7518. <type>quarter</type>
  7519. <stem>up</stem>
  7520. <notations>
  7521. <articulations>
  7522. <staccato/>
  7523. </articulations>
  7524. </notations>
  7525. </note>
  7526. </measure>
  7527. <measure number="3" width="293.06">
  7528. <barline location="left">
  7529. <bar-style>heavy-light</bar-style>
  7530. <repeat direction="forward"/>
  7531. </barline>
  7532. <direction placement="above">
  7533. <direction-type>
  7534. <dynamics default-x="6.58" default-y="-80.00" relative-y="95.99">
  7535. <pp/>
  7536. </dynamics>
  7537. </direction-type>
  7538. <sound dynamics="55.56"/>
  7539. </direction>
  7540. <note default-x="12.94" default-y="-306.00" dynamics="141.11">
  7541. <pitch>
  7542. <step>D</step>
  7543. <octave>2</octave>
  7544. </pitch>
  7545. <duration>2</duration>
  7546. <voice>1</voice>
  7547. <type>quarter</type>
  7548. <stem>up</stem>
  7549. </note>
  7550. <note>
  7551. <rest/>
  7552. <duration>2</duration>
  7553. <voice>1</voice>
  7554. <type>quarter</type>
  7555. </note>
  7556. <note>
  7557. <rest/>
  7558. <duration>4</duration>
  7559. <voice>1</voice>
  7560. <type>half</type>
  7561. </note>
  7562. </measure>
  7563. <measure number="4" width="376.05">
  7564. <print new-system="yes">
  7565. <staff-layout number="1">
  7566. <staff-distance>65.00</staff-distance>
  7567. </staff-layout>
  7568. </print>
  7569. <note>
  7570. <rest/>
  7571. <duration>2</duration>
  7572. <voice>1</voice>
  7573. <type>quarter</type>
  7574. </note>
  7575. <note default-x="167.09" default-y="-296.00" dynamics="141.11">
  7576. <pitch>
  7577. <step>F</step>
  7578. <alter>1</alter>
  7579. <octave>2</octave>
  7580. </pitch>
  7581. <duration>2</duration>
  7582. <voice>1</voice>
  7583. <type>quarter</type>
  7584. <stem>up</stem>
  7585. <notations>
  7586. <slur type="start" number="1"/>
  7587. </notations>
  7588. </note>
  7589. <note default-x="236.21" default-y="-281.00" dynamics="141.11">
  7590. <pitch>
  7591. <step>B</step>
  7592. <octave>2</octave>
  7593. </pitch>
  7594. <duration>2</duration>
  7595. <voice>1</voice>
  7596. <type>quarter</type>
  7597. <stem>up</stem>
  7598. <notations>
  7599. <slur type="stop" number="1"/>
  7600. </notations>
  7601. </note>
  7602. <note default-x="305.33" default-y="-291.00" dynamics="141.11">
  7603. <pitch>
  7604. <step>G</step>
  7605. <alter>1</alter>
  7606. <octave>2</octave>
  7607. </pitch>
  7608. <duration>2</duration>
  7609. <voice>1</voice>
  7610. <type>quarter</type>
  7611. <accidental>sharp</accidental>
  7612. <stem>up</stem>
  7613. <notations>
  7614. <articulations>
  7615. <staccato/>
  7616. </articulations>
  7617. </notations>
  7618. </note>
  7619. </measure>
  7620. <measure number="5" width="323.33">
  7621. <note default-x="26.19" default-y="-286.00" dynamics="141.11">
  7622. <pitch>
  7623. <step>A</step>
  7624. <octave>2</octave>
  7625. </pitch>
  7626. <duration>2</duration>
  7627. <voice>1</voice>
  7628. <type>quarter</type>
  7629. <stem>up</stem>
  7630. </note>
  7631. <note>
  7632. <rest/>
  7633. <duration>2</duration>
  7634. <voice>1</voice>
  7635. <type>quarter</type>
  7636. </note>
  7637. <note default-x="169.51" default-y="-286.00" dynamics="141.11">
  7638. <pitch>
  7639. <step>A</step>
  7640. <octave>2</octave>
  7641. </pitch>
  7642. <duration>2</duration>
  7643. <voice>1</voice>
  7644. <type>quarter</type>
  7645. <stem>up</stem>
  7646. </note>
  7647. <note>
  7648. <rest/>
  7649. <duration>2</duration>
  7650. <voice>1</voice>
  7651. <type>quarter</type>
  7652. </note>
  7653. </measure>
  7654. <measure number="6" width="299.57">
  7655. <note default-x="25.60" default-y="-271.00" dynamics="141.11">
  7656. <pitch>
  7657. <step>D</step>
  7658. <octave>3</octave>
  7659. </pitch>
  7660. <duration>2</duration>
  7661. <voice>1</voice>
  7662. <type>quarter</type>
  7663. <stem>down</stem>
  7664. <notations>
  7665. <articulations>
  7666. <staccato/>
  7667. </articulations>
  7668. </notations>
  7669. </note>
  7670. <note default-x="93.69" default-y="-286.00" dynamics="141.11">
  7671. <pitch>
  7672. <step>A</step>
  7673. <octave>2</octave>
  7674. </pitch>
  7675. <duration>2</duration>
  7676. <voice>1</voice>
  7677. <type>quarter</type>
  7678. <stem>up</stem>
  7679. <notations>
  7680. <slur type="start" number="1"/>
  7681. </notations>
  7682. </note>
  7683. <note default-x="161.78" default-y="-271.00" dynamics="141.11">
  7684. <pitch>
  7685. <step>D</step>
  7686. <octave>3</octave>
  7687. </pitch>
  7688. <duration>2</duration>
  7689. <voice>1</voice>
  7690. <type>quarter</type>
  7691. <stem>down</stem>
  7692. <notations>
  7693. <slur type="stop" number="1"/>
  7694. </notations>
  7695. </note>
  7696. <note default-x="229.87" default-y="-271.00" dynamics="141.11">
  7697. <pitch>
  7698. <step>D</step>
  7699. <octave>3</octave>
  7700. </pitch>
  7701. <duration>2</duration>
  7702. <voice>1</voice>
  7703. <type>quarter</type>
  7704. <stem>down</stem>
  7705. <notations>
  7706. <articulations>
  7707. <staccato/>
  7708. </articulations>
  7709. </notations>
  7710. </note>
  7711. </measure>
  7712. <measure number="7" width="353.44">
  7713. <print new-system="yes">
  7714. <staff-layout number="1">
  7715. <staff-distance>65.00</staff-distance>
  7716. </staff-layout>
  7717. </print>
  7718. <note default-x="77.85" default-y="-296.00" dynamics="141.11">
  7719. <pitch>
  7720. <step>F</step>
  7721. <alter>1</alter>
  7722. <octave>2</octave>
  7723. </pitch>
  7724. <duration>4</duration>
  7725. <voice>1</voice>
  7726. <type>half</type>
  7727. <stem>up</stem>
  7728. <notations>
  7729. <slur type="start" number="1"/>
  7730. </notations>
  7731. </note>
  7732. <note default-x="214.66" default-y="-291.00" dynamics="141.11">
  7733. <pitch>
  7734. <step>G</step>
  7735. <octave>2</octave>
  7736. </pitch>
  7737. <duration>4</duration>
  7738. <voice>1</voice>
  7739. <type>half</type>
  7740. <stem>up</stem>
  7741. <notations>
  7742. <slur type="stop" number="1"/>
  7743. </notations>
  7744. </note>
  7745. </measure>
  7746. <measure number="8" width="297.40">
  7747. <note default-x="18.86" default-y="-286.00" dynamics="141.11">
  7748. <pitch>
  7749. <step>A</step>
  7750. <octave>2</octave>
  7751. </pitch>
  7752. <duration>2</duration>
  7753. <voice>1</voice>
  7754. <type>quarter</type>
  7755. <stem>up</stem>
  7756. <notations>
  7757. <slur type="start" number="1"/>
  7758. </notations>
  7759. </note>
  7760. <note default-x="87.49" default-y="-286.00" dynamics="141.11">
  7761. <pitch>
  7762. <step>A</step>
  7763. <alter>1</alter>
  7764. <octave>2</octave>
  7765. </pitch>
  7766. <duration>2</duration>
  7767. <voice>1</voice>
  7768. <type>quarter</type>
  7769. <accidental>sharp</accidental>
  7770. <stem>up</stem>
  7771. </note>
  7772. <note default-x="158.17" default-y="-281.00" dynamics="141.11">
  7773. <pitch>
  7774. <step>B</step>
  7775. <octave>2</octave>
  7776. </pitch>
  7777. <duration>4</duration>
  7778. <voice>1</voice>
  7779. <type>half</type>
  7780. <stem>up</stem>
  7781. <notations>
  7782. <slur type="stop" number="1"/>
  7783. </notations>
  7784. </note>
  7785. </measure>
  7786. <measure number="9" width="348.10">
  7787. <note default-x="13.64" default-y="-276.00" dynamics="141.11">
  7788. <pitch>
  7789. <step>C</step>
  7790. <alter>1</alter>
  7791. <octave>3</octave>
  7792. </pitch>
  7793. <duration>4</duration>
  7794. <voice>1</voice>
  7795. <type>half</type>
  7796. <stem>up</stem>
  7797. <notations>
  7798. <slur type="start" number="1"/>
  7799. </notations>
  7800. </note>
  7801. <note default-x="183.65" default-y="-271.00" dynamics="141.11">
  7802. <pitch>
  7803. <step>D</step>
  7804. <octave>3</octave>
  7805. </pitch>
  7806. <duration>4</duration>
  7807. <voice>1</voice>
  7808. <type>half</type>
  7809. <stem>down</stem>
  7810. <notations>
  7811. <slur type="stop" number="1"/>
  7812. </notations>
  7813. </note>
  7814. </measure>
  7815. <measure number="10" width="367.04">
  7816. <print new-page="yes">
  7817. <staff-layout number="1">
  7818. <staff-distance>65.00</staff-distance>
  7819. </staff-layout>
  7820. </print>
  7821. <note default-x="77.27" default-y="-286.00" dynamics="141.11">
  7822. <pitch>
  7823. <step>A</step>
  7824. <octave>2</octave>
  7825. </pitch>
  7826. <duration>2</duration>
  7827. <voice>1</voice>
  7828. <type>quarter</type>
  7829. <stem>up</stem>
  7830. <notations>
  7831. <slur type="start" number="1"/>
  7832. </notations>
  7833. </note>
  7834. <note default-x="149.31" default-y="-251.00" dynamics="141.11">
  7835. <pitch>
  7836. <step>A</step>
  7837. <octave>3</octave>
  7838. </pitch>
  7839. <duration>2</duration>
  7840. <voice>1</voice>
  7841. <type>quarter</type>
  7842. <stem>down</stem>
  7843. </note>
  7844. <note default-x="221.36" default-y="-256.00" dynamics="141.11">
  7845. <pitch>
  7846. <step>G</step>
  7847. <alter>1</alter>
  7848. <octave>3</octave>
  7849. </pitch>
  7850. <duration>2</duration>
  7851. <voice>1</voice>
  7852. <type>quarter</type>
  7853. <accidental>sharp</accidental>
  7854. <stem>down</stem>
  7855. </note>
  7856. <note default-x="293.40" default-y="-256.00" dynamics="141.11">
  7857. <pitch>
  7858. <step>G</step>
  7859. <octave>3</octave>
  7860. </pitch>
  7861. <duration>2</duration>
  7862. <voice>1</voice>
  7863. <type>quarter</type>
  7864. <accidental>natural</accidental>
  7865. <stem>down</stem>
  7866. <notations>
  7867. <slur type="stop" number="1"/>
  7868. </notations>
  7869. </note>
  7870. </measure>
  7871. <measure number="11" width="315.23">
  7872. <note default-x="12.94" default-y="-261.00" dynamics="141.11">
  7873. <pitch>
  7874. <step>F</step>
  7875. <alter>1</alter>
  7876. <octave>3</octave>
  7877. </pitch>
  7878. <duration>2</duration>
  7879. <voice>1</voice>
  7880. <type>quarter</type>
  7881. <stem>down</stem>
  7882. <notations>
  7883. <slur type="start" number="1"/>
  7884. </notations>
  7885. </note>
  7886. <note default-x="87.83" default-y="-271.00" dynamics="141.11">
  7887. <pitch>
  7888. <step>D</step>
  7889. <octave>3</octave>
  7890. </pitch>
  7891. <duration>2</duration>
  7892. <voice>1</voice>
  7893. <type>quarter</type>
  7894. <stem>down</stem>
  7895. </note>
  7896. <note default-x="162.72" default-y="-276.00" dynamics="141.11">
  7897. <pitch>
  7898. <step>C</step>
  7899. <alter>1</alter>
  7900. <octave>3</octave>
  7901. </pitch>
  7902. <duration>2</duration>
  7903. <voice>1</voice>
  7904. <type>quarter</type>
  7905. <stem>up</stem>
  7906. </note>
  7907. <note default-x="237.61" default-y="-286.00" dynamics="141.11">
  7908. <pitch>
  7909. <step>A</step>
  7910. <octave>2</octave>
  7911. </pitch>
  7912. <duration>2</duration>
  7913. <voice>1</voice>
  7914. <type>quarter</type>
  7915. <stem>up</stem>
  7916. <notations>
  7917. <slur type="stop" number="1"/>
  7918. </notations>
  7919. </note>
  7920. </measure>
  7921. <measure number="12" width="316.67">
  7922. <note default-x="14.00" default-y="-271.00" dynamics="141.11">
  7923. <pitch>
  7924. <step>D</step>
  7925. <octave>3</octave>
  7926. </pitch>
  7927. <duration>2</duration>
  7928. <voice>1</voice>
  7929. <type>quarter</type>
  7930. <stem>down</stem>
  7931. <notations>
  7932. <slur type="start" number="1"/>
  7933. </notations>
  7934. </note>
  7935. <note default-x="89.27" default-y="-286.00" dynamics="141.11">
  7936. <pitch>
  7937. <step>A</step>
  7938. <octave>2</octave>
  7939. </pitch>
  7940. <duration>1</duration>
  7941. <voice>1</voice>
  7942. <type>eighth</type>
  7943. <stem>down</stem>
  7944. <beam number="1">begin</beam>
  7945. </note>
  7946. <note default-x="126.90" default-y="-251.00">
  7947. <pitch>
  7948. <step>A</step>
  7949. <octave>3</octave>
  7950. </pitch>
  7951. <duration>1</duration>
  7952. <voice>1</voice>
  7953. <type>eighth</type>
  7954. <stem>down</stem>
  7955. <beam number="1">end</beam>
  7956. </note>
  7957. <note default-x="164.53" default-y="-256.00" dynamics="141.11">
  7958. <pitch>
  7959. <step>G</step>
  7960. <alter>1</alter>
  7961. <octave>3</octave>
  7962. </pitch>
  7963. <duration>2</duration>
  7964. <voice>1</voice>
  7965. <type>quarter</type>
  7966. <accidental>sharp</accidental>
  7967. <stem>down</stem>
  7968. </note>
  7969. <note default-x="239.80" default-y="-256.00" dynamics="141.11">
  7970. <pitch>
  7971. <step>G</step>
  7972. <octave>3</octave>
  7973. </pitch>
  7974. <duration>2</duration>
  7975. <voice>1</voice>
  7976. <type>quarter</type>
  7977. <accidental>natural</accidental>
  7978. <stem>down</stem>
  7979. <notations>
  7980. <slur type="stop" number="1"/>
  7981. </notations>
  7982. </note>
  7983. </measure>
  7984. <measure number="13" width="377.84">
  7985. <print new-system="yes">
  7986. <staff-layout number="1">
  7987. <staff-distance>65.00</staff-distance>
  7988. </staff-layout>
  7989. </print>
  7990. <note default-x="87.16" default-y="-261.00" dynamics="141.11">
  7991. <pitch>
  7992. <step>F</step>
  7993. <alter>1</alter>
  7994. <octave>3</octave>
  7995. </pitch>
  7996. <duration>2</duration>
  7997. <voice>1</voice>
  7998. <type>quarter</type>
  7999. <stem>down</stem>
  8000. <notations>
  8001. <slur type="start" number="1"/>
  8002. </notations>
  8003. </note>
  8004. <note default-x="156.92" default-y="-271.00" dynamics="141.11">
  8005. <pitch>
  8006. <step>D</step>
  8007. <octave>3</octave>
  8008. </pitch>
  8009. <duration>2</duration>
  8010. <voice>1</voice>
  8011. <type>quarter</type>
  8012. <stem>down</stem>
  8013. </note>
  8014. <note default-x="226.67" default-y="-276.00">
  8015. <pitch>
  8016. <step>C</step>
  8017. <alter>1</alter>
  8018. <octave>3</octave>
  8019. </pitch>
  8020. <duration>3</duration>
  8021. <voice>1</voice>
  8022. <type>quarter</type>
  8023. <dot/>
  8024. <stem>up</stem>
  8025. </note>
  8026. <note default-x="341.21" default-y="-286.00" dynamics="141.11">
  8027. <pitch>
  8028. <step>A</step>
  8029. <octave>2</octave>
  8030. </pitch>
  8031. <duration>1</duration>
  8032. <voice>1</voice>
  8033. <type>eighth</type>
  8034. <stem>up</stem>
  8035. <notations>
  8036. <slur type="stop" number="1"/>
  8037. </notations>
  8038. </note>
  8039. </measure>
  8040. <measure number="14" width="324.65">
  8041. <note default-x="25.83" default-y="-271.00" dynamics="141.11">
  8042. <pitch>
  8043. <step>D</step>
  8044. <octave>3</octave>
  8045. </pitch>
  8046. <duration>4</duration>
  8047. <voice>1</voice>
  8048. <type>half</type>
  8049. <stem>down</stem>
  8050. <notations>
  8051. <slur type="start" number="1"/>
  8052. </notations>
  8053. </note>
  8054. <note default-x="174.62" default-y="-266.00" dynamics="141.11">
  8055. <pitch>
  8056. <step>E</step>
  8057. <octave>3</octave>
  8058. </pitch>
  8059. <duration>2</duration>
  8060. <voice>1</voice>
  8061. <type>quarter</type>
  8062. <stem>down</stem>
  8063. </note>
  8064. <direction placement="above">
  8065. <direction-type>
  8066. <dynamics default-x="3.29" default-y="-80.00" relative-y="95.99">
  8067. <other-dynamics>cresc.</other-dynamics>
  8068. </dynamics>
  8069. </direction-type>
  8070. </direction>
  8071. <note default-x="248.84" default-y="-261.00" dynamics="141.11">
  8072. <pitch>
  8073. <step>F</step>
  8074. <alter>1</alter>
  8075. <octave>3</octave>
  8076. </pitch>
  8077. <duration>2</duration>
  8078. <voice>1</voice>
  8079. <type>quarter</type>
  8080. <stem>down</stem>
  8081. <notations>
  8082. <slur type="stop" number="1"/>
  8083. </notations>
  8084. </note>
  8085. </measure>
  8086. <measure number="15" width="296.45">
  8087. <note default-x="27.05" default-y="-256.00" dynamics="141.11">
  8088. <pitch>
  8089. <step>G</step>
  8090. <octave>3</octave>
  8091. </pitch>
  8092. <duration>4</duration>
  8093. <voice>1</voice>
  8094. <type>half</type>
  8095. <stem>down</stem>
  8096. <notations>
  8097. <slur type="start" number="1"/>
  8098. </notations>
  8099. </note>
  8100. <note default-x="164.05" default-y="-256.00" dynamics="141.11">
  8101. <pitch>
  8102. <step>G</step>
  8103. <alter>1</alter>
  8104. <octave>3</octave>
  8105. </pitch>
  8106. <duration>4</duration>
  8107. <voice>1</voice>
  8108. <type>half</type>
  8109. <accidental>sharp</accidental>
  8110. <stem>down</stem>
  8111. <notations>
  8112. <slur type="stop" number="1"/>
  8113. </notations>
  8114. </note>
  8115. </measure>
  8116. <measure number="16" width="365.96">
  8117. <print new-system="yes">
  8118. <staff-layout number="1">
  8119. <staff-distance>65.00</staff-distance>
  8120. </staff-layout>
  8121. </print>
  8122. <direction placement="above">
  8123. <direction-type>
  8124. <wedge type="crescendo" number="1" default-y="25.00"/>
  8125. </direction-type>
  8126. </direction>
  8127. <note default-x="90.04" default-y="-251.00" dynamics="141.11">
  8128. <pitch>
  8129. <step>A</step>
  8130. <octave>3</octave>
  8131. </pitch>
  8132. <duration>4</duration>
  8133. <voice>1</voice>
  8134. <type>half</type>
  8135. <stem>down</stem>
  8136. <notations>
  8137. <slur type="start" number="1"/>
  8138. </notations>
  8139. </note>
  8140. <direction placement="above">
  8141. <direction-type>
  8142. <wedge type="stop" number="1"/>
  8143. </direction-type>
  8144. </direction>
  8145. <direction placement="above">
  8146. <direction-type>
  8147. <wedge type="diminuendo" number="1" default-y="25.00"/>
  8148. </direction-type>
  8149. </direction>
  8150. <note default-x="226.57" default-y="-251.00" dynamics="141.11">
  8151. <pitch>
  8152. <step>A</step>
  8153. <alter>1</alter>
  8154. <octave>3</octave>
  8155. </pitch>
  8156. <duration>4</duration>
  8157. <voice>1</voice>
  8158. <type>half</type>
  8159. <accidental>sharp</accidental>
  8160. <stem>down</stem>
  8161. <notations>
  8162. <slur type="stop" number="1"/>
  8163. </notations>
  8164. </note>
  8165. <direction placement="above">
  8166. <direction-type>
  8167. <wedge type="stop" number="1"/>
  8168. </direction-type>
  8169. </direction>
  8170. </measure>
  8171. <measure number="17" width="290.96">
  8172. <note default-x="25.83" default-y="-246.00" dynamics="141.11">
  8173. <pitch>
  8174. <step>B</step>
  8175. <octave>3</octave>
  8176. </pitch>
  8177. <duration>4</duration>
  8178. <voice>1</voice>
  8179. <type>half</type>
  8180. <stem>down</stem>
  8181. <notations>
  8182. <slur type="start" number="1"/>
  8183. </notations>
  8184. </note>
  8185. <direction placement="above">
  8186. <direction-type>
  8187. <dynamics default-x="3.29" default-y="-80.00" relative-y="95.99">
  8188. <p/>
  8189. </dynamics>
  8190. </direction-type>
  8191. <sound dynamics="66.67"/>
  8192. </direction>
  8193. <note default-x="157.42" default-y="-256.00" dynamics="141.11">
  8194. <pitch>
  8195. <step>G</step>
  8196. <alter>1</alter>
  8197. <octave>3</octave>
  8198. </pitch>
  8199. <duration>4</duration>
  8200. <voice>1</voice>
  8201. <type>half</type>
  8202. <accidental>sharp</accidental>
  8203. <stem>down</stem>
  8204. <notations>
  8205. <slur type="stop" number="1"/>
  8206. </notations>
  8207. </note>
  8208. </measure>
  8209. <measure number="18" width="342.02">
  8210. <note default-x="13.64" default-y="-251.00" dynamics="141.11">
  8211. <pitch>
  8212. <step>A</step>
  8213. <octave>3</octave>
  8214. </pitch>
  8215. <duration>4</duration>
  8216. <voice>1</voice>
  8217. <type>half</type>
  8218. <stem>down</stem>
  8219. <notations>
  8220. <slur type="start" number="1"/>
  8221. </notations>
  8222. </note>
  8223. <note default-x="176.85" default-y="-286.00" dynamics="141.11">
  8224. <pitch>
  8225. <step>A</step>
  8226. <octave>2</octave>
  8227. </pitch>
  8228. <duration>4</duration>
  8229. <voice>1</voice>
  8230. <type>half</type>
  8231. <stem>up</stem>
  8232. <notations>
  8233. <slur type="stop" number="1"/>
  8234. </notations>
  8235. </note>
  8236. </measure>
  8237. <measure number="19" width="998.94">
  8238. <print new-page="yes">
  8239. <staff-layout number="1">
  8240. <staff-distance>65.00</staff-distance>
  8241. </staff-layout>
  8242. </print>
  8243. <direction placement="above">
  8244. <direction-type>
  8245. <wedge type="crescendo" number="1" default-y="25.00"/>
  8246. </direction-type>
  8247. </direction>
  8248. <note default-x="94.28" default-y="-271.00" dynamics="141.11">
  8249. <pitch>
  8250. <step>D</step>
  8251. <octave>3</octave>
  8252. </pitch>
  8253. <duration>2</duration>
  8254. <voice>1</voice>
  8255. <type>quarter</type>
  8256. <stem>down</stem>
  8257. </note>
  8258. <note>
  8259. <rest/>
  8260. <duration>2</duration>
  8261. <voice>1</voice>
  8262. <type>quarter</type>
  8263. </note>
  8264. <note>
  8265. <rest/>
  8266. <duration>4</duration>
  8267. <voice>1</voice>
  8268. <type>half</type>
  8269. </note>
  8270. <direction placement="above">
  8271. <direction-type>
  8272. <wedge type="stop" number="1"/>
  8273. </direction-type>
  8274. </direction>
  8275. </measure>
  8276. <measure number="20" width="255.67">
  8277. <print new-system="yes">
  8278. <staff-layout number="1">
  8279. <staff-distance>65.00</staff-distance>
  8280. </staff-layout>
  8281. </print>
  8282. <direction placement="above">
  8283. <direction-type>
  8284. <dynamics default-x="6.58" default-y="-80.00" relative-y="95.99">
  8285. <fp/>
  8286. </dynamics>
  8287. </direction-type>
  8288. </direction>
  8289. <note default-x="77.27" default-y="-285.00" dynamics="141.11">
  8290. <pitch>
  8291. <step>G</step>
  8292. <octave>1</octave>
  8293. </pitch>
  8294. <duration>4</duration>
  8295. <voice>1</voice>
  8296. <type>half</type>
  8297. <stem>up</stem>
  8298. </note>
  8299. <note default-x="77.27" default-y="-250.00" dynamics="141.11">
  8300. <chord/>
  8301. <pitch>
  8302. <step>G</step>
  8303. <octave>2</octave>
  8304. </pitch>
  8305. <duration>4</duration>
  8306. <voice>1</voice>
  8307. <type>half</type>
  8308. <stem>up</stem>
  8309. </note>
  8310. <direction placement="above">
  8311. <direction-type>
  8312. <wedge type="diminuendo" number="1" default-y="25.00"/>
  8313. </direction-type>
  8314. </direction>
  8315. <note>
  8316. <rest/>
  8317. <duration>1</duration>
  8318. <voice>1</voice>
  8319. <type>eighth</type>
  8320. </note>
  8321. <note default-x="187.11" default-y="-250.00" dynamics="141.11">
  8322. <pitch>
  8323. <step>G</step>
  8324. <octave>2</octave>
  8325. </pitch>
  8326. <duration>1</duration>
  8327. <voice>1</voice>
  8328. <type>eighth</type>
  8329. <stem>up</stem>
  8330. <beam number="1">begin</beam>
  8331. <notations>
  8332. <articulations>
  8333. <staccato/>
  8334. </articulations>
  8335. </notations>
  8336. </note>
  8337. <note default-x="209.01" default-y="-240.00" dynamics="141.11">
  8338. <pitch>
  8339. <step>B</step>
  8340. <octave>2</octave>
  8341. </pitch>
  8342. <duration>1</duration>
  8343. <voice>1</voice>
  8344. <type>eighth</type>
  8345. <stem>up</stem>
  8346. <beam number="1">continue</beam>
  8347. <notations>
  8348. <articulations>
  8349. <staccato/>
  8350. </articulations>
  8351. </notations>
  8352. </note>
  8353. <note default-x="230.90" default-y="-235.00" dynamics="141.11">
  8354. <pitch>
  8355. <step>C</step>
  8356. <alter>1</alter>
  8357. <octave>3</octave>
  8358. </pitch>
  8359. <duration>1</duration>
  8360. <voice>1</voice>
  8361. <type>eighth</type>
  8362. <stem>up</stem>
  8363. <beam number="1">end</beam>
  8364. <notations>
  8365. <articulations>
  8366. <staccato/>
  8367. </articulations>
  8368. </notations>
  8369. </note>
  8370. <direction placement="above">
  8371. <direction-type>
  8372. <wedge type="stop" number="1"/>
  8373. </direction-type>
  8374. </direction>
  8375. </measure>
  8376. <measure number="21" width="240.04">
  8377. <direction placement="above">
  8378. <direction-type>
  8379. <dynamics default-x="6.58" default-y="-80.00" relative-y="95.99">
  8380. <fp/>
  8381. </dynamics>
  8382. </direction-type>
  8383. </direction>
  8384. <note default-x="12.00" default-y="-265.00" dynamics="141.11">
  8385. <pitch>
  8386. <step>D</step>
  8387. <octave>2</octave>
  8388. </pitch>
  8389. <duration>4</duration>
  8390. <voice>1</voice>
  8391. <type>half</type>
  8392. <stem>up</stem>
  8393. </note>
  8394. <note default-x="12.00" default-y="-230.00" dynamics="141.11">
  8395. <chord/>
  8396. <pitch>
  8397. <step>D</step>
  8398. <octave>3</octave>
  8399. </pitch>
  8400. <duration>4</duration>
  8401. <voice>1</voice>
  8402. <type>half</type>
  8403. <stem>up</stem>
  8404. </note>
  8405. <note>
  8406. <rest/>
  8407. <duration>1</duration>
  8408. <voice>1</voice>
  8409. <type>eighth</type>
  8410. </note>
  8411. <note default-x="153.66" default-y="-230.00" dynamics="141.11">
  8412. <pitch>
  8413. <step>D</step>
  8414. <octave>3</octave>
  8415. </pitch>
  8416. <duration>1</duration>
  8417. <voice>1</voice>
  8418. <type>eighth</type>
  8419. <stem>down</stem>
  8420. <beam number="1">begin</beam>
  8421. <notations>
  8422. <articulations>
  8423. <staccato/>
  8424. </articulations>
  8425. </notations>
  8426. </note>
  8427. <note default-x="181.92" default-y="-225.00" dynamics="141.11">
  8428. <pitch>
  8429. <step>E</step>
  8430. <octave>3</octave>
  8431. </pitch>
  8432. <duration>1</duration>
  8433. <voice>1</voice>
  8434. <type>eighth</type>
  8435. <stem>down</stem>
  8436. <beam number="1">continue</beam>
  8437. <notations>
  8438. <articulations>
  8439. <staccato/>
  8440. </articulations>
  8441. </notations>
  8442. </note>
  8443. <note default-x="210.18" default-y="-220.00" dynamics="141.11">
  8444. <pitch>
  8445. <step>F</step>
  8446. <alter>1</alter>
  8447. <octave>3</octave>
  8448. </pitch>
  8449. <duration>1</duration>
  8450. <voice>1</voice>
  8451. <type>eighth</type>
  8452. <stem>down</stem>
  8453. <beam number="1">end</beam>
  8454. <notations>
  8455. <articulations>
  8456. <staccato/>
  8457. </articulations>
  8458. </notations>
  8459. </note>
  8460. </measure>
  8461. <measure number="22" width="293.17">
  8462. <note default-x="18.05" default-y="-250.00" dynamics="141.11">
  8463. <pitch>
  8464. <step>G</step>
  8465. <octave>2</octave>
  8466. </pitch>
  8467. <duration>4</duration>
  8468. <voice>1</voice>
  8469. <type>half</type>
  8470. <stem>up</stem>
  8471. <notations>
  8472. <articulations>
  8473. <accent/>
  8474. </articulations>
  8475. </notations>
  8476. </note>
  8477. <note default-x="18.05" default-y="-215.00" dynamics="141.11">
  8478. <chord/>
  8479. <pitch>
  8480. <step>G</step>
  8481. <octave>3</octave>
  8482. </pitch>
  8483. <duration>4</duration>
  8484. <voice>1</voice>
  8485. <type>half</type>
  8486. <stem>up</stem>
  8487. </note>
  8488. <note default-x="137.68" default-y="-245.00" dynamics="141.11">
  8489. <pitch>
  8490. <step>A</step>
  8491. <octave>2</octave>
  8492. </pitch>
  8493. <duration>4</duration>
  8494. <voice>1</voice>
  8495. <type>half</type>
  8496. <stem>up</stem>
  8497. <notations>
  8498. <articulations>
  8499. <accent/>
  8500. </articulations>
  8501. </notations>
  8502. </note>
  8503. <barline location="right">
  8504. <bar-style>light-heavy</bar-style>
  8505. <repeat direction="backward"/>
  8506. </barline>
  8507. </measure>
  8508. <measure number="23" width="210.07">
  8509. <note default-x="12.00" default-y="-265.00">
  8510. <pitch>
  8511. <step>D</step>
  8512. <octave>2</octave>
  8513. </pitch>
  8514. <duration>6</duration>
  8515. <voice>1</voice>
  8516. <type>half</type>
  8517. <dot/>
  8518. <stem>up</stem>
  8519. <notations>
  8520. <articulations>
  8521. <accent/>
  8522. </articulations>
  8523. </notations>
  8524. </note>
  8525. <note default-x="12.00" default-y="-230.00">
  8526. <chord/>
  8527. <pitch>
  8528. <step>D</step>
  8529. <octave>3</octave>
  8530. </pitch>
  8531. <duration>6</duration>
  8532. <voice>1</voice>
  8533. <type>half</type>
  8534. <dot/>
  8535. <stem>up</stem>
  8536. </note>
  8537. <note>
  8538. <rest/>
  8539. <duration>2</duration>
  8540. <voice>1</voice>
  8541. <type>quarter</type>
  8542. </note>
  8543. <barline location="right">
  8544. <bar-style>light-heavy</bar-style>
  8545. </barline>
  8546. </measure>
  8547. </part>
  8548. </score-partwise>