BrookeWestSample.musicxml 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
  3. <score-partwise version="3.1">
  4. <movement-title>West Point</movement-title>
  5. <identification>
  6. <creator type="composer">Jonatha Brooke</creator>
  7. <rights>© 1995 Dog Dream Music. All rights reserved.</rights>
  8. <encoding>
  9. <software>Finale v25 for Mac</software>
  10. <encoding-date>2017-12-12</encoding-date>
  11. <supports attribute="new-system" element="print" type="yes" value="yes"/>
  12. <supports attribute="new-page" element="print" type="yes" value="yes"/>
  13. <supports element="accidental" type="yes"/>
  14. <supports element="beam" type="yes"/>
  15. <supports element="stem" type="yes"/>
  16. </encoding>
  17. </identification>
  18. <defaults>
  19. <scaling>
  20. <millimeters>7.2319</millimeters>
  21. <tenths>40</tenths>
  22. </scaling>
  23. <page-layout>
  24. <page-height>1545</page-height>
  25. <page-width>1194</page-width>
  26. <page-margins type="both">
  27. <left-margin>140</left-margin>
  28. <right-margin>70</right-margin>
  29. <top-margin>70</top-margin>
  30. <bottom-margin>70</bottom-margin>
  31. </page-margins>
  32. </page-layout>
  33. <system-layout>
  34. <system-margins>
  35. <left-margin>0</left-margin>
  36. <right-margin>0</right-margin>
  37. </system-margins>
  38. <system-distance>181</system-distance>
  39. <top-system-distance>70</top-system-distance>
  40. </system-layout>
  41. <staff-layout>
  42. <staff-distance>81</staff-distance>
  43. </staff-layout>
  44. <appearance>
  45. <line-width type="stem">0.957</line-width>
  46. <line-width type="beam">5</line-width>
  47. <line-width type="staff">1.4583</line-width>
  48. <line-width type="light barline">1.4583</line-width>
  49. <line-width type="heavy barline">5</line-width>
  50. <line-width type="leger">1.875</line-width>
  51. <line-width type="ending">1.4583</line-width>
  52. <line-width type="wedge">0.9375</line-width>
  53. <line-width type="enclosure">1.4583</line-width>
  54. <line-width type="tuplet bracket">1.4583</line-width>
  55. <note-size type="grace">50</note-size>
  56. <note-size type="cue">50</note-size>
  57. <distance type="hyphen">60</distance>
  58. <distance type="beam">8</distance>
  59. </appearance>
  60. <music-font font-family="Jazz,handwritten" font-size="20.5"/>
  61. <word-font font-family="JazzText" font-size="10.25"/>
  62. <lyric-font font-family="JazzText" font-size="10.25"/>
  63. </defaults>
  64. <credit page="1">
  65. <credit-type>composer</credit-type>
  66. <credit-words default-x="1124" default-y="1393" font-size="12" font-weight="bold" halign="right" justify="center" valign="top" xml:space="preserve">Words and Music by
  67. Jonatha Brooke</credit-words>
  68. </credit>
  69. <credit page="1">
  70. <credit-type>rights</credit-type>
  71. <credit-words default-x="632" default-y="44" font-size="10" justify="center" valign="bottom">© 1995 Dog Dream Music. All rights reserved. Transcription by Ken Temple, Marian Russell, and Michael Good.</credit-words>
  72. </credit>
  73. <credit page="1">
  74. <credit-type>title</credit-type>
  75. <credit-words default-x="632" default-y="1458" font-size="24" font-weight="bold" justify="center" valign="top">West Point</credit-words>
  76. </credit>
  77. <part-list>
  78. <score-part id="P1">
  79. <part-name print-object="no">Voice</part-name>
  80. <score-instrument id="P1-I3">
  81. <instrument-name>Voice</instrument-name>
  82. <instrument-sound>voice.vocals</instrument-sound>
  83. <solo/>
  84. </score-instrument>
  85. <midi-instrument id="P1-I3">
  86. <midi-channel>1</midi-channel>
  87. <midi-program>55</midi-program>
  88. <volume>80</volume>
  89. <pan>0</pan>
  90. </midi-instrument>
  91. </score-part>
  92. <score-part id="P2">
  93. <part-name print-object="no">Guitar</part-name>
  94. <score-instrument id="P2-I2">
  95. <instrument-name>Acoustic Guitar (steel)</instrument-name>
  96. <instrument-sound>pluck.guitar.steel-string</instrument-sound>
  97. </score-instrument>
  98. <midi-instrument id="P2-I2">
  99. <midi-channel>2</midi-channel>
  100. <midi-program>26</midi-program>
  101. <volume>80</volume>
  102. <pan>0</pan>
  103. </midi-instrument>
  104. </score-part>
  105. </part-list>
  106. <!--=========================================================-->
  107. <part id="P1">
  108. <measure number="1">
  109. <print>
  110. <measure-numbering>none</measure-numbering>
  111. </print>
  112. <attributes>
  113. <divisions>4</divisions>
  114. <key>
  115. <fifths>6</fifths>
  116. <mode>major</mode>
  117. </key>
  118. <time symbol="common">
  119. <beats>4</beats>
  120. <beat-type>4</beat-type>
  121. </time>
  122. <clef>
  123. <sign>G</sign>
  124. <line>2</line>
  125. </clef>
  126. <staff-details print-object="no"/>
  127. </attributes>
  128. <sound tempo="84"/>
  129. <note>
  130. <rest measure="yes"/>
  131. <duration>16</duration>
  132. <voice>1</voice>
  133. </note>
  134. </measure>
  135. <!--=======================================================-->
  136. <measure number="2">
  137. <note>
  138. <rest measure="yes"/>
  139. <duration>16</duration>
  140. <voice>1</voice>
  141. </note>
  142. </measure>
  143. <!--=======================================================-->
  144. <measure number="3">
  145. <note>
  146. <rest measure="yes"/>
  147. <duration>16</duration>
  148. <voice>1</voice>
  149. </note>
  150. </measure>
  151. <!--=======================================================-->
  152. <measure number="4">
  153. <note>
  154. <rest measure="yes"/>
  155. <duration>16</duration>
  156. <voice>1</voice>
  157. </note>
  158. </measure>
  159. <!--=======================================================-->
  160. <measure number="5">
  161. <print new-system="yes"/>
  162. <note>
  163. <rest measure="yes"/>
  164. <duration>16</duration>
  165. <voice>1</voice>
  166. </note>
  167. </measure>
  168. <!--=======================================================-->
  169. <measure number="6">
  170. <note>
  171. <rest measure="yes"/>
  172. <duration>16</duration>
  173. <voice>1</voice>
  174. </note>
  175. </measure>
  176. <!--=======================================================-->
  177. <measure number="7">
  178. <note>
  179. <rest measure="yes"/>
  180. <duration>16</duration>
  181. <voice>1</voice>
  182. </note>
  183. </measure>
  184. <!--=======================================================-->
  185. <measure number="8">
  186. <note>
  187. <rest measure="yes"/>
  188. <duration>16</duration>
  189. <voice>1</voice>
  190. </note>
  191. </measure>
  192. <!--=======================================================-->
  193. <measure number="9">
  194. <note>
  195. <rest measure="yes"/>
  196. <duration>16</duration>
  197. <voice>1</voice>
  198. </note>
  199. </measure>
  200. <!--=======================================================-->
  201. <measure number="10" width="313">
  202. <print new-system="yes">
  203. <system-layout>
  204. <system-distance>83</system-distance>
  205. </system-layout>
  206. </print>
  207. <attributes>
  208. <staff-details print-object="yes"/>
  209. </attributes>
  210. <note default-x="140">
  211. <rest/>
  212. <duration>8</duration>
  213. <voice>1</voice>
  214. <type>half</type>
  215. </note>
  216. <note default-x="216">
  217. <rest/>
  218. <duration>4</duration>
  219. <voice>1</voice>
  220. <type>quarter</type>
  221. </note>
  222. <note default-x="257">
  223. <pitch>
  224. <step>F</step>
  225. <alter>1</alter>
  226. <octave>4</octave>
  227. </pitch>
  228. <duration>2</duration>
  229. <voice>1</voice>
  230. <type>eighth</type>
  231. <stem default-y="5">up</stem>
  232. <beam number="1">begin</beam>
  233. <lyric default-y="-97" number="1">
  234. <syllabic>single</syllabic>
  235. <text>I'm</text>
  236. </lyric>
  237. </note>
  238. <note default-x="284">
  239. <pitch>
  240. <step>A</step>
  241. <alter>1</alter>
  242. <octave>4</octave>
  243. </pitch>
  244. <duration>2</duration>
  245. <voice>1</voice>
  246. <type>eighth</type>
  247. <stem default-y="10">up</stem>
  248. <beam number="1">end</beam>
  249. <lyric default-y="-97" number="1">
  250. <syllabic>begin</syllabic>
  251. <text>re</text>
  252. </lyric>
  253. </note>
  254. </measure>
  255. <!--=======================================================-->
  256. <measure number="11" width="357">
  257. <note default-x="16">
  258. <pitch>
  259. <step>G</step>
  260. <alter>1</alter>
  261. <octave>4</octave>
  262. </pitch>
  263. <duration>1</duration>
  264. <voice>1</voice>
  265. <type>16th</type>
  266. <stem default-y="5">up</stem>
  267. <beam number="1">begin</beam>
  268. <beam number="2">forward hook</beam>
  269. <lyric default-y="-97" number="1">
  270. <syllabic>middle</syllabic>
  271. <text>tra</text>
  272. </lyric>
  273. </note>
  274. <note default-x="52">
  275. <pitch>
  276. <step>G</step>
  277. <alter>1</alter>
  278. <octave>4</octave>
  279. </pitch>
  280. <duration>2</duration>
  281. <voice>1</voice>
  282. <type>eighth</type>
  283. <stem default-y="5">up</stem>
  284. <beam number="1">continue</beam>
  285. <lyric default-y="-97" number="1">
  286. <syllabic>middle</syllabic>
  287. <text>vel</text>
  288. </lyric>
  289. </note>
  290. <note default-x="93">
  291. <pitch>
  292. <step>G</step>
  293. <alter>1</alter>
  294. <octave>4</octave>
  295. </pitch>
  296. <duration>2</duration>
  297. <voice>1</voice>
  298. <type>eighth</type>
  299. <stem default-y="5">up</stem>
  300. <beam number="1">continue</beam>
  301. <lyric default-y="-97" number="1">
  302. <syllabic>end</syllabic>
  303. <text>ling</text>
  304. </lyric>
  305. </note>
  306. <note default-x="134">
  307. <pitch>
  308. <step>G</step>
  309. <alter>1</alter>
  310. <octave>4</octave>
  311. </pitch>
  312. <duration>2</duration>
  313. <voice>1</voice>
  314. <type>eighth</type>
  315. <stem default-y="5">up</stem>
  316. <beam number="1">continue</beam>
  317. <lyric default-y="-97" number="1">
  318. <syllabic>single</syllabic>
  319. <text>this</text>
  320. </lyric>
  321. </note>
  322. <note default-x="172">
  323. <pitch>
  324. <step>G</step>
  325. <alter>1</alter>
  326. <octave>4</octave>
  327. </pitch>
  328. <duration>1</duration>
  329. <tie type="start"/>
  330. <voice>1</voice>
  331. <type>16th</type>
  332. <stem default-y="5">up</stem>
  333. <beam number="1">end</beam>
  334. <beam number="2">backward hook</beam>
  335. <notations>
  336. <tied type="start"/>
  337. </notations>
  338. <lyric default-y="-97" number="1">
  339. <syllabic>begin</syllabic>
  340. <text>life</text>
  341. </lyric>
  342. </note>
  343. <note default-x="219">
  344. <pitch>
  345. <step>G</step>
  346. <alter>1</alter>
  347. <octave>4</octave>
  348. </pitch>
  349. <duration>1</duration>
  350. <tie type="stop"/>
  351. <voice>1</voice>
  352. <type>16th</type>
  353. <stem default-y="5">up</stem>
  354. <beam number="1">begin</beam>
  355. <beam number="2">forward hook</beam>
  356. <notations>
  357. <tied type="stop"/>
  358. </notations>
  359. </note>
  360. <note default-x="246">
  361. <pitch>
  362. <step>F</step>
  363. <alter>1</alter>
  364. <octave>4</octave>
  365. </pitch>
  366. <duration>3</duration>
  367. <voice>1</voice>
  368. <type>eighth</type>
  369. <dot/>
  370. <stem default-y="2.5">up</stem>
  371. <beam number="1">end</beam>
  372. <lyric default-y="-97" number="1">
  373. <syllabic>end</syllabic>
  374. <text>line</text>
  375. </lyric>
  376. </note>
  377. <note default-x="293">
  378. <pitch>
  379. <step>F</step>
  380. <alter>1</alter>
  381. <octave>4</octave>
  382. </pitch>
  383. <duration>2</duration>
  384. <voice>1</voice>
  385. <type>eighth</type>
  386. <stem default-y="5">up</stem>
  387. <beam number="1">begin</beam>
  388. <lyric default-y="-97" number="1">
  389. <syllabic>single</syllabic>
  390. <text>that's</text>
  391. </lyric>
  392. </note>
  393. <note default-x="331">
  394. <pitch>
  395. <step>A</step>
  396. <alter>1</alter>
  397. <octave>4</octave>
  398. </pitch>
  399. <duration>2</duration>
  400. <voice>1</voice>
  401. <type>eighth</type>
  402. <stem default-y="10">up</stem>
  403. <beam number="1">end</beam>
  404. <lyric default-y="-97" number="1">
  405. <syllabic>single</syllabic>
  406. <text>so</text>
  407. </lyric>
  408. </note>
  409. </measure>
  410. <!--=======================================================-->
  411. <measure number="12" width="313">
  412. <note default-x="25">
  413. <pitch>
  414. <step>G</step>
  415. <alter>1</alter>
  416. <octave>4</octave>
  417. </pitch>
  418. <duration>3</duration>
  419. <voice>1</voice>
  420. <type>eighth</type>
  421. <dot/>
  422. <stem default-y="5">up</stem>
  423. <beam number="1">begin</beam>
  424. <lyric default-y="-97" number="1">
  425. <syllabic>single</syllabic>
  426. <text>close</text>
  427. </lyric>
  428. </note>
  429. <note default-x="63">
  430. <pitch>
  431. <step>F</step>
  432. <alter>1</alter>
  433. <octave>4</octave>
  434. </pitch>
  435. <duration>1</duration>
  436. <tie type="start"/>
  437. <voice>1</voice>
  438. <type>16th</type>
  439. <stem default-y="2.5">up</stem>
  440. <beam number="1">end</beam>
  441. <beam number="2">backward hook</beam>
  442. <notations>
  443. <tied type="start"/>
  444. </notations>
  445. <lyric default-y="-97" justify="left" number="1">
  446. <syllabic>single</syllabic>
  447. <text>to</text>
  448. <extend/>
  449. </lyric>
  450. </note>
  451. <note default-x="102">
  452. <pitch>
  453. <step>F</step>
  454. <alter>1</alter>
  455. <octave>4</octave>
  456. </pitch>
  457. <duration>2</duration>
  458. <tie type="stop"/>
  459. <voice>1</voice>
  460. <type>eighth</type>
  461. <stem default-y="-5">up</stem>
  462. <beam number="1">begin</beam>
  463. <notations>
  464. <tied type="stop"/>
  465. </notations>
  466. </note>
  467. <note default-x="139">
  468. <pitch>
  469. <step>E</step>
  470. <alter>1</alter>
  471. <octave>4</octave>
  472. </pitch>
  473. <duration>2</duration>
  474. <tie type="start"/>
  475. <voice>1</voice>
  476. <type>eighth</type>
  477. <stem default-y="-7">up</stem>
  478. <beam number="1">end</beam>
  479. <notations>
  480. <tied type="start"/>
  481. </notations>
  482. <lyric default-y="-97" justify="left" number="1">
  483. <syllabic>single</syllabic>
  484. <text>home</text>
  485. <extend/>
  486. </lyric>
  487. </note>
  488. <note default-x="187">
  489. <pitch>
  490. <step>E</step>
  491. <alter>1</alter>
  492. <octave>4</octave>
  493. </pitch>
  494. <duration>4</duration>
  495. <tie type="stop"/>
  496. <voice>1</voice>
  497. <type>quarter</type>
  498. <stem default-y="-4">up</stem>
  499. <notations>
  500. <tied type="stop"/>
  501. </notations>
  502. </note>
  503. <note default-x="228">
  504. <rest/>
  505. <duration>2</duration>
  506. <voice>1</voice>
  507. <type>eighth</type>
  508. </note>
  509. <note default-x="251">
  510. <pitch>
  511. <step>D</step>
  512. <alter>1</alter>
  513. <octave>4</octave>
  514. </pitch>
  515. <duration>1</duration>
  516. <voice>1</voice>
  517. <type>16th</type>
  518. <stem default-y="-10">up</stem>
  519. <beam number="1">begin</beam>
  520. <beam number="2">begin</beam>
  521. <lyric default-y="-97" number="1">
  522. <syllabic>single</syllabic>
  523. <text>We</text>
  524. </lyric>
  525. </note>
  526. <note default-x="283">
  527. <pitch>
  528. <step>E</step>
  529. <alter>1</alter>
  530. <octave>4</octave>
  531. </pitch>
  532. <duration>1</duration>
  533. <voice>1</voice>
  534. <type>16th</type>
  535. <stem default-y="-7">up</stem>
  536. <beam number="1">end</beam>
  537. <beam number="2">end</beam>
  538. <lyric default-y="-97" number="1">
  539. <syllabic>single</syllabic>
  540. <text>are</text>
  541. </lyric>
  542. </note>
  543. </measure>
  544. <!--=======================================================-->
  545. <measure number="13" width="570">
  546. <print new-system="yes">
  547. <system-layout>
  548. <system-distance>83</system-distance>
  549. </system-layout>
  550. </print>
  551. <note default-x="142">
  552. <pitch>
  553. <step>F</step>
  554. <alter>1</alter>
  555. <octave>4</octave>
  556. </pitch>
  557. <duration>1</duration>
  558. <voice>1</voice>
  559. <type>16th</type>
  560. <stem default-y="0">up</stem>
  561. <beam number="1">begin</beam>
  562. <beam number="2">forward hook</beam>
  563. <lyric default-y="-97" number="1">
  564. <syllabic>single</syllabic>
  565. <text>on</text>
  566. </lyric>
  567. </note>
  568. <note default-x="176">
  569. <pitch>
  570. <step>E</step>
  571. <alter>1</alter>
  572. <octave>4</octave>
  573. </pitch>
  574. <duration>2</duration>
  575. <voice>1</voice>
  576. <type>eighth</type>
  577. <stem default-y="0">up</stem>
  578. <beam number="1">continue</beam>
  579. <lyric default-y="-97" number="1">
  580. <syllabic>single</syllabic>
  581. <text>our</text>
  582. </lyric>
  583. </note>
  584. <note default-x="219">
  585. <pitch>
  586. <step>F</step>
  587. <alter>1</alter>
  588. <octave>4</octave>
  589. </pitch>
  590. <duration>2</duration>
  591. <voice>1</voice>
  592. <type>eighth</type>
  593. <stem default-y="0">up</stem>
  594. <beam number="1">continue</beam>
  595. <lyric default-y="-97" number="1">
  596. <syllabic>single</syllabic>
  597. <text>way</text>
  598. </lyric>
  599. </note>
  600. <note default-x="260">
  601. <pitch>
  602. <step>A</step>
  603. <alter>1</alter>
  604. <octave>3</octave>
  605. </pitch>
  606. <duration>2</duration>
  607. <voice>1</voice>
  608. <type>eighth</type>
  609. <stem default-y="0">up</stem>
  610. <beam number="1">continue</beam>
  611. <lyric default-y="-97" number="1">
  612. <syllabic>single</syllabic>
  613. <text>to</text>
  614. </lyric>
  615. </note>
  616. <note default-x="303">
  617. <pitch>
  618. <step>G</step>
  619. <alter>1</alter>
  620. <octave>3</octave>
  621. </pitch>
  622. <duration>1</duration>
  623. <tie type="start"/>
  624. <voice>1</voice>
  625. <type>16th</type>
  626. <stem default-y="0">up</stem>
  627. <beam number="1">end</beam>
  628. <beam number="2">backward hook</beam>
  629. <notations>
  630. <tied type="start"/>
  631. </notations>
  632. <lyric default-y="-97" justify="left" number="1">
  633. <syllabic>single</syllabic>
  634. <text>West</text>
  635. <extend/>
  636. </lyric>
  637. </note>
  638. <note default-x="357">
  639. <pitch>
  640. <step>G</step>
  641. <alter>1</alter>
  642. <octave>3</octave>
  643. </pitch>
  644. <duration>1</duration>
  645. <tie type="stop"/>
  646. <voice>1</voice>
  647. <type>16th</type>
  648. <stem default-y="-15">up</stem>
  649. <beam number="1">begin</beam>
  650. <beam number="2">forward hook</beam>
  651. <notations>
  652. <tied type="stop"/>
  653. </notations>
  654. </note>
  655. <note default-x="393">
  656. <pitch>
  657. <step>F</step>
  658. <alter>1</alter>
  659. <octave>3</octave>
  660. </pitch>
  661. <duration>3</duration>
  662. <voice>1</voice>
  663. <type>eighth</type>
  664. <dot/>
  665. <stem default-y="-17">up</stem>
  666. <beam number="1">end</beam>
  667. <lyric default-y="-97" number="1">
  668. <syllabic>single</syllabic>
  669. <text>Point</text>
  670. </lyric>
  671. </note>
  672. <note default-x="440">
  673. <rest/>
  674. <duration>2</duration>
  675. <voice>1</voice>
  676. <type>eighth</type>
  677. </note>
  678. <note default-x="483">
  679. <pitch>
  680. <step>D</step>
  681. <alter>1</alter>
  682. <octave>4</octave>
  683. </pitch>
  684. <duration>1</duration>
  685. <voice>1</voice>
  686. <type>16th</type>
  687. <stem default-y="-10">up</stem>
  688. <beam number="1">begin</beam>
  689. <beam number="2">begin</beam>
  690. <lyric default-y="-97" number="1">
  691. <syllabic>single</syllabic>
  692. <text>Where</text>
  693. </lyric>
  694. </note>
  695. <note default-x="533">
  696. <pitch>
  697. <step>E</step>
  698. <alter>1</alter>
  699. <octave>4</octave>
  700. </pitch>
  701. <duration>1</duration>
  702. <voice>1</voice>
  703. <type>16th</type>
  704. <stem default-y="-7.5">up</stem>
  705. <beam number="1">end</beam>
  706. <beam number="2">end</beam>
  707. <lyric default-y="-97" number="1">
  708. <syllabic>single</syllabic>
  709. <text>your</text>
  710. </lyric>
  711. </note>
  712. </measure>
  713. <!--=======================================================-->
  714. <measure number="14" width="413">
  715. <note default-x="15">
  716. <pitch>
  717. <step>F</step>
  718. <alter>1</alter>
  719. <octave>4</octave>
  720. </pitch>
  721. <duration>1</duration>
  722. <voice>1</voice>
  723. <type>16th</type>
  724. <stem default-y="-5">up</stem>
  725. <beam number="1">begin</beam>
  726. <beam number="2">begin</beam>
  727. <lyric default-y="-97" number="1">
  728. <syllabic>begin</syllabic>
  729. <text>per</text>
  730. </lyric>
  731. </note>
  732. <note default-x="57">
  733. <pitch>
  734. <step>E</step>
  735. <alter>1</alter>
  736. <octave>4</octave>
  737. </pitch>
  738. <duration>1</duration>
  739. <voice>1</voice>
  740. <type>16th</type>
  741. <stem default-y="-7.5">up</stem>
  742. <beam number="1">end</beam>
  743. <beam number="2">end</beam>
  744. <lyric default-y="-97" number="1">
  745. <syllabic>end</syllabic>
  746. <text>fect,</text>
  747. </lyric>
  748. </note>
  749. <note default-x="93">
  750. <rest/>
  751. <duration>2</duration>
  752. <voice>1</voice>
  753. <type>eighth</type>
  754. </note>
  755. <note default-x="133">
  756. <pitch>
  757. <step>D</step>
  758. <alter>1</alter>
  759. <octave>4</octave>
  760. </pitch>
  761. <duration>4</duration>
  762. <voice>1</voice>
  763. <type>quarter</type>
  764. <stem default-y="-9.5">up</stem>
  765. <lyric default-y="-97" number="1">
  766. <syllabic>single</syllabic>
  767. <text>blond</text>
  768. </lyric>
  769. </note>
  770. <note default-x="195">
  771. <pitch>
  772. <step>A</step>
  773. <alter>1</alter>
  774. <octave>3</octave>
  775. </pitch>
  776. <duration>1</duration>
  777. <voice>1</voice>
  778. <type>16th</type>
  779. <stem default-y="-20">up</stem>
  780. <beam number="1">begin</beam>
  781. <beam number="2">forward hook</beam>
  782. <lyric default-y="-97" number="1">
  783. <syllabic>begin</syllabic>
  784. <text>cou</text>
  785. </lyric>
  786. </note>
  787. <note default-x="233">
  788. <pitch>
  789. <step>G</step>
  790. <alter>1</alter>
  791. <octave>3</octave>
  792. </pitch>
  793. <duration>2</duration>
  794. <voice>1</voice>
  795. <type>eighth</type>
  796. <stem default-y="-20">up</stem>
  797. <beam number="1">continue</beam>
  798. <lyric default-y="-97" number="1">
  799. <syllabic>end</syllabic>
  800. <text>sin</text>
  801. </lyric>
  802. </note>
  803. <note default-x="278">
  804. <pitch>
  805. <step>F</step>
  806. <alter>1</alter>
  807. <octave>3</octave>
  808. </pitch>
  809. <duration>2</duration>
  810. <voice>1</voice>
  811. <type>eighth</type>
  812. <stem default-y="-20">up</stem>
  813. <beam number="1">continue</beam>
  814. <lyric default-y="-97" number="1">
  815. <syllabic>single</syllabic>
  816. <text>will</text>
  817. </lyric>
  818. </note>
  819. <note default-x="333">
  820. <pitch>
  821. <step>B</step>
  822. <octave>3</octave>
  823. </pitch>
  824. <duration>2</duration>
  825. <voice>1</voice>
  826. <type>eighth</type>
  827. <stem default-y="-20">up</stem>
  828. <beam number="1">continue</beam>
  829. <lyric default-y="-97" number="1">
  830. <syllabic>single</syllabic>
  831. <text>throw</text>
  832. </lyric>
  833. </note>
  834. <note default-x="381">
  835. <pitch>
  836. <step>A</step>
  837. <alter>1</alter>
  838. <octave>3</octave>
  839. </pitch>
  840. <duration>1</duration>
  841. <voice>1</voice>
  842. <type>16th</type>
  843. <stem default-y="-20">up</stem>
  844. <beam number="1">end</beam>
  845. <beam number="2">backward hook</beam>
  846. <lyric default-y="-97" number="1">
  847. <syllabic>single</syllabic>
  848. <text>his</text>
  849. </lyric>
  850. </note>
  851. </measure>
  852. <!--=======================================================-->
  853. <measure number="15" width="408">
  854. <print new-system="yes">
  855. <system-layout>
  856. <system-distance>77</system-distance>
  857. </system-layout>
  858. </print>
  859. <note default-x="146">
  860. <pitch>
  861. <step>A</step>
  862. <alter>1</alter>
  863. <octave>3</octave>
  864. </pitch>
  865. <duration>2</duration>
  866. <voice>1</voice>
  867. <type>eighth</type>
  868. <stem default-y="-19">up</stem>
  869. <lyric default-y="-97" number="1">
  870. <syllabic>single</syllabic>
  871. <text>hat</text>
  872. </lyric>
  873. </note>
  874. <note default-x="177">
  875. <rest/>
  876. <duration>2</duration>
  877. <voice>1</voice>
  878. <type>eighth</type>
  879. </note>
  880. <note default-x="209">
  881. <pitch>
  882. <step>F</step>
  883. <alter>1</alter>
  884. <octave>4</octave>
  885. </pitch>
  886. <duration>1</duration>
  887. <voice>1</voice>
  888. <type>16th</type>
  889. <stem default-y="5">up</stem>
  890. <beam number="1">begin</beam>
  891. <beam number="2">begin</beam>
  892. <lyric default-y="-97" number="1">
  893. <syllabic>single</syllabic>
  894. <text>in</text>
  895. </lyric>
  896. </note>
  897. <note default-x="238">
  898. <pitch>
  899. <step>G</step>
  900. <alter>1</alter>
  901. <octave>4</octave>
  902. </pitch>
  903. <duration>1</duration>
  904. <voice>1</voice>
  905. <type>16th</type>
  906. <stem default-y="7.5">up</stem>
  907. <beam number="1">continue</beam>
  908. <beam number="2">end</beam>
  909. <lyric default-y="-97" number="1">
  910. <syllabic>single</syllabic>
  911. <text>the</text>
  912. </lyric>
  913. </note>
  914. <note default-x="268">
  915. <pitch>
  916. <step>A</step>
  917. <alter>1</alter>
  918. <octave>4</octave>
  919. </pitch>
  920. <duration>2</duration>
  921. <tie type="start"/>
  922. <voice>1</voice>
  923. <type>eighth</type>
  924. <stem default-y="10">up</stem>
  925. <beam number="1">end</beam>
  926. <notations>
  927. <tied type="start"/>
  928. </notations>
  929. <lyric default-y="-97" justify="left" number="1">
  930. <syllabic>single</syllabic>
  931. <text>air</text>
  932. <extend/>
  933. </lyric>
  934. </note>
  935. <note default-x="310">
  936. <pitch>
  937. <step>A</step>
  938. <alter>1</alter>
  939. <octave>4</octave>
  940. </pitch>
  941. <duration>8</duration>
  942. <tie type="stop"/>
  943. <tie type="start"/>
  944. <voice>1</voice>
  945. <type>half</type>
  946. <stem default-y="10.5">up</stem>
  947. <notations>
  948. <tied type="stop"/>
  949. <tied type="start"/>
  950. </notations>
  951. </note>
  952. </measure>
  953. <!--=======================================================-->
  954. <measure number="16" width="328">
  955. <note default-x="10">
  956. <pitch>
  957. <step>A</step>
  958. <alter>1</alter>
  959. <octave>4</octave>
  960. </pitch>
  961. <duration>8</duration>
  962. <tie type="stop"/>
  963. <voice>1</voice>
  964. <type>half</type>
  965. <stem default-y="10.5">up</stem>
  966. <notations>
  967. <tied type="stop"/>
  968. </notations>
  969. </note>
  970. <note default-x="104">
  971. <rest/>
  972. <duration>3</duration>
  973. <voice>1</voice>
  974. <type>eighth</type>
  975. <dot/>
  976. </note>
  977. <note default-x="151">
  978. <pitch>
  979. <step>A</step>
  980. <alter>1</alter>
  981. <octave>3</octave>
  982. </pitch>
  983. <duration>1</duration>
  984. <voice>1</voice>
  985. <type>16th</type>
  986. <stem default-y="-19">up</stem>
  987. <lyric default-y="-97" number="1">
  988. <syllabic>single</syllabic>
  989. <text>And</text>
  990. </lyric>
  991. </note>
  992. <note default-x="185">
  993. <pitch>
  994. <step>A</step>
  995. <alter>1</alter>
  996. <octave>3</octave>
  997. </pitch>
  998. <duration>1</duration>
  999. <voice>1</voice>
  1000. <type>16th</type>
  1001. <stem default-y="-20">up</stem>
  1002. <beam number="1">begin</beam>
  1003. <beam number="2">forward hook</beam>
  1004. <lyric default-y="-97" number="1">
  1005. <syllabic>single</syllabic>
  1006. <text>we</text>
  1007. </lyric>
  1008. </note>
  1009. <note default-x="223">
  1010. <pitch>
  1011. <step>A</step>
  1012. <alter>1</alter>
  1013. <octave>3</octave>
  1014. </pitch>
  1015. <duration>2</duration>
  1016. <voice>1</voice>
  1017. <type>eighth</type>
  1018. <stem default-y="-20">up</stem>
  1019. <beam number="1">continue</beam>
  1020. <lyric default-y="-97" number="1">
  1021. <syllabic>single</syllabic>
  1022. <text>will</text>
  1023. </lyric>
  1024. </note>
  1025. <note default-x="273">
  1026. <pitch>
  1027. <step>A</step>
  1028. <alter>1</alter>
  1029. <octave>3</octave>
  1030. </pitch>
  1031. <duration>1</duration>
  1032. <tie type="start"/>
  1033. <voice>1</voice>
  1034. <type>16th</type>
  1035. <stem default-y="-20">up</stem>
  1036. <beam number="1">end</beam>
  1037. <beam number="2">backward hook</beam>
  1038. <notations>
  1039. <tied type="start"/>
  1040. </notations>
  1041. <lyric default-y="-97" justify="left" number="1">
  1042. <syllabic>single</syllabic>
  1043. <text>watch</text>
  1044. <extend/>
  1045. </lyric>
  1046. </note>
  1047. </measure>
  1048. <!--=======================================================-->
  1049. <measure number="17" width="247">
  1050. <note default-x="13">
  1051. <pitch>
  1052. <step>A</step>
  1053. <alter>1</alter>
  1054. <octave>3</octave>
  1055. </pitch>
  1056. <duration>1</duration>
  1057. <tie type="stop"/>
  1058. <voice>1</voice>
  1059. <type>16th</type>
  1060. <stem default-y="-15">up</stem>
  1061. <beam number="1">begin</beam>
  1062. <beam number="2">forward hook</beam>
  1063. <notations>
  1064. <tied type="stop"/>
  1065. </notations>
  1066. </note>
  1067. <note default-x="37">
  1068. <pitch>
  1069. <step>G</step>
  1070. <alter>1</alter>
  1071. <octave>3</octave>
  1072. </pitch>
  1073. <duration>2</duration>
  1074. <voice>1</voice>
  1075. <type>eighth</type>
  1076. <stem default-y="-16">up</stem>
  1077. <beam number="1">continue</beam>
  1078. <lyric default-y="-97" number="1">
  1079. <syllabic>single</syllabic>
  1080. <text>it</text>
  1081. </lyric>
  1082. </note>
  1083. <note default-x="70">
  1084. <pitch>
  1085. <step>F</step>
  1086. <alter>1</alter>
  1087. <octave>3</octave>
  1088. </pitch>
  1089. <duration>1</duration>
  1090. <tie type="start"/>
  1091. <voice>1</voice>
  1092. <type>16th</type>
  1093. <stem default-y="-17.5">up</stem>
  1094. <beam number="1">end</beam>
  1095. <beam number="2">backward hook</beam>
  1096. <notations>
  1097. <tied type="start"/>
  1098. </notations>
  1099. <lyric default-y="-97" justify="left" number="1">
  1100. <syllabic>single</syllabic>
  1101. <text>fall</text>
  1102. <extend/>
  1103. </lyric>
  1104. </note>
  1105. <note default-x="120">
  1106. <pitch>
  1107. <step>F</step>
  1108. <alter>1</alter>
  1109. <octave>3</octave>
  1110. </pitch>
  1111. <duration>12</duration>
  1112. <tie type="stop"/>
  1113. <voice>1</voice>
  1114. <type>half</type>
  1115. <dot/>
  1116. <stem default-y="-19">up</stem>
  1117. <notations>
  1118. <tied type="stop"/>
  1119. </notations>
  1120. </note>
  1121. </measure>
  1122. </part>
  1123. <!--=========================================================-->
  1124. <part id="P2">
  1125. <measure number="1" width="268">
  1126. <print>
  1127. <system-layout>
  1128. <top-system-distance>211</top-system-distance>
  1129. </system-layout>
  1130. <measure-numbering>none</measure-numbering>
  1131. </print>
  1132. <attributes>
  1133. <divisions>4</divisions>
  1134. <key print-object="no">
  1135. <fifths>6</fifths>
  1136. <mode>major</mode>
  1137. </key>
  1138. <clef>
  1139. <sign>TAB</sign>
  1140. <line>5</line>
  1141. </clef>
  1142. <staff-details>
  1143. <staff-lines>6</staff-lines>
  1144. <staff-tuning line="1">
  1145. <tuning-step>D</tuning-step>
  1146. <tuning-octave>2</tuning-octave>
  1147. </staff-tuning>
  1148. <staff-tuning line="2">
  1149. <tuning-step>A</tuning-step>
  1150. <tuning-octave>2</tuning-octave>
  1151. </staff-tuning>
  1152. <staff-tuning line="3">
  1153. <tuning-step>D</tuning-step>
  1154. <tuning-octave>3</tuning-octave>
  1155. </staff-tuning>
  1156. <staff-tuning line="4">
  1157. <tuning-step>G</tuning-step>
  1158. <tuning-octave>3</tuning-octave>
  1159. </staff-tuning>
  1160. <staff-tuning line="5">
  1161. <tuning-step>B</tuning-step>
  1162. <tuning-octave>3</tuning-octave>
  1163. </staff-tuning>
  1164. <staff-tuning line="6">
  1165. <tuning-step>D</tuning-step>
  1166. <tuning-octave>4</tuning-octave>
  1167. </staff-tuning>
  1168. <capo>4</capo>
  1169. <staff-size>183</staff-size>
  1170. </staff-details>
  1171. </attributes>
  1172. <sound tempo="84"/>
  1173. <harmony default-y="40" font-size="15.4">
  1174. <root>
  1175. <root-step>B</root-step>
  1176. </root>
  1177. <kind halign="left" text="Maj7">major-seventh</kind>
  1178. <bass>
  1179. <bass-step>D</bass-step>
  1180. <bass-alter>1</bass-alter>
  1181. </bass>
  1182. </harmony>
  1183. <direction placement="above">
  1184. <direction-type>
  1185. <words default-y="72" relative-x="-22">Tuning D-A-D-G-B-D, Capo 4th fret</words>
  1186. </direction-type>
  1187. </direction>
  1188. <note default-x="41">
  1189. <pitch>
  1190. <step>C</step>
  1191. <alter>1</alter>
  1192. <octave>3</octave>
  1193. </pitch>
  1194. <duration>1</duration>
  1195. <voice>1</voice>
  1196. <type>16th</type>
  1197. <stem>none</stem>
  1198. <notations>
  1199. <technical>
  1200. <string>5</string>
  1201. <fret>0</fret>
  1202. </technical>
  1203. </notations>
  1204. </note>
  1205. <note default-x="58">
  1206. <pitch>
  1207. <step>D</step>
  1208. <alter>1</alter>
  1209. <octave>3</octave>
  1210. </pitch>
  1211. <duration>2</duration>
  1212. <voice>1</voice>
  1213. <type>eighth</type>
  1214. <stem>none</stem>
  1215. <notations>
  1216. <technical>
  1217. <string>5</string>
  1218. <fret>2</fret>
  1219. </technical>
  1220. </notations>
  1221. </note>
  1222. <note default-x="86">
  1223. <pitch>
  1224. <step>B</step>
  1225. <octave>3</octave>
  1226. </pitch>
  1227. <duration>2</duration>
  1228. <voice>1</voice>
  1229. <type>eighth</type>
  1230. <stem>none</stem>
  1231. <notations>
  1232. <technical>
  1233. <string>3</string>
  1234. <fret>0</fret>
  1235. </technical>
  1236. </notations>
  1237. </note>
  1238. <note default-x="114">
  1239. <pitch>
  1240. <step>A</step>
  1241. <alter>1</alter>
  1242. <octave>3</octave>
  1243. </pitch>
  1244. <duration>1</duration>
  1245. <voice>1</voice>
  1246. <type>16th</type>
  1247. <stem>none</stem>
  1248. <notations>
  1249. <technical>
  1250. <string>4</string>
  1251. <fret>4</fret>
  1252. </technical>
  1253. </notations>
  1254. </note>
  1255. <note default-x="131" print-dot="no">
  1256. <pitch>
  1257. <step>D</step>
  1258. <alter>1</alter>
  1259. <octave>3</octave>
  1260. </pitch>
  1261. <duration>3</duration>
  1262. <voice>1</voice>
  1263. <type>eighth</type>
  1264. <dot/>
  1265. <stem>none</stem>
  1266. <notations>
  1267. <technical>
  1268. <string>5</string>
  1269. <fret>2</fret>
  1270. </technical>
  1271. </notations>
  1272. </note>
  1273. <note default-x="168">
  1274. <pitch>
  1275. <step>B</step>
  1276. <octave>3</octave>
  1277. </pitch>
  1278. <duration>2</duration>
  1279. <voice>1</voice>
  1280. <type>eighth</type>
  1281. <stem>none</stem>
  1282. <notations>
  1283. <technical>
  1284. <string>3</string>
  1285. <fret>0</fret>
  1286. </technical>
  1287. </notations>
  1288. </note>
  1289. <note default-x="196">
  1290. <pitch>
  1291. <step>A</step>
  1292. <alter>1</alter>
  1293. <octave>3</octave>
  1294. </pitch>
  1295. <duration>1</duration>
  1296. <voice>1</voice>
  1297. <type>16th</type>
  1298. <stem>none</stem>
  1299. <notations>
  1300. <technical>
  1301. <string>4</string>
  1302. <fret>4</fret>
  1303. </technical>
  1304. </notations>
  1305. </note>
  1306. <note default-x="213">
  1307. <pitch>
  1308. <step>D</step>
  1309. <alter>1</alter>
  1310. <octave>3</octave>
  1311. </pitch>
  1312. <duration>1</duration>
  1313. <voice>1</voice>
  1314. <type>16th</type>
  1315. <stem>none</stem>
  1316. <notations>
  1317. <technical>
  1318. <string>5</string>
  1319. <fret>2</fret>
  1320. </technical>
  1321. </notations>
  1322. </note>
  1323. <note default-x="230" print-dot="no">
  1324. <pitch>
  1325. <step>C</step>
  1326. <alter>1</alter>
  1327. <octave>3</octave>
  1328. </pitch>
  1329. <duration>3</duration>
  1330. <voice>1</voice>
  1331. <type>eighth</type>
  1332. <dot/>
  1333. <stem>none</stem>
  1334. <notations>
  1335. <technical>
  1336. <string>5</string>
  1337. <fret>0</fret>
  1338. </technical>
  1339. </notations>
  1340. </note>
  1341. </measure>
  1342. <!--=======================================================-->
  1343. <measure number="2" width="214">
  1344. <note default-x="11">
  1345. <pitch>
  1346. <step>C</step>
  1347. <alter>1</alter>
  1348. <octave>3</octave>
  1349. </pitch>
  1350. <duration>1</duration>
  1351. <voice>1</voice>
  1352. <type>16th</type>
  1353. <stem>none</stem>
  1354. <notations>
  1355. <technical>
  1356. <string>5</string>
  1357. <fret>0</fret>
  1358. </technical>
  1359. </notations>
  1360. </note>
  1361. <note default-x="26">
  1362. <pitch>
  1363. <step>D</step>
  1364. <alter>1</alter>
  1365. <octave>3</octave>
  1366. </pitch>
  1367. <duration>2</duration>
  1368. <voice>1</voice>
  1369. <type>eighth</type>
  1370. <stem>none</stem>
  1371. <notations>
  1372. <technical>
  1373. <string>5</string>
  1374. <fret>2</fret>
  1375. </technical>
  1376. </notations>
  1377. </note>
  1378. <note default-x="52">
  1379. <pitch>
  1380. <step>B</step>
  1381. <octave>3</octave>
  1382. </pitch>
  1383. <duration>2</duration>
  1384. <voice>1</voice>
  1385. <type>eighth</type>
  1386. <stem>none</stem>
  1387. <notations>
  1388. <technical>
  1389. <string>3</string>
  1390. <fret>0</fret>
  1391. </technical>
  1392. </notations>
  1393. </note>
  1394. <note default-x="76">
  1395. <pitch>
  1396. <step>A</step>
  1397. <alter>1</alter>
  1398. <octave>3</octave>
  1399. </pitch>
  1400. <duration>1</duration>
  1401. <voice>1</voice>
  1402. <type>16th</type>
  1403. <stem>none</stem>
  1404. <notations>
  1405. <technical>
  1406. <string>4</string>
  1407. <fret>4</fret>
  1408. </technical>
  1409. </notations>
  1410. </note>
  1411. <note default-x="91" print-dot="no">
  1412. <pitch>
  1413. <step>D</step>
  1414. <alter>1</alter>
  1415. <octave>3</octave>
  1416. </pitch>
  1417. <duration>3</duration>
  1418. <voice>1</voice>
  1419. <type>eighth</type>
  1420. <dot/>
  1421. <stem>none</stem>
  1422. <notations>
  1423. <technical>
  1424. <string>5</string>
  1425. <fret>2</fret>
  1426. </technical>
  1427. </notations>
  1428. </note>
  1429. <note default-x="125">
  1430. <pitch>
  1431. <step>B</step>
  1432. <octave>3</octave>
  1433. </pitch>
  1434. <duration>2</duration>
  1435. <voice>1</voice>
  1436. <type>eighth</type>
  1437. <stem>none</stem>
  1438. <notations>
  1439. <technical>
  1440. <string>3</string>
  1441. <fret>0</fret>
  1442. </technical>
  1443. </notations>
  1444. </note>
  1445. <note default-x="149">
  1446. <pitch>
  1447. <step>A</step>
  1448. <alter>1</alter>
  1449. <octave>3</octave>
  1450. </pitch>
  1451. <duration>1</duration>
  1452. <voice>1</voice>
  1453. <type>16th</type>
  1454. <stem>none</stem>
  1455. <notations>
  1456. <technical>
  1457. <string>4</string>
  1458. <fret>4</fret>
  1459. </technical>
  1460. </notations>
  1461. </note>
  1462. <note default-x="165">
  1463. <pitch>
  1464. <step>D</step>
  1465. <alter>1</alter>
  1466. <octave>3</octave>
  1467. </pitch>
  1468. <duration>1</duration>
  1469. <voice>1</voice>
  1470. <type>16th</type>
  1471. <stem>none</stem>
  1472. <notations>
  1473. <technical>
  1474. <string>5</string>
  1475. <fret>2</fret>
  1476. </technical>
  1477. </notations>
  1478. </note>
  1479. <note default-x="181" print-dot="no">
  1480. <pitch>
  1481. <step>C</step>
  1482. <alter>1</alter>
  1483. <octave>3</octave>
  1484. </pitch>
  1485. <duration>3</duration>
  1486. <voice>1</voice>
  1487. <type>eighth</type>
  1488. <dot/>
  1489. <stem>none</stem>
  1490. <notations>
  1491. <technical>
  1492. <string>5</string>
  1493. <fret>0</fret>
  1494. </technical>
  1495. </notations>
  1496. </note>
  1497. </measure>
  1498. <!--=======================================================-->
  1499. <measure number="3" width="218">
  1500. <harmony default-y="40" font-size="15.4">
  1501. <root>
  1502. <root-step>B</root-step>
  1503. </root>
  1504. <kind halign="left" text="Maj7">major-seventh</kind>
  1505. </harmony>
  1506. <note default-x="12" print-dot="no">
  1507. <pitch>
  1508. <step>B</step>
  1509. <octave>2</octave>
  1510. </pitch>
  1511. <duration>3</duration>
  1512. <voice>1</voice>
  1513. <type>eighth</type>
  1514. <dot/>
  1515. <stem>none</stem>
  1516. <notations>
  1517. <technical>
  1518. <string>6</string>
  1519. <fret>5</fret>
  1520. </technical>
  1521. </notations>
  1522. </note>
  1523. <note default-x="12" print-dot="no">
  1524. <chord/>
  1525. <pitch>
  1526. <step>F</step>
  1527. <alter>1</alter>
  1528. <octave>3</octave>
  1529. </pitch>
  1530. <duration>3</duration>
  1531. <voice>1</voice>
  1532. <type>eighth</type>
  1533. <dot/>
  1534. <stem>none</stem>
  1535. <notations>
  1536. <technical>
  1537. <string>5</string>
  1538. <fret>5</fret>
  1539. </technical>
  1540. </notations>
  1541. </note>
  1542. <note default-x="11" print-dot="no">
  1543. <chord/>
  1544. <pitch>
  1545. <step>A</step>
  1546. <alter>1</alter>
  1547. <octave>3</octave>
  1548. </pitch>
  1549. <duration>3</duration>
  1550. <voice>1</voice>
  1551. <type>eighth</type>
  1552. <dot/>
  1553. <stem>none</stem>
  1554. <notations>
  1555. <technical>
  1556. <string>4</string>
  1557. <fret>4</fret>
  1558. </technical>
  1559. </notations>
  1560. </note>
  1561. <note default-x="11" print-dot="no">
  1562. <chord/>
  1563. <pitch>
  1564. <step>B</step>
  1565. <octave>3</octave>
  1566. </pitch>
  1567. <duration>3</duration>
  1568. <voice>1</voice>
  1569. <type>eighth</type>
  1570. <dot/>
  1571. <stem>none</stem>
  1572. <notations>
  1573. <technical>
  1574. <string>3</string>
  1575. <fret>0</fret>
  1576. </technical>
  1577. </notations>
  1578. </note>
  1579. <note default-x="50" print-dot="no">
  1580. <pitch>
  1581. <step>F</step>
  1582. <alter>1</alter>
  1583. <octave>4</octave>
  1584. </pitch>
  1585. <duration>3</duration>
  1586. <voice>1</voice>
  1587. <type>eighth</type>
  1588. <dot/>
  1589. <stem>none</stem>
  1590. <notations>
  1591. <technical>
  1592. <string>2</string>
  1593. <fret>3</fret>
  1594. </technical>
  1595. </notations>
  1596. </note>
  1597. <note default-x="49" print-dot="no">
  1598. <chord/>
  1599. <pitch>
  1600. <step>F</step>
  1601. <alter>1</alter>
  1602. <octave>4</octave>
  1603. </pitch>
  1604. <duration>3</duration>
  1605. <voice>1</voice>
  1606. <type>eighth</type>
  1607. <dot/>
  1608. <stem>none</stem>
  1609. <notations>
  1610. <technical>
  1611. <string>1</string>
  1612. <fret>0</fret>
  1613. </technical>
  1614. </notations>
  1615. </note>
  1616. <note default-x="88" print-dot="no">
  1617. <pitch>
  1618. <step>B</step>
  1619. <octave>2</octave>
  1620. </pitch>
  1621. <duration>3</duration>
  1622. <voice>1</voice>
  1623. <type>eighth</type>
  1624. <dot/>
  1625. <stem>none</stem>
  1626. <notations>
  1627. <technical>
  1628. <string>6</string>
  1629. <fret>5</fret>
  1630. </technical>
  1631. </notations>
  1632. </note>
  1633. <note default-x="88" print-dot="no">
  1634. <chord/>
  1635. <pitch>
  1636. <step>F</step>
  1637. <alter>1</alter>
  1638. <octave>3</octave>
  1639. </pitch>
  1640. <duration>3</duration>
  1641. <voice>1</voice>
  1642. <type>eighth</type>
  1643. <dot/>
  1644. <stem>none</stem>
  1645. <notations>
  1646. <technical>
  1647. <string>5</string>
  1648. <fret>5</fret>
  1649. </technical>
  1650. </notations>
  1651. </note>
  1652. <note default-x="86" print-dot="no">
  1653. <chord/>
  1654. <pitch>
  1655. <step>A</step>
  1656. <alter>1</alter>
  1657. <octave>3</octave>
  1658. </pitch>
  1659. <duration>3</duration>
  1660. <voice>1</voice>
  1661. <type>eighth</type>
  1662. <dot/>
  1663. <stem>none</stem>
  1664. <notations>
  1665. <technical>
  1666. <string>4</string>
  1667. <fret>4</fret>
  1668. </technical>
  1669. </notations>
  1670. </note>
  1671. <note default-x="87" print-dot="no">
  1672. <chord/>
  1673. <pitch>
  1674. <step>B</step>
  1675. <octave>3</octave>
  1676. </pitch>
  1677. <duration>3</duration>
  1678. <voice>1</voice>
  1679. <type>eighth</type>
  1680. <dot/>
  1681. <stem>none</stem>
  1682. <notations>
  1683. <technical>
  1684. <string>3</string>
  1685. <fret>0</fret>
  1686. </technical>
  1687. </notations>
  1688. </note>
  1689. <note default-x="125" print-dot="no">
  1690. <pitch>
  1691. <step>F</step>
  1692. <alter>1</alter>
  1693. <octave>4</octave>
  1694. </pitch>
  1695. <duration>3</duration>
  1696. <voice>1</voice>
  1697. <type>eighth</type>
  1698. <dot/>
  1699. <stem>none</stem>
  1700. <notations>
  1701. <technical>
  1702. <string>2</string>
  1703. <fret>3</fret>
  1704. </technical>
  1705. </notations>
  1706. </note>
  1707. <note default-x="125" print-dot="no">
  1708. <chord/>
  1709. <pitch>
  1710. <step>F</step>
  1711. <alter>1</alter>
  1712. <octave>4</octave>
  1713. </pitch>
  1714. <duration>3</duration>
  1715. <voice>1</voice>
  1716. <type>eighth</type>
  1717. <dot/>
  1718. <stem>none</stem>
  1719. <notations>
  1720. <technical>
  1721. <string>1</string>
  1722. <fret>0</fret>
  1723. </technical>
  1724. </notations>
  1725. </note>
  1726. <note default-x="163">
  1727. <pitch>
  1728. <step>B</step>
  1729. <octave>2</octave>
  1730. </pitch>
  1731. <duration>1</duration>
  1732. <voice>1</voice>
  1733. <type>16th</type>
  1734. <stem>none</stem>
  1735. <notations>
  1736. <technical>
  1737. <string>6</string>
  1738. <fret>5</fret>
  1739. </technical>
  1740. </notations>
  1741. </note>
  1742. <note default-x="163">
  1743. <chord/>
  1744. <pitch>
  1745. <step>F</step>
  1746. <alter>1</alter>
  1747. <octave>3</octave>
  1748. </pitch>
  1749. <duration>1</duration>
  1750. <voice>1</voice>
  1751. <type>16th</type>
  1752. <stem>none</stem>
  1753. <notations>
  1754. <technical>
  1755. <string>5</string>
  1756. <fret>5</fret>
  1757. </technical>
  1758. </notations>
  1759. </note>
  1760. <note default-x="162">
  1761. <chord/>
  1762. <pitch>
  1763. <step>A</step>
  1764. <alter>1</alter>
  1765. <octave>3</octave>
  1766. </pitch>
  1767. <duration>1</duration>
  1768. <voice>1</voice>
  1769. <type>16th</type>
  1770. <stem>none</stem>
  1771. <notations>
  1772. <technical>
  1773. <string>4</string>
  1774. <fret>4</fret>
  1775. </technical>
  1776. </notations>
  1777. </note>
  1778. <note default-x="162">
  1779. <chord/>
  1780. <pitch>
  1781. <step>B</step>
  1782. <octave>3</octave>
  1783. </pitch>
  1784. <duration>1</duration>
  1785. <voice>1</voice>
  1786. <type>16th</type>
  1787. <stem>none</stem>
  1788. <notations>
  1789. <technical>
  1790. <string>3</string>
  1791. <fret>0</fret>
  1792. </technical>
  1793. </notations>
  1794. </note>
  1795. <note default-x="180" print-dot="no">
  1796. <pitch>
  1797. <step>D</step>
  1798. <alter>1</alter>
  1799. <octave>4</octave>
  1800. </pitch>
  1801. <duration>3</duration>
  1802. <voice>1</voice>
  1803. <type>eighth</type>
  1804. <dot/>
  1805. <stem>none</stem>
  1806. <notations>
  1807. <technical>
  1808. <string>2</string>
  1809. <fret>0</fret>
  1810. </technical>
  1811. </notations>
  1812. </note>
  1813. </measure>
  1814. <!--=======================================================-->
  1815. <measure number="4" width="284">
  1816. <note default-x="12" print-dot="no">
  1817. <pitch>
  1818. <step>B</step>
  1819. <octave>2</octave>
  1820. </pitch>
  1821. <duration>3</duration>
  1822. <voice>1</voice>
  1823. <type>eighth</type>
  1824. <dot/>
  1825. <stem>none</stem>
  1826. <notations>
  1827. <technical>
  1828. <string>6</string>
  1829. <fret>5</fret>
  1830. </technical>
  1831. </notations>
  1832. </note>
  1833. <note default-x="12" print-dot="no">
  1834. <chord/>
  1835. <pitch>
  1836. <step>F</step>
  1837. <alter>1</alter>
  1838. <octave>3</octave>
  1839. </pitch>
  1840. <duration>3</duration>
  1841. <voice>1</voice>
  1842. <type>eighth</type>
  1843. <dot/>
  1844. <stem>none</stem>
  1845. <notations>
  1846. <technical>
  1847. <string>5</string>
  1848. <fret>5</fret>
  1849. </technical>
  1850. </notations>
  1851. </note>
  1852. <note default-x="11" print-dot="no">
  1853. <chord/>
  1854. <pitch>
  1855. <step>A</step>
  1856. <alter>1</alter>
  1857. <octave>3</octave>
  1858. </pitch>
  1859. <duration>3</duration>
  1860. <voice>1</voice>
  1861. <type>eighth</type>
  1862. <dot/>
  1863. <stem>none</stem>
  1864. <notations>
  1865. <technical>
  1866. <string>4</string>
  1867. <fret>4</fret>
  1868. </technical>
  1869. </notations>
  1870. </note>
  1871. <note default-x="11" print-dot="no">
  1872. <chord/>
  1873. <pitch>
  1874. <step>B</step>
  1875. <octave>3</octave>
  1876. </pitch>
  1877. <duration>3</duration>
  1878. <voice>1</voice>
  1879. <type>eighth</type>
  1880. <dot/>
  1881. <stem>none</stem>
  1882. <notations>
  1883. <technical>
  1884. <string>3</string>
  1885. <fret>0</fret>
  1886. </technical>
  1887. </notations>
  1888. </note>
  1889. <note default-x="58" print-dot="no">
  1890. <pitch>
  1891. <step>F</step>
  1892. <alter>1</alter>
  1893. <octave>4</octave>
  1894. </pitch>
  1895. <duration>3</duration>
  1896. <voice>1</voice>
  1897. <type>eighth</type>
  1898. <dot/>
  1899. <stem>none</stem>
  1900. <notations>
  1901. <technical>
  1902. <string>2</string>
  1903. <fret>3</fret>
  1904. </technical>
  1905. </notations>
  1906. </note>
  1907. <note default-x="58" print-dot="no">
  1908. <chord/>
  1909. <pitch>
  1910. <step>F</step>
  1911. <alter>1</alter>
  1912. <octave>4</octave>
  1913. </pitch>
  1914. <duration>3</duration>
  1915. <voice>1</voice>
  1916. <type>eighth</type>
  1917. <dot/>
  1918. <stem>none</stem>
  1919. <notations>
  1920. <technical>
  1921. <string>1</string>
  1922. <fret>0</fret>
  1923. </technical>
  1924. </notations>
  1925. </note>
  1926. <note default-x="105">
  1927. <pitch>
  1928. <step>B</step>
  1929. <octave>2</octave>
  1930. </pitch>
  1931. <duration>1</duration>
  1932. <voice>1</voice>
  1933. <type>16th</type>
  1934. <stem>none</stem>
  1935. <notations>
  1936. <technical>
  1937. <string>6</string>
  1938. <fret>5</fret>
  1939. </technical>
  1940. </notations>
  1941. </note>
  1942. <note default-x="105">
  1943. <chord/>
  1944. <pitch>
  1945. <step>F</step>
  1946. <alter>1</alter>
  1947. <octave>3</octave>
  1948. </pitch>
  1949. <duration>1</duration>
  1950. <voice>1</voice>
  1951. <type>16th</type>
  1952. <stem>none</stem>
  1953. <notations>
  1954. <technical>
  1955. <string>5</string>
  1956. <fret>5</fret>
  1957. </technical>
  1958. </notations>
  1959. </note>
  1960. <note default-x="103">
  1961. <chord/>
  1962. <pitch>
  1963. <step>A</step>
  1964. <alter>1</alter>
  1965. <octave>3</octave>
  1966. </pitch>
  1967. <duration>1</duration>
  1968. <voice>1</voice>
  1969. <type>16th</type>
  1970. <stem>none</stem>
  1971. <notations>
  1972. <technical>
  1973. <string>4</string>
  1974. <fret>4</fret>
  1975. </technical>
  1976. </notations>
  1977. </note>
  1978. <note default-x="125">
  1979. <pitch>
  1980. <step>F</step>
  1981. <alter>1</alter>
  1982. <octave>3</octave>
  1983. </pitch>
  1984. <duration>2</duration>
  1985. <voice>1</voice>
  1986. <type>eighth</type>
  1987. <stem>none</stem>
  1988. <notations>
  1989. <technical>
  1990. <string>4</string>
  1991. <fret>0</fret>
  1992. </technical>
  1993. </notations>
  1994. </note>
  1995. <note default-x="161">
  1996. <pitch>
  1997. <step>F</step>
  1998. <alter>1</alter>
  1999. <octave>3</octave>
  2000. </pitch>
  2001. <duration>2</duration>
  2002. <voice>1</voice>
  2003. <type>eighth</type>
  2004. <stem>none</stem>
  2005. <notations>
  2006. <technical>
  2007. <string>5</string>
  2008. <fret>5</fret>
  2009. </technical>
  2010. </notations>
  2011. </note>
  2012. <note default-x="196">
  2013. <pitch>
  2014. <step>F</step>
  2015. <alter>1</alter>
  2016. <octave>3</octave>
  2017. </pitch>
  2018. <duration>1</duration>
  2019. <voice>1</voice>
  2020. <type>16th</type>
  2021. <stem>none</stem>
  2022. <notations>
  2023. <technical>
  2024. <string>5</string>
  2025. <fret>5</fret>
  2026. </technical>
  2027. </notations>
  2028. </note>
  2029. <note default-x="216">
  2030. <pitch>
  2031. <step>E</step>
  2032. <alter>1</alter>
  2033. <octave>3</octave>
  2034. </pitch>
  2035. <duration>1</duration>
  2036. <voice>1</voice>
  2037. <type>16th</type>
  2038. <stem>none</stem>
  2039. <notations>
  2040. <technical>
  2041. <pull-off number="1" type="start">P</pull-off>
  2042. <string>5</string>
  2043. <fret>4</fret>
  2044. </technical>
  2045. </notations>
  2046. </note>
  2047. <note default-x="237" print-dot="no">
  2048. <pitch>
  2049. <step>C</step>
  2050. <alter>1</alter>
  2051. <octave>3</octave>
  2052. </pitch>
  2053. <duration>3</duration>
  2054. <voice>1</voice>
  2055. <type>eighth</type>
  2056. <dot/>
  2057. <stem>none</stem>
  2058. <notations>
  2059. <technical>
  2060. <pull-off number="1" type="stop"/>
  2061. <string>5</string>
  2062. <fret>0</fret>
  2063. </technical>
  2064. </notations>
  2065. </note>
  2066. </measure>
  2067. <!--=======================================================-->
  2068. <measure number="5" width="206">
  2069. <print new-system="yes">
  2070. <system-layout>
  2071. <system-distance>83</system-distance>
  2072. </system-layout>
  2073. </print>
  2074. <harmony default-y="40" font-size="15.4">
  2075. <root>
  2076. <root-step>G</root-step>
  2077. <root-alter>1</root-alter>
  2078. </root>
  2079. <kind halign="left" text="m9">minor-ninth</kind>
  2080. </harmony>
  2081. <note default-x="11">
  2082. <pitch>
  2083. <step>F</step>
  2084. <alter>1</alter>
  2085. <octave>2</octave>
  2086. </pitch>
  2087. <duration>1</duration>
  2088. <voice>1</voice>
  2089. <type>16th</type>
  2090. <stem>none</stem>
  2091. <notations>
  2092. <technical>
  2093. <string>6</string>
  2094. <fret>0</fret>
  2095. </technical>
  2096. </notations>
  2097. </note>
  2098. <note default-x="26">
  2099. <pitch>
  2100. <step>G</step>
  2101. <alter>1</alter>
  2102. <octave>2</octave>
  2103. </pitch>
  2104. <duration>2</duration>
  2105. <voice>1</voice>
  2106. <type>eighth</type>
  2107. <stem>none</stem>
  2108. <notations>
  2109. <technical>
  2110. <string>6</string>
  2111. <fret>2</fret>
  2112. </technical>
  2113. </notations>
  2114. </note>
  2115. <note default-x="51" print-dot="no">
  2116. <pitch>
  2117. <step>A</step>
  2118. <alter>1</alter>
  2119. <octave>3</octave>
  2120. </pitch>
  2121. <duration>3</duration>
  2122. <voice>1</voice>
  2123. <type>eighth</type>
  2124. <dot/>
  2125. <stem>none</stem>
  2126. <notations>
  2127. <technical>
  2128. <string>4</string>
  2129. <fret>4</fret>
  2130. </technical>
  2131. </notations>
  2132. </note>
  2133. <note default-x="51" print-dot="no">
  2134. <chord/>
  2135. <pitch>
  2136. <step>B</step>
  2137. <octave>3</octave>
  2138. </pitch>
  2139. <duration>3</duration>
  2140. <voice>1</voice>
  2141. <type>eighth</type>
  2142. <dot/>
  2143. <stem>none</stem>
  2144. <notations>
  2145. <technical>
  2146. <string>3</string>
  2147. <fret>0</fret>
  2148. </technical>
  2149. </notations>
  2150. </note>
  2151. <note default-x="51" print-dot="no">
  2152. <chord/>
  2153. <pitch>
  2154. <step>D</step>
  2155. <alter>1</alter>
  2156. <octave>4</octave>
  2157. </pitch>
  2158. <duration>3</duration>
  2159. <voice>1</voice>
  2160. <type>eighth</type>
  2161. <dot/>
  2162. <stem>none</stem>
  2163. <notations>
  2164. <technical>
  2165. <string>2</string>
  2166. <fret>0</fret>
  2167. </technical>
  2168. </notations>
  2169. </note>
  2170. <note default-x="51" print-dot="no">
  2171. <chord/>
  2172. <pitch>
  2173. <step>F</step>
  2174. <alter>1</alter>
  2175. <octave>4</octave>
  2176. </pitch>
  2177. <duration>3</duration>
  2178. <voice>1</voice>
  2179. <type>eighth</type>
  2180. <dot/>
  2181. <stem>none</stem>
  2182. <notations>
  2183. <technical>
  2184. <string>1</string>
  2185. <fret>0</fret>
  2186. </technical>
  2187. </notations>
  2188. </note>
  2189. <note default-x="83" print-dot="no">
  2190. <pitch>
  2191. <step>G</step>
  2192. <alter>1</alter>
  2193. <octave>2</octave>
  2194. </pitch>
  2195. <duration>3</duration>
  2196. <voice>1</voice>
  2197. <type>eighth</type>
  2198. <dot/>
  2199. <stem>none</stem>
  2200. <notations>
  2201. <technical>
  2202. <string>6</string>
  2203. <fret>2</fret>
  2204. </technical>
  2205. </notations>
  2206. </note>
  2207. <note default-x="83" print-dot="no">
  2208. <chord/>
  2209. <pitch>
  2210. <step>D</step>
  2211. <alter>1</alter>
  2212. <octave>3</octave>
  2213. </pitch>
  2214. <duration>3</duration>
  2215. <voice>1</voice>
  2216. <type>eighth</type>
  2217. <dot/>
  2218. <stem>none</stem>
  2219. <notations>
  2220. <technical>
  2221. <string>5</string>
  2222. <fret>2</fret>
  2223. </technical>
  2224. </notations>
  2225. </note>
  2226. <note default-x="84" print-dot="no">
  2227. <chord/>
  2228. <pitch>
  2229. <step>A</step>
  2230. <alter>1</alter>
  2231. <octave>3</octave>
  2232. </pitch>
  2233. <duration>3</duration>
  2234. <voice>1</voice>
  2235. <type>eighth</type>
  2236. <dot/>
  2237. <stem>none</stem>
  2238. <notations>
  2239. <technical>
  2240. <string>4</string>
  2241. <fret>4</fret>
  2242. </technical>
  2243. </notations>
  2244. </note>
  2245. <note default-x="84" print-dot="no">
  2246. <chord/>
  2247. <pitch>
  2248. <step>B</step>
  2249. <octave>3</octave>
  2250. </pitch>
  2251. <duration>3</duration>
  2252. <voice>1</voice>
  2253. <type>eighth</type>
  2254. <dot/>
  2255. <stem>none</stem>
  2256. <notations>
  2257. <technical>
  2258. <string>3</string>
  2259. <fret>0</fret>
  2260. </technical>
  2261. </notations>
  2262. </note>
  2263. <note default-x="117" print-dot="no">
  2264. <pitch>
  2265. <step>A</step>
  2266. <alter>1</alter>
  2267. <octave>3</octave>
  2268. </pitch>
  2269. <duration>3</duration>
  2270. <voice>1</voice>
  2271. <type>eighth</type>
  2272. <dot/>
  2273. <stem>none</stem>
  2274. <notations>
  2275. <technical>
  2276. <string>4</string>
  2277. <fret>4</fret>
  2278. </technical>
  2279. </notations>
  2280. </note>
  2281. <note default-x="117" print-dot="no">
  2282. <chord/>
  2283. <pitch>
  2284. <step>B</step>
  2285. <octave>3</octave>
  2286. </pitch>
  2287. <duration>3</duration>
  2288. <voice>1</voice>
  2289. <type>eighth</type>
  2290. <dot/>
  2291. <stem>none</stem>
  2292. <notations>
  2293. <technical>
  2294. <string>3</string>
  2295. <fret>0</fret>
  2296. </technical>
  2297. </notations>
  2298. </note>
  2299. <note default-x="117" print-dot="no">
  2300. <chord/>
  2301. <pitch>
  2302. <step>D</step>
  2303. <alter>1</alter>
  2304. <octave>4</octave>
  2305. </pitch>
  2306. <duration>3</duration>
  2307. <voice>1</voice>
  2308. <type>eighth</type>
  2309. <dot/>
  2310. <stem>none</stem>
  2311. <notations>
  2312. <technical>
  2313. <string>2</string>
  2314. <fret>0</fret>
  2315. </technical>
  2316. </notations>
  2317. </note>
  2318. <note default-x="117" print-dot="no">
  2319. <chord/>
  2320. <pitch>
  2321. <step>F</step>
  2322. <alter>1</alter>
  2323. <octave>4</octave>
  2324. </pitch>
  2325. <duration>3</duration>
  2326. <voice>1</voice>
  2327. <type>eighth</type>
  2328. <dot/>
  2329. <stem>none</stem>
  2330. <notations>
  2331. <technical>
  2332. <string>1</string>
  2333. <fret>0</fret>
  2334. </technical>
  2335. </notations>
  2336. </note>
  2337. <note default-x="149">
  2338. <pitch>
  2339. <step>G</step>
  2340. <alter>1</alter>
  2341. <octave>2</octave>
  2342. </pitch>
  2343. <duration>1</duration>
  2344. <voice>1</voice>
  2345. <type>16th</type>
  2346. <stem>none</stem>
  2347. <notations>
  2348. <technical>
  2349. <string>6</string>
  2350. <fret>2</fret>
  2351. </technical>
  2352. </notations>
  2353. </note>
  2354. <note default-x="149">
  2355. <chord/>
  2356. <pitch>
  2357. <step>D</step>
  2358. <alter>1</alter>
  2359. <octave>3</octave>
  2360. </pitch>
  2361. <duration>1</duration>
  2362. <voice>1</voice>
  2363. <type>16th</type>
  2364. <stem>none</stem>
  2365. <notations>
  2366. <technical>
  2367. <string>5</string>
  2368. <fret>2</fret>
  2369. </technical>
  2370. </notations>
  2371. </note>
  2372. <note default-x="150">
  2373. <chord/>
  2374. <pitch>
  2375. <step>A</step>
  2376. <alter>1</alter>
  2377. <octave>3</octave>
  2378. </pitch>
  2379. <duration>1</duration>
  2380. <voice>1</voice>
  2381. <type>16th</type>
  2382. <stem>none</stem>
  2383. <notations>
  2384. <technical>
  2385. <string>4</string>
  2386. <fret>4</fret>
  2387. </technical>
  2388. </notations>
  2389. </note>
  2390. <note default-x="150">
  2391. <chord/>
  2392. <pitch>
  2393. <step>B</step>
  2394. <octave>3</octave>
  2395. </pitch>
  2396. <duration>1</duration>
  2397. <voice>1</voice>
  2398. <type>16th</type>
  2399. <stem>none</stem>
  2400. <notations>
  2401. <technical>
  2402. <string>3</string>
  2403. <fret>0</fret>
  2404. </technical>
  2405. </notations>
  2406. </note>
  2407. <note default-x="165">
  2408. <pitch>
  2409. <step>A</step>
  2410. <alter>1</alter>
  2411. <octave>3</octave>
  2412. </pitch>
  2413. <duration>2</duration>
  2414. <voice>1</voice>
  2415. <type>eighth</type>
  2416. <stem>none</stem>
  2417. <notations>
  2418. <technical>
  2419. <string>4</string>
  2420. <fret>4</fret>
  2421. </technical>
  2422. </notations>
  2423. </note>
  2424. <note default-x="165">
  2425. <chord/>
  2426. <pitch>
  2427. <step>B</step>
  2428. <octave>3</octave>
  2429. </pitch>
  2430. <duration>2</duration>
  2431. <voice>1</voice>
  2432. <type>eighth</type>
  2433. <stem>none</stem>
  2434. <notations>
  2435. <technical>
  2436. <string>3</string>
  2437. <fret>0</fret>
  2438. </technical>
  2439. </notations>
  2440. </note>
  2441. <note default-x="165">
  2442. <chord/>
  2443. <pitch>
  2444. <step>D</step>
  2445. <alter>1</alter>
  2446. <octave>4</octave>
  2447. </pitch>
  2448. <duration>2</duration>
  2449. <voice>1</voice>
  2450. <type>eighth</type>
  2451. <stem>none</stem>
  2452. <notations>
  2453. <technical>
  2454. <string>2</string>
  2455. <fret>0</fret>
  2456. </technical>
  2457. </notations>
  2458. </note>
  2459. <note default-x="165">
  2460. <chord/>
  2461. <pitch>
  2462. <step>F</step>
  2463. <alter>1</alter>
  2464. <octave>4</octave>
  2465. </pitch>
  2466. <duration>2</duration>
  2467. <voice>1</voice>
  2468. <type>eighth</type>
  2469. <stem>none</stem>
  2470. <notations>
  2471. <technical>
  2472. <string>1</string>
  2473. <fret>0</fret>
  2474. </technical>
  2475. </notations>
  2476. </note>
  2477. <note default-x="189">
  2478. <pitch>
  2479. <step>G</step>
  2480. <alter>1</alter>
  2481. <octave>2</octave>
  2482. </pitch>
  2483. <duration>1</duration>
  2484. <voice>1</voice>
  2485. <type>16th</type>
  2486. <stem>none</stem>
  2487. <notations>
  2488. <technical>
  2489. <string>6</string>
  2490. <fret>2</fret>
  2491. </technical>
  2492. </notations>
  2493. </note>
  2494. </measure>
  2495. <!--=======================================================-->
  2496. <measure number="6" width="206">
  2497. <note default-x="12">
  2498. <pitch>
  2499. <step>F</step>
  2500. <alter>1</alter>
  2501. <octave>2</octave>
  2502. </pitch>
  2503. <duration>1</duration>
  2504. <voice>1</voice>
  2505. <type>16th</type>
  2506. <stem>none</stem>
  2507. <notations>
  2508. <technical>
  2509. <string>6</string>
  2510. <fret>0</fret>
  2511. </technical>
  2512. </notations>
  2513. </note>
  2514. <note default-x="27">
  2515. <pitch>
  2516. <step>G</step>
  2517. <alter>1</alter>
  2518. <octave>2</octave>
  2519. </pitch>
  2520. <duration>2</duration>
  2521. <voice>1</voice>
  2522. <type>eighth</type>
  2523. <stem>none</stem>
  2524. <notations>
  2525. <technical>
  2526. <string>6</string>
  2527. <fret>2</fret>
  2528. </technical>
  2529. </notations>
  2530. </note>
  2531. <note default-x="51" print-dot="no">
  2532. <pitch>
  2533. <step>G</step>
  2534. <alter>1</alter>
  2535. <octave>2</octave>
  2536. </pitch>
  2537. <duration>3</duration>
  2538. <voice>1</voice>
  2539. <type>eighth</type>
  2540. <dot/>
  2541. <stem>none</stem>
  2542. <notations>
  2543. <technical>
  2544. <string>6</string>
  2545. <fret>2</fret>
  2546. </technical>
  2547. </notations>
  2548. </note>
  2549. <note default-x="51" print-dot="no">
  2550. <chord/>
  2551. <pitch>
  2552. <step>D</step>
  2553. <alter>1</alter>
  2554. <octave>3</octave>
  2555. </pitch>
  2556. <duration>3</duration>
  2557. <voice>1</voice>
  2558. <type>eighth</type>
  2559. <dot/>
  2560. <stem>none</stem>
  2561. <notations>
  2562. <technical>
  2563. <string>5</string>
  2564. <fret>2</fret>
  2565. </technical>
  2566. </notations>
  2567. </note>
  2568. <note default-x="51" print-dot="no">
  2569. <chord/>
  2570. <pitch>
  2571. <step>A</step>
  2572. <alter>1</alter>
  2573. <octave>3</octave>
  2574. </pitch>
  2575. <duration>3</duration>
  2576. <voice>1</voice>
  2577. <type>eighth</type>
  2578. <dot/>
  2579. <stem>none</stem>
  2580. <notations>
  2581. <technical>
  2582. <string>4</string>
  2583. <fret>4</fret>
  2584. </technical>
  2585. </notations>
  2586. </note>
  2587. <note default-x="84" print-dot="no">
  2588. <pitch>
  2589. <step>G</step>
  2590. <alter>1</alter>
  2591. <octave>2</octave>
  2592. </pitch>
  2593. <duration>3</duration>
  2594. <voice>1</voice>
  2595. <type>eighth</type>
  2596. <dot/>
  2597. <stem>none</stem>
  2598. <notations>
  2599. <technical>
  2600. <string>6</string>
  2601. <fret>2</fret>
  2602. </technical>
  2603. </notations>
  2604. </note>
  2605. <note default-x="84" print-dot="no">
  2606. <chord/>
  2607. <pitch>
  2608. <step>D</step>
  2609. <alter>1</alter>
  2610. <octave>3</octave>
  2611. </pitch>
  2612. <duration>3</duration>
  2613. <voice>1</voice>
  2614. <type>eighth</type>
  2615. <dot/>
  2616. <stem>none</stem>
  2617. <notations>
  2618. <technical>
  2619. <string>5</string>
  2620. <fret>2</fret>
  2621. </technical>
  2622. </notations>
  2623. </note>
  2624. <note default-x="84" print-dot="no">
  2625. <chord/>
  2626. <pitch>
  2627. <step>A</step>
  2628. <alter>1</alter>
  2629. <octave>3</octave>
  2630. </pitch>
  2631. <duration>3</duration>
  2632. <voice>1</voice>
  2633. <type>eighth</type>
  2634. <dot/>
  2635. <stem>none</stem>
  2636. <notations>
  2637. <technical>
  2638. <string>4</string>
  2639. <fret>4</fret>
  2640. </technical>
  2641. </notations>
  2642. </note>
  2643. <note default-x="84" print-dot="no">
  2644. <chord/>
  2645. <pitch>
  2646. <step>B</step>
  2647. <octave>3</octave>
  2648. </pitch>
  2649. <duration>3</duration>
  2650. <voice>1</voice>
  2651. <type>eighth</type>
  2652. <dot/>
  2653. <stem>none</stem>
  2654. <notations>
  2655. <technical>
  2656. <string>3</string>
  2657. <fret>0</fret>
  2658. </technical>
  2659. </notations>
  2660. </note>
  2661. <note default-x="117" print-dot="no">
  2662. <pitch>
  2663. <step>A</step>
  2664. <alter>1</alter>
  2665. <octave>3</octave>
  2666. </pitch>
  2667. <duration>3</duration>
  2668. <voice>1</voice>
  2669. <type>eighth</type>
  2670. <dot/>
  2671. <stem>none</stem>
  2672. <notations>
  2673. <technical>
  2674. <string>4</string>
  2675. <fret>4</fret>
  2676. </technical>
  2677. </notations>
  2678. </note>
  2679. <note default-x="117" print-dot="no">
  2680. <chord/>
  2681. <pitch>
  2682. <step>B</step>
  2683. <octave>3</octave>
  2684. </pitch>
  2685. <duration>3</duration>
  2686. <voice>1</voice>
  2687. <type>eighth</type>
  2688. <dot/>
  2689. <stem>none</stem>
  2690. <notations>
  2691. <technical>
  2692. <string>3</string>
  2693. <fret>0</fret>
  2694. </technical>
  2695. </notations>
  2696. </note>
  2697. <note default-x="117" print-dot="no">
  2698. <chord/>
  2699. <pitch>
  2700. <step>D</step>
  2701. <alter>1</alter>
  2702. <octave>4</octave>
  2703. </pitch>
  2704. <duration>3</duration>
  2705. <voice>1</voice>
  2706. <type>eighth</type>
  2707. <dot/>
  2708. <stem>none</stem>
  2709. <notations>
  2710. <technical>
  2711. <string>2</string>
  2712. <fret>0</fret>
  2713. </technical>
  2714. </notations>
  2715. </note>
  2716. <note default-x="117" print-dot="no">
  2717. <chord/>
  2718. <pitch>
  2719. <step>F</step>
  2720. <alter>1</alter>
  2721. <octave>4</octave>
  2722. </pitch>
  2723. <duration>3</duration>
  2724. <voice>1</voice>
  2725. <type>eighth</type>
  2726. <dot/>
  2727. <stem>none</stem>
  2728. <notations>
  2729. <technical>
  2730. <string>1</string>
  2731. <fret>0</fret>
  2732. </technical>
  2733. </notations>
  2734. </note>
  2735. <note default-x="150">
  2736. <pitch>
  2737. <step>G</step>
  2738. <alter>1</alter>
  2739. <octave>2</octave>
  2740. </pitch>
  2741. <duration>1</duration>
  2742. <voice>1</voice>
  2743. <type>16th</type>
  2744. <stem>none</stem>
  2745. <notations>
  2746. <technical>
  2747. <string>6</string>
  2748. <fret>2</fret>
  2749. </technical>
  2750. </notations>
  2751. </note>
  2752. <note default-x="150">
  2753. <chord/>
  2754. <pitch>
  2755. <step>D</step>
  2756. <alter>1</alter>
  2757. <octave>3</octave>
  2758. </pitch>
  2759. <duration>1</duration>
  2760. <voice>1</voice>
  2761. <type>16th</type>
  2762. <stem>none</stem>
  2763. <notations>
  2764. <technical>
  2765. <string>5</string>
  2766. <fret>2</fret>
  2767. </technical>
  2768. </notations>
  2769. </note>
  2770. <note default-x="150">
  2771. <chord/>
  2772. <pitch>
  2773. <step>A</step>
  2774. <alter>1</alter>
  2775. <octave>3</octave>
  2776. </pitch>
  2777. <duration>1</duration>
  2778. <voice>1</voice>
  2779. <type>16th</type>
  2780. <stem>none</stem>
  2781. <notations>
  2782. <technical>
  2783. <string>4</string>
  2784. <fret>4</fret>
  2785. </technical>
  2786. </notations>
  2787. </note>
  2788. <note default-x="150">
  2789. <chord/>
  2790. <pitch>
  2791. <step>B</step>
  2792. <octave>3</octave>
  2793. </pitch>
  2794. <duration>1</duration>
  2795. <voice>1</voice>
  2796. <type>16th</type>
  2797. <stem>none</stem>
  2798. <notations>
  2799. <technical>
  2800. <string>3</string>
  2801. <fret>0</fret>
  2802. </technical>
  2803. </notations>
  2804. </note>
  2805. <note default-x="165">
  2806. <pitch>
  2807. <step>A</step>
  2808. <alter>1</alter>
  2809. <octave>3</octave>
  2810. </pitch>
  2811. <duration>2</duration>
  2812. <voice>1</voice>
  2813. <type>eighth</type>
  2814. <stem>none</stem>
  2815. <notations>
  2816. <technical>
  2817. <string>4</string>
  2818. <fret>4</fret>
  2819. </technical>
  2820. </notations>
  2821. </note>
  2822. <note default-x="166">
  2823. <chord/>
  2824. <pitch>
  2825. <step>B</step>
  2826. <octave>3</octave>
  2827. </pitch>
  2828. <duration>2</duration>
  2829. <voice>1</voice>
  2830. <type>eighth</type>
  2831. <stem>none</stem>
  2832. <notations>
  2833. <technical>
  2834. <string>3</string>
  2835. <fret>0</fret>
  2836. </technical>
  2837. </notations>
  2838. </note>
  2839. <note default-x="166">
  2840. <chord/>
  2841. <pitch>
  2842. <step>D</step>
  2843. <alter>1</alter>
  2844. <octave>4</octave>
  2845. </pitch>
  2846. <duration>2</duration>
  2847. <voice>1</voice>
  2848. <type>eighth</type>
  2849. <stem>none</stem>
  2850. <notations>
  2851. <technical>
  2852. <string>2</string>
  2853. <fret>0</fret>
  2854. </technical>
  2855. </notations>
  2856. </note>
  2857. <note default-x="166">
  2858. <chord/>
  2859. <pitch>
  2860. <step>F</step>
  2861. <alter>1</alter>
  2862. <octave>4</octave>
  2863. </pitch>
  2864. <duration>2</duration>
  2865. <voice>1</voice>
  2866. <type>eighth</type>
  2867. <stem>none</stem>
  2868. <notations>
  2869. <technical>
  2870. <string>1</string>
  2871. <fret>0</fret>
  2872. </technical>
  2873. </notations>
  2874. </note>
  2875. <note default-x="190">
  2876. <pitch>
  2877. <step>G</step>
  2878. <alter>1</alter>
  2879. <octave>2</octave>
  2880. </pitch>
  2881. <duration>1</duration>
  2882. <voice>1</voice>
  2883. <type>16th</type>
  2884. <stem>none</stem>
  2885. <notations>
  2886. <technical>
  2887. <string>6</string>
  2888. <fret>2</fret>
  2889. </technical>
  2890. </notations>
  2891. </note>
  2892. </measure>
  2893. <!--=======================================================-->
  2894. <measure number="7" width="190">
  2895. <harmony default-y="40" font-size="15.4">
  2896. <root>
  2897. <root-step>F</root-step>
  2898. <root-alter>1</root-alter>
  2899. </root>
  2900. <kind halign="left" text="">major</kind>
  2901. </harmony>
  2902. <note default-x="12" print-dot="no">
  2903. <pitch>
  2904. <step>F</step>
  2905. <alter>1</alter>
  2906. <octave>2</octave>
  2907. </pitch>
  2908. <duration>3</duration>
  2909. <voice>1</voice>
  2910. <type>eighth</type>
  2911. <dot/>
  2912. <stem>none</stem>
  2913. <notations>
  2914. <technical>
  2915. <string>6</string>
  2916. <fret>0</fret>
  2917. </technical>
  2918. </notations>
  2919. </note>
  2920. <note default-x="12" print-dot="no">
  2921. <chord/>
  2922. <pitch>
  2923. <step>C</step>
  2924. <alter>1</alter>
  2925. <octave>3</octave>
  2926. </pitch>
  2927. <duration>3</duration>
  2928. <voice>1</voice>
  2929. <type>eighth</type>
  2930. <dot/>
  2931. <stem>none</stem>
  2932. <notations>
  2933. <technical>
  2934. <string>5</string>
  2935. <fret>0</fret>
  2936. </technical>
  2937. </notations>
  2938. </note>
  2939. <note default-x="44" print-dot="no">
  2940. <pitch>
  2941. <step>A</step>
  2942. <alter>1</alter>
  2943. <octave>3</octave>
  2944. </pitch>
  2945. <duration>3</duration>
  2946. <voice>1</voice>
  2947. <type>eighth</type>
  2948. <dot/>
  2949. <stem>none</stem>
  2950. <notations>
  2951. <technical>
  2952. <string>4</string>
  2953. <fret>4</fret>
  2954. </technical>
  2955. </notations>
  2956. </note>
  2957. <harmony default-y="40" font-size="15.4">
  2958. <root>
  2959. <root-step>C</root-step>
  2960. <root-alter>1</root-alter>
  2961. </root>
  2962. <kind halign="left" text="7sus4">suspended-fourth</kind>
  2963. <degree print-object="no">
  2964. <degree-value>7</degree-value>
  2965. <degree-alter>0</degree-alter>
  2966. <degree-type>add</degree-type>
  2967. </degree>
  2968. </harmony>
  2969. <note default-x="77" print-dot="no">
  2970. <pitch>
  2971. <step>C</step>
  2972. <alter>1</alter>
  2973. <octave>3</octave>
  2974. </pitch>
  2975. <duration>3</duration>
  2976. <voice>1</voice>
  2977. <type>eighth</type>
  2978. <dot/>
  2979. <stem>none</stem>
  2980. <notations>
  2981. <technical>
  2982. <string>5</string>
  2983. <fret>0</fret>
  2984. </technical>
  2985. </notations>
  2986. </note>
  2987. <note default-x="76" print-dot="no">
  2988. <chord/>
  2989. <pitch>
  2990. <step>G</step>
  2991. <alter>1</alter>
  2992. <octave>3</octave>
  2993. </pitch>
  2994. <duration>3</duration>
  2995. <voice>1</voice>
  2996. <type>eighth</type>
  2997. <dot/>
  2998. <stem>none</stem>
  2999. <notations>
  3000. <technical>
  3001. <string>4</string>
  3002. <fret>2</fret>
  3003. </technical>
  3004. </notations>
  3005. </note>
  3006. <note default-x="77" print-dot="no">
  3007. <chord/>
  3008. <pitch>
  3009. <step>B</step>
  3010. <octave>3</octave>
  3011. </pitch>
  3012. <duration>3</duration>
  3013. <voice>1</voice>
  3014. <type>eighth</type>
  3015. <dot/>
  3016. <stem>none</stem>
  3017. <notations>
  3018. <technical>
  3019. <string>3</string>
  3020. <fret>0</fret>
  3021. </technical>
  3022. </notations>
  3023. </note>
  3024. <note default-x="109" print-dot="no">
  3025. <pitch>
  3026. <step>G</step>
  3027. <alter>1</alter>
  3028. <octave>3</octave>
  3029. </pitch>
  3030. <duration>3</duration>
  3031. <voice>1</voice>
  3032. <type>eighth</type>
  3033. <dot/>
  3034. <stem>none</stem>
  3035. <notations>
  3036. <technical>
  3037. <string>4</string>
  3038. <fret>2</fret>
  3039. </technical>
  3040. </notations>
  3041. </note>
  3042. <note default-x="110" print-dot="no">
  3043. <chord/>
  3044. <pitch>
  3045. <step>B</step>
  3046. <octave>3</octave>
  3047. </pitch>
  3048. <duration>3</duration>
  3049. <voice>1</voice>
  3050. <type>eighth</type>
  3051. <dot/>
  3052. <stem>none</stem>
  3053. <notations>
  3054. <technical>
  3055. <string>3</string>
  3056. <fret>0</fret>
  3057. </technical>
  3058. </notations>
  3059. </note>
  3060. <note default-x="110" print-dot="no">
  3061. <chord/>
  3062. <pitch>
  3063. <step>F</step>
  3064. <alter>1</alter>
  3065. <octave>4</octave>
  3066. </pitch>
  3067. <duration>3</duration>
  3068. <voice>1</voice>
  3069. <type>eighth</type>
  3070. <dot/>
  3071. <stem>none</stem>
  3072. <notations>
  3073. <technical>
  3074. <string>2</string>
  3075. <fret>3</fret>
  3076. </technical>
  3077. </notations>
  3078. </note>
  3079. <note default-x="110" print-dot="no">
  3080. <chord/>
  3081. <pitch>
  3082. <step>F</step>
  3083. <alter>1</alter>
  3084. <octave>4</octave>
  3085. </pitch>
  3086. <duration>3</duration>
  3087. <voice>1</voice>
  3088. <type>eighth</type>
  3089. <dot/>
  3090. <stem>none</stem>
  3091. <notations>
  3092. <technical>
  3093. <string>1</string>
  3094. <fret>0</fret>
  3095. </technical>
  3096. </notations>
  3097. </note>
  3098. <note default-x="142">
  3099. <pitch>
  3100. <step>C</step>
  3101. <alter>1</alter>
  3102. <octave>3</octave>
  3103. </pitch>
  3104. <duration>1</duration>
  3105. <voice>1</voice>
  3106. <type>16th</type>
  3107. <stem>none</stem>
  3108. <notations>
  3109. <technical>
  3110. <string>5</string>
  3111. <fret>0</fret>
  3112. </technical>
  3113. </notations>
  3114. </note>
  3115. <note default-x="142">
  3116. <chord/>
  3117. <pitch>
  3118. <step>G</step>
  3119. <alter>1</alter>
  3120. <octave>3</octave>
  3121. </pitch>
  3122. <duration>1</duration>
  3123. <voice>1</voice>
  3124. <type>16th</type>
  3125. <stem>none</stem>
  3126. <notations>
  3127. <technical>
  3128. <string>4</string>
  3129. <fret>2</fret>
  3130. </technical>
  3131. </notations>
  3132. </note>
  3133. <note default-x="142">
  3134. <chord/>
  3135. <pitch>
  3136. <step>B</step>
  3137. <octave>3</octave>
  3138. </pitch>
  3139. <duration>1</duration>
  3140. <voice>1</voice>
  3141. <type>16th</type>
  3142. <stem>none</stem>
  3143. <notations>
  3144. <technical>
  3145. <string>3</string>
  3146. <fret>0</fret>
  3147. </technical>
  3148. </notations>
  3149. </note>
  3150. <note default-x="157" print-dot="no">
  3151. <pitch>
  3152. <step>F</step>
  3153. <alter>1</alter>
  3154. <octave>3</octave>
  3155. </pitch>
  3156. <duration>3</duration>
  3157. <voice>1</voice>
  3158. <type>eighth</type>
  3159. <dot/>
  3160. <stem>none</stem>
  3161. <notations>
  3162. <technical>
  3163. <string>4</string>
  3164. <fret>0</fret>
  3165. </technical>
  3166. </notations>
  3167. </note>
  3168. </measure>
  3169. <!--=======================================================-->
  3170. <measure number="8" width="190">
  3171. <harmony default-y="40" font-size="15.4">
  3172. <root>
  3173. <root-step>F</root-step>
  3174. <root-alter>1</root-alter>
  3175. </root>
  3176. <kind halign="left" text="">major</kind>
  3177. </harmony>
  3178. <note default-x="11" print-dot="no">
  3179. <pitch>
  3180. <step>F</step>
  3181. <alter>1</alter>
  3182. <octave>2</octave>
  3183. </pitch>
  3184. <duration>3</duration>
  3185. <voice>1</voice>
  3186. <type>eighth</type>
  3187. <dot/>
  3188. <stem>none</stem>
  3189. <notations>
  3190. <technical>
  3191. <string>6</string>
  3192. <fret>0</fret>
  3193. </technical>
  3194. </notations>
  3195. </note>
  3196. <note default-x="11" print-dot="no">
  3197. <chord/>
  3198. <pitch>
  3199. <step>C</step>
  3200. <alter>1</alter>
  3201. <octave>3</octave>
  3202. </pitch>
  3203. <duration>3</duration>
  3204. <voice>1</voice>
  3205. <type>eighth</type>
  3206. <dot/>
  3207. <stem>none</stem>
  3208. <notations>
  3209. <technical>
  3210. <string>5</string>
  3211. <fret>0</fret>
  3212. </technical>
  3213. </notations>
  3214. </note>
  3215. <note default-x="44" print-dot="no">
  3216. <pitch>
  3217. <step>A</step>
  3218. <alter>1</alter>
  3219. <octave>3</octave>
  3220. </pitch>
  3221. <duration>3</duration>
  3222. <voice>1</voice>
  3223. <type>eighth</type>
  3224. <dot/>
  3225. <stem>none</stem>
  3226. <notations>
  3227. <technical>
  3228. <string>4</string>
  3229. <fret>4</fret>
  3230. </technical>
  3231. </notations>
  3232. </note>
  3233. <harmony default-y="40" font-size="15.4">
  3234. <root>
  3235. <root-step>C</root-step>
  3236. <root-alter>1</root-alter>
  3237. </root>
  3238. <kind halign="left" text="7sus4">suspended-fourth</kind>
  3239. <degree print-object="no">
  3240. <degree-value>7</degree-value>
  3241. <degree-alter>0</degree-alter>
  3242. <degree-type>add</degree-type>
  3243. </degree>
  3244. </harmony>
  3245. <note default-x="77" print-dot="no">
  3246. <pitch>
  3247. <step>C</step>
  3248. <alter>1</alter>
  3249. <octave>3</octave>
  3250. </pitch>
  3251. <duration>3</duration>
  3252. <voice>1</voice>
  3253. <type>eighth</type>
  3254. <dot/>
  3255. <stem>none</stem>
  3256. <notations>
  3257. <technical>
  3258. <string>5</string>
  3259. <fret>0</fret>
  3260. </technical>
  3261. </notations>
  3262. </note>
  3263. <note default-x="76" print-dot="no">
  3264. <chord/>
  3265. <pitch>
  3266. <step>G</step>
  3267. <alter>1</alter>
  3268. <octave>3</octave>
  3269. </pitch>
  3270. <duration>3</duration>
  3271. <voice>1</voice>
  3272. <type>eighth</type>
  3273. <dot/>
  3274. <stem>none</stem>
  3275. <notations>
  3276. <technical>
  3277. <string>4</string>
  3278. <fret>2</fret>
  3279. </technical>
  3280. </notations>
  3281. </note>
  3282. <note default-x="77" print-dot="no">
  3283. <chord/>
  3284. <pitch>
  3285. <step>B</step>
  3286. <octave>3</octave>
  3287. </pitch>
  3288. <duration>3</duration>
  3289. <voice>1</voice>
  3290. <type>eighth</type>
  3291. <dot/>
  3292. <stem>none</stem>
  3293. <notations>
  3294. <technical>
  3295. <string>3</string>
  3296. <fret>0</fret>
  3297. </technical>
  3298. </notations>
  3299. </note>
  3300. <note default-x="109" print-dot="no">
  3301. <pitch>
  3302. <step>G</step>
  3303. <alter>1</alter>
  3304. <octave>3</octave>
  3305. </pitch>
  3306. <duration>3</duration>
  3307. <voice>1</voice>
  3308. <type>eighth</type>
  3309. <dot/>
  3310. <stem>none</stem>
  3311. <notations>
  3312. <technical>
  3313. <string>4</string>
  3314. <fret>2</fret>
  3315. </technical>
  3316. </notations>
  3317. </note>
  3318. <note default-x="110" print-dot="no">
  3319. <chord/>
  3320. <pitch>
  3321. <step>B</step>
  3322. <octave>3</octave>
  3323. </pitch>
  3324. <duration>3</duration>
  3325. <voice>1</voice>
  3326. <type>eighth</type>
  3327. <dot/>
  3328. <stem>none</stem>
  3329. <notations>
  3330. <technical>
  3331. <string>3</string>
  3332. <fret>0</fret>
  3333. </technical>
  3334. </notations>
  3335. </note>
  3336. <note default-x="110" print-dot="no">
  3337. <chord/>
  3338. <pitch>
  3339. <step>F</step>
  3340. <alter>1</alter>
  3341. <octave>4</octave>
  3342. </pitch>
  3343. <duration>3</duration>
  3344. <voice>1</voice>
  3345. <type>eighth</type>
  3346. <dot/>
  3347. <stem>none</stem>
  3348. <notations>
  3349. <technical>
  3350. <string>2</string>
  3351. <fret>3</fret>
  3352. </technical>
  3353. </notations>
  3354. </note>
  3355. <note default-x="110" print-dot="no">
  3356. <chord/>
  3357. <pitch>
  3358. <step>F</step>
  3359. <alter>1</alter>
  3360. <octave>4</octave>
  3361. </pitch>
  3362. <duration>3</duration>
  3363. <voice>1</voice>
  3364. <type>eighth</type>
  3365. <dot/>
  3366. <stem>none</stem>
  3367. <notations>
  3368. <technical>
  3369. <string>1</string>
  3370. <fret>0</fret>
  3371. </technical>
  3372. </notations>
  3373. </note>
  3374. <note default-x="142">
  3375. <pitch>
  3376. <step>C</step>
  3377. <alter>1</alter>
  3378. <octave>3</octave>
  3379. </pitch>
  3380. <duration>1</duration>
  3381. <voice>1</voice>
  3382. <type>16th</type>
  3383. <stem>none</stem>
  3384. <notations>
  3385. <technical>
  3386. <string>5</string>
  3387. <fret>0</fret>
  3388. </technical>
  3389. </notations>
  3390. </note>
  3391. <note default-x="142">
  3392. <chord/>
  3393. <pitch>
  3394. <step>G</step>
  3395. <alter>1</alter>
  3396. <octave>3</octave>
  3397. </pitch>
  3398. <duration>1</duration>
  3399. <voice>1</voice>
  3400. <type>16th</type>
  3401. <stem>none</stem>
  3402. <notations>
  3403. <technical>
  3404. <string>4</string>
  3405. <fret>2</fret>
  3406. </technical>
  3407. </notations>
  3408. </note>
  3409. <note default-x="142">
  3410. <chord/>
  3411. <pitch>
  3412. <step>B</step>
  3413. <octave>3</octave>
  3414. </pitch>
  3415. <duration>1</duration>
  3416. <voice>1</voice>
  3417. <type>16th</type>
  3418. <stem>none</stem>
  3419. <notations>
  3420. <technical>
  3421. <string>3</string>
  3422. <fret>0</fret>
  3423. </technical>
  3424. </notations>
  3425. </note>
  3426. <note default-x="157" print-dot="no">
  3427. <pitch>
  3428. <step>F</step>
  3429. <alter>1</alter>
  3430. <octave>3</octave>
  3431. </pitch>
  3432. <duration>3</duration>
  3433. <voice>1</voice>
  3434. <type>eighth</type>
  3435. <dot/>
  3436. <stem>none</stem>
  3437. <notations>
  3438. <technical>
  3439. <string>4</string>
  3440. <fret>0</fret>
  3441. </technical>
  3442. </notations>
  3443. </note>
  3444. </measure>
  3445. <!--=======================================================-->
  3446. <measure number="9" width="191">
  3447. <harmony default-y="40" font-size="15.4">
  3448. <root>
  3449. <root-step>F</root-step>
  3450. <root-alter>1</root-alter>
  3451. </root>
  3452. <kind halign="left" text="">major</kind>
  3453. </harmony>
  3454. <note default-x="11" print-dot="no">
  3455. <pitch>
  3456. <step>F</step>
  3457. <alter>1</alter>
  3458. <octave>2</octave>
  3459. </pitch>
  3460. <duration>3</duration>
  3461. <voice>1</voice>
  3462. <type>eighth</type>
  3463. <dot/>
  3464. <stem>none</stem>
  3465. <notations>
  3466. <technical>
  3467. <string>6</string>
  3468. <fret>0</fret>
  3469. </technical>
  3470. </notations>
  3471. </note>
  3472. <note default-x="11" print-dot="no">
  3473. <chord/>
  3474. <pitch>
  3475. <step>C</step>
  3476. <alter>1</alter>
  3477. <octave>3</octave>
  3478. </pitch>
  3479. <duration>3</duration>
  3480. <voice>1</voice>
  3481. <type>eighth</type>
  3482. <dot/>
  3483. <stem>none</stem>
  3484. <notations>
  3485. <technical>
  3486. <string>5</string>
  3487. <fret>0</fret>
  3488. </technical>
  3489. </notations>
  3490. </note>
  3491. <note default-x="44" print-dot="no">
  3492. <pitch>
  3493. <step>A</step>
  3494. <alter>1</alter>
  3495. <octave>3</octave>
  3496. </pitch>
  3497. <duration>3</duration>
  3498. <voice>1</voice>
  3499. <type>eighth</type>
  3500. <dot/>
  3501. <stem>none</stem>
  3502. <notations>
  3503. <technical>
  3504. <string>4</string>
  3505. <fret>4</fret>
  3506. </technical>
  3507. </notations>
  3508. </note>
  3509. <harmony default-y="40" font-size="15.4">
  3510. <root>
  3511. <root-step>C</root-step>
  3512. <root-alter>1</root-alter>
  3513. </root>
  3514. <kind halign="left" text="7sus4">suspended-fourth</kind>
  3515. <degree print-object="no">
  3516. <degree-value>7</degree-value>
  3517. <degree-alter>0</degree-alter>
  3518. <degree-type>add</degree-type>
  3519. </degree>
  3520. </harmony>
  3521. <note default-x="77" print-dot="no">
  3522. <pitch>
  3523. <step>C</step>
  3524. <alter>1</alter>
  3525. <octave>3</octave>
  3526. </pitch>
  3527. <duration>3</duration>
  3528. <voice>1</voice>
  3529. <type>eighth</type>
  3530. <dot/>
  3531. <stem>none</stem>
  3532. <notations>
  3533. <technical>
  3534. <string>5</string>
  3535. <fret>0</fret>
  3536. </technical>
  3537. </notations>
  3538. </note>
  3539. <note default-x="77" print-dot="no">
  3540. <chord/>
  3541. <pitch>
  3542. <step>G</step>
  3543. <alter>1</alter>
  3544. <octave>3</octave>
  3545. </pitch>
  3546. <duration>3</duration>
  3547. <voice>1</voice>
  3548. <type>eighth</type>
  3549. <dot/>
  3550. <stem>none</stem>
  3551. <notations>
  3552. <technical>
  3553. <string>4</string>
  3554. <fret>2</fret>
  3555. </technical>
  3556. </notations>
  3557. </note>
  3558. <note default-x="77" print-dot="no">
  3559. <chord/>
  3560. <pitch>
  3561. <step>B</step>
  3562. <octave>3</octave>
  3563. </pitch>
  3564. <duration>3</duration>
  3565. <voice>1</voice>
  3566. <type>eighth</type>
  3567. <dot/>
  3568. <stem>none</stem>
  3569. <notations>
  3570. <technical>
  3571. <string>3</string>
  3572. <fret>0</fret>
  3573. </technical>
  3574. </notations>
  3575. </note>
  3576. <note default-x="109" print-dot="no">
  3577. <pitch>
  3578. <step>G</step>
  3579. <alter>1</alter>
  3580. <octave>3</octave>
  3581. </pitch>
  3582. <duration>3</duration>
  3583. <voice>1</voice>
  3584. <type>eighth</type>
  3585. <dot/>
  3586. <stem>none</stem>
  3587. <notations>
  3588. <technical>
  3589. <string>4</string>
  3590. <fret>2</fret>
  3591. </technical>
  3592. </notations>
  3593. </note>
  3594. <note default-x="110" print-dot="no">
  3595. <chord/>
  3596. <pitch>
  3597. <step>B</step>
  3598. <octave>3</octave>
  3599. </pitch>
  3600. <duration>3</duration>
  3601. <voice>1</voice>
  3602. <type>eighth</type>
  3603. <dot/>
  3604. <stem>none</stem>
  3605. <notations>
  3606. <technical>
  3607. <string>3</string>
  3608. <fret>0</fret>
  3609. </technical>
  3610. </notations>
  3611. </note>
  3612. <note default-x="110" print-dot="no">
  3613. <chord/>
  3614. <pitch>
  3615. <step>F</step>
  3616. <alter>1</alter>
  3617. <octave>4</octave>
  3618. </pitch>
  3619. <duration>3</duration>
  3620. <voice>1</voice>
  3621. <type>eighth</type>
  3622. <dot/>
  3623. <stem>none</stem>
  3624. <notations>
  3625. <technical>
  3626. <string>2</string>
  3627. <fret>3</fret>
  3628. </technical>
  3629. </notations>
  3630. </note>
  3631. <note default-x="110" print-dot="no">
  3632. <chord/>
  3633. <pitch>
  3634. <step>F</step>
  3635. <alter>1</alter>
  3636. <octave>4</octave>
  3637. </pitch>
  3638. <duration>3</duration>
  3639. <voice>1</voice>
  3640. <type>eighth</type>
  3641. <dot/>
  3642. <stem>none</stem>
  3643. <notations>
  3644. <technical>
  3645. <string>1</string>
  3646. <fret>0</fret>
  3647. </technical>
  3648. </notations>
  3649. </note>
  3650. <note default-x="143">
  3651. <pitch>
  3652. <step>C</step>
  3653. <alter>1</alter>
  3654. <octave>3</octave>
  3655. </pitch>
  3656. <duration>1</duration>
  3657. <voice>1</voice>
  3658. <type>16th</type>
  3659. <stem>none</stem>
  3660. <notations>
  3661. <technical>
  3662. <string>5</string>
  3663. <fret>0</fret>
  3664. </technical>
  3665. </notations>
  3666. </note>
  3667. <note default-x="142">
  3668. <chord/>
  3669. <pitch>
  3670. <step>G</step>
  3671. <alter>1</alter>
  3672. <octave>3</octave>
  3673. </pitch>
  3674. <duration>1</duration>
  3675. <voice>1</voice>
  3676. <type>16th</type>
  3677. <stem>none</stem>
  3678. <notations>
  3679. <technical>
  3680. <string>4</string>
  3681. <fret>2</fret>
  3682. </technical>
  3683. </notations>
  3684. </note>
  3685. <note default-x="143">
  3686. <chord/>
  3687. <pitch>
  3688. <step>B</step>
  3689. <octave>3</octave>
  3690. </pitch>
  3691. <duration>1</duration>
  3692. <voice>1</voice>
  3693. <type>16th</type>
  3694. <stem>none</stem>
  3695. <notations>
  3696. <technical>
  3697. <string>3</string>
  3698. <fret>0</fret>
  3699. </technical>
  3700. </notations>
  3701. </note>
  3702. <note default-x="157" print-dot="no">
  3703. <pitch>
  3704. <step>F</step>
  3705. <alter>1</alter>
  3706. <octave>3</octave>
  3707. </pitch>
  3708. <duration>3</duration>
  3709. <voice>1</voice>
  3710. <type>eighth</type>
  3711. <dot/>
  3712. <stem>none</stem>
  3713. <notations>
  3714. <technical>
  3715. <string>4</string>
  3716. <fret>0</fret>
  3717. </technical>
  3718. </notations>
  3719. </note>
  3720. </measure>
  3721. <!--=======================================================-->
  3722. <measure number="10" width="313">
  3723. <print new-system="yes"/>
  3724. <note default-x="143" print-dot="no">
  3725. <pitch>
  3726. <step>F</step>
  3727. <alter>1</alter>
  3728. <octave>2</octave>
  3729. </pitch>
  3730. <duration>3</duration>
  3731. <voice>1</voice>
  3732. <type>eighth</type>
  3733. <dot/>
  3734. <stem>none</stem>
  3735. <notations>
  3736. <technical>
  3737. <string>6</string>
  3738. <fret>0</fret>
  3739. </technical>
  3740. </notations>
  3741. </note>
  3742. <note default-x="143" print-dot="no">
  3743. <chord/>
  3744. <pitch>
  3745. <step>C</step>
  3746. <alter>1</alter>
  3747. <octave>3</octave>
  3748. </pitch>
  3749. <duration>3</duration>
  3750. <voice>1</voice>
  3751. <type>eighth</type>
  3752. <dot/>
  3753. <stem>none</stem>
  3754. <notations>
  3755. <technical>
  3756. <string>5</string>
  3757. <fret>0</fret>
  3758. </technical>
  3759. </notations>
  3760. </note>
  3761. <note default-x="170" print-dot="no">
  3762. <pitch>
  3763. <step>A</step>
  3764. <alter>1</alter>
  3765. <octave>3</octave>
  3766. </pitch>
  3767. <duration>3</duration>
  3768. <voice>1</voice>
  3769. <type>eighth</type>
  3770. <dot/>
  3771. <stem>none</stem>
  3772. <notations>
  3773. <technical>
  3774. <string>4</string>
  3775. <fret>4</fret>
  3776. </technical>
  3777. </notations>
  3778. </note>
  3779. <note default-x="198" print-dot="no">
  3780. <pitch>
  3781. <step>C</step>
  3782. <alter>1</alter>
  3783. <octave>3</octave>
  3784. </pitch>
  3785. <duration>3</duration>
  3786. <voice>1</voice>
  3787. <type>eighth</type>
  3788. <dot/>
  3789. <stem>none</stem>
  3790. <notations>
  3791. <technical>
  3792. <string>5</string>
  3793. <fret>0</fret>
  3794. </technical>
  3795. </notations>
  3796. </note>
  3797. <note default-x="198" print-dot="no">
  3798. <chord/>
  3799. <pitch>
  3800. <step>G</step>
  3801. <alter>1</alter>
  3802. <octave>3</octave>
  3803. </pitch>
  3804. <duration>3</duration>
  3805. <voice>1</voice>
  3806. <type>eighth</type>
  3807. <dot/>
  3808. <stem>none</stem>
  3809. <notations>
  3810. <technical>
  3811. <string>4</string>
  3812. <fret>2</fret>
  3813. </technical>
  3814. </notations>
  3815. </note>
  3816. <note default-x="198" print-dot="no">
  3817. <chord/>
  3818. <pitch>
  3819. <step>B</step>
  3820. <octave>3</octave>
  3821. </pitch>
  3822. <duration>3</duration>
  3823. <voice>1</voice>
  3824. <type>eighth</type>
  3825. <dot/>
  3826. <stem>none</stem>
  3827. <notations>
  3828. <technical>
  3829. <string>3</string>
  3830. <fret>0</fret>
  3831. </technical>
  3832. </notations>
  3833. </note>
  3834. <note default-x="230" print-dot="no">
  3835. <pitch>
  3836. <step>G</step>
  3837. <alter>1</alter>
  3838. <octave>3</octave>
  3839. </pitch>
  3840. <duration>3</duration>
  3841. <voice>1</voice>
  3842. <type>eighth</type>
  3843. <dot/>
  3844. <stem>none</stem>
  3845. <notations>
  3846. <technical>
  3847. <string>4</string>
  3848. <fret>2</fret>
  3849. </technical>
  3850. </notations>
  3851. </note>
  3852. <note default-x="230" print-dot="no">
  3853. <chord/>
  3854. <pitch>
  3855. <step>B</step>
  3856. <octave>3</octave>
  3857. </pitch>
  3858. <duration>3</duration>
  3859. <voice>1</voice>
  3860. <type>eighth</type>
  3861. <dot/>
  3862. <stem>none</stem>
  3863. <notations>
  3864. <technical>
  3865. <string>3</string>
  3866. <fret>0</fret>
  3867. </technical>
  3868. </notations>
  3869. </note>
  3870. <note default-x="231" print-dot="no">
  3871. <chord/>
  3872. <pitch>
  3873. <step>F</step>
  3874. <alter>1</alter>
  3875. <octave>4</octave>
  3876. </pitch>
  3877. <duration>3</duration>
  3878. <voice>1</voice>
  3879. <type>eighth</type>
  3880. <dot/>
  3881. <stem>none</stem>
  3882. <notations>
  3883. <technical>
  3884. <string>2</string>
  3885. <fret>3</fret>
  3886. </technical>
  3887. </notations>
  3888. </note>
  3889. <note default-x="230" print-dot="no">
  3890. <chord/>
  3891. <pitch>
  3892. <step>F</step>
  3893. <alter>1</alter>
  3894. <octave>4</octave>
  3895. </pitch>
  3896. <duration>3</duration>
  3897. <voice>1</voice>
  3898. <type>eighth</type>
  3899. <dot/>
  3900. <stem>none</stem>
  3901. <notations>
  3902. <technical>
  3903. <string>1</string>
  3904. <fret>0</fret>
  3905. </technical>
  3906. </notations>
  3907. </note>
  3908. <note default-x="258">
  3909. <pitch>
  3910. <step>C</step>
  3911. <alter>1</alter>
  3912. <octave>3</octave>
  3913. </pitch>
  3914. <duration>1</duration>
  3915. <voice>1</voice>
  3916. <type>16th</type>
  3917. <stem>none</stem>
  3918. <notations>
  3919. <technical>
  3920. <string>5</string>
  3921. <fret>0</fret>
  3922. </technical>
  3923. </notations>
  3924. </note>
  3925. <note default-x="258">
  3926. <chord/>
  3927. <pitch>
  3928. <step>G</step>
  3929. <alter>1</alter>
  3930. <octave>3</octave>
  3931. </pitch>
  3932. <duration>1</duration>
  3933. <voice>1</voice>
  3934. <type>16th</type>
  3935. <stem>none</stem>
  3936. <notations>
  3937. <technical>
  3938. <string>4</string>
  3939. <fret>2</fret>
  3940. </technical>
  3941. </notations>
  3942. </note>
  3943. <note default-x="258">
  3944. <chord/>
  3945. <pitch>
  3946. <step>B</step>
  3947. <octave>3</octave>
  3948. </pitch>
  3949. <duration>1</duration>
  3950. <voice>1</voice>
  3951. <type>16th</type>
  3952. <stem>none</stem>
  3953. <notations>
  3954. <technical>
  3955. <string>3</string>
  3956. <fret>0</fret>
  3957. </technical>
  3958. </notations>
  3959. </note>
  3960. <note default-x="272" print-dot="no">
  3961. <pitch>
  3962. <step>F</step>
  3963. <alter>1</alter>
  3964. <octave>3</octave>
  3965. </pitch>
  3966. <duration>3</duration>
  3967. <voice>1</voice>
  3968. <type>eighth</type>
  3969. <dot/>
  3970. <stem>none</stem>
  3971. <notations>
  3972. <technical>
  3973. <string>4</string>
  3974. <fret>0</fret>
  3975. </technical>
  3976. </notations>
  3977. </note>
  3978. </measure>
  3979. <!--=======================================================-->
  3980. <measure number="11" width="357">
  3981. <note default-x="17">
  3982. <pitch>
  3983. <step>C</step>
  3984. <alter>1</alter>
  3985. <octave>3</octave>
  3986. </pitch>
  3987. <duration>1</duration>
  3988. <voice>1</voice>
  3989. <type>16th</type>
  3990. <stem>none</stem>
  3991. <notations>
  3992. <technical>
  3993. <string>5</string>
  3994. <fret>0</fret>
  3995. </technical>
  3996. </notations>
  3997. </note>
  3998. <note default-x="53">
  3999. <pitch>
  4000. <step>D</step>
  4001. <alter>1</alter>
  4002. <octave>3</octave>
  4003. </pitch>
  4004. <duration>2</duration>
  4005. <voice>1</voice>
  4006. <type>eighth</type>
  4007. <stem>none</stem>
  4008. <notations>
  4009. <technical>
  4010. <string>5</string>
  4011. <fret>2</fret>
  4012. </technical>
  4013. </notations>
  4014. </note>
  4015. <note default-x="94">
  4016. <pitch>
  4017. <step>B</step>
  4018. <octave>3</octave>
  4019. </pitch>
  4020. <duration>2</duration>
  4021. <voice>1</voice>
  4022. <type>eighth</type>
  4023. <stem>none</stem>
  4024. <notations>
  4025. <technical>
  4026. <string>3</string>
  4027. <fret>0</fret>
  4028. </technical>
  4029. </notations>
  4030. </note>
  4031. <note default-x="135">
  4032. <pitch>
  4033. <step>A</step>
  4034. <alter>1</alter>
  4035. <octave>3</octave>
  4036. </pitch>
  4037. <duration>1</duration>
  4038. <voice>1</voice>
  4039. <type>16th</type>
  4040. <stem>none</stem>
  4041. <notations>
  4042. <technical>
  4043. <string>4</string>
  4044. <fret>4</fret>
  4045. </technical>
  4046. </notations>
  4047. </note>
  4048. <note default-x="154" print-dot="no">
  4049. <pitch>
  4050. <step>D</step>
  4051. <alter>1</alter>
  4052. <octave>3</octave>
  4053. </pitch>
  4054. <duration>3</duration>
  4055. <voice>1</voice>
  4056. <type>eighth</type>
  4057. <dot/>
  4058. <stem>none</stem>
  4059. <notations>
  4060. <technical>
  4061. <string>5</string>
  4062. <fret>2</fret>
  4063. </technical>
  4064. </notations>
  4065. </note>
  4066. <note default-x="247">
  4067. <pitch>
  4068. <step>B</step>
  4069. <octave>3</octave>
  4070. </pitch>
  4071. <duration>2</duration>
  4072. <voice>1</voice>
  4073. <type>eighth</type>
  4074. <stem>none</stem>
  4075. <notations>
  4076. <technical>
  4077. <string>3</string>
  4078. <fret>0</fret>
  4079. </technical>
  4080. </notations>
  4081. </note>
  4082. <note default-x="278">
  4083. <pitch>
  4084. <step>A</step>
  4085. <alter>1</alter>
  4086. <octave>3</octave>
  4087. </pitch>
  4088. <duration>1</duration>
  4089. <voice>1</voice>
  4090. <type>16th</type>
  4091. <stem>none</stem>
  4092. <notations>
  4093. <technical>
  4094. <string>4</string>
  4095. <fret>4</fret>
  4096. </technical>
  4097. </notations>
  4098. </note>
  4099. <note default-x="293">
  4100. <pitch>
  4101. <step>D</step>
  4102. <alter>1</alter>
  4103. <octave>3</octave>
  4104. </pitch>
  4105. <duration>1</duration>
  4106. <voice>1</voice>
  4107. <type>16th</type>
  4108. <stem>none</stem>
  4109. <notations>
  4110. <technical>
  4111. <string>5</string>
  4112. <fret>2</fret>
  4113. </technical>
  4114. </notations>
  4115. </note>
  4116. <note default-x="313" print-dot="no">
  4117. <pitch>
  4118. <step>C</step>
  4119. <alter>1</alter>
  4120. <octave>3</octave>
  4121. </pitch>
  4122. <duration>3</duration>
  4123. <voice>1</voice>
  4124. <type>eighth</type>
  4125. <dot/>
  4126. <stem>none</stem>
  4127. <notations>
  4128. <technical>
  4129. <string>5</string>
  4130. <fret>0</fret>
  4131. </technical>
  4132. </notations>
  4133. </note>
  4134. </measure>
  4135. <!--=======================================================-->
  4136. <measure number="12" width="313">
  4137. <note default-x="26">
  4138. <pitch>
  4139. <step>C</step>
  4140. <alter>1</alter>
  4141. <octave>3</octave>
  4142. </pitch>
  4143. <duration>1</duration>
  4144. <voice>1</voice>
  4145. <type>16th</type>
  4146. <stem>none</stem>
  4147. <notations>
  4148. <technical>
  4149. <string>5</string>
  4150. <fret>0</fret>
  4151. </technical>
  4152. </notations>
  4153. </note>
  4154. <note default-x="39">
  4155. <pitch>
  4156. <step>D</step>
  4157. <alter>1</alter>
  4158. <octave>3</octave>
  4159. </pitch>
  4160. <duration>2</duration>
  4161. <voice>1</voice>
  4162. <type>eighth</type>
  4163. <stem>none</stem>
  4164. <notations>
  4165. <technical>
  4166. <string>5</string>
  4167. <fret>2</fret>
  4168. </technical>
  4169. </notations>
  4170. </note>
  4171. <note default-x="64">
  4172. <pitch>
  4173. <step>B</step>
  4174. <octave>3</octave>
  4175. </pitch>
  4176. <duration>2</duration>
  4177. <voice>1</voice>
  4178. <type>eighth</type>
  4179. <stem>none</stem>
  4180. <notations>
  4181. <technical>
  4182. <string>3</string>
  4183. <fret>0</fret>
  4184. </technical>
  4185. </notations>
  4186. </note>
  4187. <note default-x="111">
  4188. <pitch>
  4189. <step>A</step>
  4190. <alter>1</alter>
  4191. <octave>3</octave>
  4192. </pitch>
  4193. <duration>1</duration>
  4194. <voice>1</voice>
  4195. <type>16th</type>
  4196. <stem>none</stem>
  4197. <notations>
  4198. <technical>
  4199. <string>4</string>
  4200. <fret>4</fret>
  4201. </technical>
  4202. </notations>
  4203. </note>
  4204. <note default-x="139" print-dot="no">
  4205. <pitch>
  4206. <step>D</step>
  4207. <alter>1</alter>
  4208. <octave>3</octave>
  4209. </pitch>
  4210. <duration>3</duration>
  4211. <voice>1</voice>
  4212. <type>eighth</type>
  4213. <dot/>
  4214. <stem>none</stem>
  4215. <notations>
  4216. <technical>
  4217. <string>5</string>
  4218. <fret>2</fret>
  4219. </technical>
  4220. </notations>
  4221. </note>
  4222. <note default-x="195">
  4223. <pitch>
  4224. <step>B</step>
  4225. <octave>3</octave>
  4226. </pitch>
  4227. <duration>2</duration>
  4228. <voice>1</voice>
  4229. <type>eighth</type>
  4230. <stem>none</stem>
  4231. <notations>
  4232. <technical>
  4233. <string>3</string>
  4234. <fret>0</fret>
  4235. </technical>
  4236. </notations>
  4237. </note>
  4238. <note default-x="214">
  4239. <pitch>
  4240. <step>A</step>
  4241. <alter>1</alter>
  4242. <octave>3</octave>
  4243. </pitch>
  4244. <duration>1</duration>
  4245. <voice>1</voice>
  4246. <type>16th</type>
  4247. <stem>none</stem>
  4248. <notations>
  4249. <technical>
  4250. <string>4</string>
  4251. <fret>4</fret>
  4252. </technical>
  4253. </notations>
  4254. </note>
  4255. <note default-x="228">
  4256. <pitch>
  4257. <step>D</step>
  4258. <alter>1</alter>
  4259. <octave>3</octave>
  4260. </pitch>
  4261. <duration>1</duration>
  4262. <voice>1</voice>
  4263. <type>16th</type>
  4264. <stem>none</stem>
  4265. <notations>
  4266. <technical>
  4267. <string>5</string>
  4268. <fret>2</fret>
  4269. </technical>
  4270. </notations>
  4271. </note>
  4272. <note default-x="243" print-dot="no">
  4273. <pitch>
  4274. <step>C</step>
  4275. <alter>1</alter>
  4276. <octave>3</octave>
  4277. </pitch>
  4278. <duration>3</duration>
  4279. <voice>1</voice>
  4280. <type>eighth</type>
  4281. <dot/>
  4282. <stem>none</stem>
  4283. <notations>
  4284. <technical>
  4285. <string>5</string>
  4286. <fret>0</fret>
  4287. </technical>
  4288. </notations>
  4289. </note>
  4290. </measure>
  4291. <!--=======================================================-->
  4292. <measure number="13" width="570">
  4293. <print new-system="yes"/>
  4294. <note default-x="144" print-dot="no">
  4295. <pitch>
  4296. <step>B</step>
  4297. <octave>2</octave>
  4298. </pitch>
  4299. <duration>3</duration>
  4300. <voice>1</voice>
  4301. <type>eighth</type>
  4302. <dot/>
  4303. <stem>none</stem>
  4304. <notations>
  4305. <technical>
  4306. <string>6</string>
  4307. <fret>5</fret>
  4308. </technical>
  4309. </notations>
  4310. </note>
  4311. <note default-x="144" print-dot="no">
  4312. <chord/>
  4313. <pitch>
  4314. <step>F</step>
  4315. <alter>1</alter>
  4316. <octave>3</octave>
  4317. </pitch>
  4318. <duration>3</duration>
  4319. <voice>1</voice>
  4320. <type>eighth</type>
  4321. <dot/>
  4322. <stem>none</stem>
  4323. <notations>
  4324. <technical>
  4325. <string>5</string>
  4326. <fret>5</fret>
  4327. </technical>
  4328. </notations>
  4329. </note>
  4330. <note default-x="143" print-dot="no">
  4331. <chord/>
  4332. <pitch>
  4333. <step>A</step>
  4334. <alter>1</alter>
  4335. <octave>3</octave>
  4336. </pitch>
  4337. <duration>3</duration>
  4338. <voice>1</voice>
  4339. <type>eighth</type>
  4340. <dot/>
  4341. <stem>none</stem>
  4342. <notations>
  4343. <technical>
  4344. <string>4</string>
  4345. <fret>4</fret>
  4346. </technical>
  4347. </notations>
  4348. </note>
  4349. <note default-x="143" print-dot="no">
  4350. <chord/>
  4351. <pitch>
  4352. <step>B</step>
  4353. <octave>3</octave>
  4354. </pitch>
  4355. <duration>3</duration>
  4356. <voice>1</voice>
  4357. <type>eighth</type>
  4358. <dot/>
  4359. <stem>none</stem>
  4360. <notations>
  4361. <technical>
  4362. <string>3</string>
  4363. <fret>0</fret>
  4364. </technical>
  4365. </notations>
  4366. </note>
  4367. <note default-x="220" print-dot="no">
  4368. <pitch>
  4369. <step>F</step>
  4370. <alter>1</alter>
  4371. <octave>4</octave>
  4372. </pitch>
  4373. <duration>3</duration>
  4374. <voice>1</voice>
  4375. <type>eighth</type>
  4376. <dot/>
  4377. <stem>none</stem>
  4378. <notations>
  4379. <technical>
  4380. <string>2</string>
  4381. <fret>3</fret>
  4382. </technical>
  4383. </notations>
  4384. </note>
  4385. <note default-x="220" print-dot="no">
  4386. <chord/>
  4387. <pitch>
  4388. <step>F</step>
  4389. <alter>1</alter>
  4390. <octave>4</octave>
  4391. </pitch>
  4392. <duration>3</duration>
  4393. <voice>1</voice>
  4394. <type>eighth</type>
  4395. <dot/>
  4396. <stem>none</stem>
  4397. <notations>
  4398. <technical>
  4399. <string>1</string>
  4400. <fret>0</fret>
  4401. </technical>
  4402. </notations>
  4403. </note>
  4404. <note default-x="284" print-dot="no">
  4405. <pitch>
  4406. <step>B</step>
  4407. <octave>2</octave>
  4408. </pitch>
  4409. <duration>3</duration>
  4410. <voice>1</voice>
  4411. <type>eighth</type>
  4412. <dot/>
  4413. <stem>none</stem>
  4414. <notations>
  4415. <technical>
  4416. <string>6</string>
  4417. <fret>5</fret>
  4418. </technical>
  4419. </notations>
  4420. </note>
  4421. <note default-x="284" print-dot="no">
  4422. <chord/>
  4423. <pitch>
  4424. <step>F</step>
  4425. <alter>1</alter>
  4426. <octave>3</octave>
  4427. </pitch>
  4428. <duration>3</duration>
  4429. <voice>1</voice>
  4430. <type>eighth</type>
  4431. <dot/>
  4432. <stem>none</stem>
  4433. <notations>
  4434. <technical>
  4435. <string>5</string>
  4436. <fret>5</fret>
  4437. </technical>
  4438. </notations>
  4439. </note>
  4440. <note default-x="282" print-dot="no">
  4441. <chord/>
  4442. <pitch>
  4443. <step>A</step>
  4444. <alter>1</alter>
  4445. <octave>3</octave>
  4446. </pitch>
  4447. <duration>3</duration>
  4448. <voice>1</voice>
  4449. <type>eighth</type>
  4450. <dot/>
  4451. <stem>none</stem>
  4452. <notations>
  4453. <technical>
  4454. <string>4</string>
  4455. <fret>4</fret>
  4456. </technical>
  4457. </notations>
  4458. </note>
  4459. <note default-x="283" print-dot="no">
  4460. <chord/>
  4461. <pitch>
  4462. <step>B</step>
  4463. <octave>3</octave>
  4464. </pitch>
  4465. <duration>3</duration>
  4466. <voice>1</voice>
  4467. <type>eighth</type>
  4468. <dot/>
  4469. <stem>none</stem>
  4470. <notations>
  4471. <technical>
  4472. <string>3</string>
  4473. <fret>0</fret>
  4474. </technical>
  4475. </notations>
  4476. </note>
  4477. <note default-x="395" print-dot="no">
  4478. <pitch>
  4479. <step>F</step>
  4480. <alter>1</alter>
  4481. <octave>4</octave>
  4482. </pitch>
  4483. <duration>3</duration>
  4484. <voice>1</voice>
  4485. <type>eighth</type>
  4486. <dot/>
  4487. <stem>none</stem>
  4488. <notations>
  4489. <technical>
  4490. <string>2</string>
  4491. <fret>3</fret>
  4492. </technical>
  4493. </notations>
  4494. </note>
  4495. <note default-x="395" print-dot="no">
  4496. <chord/>
  4497. <pitch>
  4498. <step>F</step>
  4499. <alter>1</alter>
  4500. <octave>4</octave>
  4501. </pitch>
  4502. <duration>3</duration>
  4503. <voice>1</voice>
  4504. <type>eighth</type>
  4505. <dot/>
  4506. <stem>none</stem>
  4507. <notations>
  4508. <technical>
  4509. <string>1</string>
  4510. <fret>0</fret>
  4511. </technical>
  4512. </notations>
  4513. </note>
  4514. <note default-x="441">
  4515. <pitch>
  4516. <step>B</step>
  4517. <octave>2</octave>
  4518. </pitch>
  4519. <duration>1</duration>
  4520. <voice>1</voice>
  4521. <type>16th</type>
  4522. <stem>none</stem>
  4523. <notations>
  4524. <technical>
  4525. <string>6</string>
  4526. <fret>5</fret>
  4527. </technical>
  4528. </notations>
  4529. </note>
  4530. <note default-x="441">
  4531. <chord/>
  4532. <pitch>
  4533. <step>F</step>
  4534. <alter>1</alter>
  4535. <octave>3</octave>
  4536. </pitch>
  4537. <duration>1</duration>
  4538. <voice>1</voice>
  4539. <type>16th</type>
  4540. <stem>none</stem>
  4541. <notations>
  4542. <technical>
  4543. <string>5</string>
  4544. <fret>5</fret>
  4545. </technical>
  4546. </notations>
  4547. </note>
  4548. <note default-x="440">
  4549. <chord/>
  4550. <pitch>
  4551. <step>A</step>
  4552. <alter>1</alter>
  4553. <octave>3</octave>
  4554. </pitch>
  4555. <duration>1</duration>
  4556. <voice>1</voice>
  4557. <type>16th</type>
  4558. <stem>none</stem>
  4559. <notations>
  4560. <technical>
  4561. <string>4</string>
  4562. <fret>4</fret>
  4563. </technical>
  4564. </notations>
  4565. </note>
  4566. <note default-x="440">
  4567. <chord/>
  4568. <pitch>
  4569. <step>B</step>
  4570. <octave>3</octave>
  4571. </pitch>
  4572. <duration>1</duration>
  4573. <voice>1</voice>
  4574. <type>16th</type>
  4575. <stem>none</stem>
  4576. <notations>
  4577. <technical>
  4578. <string>3</string>
  4579. <fret>0</fret>
  4580. </technical>
  4581. </notations>
  4582. </note>
  4583. <note default-x="463" print-dot="no">
  4584. <pitch>
  4585. <step>D</step>
  4586. <alter>1</alter>
  4587. <octave>4</octave>
  4588. </pitch>
  4589. <duration>3</duration>
  4590. <voice>1</voice>
  4591. <type>eighth</type>
  4592. <dot/>
  4593. <stem>none</stem>
  4594. <notations>
  4595. <technical>
  4596. <string>2</string>
  4597. <fret>0</fret>
  4598. </technical>
  4599. </notations>
  4600. </note>
  4601. </measure>
  4602. <!--=======================================================-->
  4603. <measure number="14" width="413">
  4604. <note default-x="17" print-dot="no">
  4605. <pitch>
  4606. <step>B</step>
  4607. <octave>2</octave>
  4608. </pitch>
  4609. <duration>3</duration>
  4610. <voice>1</voice>
  4611. <type>eighth</type>
  4612. <dot/>
  4613. <stem>none</stem>
  4614. <notations>
  4615. <technical>
  4616. <string>6</string>
  4617. <fret>5</fret>
  4618. </technical>
  4619. </notations>
  4620. </note>
  4621. <note default-x="17" print-dot="no">
  4622. <chord/>
  4623. <pitch>
  4624. <step>F</step>
  4625. <alter>1</alter>
  4626. <octave>3</octave>
  4627. </pitch>
  4628. <duration>3</duration>
  4629. <voice>1</voice>
  4630. <type>eighth</type>
  4631. <dot/>
  4632. <stem>none</stem>
  4633. <notations>
  4634. <technical>
  4635. <string>5</string>
  4636. <fret>5</fret>
  4637. </technical>
  4638. </notations>
  4639. </note>
  4640. <note default-x="16" print-dot="no">
  4641. <chord/>
  4642. <pitch>
  4643. <step>A</step>
  4644. <alter>1</alter>
  4645. <octave>3</octave>
  4646. </pitch>
  4647. <duration>3</duration>
  4648. <voice>1</voice>
  4649. <type>eighth</type>
  4650. <dot/>
  4651. <stem>none</stem>
  4652. <notations>
  4653. <technical>
  4654. <string>4</string>
  4655. <fret>4</fret>
  4656. </technical>
  4657. </notations>
  4658. </note>
  4659. <note default-x="16" print-dot="no">
  4660. <chord/>
  4661. <pitch>
  4662. <step>B</step>
  4663. <octave>3</octave>
  4664. </pitch>
  4665. <duration>3</duration>
  4666. <voice>1</voice>
  4667. <type>eighth</type>
  4668. <dot/>
  4669. <stem>none</stem>
  4670. <notations>
  4671. <technical>
  4672. <string>3</string>
  4673. <fret>0</fret>
  4674. </technical>
  4675. </notations>
  4676. </note>
  4677. <note default-x="115" print-dot="no">
  4678. <pitch>
  4679. <step>F</step>
  4680. <alter>1</alter>
  4681. <octave>4</octave>
  4682. </pitch>
  4683. <duration>3</duration>
  4684. <voice>1</voice>
  4685. <type>eighth</type>
  4686. <dot/>
  4687. <stem>none</stem>
  4688. <notations>
  4689. <technical>
  4690. <string>2</string>
  4691. <fret>3</fret>
  4692. </technical>
  4693. </notations>
  4694. </note>
  4695. <note default-x="115" print-dot="no">
  4696. <chord/>
  4697. <pitch>
  4698. <step>F</step>
  4699. <alter>1</alter>
  4700. <octave>4</octave>
  4701. </pitch>
  4702. <duration>3</duration>
  4703. <voice>1</voice>
  4704. <type>eighth</type>
  4705. <dot/>
  4706. <stem>none</stem>
  4707. <notations>
  4708. <technical>
  4709. <string>1</string>
  4710. <fret>0</fret>
  4711. </technical>
  4712. </notations>
  4713. </note>
  4714. <note default-x="163">
  4715. <pitch>
  4716. <step>B</step>
  4717. <octave>2</octave>
  4718. </pitch>
  4719. <duration>1</duration>
  4720. <voice>1</voice>
  4721. <type>16th</type>
  4722. <stem>none</stem>
  4723. <notations>
  4724. <technical>
  4725. <string>6</string>
  4726. <fret>5</fret>
  4727. </technical>
  4728. </notations>
  4729. </note>
  4730. <note default-x="163">
  4731. <chord/>
  4732. <pitch>
  4733. <step>F</step>
  4734. <alter>1</alter>
  4735. <octave>3</octave>
  4736. </pitch>
  4737. <duration>1</duration>
  4738. <voice>1</voice>
  4739. <type>16th</type>
  4740. <stem>none</stem>
  4741. <notations>
  4742. <technical>
  4743. <string>5</string>
  4744. <fret>5</fret>
  4745. </technical>
  4746. </notations>
  4747. </note>
  4748. <note default-x="162">
  4749. <chord/>
  4750. <pitch>
  4751. <step>A</step>
  4752. <alter>1</alter>
  4753. <octave>3</octave>
  4754. </pitch>
  4755. <duration>1</duration>
  4756. <voice>1</voice>
  4757. <type>16th</type>
  4758. <stem>none</stem>
  4759. <notations>
  4760. <technical>
  4761. <string>4</string>
  4762. <fret>4</fret>
  4763. </technical>
  4764. </notations>
  4765. </note>
  4766. <note default-x="181">
  4767. <pitch>
  4768. <step>F</step>
  4769. <alter>1</alter>
  4770. <octave>3</octave>
  4771. </pitch>
  4772. <duration>2</duration>
  4773. <voice>1</voice>
  4774. <type>eighth</type>
  4775. <stem>none</stem>
  4776. <notations>
  4777. <technical>
  4778. <string>4</string>
  4779. <fret>0</fret>
  4780. </technical>
  4781. </notations>
  4782. </note>
  4783. <note default-x="235">
  4784. <pitch>
  4785. <step>F</step>
  4786. <alter>1</alter>
  4787. <octave>3</octave>
  4788. </pitch>
  4789. <duration>2</duration>
  4790. <voice>1</voice>
  4791. <type>eighth</type>
  4792. <stem>none</stem>
  4793. <notations>
  4794. <technical>
  4795. <string>5</string>
  4796. <fret>5</fret>
  4797. </technical>
  4798. </notations>
  4799. </note>
  4800. <note default-x="280">
  4801. <pitch>
  4802. <step>F</step>
  4803. <alter>1</alter>
  4804. <octave>3</octave>
  4805. </pitch>
  4806. <duration>1</duration>
  4807. <voice>1</voice>
  4808. <type>16th</type>
  4809. <stem>none</stem>
  4810. <notations>
  4811. <technical>
  4812. <string>5</string>
  4813. <fret>5</fret>
  4814. </technical>
  4815. </notations>
  4816. </note>
  4817. <note default-x="306">
  4818. <pitch>
  4819. <step>E</step>
  4820. <alter>1</alter>
  4821. <octave>3</octave>
  4822. </pitch>
  4823. <duration>1</duration>
  4824. <voice>1</voice>
  4825. <type>16th</type>
  4826. <stem>none</stem>
  4827. <notations>
  4828. <technical>
  4829. <pull-off number="1" type="start">P</pull-off>
  4830. <string>5</string>
  4831. <fret>4</fret>
  4832. </technical>
  4833. </notations>
  4834. </note>
  4835. <note default-x="335" print-dot="no">
  4836. <pitch>
  4837. <step>C</step>
  4838. <alter>1</alter>
  4839. <octave>3</octave>
  4840. </pitch>
  4841. <duration>3</duration>
  4842. <voice>1</voice>
  4843. <type>eighth</type>
  4844. <dot/>
  4845. <stem>none</stem>
  4846. <notations>
  4847. <technical>
  4848. <pull-off number="1" type="stop"/>
  4849. <string>5</string>
  4850. <fret>0</fret>
  4851. </technical>
  4852. </notations>
  4853. </note>
  4854. </measure>
  4855. <!--=======================================================-->
  4856. <measure number="15" width="408">
  4857. <print new-system="yes"/>
  4858. <note default-x="147">
  4859. <pitch>
  4860. <step>F</step>
  4861. <alter>1</alter>
  4862. <octave>2</octave>
  4863. </pitch>
  4864. <duration>1</duration>
  4865. <voice>1</voice>
  4866. <type>16th</type>
  4867. <stem>none</stem>
  4868. <notations>
  4869. <technical>
  4870. <string>6</string>
  4871. <fret>0</fret>
  4872. </technical>
  4873. </notations>
  4874. </note>
  4875. <note default-x="162">
  4876. <pitch>
  4877. <step>G</step>
  4878. <alter>1</alter>
  4879. <octave>2</octave>
  4880. </pitch>
  4881. <duration>2</duration>
  4882. <voice>1</voice>
  4883. <type>eighth</type>
  4884. <stem>none</stem>
  4885. <notations>
  4886. <technical>
  4887. <string>6</string>
  4888. <fret>2</fret>
  4889. </technical>
  4890. </notations>
  4891. </note>
  4892. <note default-x="190" print-dot="no">
  4893. <pitch>
  4894. <step>A</step>
  4895. <alter>1</alter>
  4896. <octave>3</octave>
  4897. </pitch>
  4898. <duration>3</duration>
  4899. <voice>1</voice>
  4900. <type>eighth</type>
  4901. <dot/>
  4902. <stem>none</stem>
  4903. <notations>
  4904. <technical>
  4905. <string>4</string>
  4906. <fret>4</fret>
  4907. </technical>
  4908. </notations>
  4909. </note>
  4910. <note default-x="190" print-dot="no">
  4911. <chord/>
  4912. <pitch>
  4913. <step>B</step>
  4914. <octave>3</octave>
  4915. </pitch>
  4916. <duration>3</duration>
  4917. <voice>1</voice>
  4918. <type>eighth</type>
  4919. <dot/>
  4920. <stem>none</stem>
  4921. <notations>
  4922. <technical>
  4923. <string>3</string>
  4924. <fret>0</fret>
  4925. </technical>
  4926. </notations>
  4927. </note>
  4928. <note default-x="190" print-dot="no">
  4929. <chord/>
  4930. <pitch>
  4931. <step>D</step>
  4932. <alter>1</alter>
  4933. <octave>4</octave>
  4934. </pitch>
  4935. <duration>3</duration>
  4936. <voice>1</voice>
  4937. <type>eighth</type>
  4938. <dot/>
  4939. <stem>none</stem>
  4940. <notations>
  4941. <technical>
  4942. <string>2</string>
  4943. <fret>0</fret>
  4944. </technical>
  4945. </notations>
  4946. </note>
  4947. <note default-x="190" print-dot="no">
  4948. <chord/>
  4949. <pitch>
  4950. <step>F</step>
  4951. <alter>1</alter>
  4952. <octave>4</octave>
  4953. </pitch>
  4954. <duration>3</duration>
  4955. <voice>1</voice>
  4956. <type>eighth</type>
  4957. <dot/>
  4958. <stem>none</stem>
  4959. <notations>
  4960. <technical>
  4961. <string>1</string>
  4962. <fret>0</fret>
  4963. </technical>
  4964. </notations>
  4965. </note>
  4966. <note default-x="269" print-dot="no">
  4967. <pitch>
  4968. <step>G</step>
  4969. <alter>1</alter>
  4970. <octave>2</octave>
  4971. </pitch>
  4972. <duration>3</duration>
  4973. <voice>1</voice>
  4974. <type>eighth</type>
  4975. <dot/>
  4976. <stem>none</stem>
  4977. <notations>
  4978. <technical>
  4979. <string>6</string>
  4980. <fret>2</fret>
  4981. </technical>
  4982. </notations>
  4983. </note>
  4984. <note default-x="269" print-dot="no">
  4985. <chord/>
  4986. <pitch>
  4987. <step>D</step>
  4988. <alter>1</alter>
  4989. <octave>3</octave>
  4990. </pitch>
  4991. <duration>3</duration>
  4992. <voice>1</voice>
  4993. <type>eighth</type>
  4994. <dot/>
  4995. <stem>none</stem>
  4996. <notations>
  4997. <technical>
  4998. <string>5</string>
  4999. <fret>2</fret>
  5000. </technical>
  5001. </notations>
  5002. </note>
  5003. <note default-x="269" print-dot="no">
  5004. <chord/>
  5005. <pitch>
  5006. <step>A</step>
  5007. <alter>1</alter>
  5008. <octave>3</octave>
  5009. </pitch>
  5010. <duration>3</duration>
  5011. <voice>1</voice>
  5012. <type>eighth</type>
  5013. <dot/>
  5014. <stem>none</stem>
  5015. <notations>
  5016. <technical>
  5017. <string>4</string>
  5018. <fret>4</fret>
  5019. </technical>
  5020. </notations>
  5021. </note>
  5022. <note default-x="269" print-dot="no">
  5023. <chord/>
  5024. <pitch>
  5025. <step>B</step>
  5026. <octave>3</octave>
  5027. </pitch>
  5028. <duration>3</duration>
  5029. <voice>1</voice>
  5030. <type>eighth</type>
  5031. <dot/>
  5032. <stem>none</stem>
  5033. <notations>
  5034. <technical>
  5035. <string>3</string>
  5036. <fret>0</fret>
  5037. </technical>
  5038. </notations>
  5039. </note>
  5040. <note default-x="319" print-dot="no">
  5041. <pitch>
  5042. <step>A</step>
  5043. <alter>1</alter>
  5044. <octave>3</octave>
  5045. </pitch>
  5046. <duration>3</duration>
  5047. <voice>1</voice>
  5048. <type>eighth</type>
  5049. <dot/>
  5050. <stem>none</stem>
  5051. <notations>
  5052. <technical>
  5053. <string>4</string>
  5054. <fret>4</fret>
  5055. </technical>
  5056. </notations>
  5057. </note>
  5058. <note default-x="319" print-dot="no">
  5059. <chord/>
  5060. <pitch>
  5061. <step>B</step>
  5062. <octave>3</octave>
  5063. </pitch>
  5064. <duration>3</duration>
  5065. <voice>1</voice>
  5066. <type>eighth</type>
  5067. <dot/>
  5068. <stem>none</stem>
  5069. <notations>
  5070. <technical>
  5071. <string>3</string>
  5072. <fret>0</fret>
  5073. </technical>
  5074. </notations>
  5075. </note>
  5076. <note default-x="319" print-dot="no">
  5077. <chord/>
  5078. <pitch>
  5079. <step>D</step>
  5080. <alter>1</alter>
  5081. <octave>4</octave>
  5082. </pitch>
  5083. <duration>3</duration>
  5084. <voice>1</voice>
  5085. <type>eighth</type>
  5086. <dot/>
  5087. <stem>none</stem>
  5088. <notations>
  5089. <technical>
  5090. <string>2</string>
  5091. <fret>0</fret>
  5092. </technical>
  5093. </notations>
  5094. </note>
  5095. <note default-x="319" print-dot="no">
  5096. <chord/>
  5097. <pitch>
  5098. <step>F</step>
  5099. <alter>1</alter>
  5100. <octave>4</octave>
  5101. </pitch>
  5102. <duration>3</duration>
  5103. <voice>1</voice>
  5104. <type>eighth</type>
  5105. <dot/>
  5106. <stem>none</stem>
  5107. <notations>
  5108. <technical>
  5109. <string>1</string>
  5110. <fret>0</fret>
  5111. </technical>
  5112. </notations>
  5113. </note>
  5114. <note default-x="351">
  5115. <pitch>
  5116. <step>G</step>
  5117. <alter>1</alter>
  5118. <octave>2</octave>
  5119. </pitch>
  5120. <duration>1</duration>
  5121. <voice>1</voice>
  5122. <type>16th</type>
  5123. <stem>none</stem>
  5124. <notations>
  5125. <technical>
  5126. <string>6</string>
  5127. <fret>2</fret>
  5128. </technical>
  5129. </notations>
  5130. </note>
  5131. <note default-x="351">
  5132. <chord/>
  5133. <pitch>
  5134. <step>D</step>
  5135. <alter>1</alter>
  5136. <octave>3</octave>
  5137. </pitch>
  5138. <duration>1</duration>
  5139. <voice>1</voice>
  5140. <type>16th</type>
  5141. <stem>none</stem>
  5142. <notations>
  5143. <technical>
  5144. <string>5</string>
  5145. <fret>2</fret>
  5146. </technical>
  5147. </notations>
  5148. </note>
  5149. <note default-x="351">
  5150. <chord/>
  5151. <pitch>
  5152. <step>A</step>
  5153. <alter>1</alter>
  5154. <octave>3</octave>
  5155. </pitch>
  5156. <duration>1</duration>
  5157. <voice>1</voice>
  5158. <type>16th</type>
  5159. <stem>none</stem>
  5160. <notations>
  5161. <technical>
  5162. <string>4</string>
  5163. <fret>4</fret>
  5164. </technical>
  5165. </notations>
  5166. </note>
  5167. <note default-x="351">
  5168. <chord/>
  5169. <pitch>
  5170. <step>B</step>
  5171. <octave>3</octave>
  5172. </pitch>
  5173. <duration>1</duration>
  5174. <voice>1</voice>
  5175. <type>16th</type>
  5176. <stem>none</stem>
  5177. <notations>
  5178. <technical>
  5179. <string>3</string>
  5180. <fret>0</fret>
  5181. </technical>
  5182. </notations>
  5183. </note>
  5184. <note default-x="367">
  5185. <pitch>
  5186. <step>A</step>
  5187. <alter>1</alter>
  5188. <octave>3</octave>
  5189. </pitch>
  5190. <duration>2</duration>
  5191. <voice>1</voice>
  5192. <type>eighth</type>
  5193. <stem>none</stem>
  5194. <notations>
  5195. <technical>
  5196. <string>4</string>
  5197. <fret>4</fret>
  5198. </technical>
  5199. </notations>
  5200. </note>
  5201. <note default-x="367">
  5202. <chord/>
  5203. <pitch>
  5204. <step>B</step>
  5205. <octave>3</octave>
  5206. </pitch>
  5207. <duration>2</duration>
  5208. <voice>1</voice>
  5209. <type>eighth</type>
  5210. <stem>none</stem>
  5211. <notations>
  5212. <technical>
  5213. <string>3</string>
  5214. <fret>0</fret>
  5215. </technical>
  5216. </notations>
  5217. </note>
  5218. <note default-x="367">
  5219. <chord/>
  5220. <pitch>
  5221. <step>D</step>
  5222. <alter>1</alter>
  5223. <octave>4</octave>
  5224. </pitch>
  5225. <duration>2</duration>
  5226. <voice>1</voice>
  5227. <type>eighth</type>
  5228. <stem>none</stem>
  5229. <notations>
  5230. <technical>
  5231. <string>2</string>
  5232. <fret>0</fret>
  5233. </technical>
  5234. </notations>
  5235. </note>
  5236. <note default-x="367">
  5237. <chord/>
  5238. <pitch>
  5239. <step>F</step>
  5240. <alter>1</alter>
  5241. <octave>4</octave>
  5242. </pitch>
  5243. <duration>2</duration>
  5244. <voice>1</voice>
  5245. <type>eighth</type>
  5246. <stem>none</stem>
  5247. <notations>
  5248. <technical>
  5249. <string>1</string>
  5250. <fret>0</fret>
  5251. </technical>
  5252. </notations>
  5253. </note>
  5254. <note default-x="391">
  5255. <pitch>
  5256. <step>G</step>
  5257. <alter>1</alter>
  5258. <octave>2</octave>
  5259. </pitch>
  5260. <duration>1</duration>
  5261. <voice>1</voice>
  5262. <type>16th</type>
  5263. <stem>none</stem>
  5264. <notations>
  5265. <technical>
  5266. <string>6</string>
  5267. <fret>2</fret>
  5268. </technical>
  5269. </notations>
  5270. </note>
  5271. </measure>
  5272. <!--=======================================================-->
  5273. <measure number="16" width="328">
  5274. <note default-x="11">
  5275. <pitch>
  5276. <step>F</step>
  5277. <alter>1</alter>
  5278. <octave>2</octave>
  5279. </pitch>
  5280. <duration>1</duration>
  5281. <voice>1</voice>
  5282. <type>16th</type>
  5283. <stem>none</stem>
  5284. <notations>
  5285. <technical>
  5286. <string>6</string>
  5287. <fret>0</fret>
  5288. </technical>
  5289. </notations>
  5290. </note>
  5291. <note default-x="26">
  5292. <pitch>
  5293. <step>G</step>
  5294. <alter>1</alter>
  5295. <octave>2</octave>
  5296. </pitch>
  5297. <duration>2</duration>
  5298. <voice>1</voice>
  5299. <type>eighth</type>
  5300. <stem>none</stem>
  5301. <notations>
  5302. <technical>
  5303. <string>6</string>
  5304. <fret>2</fret>
  5305. </technical>
  5306. </notations>
  5307. </note>
  5308. <note default-x="50" print-dot="no">
  5309. <pitch>
  5310. <step>G</step>
  5311. <alter>1</alter>
  5312. <octave>2</octave>
  5313. </pitch>
  5314. <duration>3</duration>
  5315. <voice>1</voice>
  5316. <type>eighth</type>
  5317. <dot/>
  5318. <stem>none</stem>
  5319. <notations>
  5320. <technical>
  5321. <string>6</string>
  5322. <fret>2</fret>
  5323. </technical>
  5324. </notations>
  5325. </note>
  5326. <note default-x="50" print-dot="no">
  5327. <chord/>
  5328. <pitch>
  5329. <step>D</step>
  5330. <alter>1</alter>
  5331. <octave>3</octave>
  5332. </pitch>
  5333. <duration>3</duration>
  5334. <voice>1</voice>
  5335. <type>eighth</type>
  5336. <dot/>
  5337. <stem>none</stem>
  5338. <notations>
  5339. <technical>
  5340. <string>5</string>
  5341. <fret>2</fret>
  5342. </technical>
  5343. </notations>
  5344. </note>
  5345. <note default-x="50" print-dot="no">
  5346. <chord/>
  5347. <pitch>
  5348. <step>A</step>
  5349. <alter>1</alter>
  5350. <octave>3</octave>
  5351. </pitch>
  5352. <duration>3</duration>
  5353. <voice>1</voice>
  5354. <type>eighth</type>
  5355. <dot/>
  5356. <stem>none</stem>
  5357. <notations>
  5358. <technical>
  5359. <string>4</string>
  5360. <fret>4</fret>
  5361. </technical>
  5362. </notations>
  5363. </note>
  5364. <note default-x="83" print-dot="no">
  5365. <pitch>
  5366. <step>G</step>
  5367. <alter>1</alter>
  5368. <octave>2</octave>
  5369. </pitch>
  5370. <duration>3</duration>
  5371. <voice>1</voice>
  5372. <type>eighth</type>
  5373. <dot/>
  5374. <stem>none</stem>
  5375. <notations>
  5376. <technical>
  5377. <string>6</string>
  5378. <fret>2</fret>
  5379. </technical>
  5380. </notations>
  5381. </note>
  5382. <note default-x="83" print-dot="no">
  5383. <chord/>
  5384. <pitch>
  5385. <step>D</step>
  5386. <alter>1</alter>
  5387. <octave>3</octave>
  5388. </pitch>
  5389. <duration>3</duration>
  5390. <voice>1</voice>
  5391. <type>eighth</type>
  5392. <dot/>
  5393. <stem>none</stem>
  5394. <notations>
  5395. <technical>
  5396. <string>5</string>
  5397. <fret>2</fret>
  5398. </technical>
  5399. </notations>
  5400. </note>
  5401. <note default-x="83" print-dot="no">
  5402. <chord/>
  5403. <pitch>
  5404. <step>A</step>
  5405. <alter>1</alter>
  5406. <octave>3</octave>
  5407. </pitch>
  5408. <duration>3</duration>
  5409. <voice>1</voice>
  5410. <type>eighth</type>
  5411. <dot/>
  5412. <stem>none</stem>
  5413. <notations>
  5414. <technical>
  5415. <string>4</string>
  5416. <fret>4</fret>
  5417. </technical>
  5418. </notations>
  5419. </note>
  5420. <note default-x="83" print-dot="no">
  5421. <chord/>
  5422. <pitch>
  5423. <step>B</step>
  5424. <octave>3</octave>
  5425. </pitch>
  5426. <duration>3</duration>
  5427. <voice>1</voice>
  5428. <type>eighth</type>
  5429. <dot/>
  5430. <stem>none</stem>
  5431. <notations>
  5432. <technical>
  5433. <string>3</string>
  5434. <fret>0</fret>
  5435. </technical>
  5436. </notations>
  5437. </note>
  5438. <note default-x="120" print-dot="no">
  5439. <pitch>
  5440. <step>A</step>
  5441. <alter>1</alter>
  5442. <octave>3</octave>
  5443. </pitch>
  5444. <duration>3</duration>
  5445. <voice>1</voice>
  5446. <type>eighth</type>
  5447. <dot/>
  5448. <stem>none</stem>
  5449. <notations>
  5450. <technical>
  5451. <string>4</string>
  5452. <fret>4</fret>
  5453. </technical>
  5454. </notations>
  5455. </note>
  5456. <note default-x="121" print-dot="no">
  5457. <chord/>
  5458. <pitch>
  5459. <step>B</step>
  5460. <octave>3</octave>
  5461. </pitch>
  5462. <duration>3</duration>
  5463. <voice>1</voice>
  5464. <type>eighth</type>
  5465. <dot/>
  5466. <stem>none</stem>
  5467. <notations>
  5468. <technical>
  5469. <string>3</string>
  5470. <fret>0</fret>
  5471. </technical>
  5472. </notations>
  5473. </note>
  5474. <note default-x="121" print-dot="no">
  5475. <chord/>
  5476. <pitch>
  5477. <step>D</step>
  5478. <alter>1</alter>
  5479. <octave>4</octave>
  5480. </pitch>
  5481. <duration>3</duration>
  5482. <voice>1</voice>
  5483. <type>eighth</type>
  5484. <dot/>
  5485. <stem>none</stem>
  5486. <notations>
  5487. <technical>
  5488. <string>2</string>
  5489. <fret>0</fret>
  5490. </technical>
  5491. </notations>
  5492. </note>
  5493. <note default-x="121" print-dot="no">
  5494. <chord/>
  5495. <pitch>
  5496. <step>F</step>
  5497. <alter>1</alter>
  5498. <octave>4</octave>
  5499. </pitch>
  5500. <duration>3</duration>
  5501. <voice>1</voice>
  5502. <type>eighth</type>
  5503. <dot/>
  5504. <stem>none</stem>
  5505. <notations>
  5506. <technical>
  5507. <string>1</string>
  5508. <fret>0</fret>
  5509. </technical>
  5510. </notations>
  5511. </note>
  5512. <note default-x="186">
  5513. <pitch>
  5514. <step>G</step>
  5515. <alter>1</alter>
  5516. <octave>2</octave>
  5517. </pitch>
  5518. <duration>1</duration>
  5519. <voice>1</voice>
  5520. <type>16th</type>
  5521. <stem>none</stem>
  5522. <notations>
  5523. <technical>
  5524. <string>6</string>
  5525. <fret>2</fret>
  5526. </technical>
  5527. </notations>
  5528. </note>
  5529. <note default-x="186">
  5530. <chord/>
  5531. <pitch>
  5532. <step>D</step>
  5533. <alter>1</alter>
  5534. <octave>3</octave>
  5535. </pitch>
  5536. <duration>1</duration>
  5537. <voice>1</voice>
  5538. <type>16th</type>
  5539. <stem>none</stem>
  5540. <notations>
  5541. <technical>
  5542. <string>5</string>
  5543. <fret>2</fret>
  5544. </technical>
  5545. </notations>
  5546. </note>
  5547. <note default-x="186">
  5548. <chord/>
  5549. <pitch>
  5550. <step>A</step>
  5551. <alter>1</alter>
  5552. <octave>3</octave>
  5553. </pitch>
  5554. <duration>1</duration>
  5555. <voice>1</voice>
  5556. <type>16th</type>
  5557. <stem>none</stem>
  5558. <notations>
  5559. <technical>
  5560. <string>4</string>
  5561. <fret>4</fret>
  5562. </technical>
  5563. </notations>
  5564. </note>
  5565. <note default-x="186">
  5566. <chord/>
  5567. <pitch>
  5568. <step>B</step>
  5569. <octave>3</octave>
  5570. </pitch>
  5571. <duration>1</duration>
  5572. <voice>1</voice>
  5573. <type>16th</type>
  5574. <stem>none</stem>
  5575. <notations>
  5576. <technical>
  5577. <string>3</string>
  5578. <fret>0</fret>
  5579. </technical>
  5580. </notations>
  5581. </note>
  5582. <note default-x="224">
  5583. <pitch>
  5584. <step>A</step>
  5585. <alter>1</alter>
  5586. <octave>3</octave>
  5587. </pitch>
  5588. <duration>2</duration>
  5589. <voice>1</voice>
  5590. <type>eighth</type>
  5591. <stem>none</stem>
  5592. <notations>
  5593. <technical>
  5594. <string>4</string>
  5595. <fret>4</fret>
  5596. </technical>
  5597. </notations>
  5598. </note>
  5599. <note default-x="224">
  5600. <chord/>
  5601. <pitch>
  5602. <step>B</step>
  5603. <octave>3</octave>
  5604. </pitch>
  5605. <duration>2</duration>
  5606. <voice>1</voice>
  5607. <type>eighth</type>
  5608. <stem>none</stem>
  5609. <notations>
  5610. <technical>
  5611. <string>3</string>
  5612. <fret>0</fret>
  5613. </technical>
  5614. </notations>
  5615. </note>
  5616. <note default-x="224">
  5617. <chord/>
  5618. <pitch>
  5619. <step>D</step>
  5620. <alter>1</alter>
  5621. <octave>4</octave>
  5622. </pitch>
  5623. <duration>2</duration>
  5624. <voice>1</voice>
  5625. <type>eighth</type>
  5626. <stem>none</stem>
  5627. <notations>
  5628. <technical>
  5629. <string>2</string>
  5630. <fret>0</fret>
  5631. </technical>
  5632. </notations>
  5633. </note>
  5634. <note default-x="224">
  5635. <chord/>
  5636. <pitch>
  5637. <step>F</step>
  5638. <alter>1</alter>
  5639. <octave>4</octave>
  5640. </pitch>
  5641. <duration>2</duration>
  5642. <voice>1</voice>
  5643. <type>eighth</type>
  5644. <stem>none</stem>
  5645. <notations>
  5646. <technical>
  5647. <string>1</string>
  5648. <fret>0</fret>
  5649. </technical>
  5650. </notations>
  5651. </note>
  5652. <note default-x="274">
  5653. <pitch>
  5654. <step>G</step>
  5655. <alter>1</alter>
  5656. <octave>2</octave>
  5657. </pitch>
  5658. <duration>1</duration>
  5659. <voice>1</voice>
  5660. <type>16th</type>
  5661. <stem>none</stem>
  5662. <notations>
  5663. <technical>
  5664. <string>6</string>
  5665. <fret>2</fret>
  5666. </technical>
  5667. </notations>
  5668. </note>
  5669. </measure>
  5670. <!--=======================================================-->
  5671. <measure number="17" width="247">
  5672. <note default-x="14" print-dot="no">
  5673. <pitch>
  5674. <step>F</step>
  5675. <alter>1</alter>
  5676. <octave>2</octave>
  5677. </pitch>
  5678. <duration>3</duration>
  5679. <voice>1</voice>
  5680. <type>eighth</type>
  5681. <dot/>
  5682. <stem>none</stem>
  5683. <notations>
  5684. <technical>
  5685. <string>6</string>
  5686. <fret>0</fret>
  5687. </technical>
  5688. </notations>
  5689. </note>
  5690. <note default-x="14" print-dot="no">
  5691. <chord/>
  5692. <pitch>
  5693. <step>C</step>
  5694. <alter>1</alter>
  5695. <octave>3</octave>
  5696. </pitch>
  5697. <duration>3</duration>
  5698. <voice>1</voice>
  5699. <type>eighth</type>
  5700. <dot/>
  5701. <stem>none</stem>
  5702. <notations>
  5703. <technical>
  5704. <string>5</string>
  5705. <fret>0</fret>
  5706. </technical>
  5707. </notations>
  5708. </note>
  5709. <note default-x="71" print-dot="no">
  5710. <pitch>
  5711. <step>A</step>
  5712. <alter>1</alter>
  5713. <octave>3</octave>
  5714. </pitch>
  5715. <duration>3</duration>
  5716. <voice>1</voice>
  5717. <type>eighth</type>
  5718. <dot/>
  5719. <stem>none</stem>
  5720. <notations>
  5721. <technical>
  5722. <string>4</string>
  5723. <fret>4</fret>
  5724. </technical>
  5725. </notations>
  5726. </note>
  5727. <note default-x="138" print-dot="no">
  5728. <pitch>
  5729. <step>C</step>
  5730. <alter>1</alter>
  5731. <octave>3</octave>
  5732. </pitch>
  5733. <duration>3</duration>
  5734. <voice>1</voice>
  5735. <type>eighth</type>
  5736. <dot/>
  5737. <stem>none</stem>
  5738. <notations>
  5739. <technical>
  5740. <string>5</string>
  5741. <fret>0</fret>
  5742. </technical>
  5743. </notations>
  5744. </note>
  5745. <note default-x="138" print-dot="no">
  5746. <chord/>
  5747. <pitch>
  5748. <step>G</step>
  5749. <alter>1</alter>
  5750. <octave>3</octave>
  5751. </pitch>
  5752. <duration>3</duration>
  5753. <voice>1</voice>
  5754. <type>eighth</type>
  5755. <dot/>
  5756. <stem>none</stem>
  5757. <notations>
  5758. <technical>
  5759. <string>4</string>
  5760. <fret>2</fret>
  5761. </technical>
  5762. </notations>
  5763. </note>
  5764. <note default-x="138" print-dot="no">
  5765. <chord/>
  5766. <pitch>
  5767. <step>B</step>
  5768. <octave>3</octave>
  5769. </pitch>
  5770. <duration>3</duration>
  5771. <voice>1</voice>
  5772. <type>eighth</type>
  5773. <dot/>
  5774. <stem>none</stem>
  5775. <notations>
  5776. <technical>
  5777. <string>3</string>
  5778. <fret>0</fret>
  5779. </technical>
  5780. </notations>
  5781. </note>
  5782. <note default-x="169" print-dot="no">
  5783. <pitch>
  5784. <step>G</step>
  5785. <alter>1</alter>
  5786. <octave>3</octave>
  5787. </pitch>
  5788. <duration>3</duration>
  5789. <voice>1</voice>
  5790. <type>eighth</type>
  5791. <dot/>
  5792. <stem>none</stem>
  5793. <notations>
  5794. <technical>
  5795. <string>4</string>
  5796. <fret>2</fret>
  5797. </technical>
  5798. </notations>
  5799. </note>
  5800. <note default-x="169" print-dot="no">
  5801. <chord/>
  5802. <pitch>
  5803. <step>B</step>
  5804. <octave>3</octave>
  5805. </pitch>
  5806. <duration>3</duration>
  5807. <voice>1</voice>
  5808. <type>eighth</type>
  5809. <dot/>
  5810. <stem>none</stem>
  5811. <notations>
  5812. <technical>
  5813. <string>3</string>
  5814. <fret>0</fret>
  5815. </technical>
  5816. </notations>
  5817. </note>
  5818. <note default-x="170" print-dot="no">
  5819. <chord/>
  5820. <pitch>
  5821. <step>F</step>
  5822. <alter>1</alter>
  5823. <octave>4</octave>
  5824. </pitch>
  5825. <duration>3</duration>
  5826. <voice>1</voice>
  5827. <type>eighth</type>
  5828. <dot/>
  5829. <stem>none</stem>
  5830. <notations>
  5831. <technical>
  5832. <string>2</string>
  5833. <fret>3</fret>
  5834. </technical>
  5835. </notations>
  5836. </note>
  5837. <note default-x="169" print-dot="no">
  5838. <chord/>
  5839. <pitch>
  5840. <step>F</step>
  5841. <alter>1</alter>
  5842. <octave>4</octave>
  5843. </pitch>
  5844. <duration>3</duration>
  5845. <voice>1</voice>
  5846. <type>eighth</type>
  5847. <dot/>
  5848. <stem>none</stem>
  5849. <notations>
  5850. <technical>
  5851. <string>1</string>
  5852. <fret>0</fret>
  5853. </technical>
  5854. </notations>
  5855. </note>
  5856. <note default-x="200">
  5857. <pitch>
  5858. <step>C</step>
  5859. <alter>1</alter>
  5860. <octave>3</octave>
  5861. </pitch>
  5862. <duration>1</duration>
  5863. <voice>1</voice>
  5864. <type>16th</type>
  5865. <stem>none</stem>
  5866. <notations>
  5867. <technical>
  5868. <string>5</string>
  5869. <fret>0</fret>
  5870. </technical>
  5871. </notations>
  5872. </note>
  5873. <note default-x="200">
  5874. <chord/>
  5875. <pitch>
  5876. <step>G</step>
  5877. <alter>1</alter>
  5878. <octave>3</octave>
  5879. </pitch>
  5880. <duration>1</duration>
  5881. <voice>1</voice>
  5882. <type>16th</type>
  5883. <stem>none</stem>
  5884. <notations>
  5885. <technical>
  5886. <string>4</string>
  5887. <fret>2</fret>
  5888. </technical>
  5889. </notations>
  5890. </note>
  5891. <note default-x="200">
  5892. <chord/>
  5893. <pitch>
  5894. <step>B</step>
  5895. <octave>3</octave>
  5896. </pitch>
  5897. <duration>1</duration>
  5898. <voice>1</voice>
  5899. <type>16th</type>
  5900. <stem>none</stem>
  5901. <notations>
  5902. <technical>
  5903. <string>3</string>
  5904. <fret>0</fret>
  5905. </technical>
  5906. </notations>
  5907. </note>
  5908. <note default-x="216" print-dot="no">
  5909. <pitch>
  5910. <step>F</step>
  5911. <alter>1</alter>
  5912. <octave>3</octave>
  5913. </pitch>
  5914. <duration>3</duration>
  5915. <voice>1</voice>
  5916. <type>eighth</type>
  5917. <dot/>
  5918. <stem>none</stem>
  5919. <notations>
  5920. <technical>
  5921. <string>4</string>
  5922. <fret>0</fret>
  5923. </technical>
  5924. </notations>
  5925. </note>
  5926. </measure>
  5927. </part>
  5928. <!--=========================================================-->
  5929. </score-partwise>