snm.xml 535 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260199" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="APEX"
  85. name="APEX Series"
  86. show="1"
  87. />
  88. <series id="VORTEX"
  89. name="VORTEX Series"
  90. show="1"
  91. />
  92. <series id="20"
  93. name="20 Series"
  94. show="1"
  95. />
  96. <series id="SRL"
  97. name="SRL Series"
  98. show="1"
  99. />
  100. <series id="ACS"
  101. name="ACS Series"
  102. show="1"
  103. />
  104. <series id="10"
  105. name="10 Series"
  106. show="1"
  107. />
  108. <series id="5"
  109. name="5 Series"
  110. show="1"
  111. />
  112. <series id="3"
  113. name="3 Series"
  114. show="1"
  115. />
  116. <series id="R"
  117. name="R Series"
  118. show="1"
  119. />
  120. <series id="C"
  121. name="C Series"
  122. show="1"
  123. />
  124. <series id="Other"
  125. name="Other"
  126. show="1"
  127. />
  128. <!--
  129. <series id="smh"
  130. name="SMH"
  131. />
  132. <series id="cavalry"
  133. name="CAVALRY"
  134. show="0"
  135. />
  136. -->
  137. </serieses>
  138. <products>
  139. <product id="60SPRO"
  140. name="60S PRO"
  141. series="60"
  142. latestVersion="0.1"
  143. latestVersionMesh="0.19"
  144. latestVersionVoicePrompt="1.2"
  145. show = "-1" >
  146. <productMenu id="protocol"
  147. type="2" >
  148. </productMenu>
  149. <productMenu id="ota"
  150. type="0" >
  151. <otaLanguages>
  152. <otaLanguage
  153. id="0"
  154. name="English"
  155. package="0"
  156. />
  157. <otaLanguage
  158. id="0"
  159. name="Français"
  160. package="1"
  161. />
  162. <otaLanguage
  163. id="0"
  164. name="Español"
  165. package="2"
  166. />
  167. <otaLanguage
  168. id="0"
  169. name="Italiano"
  170. package="3"
  171. />
  172. <otaLanguage
  173. id="0"
  174. name="Deutsch"
  175. package="4"
  176. />
  177. <otaLanguage
  178. id="0"
  179. name="Nederlands"
  180. package="5"
  181. />
  182. <otaLanguage
  183. id="0"
  184. name="Русский"
  185. package="6"
  186. />
  187. <otaLanguage
  188. id="0"
  189. name="简体中文"
  190. package="7"
  191. />
  192. <otaLanguage
  193. id="0"
  194. name="한국어"
  195. package="8"
  196. />
  197. <otaLanguage
  198. id="0"
  199. name="日本語"
  200. package="9"
  201. />
  202. <otaLanguage
  203. id="0"
  204. name="Suomi"
  205. package="10"
  206. />
  207. <otaLanguage
  208. id="0"
  209. name="Polski"
  210. package="11"
  211. />
  212. </otaLanguages>
  213. <otaPackages>
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  256. size="5183988"
  257. />
  258. <package
  259. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  260. size="5183988"
  261. />
  262. </otaPackages>
  263. </productMenu>
  264. <productMenu id="sip"
  265. type="1" >
  266. </productMenu>
  267. <productMenu id="illusion"
  268. type="1" >
  269. </productMenu>
  270. <productMenu id="meshIntercom"
  271. type="30" >
  272. </productMenu>
  273. <productMenu id="meshIntercom+"
  274. type="3"
  275. url="2" >
  276. </productMenu>
  277. <productMenu id="waveIntercom"
  278. type="1" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercom"
  281. type="1"
  282. url="2" >
  283. </productMenu>
  284. <productMenu id="bluetoothIntercomGrouping"
  285. type="0" >
  286. </productMenu>
  287. <productMenu id="fmradio"
  288. type="1"
  289. url="1" >
  290. </productMenu>
  291. <productMenu id="phone"
  292. type="1" >
  293. </productMenu>
  294. <productMenu id="music"
  295. type="1" >
  296. </productMenu>
  297. <productMenu id="musicSharing"
  298. type="0" >
  299. </productMenu>
  300. <productMenu id="deviceSetting"
  301. type="1"
  302. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  303. </productMenu>
  304. <productMenu id="quickGuide"
  305. type="0"
  306. url=""
  307. size="1.12MB" >
  308. </productMenu>
  309. <productMenu id="userGuide"
  310. type="1"
  311. url=""
  312. size="2.0MB" >
  313. </productMenu>
  314. <productMenu id="videoGuide"
  315. type="0"
  316. url=""
  317. size="3.41MB" >
  318. </productMenu>
  319. <productMenu id="connectGuide"
  320. type="0"
  321. url=""
  322. size="1.12MB" >
  323. </productMenu>
  324. <productMenu id="volume"
  325. type="16" >
  326. </productMenu>
  327. <productMenu id="soundMode"
  328. type="1" >
  329. </productMenu>
  330. <productMenu id="battery"
  331. type="1" >
  332. </productMenu>
  333. <productID id="6A1A"
  334. />
  335. <productGroupable type="0"
  336. />
  337. </product>
  338. <product id="60SEVO"
  339. name="60S EVO"
  340. series="60"
  341. latestVersion="1.0.3"
  342. latestVersionMesh="0.19"
  343. latestVersionVoicePrompt="1.8"
  344. show = "1" >
  345. <productMenu id="protocol"
  346. type="2" >
  347. </productMenu>
  348. <productMenu id="warranty"
  349. type="1" >
  350. </productMenu>
  351. <productMenu id="serialNumber"
  352. type="1" >
  353. </productMenu>
  354. <productMenu id="ota"
  355. type="2" >
  356. <otaLanguages>
  357. <otaLanguage
  358. id="0"
  359. name="English"
  360. package="0"
  361. />
  362. <otaLanguage
  363. id="0"
  364. name="Français"
  365. package="1"
  366. />
  367. <otaLanguage
  368. id="0"
  369. name="Español"
  370. package="2"
  371. />
  372. <otaLanguage
  373. id="0"
  374. name="Italiano"
  375. package="3"
  376. />
  377. <otaLanguage
  378. id="0"
  379. name="Deutsch"
  380. package="4"
  381. />
  382. <otaLanguage
  383. id="0"
  384. name="Nederlands"
  385. package="5"
  386. />
  387. <otaLanguage
  388. id="0"
  389. name="Русский"
  390. package="6"
  391. />
  392. <otaLanguage
  393. id="0"
  394. name="简体中文"
  395. package="7"
  396. />
  397. <otaLanguage
  398. id="0"
  399. name="한국어"
  400. package="8"
  401. />
  402. <otaLanguage
  403. id="0"
  404. name="日本語"
  405. package="9"
  406. />
  407. <otaLanguage
  408. id="0"
  409. name="Suomi"
  410. package="10"
  411. />
  412. <otaLanguage
  413. id="0"
  414. name="Polski"
  415. package="11"
  416. />
  417. </otaLanguages>
  418. <otaPackages>
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  461. size="5183988"
  462. />
  463. <package
  464. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  465. size="5183988"
  466. />
  467. </otaPackages>
  468. </productMenu>
  469. <productMenu id="sip"
  470. type="1" >
  471. </productMenu>
  472. <productMenu id="illusion"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="meshIntercom"
  476. type="30" >
  477. </productMenu>
  478. <productMenu id="meshIntercom+"
  479. type="3"
  480. url="2" >
  481. </productMenu>
  482. <productMenu id="waveIntercom"
  483. type="1" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercom"
  486. type="1"
  487. url="2" >
  488. </productMenu>
  489. <productMenu id="bluetoothIntercomGrouping"
  490. type="0" >
  491. </productMenu>
  492. <productMenu id="fmradio"
  493. type="1"
  494. url="1" >
  495. </productMenu>
  496. <productMenu id="phone"
  497. type="1" >
  498. </productMenu>
  499. <productMenu id="music"
  500. type="1" >
  501. </productMenu>
  502. <productMenu id="musicSharing"
  503. type="0" >
  504. </productMenu>
  505. <productMenu id="deviceSetting"
  506. type="1"
  507. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  508. <productMenuURL version="1.0.2"
  509. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  510. />
  511. </productMenu>
  512. <productMenu id="quickGuide"
  513. type="0"
  514. url=""
  515. size="1.12MB" >
  516. </productMenu>
  517. <productMenu id="userGuide"
  518. type="1"
  519. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  520. size="2.0MB" >
  521. </productMenu>
  522. <productMenu id="videoGuide"
  523. type="0"
  524. url=""
  525. size="3.41MB" >
  526. </productMenu>
  527. <productMenu id="connectGuide"
  528. type="1"
  529. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  530. size="1.12MB" >
  531. </productMenu>
  532. <productMenu id="volume"
  533. type="16" >
  534. </productMenu>
  535. <productMenu id="volume+"
  536. type="2"
  537. url="0x6004" >
  538. </productMenu>
  539. <productMenu id="soundMode"
  540. type="1" >
  541. </productMenu>
  542. <productMenu id="appearance"
  543. type="1"
  544. url="1|white,silver,black,glossy_black" >
  545. </productMenu>
  546. <productMenu id="battery"
  547. type="1" >
  548. </productMenu>
  549. <productID id="6A15"
  550. />
  551. <productGroupable type="0"
  552. />
  553. </product>
  554. <product id="60S"
  555. name="60S"
  556. series="60"
  557. latestVersion="1.2.11"
  558. latestVersionMesh="1.2"
  559. latestVersionVoicePrompt="1.8"
  560. show = "1" >
  561. <productMenu id="protocol"
  562. type="2" >
  563. </productMenu>
  564. <productMenu id="ota"
  565. type="2" >
  566. <otaLanguages>
  567. <otaLanguage
  568. id="0"
  569. name="English"
  570. package="0"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="Français"
  575. package="1"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Español"
  580. package="2"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Italiano"
  585. package="3"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Deutsch"
  590. package="4"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Nederlands"
  595. package="5"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Русский"
  600. package="6"
  601. />
  602. <otaLanguage
  603. id="0"
  604. name="简体中文"
  605. package="7"
  606. />
  607. <otaLanguage
  608. id="0"
  609. name="한국어"
  610. package="8"
  611. />
  612. <otaLanguage
  613. id="0"
  614. name="日本語"
  615. package="9"
  616. />
  617. <otaLanguage
  618. id="0"
  619. name="Suomi"
  620. package="10"
  621. />
  622. <otaLanguage
  623. id="0"
  624. name="Polski"
  625. package="11"
  626. />
  627. </otaLanguages>
  628. <otaPackages>
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  671. size="5183988"
  672. />
  673. <package
  674. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  675. size="5183988"
  676. />
  677. </otaPackages>
  678. </productMenu>
  679. <productMenu id="sip"
  680. type="1" >
  681. </productMenu>
  682. <productMenu id="illusion"
  683. type="1" >
  684. </productMenu>
  685. <productMenu id="meshIntercom"
  686. type="30" >
  687. </productMenu>
  688. <productMenu id="meshIntercom+"
  689. type="3"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="waveIntercom"
  693. type="1" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercom"
  696. type="1"
  697. url="2" >
  698. </productMenu>
  699. <productMenu id="bluetoothIntercomGrouping"
  700. type="0" >
  701. </productMenu>
  702. <productMenu id="fmradio"
  703. type="1"
  704. url="1" >
  705. </productMenu>
  706. <productMenu id="phone"
  707. type="1" >
  708. </productMenu>
  709. <productMenu id="music"
  710. type="1" >
  711. </productMenu>
  712. <productMenu id="musicSharing"
  713. type="0" >
  714. </productMenu>
  715. <productMenu id="deviceSetting"
  716. type="1"
  717. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  718. <productMenuURL version="1.2.10"
  719. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  720. />
  721. <productMenuURL version="1.2.6"
  722. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  723. />
  724. <productMenuURL version="1.2.3"
  725. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  726. />
  727. </productMenu>
  728. <productMenu id="quickGuide"
  729. type="0"
  730. url=""
  731. size="1.12MB" >
  732. </productMenu>
  733. <productMenu id="userGuide"
  734. type="1"
  735. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  736. size="2.0MB" >
  737. </productMenu>
  738. <productMenu id="videoGuide"
  739. type="0"
  740. url=""
  741. size="3.41MB" >
  742. </productMenu>
  743. <productMenu id="connectGuide"
  744. type="1"
  745. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  746. size="1.12MB" >
  747. </productMenu>
  748. <productMenu id="volume"
  749. type="16" >
  750. </productMenu>
  751. <productMenu id="volume+"
  752. type="2"
  753. url="0x6004" >
  754. <productMenuURL version="1.2.3"
  755. url="0x6004"
  756. />
  757. </productMenu>
  758. <productMenu id="soundMode"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="appearance"
  762. type="1"
  763. url="2|white,silver,chrome,black" >
  764. </productMenu>
  765. <productMenu id="battery"
  766. type="1" >
  767. </productMenu>
  768. <productID id="6A0D"
  769. />
  770. <productGroupable type="0"
  771. />
  772. </product>
  773. <product id="60S"
  774. name="60S"
  775. series="60"
  776. latestVersion="1.2.11"
  777. latestVersionMesh="1.2"
  778. latestVersionVoicePrompt="1.8"
  779. show = "-1" >
  780. <productMenu id="protocol"
  781. type="2" >
  782. </productMenu>
  783. <productMenu id="ota"
  784. type="2" >
  785. <otaLanguages>
  786. <otaLanguage
  787. id="0"
  788. name="English"
  789. package="0"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Français"
  794. package="1"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="Español"
  799. package="2"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Italiano"
  804. package="3"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Deutsch"
  809. package="4"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Nederlands"
  814. package="5"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Русский"
  819. package="6"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="简体中文"
  824. package="7"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="한국어"
  829. package="8"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="日本語"
  834. package="9"
  835. />
  836. <otaLanguage
  837. id="0"
  838. name="Suomi"
  839. package="10"
  840. />
  841. <otaLanguage
  842. id="0"
  843. name="Polski"
  844. package="11"
  845. />
  846. </otaLanguages>
  847. <otaPackages>
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  890. size="5183988"
  891. />
  892. <package
  893. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  894. size="5183988"
  895. />
  896. </otaPackages>
  897. </productMenu>
  898. <productMenu id="wa"
  899. type="0" >
  900. </productMenu>
  901. <productMenu id="sip"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="led"
  905. type="0" >
  906. </productMenu>
  907. <productMenu id="illusion"
  908. type="1" >
  909. </productMenu>
  910. <productMenu id="meshIntercom"
  911. type="30" >
  912. </productMenu>
  913. <productMenu id="meshIntercom+"
  914. type="3"
  915. url="2" >
  916. <productMenuURL version="1.0.2"
  917. url="10"
  918. />
  919. </productMenu>
  920. <productMenu id="waveIntercom"
  921. type="1" >
  922. <productMenuType version="1.0.9"
  923. type="0"
  924. />
  925. </productMenu>
  926. <productMenu id="bluetoothIntercom"
  927. type="1"
  928. url="2" >
  929. </productMenu>
  930. <productMenu id="bluetoothIntercomGrouping"
  931. type="0" >
  932. </productMenu>
  933. <productMenu id="fmradio"
  934. type="1"
  935. url="1" >
  936. </productMenu>
  937. <productMenu id="phone"
  938. type="1" >
  939. </productMenu>
  940. <productMenu id="music"
  941. type="1" >
  942. </productMenu>
  943. <productMenu id="musicSharing"
  944. type="0" >
  945. </productMenu>
  946. <productMenu id="deviceSetting"
  947. type="1"
  948. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  949. <productMenuURL version="1.2.10"
  950. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  951. />
  952. <productMenuURL version="1.2.6"
  953. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  954. />
  955. <productMenuURL version="1.2.3"
  956. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  957. />
  958. <productMenuURL version="1.0.2"
  959. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  960. />
  961. <productMenuURL version="1.0"
  962. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  963. />
  964. <productMenuURL version="0.9.11"
  965. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  966. />
  967. </productMenu>
  968. <productMenu id="quickGuide"
  969. type="0"
  970. url=""
  971. size="1.12MB" >
  972. </productMenu>
  973. <productMenu id="userGuide"
  974. type="1"
  975. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  976. size="2.0MB" >
  977. </productMenu>
  978. <productMenu id="videoGuide"
  979. type="0"
  980. url=""
  981. size="3.41MB" >
  982. </productMenu>
  983. <productMenu id="connectGuide"
  984. type="1"
  985. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  986. size="1.12MB" >
  987. </productMenu>
  988. <productMenu id="volume"
  989. type="16" >
  990. <productMenuType version="0.9.11"
  991. type="13"
  992. />
  993. </productMenu>
  994. <productMenu id="volume+"
  995. type="2"
  996. url="0x6004" >
  997. <productMenuURL version="1.2.3"
  998. url="0x6004"
  999. />
  1000. </productMenu>
  1001. <productMenu id="soundMode"
  1002. type="0" >
  1003. <productMenuType version="0.9.11"
  1004. type="0"
  1005. />
  1006. </productMenu>
  1007. <productMenu id="appearance"
  1008. type="1"
  1009. url="2|white,silver,chrome,black" >
  1010. </productMenu>
  1011. <productMenu id="battery"
  1012. type="1" >
  1013. </productMenu>
  1014. <productID id="6A02"
  1015. />
  1016. <productGroupable type="0"
  1017. />
  1018. </product>
  1019. <product id="60X"
  1020. name="60X"
  1021. series="60"
  1022. latestVersion="1.0.1"
  1023. latestVersionMesh="0.19"
  1024. latestVersionVoicePrompt="1.8"
  1025. show = "1" >
  1026. <productMenu id="protocol"
  1027. type="2" >
  1028. </productMenu>
  1029. <productMenu id="warranty"
  1030. type="1" >
  1031. </productMenu>
  1032. <productMenu id="serialNumber"
  1033. type="1" >
  1034. </productMenu>
  1035. <productMenu id="ota"
  1036. type="2" >
  1037. <otaLanguages>
  1038. <otaLanguage
  1039. id="0"
  1040. name="English"
  1041. package="0"
  1042. />
  1043. <otaLanguage
  1044. id="0"
  1045. name="Français"
  1046. package="1"
  1047. />
  1048. <otaLanguage
  1049. id="0"
  1050. name="Español"
  1051. package="2"
  1052. />
  1053. <otaLanguage
  1054. id="0"
  1055. name="Italiano"
  1056. package="3"
  1057. />
  1058. <otaLanguage
  1059. id="0"
  1060. name="Deutsch"
  1061. package="4"
  1062. />
  1063. <otaLanguage
  1064. id="0"
  1065. name="Nederlands"
  1066. package="5"
  1067. />
  1068. <otaLanguage
  1069. id="0"
  1070. name="Русский"
  1071. package="6"
  1072. />
  1073. <otaLanguage
  1074. id="0"
  1075. name="简体中文"
  1076. package="7"
  1077. />
  1078. <otaLanguage
  1079. id="0"
  1080. name="한국어"
  1081. package="8"
  1082. />
  1083. <otaLanguage
  1084. id="0"
  1085. name="日本語"
  1086. package="9"
  1087. />
  1088. <otaLanguage
  1089. id="0"
  1090. name="Suomi"
  1091. package="10"
  1092. />
  1093. <otaLanguage
  1094. id="0"
  1095. name="Polski"
  1096. package="11"
  1097. />
  1098. </otaLanguages>
  1099. <otaPackages>
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1142. size="5183988"
  1143. />
  1144. <package
  1145. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1146. size="5183988"
  1147. />
  1148. </otaPackages>
  1149. </productMenu>
  1150. <productMenu id="wa"
  1151. type="0" >
  1152. </productMenu>
  1153. <productMenu id="sip"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="led"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="illusion"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="meshIntercom"
  1163. type="30" >
  1164. </productMenu>
  1165. <productMenu id="meshIntercom+"
  1166. type="3"
  1167. url="2" >
  1168. </productMenu>
  1169. <productMenu id="waveIntercom"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="bluetoothIntercom"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="fmradio"
  1176. type="1"
  1177. url="1" >
  1178. </productMenu>
  1179. <productMenu id="mic"
  1180. type="0" >
  1181. </productMenu>
  1182. <productMenu id="phone"
  1183. type="1" >
  1184. </productMenu>
  1185. <productMenu id="music"
  1186. type="1" >
  1187. </productMenu>
  1188. <productMenu id="musicSharing"
  1189. type="0" >
  1190. </productMenu>
  1191. <productMenu id="deviceSetting"
  1192. type="1"
  1193. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1194. <productMenuURL version="1.0"
  1195. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1196. />
  1197. </productMenu>
  1198. <productMenu id="quickGuide"
  1199. type="0"
  1200. url=""
  1201. size="1.12MB" >
  1202. </productMenu>
  1203. <productMenu id="userGuide"
  1204. type="1"
  1205. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1206. size="2.0MB" >
  1207. </productMenu>
  1208. <productMenu id="videoGuide"
  1209. type="0"
  1210. url=""
  1211. size="3.41MB" >
  1212. </productMenu>
  1213. <productMenu id="connectGuide"
  1214. type="1"
  1215. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1216. size="1.12MB" >
  1217. </productMenu>
  1218. <productMenu id="keySettings"
  1219. type="1"
  1220. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1221. </productMenu>
  1222. <productMenu id="volume"
  1223. type="13" >
  1224. </productMenu>
  1225. <productMenu id="volume+"
  1226. type="2"
  1227. url="0x6004" >
  1228. </productMenu>
  1229. <productMenu id="appearance"
  1230. type="1"
  1231. url="1|white,silver,black,glossy_black" >
  1232. </productMenu>
  1233. <productMenu id="battery"
  1234. type="1" >
  1235. </productMenu>
  1236. <productID id="6A03"
  1237. />
  1238. <productGroupable type="0"
  1239. />
  1240. </product>
  1241. <product id="R35"
  1242. name="R35"
  1243. series="R"
  1244. latestVersion="1.1.2"
  1245. latestVersionVoicePrompt="1.5"
  1246. show = "1" >
  1247. <productMenu id="protocol"
  1248. type="2" >
  1249. </productMenu>
  1250. <productMenu id="ota"
  1251. type="2" >
  1252. <otaLanguages>
  1253. <otaLanguage
  1254. id="0"
  1255. name="English"
  1256. package="0"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="简体中文"
  1261. package="1"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="Chinese Singapore"
  1266. package="2"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="Filipino"
  1271. package="3"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="Hebrew"
  1276. package="4"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="Hindi"
  1281. package="5"
  1282. />
  1283. <otaLanguage
  1284. id="0"
  1285. name="Indonesian"
  1286. package="6"
  1287. />
  1288. <otaLanguage
  1289. id="0"
  1290. name="日本語"
  1291. package="7"
  1292. />
  1293. <otaLanguage
  1294. id="0"
  1295. name="한국어"
  1296. package="8"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="Malay"
  1301. package="9"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Modern Standard Arabic"
  1306. package="10"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Taiwanese"
  1311. package="11"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Tamil"
  1316. package="12"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Thai"
  1321. package="13"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="东北话"
  1326. package="14"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="广东话"
  1331. package="15"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="江浙沪"
  1336. package="16"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="四川话"
  1341. package="17"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="陕西话"
  1346. package="18"
  1347. />
  1348. </otaLanguages>
  1349. <otaPackages>
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1392. size="5183988"
  1393. />
  1394. <package
  1395. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1396. size="5183988"
  1397. />
  1398. <package
  1399. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1400. size="5183988"
  1401. />
  1402. <package
  1403. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1404. size="5183988"
  1405. />
  1406. <package
  1407. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1408. size="5183988"
  1409. />
  1410. <package
  1411. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1412. size="5183988"
  1413. />
  1414. <package
  1415. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1416. size="5183988"
  1417. />
  1418. <package
  1419. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1420. size="5183988"
  1421. />
  1422. <package
  1423. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1424. size="5183988"
  1425. />
  1426. </otaPackages>
  1427. </productMenu>
  1428. <productMenu id="sip"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="illusion"
  1432. type="1" >
  1433. </productMenu>
  1434. <productMenu id="meshIntercom"
  1435. type="30" >
  1436. </productMenu>
  1437. <productMenu id="meshIntercom+"
  1438. type="3"
  1439. url="2" >
  1440. </productMenu>
  1441. <productMenu id="waveIntercom"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="phone"
  1445. type="1" >
  1446. </productMenu>
  1447. <productMenu id="music"
  1448. type="1" >
  1449. </productMenu>
  1450. <productMenu id="musicSharing"
  1451. type="0" >
  1452. </productMenu>
  1453. <productMenu id="deviceSetting"
  1454. type="1"
  1455. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1456. <productMenuURL version="1.1.1"
  1457. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1458. />
  1459. <productMenuURL version="1.0.3"
  1460. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1461. />
  1462. </productMenu>
  1463. <productMenu id="quickGuide"
  1464. type="0"
  1465. url=""
  1466. size="1.12MB" >
  1467. </productMenu>
  1468. <productMenu id="userGuide"
  1469. type="1"
  1470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1471. size="2.0MB" >
  1472. </productMenu>
  1473. <productMenu id="videoGuide"
  1474. type="0"
  1475. url=""
  1476. size="3.41MB" >
  1477. </productMenu>
  1478. <productMenu id="connectGuide"
  1479. type="1"
  1480. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1481. size="1.12MB" >
  1482. </productMenu>
  1483. <productMenu id="volume"
  1484. type="16" >
  1485. </productMenu>
  1486. <productMenu id="volume+"
  1487. type="2"
  1488. url="0x6004" >
  1489. </productMenu>
  1490. <productMenu id="soundMode"
  1491. type="0" >
  1492. </productMenu>
  1493. <productMenu id="appearance"
  1494. type="1"
  1495. url="1|white,silver,chrome,black" >
  1496. </productMenu>
  1497. <productMenu id="battery"
  1498. type="1" >
  1499. </productMenu>
  1500. <productID id="6A06"
  1501. />
  1502. <productGroupable type="0"
  1503. />
  1504. </product>
  1505. <product id="COM60X"
  1506. name="BMW MOTORRAD COM 60X"
  1507. series="60"
  1508. latestVersion="0.1.1"
  1509. latestVersionMesh="0.19"
  1510. latestVersionVoicePrompt="1.8"
  1511. show = "-1" >
  1512. <productMenu id="protocol"
  1513. type="2" >
  1514. </productMenu>
  1515. <productMenu id="ota"
  1516. type="2" >
  1517. <otaLanguages>
  1518. <otaLanguage
  1519. id="0"
  1520. name="English"
  1521. package="0"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Français"
  1526. package="1"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Español"
  1531. package="2"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Italiano"
  1536. package="3"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="Deutsch"
  1541. package="4"
  1542. />
  1543. <otaLanguage
  1544. id="0"
  1545. name="Nederlands"
  1546. package="5"
  1547. />
  1548. <otaLanguage
  1549. id="0"
  1550. name="Русский"
  1551. package="6"
  1552. />
  1553. <otaLanguage
  1554. id="0"
  1555. name="简体中文"
  1556. package="7"
  1557. />
  1558. <otaLanguage
  1559. id="0"
  1560. name="한국어"
  1561. package="8"
  1562. />
  1563. <otaLanguage
  1564. id="0"
  1565. name="日本語"
  1566. package="9"
  1567. />
  1568. <otaLanguage
  1569. id="0"
  1570. name="Suomi"
  1571. package="10"
  1572. />
  1573. <otaLanguage
  1574. id="0"
  1575. name="Polski"
  1576. package="11"
  1577. />
  1578. </otaLanguages>
  1579. <otaPackages>
  1580. <package
  1581. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fr-FR.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-es-ES.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-it-IT.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-de-DE.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-nl-NL.img"
  1602. size="5183988"
  1603. />
  1604. <package
  1605. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ru-RU.img"
  1606. size="5183988"
  1607. />
  1608. <package
  1609. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-cmn-CN.img"
  1610. size="5183988"
  1611. />
  1612. <package
  1613. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ko-KR.img"
  1614. size="5183988"
  1615. />
  1616. <package
  1617. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ja-JP.img"
  1618. size="5183988"
  1619. />
  1620. <package
  1621. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fi-FI.img"
  1622. size="5183988"
  1623. />
  1624. <package
  1625. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-pl-PL.img"
  1626. size="5183988"
  1627. />
  1628. </otaPackages>
  1629. </productMenu>
  1630. <productMenu id="wa"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="sip"
  1634. type="1" >
  1635. </productMenu>
  1636. <productMenu id="led"
  1637. type="1" >
  1638. </productMenu>
  1639. <productMenu id="illusion"
  1640. type="1" >
  1641. </productMenu>
  1642. <productMenu id="meshIntercom"
  1643. type="30" >
  1644. </productMenu>
  1645. <productMenu id="meshIntercom+"
  1646. type="3"
  1647. url="2" >
  1648. </productMenu>
  1649. <productMenu id="bluetoothIntercom"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="fmradio"
  1653. type="1"
  1654. url="1" >
  1655. </productMenu>
  1656. <productMenu id="mic"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="phone"
  1660. type="1" >
  1661. </productMenu>
  1662. <productMenu id="music"
  1663. type="1" >
  1664. </productMenu>
  1665. <productMenu id="musicSharing"
  1666. type="0" >
  1667. </productMenu>
  1668. <productMenu id="deviceSetting"
  1669. type="1"
  1670. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1671. </productMenu>
  1672. <productMenu id="quickGuide"
  1673. type="0"
  1674. url=""
  1675. size="1.12MB" >
  1676. </productMenu>
  1677. <productMenu id="userGuide"
  1678. type="1"
  1679. url=""
  1680. size="2.0MB" >
  1681. </productMenu>
  1682. <productMenu id="videoGuide"
  1683. type="0"
  1684. url=""
  1685. size="3.41MB" >
  1686. </productMenu>
  1687. <productMenu id="keySettings"
  1688. type="1"
  1689. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1690. </productMenu>
  1691. <productMenu id="volume"
  1692. type="13" >
  1693. </productMenu>
  1694. <productMenu id="volume+"
  1695. type="2"
  1696. url="0x6004" >
  1697. </productMenu>
  1698. <productMenu id="battery"
  1699. type="1" >
  1700. </productMenu>
  1701. <productID id="6A1B"
  1702. />
  1703. <productGroupable type="0"
  1704. />
  1705. </product>
  1706. <product id="COMP1"
  1707. name="BMW COM P1"
  1708. series="60"
  1709. latestVersion="1.2"
  1710. latestVersionMesh="0.19"
  1711. latestVersionVoicePrompt="1.0"
  1712. show = "-1" >
  1713. <productMenu id="protocol"
  1714. type="2" >
  1715. </productMenu>
  1716. <productMenu id="ota"
  1717. type="2" >
  1718. <otaLanguages>
  1719. <otaLanguage
  1720. id="0"
  1721. name="English"
  1722. package="0"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Français"
  1727. package="1"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Español"
  1732. package="2"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Italiano"
  1737. package="3"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="Deutsch"
  1742. package="4"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Nederlands"
  1747. package="5"
  1748. />
  1749. <otaLanguage
  1750. id="0"
  1751. name="Русский"
  1752. package="6"
  1753. />
  1754. <otaLanguage
  1755. id="0"
  1756. name="简体中文"
  1757. package="7"
  1758. />
  1759. <otaLanguage
  1760. id="0"
  1761. name="한국어"
  1762. package="8"
  1763. />
  1764. <otaLanguage
  1765. id="0"
  1766. name="日本語"
  1767. package="9"
  1768. />
  1769. <otaLanguage
  1770. id="0"
  1771. name="Suomi"
  1772. package="10"
  1773. />
  1774. </otaLanguages>
  1775. <otaPackages>
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1794. size="5183988"
  1795. />
  1796. <package
  1797. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1798. size="5183988"
  1799. />
  1800. <package
  1801. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1802. size="5183988"
  1803. />
  1804. <package
  1805. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1806. size="5183988"
  1807. />
  1808. <package
  1809. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1810. size="5183988"
  1811. />
  1812. <package
  1813. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1814. size="5183988"
  1815. />
  1816. <package
  1817. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1818. size="5183988"
  1819. />
  1820. </otaPackages>
  1821. </productMenu>
  1822. <productMenu id="wa"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="sip"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="led"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="illusion"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="meshIntercom"
  1835. type="30" >
  1836. </productMenu>
  1837. <productMenu id="bluetoothIntercom"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="bluetoothIntercomGrouping"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="fmradio"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="phone"
  1847. type="1" >
  1848. </productMenu>
  1849. <productMenu id="music"
  1850. type="1" >
  1851. </productMenu>
  1852. <productMenu id="musicSharing"
  1853. type="0" >
  1854. </productMenu>
  1855. <productMenu id="deviceSetting"
  1856. type="1"
  1857. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1858. </productMenu>
  1859. <productMenu id="quickGuide"
  1860. type="0"
  1861. url=""
  1862. size="1.12MB" >
  1863. </productMenu>
  1864. <productMenu id="userGuide"
  1865. type="0"
  1866. url=""
  1867. size="2.0MB" >
  1868. </productMenu>
  1869. <productMenu id="videoGuide"
  1870. type="0"
  1871. url=""
  1872. size="3.41MB" >
  1873. </productMenu>
  1874. <productMenu id="volume"
  1875. type="16" >
  1876. </productMenu>
  1877. <productMenu id="battery"
  1878. type="1" >
  1879. </productMenu>
  1880. <productID id="6A80"
  1881. />
  1882. <productGroupable type="0"
  1883. />
  1884. </product>
  1885. <product id="50S"
  1886. name="50S"
  1887. series="50"
  1888. latestVersion="2.7.2"
  1889. show = "1" >
  1890. <productMenu id="protocol"
  1891. type="2" >
  1892. </productMenu>
  1893. <productMenu id="alexa"
  1894. type="0" >
  1895. </productMenu>
  1896. <productMenu id="ota"
  1897. type="0"
  1898. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1899. size="1150234" >
  1900. </productMenu>
  1901. <productMenu id="wa"
  1902. type="1" >
  1903. </productMenu>
  1904. <productMenu id="sip"
  1905. type="1" >
  1906. </productMenu>
  1907. <productMenu id="meshIntercom"
  1908. type="30" >
  1909. <productMenuType version="2.1.1"
  1910. type="20"
  1911. />
  1912. </productMenu>
  1913. <productMenu id="meshIntercom+"
  1914. type="3"
  1915. url="2" >
  1916. <productMenuType version="2.5.9"
  1917. type="2"
  1918. />
  1919. <productMenuURL version="2.1.1"
  1920. url="0"
  1921. />
  1922. </productMenu>
  1923. <productMenu id="waveIntercom"
  1924. type="1" >
  1925. <productMenuType version="2.6"
  1926. type="0"
  1927. />
  1928. </productMenu>
  1929. <productMenu id="bluetoothIntercom"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="phone"
  1933. type="1" >
  1934. </productMenu>
  1935. <productMenu id="music"
  1936. type="1" >
  1937. </productMenu>
  1938. <productMenu id="fmradio"
  1939. type="1" >
  1940. </productMenu>
  1941. <productMenu id="deviceSetting"
  1942. type="1"
  1943. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1944. <productMenuURL version="2.5.9"
  1945. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1946. />
  1947. <productMenuURL version="2.1.1"
  1948. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1949. />
  1950. <productMenuURL version="2.0.3"
  1951. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1952. />
  1953. </productMenu>
  1954. <productMenu id="quickGuide"
  1955. type="0"
  1956. url=""
  1957. size="934KB" >
  1958. </productMenu>
  1959. <productMenu id="userGuide"
  1960. type="1"
  1961. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1962. size="1.14MB" >
  1963. </productMenu>
  1964. <productMenu id="videoGuide"
  1965. type="1"
  1966. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1967. size="3.41MB" >
  1968. </productMenu>
  1969. <productMenu id="connectGuide"
  1970. type="1"
  1971. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1972. size="1.12MB" >
  1973. </productMenu>
  1974. <productMenu id="volume"
  1975. type="11" >
  1976. </productMenu>
  1977. <productMenu id="battery"
  1978. type="1" >
  1979. </productMenu>
  1980. <productID id="3210"
  1981. />
  1982. <productGroupable type="0"
  1983. />
  1984. </product>
  1985. <product id="50S"
  1986. name="50S"
  1987. series="50"
  1988. latestVersion="1.5.1"
  1989. show = "-1" >
  1990. <productMenu id="protocol"
  1991. type="2" >
  1992. </productMenu>
  1993. <productMenu id="alexa"
  1994. type="0" >
  1995. </productMenu>
  1996. <productMenu id="wa"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="sip"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="meshIntercom"
  2003. type="30" >
  2004. <productMenuType version="1.2.2"
  2005. type="20"
  2006. />
  2007. </productMenu>
  2008. <productMenu id="meshIntercom+"
  2009. type="3"
  2010. url="2" >
  2011. <productMenuType version="1.4.9"
  2012. type="2"
  2013. />
  2014. <productMenuURL version="1.2.2"
  2015. url="0"
  2016. />
  2017. </productMenu>
  2018. <productMenu id="waveIntercom"
  2019. type="1" >
  2020. <productMenuType version="1.3.9"
  2021. type="0"
  2022. />
  2023. </productMenu>
  2024. <productMenu id="bluetoothIntercom"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="phone"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="music"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="fmradio"
  2034. type="1" >
  2035. </productMenu>
  2036. <productMenu id="deviceSetting"
  2037. type="1"
  2038. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2039. <productMenuURL version="1.4.9"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2041. />
  2042. <productMenuURL version="1.3.9"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2044. />
  2045. <productMenuURL version="1.2.2"
  2046. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2047. />
  2048. <productMenuURL version="1.1.1"
  2049. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2050. />
  2051. </productMenu>
  2052. <productMenu id="quickGuide"
  2053. type="0"
  2054. url=""
  2055. size="934KB" >
  2056. </productMenu>
  2057. <productMenu id="userGuide"
  2058. type="1"
  2059. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2060. size="1.14MB" >
  2061. </productMenu>
  2062. <productMenu id="videoGuide"
  2063. type="1"
  2064. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2065. size="3.41MB" >
  2066. </productMenu>
  2067. <productMenu id="volume"
  2068. type="11" >
  2069. </productMenu>
  2070. <productMenu id="battery"
  2071. type="1" >
  2072. </productMenu>
  2073. <productID id="3132"
  2074. />
  2075. <productGroupable type="0"
  2076. />
  2077. </product>
  2078. <product id="50R"
  2079. name="50R"
  2080. series="50"
  2081. latestVersion="2.7.1"
  2082. show = "1" >
  2083. <productMenu id="protocol"
  2084. type="2" >
  2085. </productMenu>
  2086. <productMenu id="alexa"
  2087. type="0" >
  2088. </productMenu>
  2089. <productMenu id="ota"
  2090. type="0"
  2091. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2092. size="1150234" >
  2093. </productMenu>
  2094. <productMenu id="wa"
  2095. type="1" >
  2096. </productMenu>
  2097. <productMenu id="sip"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="meshIntercom"
  2101. type="30" >
  2102. <productMenuType version="2.1.1"
  2103. type="20"
  2104. />
  2105. </productMenu>
  2106. <productMenu id="meshIntercom+"
  2107. type="3"
  2108. url="2" >
  2109. <productMenuType version="2.5.9"
  2110. type="2"
  2111. />
  2112. <productMenuURL version="2.1.1"
  2113. url="0"
  2114. />
  2115. </productMenu>
  2116. <productMenu id="waveIntercom"
  2117. type="1" >
  2118. <productMenuType version="2.6"
  2119. type="0"
  2120. />
  2121. </productMenu>
  2122. <productMenu id="bluetoothIntercom"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="phone"
  2126. type="1" >
  2127. </productMenu>
  2128. <productMenu id="music"
  2129. type="1" >
  2130. </productMenu>
  2131. <productMenu id="fmradio"
  2132. type="1" >
  2133. </productMenu>
  2134. <productMenu id="deviceSetting"
  2135. type="1"
  2136. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2137. <productMenuURL version="2.5.9"
  2138. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2139. />
  2140. <productMenuURL version="2.1.1"
  2141. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2142. />
  2143. <productMenuURL version="2.0"
  2144. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2145. />
  2146. </productMenu>
  2147. <productMenu id="quickGuide"
  2148. type="0"
  2149. url=""
  2150. size="344KB" >
  2151. </productMenu>
  2152. <productMenu id="userGuide"
  2153. type="1"
  2154. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2155. size="3.41MB" >
  2156. </productMenu>
  2157. <productMenu id="videoGuide"
  2158. type="1"
  2159. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2160. size="3.41MB" >
  2161. </productMenu>
  2162. <productMenu id="connectGuide"
  2163. type="1"
  2164. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2165. size="1.12MB" >
  2166. </productMenu>
  2167. <productMenu id="volume"
  2168. type="11" >
  2169. </productMenu>
  2170. <productMenu id="battery"
  2171. type="1" >
  2172. </productMenu>
  2173. <productID id="3218"
  2174. />
  2175. <productGroupable type="0"
  2176. />
  2177. </product>
  2178. <product id="50R"
  2179. name="50R"
  2180. series="50"
  2181. latestVersion="1.5.1"
  2182. show = "-1" >
  2183. <productMenu id="protocol"
  2184. type="2" >
  2185. </productMenu>
  2186. <productMenu id="alexa"
  2187. type="0" >
  2188. </productMenu>
  2189. <productMenu id="wa"
  2190. type="1" >
  2191. </productMenu>
  2192. <productMenu id="sip"
  2193. type="1" >
  2194. </productMenu>
  2195. <productMenu id="meshIntercom"
  2196. type="30" >
  2197. <productMenuType version="1.2.2"
  2198. type="20"
  2199. />
  2200. </productMenu>
  2201. <productMenu id="meshIntercom+"
  2202. type="3"
  2203. url="2" >
  2204. <productMenuType version="1.4.9"
  2205. type="2"
  2206. />
  2207. <productMenuURL version="1.2.2"
  2208. url="0"
  2209. />
  2210. </productMenu>
  2211. <productMenu id="waveIntercom"
  2212. type="1" >
  2213. <productMenuType version="1.3.9"
  2214. type="0"
  2215. />
  2216. </productMenu>
  2217. <productMenu id="bluetoothIntercom"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="phone"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="music"
  2224. type="1" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="1" >
  2228. </productMenu>
  2229. <productMenu id="deviceSetting"
  2230. type="1"
  2231. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2232. <productMenuURL version="1.4.9"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2234. />
  2235. <productMenuURL version="1.3.9"
  2236. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2237. />
  2238. <productMenuURL version="1.2.2"
  2239. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2240. />
  2241. <productMenuURL version="1.1.1"
  2242. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2243. />
  2244. </productMenu>
  2245. <productMenu id="quickGuide"
  2246. type="0"
  2247. url=""
  2248. size="344KB" >
  2249. </productMenu>
  2250. <productMenu id="userGuide"
  2251. type="1"
  2252. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2253. size="3.41MB" >
  2254. </productMenu>
  2255. <productMenu id="videoGuide"
  2256. type="1"
  2257. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2258. size="3.41MB" >
  2259. </productMenu>
  2260. <productMenu id="volume"
  2261. type="11" >
  2262. </productMenu>
  2263. <productMenu id="battery"
  2264. type="1" >
  2265. </productMenu>
  2266. <productID id="3134"
  2267. />
  2268. <productGroupable type="0"
  2269. />
  2270. </product>
  2271. <product id="50C"
  2272. name="50C"
  2273. series="50"
  2274. latestVersion="1.4.3"
  2275. show = "1" >
  2276. <productMenu id="protocol"
  2277. type="2" >
  2278. </productMenu>
  2279. <productMenu id="ota"
  2280. type="0" >
  2281. </productMenu>
  2282. <productMenu id="wa"
  2283. type="1" >
  2284. </productMenu>
  2285. <productMenu id="sip"
  2286. type="1" >
  2287. </productMenu>
  2288. <productMenu id="meshIntercom"
  2289. type="30" >
  2290. <productMenuType version="1.1.1"
  2291. type="20"
  2292. />
  2293. </productMenu>
  2294. <productMenu id="meshIntercom+"
  2295. type="3"
  2296. url="2" >
  2297. <productMenuType version="1.3.9"
  2298. type="2"
  2299. />
  2300. <productMenuURL version="1.1.1"
  2301. url="0"
  2302. />
  2303. </productMenu>
  2304. <productMenu id="waveIntercom"
  2305. type="1" >
  2306. <productMenuType version="1.2.9"
  2307. type="0"
  2308. />
  2309. </productMenu>
  2310. <productMenu id="bluetoothIntercom"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="phone"
  2314. type="1" >
  2315. </productMenu>
  2316. <productMenu id="music"
  2317. type="1" >
  2318. </productMenu>
  2319. <productMenu id="fmradio"
  2320. type="1" >
  2321. </productMenu>
  2322. <productMenu id="deviceSetting"
  2323. type="1"
  2324. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2325. <productMenuURL version="1.3.9"
  2326. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2327. />
  2328. <productMenuURL version="1.1.1"
  2329. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2330. />
  2331. <productMenuURL version="1.0.1"
  2332. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2333. />
  2334. </productMenu>
  2335. <productMenu id="quickGuide"
  2336. type="0"
  2337. url=""
  2338. size="344KB" >
  2339. </productMenu>
  2340. <productMenu id="userGuide"
  2341. type="1"
  2342. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2343. size="3.41MB" >
  2344. </productMenu>
  2345. <productMenu id="connectGuide"
  2346. type="1"
  2347. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2348. size="1.12MB" >
  2349. </productMenu>
  2350. <productMenu id="volume"
  2351. type="11" >
  2352. </productMenu>
  2353. <productMenu id="battery"
  2354. type="1" >
  2355. </productMenu>
  2356. <productID id="3232"
  2357. />
  2358. <productGroupable type="0"
  2359. />
  2360. </product>
  2361. <product id="PHANTOMXB"
  2362. name="PHANTOM XB"
  2363. series="Helmet"
  2364. latestVersion="1.2.11"
  2365. latestVersionVoicePrompt="1.8"
  2366. show = "-1" >
  2367. <productMenu id="protocol"
  2368. type="2" >
  2369. </productMenu>
  2370. <productMenu id="ota"
  2371. type="2" >
  2372. <otaLanguages>
  2373. <otaLanguage
  2374. id="0"
  2375. name="English"
  2376. package="0"
  2377. />
  2378. <otaLanguage
  2379. id="0"
  2380. name="Français"
  2381. package="1"
  2382. />
  2383. <otaLanguage
  2384. id="0"
  2385. name="Español"
  2386. package="2"
  2387. />
  2388. <otaLanguage
  2389. id="0"
  2390. name="Italiano"
  2391. package="3"
  2392. />
  2393. <otaLanguage
  2394. id="0"
  2395. name="Deutsch"
  2396. package="4"
  2397. />
  2398. <otaLanguage
  2399. id="0"
  2400. name="Nederlands"
  2401. package="5"
  2402. />
  2403. <otaLanguage
  2404. id="0"
  2405. name="Русский"
  2406. package="6"
  2407. />
  2408. <otaLanguage
  2409. id="0"
  2410. name="简体中文"
  2411. package="7"
  2412. />
  2413. <otaLanguage
  2414. id="0"
  2415. name="한국어"
  2416. package="8"
  2417. />
  2418. <otaLanguage
  2419. id="0"
  2420. name="日本語"
  2421. package="9"
  2422. />
  2423. <otaLanguage
  2424. id="0"
  2425. name="Suomi"
  2426. package="10"
  2427. />
  2428. <otaLanguage
  2429. id="0"
  2430. name="Polski"
  2431. package="11"
  2432. />
  2433. </otaLanguages>
  2434. <otaPackages>
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fr-FR.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-es-ES.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-it-IT.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-de-DE.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-nl-NL.img"
  2457. size="5183988"
  2458. />
  2459. <package
  2460. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ru-RU.img"
  2461. size="5183988"
  2462. />
  2463. <package
  2464. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-cmn-CN.img"
  2465. size="5183988"
  2466. />
  2467. <package
  2468. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ko-KR.img"
  2469. size="5183988"
  2470. />
  2471. <package
  2472. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ja-JP.img"
  2473. size="5183988"
  2474. />
  2475. <package
  2476. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fi-FI.img"
  2477. size="5183988"
  2478. />
  2479. <package
  2480. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-pl-PL.img"
  2481. size="5183988"
  2482. />
  2483. </otaPackages>
  2484. </productMenu>
  2485. <productMenu id="wa"
  2486. type="0" >
  2487. </productMenu>
  2488. <productMenu id="led"
  2489. type="5" >
  2490. </productMenu>
  2491. <productMenu id="led+"
  2492. type="2"
  2493. url="1" >
  2494. </productMenu>
  2495. <productMenu id="meshIntercom"
  2496. type="30" >
  2497. </productMenu>
  2498. <productMenu id="meshIntercom+"
  2499. type="3"
  2500. url="2" >
  2501. </productMenu>
  2502. <productMenu id="waveIntercom"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="fmradio"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="phone"
  2509. type="1" >
  2510. </productMenu>
  2511. <productMenu id="music"
  2512. type="1" >
  2513. </productMenu>
  2514. <productMenu id="musicSharing"
  2515. type="0" >
  2516. </productMenu>
  2517. <productMenu id="deviceSetting"
  2518. type="1"
  2519. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2520. <productMenuURL version="1.2.10"
  2521. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2522. />
  2523. <productMenuURL version="1.2.4"
  2524. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2525. />
  2526. </productMenu>
  2527. <productMenu id="quickGuide"
  2528. type="0"
  2529. url=""
  2530. size="1.12MB" >
  2531. </productMenu>
  2532. <productMenu id="userGuide"
  2533. type="1"
  2534. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2535. size="2.0MB" >
  2536. </productMenu>
  2537. <productMenu id="videoGuide"
  2538. type="0"
  2539. url=""
  2540. size="3.41MB" >
  2541. </productMenu>
  2542. <productMenu id="volume"
  2543. type="16" >
  2544. </productMenu>
  2545. <productMenu id="volume+"
  2546. type="2"
  2547. url="0x6004" >
  2548. </productMenu>
  2549. <productMenu id="battery"
  2550. type="1" >
  2551. </productMenu>
  2552. <productID id="6A0F"
  2553. />
  2554. <productGroupable type="0"
  2555. />
  2556. </product>
  2557. <product id="PHANTOMXB"
  2558. name="PHANTOM XB"
  2559. series="Helmet"
  2560. latestVersion="1.2.11"
  2561. latestVersionVoicePrompt="1.8"
  2562. show = "-1" >
  2563. <productMenu id="protocol"
  2564. type="2" >
  2565. </productMenu>
  2566. <productMenu id="ota"
  2567. type="2" >
  2568. <otaLanguages>
  2569. <otaLanguage
  2570. id="0"
  2571. name="English"
  2572. package="0"
  2573. />
  2574. <otaLanguage
  2575. id="0"
  2576. name="Français"
  2577. package="1"
  2578. />
  2579. <otaLanguage
  2580. id="0"
  2581. name="Español"
  2582. package="2"
  2583. />
  2584. <otaLanguage
  2585. id="0"
  2586. name="Italiano"
  2587. package="3"
  2588. />
  2589. <otaLanguage
  2590. id="0"
  2591. name="Deutsch"
  2592. package="4"
  2593. />
  2594. <otaLanguage
  2595. id="0"
  2596. name="Nederlands"
  2597. package="5"
  2598. />
  2599. <otaLanguage
  2600. id="0"
  2601. name="Русский"
  2602. package="6"
  2603. />
  2604. <otaLanguage
  2605. id="0"
  2606. name="简体中文"
  2607. package="7"
  2608. />
  2609. <otaLanguage
  2610. id="0"
  2611. name="한국어"
  2612. package="8"
  2613. />
  2614. <otaLanguage
  2615. id="0"
  2616. name="日本語"
  2617. package="9"
  2618. />
  2619. <otaLanguage
  2620. id="0"
  2621. name="Suomi"
  2622. package="10"
  2623. />
  2624. <otaLanguage
  2625. id="0"
  2626. name="Polski"
  2627. package="11"
  2628. />
  2629. </otaLanguages>
  2630. <otaPackages>
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fr-FR.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-es-ES.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-it-IT.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-de-DE.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-nl-NL.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ru-RU.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-cmn-CN.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ko-KR.img"
  2665. size="5183988"
  2666. />
  2667. <package
  2668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ja-JP.img"
  2669. size="5183988"
  2670. />
  2671. <package
  2672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fi-FI.img"
  2673. size="5183988"
  2674. />
  2675. <package
  2676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-pl-PL.img"
  2677. size="5183988"
  2678. />
  2679. </otaPackages>
  2680. </productMenu>
  2681. <productMenu id="wa"
  2682. type="0" >
  2683. </productMenu>
  2684. <productMenu id="led"
  2685. type="5" >
  2686. </productMenu>
  2687. <productMenu id="led+"
  2688. type="2"
  2689. url="1" >
  2690. </productMenu>
  2691. <productMenu id="meshIntercom"
  2692. type="30" >
  2693. </productMenu>
  2694. <productMenu id="meshIntercom+"
  2695. type="3"
  2696. url="2" >
  2697. </productMenu>
  2698. <productMenu id="waveIntercom"
  2699. type="1" >
  2700. </productMenu>
  2701. <productMenu id="fmradio"
  2702. type="0" >
  2703. </productMenu>
  2704. <productMenu id="phone"
  2705. type="1" >
  2706. </productMenu>
  2707. <productMenu id="music"
  2708. type="1" >
  2709. </productMenu>
  2710. <productMenu id="musicSharing"
  2711. type="0" >
  2712. </productMenu>
  2713. <productMenu id="deviceSetting"
  2714. type="1"
  2715. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2716. <productMenuURL version="1.2.10"
  2717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2718. />
  2719. <productMenuURL version="1.2.4"
  2720. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2721. />
  2722. <productMenuURL version="1.2.1"
  2723. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2724. />
  2725. </productMenu>
  2726. <productMenu id="quickGuide"
  2727. type="0"
  2728. url=""
  2729. size="1.12MB" >
  2730. </productMenu>
  2731. <productMenu id="userGuide"
  2732. type="1"
  2733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2734. size="2.0MB" >
  2735. </productMenu>
  2736. <productMenu id="videoGuide"
  2737. type="0"
  2738. url=""
  2739. size="3.41MB" >
  2740. </productMenu>
  2741. <productMenu id="volume"
  2742. type="16" >
  2743. </productMenu>
  2744. <productMenu id="volume+"
  2745. type="2"
  2746. url="0x6004" >
  2747. </productMenu>
  2748. <productMenu id="battery"
  2749. type="1" >
  2750. </productMenu>
  2751. <productID id="6A0C"
  2752. />
  2753. <productGroupable type="0"
  2754. />
  2755. </product>
  2756. <product id="PHANTOMKV"
  2757. name="PHANTOM KV"
  2758. series="Helmet"
  2759. latestVersion="1.2.11"
  2760. latestVersionVoicePrompt="1.8"
  2761. show = "1" >
  2762. <productMenu id="protocol"
  2763. type="2" >
  2764. </productMenu>
  2765. <productMenu id="ota"
  2766. type="2" >
  2767. <otaLanguages>
  2768. <otaLanguage
  2769. id="0"
  2770. name="English"
  2771. package="0"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="Français"
  2776. package="1"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Español"
  2781. package="2"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Italiano"
  2786. package="3"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Deutsch"
  2791. package="4"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Nederlands"
  2796. package="5"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Русский"
  2801. package="6"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="简体中文"
  2806. package="7"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="한국어"
  2811. package="8"
  2812. />
  2813. <otaLanguage
  2814. id="0"
  2815. name="日本語"
  2816. package="9"
  2817. />
  2818. <otaLanguage
  2819. id="0"
  2820. name="Suomi"
  2821. package="10"
  2822. />
  2823. <otaLanguage
  2824. id="0"
  2825. name="Polski"
  2826. package="11"
  2827. />
  2828. </otaLanguages>
  2829. <otaPackages>
  2830. <package
  2831. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0.img"
  2832. size="5183988"
  2833. />
  2834. <package
  2835. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fr-FR.img"
  2836. size="5183988"
  2837. />
  2838. <package
  2839. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-es-ES.img"
  2840. size="5183988"
  2841. />
  2842. <package
  2843. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-it-IT.img"
  2844. size="5183988"
  2845. />
  2846. <package
  2847. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-de-DE.img"
  2848. size="5183988"
  2849. />
  2850. <package
  2851. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-nl-NL.img"
  2852. size="5183988"
  2853. />
  2854. <package
  2855. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ru-RU.img"
  2856. size="5183988"
  2857. />
  2858. <package
  2859. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-cmn-CN.img"
  2860. size="5183988"
  2861. />
  2862. <package
  2863. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ko-KR.img"
  2864. size="5183988"
  2865. />
  2866. <package
  2867. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ja-JP.img"
  2868. size="5183988"
  2869. />
  2870. <package
  2871. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fi-FI.img"
  2872. size="5183988"
  2873. />
  2874. <package
  2875. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-pl-PL.img"
  2876. size="5183988"
  2877. />
  2878. </otaPackages>
  2879. </productMenu>
  2880. <productMenu id="wa"
  2881. type="0" >
  2882. </productMenu>
  2883. <productMenu id="led"
  2884. type="5" >
  2885. </productMenu>
  2886. <productMenu id="led+"
  2887. type="2"
  2888. url="1" >
  2889. </productMenu>
  2890. <productMenu id="meshIntercom"
  2891. type="30" >
  2892. </productMenu>
  2893. <productMenu id="meshIntercom+"
  2894. type="3"
  2895. url="2" >
  2896. </productMenu>
  2897. <productMenu id="waveIntercom"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="fmradio"
  2901. type="0" >
  2902. </productMenu>
  2903. <productMenu id="phone"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="music"
  2907. type="1" >
  2908. </productMenu>
  2909. <productMenu id="musicSharing"
  2910. type="0" >
  2911. </productMenu>
  2912. <productMenu id="deviceSetting"
  2913. type="1"
  2914. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2915. <productMenuURL version="1.2.10"
  2916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2917. />
  2918. <productMenuURL version="1.2.4"
  2919. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2920. />
  2921. </productMenu>
  2922. <productMenu id="quickGuide"
  2923. type="0"
  2924. url=""
  2925. size="1.12MB" >
  2926. </productMenu>
  2927. <productMenu id="userGuide"
  2928. type="1"
  2929. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2930. size="2.0MB" >
  2931. </productMenu>
  2932. <productMenu id="videoGuide"
  2933. type="0"
  2934. url=""
  2935. size="3.41MB" >
  2936. </productMenu>
  2937. <productMenu id="connectGuide"
  2938. type="1"
  2939. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2940. size="1.1MB" >
  2941. </productMenu>
  2942. <productMenu id="volume"
  2943. type="16" >
  2944. </productMenu>
  2945. <productMenu id="volume+"
  2946. type="2"
  2947. url="0x6004" >
  2948. </productMenu>
  2949. <productMenu id="soundMode"
  2950. type="1" >
  2951. </productMenu>
  2952. <productMenu id="battery"
  2953. type="1" >
  2954. </productMenu>
  2955. <productID id="6A13"
  2956. />
  2957. <productGroupable type="0"
  2958. />
  2959. </product>
  2960. <product id="PHANTOMCamera"
  2961. name="PHANTOM Camera"
  2962. series="Helmet"
  2963. latestVersion="1.2.10"
  2964. latestVersionVoicePrompt="1.7"
  2965. show = "1" >
  2966. <productMenu id="protocol"
  2967. type="2" >
  2968. </productMenu>
  2969. <productMenu id="ota"
  2970. type="3" >
  2971. <otaLanguages>
  2972. <otaLanguage
  2973. id="0"
  2974. name="English"
  2975. package="0"
  2976. />
  2977. <otaLanguage
  2978. id="0"
  2979. name="Français"
  2980. package="1"
  2981. />
  2982. <otaLanguage
  2983. id="0"
  2984. name="Español"
  2985. package="2"
  2986. />
  2987. <otaLanguage
  2988. id="0"
  2989. name="Italiano"
  2990. package="3"
  2991. />
  2992. <otaLanguage
  2993. id="0"
  2994. name="Deutsch"
  2995. package="4"
  2996. />
  2997. <otaLanguage
  2998. id="0"
  2999. name="Nederlands"
  3000. package="5"
  3001. />
  3002. <otaLanguage
  3003. id="0"
  3004. name="Русский"
  3005. package="6"
  3006. />
  3007. <otaLanguage
  3008. id="0"
  3009. name="简体中文"
  3010. package="7"
  3011. />
  3012. <otaLanguage
  3013. id="0"
  3014. name="한국어"
  3015. package="8"
  3016. />
  3017. <otaLanguage
  3018. id="0"
  3019. name="日本語"
  3020. package="9"
  3021. />
  3022. <otaLanguage
  3023. id="0"
  3024. name="Suomi"
  3025. package="10"
  3026. />
  3027. <otaLanguage
  3028. id="0"
  3029. name="Polski"
  3030. package="11"
  3031. />
  3032. </otaLanguages>
  3033. <otaPackages>
  3034. <package
  3035. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3036. size="5183988"
  3037. />
  3038. <package
  3039. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3040. size="5183988"
  3041. />
  3042. <package
  3043. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3044. size="5183988"
  3045. />
  3046. <package
  3047. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3048. size="5183988"
  3049. />
  3050. <package
  3051. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3052. size="5183988"
  3053. />
  3054. <package
  3055. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3056. size="5183988"
  3057. />
  3058. <package
  3059. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3060. size="5183988"
  3061. />
  3062. <package
  3063. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3064. size="5183988"
  3065. />
  3066. <package
  3067. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3068. size="5183988"
  3069. />
  3070. <package
  3071. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3072. size="5183988"
  3073. />
  3074. <package
  3075. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3076. size="5183988"
  3077. />
  3078. <package
  3079. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3080. size="5183988"
  3081. />
  3082. </otaPackages>
  3083. </productMenu>
  3084. <productMenu id="wa"
  3085. type="0" >
  3086. </productMenu>
  3087. <productMenu id="led"
  3088. type="5" >
  3089. </productMenu>
  3090. <productMenu id="led+"
  3091. type="2"
  3092. url="1" >
  3093. </productMenu>
  3094. <productMenu id="meshIntercom"
  3095. type="30" >
  3096. </productMenu>
  3097. <productMenu id="meshIntercom+"
  3098. type="3"
  3099. url="2" >
  3100. </productMenu>
  3101. <productMenu id="waveIntercom"
  3102. type="1" >
  3103. </productMenu>
  3104. <productMenu id="fmradio"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="phone"
  3108. type="1" >
  3109. </productMenu>
  3110. <productMenu id="music"
  3111. type="1" >
  3112. </productMenu>
  3113. <productMenu id="musicSharing"
  3114. type="0" >
  3115. </productMenu>
  3116. <productMenu id="deviceSetting"
  3117. type="1"
  3118. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3119. </productMenu>
  3120. <productMenu id="quickGuide"
  3121. type="0"
  3122. url=""
  3123. size="1.12MB" >
  3124. </productMenu>
  3125. <productMenu id="userGuide"
  3126. type="1"
  3127. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3128. size="2.0MB" >
  3129. </productMenu>
  3130. <productMenu id="videoGuide"
  3131. type="0"
  3132. url=""
  3133. size="3.41MB" >
  3134. </productMenu>
  3135. <productMenu id="volume"
  3136. type="16" >
  3137. </productMenu>
  3138. <productMenu id="battery"
  3139. type="1" >
  3140. </productMenu>
  3141. <productID id="6A10"
  3142. />
  3143. <productGroupable type="0"
  3144. />
  3145. </product>
  3146. <product id="PHANTOMCamera"
  3147. name="PHANTOM Camera"
  3148. series="Helmet"
  3149. latestVersion="1.2.10"
  3150. latestVersionVoicePrompt="1.7"
  3151. show = "-1" >
  3152. <productMenu id="protocol"
  3153. type="2" >
  3154. </productMenu>
  3155. <productMenu id="ota"
  3156. type="3" >
  3157. <otaLanguages>
  3158. <otaLanguage
  3159. id="0"
  3160. name="English"
  3161. package="0"
  3162. />
  3163. <otaLanguage
  3164. id="0"
  3165. name="Français"
  3166. package="1"
  3167. />
  3168. <otaLanguage
  3169. id="0"
  3170. name="Español"
  3171. package="2"
  3172. />
  3173. <otaLanguage
  3174. id="0"
  3175. name="Italiano"
  3176. package="3"
  3177. />
  3178. <otaLanguage
  3179. id="0"
  3180. name="Deutsch"
  3181. package="4"
  3182. />
  3183. <otaLanguage
  3184. id="0"
  3185. name="Nederlands"
  3186. package="5"
  3187. />
  3188. <otaLanguage
  3189. id="0"
  3190. name="Русский"
  3191. package="6"
  3192. />
  3193. <otaLanguage
  3194. id="0"
  3195. name="简体中文"
  3196. package="7"
  3197. />
  3198. <otaLanguage
  3199. id="0"
  3200. name="한국어"
  3201. package="8"
  3202. />
  3203. <otaLanguage
  3204. id="0"
  3205. name="日本語"
  3206. package="9"
  3207. />
  3208. <otaLanguage
  3209. id="0"
  3210. name="Suomi"
  3211. package="10"
  3212. />
  3213. <otaLanguage
  3214. id="0"
  3215. name="Polski"
  3216. package="11"
  3217. />
  3218. </otaLanguages>
  3219. <otaPackages>
  3220. <package
  3221. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3222. size="5183988"
  3223. />
  3224. <package
  3225. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3226. size="5183988"
  3227. />
  3228. <package
  3229. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3230. size="5183988"
  3231. />
  3232. <package
  3233. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3234. size="5183988"
  3235. />
  3236. <package
  3237. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3238. size="5183988"
  3239. />
  3240. <package
  3241. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3242. size="5183988"
  3243. />
  3244. <package
  3245. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3246. size="5183988"
  3247. />
  3248. <package
  3249. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3250. size="5183988"
  3251. />
  3252. <package
  3253. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3254. size="5183988"
  3255. />
  3256. <package
  3257. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3258. size="5183988"
  3259. />
  3260. <package
  3261. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3262. size="5183988"
  3263. />
  3264. <package
  3265. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3266. size="5183988"
  3267. />
  3268. </otaPackages>
  3269. </productMenu>
  3270. <productMenu id="wa"
  3271. type="0" >
  3272. </productMenu>
  3273. <productMenu id="led"
  3274. type="5" >
  3275. </productMenu>
  3276. <productMenu id="led+"
  3277. type="2"
  3278. url="1" >
  3279. </productMenu>
  3280. <productMenu id="meshIntercom"
  3281. type="30" >
  3282. </productMenu>
  3283. <productMenu id="meshIntercom+"
  3284. type="3"
  3285. url="2" >
  3286. </productMenu>
  3287. <productMenu id="waveIntercom"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="fmradio"
  3291. type="0" >
  3292. </productMenu>
  3293. <productMenu id="phone"
  3294. type="1" >
  3295. </productMenu>
  3296. <productMenu id="music"
  3297. type="1" >
  3298. </productMenu>
  3299. <productMenu id="musicSharing"
  3300. type="0" >
  3301. </productMenu>
  3302. <productMenu id="deviceSetting"
  3303. type="1"
  3304. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="0"
  3308. url=""
  3309. size="1.12MB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3314. size="2.0MB" >
  3315. </productMenu>
  3316. <productMenu id="videoGuide"
  3317. type="0"
  3318. url=""
  3319. size="3.41MB" >
  3320. </productMenu>
  3321. <productMenu id="volume"
  3322. type="16" >
  3323. </productMenu>
  3324. <productMenu id="battery"
  3325. type="1" >
  3326. </productMenu>
  3327. <productID id="6A09"
  3328. />
  3329. <productGroupable type="0"
  3330. />
  3331. </product>
  3332. <product id="PHANTOM"
  3333. name="PHANTOM ANC"
  3334. series="Helmet"
  3335. latestVersion="1.2.11"
  3336. latestVersionVoicePrompt="1.8"
  3337. show = "1" >
  3338. <productMenu id="protocol"
  3339. type="2" >
  3340. </productMenu>
  3341. <productMenu id="ota"
  3342. type="2" >
  3343. <productMenuType version="0.6.9"
  3344. type="0"
  3345. />
  3346. <otaLanguages>
  3347. <otaLanguage
  3348. id="0"
  3349. name="English"
  3350. package="0"
  3351. />
  3352. <otaLanguage
  3353. id="0"
  3354. name="Français"
  3355. package="1"
  3356. />
  3357. <otaLanguage
  3358. id="0"
  3359. name="Español"
  3360. package="2"
  3361. />
  3362. <otaLanguage
  3363. id="0"
  3364. name="Italiano"
  3365. package="3"
  3366. />
  3367. <otaLanguage
  3368. id="0"
  3369. name="Deutsch"
  3370. package="4"
  3371. />
  3372. <otaLanguage
  3373. id="0"
  3374. name="Nederlands"
  3375. package="5"
  3376. />
  3377. <otaLanguage
  3378. id="0"
  3379. name="Русский"
  3380. package="6"
  3381. />
  3382. <otaLanguage
  3383. id="0"
  3384. name="简体中文"
  3385. package="7"
  3386. />
  3387. <otaLanguage
  3388. id="0"
  3389. name="한국어"
  3390. package="8"
  3391. />
  3392. <otaLanguage
  3393. id="0"
  3394. name="日本語"
  3395. package="9"
  3396. />
  3397. <otaLanguage
  3398. id="0"
  3399. name="Suomi"
  3400. package="10"
  3401. />
  3402. <otaLanguage
  3403. id="0"
  3404. name="Polski"
  3405. package="11"
  3406. />
  3407. </otaLanguages>
  3408. <otaPackages>
  3409. <package
  3410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0.img"
  3411. size="5183988"
  3412. />
  3413. <package
  3414. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fr-FR.img"
  3415. size="5183988"
  3416. />
  3417. <package
  3418. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-es-ES.img"
  3419. size="5183988"
  3420. />
  3421. <package
  3422. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-it-IT.img"
  3423. size="5183988"
  3424. />
  3425. <package
  3426. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-de-DE.img"
  3427. size="5183988"
  3428. />
  3429. <package
  3430. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-nl-NL.img"
  3431. size="5183988"
  3432. />
  3433. <package
  3434. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ru-RU.img"
  3435. size="5183988"
  3436. />
  3437. <package
  3438. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-cmn-CN.img"
  3439. size="5183988"
  3440. />
  3441. <package
  3442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ko-KR.img"
  3443. size="5183988"
  3444. />
  3445. <package
  3446. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ja-JP.img"
  3447. size="5183988"
  3448. />
  3449. <package
  3450. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fi-FI.img"
  3451. size="5183988"
  3452. />
  3453. <package
  3454. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-pl-PL.img"
  3455. size="5183988"
  3456. />
  3457. </otaPackages>
  3458. </productMenu>
  3459. <productMenu id="wa"
  3460. type="0" >
  3461. </productMenu>
  3462. <productMenu id="led"
  3463. type="5" >
  3464. </productMenu>
  3465. <productMenu id="led+"
  3466. type="2"
  3467. url="1" >
  3468. </productMenu>
  3469. <productMenu id="meshIntercom"
  3470. type="30" >
  3471. </productMenu>
  3472. <productMenu id="meshIntercom+"
  3473. type="3"
  3474. url="2" >
  3475. <productMenuURL version="1.0.4"
  3476. url="10"
  3477. />
  3478. </productMenu>
  3479. <productMenu id="waveIntercom"
  3480. type="1" >
  3481. <productMenuType version="1.0.9"
  3482. type="0"
  3483. />
  3484. </productMenu>
  3485. <productMenu id="fmradio"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="phone"
  3489. type="1" >
  3490. </productMenu>
  3491. <productMenu id="music"
  3492. type="1" >
  3493. </productMenu>
  3494. <productMenu id="musicSharing"
  3495. type="0" >
  3496. </productMenu>
  3497. <productMenu id="deviceSetting"
  3498. type="1"
  3499. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3500. <productMenuURL version="1.2.10"
  3501. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3502. />
  3503. <productMenuURL version="1.2.4"
  3504. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3505. />
  3506. <productMenuURL version="1.2.1"
  3507. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3508. />
  3509. <productMenuURL version="1.1.2"
  3510. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3511. />
  3512. <productMenuURL version="1.0.4"
  3513. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3514. />
  3515. </productMenu>
  3516. <productMenu id="quickGuide"
  3517. type="0"
  3518. url=""
  3519. size="1.12MB" >
  3520. </productMenu>
  3521. <productMenu id="userGuide"
  3522. type="1"
  3523. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3524. size="2.0MB" >
  3525. </productMenu>
  3526. <productMenu id="videoGuide"
  3527. type="0"
  3528. url=""
  3529. size="3.41MB" >
  3530. </productMenu>
  3531. <productMenu id="connectGuide"
  3532. type="1"
  3533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3534. size="1.1MB" >
  3535. </productMenu>
  3536. <productMenu id="volume"
  3537. type="16" >
  3538. </productMenu>
  3539. <productMenu id="volume+"
  3540. type="2"
  3541. url="0x6004" >
  3542. </productMenu>
  3543. <productMenu id="soundMode"
  3544. type="1" >
  3545. <productMenuType version="0.9.11"
  3546. type="0"
  3547. />
  3548. </productMenu>
  3549. <productMenu id="battery"
  3550. type="1" >
  3551. </productMenu>
  3552. <productID id="6A01"
  3553. />
  3554. <productGroupable type="0"
  3555. />
  3556. </product>
  3557. <product id="PHANTOM"
  3558. name="PHANTOM ANC"
  3559. series="Helmet"
  3560. latestVersion="1.2.11"
  3561. latestVersionVoicePrompt="1.8"
  3562. show = "-1" >
  3563. <productMenu id="protocol"
  3564. type="2" >
  3565. </productMenu>
  3566. <productMenu id="ota"
  3567. type="2" >
  3568. <otaLanguages>
  3569. <otaLanguage
  3570. id="0"
  3571. name="English"
  3572. package="0"
  3573. />
  3574. <otaLanguage
  3575. id="0"
  3576. name="Français"
  3577. package="1"
  3578. />
  3579. <otaLanguage
  3580. id="0"
  3581. name="Español"
  3582. package="2"
  3583. />
  3584. <otaLanguage
  3585. id="0"
  3586. name="Italiano"
  3587. package="3"
  3588. />
  3589. <otaLanguage
  3590. id="0"
  3591. name="Deutsch"
  3592. package="4"
  3593. />
  3594. <otaLanguage
  3595. id="0"
  3596. name="Nederlands"
  3597. package="5"
  3598. />
  3599. <otaLanguage
  3600. id="0"
  3601. name="Русский"
  3602. package="6"
  3603. />
  3604. <otaLanguage
  3605. id="0"
  3606. name="简体中文"
  3607. package="7"
  3608. />
  3609. <otaLanguage
  3610. id="0"
  3611. name="한국어"
  3612. package="8"
  3613. />
  3614. <otaLanguage
  3615. id="0"
  3616. name="日本語"
  3617. package="9"
  3618. />
  3619. <otaLanguage
  3620. id="0"
  3621. name="Suomi"
  3622. package="10"
  3623. />
  3624. <otaLanguage
  3625. id="0"
  3626. name="Polski"
  3627. package="11"
  3628. />
  3629. </otaLanguages>
  3630. <otaPackages>
  3631. <package
  3632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0.img"
  3633. size="5183988"
  3634. />
  3635. <package
  3636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fr-FR.img"
  3637. size="5183988"
  3638. />
  3639. <package
  3640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-es-ES.img"
  3641. size="5183988"
  3642. />
  3643. <package
  3644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-it-IT.img"
  3645. size="5183988"
  3646. />
  3647. <package
  3648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-de-DE.img"
  3649. size="5183988"
  3650. />
  3651. <package
  3652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-nl-NL.img"
  3653. size="5183988"
  3654. />
  3655. <package
  3656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ru-RU.img"
  3657. size="5183988"
  3658. />
  3659. <package
  3660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-cmn-CN.img"
  3661. size="5183988"
  3662. />
  3663. <package
  3664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ko-KR.img"
  3665. size="5183988"
  3666. />
  3667. <package
  3668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ja-JP.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fi-FI.img"
  3673. size="5183988"
  3674. />
  3675. <package
  3676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-pl-PL.img"
  3677. size="5183988"
  3678. />
  3679. </otaPackages>
  3680. </productMenu>
  3681. <productMenu id="led"
  3682. type="5" >
  3683. </productMenu>
  3684. <productMenu id="led+"
  3685. type="2"
  3686. url="1" >
  3687. </productMenu>
  3688. <productMenu id="meshIntercom"
  3689. type="30" >
  3690. </productMenu>
  3691. <productMenu id="meshIntercom+"
  3692. type="3"
  3693. url="2" >
  3694. </productMenu>
  3695. <productMenu id="waveIntercom"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="fmradio"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="phone"
  3702. type="1" >
  3703. </productMenu>
  3704. <productMenu id="music"
  3705. type="1" >
  3706. </productMenu>
  3707. <productMenu id="musicSharing"
  3708. type="0" >
  3709. </productMenu>
  3710. <productMenu id="deviceSetting"
  3711. type="1"
  3712. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3713. <productMenuURL version="1.2.10"
  3714. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3715. />
  3716. <productMenuURL version="1.2.4"
  3717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3718. />
  3719. </productMenu>
  3720. <productMenu id="quickGuide"
  3721. type="0"
  3722. url=""
  3723. size="1.12MB" >
  3724. </productMenu>
  3725. <productMenu id="userGuide"
  3726. type="1"
  3727. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3728. size="2.0MB" >
  3729. </productMenu>
  3730. <productMenu id="videoGuide"
  3731. type="0"
  3732. url=""
  3733. size="3.41MB" >
  3734. </productMenu>
  3735. <productMenu id="connectGuide"
  3736. type="1"
  3737. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3738. size="1.1MB" >
  3739. </productMenu>
  3740. <productMenu id="volume"
  3741. type="16" >
  3742. </productMenu>
  3743. <productMenu id="volume+"
  3744. type="2"
  3745. url="0x6004" >
  3746. </productMenu>
  3747. <productMenu id="soundMode"
  3748. type="1" >
  3749. </productMenu>
  3750. <productMenu id="battery"
  3751. type="1" >
  3752. </productMenu>
  3753. <productID id="6A19"
  3754. />
  3755. <productGroupable type="0"
  3756. />
  3757. </product>
  3758. <product id="PHANTOM"
  3759. name="PHANTOM"
  3760. series="Helmet"
  3761. latestVersion="1.2.11"
  3762. latestVersionVoicePrompt="1.8"
  3763. show = "-1" >
  3764. <productMenu id="protocol"
  3765. type="2" >
  3766. </productMenu>
  3767. <productMenu id="ota"
  3768. type="2" >
  3769. <otaLanguages>
  3770. <otaLanguage
  3771. id="0"
  3772. name="English"
  3773. package="0"
  3774. />
  3775. <otaLanguage
  3776. id="0"
  3777. name="Français"
  3778. package="1"
  3779. />
  3780. <otaLanguage
  3781. id="0"
  3782. name="Español"
  3783. package="2"
  3784. />
  3785. <otaLanguage
  3786. id="0"
  3787. name="Italiano"
  3788. package="3"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="Deutsch"
  3793. package="4"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Nederlands"
  3798. package="5"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Русский"
  3803. package="6"
  3804. />
  3805. <otaLanguage
  3806. id="0"
  3807. name="简体中文"
  3808. package="7"
  3809. />
  3810. <otaLanguage
  3811. id="0"
  3812. name="한국어"
  3813. package="8"
  3814. />
  3815. <otaLanguage
  3816. id="0"
  3817. name="日本語"
  3818. package="9"
  3819. />
  3820. <otaLanguage
  3821. id="0"
  3822. name="Suomi"
  3823. package="10"
  3824. />
  3825. <otaLanguage
  3826. id="0"
  3827. name="Polski"
  3828. package="11"
  3829. />
  3830. </otaLanguages>
  3831. <otaPackages>
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fr-FR.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-es-ES.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-it-IT.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-de-DE.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-nl-NL.img"
  3854. size="5183988"
  3855. />
  3856. <package
  3857. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ru-RU.img"
  3858. size="5183988"
  3859. />
  3860. <package
  3861. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-cmn-CN.img"
  3862. size="5183988"
  3863. />
  3864. <package
  3865. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ko-KR.img"
  3866. size="5183988"
  3867. />
  3868. <package
  3869. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ja-JP.img"
  3870. size="5183988"
  3871. />
  3872. <package
  3873. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fi-FI.img"
  3874. size="5183988"
  3875. />
  3876. <package
  3877. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-pl-PL.img"
  3878. size="5183988"
  3879. />
  3880. </otaPackages>
  3881. </productMenu>
  3882. <productMenu id="wa"
  3883. type="0" >
  3884. </productMenu>
  3885. <productMenu id="led"
  3886. type="5" >
  3887. </productMenu>
  3888. <productMenu id="led+"
  3889. type="2"
  3890. url="1" >
  3891. </productMenu>
  3892. <productMenu id="meshIntercom"
  3893. type="30" >
  3894. </productMenu>
  3895. <productMenu id="meshIntercom+"
  3896. type="3"
  3897. url="2" >
  3898. </productMenu>
  3899. <productMenu id="waveIntercom"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="fmradio"
  3903. type="0" >
  3904. </productMenu>
  3905. <productMenu id="phone"
  3906. type="1" >
  3907. </productMenu>
  3908. <productMenu id="music"
  3909. type="1" >
  3910. </productMenu>
  3911. <productMenu id="musicSharing"
  3912. type="0" >
  3913. </productMenu>
  3914. <productMenu id="deviceSetting"
  3915. type="1"
  3916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3917. <productMenuURL version="1.2.10"
  3918. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3919. />
  3920. <productMenuURL version="1.2.4"
  3921. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3922. />
  3923. </productMenu>
  3924. <productMenu id="quickGuide"
  3925. type="0"
  3926. url=""
  3927. size="1.52MB" >
  3928. </productMenu>
  3929. <productMenu id="userGuide"
  3930. type="1"
  3931. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3932. size="2.01MB" >
  3933. </productMenu>
  3934. <productMenu id="videoGuide"
  3935. type="0"
  3936. url=""
  3937. size="3.46MB" >
  3938. </productMenu>
  3939. <productMenu id="connectGuide"
  3940. type="1"
  3941. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3942. size="1.1MB" >
  3943. </productMenu>
  3944. <productMenu id="volume"
  3945. type="16" >
  3946. </productMenu>
  3947. <productMenu id="volume+"
  3948. type="2"
  3949. url="0x6004" >
  3950. </productMenu>
  3951. <productMenu id="battery"
  3952. type="1" >
  3953. </productMenu>
  3954. <productID id="6A0E"
  3955. />
  3956. <productGroupable type="0"
  3957. />
  3958. </product>
  3959. <product id="PHANTOM"
  3960. name="PHANTOM"
  3961. series="Helmet"
  3962. latestVersion="1.2.11"
  3963. latestVersionVoicePrompt="1.8"
  3964. show = "1" >
  3965. <productMenu id="protocol"
  3966. type="2" >
  3967. </productMenu>
  3968. <productMenu id="ota"
  3969. type="2" >
  3970. <otaLanguages>
  3971. <otaLanguage
  3972. id="0"
  3973. name="English"
  3974. package="0"
  3975. />
  3976. <otaLanguage
  3977. id="0"
  3978. name="Français"
  3979. package="1"
  3980. />
  3981. <otaLanguage
  3982. id="0"
  3983. name="Español"
  3984. package="2"
  3985. />
  3986. <otaLanguage
  3987. id="0"
  3988. name="Italiano"
  3989. package="3"
  3990. />
  3991. <otaLanguage
  3992. id="0"
  3993. name="Deutsch"
  3994. package="4"
  3995. />
  3996. <otaLanguage
  3997. id="0"
  3998. name="Nederlands"
  3999. package="5"
  4000. />
  4001. <otaLanguage
  4002. id="0"
  4003. name="Русский"
  4004. package="6"
  4005. />
  4006. <otaLanguage
  4007. id="0"
  4008. name="简体中文"
  4009. package="7"
  4010. />
  4011. <otaLanguage
  4012. id="0"
  4013. name="한국어"
  4014. package="8"
  4015. />
  4016. <otaLanguage
  4017. id="0"
  4018. name="日本語"
  4019. package="9"
  4020. />
  4021. <otaLanguage
  4022. id="0"
  4023. name="Suomi"
  4024. package="10"
  4025. />
  4026. <otaLanguage
  4027. id="0"
  4028. name="Polski"
  4029. package="11"
  4030. />
  4031. </otaLanguages>
  4032. <otaPackages>
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fr-FR.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-es-ES.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-it-IT.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-de-DE.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-nl-NL.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ru-RU.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-cmn-CN.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ko-KR.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ja-JP.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fi-FI.img"
  4075. size="5183988"
  4076. />
  4077. <package
  4078. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-pl-PL.img"
  4079. size="5183988"
  4080. />
  4081. </otaPackages>
  4082. </productMenu>
  4083. <productMenu id="wa"
  4084. type="0" >
  4085. </productMenu>
  4086. <productMenu id="led"
  4087. type="5" >
  4088. <productMenuType version="1.0.1"
  4089. type="4"
  4090. />
  4091. </productMenu>
  4092. <productMenu id="led+"
  4093. type="2"
  4094. url="1" >
  4095. <productMenuType version="1.0.1"
  4096. type="-1"
  4097. />
  4098. </productMenu>
  4099. <productMenu id="meshIntercom"
  4100. type="30" >
  4101. </productMenu>
  4102. <productMenu id="meshIntercom+"
  4103. type="3"
  4104. url="2" >
  4105. <productMenuURL version="1.0.4"
  4106. url="10"
  4107. />
  4108. </productMenu>
  4109. <productMenu id="waveIntercom"
  4110. type="1" >
  4111. <productMenuType version="1.0.9"
  4112. type="0"
  4113. />
  4114. </productMenu>
  4115. <productMenu id="fmradio"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="phone"
  4119. type="1" >
  4120. </productMenu>
  4121. <productMenu id="music"
  4122. type="1" >
  4123. </productMenu>
  4124. <productMenu id="musicSharing"
  4125. type="0" >
  4126. </productMenu>
  4127. <productMenu id="deviceSetting"
  4128. type="1"
  4129. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4130. <productMenuURL version="1.2.10"
  4131. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4132. />
  4133. <productMenuURL version="1.2.4"
  4134. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4135. />
  4136. <productMenuURL version="1.2.1"
  4137. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4138. />
  4139. <productMenuURL version="1.0.4"
  4140. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4141. />
  4142. <productMenuURL version="1.0.1"
  4143. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4144. />
  4145. </productMenu>
  4146. <productMenu id="quickGuide"
  4147. type="0"
  4148. url=""
  4149. size="1.12MB" >
  4150. </productMenu>
  4151. <productMenu id="userGuide"
  4152. type="1"
  4153. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4154. size="2.0MB" >
  4155. </productMenu>
  4156. <productMenu id="videoGuide"
  4157. type="0"
  4158. url=""
  4159. size="3.41MB" >
  4160. </productMenu>
  4161. <productMenu id="connectGuide"
  4162. type="1"
  4163. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4164. size="1.12MB" >
  4165. </productMenu>
  4166. <productMenu id="volume"
  4167. type="16" >
  4168. <productMenuType version="1.0"
  4169. type="13"
  4170. />
  4171. </productMenu>
  4172. <productMenu id="volume+"
  4173. type="2"
  4174. url="0x6004" >
  4175. </productMenu>
  4176. <productMenu id="battery"
  4177. type="1" >
  4178. </productMenu>
  4179. <productID id="6A04"
  4180. />
  4181. <productGroupable type="0"
  4182. />
  4183. </product>
  4184. <product id="PHANTOMEasyLink"
  4185. name="PHANTOM EasyLink"
  4186. series="Helmet"
  4187. latestVersion="0.1"
  4188. latestVersionVoicePrompt="1.2"
  4189. show = "-1" >
  4190. <productMenu id="protocol"
  4191. type="2" >
  4192. </productMenu>
  4193. <productMenu id="ota"
  4194. type="0" >
  4195. <otaLanguages>
  4196. <otaLanguage
  4197. id="0"
  4198. name="English"
  4199. package="0"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Français"
  4204. package="1"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Español"
  4209. package="2"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Italiano"
  4214. package="3"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Deutsch"
  4219. package="4"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Nederlands"
  4224. package="5"
  4225. />
  4226. <otaLanguage
  4227. id="0"
  4228. name="Русский"
  4229. package="6"
  4230. />
  4231. <otaLanguage
  4232. id="0"
  4233. name="简体中文"
  4234. package="7"
  4235. />
  4236. <otaLanguage
  4237. id="0"
  4238. name="한국어"
  4239. package="8"
  4240. />
  4241. <otaLanguage
  4242. id="0"
  4243. name="日本語"
  4244. package="9"
  4245. />
  4246. <otaLanguage
  4247. id="0"
  4248. name="Suomi"
  4249. package="10"
  4250. />
  4251. <otaLanguage
  4252. id="0"
  4253. name="Polski"
  4254. package="11"
  4255. />
  4256. </otaLanguages>
  4257. <otaPackages>
  4258. <package
  4259. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4260. size="5183988"
  4261. />
  4262. <package
  4263. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4264. size="5183988"
  4265. />
  4266. <package
  4267. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4268. size="5183988"
  4269. />
  4270. <package
  4271. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4272. size="5183988"
  4273. />
  4274. <package
  4275. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4276. size="5183988"
  4277. />
  4278. <package
  4279. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4280. size="5183988"
  4281. />
  4282. <package
  4283. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4284. size="5183988"
  4285. />
  4286. <package
  4287. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4288. size="5183988"
  4289. />
  4290. <package
  4291. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4292. size="5183988"
  4293. />
  4294. <package
  4295. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4296. size="5183988"
  4297. />
  4298. <package
  4299. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4300. size="5183988"
  4301. />
  4302. <package
  4303. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4304. size="5183988"
  4305. />
  4306. </otaPackages>
  4307. </productMenu>
  4308. <productMenu id="meshIntercom"
  4309. type="30" >
  4310. </productMenu>
  4311. <productMenu id="meshIntercom+"
  4312. type="3"
  4313. url="2" >
  4314. </productMenu>
  4315. <productMenu id="waveIntercom"
  4316. type="1" >
  4317. </productMenu>
  4318. <productMenu id="fmradio"
  4319. type="0" >
  4320. </productMenu>
  4321. <productMenu id="phone"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="music"
  4325. type="1" >
  4326. </productMenu>
  4327. <productMenu id="musicSharing"
  4328. type="0" >
  4329. </productMenu>
  4330. <productMenu id="deviceSetting"
  4331. type="1"
  4332. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4333. </productMenu>
  4334. <productMenu id="quickGuide"
  4335. type="0"
  4336. url=""
  4337. size="1.12MB" >
  4338. </productMenu>
  4339. <productMenu id="userGuide"
  4340. type="1"
  4341. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4342. size="2.0MB" >
  4343. </productMenu>
  4344. <productMenu id="videoGuide"
  4345. type="0"
  4346. url=""
  4347. size="3.41MB" >
  4348. </productMenu>
  4349. <productMenu id="connectGuide"
  4350. type="0"
  4351. url=""
  4352. size="1.12MB" >
  4353. </productMenu>
  4354. <productMenu id="volume"
  4355. type="16" >
  4356. </productMenu>
  4357. <productMenu id="battery"
  4358. type="1" >
  4359. </productMenu>
  4360. <productID id="6A18"
  4361. />
  4362. <productGroupable type="0"
  4363. />
  4364. </product>
  4365. <product id="SPIDERX"
  4366. name="SPIDER X"
  4367. series="SPIDER"
  4368. latestVersion="1.0.1"
  4369. latestVersionMesh="0.19"
  4370. latestVersionVoicePrompt="1.8"
  4371. show="-1" >
  4372. <productMenu id="protocol"
  4373. type="2" >
  4374. </productMenu>
  4375. <productMenu id="warranty"
  4376. type="1" >
  4377. </productMenu>
  4378. <productMenu id="serialNumber"
  4379. type="1" >
  4380. </productMenu>
  4381. <productMenu id="ota"
  4382. type="0" >
  4383. <otaLanguages>
  4384. <otaLanguage
  4385. id="0"
  4386. name="English"
  4387. package="0"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="Français"
  4392. package="1"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="Español"
  4397. package="2"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="Italiano"
  4402. package="3"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="Deutsch"
  4407. package="4"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Nederlands"
  4412. package="5"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Русский"
  4417. package="6"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="简体中文"
  4422. package="7"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="한국어"
  4427. package="8"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="日本語"
  4432. package="9"
  4433. />
  4434. <otaLanguage
  4435. id="0"
  4436. name="Suomi"
  4437. package="10"
  4438. />
  4439. <otaLanguage
  4440. id="0"
  4441. name="Polski"
  4442. package="11"
  4443. />
  4444. </otaLanguages>
  4445. <otaPackages>
  4446. <package
  4447. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0.img"
  4448. size="5183988"
  4449. />
  4450. <package
  4451. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fr-FR.img"
  4452. size="5183988"
  4453. />
  4454. <package
  4455. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-es-ES.img"
  4456. size="5183988"
  4457. />
  4458. <package
  4459. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-it-IT.img"
  4460. size="5183988"
  4461. />
  4462. <package
  4463. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-de-DE.img"
  4464. size="5183988"
  4465. />
  4466. <package
  4467. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-nl-NL.img"
  4468. size="5183988"
  4469. />
  4470. <package
  4471. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ru-RU.img"
  4472. size="5183988"
  4473. />
  4474. <package
  4475. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-cmn-CN.img"
  4476. size="5183988"
  4477. />
  4478. <package
  4479. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ko-KR.img"
  4480. size="5183988"
  4481. />
  4482. <package
  4483. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ja-JP.img"
  4484. size="5183988"
  4485. />
  4486. <package
  4487. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fi-FI.img"
  4488. size="5183988"
  4489. />
  4490. <package
  4491. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-pl-PL.img"
  4492. size="5183988"
  4493. />
  4494. </otaPackages>
  4495. </productMenu>
  4496. <productMenu id="meshIntercom+"
  4497. type="3"
  4498. url="2" >
  4499. </productMenu>
  4500. <productMenu id="waveIntercom"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="fmradio"
  4504. type="1"
  4505. url="1" >
  4506. </productMenu>
  4507. <productMenu id="mic"
  4508. type="0" >
  4509. </productMenu>
  4510. <productMenu id="phone"
  4511. type="1" >
  4512. </productMenu>
  4513. <productMenu id="music"
  4514. type="1" >
  4515. </productMenu>
  4516. <productMenu id="musicSharing"
  4517. type="0" >
  4518. </productMenu>
  4519. <productMenu id="deviceSetting"
  4520. type="1"
  4521. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  4522. </productMenu>
  4523. <productMenu id="quickGuide"
  4524. type="0"
  4525. url=""
  4526. size="1.12MB" >
  4527. </productMenu>
  4528. <productMenu id="userGuide"
  4529. type="1"
  4530. url=""
  4531. size="2.0MB" >
  4532. </productMenu>
  4533. <productMenu id="videoGuide"
  4534. type="0"
  4535. url=""
  4536. size="3.41MB" >
  4537. </productMenu>
  4538. <productMenu id="connectGuide"
  4539. type="1"
  4540. url=""
  4541. size="1.12MB" >
  4542. </productMenu>
  4543. <productMenu id="keySettings"
  4544. type="0"
  4545. url="" >
  4546. </productMenu>
  4547. <productMenu id="volume"
  4548. type="13" >
  4549. </productMenu>
  4550. <productMenu id="volume+"
  4551. type="2"
  4552. url="0x6004" >
  4553. </productMenu>
  4554. <productMenu id="appearance"
  4555. type="0"
  4556. url="" >
  4557. </productMenu>
  4558. <productMenu id="battery"
  4559. type="1" >
  4560. </productMenu>
  4561. <productID id="6A20"
  4562. />
  4563. <productGroupable type="0"
  4564. />
  4565. </product>
  4566. <product id="SPIDERXSlim"
  4567. name="SPIDER X Slim"
  4568. series="SPIDER"
  4569. latestVersion="1.0.1"
  4570. latestVersionVoicePrompt="1.8"
  4571. show = "1" >
  4572. <productMenu id="protocol"
  4573. type="2" >
  4574. </productMenu>
  4575. <productMenu id="warranty"
  4576. type="1" >
  4577. </productMenu>
  4578. <productMenu id="serialNumber"
  4579. type="1" >
  4580. </productMenu>
  4581. <productMenu id="ota"
  4582. type="2" >
  4583. <otaLanguages>
  4584. <otaLanguage
  4585. id="0"
  4586. name="English"
  4587. package="0"
  4588. />
  4589. <otaLanguage
  4590. id="0"
  4591. name="Français"
  4592. package="1"
  4593. />
  4594. <otaLanguage
  4595. id="0"
  4596. name="Español"
  4597. package="2"
  4598. />
  4599. <otaLanguage
  4600. id="0"
  4601. name="Italiano"
  4602. package="3"
  4603. />
  4604. <otaLanguage
  4605. id="0"
  4606. name="Deutsch"
  4607. package="4"
  4608. />
  4609. <otaLanguage
  4610. id="0"
  4611. name="Nederlands"
  4612. package="5"
  4613. />
  4614. <otaLanguage
  4615. id="0"
  4616. name="Русский"
  4617. package="6"
  4618. />
  4619. <otaLanguage
  4620. id="0"
  4621. name="简体中文"
  4622. package="7"
  4623. />
  4624. <otaLanguage
  4625. id="0"
  4626. name="한국어"
  4627. package="8"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="日本語"
  4632. package="9"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Suomi"
  4637. package="10"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Polski"
  4642. package="11"
  4643. />
  4644. </otaLanguages>
  4645. <otaPackages>
  4646. <package
  4647. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  4648. size="5183988"
  4649. />
  4650. <package
  4651. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  4652. size="5183988"
  4653. />
  4654. <package
  4655. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  4656. size="5183988"
  4657. />
  4658. <package
  4659. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  4660. size="5183988"
  4661. />
  4662. <package
  4663. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  4664. size="5183988"
  4665. />
  4666. <package
  4667. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  4692. size="5183988"
  4693. />
  4694. </otaPackages>
  4695. </productMenu>
  4696. <productMenu id="meshIntercom"
  4697. type="30" >
  4698. </productMenu>
  4699. <productMenu id="meshIntercom+"
  4700. type="3"
  4701. url="2" >
  4702. </productMenu>
  4703. <productMenu id="waveIntercom"
  4704. type="1" >
  4705. </productMenu>
  4706. <productMenu id="fmradio"
  4707. type="1"
  4708. url="1" >
  4709. </productMenu>
  4710. <productMenu id="phone"
  4711. type="1" >
  4712. </productMenu>
  4713. <productMenu id="music"
  4714. type="1" >
  4715. </productMenu>
  4716. <productMenu id="musicSharing"
  4717. type="0" >
  4718. </productMenu>
  4719. <productMenu id="deviceSetting"
  4720. type="1"
  4721. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4722. <productMenuURL version="1.0"
  4723. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4724. />
  4725. </productMenu>
  4726. <productMenu id="quickGuide"
  4727. type="0"
  4728. url=""
  4729. size="1.12MB" >
  4730. </productMenu>
  4731. <productMenu id="userGuide"
  4732. type="1"
  4733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4734. size="2.0MB" >
  4735. </productMenu>
  4736. <productMenu id="videoGuide"
  4737. type="0"
  4738. url=""
  4739. size="3.41MB" >
  4740. </productMenu>
  4741. <productMenu id="connectGuide"
  4742. type="1"
  4743. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4744. size="1.12MB" >
  4745. </productMenu>
  4746. <productMenu id="volume"
  4747. type="16" >
  4748. </productMenu>
  4749. <productMenu id="volume+"
  4750. type="2"
  4751. url="0x6004" >
  4752. </productMenu>
  4753. <productMenu id="appearance"
  4754. type="1"
  4755. url="2|white,silver,chrome,black" >
  4756. </productMenu>
  4757. <productMenu id="battery"
  4758. type="1" >
  4759. </productMenu>
  4760. <productID id="6A07"
  4761. />
  4762. <productGroupable type="0"
  4763. />
  4764. </product>
  4765. <product id="LS2SPECTRUMPRO"
  4766. name="LS2 SPECTRUM PRO"
  4767. series="SPIDER"
  4768. latestVersion="1.0.1"
  4769. latestVersionVoicePrompt="1.8"
  4770. show = "-1" >
  4771. <productMenu id="protocol"
  4772. type="2" >
  4773. </productMenu>
  4774. <productMenu id="warranty"
  4775. type="0" >
  4776. </productMenu>
  4777. <productMenu id="serialNumber"
  4778. type="0" >
  4779. </productMenu>
  4780. <productMenu id="ota"
  4781. type="0" >
  4782. <otaLanguages>
  4783. <otaLanguage
  4784. id="0"
  4785. name="English"
  4786. package="0"
  4787. />
  4788. <otaLanguage
  4789. id="0"
  4790. name="Français"
  4791. package="1"
  4792. />
  4793. <otaLanguage
  4794. id="0"
  4795. name="Español"
  4796. package="2"
  4797. />
  4798. <otaLanguage
  4799. id="0"
  4800. name="Italiano"
  4801. package="3"
  4802. />
  4803. <otaLanguage
  4804. id="0"
  4805. name="Deutsch"
  4806. package="4"
  4807. />
  4808. <otaLanguage
  4809. id="0"
  4810. name="Nederlands"
  4811. package="5"
  4812. />
  4813. <otaLanguage
  4814. id="0"
  4815. name="Русский"
  4816. package="6"
  4817. />
  4818. <otaLanguage
  4819. id="0"
  4820. name="简体中文"
  4821. package="7"
  4822. />
  4823. <otaLanguage
  4824. id="0"
  4825. name="한국어"
  4826. package="8"
  4827. />
  4828. <otaLanguage
  4829. id="0"
  4830. name="日本語"
  4831. package="9"
  4832. />
  4833. <otaLanguage
  4834. id="0"
  4835. name="Suomi"
  4836. package="10"
  4837. />
  4838. <otaLanguage
  4839. id="0"
  4840. name="Polski"
  4841. package="11"
  4842. />
  4843. </otaLanguages>
  4844. <otaPackages>
  4845. <package
  4846. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1.img"
  4847. size="5183988"
  4848. />
  4849. <package
  4850. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fr-FR.img"
  4851. size="5183988"
  4852. />
  4853. <package
  4854. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-es-ES.img"
  4855. size="5183988"
  4856. />
  4857. <package
  4858. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-it-IT.img"
  4859. size="5183988"
  4860. />
  4861. <package
  4862. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-de-DE.img"
  4863. size="5183988"
  4864. />
  4865. <package
  4866. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-nl-NL.img"
  4867. size="5183988"
  4868. />
  4869. <package
  4870. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ru-RU.img"
  4871. size="5183988"
  4872. />
  4873. <package
  4874. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-cmn-CN.img"
  4875. size="5183988"
  4876. />
  4877. <package
  4878. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ko-KR.img"
  4879. size="5183988"
  4880. />
  4881. <package
  4882. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ja-JP.img"
  4883. size="5183988"
  4884. />
  4885. <package
  4886. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fi-FI.img"
  4887. size="5183988"
  4888. />
  4889. <package
  4890. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-pl-PL.img"
  4891. size="5183988"
  4892. />
  4893. </otaPackages>
  4894. </productMenu>
  4895. <productMenu id="meshIntercom"
  4896. type="30" >
  4897. </productMenu>
  4898. <productMenu id="meshIntercom+"
  4899. type="3"
  4900. url="2" >
  4901. </productMenu>
  4902. <productMenu id="waveIntercom"
  4903. type="1" >
  4904. </productMenu>
  4905. <productMenu id="fmradio"
  4906. type="1"
  4907. url="1" >
  4908. </productMenu>
  4909. <productMenu id="phone"
  4910. type="1" >
  4911. </productMenu>
  4912. <productMenu id="music"
  4913. type="1" >
  4914. </productMenu>
  4915. <productMenu id="musicSharing"
  4916. type="0" >
  4917. </productMenu>
  4918. <productMenu id="deviceSetting"
  4919. type="1"
  4920. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4921. </productMenu>
  4922. <productMenu id="quickGuide"
  4923. type="0"
  4924. url=""
  4925. size="1.12MB" >
  4926. </productMenu>
  4927. <productMenu id="userGuide"
  4928. type="1"
  4929. url=""
  4930. size="2.0MB" >
  4931. </productMenu>
  4932. <productMenu id="videoGuide"
  4933. type="0"
  4934. url=""
  4935. size="3.41MB" >
  4936. </productMenu>
  4937. <productMenu id="connectGuide"
  4938. type="1"
  4939. url=""
  4940. size="1.12MB" >
  4941. </productMenu>
  4942. <productMenu id="volume"
  4943. type="16" >
  4944. </productMenu>
  4945. <productMenu id="volume+"
  4946. type="2"
  4947. url="0x6004" >
  4948. </productMenu>
  4949. <productMenu id="appearance"
  4950. type="0"
  4951. url="2|white,silver,chrome,black" >
  4952. </productMenu>
  4953. <productMenu id="battery"
  4954. type="1" >
  4955. </productMenu>
  4956. <productID id="6A22"
  4957. />
  4958. <productGroupable type="0"
  4959. />
  4960. </product>
  4961. <product id="XFITM"
  4962. name="X-FIT M"
  4963. series="SPIDER"
  4964. latestVersion="0.1.11"
  4965. latestVersionVoicePrompt="1.1"
  4966. show = "-1" >
  4967. <productMenu id="protocol"
  4968. type="2" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. <otaLanguages>
  4973. <otaLanguage
  4974. id="0"
  4975. name="English"
  4976. package="0"
  4977. />
  4978. <otaLanguage
  4979. id="0"
  4980. name="Français"
  4981. package="1"
  4982. />
  4983. <otaLanguage
  4984. id="0"
  4985. name="Español"
  4986. package="2"
  4987. />
  4988. <otaLanguage
  4989. id="0"
  4990. name="Italiano"
  4991. package="3"
  4992. />
  4993. <otaLanguage
  4994. id="0"
  4995. name="Deutsch"
  4996. package="4"
  4997. />
  4998. <otaLanguage
  4999. id="0"
  5000. name="Nederlands"
  5001. package="5"
  5002. />
  5003. <otaLanguage
  5004. id="0"
  5005. name="Русский"
  5006. package="6"
  5007. />
  5008. <otaLanguage
  5009. id="0"
  5010. name="简体中文"
  5011. package="7"
  5012. />
  5013. <otaLanguage
  5014. id="0"
  5015. name="한국어"
  5016. package="8"
  5017. />
  5018. <otaLanguage
  5019. id="0"
  5020. name="日本語"
  5021. package="9"
  5022. />
  5023. <otaLanguage
  5024. id="0"
  5025. name="Suomi"
  5026. package="10"
  5027. />
  5028. <otaLanguage
  5029. id="0"
  5030. name="Polski"
  5031. package="11"
  5032. />
  5033. </otaLanguages>
  5034. <otaPackages>
  5035. <package
  5036. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  5037. size="5183988"
  5038. />
  5039. <package
  5040. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  5041. size="5183988"
  5042. />
  5043. <package
  5044. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  5045. size="5183988"
  5046. />
  5047. <package
  5048. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  5049. size="5183988"
  5050. />
  5051. <package
  5052. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  5053. size="5183988"
  5054. />
  5055. <package
  5056. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  5057. size="5183988"
  5058. />
  5059. <package
  5060. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  5061. size="5183988"
  5062. />
  5063. <package
  5064. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  5065. size="5183988"
  5066. />
  5067. <package
  5068. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  5069. size="5183988"
  5070. />
  5071. <package
  5072. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  5073. size="5183988"
  5074. />
  5075. <package
  5076. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  5077. size="5183988"
  5078. />
  5079. <package
  5080. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  5081. size="5183988"
  5082. />
  5083. </otaPackages>
  5084. </productMenu>
  5085. <productMenu id="meshIntercom"
  5086. type="30" >
  5087. </productMenu>
  5088. <productMenu id="meshIntercom+"
  5089. type="3"
  5090. url="2" >
  5091. </productMenu>
  5092. <productMenu id="waveIntercom"
  5093. type="1" >
  5094. </productMenu>
  5095. <productMenu id="fmradio"
  5096. type="1"
  5097. url="1" >
  5098. </productMenu>
  5099. <productMenu id="phone"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="music"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="musicSharing"
  5106. type="0" >
  5107. </productMenu>
  5108. <productMenu id="deviceSetting"
  5109. type="1"
  5110. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  5111. </productMenu>
  5112. <productMenu id="quickGuide"
  5113. type="0"
  5114. url=""
  5115. size="1.12MB" >
  5116. </productMenu>
  5117. <productMenu id="userGuide"
  5118. type="1"
  5119. url=""
  5120. size="2.0MB" >
  5121. </productMenu>
  5122. <productMenu id="videoGuide"
  5123. type="0"
  5124. url=""
  5125. size="3.41MB" >
  5126. </productMenu>
  5127. <productMenu id="volume"
  5128. type="16" >
  5129. </productMenu>
  5130. <productMenu id="volume+"
  5131. type="2"
  5132. url="0x6004" >
  5133. </productMenu>
  5134. <productMenu id="battery"
  5135. type="1" >
  5136. </productMenu>
  5137. <productID id="6A17"
  5138. />
  5139. <productGroupable type="0"
  5140. />
  5141. </product>
  5142. <product id="VORTEXMESH"
  5143. name="VORTEX MESH"
  5144. series="Helmet"
  5145. latestVersion="0.1.11"
  5146. latestVersionVoicePrompt="1.1"
  5147. show = "-1" >
  5148. <productMenu id="protocol"
  5149. type="2" >
  5150. </productMenu>
  5151. <productMenu id="ota"
  5152. type="0" >
  5153. <otaLanguages>
  5154. <otaLanguage
  5155. id="0"
  5156. name="English"
  5157. package="0"
  5158. />
  5159. <otaLanguage
  5160. id="0"
  5161. name="Français"
  5162. package="1"
  5163. />
  5164. <otaLanguage
  5165. id="0"
  5166. name="Español"
  5167. package="2"
  5168. />
  5169. <otaLanguage
  5170. id="0"
  5171. name="Italiano"
  5172. package="3"
  5173. />
  5174. <otaLanguage
  5175. id="0"
  5176. name="Deutsch"
  5177. package="4"
  5178. />
  5179. <otaLanguage
  5180. id="0"
  5181. name="Nederlands"
  5182. package="5"
  5183. />
  5184. <otaLanguage
  5185. id="0"
  5186. name="Русский"
  5187. package="6"
  5188. />
  5189. <otaLanguage
  5190. id="0"
  5191. name="简体中文"
  5192. package="7"
  5193. />
  5194. <otaLanguage
  5195. id="0"
  5196. name="한국어"
  5197. package="8"
  5198. />
  5199. <otaLanguage
  5200. id="0"
  5201. name="日本語"
  5202. package="9"
  5203. />
  5204. <otaLanguage
  5205. id="0"
  5206. name="Suomi"
  5207. package="10"
  5208. />
  5209. <otaLanguage
  5210. id="0"
  5211. name="Polski"
  5212. package="11"
  5213. />
  5214. </otaLanguages>
  5215. <otaPackages>
  5216. <package
  5217. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  5218. size="5183988"
  5219. />
  5220. <package
  5221. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  5222. size="5183988"
  5223. />
  5224. <package
  5225. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  5226. size="5183988"
  5227. />
  5228. <package
  5229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  5230. size="5183988"
  5231. />
  5232. <package
  5233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  5234. size="5183988"
  5235. />
  5236. <package
  5237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  5238. size="5183988"
  5239. />
  5240. <package
  5241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  5242. size="5183988"
  5243. />
  5244. <package
  5245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  5246. size="5183988"
  5247. />
  5248. <package
  5249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  5250. size="5183988"
  5251. />
  5252. <package
  5253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  5254. size="5183988"
  5255. />
  5256. <package
  5257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  5258. size="5183988"
  5259. />
  5260. <package
  5261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  5262. size="5183988"
  5263. />
  5264. </otaPackages>
  5265. </productMenu>
  5266. <productMenu id="wa"
  5267. type="0" >
  5268. </productMenu>
  5269. <productMenu id="led"
  5270. type="5" >
  5271. </productMenu>
  5272. <productMenu id="led+"
  5273. type="2"
  5274. url="1" >
  5275. </productMenu>
  5276. <productMenu id="meshIntercom"
  5277. type="30" >
  5278. </productMenu>
  5279. <productMenu id="meshIntercom+"
  5280. type="3"
  5281. url="2" >
  5282. </productMenu>
  5283. <productMenu id="waveIntercom"
  5284. type="1" >
  5285. </productMenu>
  5286. <productMenu id="fmradio"
  5287. type="0" >
  5288. </productMenu>
  5289. <productMenu id="phone"
  5290. type="1" >
  5291. </productMenu>
  5292. <productMenu id="music"
  5293. type="1" >
  5294. </productMenu>
  5295. <productMenu id="musicSharing"
  5296. type="0" >
  5297. </productMenu>
  5298. <productMenu id="deviceSetting"
  5299. type="1"
  5300. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5301. </productMenu>
  5302. <productMenu id="quickGuide"
  5303. type="0"
  5304. url=""
  5305. size="1.12MB" >
  5306. </productMenu>
  5307. <productMenu id="userGuide"
  5308. type="1"
  5309. url=""
  5310. size="2.0MB" >
  5311. </productMenu>
  5312. <productMenu id="videoGuide"
  5313. type="0"
  5314. url=""
  5315. size="3.41MB" >
  5316. </productMenu>
  5317. <productMenu id="volume"
  5318. type="16" >
  5319. </productMenu>
  5320. <productMenu id="battery"
  5321. type="1" >
  5322. </productMenu>
  5323. <productID id="6A12"
  5324. />
  5325. <productGroupable type="0"
  5326. />
  5327. </product>
  5328. <product id="MeshOn"
  5329. name="MeshON"
  5330. series="Other"
  5331. latestVersion="1.0.1"
  5332. latestVersionVoicePrompt="0.7"
  5333. show = "1" >
  5334. <productMenu id="protocol"
  5335. type="2" >
  5336. </productMenu>
  5337. <productMenu id="ota"
  5338. type="2" >
  5339. <otaPackages>
  5340. <package
  5341. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  5342. size="2945812"
  5343. />
  5344. </otaPackages>
  5345. </productMenu>
  5346. <productMenu id="meshIntercom+"
  5347. type="3"
  5348. url="4" >
  5349. </productMenu>
  5350. <productMenu id="waveIntercom"
  5351. type="0" >
  5352. </productMenu>
  5353. <productMenu id="phone"
  5354. type="0" >
  5355. </productMenu>
  5356. <productMenu id="music"
  5357. type="0" >
  5358. </productMenu>
  5359. <productMenu id="musicSharing"
  5360. type="0" >
  5361. </productMenu>
  5362. <productMenu id="deviceSetting"
  5363. type="1"
  5364. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_02.xml" >
  5365. </productMenu>
  5366. <productMenu id="userGuide"
  5367. type="1"
  5368. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  5369. size="2.0MB" >
  5370. </productMenu>
  5371. <productMenu id="connectGuide"
  5372. type="1"
  5373. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  5374. size="1.12MB" >
  5375. </productMenu>
  5376. <productMenu id="bluetoothHeadset"
  5377. type="1"
  5378. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  5379. </productMenu>
  5380. <productMenu id="volume"
  5381. type="0" >
  5382. </productMenu>
  5383. <productMenu id="battery"
  5384. type="1" >
  5385. </productMenu>
  5386. <productID id="684E"
  5387. />
  5388. <productGroupable type="0"
  5389. />
  5390. </product>
  5391. <product id="Impulse"
  5392. name="Impulse"
  5393. series="Helmet"
  5394. latestVersion="1.4.1"
  5395. show = "1" >
  5396. <productMenu id="protocol"
  5397. type="2" >
  5398. </productMenu>
  5399. <productMenu id="alexa"
  5400. type="0" >
  5401. </productMenu>
  5402. <productMenu id="ota"
  5403. type="0" >
  5404. </productMenu>
  5405. <productMenu id="wa"
  5406. type="24" >
  5407. </productMenu>
  5408. <productMenu id="manager"
  5409. type="0" >
  5410. </productMenu>
  5411. <productMenu id="sip"
  5412. type="1" >
  5413. </productMenu>
  5414. <productMenu id="led"
  5415. type="1" >
  5416. <productMenuType version="1.0.1"
  5417. type="2"
  5418. />
  5419. <productMenuType version="1.0"
  5420. type="1"
  5421. />
  5422. </productMenu>
  5423. <productMenu id="meshIntercom"
  5424. type="30" >
  5425. <productMenuType version="1.1.1"
  5426. type="20"
  5427. />
  5428. </productMenu>
  5429. <productMenu id="meshIntercom+"
  5430. type="3"
  5431. url="2" >
  5432. <productMenuType version="1.3.9"
  5433. type="2"
  5434. />
  5435. <productMenuURL version="1.1.1"
  5436. url="0"
  5437. />
  5438. </productMenu>
  5439. <productMenu id="waveIntercom"
  5440. type="1" >
  5441. <productMenuType version="1.3.9"
  5442. type="0"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="bluetoothIntercom"
  5446. type="1" >
  5447. </productMenu>
  5448. <productMenu id="phone"
  5449. type="1" >
  5450. </productMenu>
  5451. <productMenu id="music"
  5452. type="1" >
  5453. </productMenu>
  5454. <productMenu id="fmradio"
  5455. type="1" >
  5456. </productMenu>
  5457. <productMenu id="deviceSetting"
  5458. type="1"
  5459. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5460. <productMenuURL version="1.3.9"
  5461. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5462. />
  5463. <productMenuURL version="1.1.1"
  5464. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5465. />
  5466. <productMenuURL version="1.0.4"
  5467. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5468. />
  5469. </productMenu>
  5470. <productMenu id="quickGuide"
  5471. type="0"
  5472. url=""
  5473. size="344KB" >
  5474. </productMenu>
  5475. <productMenu id="userGuide"
  5476. type="1"
  5477. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5478. size="3.41MB" >
  5479. </productMenu>
  5480. <productMenu id="connectGuide"
  5481. type="1"
  5482. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5483. size="1.12MB" >
  5484. </productMenu>
  5485. <productMenu id="volume"
  5486. type="11" >
  5487. </productMenu>
  5488. <productMenu id="battery"
  5489. type="1" >
  5490. </productMenu>
  5491. <productID id="3148"
  5492. />
  5493. <productGroupable type="0"
  5494. />
  5495. </product>
  5496. <product id="Impulse"
  5497. name="Impulse"
  5498. series="Helmet"
  5499. latestVersion="2.0"
  5500. show = "-1" >
  5501. <productMenu id="protocol"
  5502. type="2" >
  5503. </productMenu>
  5504. <productMenu id="alexa"
  5505. type="0" >
  5506. </productMenu>
  5507. <productMenu id="ota"
  5508. type="0" >
  5509. </productMenu>
  5510. <productMenu id="wa"
  5511. type="8" >
  5512. </productMenu>
  5513. <productMenu id="manager"
  5514. type="0" >
  5515. </productMenu>
  5516. <productMenu id="sip"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="led"
  5520. type="3" >
  5521. </productMenu>
  5522. <productMenu id="meshIntercom"
  5523. type="20" >
  5524. </productMenu>
  5525. <productMenu id="bluetoothIntercom"
  5526. type="1" >
  5527. </productMenu>
  5528. <productMenu id="phone"
  5529. type="1" >
  5530. </productMenu>
  5531. <productMenu id="music"
  5532. type="1" >
  5533. </productMenu>
  5534. <productMenu id="fmradio"
  5535. type="1" >
  5536. </productMenu>
  5537. <productMenu id="deviceSetting"
  5538. type="1"
  5539. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5540. </productMenu>
  5541. <productMenu id="quickGuide"
  5542. type="1"
  5543. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5544. size="344KB" >
  5545. </productMenu>
  5546. <productMenu id="userGuide"
  5547. type="1"
  5548. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5549. size="3.41MB" >
  5550. </productMenu>
  5551. <productMenu id="volume"
  5552. type="11" >
  5553. </productMenu>
  5554. <productMenu id="battery"
  5555. type="1" >
  5556. </productMenu>
  5557. <productID id="3221"
  5558. />
  5559. <productGroupable type="0"
  5560. />
  5561. </product>
  5562. <product id="Stryker"
  5563. name="Stryker"
  5564. series="Helmet"
  5565. latestVersion="1.4.1"
  5566. show = "1" >
  5567. <productMenu id="protocol"
  5568. type="2" >
  5569. </productMenu>
  5570. <productMenu id="alexa"
  5571. type="0" >
  5572. </productMenu>
  5573. <productMenu id="ota"
  5574. type="0" >
  5575. </productMenu>
  5576. <productMenu id="wa"
  5577. type="40" >
  5578. </productMenu>
  5579. <productMenu id="manager"
  5580. type="0" >
  5581. </productMenu>
  5582. <productMenu id="sip"
  5583. type="1" >
  5584. </productMenu>
  5585. <productMenu id="led"
  5586. type="1" >
  5587. <productMenuType version="1.0.1"
  5588. type="2"
  5589. />
  5590. <productMenuType version="1.0"
  5591. type="1"
  5592. />
  5593. </productMenu>
  5594. <productMenu id="meshIntercom"
  5595. type="30" >
  5596. <productMenuType version="1.1.1"
  5597. type="20"
  5598. />
  5599. </productMenu>
  5600. <productMenu id="meshIntercom+"
  5601. type="3"
  5602. url="2" >
  5603. <productMenuType version="1.3.9"
  5604. type="2"
  5605. />
  5606. <productMenuURL version="1.1.1"
  5607. url="0"
  5608. />
  5609. </productMenu>
  5610. <productMenu id="waveIntercom"
  5611. type="1" >
  5612. <productMenuType version="1.2.9"
  5613. type="0"
  5614. />
  5615. </productMenu>
  5616. <productMenu id="bluetoothIntercom"
  5617. type="1" >
  5618. </productMenu>
  5619. <productMenu id="phone"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="music"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="fmradio"
  5626. type="1" >
  5627. </productMenu>
  5628. <productMenu id="deviceSetting"
  5629. type="1"
  5630. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5631. <productMenuURL version="1.3.9"
  5632. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5633. />
  5634. <productMenuURL version="1.1.1"
  5635. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5636. />
  5637. <productMenuURL version="1.0.4"
  5638. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5639. />
  5640. </productMenu>
  5641. <productMenu id="quickGuide"
  5642. type="0"
  5643. url=""
  5644. size="344KB" >
  5645. </productMenu>
  5646. <productMenu id="userGuide"
  5647. type="1"
  5648. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5649. size="3.41MB" >
  5650. </productMenu>
  5651. <productMenu id="connectGuide"
  5652. type="1"
  5653. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5654. size="1.12MB" >
  5655. </productMenu>
  5656. <productMenu id="volume"
  5657. type="11" >
  5658. </productMenu>
  5659. <productMenu id="battery"
  5660. type="1" >
  5661. </productMenu>
  5662. <productID id="3154"
  5663. />
  5664. <productGroupable type="0"
  5665. />
  5666. </product>
  5667. <product id="SRL3Plus"
  5668. name="SRL3 Plus"
  5669. series="60"
  5670. latestVersion="0.9.14"
  5671. latestVersionMesh="0.19"
  5672. latestVersionVoicePrompt="1.8"
  5673. show = "-1" >
  5674. <productMenu id="protocol"
  5675. type="2" >
  5676. </productMenu>
  5677. <productMenu id="ota"
  5678. type="0" >
  5679. <otaLanguages>
  5680. <otaLanguage
  5681. id="0"
  5682. name="English"
  5683. package="0"
  5684. />
  5685. <otaLanguage
  5686. id="0"
  5687. name="Français"
  5688. package="1"
  5689. />
  5690. <otaLanguage
  5691. id="0"
  5692. name="Español"
  5693. package="2"
  5694. />
  5695. <otaLanguage
  5696. id="0"
  5697. name="Italiano"
  5698. package="3"
  5699. />
  5700. <otaLanguage
  5701. id="0"
  5702. name="Deutsch"
  5703. package="4"
  5704. />
  5705. <otaLanguage
  5706. id="0"
  5707. name="Nederlands"
  5708. package="5"
  5709. />
  5710. <otaLanguage
  5711. id="0"
  5712. name="Русский"
  5713. package="6"
  5714. />
  5715. <otaLanguage
  5716. id="0"
  5717. name="简体中文"
  5718. package="7"
  5719. />
  5720. <otaLanguage
  5721. id="0"
  5722. name="한국어"
  5723. package="8"
  5724. />
  5725. <otaLanguage
  5726. id="0"
  5727. name="日本語"
  5728. package="9"
  5729. />
  5730. <otaLanguage
  5731. id="0"
  5732. name="Suomi"
  5733. package="10"
  5734. />
  5735. <otaLanguage
  5736. id="0"
  5737. name="Polski"
  5738. package="11"
  5739. />
  5740. </otaLanguages>
  5741. <otaPackages>
  5742. <package
  5743. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5744. size="5183988"
  5745. />
  5746. <package
  5747. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5748. size="5183988"
  5749. />
  5750. <package
  5751. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5752. size="5183988"
  5753. />
  5754. <package
  5755. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5756. size="5183988"
  5757. />
  5758. <package
  5759. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5760. size="5183988"
  5761. />
  5762. <package
  5763. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5764. size="5183988"
  5765. />
  5766. <package
  5767. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5768. size="5183988"
  5769. />
  5770. <package
  5771. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5772. size="5183988"
  5773. />
  5774. <package
  5775. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5776. size="5183988"
  5777. />
  5778. <package
  5779. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5780. size="5183988"
  5781. />
  5782. <package
  5783. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5784. size="5183988"
  5785. />
  5786. <package
  5787. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5788. size="5183988"
  5789. />
  5790. </otaPackages>
  5791. </productMenu>
  5792. <productMenu id="sip"
  5793. type="1" >
  5794. </productMenu>
  5795. <productMenu id="meshIntercom+"
  5796. type="3"
  5797. url="2" >
  5798. </productMenu>
  5799. <productMenu id="waveIntercom"
  5800. type="1" >
  5801. </productMenu>
  5802. <productMenu id="bluetoothIntercom"
  5803. type="1"
  5804. url="2" >
  5805. </productMenu>
  5806. <productMenu id="bluetoothIntercomGrouping"
  5807. type="0" >
  5808. </productMenu>
  5809. <productMenu id="fmradio"
  5810. type="1"
  5811. url="1" >
  5812. </productMenu>
  5813. <productMenu id="phone"
  5814. type="1" >
  5815. </productMenu>
  5816. <productMenu id="music"
  5817. type="1" >
  5818. </productMenu>
  5819. <productMenu id="musicSharing"
  5820. type="0" >
  5821. </productMenu>
  5822. <productMenu id="deviceSetting"
  5823. type="1"
  5824. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5825. </productMenu>
  5826. <productMenu id="quickGuide"
  5827. type="0"
  5828. url=""
  5829. size="1.12MB" >
  5830. </productMenu>
  5831. <productMenu id="userGuide"
  5832. type="0"
  5833. url=""
  5834. size="2.0MB" >
  5835. </productMenu>
  5836. <productMenu id="videoGuide"
  5837. type="0"
  5838. url=""
  5839. size="3.41MB" >
  5840. </productMenu>
  5841. <productMenu id="volume"
  5842. type="16" >
  5843. </productMenu>
  5844. <productMenu id="soundMode"
  5845. type="0" >
  5846. </productMenu>
  5847. <productMenu id="battery"
  5848. type="1" >
  5849. </productMenu>
  5850. <productID id="6A08"
  5851. />
  5852. <productGroupable type="0"
  5853. />
  5854. </product>
  5855. <product id="SRL3"
  5856. name="SRL3"
  5857. series="SRL"
  5858. latestVersion="1.5"
  5859. show = "1" >
  5860. <productMenu id="protocol"
  5861. type="2" >
  5862. </productMenu>
  5863. <productMenu id="alexa"
  5864. type="0" >
  5865. </productMenu>
  5866. <productMenu id="ota"
  5867. type="0" >
  5868. </productMenu>
  5869. <productMenu id="wa"
  5870. type="1" >
  5871. </productMenu>
  5872. <productMenu id="sip"
  5873. type="1" >
  5874. </productMenu>
  5875. <productMenu id="meshIntercom"
  5876. type="30" >
  5877. </productMenu>
  5878. <productMenu id="meshIntercom+"
  5879. type="3"
  5880. url="2" >
  5881. <productMenuType version="1.3.9"
  5882. type="2"
  5883. />
  5884. </productMenu>
  5885. <productMenu id="waveIntercom"
  5886. type="1" >
  5887. <productMenuType version="1.4.9"
  5888. type="0"
  5889. />
  5890. </productMenu>
  5891. <productMenu id="bluetoothIntercom"
  5892. type="1" >
  5893. </productMenu>
  5894. <productMenu id="phone"
  5895. type="1" >
  5896. </productMenu>
  5897. <productMenu id="music"
  5898. type="1" >
  5899. </productMenu>
  5900. <productMenu id="fmradio"
  5901. type="1" >
  5902. </productMenu>
  5903. <productMenu id="deviceSetting"
  5904. type="1"
  5905. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5906. <productMenuURL version="1.3"
  5907. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5908. />
  5909. </productMenu>
  5910. <productMenu id="quickGuide"
  5911. type="0"
  5912. url=""
  5913. size="344KB" >
  5914. </productMenu>
  5915. <productMenu id="userGuide"
  5916. type="1"
  5917. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.4.1_en_260831.pdf"
  5918. size="3.41MB" >
  5919. </productMenu>
  5920. <productMenu id="connectGuide"
  5921. type="1"
  5922. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5923. size="1.12MB" >
  5924. </productMenu>
  5925. <productMenu id="volume"
  5926. type="11" >
  5927. </productMenu>
  5928. <productMenu id="battery"
  5929. type="1" >
  5930. </productMenu>
  5931. <productID id="3219"
  5932. />
  5933. <productGroupable type="0"
  5934. />
  5935. </product>
  5936. <product id="SRL_Mesh"
  5937. name="SRL-Mesh"
  5938. series="SRL"
  5939. latestVersion="1.7.1"
  5940. show = "1" >
  5941. <productMenu id="protocol"
  5942. type="2" >
  5943. </productMenu>
  5944. <productMenu id="alexa"
  5945. type="0" >
  5946. </productMenu>
  5947. <productMenu id="ota"
  5948. type="0" >
  5949. </productMenu>
  5950. <productMenu id="wa"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="sip"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="meshIntercom"
  5957. type="30" >
  5958. <productMenuType version="1.1.1"
  5959. type="20"
  5960. />
  5961. </productMenu>
  5962. <productMenu id="meshIntercom+"
  5963. type="3"
  5964. url="2" >
  5965. <productMenuType version="1.5.9"
  5966. type="2"
  5967. />
  5968. <productMenuURL version="1.1.1"
  5969. url="0"
  5970. />
  5971. </productMenu>
  5972. <productMenu id="waveIntercom"
  5973. type="1" >
  5974. <productMenuType version="1.6.9"
  5975. type="0"
  5976. />
  5977. </productMenu>
  5978. <productMenu id="bluetoothIntercom"
  5979. type="1" >
  5980. </productMenu>
  5981. <productMenu id="phone"
  5982. type="1" >
  5983. </productMenu>
  5984. <productMenu id="music"
  5985. type="1" >
  5986. </productMenu>
  5987. <productMenu id="fmradio"
  5988. type="1" >
  5989. </productMenu>
  5990. <productMenu id="deviceSetting"
  5991. type="1"
  5992. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5993. <productMenuURL version="1.5"
  5994. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5995. />
  5996. <productMenuURL version="1.1.1"
  5997. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5998. />
  5999. <productMenuURL version="1.0.3"
  6000. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6001. />
  6002. </productMenu>
  6003. <productMenu id="quickGuide"
  6004. type="0"
  6005. url=""
  6006. size="344KB" >
  6007. </productMenu>
  6008. <productMenu id="userGuide"
  6009. type="1"
  6010. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  6011. size="3.41MB" >
  6012. </productMenu>
  6013. <productMenu id="connectGuide"
  6014. type="1"
  6015. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6016. size="1.12MB" >
  6017. </productMenu>
  6018. <productMenu id="volume"
  6019. type="11" >
  6020. </productMenu>
  6021. <productMenu id="battery"
  6022. type="1" >
  6023. </productMenu>
  6024. <productID id="3216"
  6025. />
  6026. <productGroupable type="0"
  6027. />
  6028. </product>
  6029. <product id="SRL_EXT"
  6030. name="SRL-EXT"
  6031. series="SRL"
  6032. latestVersion="1.7.1"
  6033. show = "1" >
  6034. <productMenu id="protocol"
  6035. type="2" >
  6036. </productMenu>
  6037. <productMenu id="alexa"
  6038. type="0" >
  6039. </productMenu>
  6040. <productMenu id="ota"
  6041. type="0" >
  6042. </productMenu>
  6043. <productMenu id="wa"
  6044. type="0" >
  6045. </productMenu>
  6046. <productMenu id="sip"
  6047. type="1" >
  6048. </productMenu>
  6049. <productMenu id="meshIntercom"
  6050. type="30" >
  6051. <productMenuType version="1.1.1"
  6052. type="20"
  6053. />
  6054. </productMenu>
  6055. <productMenu id="meshIntercom+"
  6056. type="3"
  6057. url="2" >
  6058. <productMenuType version="1.5.9"
  6059. type="2"
  6060. />
  6061. <productMenuURL version="1.1.1"
  6062. url="0"
  6063. />
  6064. </productMenu>
  6065. <productMenu id="waveIntercom"
  6066. type="1" >
  6067. <productMenuType version="1.6.9"
  6068. type="0"
  6069. />
  6070. </productMenu>
  6071. <productMenu id="bluetoothIntercom"
  6072. type="1" >
  6073. </productMenu>
  6074. <productMenu id="phone"
  6075. type="1" >
  6076. </productMenu>
  6077. <productMenu id="music"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="fmradio"
  6081. type="1" >
  6082. </productMenu>
  6083. <productMenu id="deviceSetting"
  6084. type="1"
  6085. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6086. <productMenuURL version="1.5"
  6087. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6088. />
  6089. <productMenuURL version="1.1.1"
  6090. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6091. />
  6092. <productMenuURL version="1.0.3"
  6093. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6094. />
  6095. </productMenu>
  6096. <productMenu id="quickGuide"
  6097. type="0"
  6098. url=""
  6099. size="344KB" >
  6100. </productMenu>
  6101. <productMenu id="userGuide"
  6102. type="1"
  6103. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  6104. size="3.41MB" >
  6105. </productMenu>
  6106. <productMenu id="connectGuide"
  6107. type="1"
  6108. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6109. size="1.12MB" >
  6110. </productMenu>
  6111. <productMenu id="volume"
  6112. type="11" >
  6113. </productMenu>
  6114. <productMenu id="battery"
  6115. type="1" >
  6116. </productMenu>
  6117. <productID id="3212"
  6118. />
  6119. <productGroupable type="0"
  6120. />
  6121. </product>
  6122. <product id="SRL2"
  6123. name="SRL2"
  6124. series="SRL"
  6125. latestVersion="1.0.9"
  6126. show = "1" >
  6127. <productMenu id="protocol"
  6128. type="0">
  6129. </productMenu>
  6130. <productMenu id="sip"
  6131. type="1" >
  6132. </productMenu>
  6133. <productMenu id="bluetoothIntercom"
  6134. type="1" >
  6135. </productMenu>
  6136. <productMenu id="intercomSetting"
  6137. type="1" >
  6138. </productMenu>
  6139. <productMenu id="phone"
  6140. type="2" >
  6141. </productMenu>
  6142. <productMenu id="fmradio"
  6143. type="3" >
  6144. </productMenu>
  6145. <productMenu id="deviceSetting"
  6146. type="1"
  6147. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6148. </productMenu>
  6149. <productMenu id="quickGuide"
  6150. type="1"
  6151. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  6152. size="846KB" >
  6153. </productMenu>
  6154. <productMenu id="userGuide"
  6155. type="1"
  6156. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  6157. size="1.18MB" >
  6158. </productMenu>
  6159. <productMenu id="connectGuide"
  6160. type="1"
  6161. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6162. size="1.12MB" >
  6163. </productMenu>
  6164. <productID id="4530"
  6165. />
  6166. <productGroupable type="1"
  6167. />
  6168. </product>
  6169. <product id="Neotec2"
  6170. name="SRL Neotec2"
  6171. series="SRL"
  6172. latestVersion="1.1.5"
  6173. show = "1" >
  6174. <productMenu id="protocol"
  6175. type="0">
  6176. </productMenu>
  6177. <productMenu id="sip"
  6178. type="1" >
  6179. </productMenu>
  6180. <productMenu id="bluetoothIntercom"
  6181. type="1" >
  6182. </productMenu>
  6183. <productMenu id="intercomSetting"
  6184. type="1" >
  6185. </productMenu>
  6186. <productMenu id="phone"
  6187. type="2" >
  6188. </productMenu>
  6189. <productMenu id="fmradio"
  6190. type="3" >
  6191. </productMenu>
  6192. <productMenu id="deviceSetting"
  6193. type="1"
  6194. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6195. </productMenu>
  6196. <productMenu id="quickGuide"
  6197. type="0"
  6198. url=""
  6199. size="796KB" >
  6200. </productMenu>
  6201. <productMenu id="userGuide"
  6202. type="1"
  6203. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  6204. size="1.90MB" >
  6205. </productMenu>
  6206. <productMenu id="connectGuide"
  6207. type="1"
  6208. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6209. size="1.12MB" >
  6210. </productMenu>
  6211. <productID id="4510"
  6212. />
  6213. <productGroupable type="1"
  6214. />
  6215. </product>
  6216. <product id="MultiComNeo"
  6217. name="MultiCom Neo"
  6218. series="MultiCom"
  6219. latestVersion="1.0"
  6220. latestVersionVoicePrompt="1.6"
  6221. show = "-1" >
  6222. <productMenu id="protocol"
  6223. type="2" >
  6224. </productMenu>
  6225. <productMenu id="ota"
  6226. type="0" >
  6227. <otaPackages>
  6228. <package
  6229. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  6230. size="2945812"
  6231. />
  6232. </otaPackages>
  6233. </productMenu>
  6234. <productMenu id="meshIntercom+"
  6235. type="3"
  6236. url="2" >
  6237. </productMenu>
  6238. <productMenu id="waveIntercom"
  6239. type="1" >
  6240. </productMenu>
  6241. <productMenu id="phone"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="music"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="musicSharing"
  6248. type="0" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  6253. </productMenu>
  6254. <productMenu id="quickGuide"
  6255. type="0"
  6256. url=""
  6257. size="1.12MB" >
  6258. </productMenu>
  6259. <productMenu id="userGuide"
  6260. type="1"
  6261. url=""
  6262. size="2.0MB" >
  6263. </productMenu>
  6264. <productMenu id="videoGuide"
  6265. type="0"
  6266. url=""
  6267. size="3.41MB" >
  6268. </productMenu>
  6269. <productMenu id="connectGuide"
  6270. type="0"
  6271. url=""
  6272. size="1.12MB" >
  6273. </productMenu>
  6274. <productMenu id="volume"
  6275. type="12" >
  6276. </productMenu>
  6277. <productMenu id="volume+"
  6278. type="2"
  6279. url="0x2000" >
  6280. </productMenu>
  6281. <productMenu id="battery"
  6282. type="1" >
  6283. </productMenu>
  6284. <productID id="685F"
  6285. />
  6286. <productGroupable type="0"
  6287. />
  6288. </product>
  6289. <product id="SPIDERST2ANC"
  6290. name="SPIDER ST2 ANC"
  6291. series="SPIDER"
  6292. latestVersion="0.5.1"
  6293. latestVersionVoicePrompt="0.2"
  6294. latestVersionMesh="0.8"
  6295. show = "-1" >
  6296. <productMenu id="protocol"
  6297. type="2" >
  6298. </productMenu>
  6299. <productMenu id="ota"
  6300. type="0" >
  6301. <otaPackages>
  6302. <package
  6303. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  6304. size="2945812"
  6305. />
  6306. </otaPackages>
  6307. </productMenu>
  6308. <productMenu id="wa"
  6309. type="0" >
  6310. </productMenu>
  6311. <productMenu id="led"
  6312. type="1" >
  6313. </productMenu>
  6314. <productMenu id="meshIntercom"
  6315. type="30" >
  6316. </productMenu>
  6317. <productMenu id="fmradio"
  6318. type="1" >
  6319. </productMenu>
  6320. <productMenu id="phone"
  6321. type="1" >
  6322. </productMenu>
  6323. <productMenu id="music"
  6324. type="1" >
  6325. </productMenu>
  6326. <productMenu id="musicSharing"
  6327. type="0" >
  6328. </productMenu>
  6329. <productMenu id="deviceSetting"
  6330. type="1"
  6331. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  6332. </productMenu>
  6333. <productMenu id="quickGuide"
  6334. type="1"
  6335. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  6336. size="1.12MB" >
  6337. </productMenu>
  6338. <productMenu id="userGuide"
  6339. type="1"
  6340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  6341. size="2.0MB" >
  6342. </productMenu>
  6343. <productMenu id="videoGuide"
  6344. type="1"
  6345. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6346. size="3.41MB" >
  6347. </productMenu>
  6348. <productMenu id="volume"
  6349. type="12" >
  6350. </productMenu>
  6351. <productMenu id="battery"
  6352. type="1" >
  6353. </productMenu>
  6354. <productID id="6A00"
  6355. />
  6356. <productGroupable type="0"
  6357. />
  6358. </product>
  6359. <product id="SPIDER_ST1"
  6360. name="SPIDER ST1"
  6361. series="SPIDER"
  6362. latestVersion="2.5.3"
  6363. latestVersionVoicePrompt="1.6"
  6364. show = "1" >
  6365. <productMenu id="protocol"
  6366. type="2" >
  6367. </productMenu>
  6368. <productMenu id="alexa"
  6369. type="0" >
  6370. </productMenu>
  6371. <productMenu id="ota"
  6372. type="2" >
  6373. <productMenuType version="2.1.9"
  6374. type="0"
  6375. />
  6376. <otaPackages>
  6377. <package
  6378. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  6379. size="2945812"
  6380. />
  6381. </otaPackages>
  6382. </productMenu>
  6383. <productMenu id="wa"
  6384. type="0" >
  6385. </productMenu>
  6386. <productMenu id="meshIntercom"
  6387. type="30" >
  6388. <productMenuType version="2.1.1"
  6389. type="20"
  6390. />
  6391. </productMenu>
  6392. <productMenu id="meshIntercom+"
  6393. type="3"
  6394. url="2" >
  6395. <productMenuType version="2.2.9"
  6396. type="2"
  6397. />
  6398. <productMenuURL version="2.1.1"
  6399. url="0"
  6400. />
  6401. </productMenu>
  6402. <productMenu id="waveIntercom"
  6403. type="1" >
  6404. <productMenuType version="2.3.9"
  6405. type="0"
  6406. />
  6407. </productMenu>
  6408. <productMenu id="phone"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="music"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="musicSharing"
  6415. type="0" >
  6416. </productMenu>
  6417. <productMenu id="deviceSetting"
  6418. type="1"
  6419. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6420. <productMenuURL version="2.4.9"
  6421. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6422. />
  6423. <productMenuURL version="2.2.2"
  6424. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6425. />
  6426. <productMenuURL version="2.1.1"
  6427. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6428. />
  6429. </productMenu>
  6430. <productMenu id="quickGuide"
  6431. type="0"
  6432. url=""
  6433. size="1.12MB" >
  6434. </productMenu>
  6435. <productMenu id="userGuide"
  6436. type="1"
  6437. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6438. size="2.0MB" >
  6439. </productMenu>
  6440. <productMenu id="videoGuide"
  6441. type="1"
  6442. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6443. size="3.41MB" >
  6444. </productMenu>
  6445. <productMenu id="connectGuide"
  6446. type="1"
  6447. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6448. size="1.12MB" >
  6449. </productMenu>
  6450. <productMenu id="volume"
  6451. type="12" >
  6452. </productMenu>
  6453. <productMenu id="volume+"
  6454. type="2"
  6455. url="0x2000" >
  6456. </productMenu>
  6457. <productMenu id="battery"
  6458. type="1" >
  6459. </productMenu>
  6460. <productID id="6800"
  6461. />
  6462. <productGroupable type="0"
  6463. />
  6464. </product>
  6465. <product id="SPIDER_ST1"
  6466. name="SPIDER ST1"
  6467. series="SPIDER"
  6468. latestVersion="1.2.2"
  6469. show = "-1" >
  6470. <productMenu id="protocol"
  6471. type="2" >
  6472. </productMenu>
  6473. <productMenu id="alexa"
  6474. type="0" >
  6475. </productMenu>
  6476. <productMenu id="ota"
  6477. type="0" >
  6478. </productMenu>
  6479. <productMenu id="wa"
  6480. type="0" >
  6481. </productMenu>
  6482. <productMenu id="meshIntercom"
  6483. type="20" >
  6484. </productMenu>
  6485. <productMenu id="phone"
  6486. type="1" >
  6487. </productMenu>
  6488. <productMenu id="music"
  6489. type="1" >
  6490. </productMenu>
  6491. <productMenu id="deviceSetting"
  6492. type="1"
  6493. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6494. </productMenu>
  6495. <productMenu id="quickGuide"
  6496. type="0"
  6497. url=""
  6498. size="1.12MB" >
  6499. </productMenu>
  6500. <productMenu id="userGuide"
  6501. type="1"
  6502. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6503. size="2.0MB" >
  6504. </productMenu>
  6505. <productMenu id="videoGuide"
  6506. type="1"
  6507. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6508. size="3.41MB" >
  6509. </productMenu>
  6510. <productMenu id="volume"
  6511. type="13" >
  6512. <productMenuType version="1.1.6"
  6513. type="14"/>
  6514. </productMenu>
  6515. <productMenu id="battery"
  6516. type="1" >
  6517. </productMenu>
  6518. <productID id="6510"
  6519. />
  6520. <productGroupable type="0"
  6521. />
  6522. </product>
  6523. <product id="SPIDER_RT1"
  6524. name="SPIDER RT1"
  6525. series="SPIDER"
  6526. latestVersion="2.5.3"
  6527. latestVersionVoicePrompt="1.6"
  6528. show = "1" >
  6529. <productMenu id="protocol"
  6530. type="2" >
  6531. </productMenu>
  6532. <productMenu id="alexa"
  6533. type="0" >
  6534. </productMenu>
  6535. <productMenu id="ota"
  6536. type="2" >
  6537. <productMenuType version="2.1.9"
  6538. type="0"
  6539. />
  6540. <otaPackages>
  6541. <package
  6542. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6543. size="2945812"
  6544. />
  6545. </otaPackages>
  6546. </productMenu>
  6547. <productMenu id="wa"
  6548. type="0" >
  6549. </productMenu>
  6550. <productMenu id="meshIntercom"
  6551. type="30" >
  6552. <productMenuType version="2.1.1"
  6553. type="20"
  6554. />
  6555. </productMenu>
  6556. <productMenu id="meshIntercom+"
  6557. type="3"
  6558. url="2" >
  6559. <productMenuType version="2.2.9"
  6560. type="2"
  6561. />
  6562. <productMenuURL version="2.1.1"
  6563. url="0"
  6564. />
  6565. </productMenu>
  6566. <productMenu id="waveIntercom"
  6567. type="1" >
  6568. <productMenuType version="2.3.9"
  6569. type="0"
  6570. />
  6571. </productMenu>
  6572. <productMenu id="phone"
  6573. type="1" >
  6574. </productMenu>
  6575. <productMenu id="music"
  6576. type="1" >
  6577. </productMenu>
  6578. <productMenu id="musicSharing"
  6579. type="0" >
  6580. </productMenu>
  6581. <productMenu id="deviceSetting"
  6582. type="1"
  6583. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6584. <productMenuURL version="2.4.9"
  6585. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6586. />
  6587. <productMenuURL version="2.2.2"
  6588. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6589. />
  6590. <productMenuURL version="2.1.1"
  6591. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6592. />
  6593. </productMenu>
  6594. <productMenu id="quickGuide"
  6595. type="0"
  6596. url=""
  6597. size="1.12MB" >
  6598. </productMenu>
  6599. <productMenu id="userGuide"
  6600. type="1"
  6601. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6602. size="2.0MB" >
  6603. </productMenu>
  6604. <productMenu id="videoGuide"
  6605. type="1"
  6606. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6607. size="3.41MB" >
  6608. </productMenu>
  6609. <productMenu id="connectGuide"
  6610. type="1"
  6611. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6612. size="1.12MB" >
  6613. </productMenu>
  6614. <productMenu id="volume"
  6615. type="12" >
  6616. </productMenu>
  6617. <productMenu id="volume+"
  6618. type="2"
  6619. url="0x2000" >
  6620. </productMenu>
  6621. <productMenu id="battery"
  6622. type="1" >
  6623. </productMenu>
  6624. <productID id="6810"
  6625. />
  6626. <productGroupable type="0"
  6627. />
  6628. </product>
  6629. <product id="SPIDER_RT1"
  6630. name="SPIDER RT1"
  6631. series="SPIDER"
  6632. latestVersion="1.2.2"
  6633. show = "-1" >
  6634. <productMenu id="protocol"
  6635. type="2" >
  6636. </productMenu>
  6637. <productMenu id="alexa"
  6638. type="0" >
  6639. </productMenu>
  6640. <productMenu id="ota"
  6641. type="0" >
  6642. </productMenu>
  6643. <productMenu id="wa"
  6644. type="0" >
  6645. </productMenu>
  6646. <productMenu id="meshIntercom"
  6647. type="20" >
  6648. </productMenu>
  6649. <productMenu id="phone"
  6650. type="1" >
  6651. </productMenu>
  6652. <productMenu id="music"
  6653. type="1" >
  6654. </productMenu>
  6655. <productMenu id="deviceSetting"
  6656. type="1"
  6657. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6658. </productMenu>
  6659. <productMenu id="quickGuide"
  6660. type="0"
  6661. url=""
  6662. size="1.32MB" >
  6663. </productMenu>
  6664. <productMenu id="userGuide"
  6665. type="1"
  6666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6667. size="1.79MB" >
  6668. </productMenu>
  6669. <productMenu id="videoGuide"
  6670. type="1"
  6671. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6672. size="3.41MB" >
  6673. </productMenu>
  6674. <productMenu id="volume"
  6675. type="13" >
  6676. <productMenuType version="1.1.6"
  6677. type="14"/>
  6678. </productMenu>
  6679. <productMenu id="battery"
  6680. type="1" >
  6681. </productMenu>
  6682. <productID id="6500"
  6683. />
  6684. <productGroupable type="0"
  6685. />
  6686. </product>
  6687. <product id="30K"
  6688. name="30K"
  6689. series="30"
  6690. latestVersion="4.5.1"
  6691. show = "1" >
  6692. <productMenu id="protocol"
  6693. type="2" >
  6694. </productMenu>
  6695. <productMenu id="alexa"
  6696. type="0" >
  6697. </productMenu>
  6698. <productMenu id="wa"
  6699. type="1" >
  6700. </productMenu>
  6701. <productMenu id="sip"
  6702. type="1" >
  6703. </productMenu>
  6704. <productMenu id="meshIntercom"
  6705. type="30" >
  6706. <productMenuType version="4.0.4"
  6707. type="20"
  6708. />
  6709. </productMenu>
  6710. <productMenu id="meshIntercom+"
  6711. type="3"
  6712. url="2" >
  6713. <productMenuType version="4.3.9"
  6714. type="2"
  6715. />
  6716. <productMenuURL version="4.0.4"
  6717. url="0"
  6718. />
  6719. </productMenu>
  6720. <productMenu id="waveIntercom"
  6721. type="1" >
  6722. <productMenuType version="4.4.9"
  6723. type="0"
  6724. />
  6725. </productMenu>
  6726. <productMenu id="bluetoothIntercom"
  6727. type="1" >
  6728. </productMenu>
  6729. <productMenu id="phone"
  6730. type="1" >
  6731. </productMenu>
  6732. <productMenu id="music"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="fmradio"
  6736. type="1" >
  6737. </productMenu>
  6738. <productMenu id="deviceSetting"
  6739. type="1"
  6740. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6741. <productMenuURL version="4.3"
  6742. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6743. />
  6744. <productMenuURL version="4.2"
  6745. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6746. />
  6747. <productMenuURL version="4.0.4"
  6748. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6749. />
  6750. </productMenu>
  6751. <productMenu id="quickGuide"
  6752. type="0"
  6753. url=""
  6754. size="934KB" >
  6755. </productMenu>
  6756. <productMenu id="userGuide"
  6757. type="1"
  6758. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6759. size="1.14MB" >
  6760. </productMenu>
  6761. <productMenu id="connectGuide"
  6762. type="1"
  6763. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6764. size="1.12MB" >
  6765. </productMenu>
  6766. <productMenu id="volume"
  6767. type="11" >
  6768. </productMenu>
  6769. <productMenu id="battery"
  6770. type="1" >
  6771. </productMenu>
  6772. <productID id="3211"
  6773. />
  6774. <productGroupable type="0"
  6775. />
  6776. </product>
  6777. <product id="30K"
  6778. name="30K"
  6779. series="30"
  6780. latestVersion="3.5"
  6781. show = "-1" >
  6782. <productMenu id="protocol"
  6783. type="1"
  6784. url="0">
  6785. </productMenu>
  6786. <productMenu id="wa"
  6787. type="7" >
  6788. </productMenu>
  6789. <productMenu id="sip"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="meshIntercom"
  6793. type="20" >
  6794. <productMenuType version="2.9.9"
  6795. type="10"
  6796. />
  6797. </productMenu>
  6798. <productMenu id="meshIntercom+"
  6799. type="3"
  6800. url="2" >
  6801. <productMenuType version="3.4.9"
  6802. type="2"
  6803. />
  6804. <productMenuType version="2.9.9"
  6805. type="1"
  6806. />
  6807. <productMenuURL version="3.3.1"
  6808. url="0"
  6809. />
  6810. </productMenu>
  6811. <productMenu id="bluetoothIntercom"
  6812. type="1" >
  6813. </productMenu>
  6814. <productMenu id="phone"
  6815. type="1" >
  6816. </productMenu>
  6817. <productMenu id="music"
  6818. type="1" >
  6819. </productMenu>
  6820. <productMenu id="fmradio"
  6821. type="1" >
  6822. </productMenu>
  6823. <productMenu id="deviceSetting"
  6824. type="1"
  6825. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6826. <productMenuURL version="3.4.9"
  6827. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6828. />
  6829. <productMenuURL version="3.3.1"
  6830. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6831. />
  6832. <productMenuURL version="3.0.1"
  6833. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6834. />
  6835. <productMenuURL version="2.3.1"
  6836. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6837. />
  6838. <productMenuURL version="2.0"
  6839. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6840. />
  6841. <productMenuURL version="1.0.3"
  6842. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6843. />
  6844. </productMenu>
  6845. <productMenu id="quickGuide"
  6846. type="0"
  6847. url=""
  6848. size="1.06MB" >
  6849. </productMenu>
  6850. <productMenu id="userGuide"
  6851. type="1"
  6852. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6853. size="3.15MB" >
  6854. </productMenu>
  6855. <productMenu id="volume"
  6856. type="1" >
  6857. </productMenu>
  6858. <productID id="3110"
  6859. />
  6860. <productGroupable type="0"
  6861. />
  6862. </product>
  6863. <product id="FURY"
  6864. name="FURY"
  6865. series="Helmet"
  6866. latestVersion="1.0"
  6867. show = "-1" >
  6868. <productMenu id="protocol"
  6869. type="2" >
  6870. </productMenu>
  6871. <productMenu id="alexa"
  6872. type="0" >
  6873. </productMenu>
  6874. <productMenu id="ota"
  6875. type="0" >
  6876. </productMenu>
  6877. <productMenu id="wa"
  6878. type="0" >
  6879. </productMenu>
  6880. <productMenu id="meshIntercom"
  6881. type="20" >
  6882. </productMenu>
  6883. <productMenu id="phone"
  6884. type="1" >
  6885. </productMenu>
  6886. <productMenu id="music"
  6887. type="1" >
  6888. </productMenu>
  6889. <productMenu id="fmradio"
  6890. type="1" >
  6891. </productMenu>
  6892. <productMenu id="deviceSetting"
  6893. type="1"
  6894. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6895. </productMenu>
  6896. <productMenu id="quickGuide"
  6897. type="1"
  6898. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6899. size="1.12MB" >
  6900. </productMenu>
  6901. <productMenu id="userGuide"
  6902. type="1"
  6903. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6904. size="2.0MB" >
  6905. </productMenu>
  6906. <productMenu id="volume"
  6907. type="13" >
  6908. </productMenu>
  6909. <productMenu id="battery"
  6910. type="1" >
  6911. </productMenu>
  6912. <productID id="5552"
  6913. />
  6914. <productGroupable type="0"
  6915. />
  6916. </product>
  6917. <product id="MomentumM"
  6918. name="Momentum EVO"
  6919. series="Helmet"
  6920. latestVersion="2.1.2"
  6921. show = "1" >
  6922. <productMenu id="protocol"
  6923. type="1"
  6924. url="0">
  6925. </productMenu>
  6926. <productMenu id="wa"
  6927. type="3" >
  6928. </productMenu>
  6929. <productMenu id="sip"
  6930. type="1" >
  6931. </productMenu>
  6932. <productMenu id="meshIntercom"
  6933. type="20" >
  6934. <productMenuType version="1.9.9"
  6935. type="10"
  6936. />
  6937. </productMenu>
  6938. <productMenu id="bluetoothIntercom"
  6939. type="1" >
  6940. </productMenu>
  6941. <productMenu id="phone"
  6942. type="1" >
  6943. </productMenu>
  6944. <productMenu id="music"
  6945. type="1" >
  6946. </productMenu>
  6947. <productMenu id="fmradio"
  6948. type="1" >
  6949. </productMenu>
  6950. <productMenu id="deviceSetting"
  6951. type="1"
  6952. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6953. <productMenuURL version="1.0.1"
  6954. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6955. />
  6956. </productMenu>
  6957. <productMenu id="quickGuide"
  6958. type="1"
  6959. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6960. size="1.06MB" >
  6961. </productMenu>
  6962. <productMenu id="userGuide"
  6963. type="1"
  6964. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6965. size="3.15MB" >
  6966. </productMenu>
  6967. <productMenu id="connectGuide"
  6968. type="1"
  6969. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6970. size="1.12MB" >
  6971. </productMenu>
  6972. <productMenu id="volume"
  6973. type="2" >
  6974. </productMenu>
  6975. <productID id="3116"
  6976. />
  6977. <productGroupable type="0"
  6978. />
  6979. </product>
  6980. <product id="Momentum"
  6981. name="Momentum"
  6982. series="Helmet"
  6983. latestVersion="1.0.9"
  6984. show = "1" >
  6985. <productMenu id="protocol"
  6986. type="0">
  6987. </productMenu>
  6988. <productMenu id="sip"
  6989. type="1" >
  6990. </productMenu>
  6991. <productMenu id="bluetoothIntercom"
  6992. type="1" >
  6993. </productMenu>
  6994. <productMenu id="intercomSetting"
  6995. type="1" >
  6996. </productMenu>
  6997. <productMenu id="phone"
  6998. type="2" >
  6999. </productMenu>
  7000. <productMenu id="fmradio"
  7001. type="3" >
  7002. </productMenu>
  7003. <productMenu id="deviceSetting"
  7004. type="1"
  7005. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7006. </productMenu>
  7007. <productMenu id="quickGuide"
  7008. type="1"
  7009. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  7010. size="796KB" >
  7011. </productMenu>
  7012. <productMenu id="userGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  7015. size="1.90MB" >
  7016. </productMenu>
  7017. <productMenu id="connectGuide"
  7018. type="1"
  7019. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7020. size="1.12MB" >
  7021. </productMenu>
  7022. <productID id="4310"
  7023. />
  7024. <productGroupable type="1"
  7025. />
  7026. </product>
  7027. <product id="Momentum_Pro"
  7028. name="Momentum Pro"
  7029. series="Helmet"
  7030. latestVersion="1.0.6"
  7031. show = "1" >
  7032. <productMenu id="protocol"
  7033. type="0">
  7034. </productMenu>
  7035. <productMenu id="sip"
  7036. type="1" >
  7037. </productMenu>
  7038. <productMenu id="bluetoothIntercom"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="intercomSetting"
  7042. type="1" >
  7043. </productMenu>
  7044. <productMenu id="phone"
  7045. type="2" >
  7046. </productMenu>
  7047. <productMenu id="fmradio"
  7048. type="3" >
  7049. </productMenu>
  7050. <productMenu id="deviceSetting"
  7051. type="1"
  7052. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7053. </productMenu>
  7054. <productMenu id="quickGuide"
  7055. type="1"
  7056. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  7057. size="796KB" >
  7058. </productMenu>
  7059. <productMenu id="userGuide"
  7060. type="1"
  7061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  7062. size="1.90MB" >
  7063. </productMenu>
  7064. <productMenu id="connectGuide"
  7065. type="1"
  7066. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7067. size="1.12MB" >
  7068. </productMenu>
  7069. <productID id="4330"
  7070. />
  7071. <productGroupable type="1"
  7072. />
  7073. </product>
  7074. <product id="Momentum_INC"
  7075. name="Momentum INC"
  7076. series="Helmet"
  7077. latestVersion="1.0.7"
  7078. show = "1" >
  7079. <productMenu id="protocol"
  7080. type="0">
  7081. </productMenu>
  7082. <productMenu id="sip"
  7083. type="1" >
  7084. </productMenu>
  7085. <productMenu id="bluetoothIntercom"
  7086. type="1" >
  7087. </productMenu>
  7088. <productMenu id="intercomSetting"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="phone"
  7092. type="2" >
  7093. </productMenu>
  7094. <productMenu id="fmradio"
  7095. type="3" >
  7096. </productMenu>
  7097. <productMenu id="deviceSetting"
  7098. type="1"
  7099. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7100. </productMenu>
  7101. <productMenu id="quickGuide"
  7102. type="1"
  7103. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  7104. size="794KB" >
  7105. </productMenu>
  7106. <productMenu id="userGuide"
  7107. type="1"
  7108. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  7109. size="1.53MB" >
  7110. </productMenu>
  7111. <productMenu id="connectGuide"
  7112. type="1"
  7113. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7114. size="1.12MB" >
  7115. </productMenu>
  7116. <productID id="4410"
  7117. />
  7118. <productGroupable type="1"
  7119. />
  7120. </product>
  7121. <product id="Momentum_INCP"
  7122. name="Momentum INC Pro"
  7123. series="Helmet"
  7124. latestVersion="1.0.4"
  7125. show = "1" >
  7126. <productMenu id="protocol"
  7127. type="0">
  7128. </productMenu>
  7129. <productMenu id="sip"
  7130. type="1" >
  7131. </productMenu>
  7132. <productMenu id="bluetoothIntercom"
  7133. type="1" >
  7134. </productMenu>
  7135. <productMenu id="intercomSetting"
  7136. type="1" >
  7137. </productMenu>
  7138. <productMenu id="phone"
  7139. type="2" >
  7140. </productMenu>
  7141. <productMenu id="fmradio"
  7142. type="3" >
  7143. </productMenu>
  7144. <productMenu id="deviceSetting"
  7145. type="1"
  7146. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7147. </productMenu>
  7148. <productMenu id="quickGuide"
  7149. type="1"
  7150. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  7151. size="794KB" >
  7152. </productMenu>
  7153. <productMenu id="userGuide"
  7154. type="1"
  7155. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  7156. size="1.53MB" >
  7157. </productMenu>
  7158. <productMenu id="connectGuide"
  7159. type="1"
  7160. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7161. size="1.12MB" >
  7162. </productMenu>
  7163. <productID id="4430"
  7164. />
  7165. <productGroupable type="1"
  7166. />
  7167. </product>
  7168. <product id="Momentum_Lite"
  7169. name="Momentum Lite"
  7170. series="Helmet"
  7171. latestVersion="2.0.3"
  7172. show = "1" >
  7173. <productMenu id="protocol"
  7174. type="0">
  7175. </productMenu>
  7176. <productMenu id="sip"
  7177. type="1" >
  7178. </productMenu>
  7179. <productMenu id="bluetoothIntercom"
  7180. type="1" >
  7181. </productMenu>
  7182. <productMenu id="phone"
  7183. type="2" >
  7184. </productMenu>
  7185. <productMenu id="fmradio"
  7186. type="3" >
  7187. </productMenu>
  7188. <productMenu id="deviceSetting"
  7189. type="1"
  7190. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7191. <productMenuURL version="1.1"
  7192. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  7193. />
  7194. </productMenu>
  7195. <productMenu id="quickGuide"
  7196. type="1"
  7197. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  7198. size="790KB" >
  7199. </productMenu>
  7200. <productMenu id="userGuide"
  7201. type="1"
  7202. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  7203. size="1.42MB" >
  7204. </productMenu>
  7205. <productMenu id="connectGuide"
  7206. type="1"
  7207. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7208. size="1.12MB" >
  7209. </productMenu>
  7210. <productID id="5526"
  7211. />
  7212. <productGroupable type="0"
  7213. />
  7214. </product>
  7215. <product id="OUTRUSHM"
  7216. name="OUTRUSH M"
  7217. series="Helmet"
  7218. latestVersion="1.0"
  7219. show = "-1" >
  7220. <productMenu id="protocol"
  7221. type="2" >
  7222. </productMenu>
  7223. <productMenu id="alexa"
  7224. type="0" >
  7225. </productMenu>
  7226. <productMenu id="ota"
  7227. type="0" >
  7228. </productMenu>
  7229. <productMenu id="wa"
  7230. type="0" >
  7231. </productMenu>
  7232. <productMenu id="meshIntercom"
  7233. type="30" >
  7234. </productMenu>
  7235. <productMenu id="phone"
  7236. type="1" >
  7237. </productMenu>
  7238. <productMenu id="music"
  7239. type="1" >
  7240. </productMenu>
  7241. <productMenu id="fmradio"
  7242. type="1" >
  7243. </productMenu>
  7244. <productMenu id="deviceSetting"
  7245. type="1"
  7246. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  7247. </productMenu>
  7248. <productMenu id="quickGuide"
  7249. type="1"
  7250. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7251. size="1.12MB" >
  7252. </productMenu>
  7253. <productMenu id="userGuide"
  7254. type="1"
  7255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7256. size="2.0MB" >
  7257. </productMenu>
  7258. <productMenu id="volume"
  7259. type="13" >
  7260. </productMenu>
  7261. <productMenu id="battery"
  7262. type="1" >
  7263. </productMenu>
  7264. <productID id="5600"
  7265. />
  7266. <productGroupable type="0"
  7267. />
  7268. </product>
  7269. <product id="ProRideEVO"
  7270. name="ProRide EVO"
  7271. series="Helmet"
  7272. latestVersion="1.1.2"
  7273. show = "1" >
  7274. <productMenu id="protocol"
  7275. type="0">
  7276. </productMenu>
  7277. <productMenu id="sip"
  7278. type="1" >
  7279. </productMenu>
  7280. <productMenu id="bluetoothIntercom"
  7281. type="1" >
  7282. </productMenu>
  7283. <productMenu id="phone"
  7284. type="2" >
  7285. </productMenu>
  7286. <productMenu id="fmradio"
  7287. type="3" >
  7288. </productMenu>
  7289. <productMenu id="deviceSetting"
  7290. type="1"
  7291. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  7292. </productMenu>
  7293. <productMenu id="userGuide"
  7294. type="1"
  7295. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  7296. size="778KB" >
  7297. </productMenu>
  7298. <productMenu id="connectGuide"
  7299. type="1"
  7300. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7301. size="1.12MB" >
  7302. </productMenu>
  7303. <productID id="5426"
  7304. />
  7305. <productGroupable type="0"
  7306. />
  7307. </product>
  7308. <product id="OUTRUSHR"
  7309. name="OUTRUSH R"
  7310. series="Helmet"
  7311. latestVersion="2.1"
  7312. show = "1" >
  7313. <productMenu id="protocol"
  7314. type="3" >
  7315. </productMenu>
  7316. <productMenu id="sip"
  7317. type="1" >
  7318. </productMenu>
  7319. <productMenu id="bluetoothIntercom"
  7320. type="1" >
  7321. </productMenu>
  7322. <productMenu id="phone"
  7323. type="1" >
  7324. </productMenu>
  7325. <productMenu id="fmradio"
  7326. type="0" >
  7327. </productMenu>
  7328. <productMenu id="deviceSetting"
  7329. type="1"
  7330. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7331. </productMenu>
  7332. <productMenu id="userGuide"
  7333. type="1"
  7334. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  7335. size="1.14MB" >
  7336. </productMenu>
  7337. <productMenu id="connectGuide"
  7338. type="1"
  7339. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7340. size="1.12MB" >
  7341. </productMenu>
  7342. <productID id="5440"
  7343. />
  7344. <productGroupable type="0"
  7345. />
  7346. </product>
  7347. <product id="OUTRUSHR"
  7348. name="OUTRUSH R"
  7349. series="Helmet"
  7350. latestVersion="1.1.4"
  7351. show = "-1" >
  7352. <productMenu id="protocol"
  7353. type="0">
  7354. </productMenu>
  7355. <productMenu id="sip"
  7356. type="1" >
  7357. </productMenu>
  7358. <productMenu id="bluetoothIntercom"
  7359. type="1" >
  7360. </productMenu>
  7361. <productMenu id="phone"
  7362. type="2" >
  7363. </productMenu>
  7364. <productMenu id="fmradio"
  7365. type="3" >
  7366. </productMenu>
  7367. <productMenu id="deviceSetting"
  7368. type="1"
  7369. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7370. </productMenu>
  7371. <productMenu id="userGuide"
  7372. type="1"
  7373. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7374. size="660KB" >
  7375. </productMenu>
  7376. <productMenu id="connectGuide"
  7377. type="1"
  7378. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7379. size="1.12MB" >
  7380. </productMenu>
  7381. <productID id="5424"
  7382. />
  7383. <productGroupable type="0"
  7384. />
  7385. </product>
  7386. <product id="OUTSTARS"
  7387. name="OUTSTAR S"
  7388. series="Helmet"
  7389. latestVersion="2.0.1"
  7390. show = "-1" >
  7391. <productMenu id="protocol"
  7392. type="3" >
  7393. </productMenu>
  7394. <productMenu id="sip"
  7395. type="1" >
  7396. </productMenu>
  7397. <productMenu id="bluetoothIntercom"
  7398. type="1" >
  7399. </productMenu>
  7400. <productMenu id="phone"
  7401. type="1" >
  7402. </productMenu>
  7403. <productMenu id="fmradio"
  7404. type="0" >
  7405. </productMenu>
  7406. <productMenu id="deviceSetting"
  7407. type="1"
  7408. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7409. </productMenu>
  7410. <productMenu id="userGuide"
  7411. type="0"
  7412. url=""
  7413. size="1.14MB" >
  7414. </productMenu>
  7415. <productID id="5443"
  7416. />
  7417. <productGroupable type="0"
  7418. />
  7419. </product>
  7420. <product id="OUTSTARS"
  7421. name="OUTSTAR S"
  7422. series="Helmet"
  7423. latestVersion="1.1.4"
  7424. show = "1" >
  7425. <productMenu id="protocol"
  7426. type="0">
  7427. </productMenu>
  7428. <productMenu id="sip"
  7429. type="1" >
  7430. </productMenu>
  7431. <productMenu id="bluetoothIntercom"
  7432. type="1" >
  7433. </productMenu>
  7434. <productMenu id="phone"
  7435. type="2" >
  7436. </productMenu>
  7437. <productMenu id="fmradio"
  7438. type="3" >
  7439. </productMenu>
  7440. <productMenu id="deviceSetting"
  7441. type="1"
  7442. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7443. </productMenu>
  7444. <productMenu id="quickGuide"
  7445. type="1"
  7446. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7447. size="643KB" >
  7448. </productMenu>
  7449. <productMenu id="userGuide"
  7450. type="1"
  7451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7452. size="1.15MB" >
  7453. </productMenu>
  7454. <productMenu id="connectGuide"
  7455. type="1"
  7456. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7457. size="1.12MB" >
  7458. </productMenu>
  7459. <productID id="5428"
  7460. />
  7461. <productGroupable type="0"
  7462. />
  7463. </product>
  7464. <product id="OUTRIDE"
  7465. name="OUTRIDE"
  7466. series="Helmet"
  7467. latestVersion="1.0.1"
  7468. show = "1" >
  7469. <productMenu id="protocol"
  7470. type="0">
  7471. </productMenu>
  7472. <productMenu id="sip"
  7473. type="1" >
  7474. </productMenu>
  7475. <productMenu id="bluetoothIntercom"
  7476. type="1" >
  7477. </productMenu>
  7478. <productMenu id="phone"
  7479. type="2" >
  7480. </productMenu>
  7481. <productMenu id="fmradio"
  7482. type="3" >
  7483. </productMenu>
  7484. <productMenu id="deviceSetting"
  7485. type="1"
  7486. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7487. </productMenu>
  7488. <productMenu id="quickGuide"
  7489. type="1"
  7490. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7491. size="643KB" >
  7492. </productMenu>
  7493. <productMenu id="userGuide"
  7494. type="1"
  7495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7496. size="660KB" >
  7497. </productMenu>
  7498. <productMenu id="connectGuide"
  7499. type="1"
  7500. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7501. size="1.12MB" >
  7502. </productMenu>
  7503. <productID id="5432"
  7504. />
  7505. <productGroupable type="0"
  7506. />
  7507. </product>
  7508. <product id="OUTFORCE"
  7509. name="OUTFORCE"
  7510. series="Helmet"
  7511. latestVersion="1.0.1"
  7512. show = "1" >
  7513. <productMenu id="protocol"
  7514. type="0">
  7515. </productMenu>
  7516. <productMenu id="sip"
  7517. type="1" >
  7518. </productMenu>
  7519. <productMenu id="bluetoothIntercom"
  7520. type="1" >
  7521. </productMenu>
  7522. <productMenu id="phone"
  7523. type="2" >
  7524. </productMenu>
  7525. <productMenu id="fmradio"
  7526. type="3" >
  7527. </productMenu>
  7528. <productMenu id="deviceSetting"
  7529. type="1"
  7530. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7531. </productMenu>
  7532. <productMenu id="quickGuide"
  7533. type="1"
  7534. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7535. size="643KB" >
  7536. </productMenu>
  7537. <productMenu id="userGuide"
  7538. type="1"
  7539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7540. size="660KB" >
  7541. </productMenu>
  7542. <productMenu id="connectGuide"
  7543. type="1"
  7544. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7545. size="1.12MB" >
  7546. </productMenu>
  7547. <productID id="5430"
  7548. />
  7549. <productGroupable type="0"
  7550. />
  7551. </product>
  7552. <product id="Rumba"
  7553. name="Rumba"
  7554. series="30"
  7555. latestVersion="2.0"
  7556. show = "-1" >
  7557. <productMenu id="protocol"
  7558. type="3" >
  7559. </productMenu>
  7560. <productMenu id="sip"
  7561. type="1" >
  7562. </productMenu>
  7563. <productMenu id="bluetoothIntercom"
  7564. type="1" >
  7565. </productMenu>
  7566. <productMenu id="deviceSetting"
  7567. type="1"
  7568. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7569. </productMenu>
  7570. <productMenu id="quickGuide"
  7571. type="1"
  7572. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7573. size="344KB" >
  7574. </productMenu>
  7575. <productMenu id="userGuide"
  7576. type="1"
  7577. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7578. size="1.14MB" >
  7579. </productMenu>
  7580. <productID id="6322"
  7581. />
  7582. <productGroupable type="0"
  7583. />
  7584. </product>
  7585. <product id="Savage"
  7586. name="Savage"
  7587. series="Helmet"
  7588. latestVersion="1.2.2"
  7589. show = "1" >
  7590. <productMenu id="protocol"
  7591. type="0">
  7592. </productMenu>
  7593. <productMenu id="sip"
  7594. type="1" >
  7595. </productMenu>
  7596. <productMenu id="bluetoothIntercom"
  7597. type="1" >
  7598. </productMenu>
  7599. <productMenu id="phone"
  7600. type="2" >
  7601. </productMenu>
  7602. <productMenu id="fmradio"
  7603. type="3" >
  7604. </productMenu>
  7605. <productMenu id="deviceSetting"
  7606. type="1"
  7607. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7608. <productMenuURL version="1.9"
  7609. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7610. />
  7611. <productMenuURL version="1.1"
  7612. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7613. />
  7614. </productMenu>
  7615. <productMenu id="quickGuide"
  7616. type="1"
  7617. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7618. size="796KB" >
  7619. </productMenu>
  7620. <productMenu id="userGuide"
  7621. type="1"
  7622. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7623. size="910KB" >
  7624. </productMenu>
  7625. <productMenu id="connectGuide"
  7626. type="1"
  7627. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7628. size="1.12MB" >
  7629. </productMenu>
  7630. <productID id="5550"
  7631. />
  7632. <productGroupable type="0"
  7633. />
  7634. </product>
  7635. <product id="RECON"
  7636. name="RECON"
  7637. series="Helmet"
  7638. latestVersion="1.0"
  7639. latestVersionVoicePrompt="1.8"
  7640. show = "-1" >
  7641. <productMenu id="protocol"
  7642. type="2" >
  7643. </productMenu>
  7644. <productMenu id="ota"
  7645. type="2" >
  7646. <otaLanguages>
  7647. <otaLanguage
  7648. id="0"
  7649. name="English"
  7650. package="0"
  7651. />
  7652. <otaLanguage
  7653. id="0"
  7654. name="Français"
  7655. package="1"
  7656. />
  7657. <otaLanguage
  7658. id="0"
  7659. name="Español"
  7660. package="2"
  7661. />
  7662. <otaLanguage
  7663. id="0"
  7664. name="Italiano"
  7665. package="3"
  7666. />
  7667. <otaLanguage
  7668. id="0"
  7669. name="Deutsch"
  7670. package="4"
  7671. />
  7672. <otaLanguage
  7673. id="0"
  7674. name="Nederlands"
  7675. package="5"
  7676. />
  7677. <otaLanguage
  7678. id="0"
  7679. name="Русский"
  7680. package="6"
  7681. />
  7682. <otaLanguage
  7683. id="0"
  7684. name="简体中文"
  7685. package="7"
  7686. />
  7687. <otaLanguage
  7688. id="0"
  7689. name="한국어"
  7690. package="8"
  7691. />
  7692. <otaLanguage
  7693. id="0"
  7694. name="日本語"
  7695. package="9"
  7696. />
  7697. <otaLanguage
  7698. id="0"
  7699. name="Suomi"
  7700. package="10"
  7701. />
  7702. <otaLanguage
  7703. id="0"
  7704. name="Polski"
  7705. package="11"
  7706. />
  7707. </otaLanguages>
  7708. <otaPackages>
  7709. <package
  7710. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7711. size="5183988"
  7712. />
  7713. <package
  7714. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7715. size="5183988"
  7716. />
  7717. <package
  7718. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7719. size="5183988"
  7720. />
  7721. <package
  7722. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7723. size="5183988"
  7724. />
  7725. <package
  7726. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7727. size="5183988"
  7728. />
  7729. <package
  7730. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7731. size="5183988"
  7732. />
  7733. <package
  7734. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7735. size="5183988"
  7736. />
  7737. <package
  7738. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7739. size="5183988"
  7740. />
  7741. <package
  7742. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7743. size="5183988"
  7744. />
  7745. <package
  7746. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7747. size="5183988"
  7748. />
  7749. <package
  7750. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7751. size="5183988"
  7752. />
  7753. <package
  7754. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7755. size="5183988"
  7756. />
  7757. </otaPackages>
  7758. </productMenu>
  7759. <productMenu id="wa"
  7760. type="0" >
  7761. </productMenu>
  7762. <productMenu id="led"
  7763. type="5" >
  7764. </productMenu>
  7765. <productMenu id="led+"
  7766. type="2"
  7767. url="1" >
  7768. </productMenu>
  7769. <productMenu id="meshIntercom+"
  7770. type="3"
  7771. url="2" >
  7772. </productMenu>
  7773. <productMenu id="waveIntercom"
  7774. type="1" >
  7775. </productMenu>
  7776. <productMenu id="fmradio"
  7777. type="0" >
  7778. </productMenu>
  7779. <productMenu id="phone"
  7780. type="1" >
  7781. </productMenu>
  7782. <productMenu id="music"
  7783. type="1" >
  7784. </productMenu>
  7785. <productMenu id="musicSharing"
  7786. type="0" >
  7787. </productMenu>
  7788. <productMenu id="deviceSetting"
  7789. type="1"
  7790. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7791. </productMenu>
  7792. <productMenu id="quickGuide"
  7793. type="0"
  7794. url=""
  7795. size="1.12MB" >
  7796. </productMenu>
  7797. <productMenu id="userGuide"
  7798. type="1"
  7799. url=""
  7800. size="2.28MB" >
  7801. </productMenu>
  7802. <productMenu id="videoGuide"
  7803. type="0"
  7804. url=""
  7805. size="3.41MB" >
  7806. </productMenu>
  7807. <productMenu id="volume"
  7808. type="16" >
  7809. </productMenu>
  7810. <productMenu id="volume+"
  7811. type="2"
  7812. url="0x6004" >
  7813. </productMenu>
  7814. <productMenu id="battery"
  7815. type="1" >
  7816. </productMenu>
  7817. <productID id="6A1D"
  7818. />
  7819. <productGroupable type="0"
  7820. />
  7821. </product>
  7822. <product id="SPECTER"
  7823. name="SPECTER"
  7824. series="Helmet"
  7825. latestVersion="1.0.11"
  7826. latestVersionVoicePrompt="1.8"
  7827. show = "1" >
  7828. <productMenu id="protocol"
  7829. type="2" >
  7830. </productMenu>
  7831. <productMenu id="ota"
  7832. type="2" >
  7833. <otaLanguages>
  7834. <otaLanguage
  7835. id="0"
  7836. name="English"
  7837. package="0"
  7838. />
  7839. <otaLanguage
  7840. id="0"
  7841. name="Français"
  7842. package="1"
  7843. />
  7844. <otaLanguage
  7845. id="0"
  7846. name="Español"
  7847. package="2"
  7848. />
  7849. <otaLanguage
  7850. id="0"
  7851. name="Italiano"
  7852. package="3"
  7853. />
  7854. <otaLanguage
  7855. id="0"
  7856. name="Deutsch"
  7857. package="4"
  7858. />
  7859. <otaLanguage
  7860. id="0"
  7861. name="Nederlands"
  7862. package="5"
  7863. />
  7864. <otaLanguage
  7865. id="0"
  7866. name="Русский"
  7867. package="6"
  7868. />
  7869. <otaLanguage
  7870. id="0"
  7871. name="简体中文"
  7872. package="7"
  7873. />
  7874. <otaLanguage
  7875. id="0"
  7876. name="한국어"
  7877. package="8"
  7878. />
  7879. <otaLanguage
  7880. id="0"
  7881. name="日本語"
  7882. package="9"
  7883. />
  7884. <otaLanguage
  7885. id="0"
  7886. name="Suomi"
  7887. package="10"
  7888. />
  7889. <otaLanguage
  7890. id="0"
  7891. name="Polski"
  7892. package="11"
  7893. />
  7894. </otaLanguages>
  7895. <otaPackages>
  7896. <package
  7897. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0.img"
  7898. size="5183988"
  7899. />
  7900. <package
  7901. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fr-FR.img"
  7902. size="5183988"
  7903. />
  7904. <package
  7905. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-es-ES.img"
  7906. size="5183988"
  7907. />
  7908. <package
  7909. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-it-IT.img"
  7910. size="5183988"
  7911. />
  7912. <package
  7913. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-de-DE.img"
  7914. size="5183988"
  7915. />
  7916. <package
  7917. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-nl-NL.img"
  7918. size="5183988"
  7919. />
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ru-RU.img"
  7922. size="5183988"
  7923. />
  7924. <package
  7925. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-cmn-CN.img"
  7926. size="5183988"
  7927. />
  7928. <package
  7929. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ko-KR.img"
  7930. size="5183988"
  7931. />
  7932. <package
  7933. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ja-JP.img"
  7934. size="5183988"
  7935. />
  7936. <package
  7937. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fi-FI.img"
  7938. size="5183988"
  7939. />
  7940. <package
  7941. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-pl-PL.img"
  7942. size="5183988"
  7943. />
  7944. </otaPackages>
  7945. </productMenu>
  7946. <productMenu id="wa"
  7947. type="0" >
  7948. </productMenu>
  7949. <productMenu id="led"
  7950. type="5" >
  7951. </productMenu>
  7952. <productMenu id="led+"
  7953. type="2"
  7954. url="1" >
  7955. </productMenu>
  7956. <productMenu id="meshIntercom+"
  7957. type="3"
  7958. url="2" >
  7959. </productMenu>
  7960. <productMenu id="waveIntercom"
  7961. type="1" >
  7962. </productMenu>
  7963. <productMenu id="fmradio"
  7964. type="0" >
  7965. </productMenu>
  7966. <productMenu id="phone"
  7967. type="1" >
  7968. </productMenu>
  7969. <productMenu id="music"
  7970. type="1" >
  7971. </productMenu>
  7972. <productMenu id="musicSharing"
  7973. type="0" >
  7974. </productMenu>
  7975. <productMenu id="deviceSetting"
  7976. type="1"
  7977. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7978. <productMenuURL version="1.0.10"
  7979. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7980. />
  7981. <productMenuURL version="1.0.4"
  7982. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7983. />
  7984. </productMenu>
  7985. <productMenu id="quickGuide"
  7986. type="0"
  7987. url=""
  7988. size="1.12MB" >
  7989. </productMenu>
  7990. <productMenu id="userGuide"
  7991. type="1"
  7992. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7993. size="2.0MB" >
  7994. </productMenu>
  7995. <productMenu id="videoGuide"
  7996. type="0"
  7997. url=""
  7998. size="3.41MB" >
  7999. </productMenu>
  8000. <productMenu id="connectGuide"
  8001. type="1"
  8002. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8003. size="1.12MB" >
  8004. </productMenu>
  8005. <productMenu id="volume"
  8006. type="16" >
  8007. </productMenu>
  8008. <productMenu id="volume+"
  8009. type="2"
  8010. url="0x6004" >
  8011. </productMenu>
  8012. <productMenu id="battery"
  8013. type="1" >
  8014. </productMenu>
  8015. <productID id="6A11"
  8016. />
  8017. <productGroupable type="0"
  8018. />
  8019. </product>
  8020. <product id="SPECTER"
  8021. name="SPECTER"
  8022. series="Helmet"
  8023. latestVersion="1.0.11"
  8024. latestVersionVoicePrompt="1.8"
  8025. show = "-1" >
  8026. <productMenu id="protocol"
  8027. type="2" >
  8028. </productMenu>
  8029. <productMenu id="ota"
  8030. type="2" >
  8031. <otaLanguages>
  8032. <otaLanguage
  8033. id="0"
  8034. name="English"
  8035. package="0"
  8036. />
  8037. <otaLanguage
  8038. id="0"
  8039. name="Français"
  8040. package="1"
  8041. />
  8042. <otaLanguage
  8043. id="0"
  8044. name="Español"
  8045. package="2"
  8046. />
  8047. <otaLanguage
  8048. id="0"
  8049. name="Italiano"
  8050. package="3"
  8051. />
  8052. <otaLanguage
  8053. id="0"
  8054. name="Deutsch"
  8055. package="4"
  8056. />
  8057. <otaLanguage
  8058. id="0"
  8059. name="Nederlands"
  8060. package="5"
  8061. />
  8062. <otaLanguage
  8063. id="0"
  8064. name="Русский"
  8065. package="6"
  8066. />
  8067. <otaLanguage
  8068. id="0"
  8069. name="简体中文"
  8070. package="7"
  8071. />
  8072. <otaLanguage
  8073. id="0"
  8074. name="한국어"
  8075. package="8"
  8076. />
  8077. <otaLanguage
  8078. id="0"
  8079. name="日本語"
  8080. package="9"
  8081. />
  8082. <otaLanguage
  8083. id="0"
  8084. name="Suomi"
  8085. package="10"
  8086. />
  8087. <otaLanguage
  8088. id="0"
  8089. name="Polski"
  8090. package="11"
  8091. />
  8092. </otaLanguages>
  8093. <otaPackages>
  8094. <package
  8095. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0.img"
  8096. size="5183988"
  8097. />
  8098. <package
  8099. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fr-FR.img"
  8100. size="5183988"
  8101. />
  8102. <package
  8103. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-es-ES.img"
  8104. size="5183988"
  8105. />
  8106. <package
  8107. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-it-IT.img"
  8108. size="5183988"
  8109. />
  8110. <package
  8111. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-de-DE.img"
  8112. size="5183988"
  8113. />
  8114. <package
  8115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-nl-NL.img"
  8116. size="5183988"
  8117. />
  8118. <package
  8119. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ru-RU.img"
  8120. size="5183988"
  8121. />
  8122. <package
  8123. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-cmn-CN.img"
  8124. size="5183988"
  8125. />
  8126. <package
  8127. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ko-KR.img"
  8128. size="5183988"
  8129. />
  8130. <package
  8131. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ja-JP.img"
  8132. size="5183988"
  8133. />
  8134. <package
  8135. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fi-FI.img"
  8136. size="5183988"
  8137. />
  8138. <package
  8139. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-pl-PL.img"
  8140. size="5183988"
  8141. />
  8142. </otaPackages>
  8143. </productMenu>
  8144. <productMenu id="wa"
  8145. type="0" >
  8146. </productMenu>
  8147. <productMenu id="led"
  8148. type="5" >
  8149. </productMenu>
  8150. <productMenu id="led+"
  8151. type="2"
  8152. url="1" >
  8153. </productMenu>
  8154. <productMenu id="meshIntercom+"
  8155. type="3"
  8156. url="2" >
  8157. </productMenu>
  8158. <productMenu id="waveIntercom"
  8159. type="1" >
  8160. </productMenu>
  8161. <productMenu id="fmradio"
  8162. type="0" >
  8163. </productMenu>
  8164. <productMenu id="phone"
  8165. type="1" >
  8166. </productMenu>
  8167. <productMenu id="music"
  8168. type="1" >
  8169. </productMenu>
  8170. <productMenu id="musicSharing"
  8171. type="0" >
  8172. </productMenu>
  8173. <productMenu id="deviceSetting"
  8174. type="1"
  8175. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  8176. <productMenuURL version="1.0.10"
  8177. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8178. />
  8179. <productMenuURL version="1.0.4"
  8180. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8181. />
  8182. <productMenuURL version="1.0"
  8183. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  8184. />
  8185. </productMenu>
  8186. <productMenu id="quickGuide"
  8187. type="0"
  8188. url=""
  8189. size="1.12MB" >
  8190. </productMenu>
  8191. <productMenu id="userGuide"
  8192. type="1"
  8193. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8194. size="2.0MB" >
  8195. </productMenu>
  8196. <productMenu id="videoGuide"
  8197. type="0"
  8198. url=""
  8199. size="3.41MB" >
  8200. </productMenu>
  8201. <productMenu id="connectGuide"
  8202. type="1"
  8203. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8204. size="1.12MB" >
  8205. </productMenu>
  8206. <productMenu id="volume"
  8207. type="16" >
  8208. </productMenu>
  8209. <productMenu id="volume+"
  8210. type="2"
  8211. url="0x6004" >
  8212. </productMenu>
  8213. <productMenu id="battery"
  8214. type="1" >
  8215. </productMenu>
  8216. <productID id="6A0A"
  8217. />
  8218. <productGroupable type="0"
  8219. />
  8220. </product>
  8221. <product id="OUTLANDER"
  8222. name="OUTLANDER"
  8223. series="Helmet"
  8224. latestVersion="1.0.11"
  8225. latestVersionVoicePrompt="1.8"
  8226. show = "1" >
  8227. <productMenu id="protocol"
  8228. type="2" >
  8229. </productMenu>
  8230. <productMenu id="ota"
  8231. type="2" >
  8232. <otaLanguages>
  8233. <otaLanguage
  8234. id="0"
  8235. name="English"
  8236. package="0"
  8237. />
  8238. <otaLanguage
  8239. id="0"
  8240. name="Français"
  8241. package="1"
  8242. />
  8243. <otaLanguage
  8244. id="0"
  8245. name="Español"
  8246. package="2"
  8247. />
  8248. <otaLanguage
  8249. id="0"
  8250. name="Italiano"
  8251. package="3"
  8252. />
  8253. <otaLanguage
  8254. id="0"
  8255. name="Deutsch"
  8256. package="4"
  8257. />
  8258. <otaLanguage
  8259. id="0"
  8260. name="Nederlands"
  8261. package="5"
  8262. />
  8263. <otaLanguage
  8264. id="0"
  8265. name="Русский"
  8266. package="6"
  8267. />
  8268. <otaLanguage
  8269. id="0"
  8270. name="简体中文"
  8271. package="7"
  8272. />
  8273. <otaLanguage
  8274. id="0"
  8275. name="한국어"
  8276. package="8"
  8277. />
  8278. <otaLanguage
  8279. id="0"
  8280. name="日本語"
  8281. package="9"
  8282. />
  8283. <otaLanguage
  8284. id="0"
  8285. name="Suomi"
  8286. package="10"
  8287. />
  8288. <otaLanguage
  8289. id="0"
  8290. name="Polski"
  8291. package="11"
  8292. />
  8293. </otaLanguages>
  8294. <otaPackages>
  8295. <package
  8296. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0.img"
  8297. size="5183988"
  8298. />
  8299. <package
  8300. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fr-FR.img"
  8301. size="5183988"
  8302. />
  8303. <package
  8304. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-es-ES.img"
  8305. size="5183988"
  8306. />
  8307. <package
  8308. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-it-IT.img"
  8309. size="5183988"
  8310. />
  8311. <package
  8312. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-de-DE.img"
  8313. size="5183988"
  8314. />
  8315. <package
  8316. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-nl-NL.img"
  8317. size="5183988"
  8318. />
  8319. <package
  8320. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ru-RU.img"
  8321. size="5183988"
  8322. />
  8323. <package
  8324. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-cmn-CN.img"
  8325. size="5183988"
  8326. />
  8327. <package
  8328. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ko-KR.img"
  8329. size="5183988"
  8330. />
  8331. <package
  8332. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ja-JP.img"
  8333. size="5183988"
  8334. />
  8335. <package
  8336. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fi-FI.img"
  8337. size="5183988"
  8338. />
  8339. <package
  8340. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-pl-PL.img"
  8341. size="5183988"
  8342. />
  8343. </otaPackages>
  8344. </productMenu>
  8345. <productMenu id="wa"
  8346. type="0" >
  8347. </productMenu>
  8348. <productMenu id="led"
  8349. type="5" >
  8350. </productMenu>
  8351. <productMenu id="led+"
  8352. type="2"
  8353. url="1" >
  8354. </productMenu>
  8355. <productMenu id="meshIntercom+"
  8356. type="3"
  8357. url="2" >
  8358. </productMenu>
  8359. <productMenu id="waveIntercom"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="fmradio"
  8363. type="0" >
  8364. </productMenu>
  8365. <productMenu id="phone"
  8366. type="1" >
  8367. </productMenu>
  8368. <productMenu id="music"
  8369. type="1" >
  8370. </productMenu>
  8371. <productMenu id="musicSharing"
  8372. type="0" >
  8373. </productMenu>
  8374. <productMenu id="deviceSetting"
  8375. type="1"
  8376. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  8377. <productMenuURL version="1.0.10"
  8378. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  8379. />
  8380. <productMenuURL version="1.0.4"
  8381. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  8382. />
  8383. </productMenu>
  8384. <productMenu id="quickGuide"
  8385. type="0"
  8386. url=""
  8387. size="1.12MB" >
  8388. </productMenu>
  8389. <productMenu id="userGuide"
  8390. type="1"
  8391. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  8392. size="2.0MB" >
  8393. </productMenu>
  8394. <productMenu id="connectGuide"
  8395. type="1"
  8396. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8397. size="1.12MB" >
  8398. </productMenu>
  8399. <productMenu id="videoGuide"
  8400. type="0"
  8401. url=""
  8402. size="3.41MB" >
  8403. </productMenu>
  8404. <productMenu id="volume"
  8405. type="16" >
  8406. </productMenu>
  8407. <productMenu id="volume+"
  8408. type="2"
  8409. url="0x6004" >
  8410. </productMenu>
  8411. <productMenu id="battery"
  8412. type="1" >
  8413. </productMenu>
  8414. <productID id="6A05"
  8415. />
  8416. <productGroupable type="0"
  8417. />
  8418. </product>
  8419. <product id="OUTRUSH2"
  8420. name="OUTRUSH 2"
  8421. series="Helmet"
  8422. latestVersion="1.0.3"
  8423. latestVersionVoicePrompt="1.6"
  8424. show = "1" >
  8425. <productMenu id="protocol"
  8426. type="2" >
  8427. </productMenu>
  8428. <productMenu id="alexa"
  8429. type="0" >
  8430. </productMenu>
  8431. <productMenu id="ota"
  8432. type="2" >
  8433. <otaPackages>
  8434. <package
  8435. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8436. size="2945812"
  8437. />
  8438. </otaPackages>
  8439. </productMenu>
  8440. <productMenu id="meshIntercom+"
  8441. type="3"
  8442. url="2" >
  8443. </productMenu>
  8444. <productMenu id="waveIntercom"
  8445. type="1" >
  8446. </productMenu>
  8447. <productMenu id="phone"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="music"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="musicSharing"
  8454. type="0" >
  8455. </productMenu>
  8456. <productMenu id="deviceSetting"
  8457. type="1"
  8458. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8459. <productMenuURL version="1.0"
  8460. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8461. />
  8462. </productMenu>
  8463. <productMenu id="quickGuide"
  8464. type="0"
  8465. url=""
  8466. size="1.12MB" >
  8467. </productMenu>
  8468. <productMenu id="userGuide"
  8469. type="1"
  8470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8471. size="2.0MB" >
  8472. </productMenu>
  8473. <productMenu id="connectGuide"
  8474. type="1"
  8475. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8476. size="1.12MB" >
  8477. </productMenu>
  8478. <productMenu id="volume"
  8479. type="12" >
  8480. </productMenu>
  8481. <productMenu id="battery"
  8482. type="1" >
  8483. </productMenu>
  8484. <productID id="684A"
  8485. />
  8486. <productGroupable type="0"
  8487. />
  8488. </product>
  8489. <product id="OUTSTAR2"
  8490. name="OUTSTAR 2"
  8491. series="Helmet"
  8492. latestVersion="1.0.2"
  8493. latestVersionVoicePrompt="1.6"
  8494. show = "1" >
  8495. <productMenu id="protocol"
  8496. type="2" >
  8497. </productMenu>
  8498. <productMenu id="alexa"
  8499. type="0" >
  8500. </productMenu>
  8501. <productMenu id="ota"
  8502. type="2" >
  8503. <otaPackages>
  8504. <package
  8505. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8506. size="2945812"
  8507. />
  8508. </otaPackages>
  8509. </productMenu>
  8510. <productMenu id="meshIntercom+"
  8511. type="3"
  8512. url="2" >
  8513. </productMenu>
  8514. <productMenu id="waveIntercom"
  8515. type="1" >
  8516. </productMenu>
  8517. <productMenu id="phone"
  8518. type="1" >
  8519. </productMenu>
  8520. <productMenu id="music"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="musicSharing"
  8524. type="0" >
  8525. </productMenu>
  8526. <productMenu id="deviceSetting"
  8527. type="1"
  8528. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8529. </productMenu>
  8530. <productMenu id="quickGuide"
  8531. type="0"
  8532. url=""
  8533. size="1.12MB" >
  8534. </productMenu>
  8535. <productMenu id="userGuide"
  8536. type="1"
  8537. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8538. size="2.0MB" >
  8539. </productMenu>
  8540. <productMenu id="connectGuide"
  8541. type="1"
  8542. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8543. size="1.12MB" >
  8544. </productMenu>
  8545. <productMenu id="volume"
  8546. type="12" >
  8547. </productMenu>
  8548. <productMenu id="battery"
  8549. type="1" >
  8550. </productMenu>
  8551. <productID id="684B"
  8552. />
  8553. <productGroupable type="0"
  8554. />
  8555. </product>
  8556. <product id="SURGE"
  8557. name="SURGE"
  8558. series="Helmet"
  8559. latestVersion="1.2"
  8560. latestVersionVoicePrompt="1.3"
  8561. show = "1" >
  8562. <productMenu id="protocol"
  8563. type="2" >
  8564. </productMenu>
  8565. <productMenu id="alexa"
  8566. type="0" >
  8567. </productMenu>
  8568. <productMenu id="ota"
  8569. type="2" >
  8570. <otaPackages>
  8571. <package
  8572. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8573. size="2945812"
  8574. />
  8575. </otaPackages>
  8576. </productMenu>
  8577. <productMenu id="meshIntercom"
  8578. type="30" >
  8579. </productMenu>
  8580. <productMenu id="meshIntercom+"
  8581. type="3"
  8582. url="2" >
  8583. <productMenuType version="1.0.1"
  8584. type="2"
  8585. />
  8586. </productMenu>
  8587. <productMenu id="waveIntercom"
  8588. type="1" >
  8589. <productMenuType version="1.0.9"
  8590. type="0"
  8591. />
  8592. </productMenu>
  8593. <productMenu id="phone"
  8594. type="1" >
  8595. </productMenu>
  8596. <productMenu id="music"
  8597. type="1" >
  8598. </productMenu>
  8599. <productMenu id="musicSharing"
  8600. type="0" >
  8601. </productMenu>
  8602. <productMenu id="deviceSetting"
  8603. type="1"
  8604. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  8605. <productMenuURL version="1.1.9"
  8606. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8607. />
  8608. <productMenuURL version="1.0.1"
  8609. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8610. />
  8611. </productMenu>
  8612. <productMenu id="quickGuide"
  8613. type="0"
  8614. url=""
  8615. size="1.12MB" >
  8616. </productMenu>
  8617. <productMenu id="userGuide"
  8618. type="1"
  8619. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8620. size="2.0MB" >
  8621. </productMenu>
  8622. <productMenu id="volume"
  8623. type="12" >
  8624. </productMenu>
  8625. <productMenu id="battery"
  8626. type="1" >
  8627. </productMenu>
  8628. <productID id="6840"
  8629. />
  8630. <productGroupable type="0"
  8631. />
  8632. </product>
  8633. <product id="Cavalry2"
  8634. name="Cavalry 2"
  8635. series="Helmet"
  8636. latestVersion="1.2"
  8637. latestVersionVoicePrompt="1.3"
  8638. show = "1" >
  8639. <productMenu id="protocol"
  8640. type="2" >
  8641. </productMenu>
  8642. <productMenu id="alexa"
  8643. type="0" >
  8644. </productMenu>
  8645. <productMenu id="ota"
  8646. type="2" >
  8647. <otaPackages>
  8648. <package
  8649. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8650. size="3144148"
  8651. />
  8652. </otaPackages>
  8653. </productMenu>
  8654. <productMenu id="wa"
  8655. type="0" >
  8656. </productMenu>
  8657. <productMenu id="meshIntercom"
  8658. type="30" >
  8659. </productMenu>
  8660. <productMenu id="meshIntercom+"
  8661. type="3"
  8662. url="2" >
  8663. <productMenuType version="1.0"
  8664. type="2"
  8665. />
  8666. </productMenu>
  8667. <productMenu id="waveIntercom"
  8668. type="1" >
  8669. <productMenuType version="1.0.9"
  8670. type="0"
  8671. />
  8672. </productMenu>
  8673. <productMenu id="phone"
  8674. type="1" >
  8675. </productMenu>
  8676. <productMenu id="music"
  8677. type="1" >
  8678. </productMenu>
  8679. <productMenu id="musicSharing"
  8680. type="0" >
  8681. </productMenu>
  8682. <productMenu id="deviceSetting"
  8683. type="1"
  8684. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_05.xml" >
  8685. <productMenuURL version="1.1.9"
  8686. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8687. />
  8688. <productMenuURL version="1.0"
  8689. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8690. />
  8691. </productMenu>
  8692. <productMenu id="quickGuide"
  8693. type="0"
  8694. url=""
  8695. size="1.12MB" >
  8696. </productMenu>
  8697. <productMenu id="userGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8700. size="2.0MB" >
  8701. </productMenu>
  8702. <productMenu id="connectGuide"
  8703. type="1"
  8704. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8705. size="1.12MB" >
  8706. </productMenu>
  8707. <productMenu id="volume"
  8708. type="12" >
  8709. </productMenu>
  8710. <productMenu id="battery"
  8711. type="1" >
  8712. </productMenu>
  8713. <productID id="6839"
  8714. />
  8715. <productGroupable type="0"
  8716. />
  8717. </product>
  8718. <product id="Cavalry"
  8719. name="Cavalry"
  8720. series="Helmet"
  8721. latestVersion="1.2.2"
  8722. show = "1" >
  8723. <productMenu id="protocol"
  8724. type="0">
  8725. </productMenu>
  8726. <productMenu id="sip"
  8727. type="1" >
  8728. </productMenu>
  8729. <productMenu id="bluetoothIntercom"
  8730. type="1" >
  8731. </productMenu>
  8732. <productMenu id="phone"
  8733. type="2" >
  8734. </productMenu>
  8735. <productMenu id="fmradio"
  8736. type="3" >
  8737. </productMenu>
  8738. <productMenu id="deviceSetting"
  8739. type="1"
  8740. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8741. <productMenuURL version="1.9"
  8742. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8743. />
  8744. <productMenuURL version="1.0.1"
  8745. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8746. />
  8747. </productMenu>
  8748. <productMenu id="quickGuide"
  8749. type="1"
  8750. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8751. size="795KB" >
  8752. </productMenu>
  8753. <productMenu id="userGuide"
  8754. type="1"
  8755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8756. size="1.87MB" >
  8757. </productMenu>
  8758. <productMenu id="connectGuide"
  8759. type="1"
  8760. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8761. size="1.12MB" >
  8762. </productMenu>
  8763. <productID id="5524"
  8764. />
  8765. <productGroupable type="0"
  8766. />
  8767. </product>
  8768. <product id="Cavalry_Lite"
  8769. name="Cavalry Lite"
  8770. series="Helmet"
  8771. latestVersion="1.0.2"
  8772. show = "1" >
  8773. <productMenu id="protocol"
  8774. type="0">
  8775. </productMenu>
  8776. <productMenu id="sip"
  8777. type="1" >
  8778. </productMenu>
  8779. <productMenu id="bluetoothIntercom"
  8780. type="1" >
  8781. </productMenu>
  8782. <productMenu id="phone"
  8783. type="2" >
  8784. </productMenu>
  8785. <productMenu id="fmradio"
  8786. type="3" >
  8787. </productMenu>
  8788. <productMenu id="deviceSetting"
  8789. type="1"
  8790. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8791. </productMenu>
  8792. <productMenu id="userGuide"
  8793. type="1"
  8794. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8795. size="1.74MB" >
  8796. </productMenu>
  8797. <productMenu id="connectGuide"
  8798. type="1"
  8799. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8800. size="1.12MB" >
  8801. </productMenu>
  8802. <productID id="5536"
  8803. />
  8804. <productGroupable type="0"
  8805. />
  8806. </product>
  8807. <product id="VORTEX"
  8808. name="VORTEX"
  8809. series="VORTEX"
  8810. latestVersion="1.0.2"
  8811. latestVersionVoicePrompt="1.0"
  8812. show = "1" >
  8813. <productMenu id="protocol"
  8814. type="2" >
  8815. </productMenu>
  8816. <productMenu id="warranty"
  8817. type="1" >
  8818. </productMenu>
  8819. <productMenu id="serialNumber"
  8820. type="1" >
  8821. </productMenu>
  8822. <productMenu id="ota"
  8823. type="2" >
  8824. <otaLanguages>
  8825. <otaLanguage
  8826. id="0"
  8827. name="English"
  8828. package="0"
  8829. />
  8830. <otaLanguage
  8831. id="0"
  8832. name="Français"
  8833. package="1"
  8834. />
  8835. <otaLanguage
  8836. id="0"
  8837. name="Español"
  8838. package="2"
  8839. />
  8840. <otaLanguage
  8841. id="0"
  8842. name="Italiano"
  8843. package="3"
  8844. />
  8845. <otaLanguage
  8846. id="0"
  8847. name="Deutsch"
  8848. package="4"
  8849. />
  8850. <otaLanguage
  8851. id="0"
  8852. name="Nederlands"
  8853. package="5"
  8854. />
  8855. <otaLanguage
  8856. id="0"
  8857. name="Русский"
  8858. package="6"
  8859. />
  8860. <otaLanguage
  8861. id="0"
  8862. name="简体中文"
  8863. package="7"
  8864. />
  8865. <otaLanguage
  8866. id="0"
  8867. name="한국어"
  8868. package="8"
  8869. />
  8870. <otaLanguage
  8871. id="0"
  8872. name="日本語"
  8873. package="9"
  8874. />
  8875. <otaLanguage
  8876. id="0"
  8877. name="Suomi"
  8878. package="10"
  8879. />
  8880. <otaLanguage
  8881. id="0"
  8882. name="Polski"
  8883. package="11"
  8884. />
  8885. </otaLanguages>
  8886. <otaPackages>
  8887. <package
  8888. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8889. size="5183988"
  8890. />
  8891. <package
  8892. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8893. size="5183988"
  8894. />
  8895. <package
  8896. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8897. size="5183988"
  8898. />
  8899. <package
  8900. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8901. size="5183988"
  8902. />
  8903. <package
  8904. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8905. size="5183988"
  8906. />
  8907. <package
  8908. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8909. size="5183988"
  8910. />
  8911. <package
  8912. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8913. size="5183988"
  8914. />
  8915. <package
  8916. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8917. size="5183988"
  8918. />
  8919. <package
  8920. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8921. size="5183988"
  8922. />
  8923. <package
  8924. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8925. size="5183988"
  8926. />
  8927. <package
  8928. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8929. size="5183988"
  8930. />
  8931. <package
  8932. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8933. size="5183988"
  8934. />
  8935. </otaPackages>
  8936. </productMenu>
  8937. <productMenu id="sip"
  8938. type="1" >
  8939. </productMenu>
  8940. <productMenu id="bluetoothIntercom"
  8941. type="1" >
  8942. </productMenu>
  8943. <productMenu id="phone"
  8944. type="1" >
  8945. </productMenu>
  8946. <productMenu id="music"
  8947. type="1" >
  8948. </productMenu>
  8949. <productMenu id="fmradio"
  8950. type="1"
  8951. url="1" >
  8952. </productMenu>
  8953. <productMenu id="deviceSetting"
  8954. type="1"
  8955. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8956. </productMenu>
  8957. <productMenu id="quickGuide"
  8958. type="0"
  8959. url=""
  8960. size="934KB" >
  8961. </productMenu>
  8962. <productMenu id="userGuide"
  8963. type="1"
  8964. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  8965. size="1.14MB" >
  8966. </productMenu>
  8967. <productMenu id="connectGuide"
  8968. type="1"
  8969. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  8970. size="1.12MB" >
  8971. </productMenu>
  8972. <productMenu id="volume"
  8973. type="15" >
  8974. </productMenu>
  8975. <productMenu id="volume+"
  8976. type="2"
  8977. url="0x0018" >
  8978. </productMenu>
  8979. <productMenu id="appearance"
  8980. type="1"
  8981. url="1|white,silver,black" >
  8982. </productMenu>
  8983. <productID id="3451"
  8984. />
  8985. <productGroupable type="0"
  8986. />
  8987. </product>
  8988. <product id="SF4"
  8989. name="SF4"
  8990. series="SF"
  8991. latestVersion="1.1.5"
  8992. show = "-1" >
  8993. <productMenu id="protocol"
  8994. type="1"
  8995. url="3">
  8996. </productMenu>
  8997. <productMenu id="sip"
  8998. type="1" >
  8999. </productMenu>
  9000. <productMenu id="bluetoothIntercom"
  9001. type="1" >
  9002. </productMenu>
  9003. <productMenu id="phone"
  9004. type="1" >
  9005. </productMenu>
  9006. <productMenu id="music"
  9007. type="1" >
  9008. </productMenu>
  9009. <productMenu id="fmradio"
  9010. type="1" >
  9011. </productMenu>
  9012. <productMenu id="deviceSetting"
  9013. type="1"
  9014. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9015. <productMenuURL version="1.0.1"
  9016. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9017. />
  9018. </productMenu>
  9019. <productMenu id="quickGuide"
  9020. type="1"
  9021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  9022. size="607KB" >
  9023. </productMenu>
  9024. <productMenu id="userGuide"
  9025. type="1"
  9026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9027. size="1.91MB" >
  9028. </productMenu>
  9029. <productMenu id="volume"
  9030. type="4" >
  9031. </productMenu>
  9032. <productID id="5414"
  9033. />
  9034. <productGroupable type="0"
  9035. />
  9036. </product>
  9037. <product id="SF4"
  9038. name="SF4"
  9039. series="SF"
  9040. latestVersion="3.4.4"
  9041. show = "1" >
  9042. <productMenu id="protocol"
  9043. type="2" >
  9044. </productMenu>
  9045. <productMenu id="sip"
  9046. type="1" >
  9047. </productMenu>
  9048. <productMenu id="bluetoothIntercom"
  9049. type="1" >
  9050. </productMenu>
  9051. <productMenu id="phone"
  9052. type="1" >
  9053. </productMenu>
  9054. <productMenu id="music"
  9055. type="1" >
  9056. </productMenu>
  9057. <productMenu id="fmradio"
  9058. type="1" >
  9059. </productMenu>
  9060. <productMenu id="deviceSetting"
  9061. type="1"
  9062. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  9063. <productMenuURL version="3.0"
  9064. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  9065. />
  9066. </productMenu>
  9067. <productMenu id="quickGuide"
  9068. type="0"
  9069. url=""
  9070. size="934KB" >
  9071. </productMenu>
  9072. <productMenu id="userGuide"
  9073. type="1"
  9074. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9075. size="1.14MB" >
  9076. </productMenu>
  9077. <productMenu id="connectGuide"
  9078. type="1"
  9079. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9080. size="1.12MB" >
  9081. </productMenu>
  9082. <productMenu id="volume"
  9083. type="15" >
  9084. </productMenu>
  9085. <productID id="3370"
  9086. />
  9087. <productGroupable type="0"
  9088. />
  9089. </product>
  9090. <product id="SF2"
  9091. name="SF2"
  9092. series="SF"
  9093. latestVersion="1.2.1"
  9094. show = "-1" >
  9095. <productMenu id="protocol"
  9096. type="1"
  9097. url="2">
  9098. </productMenu>
  9099. <productMenu id="sip"
  9100. type="1" >
  9101. </productMenu>
  9102. <productMenu id="bluetoothIntercom"
  9103. type="1" >
  9104. </productMenu>
  9105. <productMenu id="phone"
  9106. type="1" >
  9107. </productMenu>
  9108. <productMenu id="music"
  9109. type="1" >
  9110. </productMenu>
  9111. <productMenu id="fmradio"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="deviceSetting"
  9115. type="1"
  9116. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9117. <productMenuURL version="1.0.1"
  9118. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9119. />
  9120. </productMenu>
  9121. <productMenu id="quickGuide"
  9122. type="1"
  9123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  9124. size="607KB" >
  9125. </productMenu>
  9126. <productMenu id="userGuide"
  9127. type="1"
  9128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9129. size="1.91MB" >
  9130. </productMenu>
  9131. <productMenu id="volume"
  9132. type="4" >
  9133. </productMenu>
  9134. <productID id="5412"
  9135. />
  9136. <productGroupable type="0"
  9137. />
  9138. </product>
  9139. <product id="SF2"
  9140. name="SF2"
  9141. series="SF"
  9142. latestVersion="3.3.4"
  9143. show = "1" >
  9144. <productMenu id="protocol"
  9145. type="2" >
  9146. </productMenu>
  9147. <productMenu id="sip"
  9148. type="1" >
  9149. </productMenu>
  9150. <productMenu id="bluetoothIntercom"
  9151. type="1" >
  9152. </productMenu>
  9153. <productMenu id="phone"
  9154. type="1" >
  9155. </productMenu>
  9156. <productMenu id="music"
  9157. type="1" >
  9158. </productMenu>
  9159. <productMenu id="fmradio"
  9160. type="0" >
  9161. </productMenu>
  9162. <productMenu id="deviceSetting"
  9163. type="1"
  9164. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9165. <productMenuURL version="3.0"
  9166. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9167. />
  9168. </productMenu>
  9169. <productMenu id="quickGuide"
  9170. type="0"
  9171. url=""
  9172. size="934KB" >
  9173. </productMenu>
  9174. <productMenu id="userGuide"
  9175. type="1"
  9176. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9177. size="1.14MB" >
  9178. </productMenu>
  9179. <productMenu id="connectGuide"
  9180. type="1"
  9181. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9182. size="1.12MB" >
  9183. </productMenu>
  9184. <productMenu id="volume"
  9185. type="15" >
  9186. </productMenu>
  9187. <productID id="3360"
  9188. />
  9189. <productGroupable type="0"
  9190. />
  9191. </product>
  9192. <product id="SF1"
  9193. name="SF1"
  9194. series="SF"
  9195. latestVersion="2.0.5"
  9196. show = "-1" >
  9197. <productMenu id="protocol"
  9198. type="1"
  9199. url="1">
  9200. </productMenu>
  9201. <productMenu id="sip"
  9202. type="1" >
  9203. </productMenu>
  9204. <productMenu id="bluetoothIntercom"
  9205. type="1" >
  9206. <productMenuType version="1.1"
  9207. type="0"
  9208. />
  9209. </productMenu>
  9210. <productMenu id="phone"
  9211. type="1" >
  9212. </productMenu>
  9213. <productMenu id="music"
  9214. type="1" >
  9215. </productMenu>
  9216. <productMenu id="deviceSetting"
  9217. type="1"
  9218. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  9219. <productMenuURL version="1.1"
  9220. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  9221. />
  9222. <productMenuURL version="1.0"
  9223. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  9224. />
  9225. </productMenu>
  9226. <productMenu id="quickGuide"
  9227. type="1"
  9228. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  9229. size="401KB" >
  9230. </productMenu>
  9231. <productMenu id="userGuide"
  9232. type="1"
  9233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9234. size="1.91MB" >
  9235. </productMenu>
  9236. <productMenu id="volume"
  9237. type="3" >
  9238. </productMenu>
  9239. <productID id="5410"
  9240. />
  9241. <productGroupable type="0"
  9242. />
  9243. </product>
  9244. <product id="SF1"
  9245. name="SF1"
  9246. series="SF"
  9247. latestVersion="3.3.4"
  9248. show = "1" >
  9249. <productMenu id="protocol"
  9250. type="2" >
  9251. </productMenu>
  9252. <productMenu id="sip"
  9253. type="1" >
  9254. </productMenu>
  9255. <productMenu id="bluetoothIntercom"
  9256. type="1" >
  9257. </productMenu>
  9258. <productMenu id="phone"
  9259. type="1" >
  9260. </productMenu>
  9261. <productMenu id="music"
  9262. type="1" >
  9263. </productMenu>
  9264. <productMenu id="fmradio"
  9265. type="0" >
  9266. </productMenu>
  9267. <productMenu id="deviceSetting"
  9268. type="1"
  9269. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9270. <productMenuURL version="3.0"
  9271. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9272. />
  9273. </productMenu>
  9274. <productMenu id="quickGuide"
  9275. type="0"
  9276. url=""
  9277. size="934KB" >
  9278. </productMenu>
  9279. <productMenu id="userGuide"
  9280. type="1"
  9281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9282. size="1.14MB" >
  9283. </productMenu>
  9284. <productMenu id="connectGuide"
  9285. type="1"
  9286. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9287. size="1.12MB" >
  9288. </productMenu>
  9289. <productMenu id="volume"
  9290. type="15" >
  9291. </productMenu>
  9292. <productID id="3350"
  9293. />
  9294. <productGroupable type="0"
  9295. />
  9296. </product>
  9297. <product id="SFR"
  9298. name="SFR"
  9299. series="SF"
  9300. latestVersion="1.1.1"
  9301. show = "1" >
  9302. <productMenu id="protocol"
  9303. type="1"
  9304. url="3">
  9305. </productMenu>
  9306. <productMenu id="sip"
  9307. type="1" >
  9308. </productMenu>
  9309. <productMenu id="bluetoothIntercom"
  9310. type="1" >
  9311. </productMenu>
  9312. <productMenu id="phone"
  9313. type="1" >
  9314. </productMenu>
  9315. <productMenu id="music"
  9316. type="1" >
  9317. </productMenu>
  9318. <productMenu id="fmradio"
  9319. type="1" >
  9320. </productMenu>
  9321. <productMenu id="deviceSetting"
  9322. type="1"
  9323. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9324. </productMenu>
  9325. <productMenu id="quickGuide"
  9326. type="1"
  9327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  9328. size="607KB" >
  9329. </productMenu>
  9330. <productMenu id="userGuide"
  9331. type="1"
  9332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  9333. size="1.91MB" >
  9334. </productMenu>
  9335. <productMenu id="volume"
  9336. type="4" >
  9337. </productMenu>
  9338. <productID id="5418"
  9339. />
  9340. <productGroupable type="0"
  9341. />
  9342. </product>
  9343. <product id="20S"
  9344. name="20S"
  9345. series="20"
  9346. latestVersion="2.2.3"
  9347. show = "1" >
  9348. <productMenu id="protocol"
  9349. type="0">
  9350. </productMenu>
  9351. <productMenu id="wa"
  9352. type="5" >
  9353. </productMenu>
  9354. <productMenu id="sip"
  9355. type="1" >
  9356. <productMenuType version="1.0"
  9357. type="0"
  9358. />
  9359. </productMenu>
  9360. <productMenu id="bluetoothIntercom"
  9361. type="1" >
  9362. <productMenuType version="1.0"
  9363. type="0"
  9364. />
  9365. </productMenu>
  9366. <productMenu id="intercomSetting"
  9367. type="1" >
  9368. </productMenu>
  9369. <productMenu id="phone"
  9370. type="2" >
  9371. </productMenu>
  9372. <productMenu id="fmradio"
  9373. type="3" >
  9374. </productMenu>
  9375. <productMenu id="deviceSetting"
  9376. type="1"
  9377. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9378. <productMenuURL version="2.0.2"
  9379. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9380. />
  9381. <productMenuURL version="1.5"
  9382. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9383. />
  9384. <productMenuURL version="1.4.1"
  9385. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9386. />
  9387. <productMenuURL version="1.1"
  9388. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9389. />
  9390. <productMenuURL version="1.0"
  9391. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9392. />
  9393. </productMenu>
  9394. <productMenu id="quickGuide"
  9395. type="0"
  9396. url=""
  9397. size="264KB" >
  9398. </productMenu>
  9399. <productMenu id="userGuide"
  9400. type="1"
  9401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9402. size="3.09MB" >
  9403. </productMenu>
  9404. <productMenu id="connectGuide"
  9405. type="1"
  9406. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9407. size="1.12MB" >
  9408. </productMenu>
  9409. <productID id="4210"
  9410. />
  9411. <productGroupable type="1"
  9412. />
  9413. </product>
  9414. <product id="20S_EVO"
  9415. name="20S EVO"
  9416. series="20"
  9417. latestVersion="2.2.3"
  9418. show = "1" >
  9419. <productMenu id="protocol"
  9420. type="0">
  9421. </productMenu>
  9422. <productMenu id="wa"
  9423. type="5" >
  9424. </productMenu>
  9425. <productMenu id="sip"
  9426. type="1" >
  9427. <productMenuType version="1.0"
  9428. type="0"
  9429. />
  9430. </productMenu>
  9431. <productMenu id="bluetoothIntercom"
  9432. type="1" >
  9433. <productMenuType version="1.0"
  9434. type="0"
  9435. />
  9436. </productMenu>
  9437. <productMenu id="intercomSetting"
  9438. type="1" >
  9439. </productMenu>
  9440. <productMenu id="phone"
  9441. type="2" >
  9442. </productMenu>
  9443. <productMenu id="fmradio"
  9444. type="3" >
  9445. </productMenu>
  9446. <productMenu id="deviceSetting"
  9447. type="1"
  9448. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9449. <productMenuURL version="2.0.2"
  9450. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9451. />
  9452. <productMenuURL version="1.5"
  9453. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9454. />
  9455. <productMenuURL version="1.4.1"
  9456. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9457. />
  9458. <productMenuURL version="1.1"
  9459. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9460. />
  9461. <productMenuURL version="1.0"
  9462. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9463. />
  9464. </productMenu>
  9465. <productMenu id="quickGuide"
  9466. type="0"
  9467. url=""
  9468. size="264KB" >
  9469. </productMenu>
  9470. <productMenu id="userGuide"
  9471. type="1"
  9472. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9473. size="3.09MB" >
  9474. </productMenu>
  9475. <productMenu id="connectGuide"
  9476. type="1"
  9477. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9478. size="1.12MB" >
  9479. </productMenu>
  9480. <productID id="4210"
  9481. />
  9482. <productProductKey key="16"
  9483. />
  9484. <productGroupable type="1"
  9485. />
  9486. </product>
  9487. <product id="10S"
  9488. name="10S"
  9489. series="10"
  9490. latestVersion="3.0.2"
  9491. show = "1" >
  9492. <productMenu id="protocol"
  9493. type="3" >
  9494. </productMenu>
  9495. <productMenu id="sip"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="bluetoothIntercom"
  9499. type="1" >
  9500. </productMenu>
  9501. <productMenu id="phone"
  9502. type="1" >
  9503. </productMenu>
  9504. <productMenu id="deviceSetting"
  9505. type="1"
  9506. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9507. </productMenu>
  9508. <productMenu id="quickGuide"
  9509. type="1"
  9510. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9511. size="934KB" >
  9512. </productMenu>
  9513. <productMenu id="userGuide"
  9514. type="1"
  9515. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9516. size="1.14MB" >
  9517. </productMenu>
  9518. <productMenu id="connectGuide"
  9519. type="1"
  9520. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9521. size="1.12MB" >
  9522. </productMenu>
  9523. <productID id="3380"
  9524. />
  9525. <productGroupable type="0"
  9526. />
  9527. </product>
  9528. <product id="10S"
  9529. name="10S"
  9530. series="10"
  9531. latestVersion="2.1.1"
  9532. show = "-1" >
  9533. <productMenu id="protocol"
  9534. type="0">
  9535. </productMenu>
  9536. <productMenu id="sip"
  9537. type="1" >
  9538. </productMenu>
  9539. <productMenu id="bluetoothIntercom"
  9540. type="1" >
  9541. </productMenu>
  9542. <productMenu id="phone"
  9543. type="2" >
  9544. </productMenu>
  9545. <productMenu id="fmradio"
  9546. type="3" >
  9547. </productMenu>
  9548. <productMenu id="deviceSetting"
  9549. type="1"
  9550. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9551. <productMenuURL version="1.5"
  9552. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9553. />
  9554. <productMenuURL version="1.3.1"
  9555. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9556. />
  9557. </productMenu>
  9558. <productMenu id="quickGuide"
  9559. type="1"
  9560. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9561. size="310KB" >
  9562. </productMenu>
  9563. <productMenu id="userGuide"
  9564. type="1"
  9565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9566. size="1.57MB" >
  9567. </productMenu>
  9568. <productID id="5530"
  9569. />
  9570. <productGroupable type="0"
  9571. />
  9572. </product>
  9573. <product id="Apex"
  9574. name="Apex"
  9575. series="APEX"
  9576. latestVersion="1.0.1"
  9577. latestVersionVoicePrompt="0.2"
  9578. show = "1" >
  9579. <productMenu id="protocol"
  9580. type="2" >
  9581. </productMenu>
  9582. <productMenu id="warranty"
  9583. type="1" >
  9584. </productMenu>
  9585. <productMenu id="serialNumber"
  9586. type="1" >
  9587. </productMenu>
  9588. <productMenu id="ota"
  9589. type="2" >
  9590. <otaLanguages>
  9591. <otaLanguage
  9592. id="0"
  9593. name="English"
  9594. package="0"
  9595. />
  9596. <otaLanguage
  9597. id="0"
  9598. name="Français"
  9599. package="1"
  9600. />
  9601. <otaLanguage
  9602. id="0"
  9603. name="Español"
  9604. package="2"
  9605. />
  9606. <otaLanguage
  9607. id="0"
  9608. name="Italiano"
  9609. package="3"
  9610. />
  9611. <otaLanguage
  9612. id="0"
  9613. name="Deutsch"
  9614. package="4"
  9615. />
  9616. <otaLanguage
  9617. id="0"
  9618. name="Nederlands"
  9619. package="5"
  9620. />
  9621. <otaLanguage
  9622. id="0"
  9623. name="Русский"
  9624. package="6"
  9625. />
  9626. <otaLanguage
  9627. id="0"
  9628. name="简体中文"
  9629. package="7"
  9630. />
  9631. <otaLanguage
  9632. id="0"
  9633. name="한국어"
  9634. package="8"
  9635. />
  9636. <otaLanguage
  9637. id="0"
  9638. name="日本語"
  9639. package="9"
  9640. />
  9641. <otaLanguage
  9642. id="0"
  9643. name="Suomi"
  9644. package="10"
  9645. />
  9646. <otaLanguage
  9647. id="0"
  9648. name="Polski"
  9649. package="11"
  9650. />
  9651. </otaLanguages>
  9652. <otaPackages>
  9653. <package
  9654. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3.img"
  9655. size="5183988"
  9656. />
  9657. <package
  9658. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fr-FR.img"
  9659. size="5183988"
  9660. />
  9661. <package
  9662. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-es-ES.img"
  9663. size="5183988"
  9664. />
  9665. <package
  9666. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-it-IT.img"
  9667. size="5183988"
  9668. />
  9669. <package
  9670. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-de-DE.img"
  9671. size="5183988"
  9672. />
  9673. <package
  9674. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-nl-NL.img"
  9675. size="5183988"
  9676. />
  9677. <package
  9678. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ru-RU.img"
  9679. size="5183988"
  9680. />
  9681. <package
  9682. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-cmn-CN.img"
  9683. size="5183988"
  9684. />
  9685. <package
  9686. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ko-KR.img"
  9687. size="5183988"
  9688. />
  9689. <package
  9690. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ja-JP.img"
  9691. size="5183988"
  9692. />
  9693. <package
  9694. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fi-FI.img"
  9695. size="5183988"
  9696. />
  9697. <package
  9698. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-pl-PL.img"
  9699. size="5183988"
  9700. />
  9701. </otaPackages>
  9702. </productMenu>
  9703. <productMenu id="sip"
  9704. type="1" >
  9705. </productMenu>
  9706. <productMenu id="bluetoothIntercom"
  9707. type="1" >
  9708. </productMenu>
  9709. <productMenu id="phone"
  9710. type="1" >
  9711. </productMenu>
  9712. <productMenu id="music"
  9713. type="1" >
  9714. </productMenu>
  9715. <productMenu id="fmradio"
  9716. type="1"
  9717. url="1" >
  9718. </productMenu>
  9719. <productMenu id="deviceSetting"
  9720. type="1"
  9721. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9722. <productMenuURL version="1.0"
  9723. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9724. />
  9725. </productMenu>
  9726. <productMenu id="quickGuide"
  9727. type="0"
  9728. url=""
  9729. size="934KB" >
  9730. </productMenu>
  9731. <productMenu id="userGuide"
  9732. type="1"
  9733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9734. size="1.14MB" >
  9735. </productMenu>
  9736. <productMenu id="connectGuide"
  9737. type="1"
  9738. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  9739. size="1.12MB" >
  9740. </productMenu>
  9741. <productMenu id="volume+"
  9742. type="2"
  9743. url="0x0004" >
  9744. </productMenu>
  9745. <productMenu id="appearance"
  9746. type="1"
  9747. url="1|white,silver,black" >
  9748. </productMenu>
  9749. <productMenu id="battery"
  9750. type="1" >
  9751. </productMenu>
  9752. <productID id="3452"
  9753. />
  9754. <productGroupable type="0"
  9755. />
  9756. </product>
  9757. <product id="ApexPlus"
  9758. name="Apex Plus"
  9759. series="APEX"
  9760. latestVersion="1.0.1"
  9761. latestVersionVoicePrompt="0.2"
  9762. show = "1" >
  9763. <productMenu id="protocol"
  9764. type="2" >
  9765. </productMenu>
  9766. <productMenu id="warranty"
  9767. type="1" >
  9768. </productMenu>
  9769. <productMenu id="serialNumber"
  9770. type="1" >
  9771. </productMenu>
  9772. <productMenu id="ota"
  9773. type="2" >
  9774. <otaLanguages>
  9775. <otaLanguage
  9776. id="0"
  9777. name="English"
  9778. package="0"
  9779. />
  9780. <otaLanguage
  9781. id="0"
  9782. name="Français"
  9783. package="1"
  9784. />
  9785. <otaLanguage
  9786. id="0"
  9787. name="Español"
  9788. package="2"
  9789. />
  9790. <otaLanguage
  9791. id="0"
  9792. name="Italiano"
  9793. package="3"
  9794. />
  9795. <otaLanguage
  9796. id="0"
  9797. name="Deutsch"
  9798. package="4"
  9799. />
  9800. <otaLanguage
  9801. id="0"
  9802. name="Nederlands"
  9803. package="5"
  9804. />
  9805. <otaLanguage
  9806. id="0"
  9807. name="Русский"
  9808. package="6"
  9809. />
  9810. <otaLanguage
  9811. id="0"
  9812. name="简体中文"
  9813. package="7"
  9814. />
  9815. <otaLanguage
  9816. id="0"
  9817. name="한국어"
  9818. package="8"
  9819. />
  9820. <otaLanguage
  9821. id="0"
  9822. name="日本語"
  9823. package="9"
  9824. />
  9825. <otaLanguage
  9826. id="0"
  9827. name="Suomi"
  9828. package="10"
  9829. />
  9830. <otaLanguage
  9831. id="0"
  9832. name="Polski"
  9833. package="11"
  9834. />
  9835. </otaLanguages>
  9836. <otaPackages>
  9837. <package
  9838. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3.img"
  9839. size="5183988"
  9840. />
  9841. <package
  9842. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fr-FR.img"
  9843. size="5183988"
  9844. />
  9845. <package
  9846. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-es-ES.img"
  9847. size="5183988"
  9848. />
  9849. <package
  9850. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-it-IT.img"
  9851. size="5183988"
  9852. />
  9853. <package
  9854. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-de-DE.img"
  9855. size="5183988"
  9856. />
  9857. <package
  9858. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-nl-NL.img"
  9859. size="5183988"
  9860. />
  9861. <package
  9862. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ru-RU.img"
  9863. size="5183988"
  9864. />
  9865. <package
  9866. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-cmn-CN.img"
  9867. size="5183988"
  9868. />
  9869. <package
  9870. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ko-KR.img"
  9871. size="5183988"
  9872. />
  9873. <package
  9874. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ja-JP.img"
  9875. size="5183988"
  9876. />
  9877. <package
  9878. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fi-FI.img"
  9879. size="5183988"
  9880. />
  9881. <package
  9882. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-pl-PL.img"
  9883. size="5183988"
  9884. />
  9885. </otaPackages>
  9886. </productMenu>
  9887. <productMenu id="sip"
  9888. type="1" >
  9889. </productMenu>
  9890. <productMenu id="bluetoothIntercom"
  9891. type="1" >
  9892. </productMenu>
  9893. <productMenu id="phone"
  9894. type="1" >
  9895. </productMenu>
  9896. <productMenu id="music"
  9897. type="1" >
  9898. </productMenu>
  9899. <productMenu id="fmradio"
  9900. type="1"
  9901. url="1" >
  9902. </productMenu>
  9903. <productMenu id="deviceSetting"
  9904. type="1"
  9905. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9906. <productMenuURL version="1.0"
  9907. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9908. />
  9909. </productMenu>
  9910. <productMenu id="quickGuide"
  9911. type="0"
  9912. url=""
  9913. size="934KB" >
  9914. </productMenu>
  9915. <productMenu id="userGuide"
  9916. type="1"
  9917. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9918. size="1.14MB" >
  9919. </productMenu>
  9920. <productMenu id="connectGuide"
  9921. type="1"
  9922. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  9923. size="1.12MB" >
  9924. </productMenu>
  9925. <productMenu id="volume+"
  9926. type="2"
  9927. url="0x0004" >
  9928. </productMenu>
  9929. <productMenu id="appearance"
  9930. type="1"
  9931. url="1|white,silver,black" >
  9932. </productMenu>
  9933. <productMenu id="battery"
  9934. type="1" >
  9935. </productMenu>
  9936. <productID id="3453"
  9937. />
  9938. <productGroupable type="0"
  9939. />
  9940. </product>
  9941. <product id="10R2"
  9942. name="10R 2"
  9943. series="10"
  9944. latestVersion="0.9"
  9945. latestVersionVoicePrompt="1.1"
  9946. show = "-1" >
  9947. <productMenu id="protocol"
  9948. type="2" >
  9949. </productMenu>
  9950. <productMenu id="ota"
  9951. type="2" >
  9952. <otaPackages>
  9953. <package
  9954. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9955. size="2945812"
  9956. />
  9957. </otaPackages>
  9958. </productMenu>
  9959. <productMenu id="sip"
  9960. type="1" >
  9961. </productMenu>
  9962. <productMenu id="bluetoothIntercom"
  9963. type="1" >
  9964. </productMenu>
  9965. <productMenu id="phone"
  9966. type="1" >
  9967. </productMenu>
  9968. <productMenu id="music"
  9969. type="1" >
  9970. </productMenu>
  9971. <productMenu id="fmradio"
  9972. type="1"
  9973. url="1" >
  9974. </productMenu>
  9975. <productMenu id="deviceSetting"
  9976. type="1"
  9977. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9978. </productMenu>
  9979. <productMenu id="quickGuide"
  9980. type="1"
  9981. url=""
  9982. size="934KB" >
  9983. </productMenu>
  9984. <productMenu id="userGuide"
  9985. type="0"
  9986. url=""
  9987. size="1.14MB" >
  9988. </productMenu>
  9989. <productMenu id="volume"
  9990. type="15" >
  9991. </productMenu>
  9992. <productID id="4000"
  9993. />
  9994. <productGroupable type="0"
  9995. />
  9996. </product>
  9997. <product id="10R"
  9998. name="10R"
  9999. series="10"
  10000. latestVersion="2.1.1"
  10001. show = "1" >
  10002. <productMenu id="protocol"
  10003. type="0">
  10004. </productMenu>
  10005. <productMenu id="sip"
  10006. type="1" >
  10007. <productMenuType version="1.0.2"
  10008. type="0"
  10009. />
  10010. </productMenu>
  10011. <productMenu id="bluetoothIntercom"
  10012. type="1" >
  10013. <productMenuType version="1.0.2"
  10014. type="0"
  10015. />
  10016. </productMenu>
  10017. <productMenu id="phone"
  10018. type="2" >
  10019. </productMenu>
  10020. <productMenu id="fmradio"
  10021. type="3" >
  10022. </productMenu>
  10023. <productMenu id="deviceSetting"
  10024. type="1"
  10025. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10026. <productMenuURL version="1.4"
  10027. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  10028. />
  10029. <productMenuURL version="1.2.1"
  10030. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  10031. />
  10032. <productMenuURL version="1.0.2"
  10033. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  10034. />
  10035. <productMenuURL version="1.0"
  10036. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  10037. />
  10038. </productMenu>
  10039. <productMenu id="quickGuide"
  10040. type="1"
  10041. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  10042. size="400KB" >
  10043. </productMenu>
  10044. <productMenu id="userGuide"
  10045. type="1"
  10046. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  10047. size="2.75MB" >
  10048. </productMenu>
  10049. <productMenu id="connectGuide"
  10050. type="1"
  10051. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10052. size="1.12MB" >
  10053. </productMenu>
  10054. <productID id="5520"
  10055. />
  10056. <productGroupable type="0"
  10057. />
  10058. </product>
  10059. <product id="10C_EVO"
  10060. name="10C EVO"
  10061. series="10"
  10062. latestVersion="1.7"
  10063. show = "1" >
  10064. <productMenu id="protocol"
  10065. type="0">
  10066. </productMenu>
  10067. <productMenu id="sip"
  10068. type="1" >
  10069. </productMenu>
  10070. <productMenu id="bluetoothIntercom"
  10071. type="1" >
  10072. </productMenu>
  10073. <productMenu id="phone"
  10074. type="2" >
  10075. </productMenu>
  10076. <productMenu id="fmradio"
  10077. type="3" >
  10078. </productMenu>
  10079. <productMenu id="deviceSetting"
  10080. type="1"
  10081. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  10082. <productMenuURL version="1.3.1"
  10083. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10084. />
  10085. </productMenu>
  10086. <productMenu id="quickGuide"
  10087. type="1"
  10088. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  10089. size="1.32MB" >
  10090. </productMenu>
  10091. <productMenu id="userGuide"
  10092. type="1"
  10093. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  10094. size="1.68MB" >
  10095. </productMenu>
  10096. <productMenu id="connectGuide"
  10097. type="1"
  10098. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10099. size="1.12MB" >
  10100. </productMenu>
  10101. <productID id="5570"
  10102. />
  10103. <productGroupable type="0"
  10104. />
  10105. </product>
  10106. <product id="10C_Pro"
  10107. name="10C Pro"
  10108. series="10"
  10109. latestVersion="2.7.1"
  10110. show = "1" >
  10111. <productMenu id="protocol"
  10112. type="0">
  10113. </productMenu>
  10114. <productMenu id="sip"
  10115. type="1" >
  10116. </productMenu>
  10117. <productMenu id="bluetoothIntercom"
  10118. type="1" >
  10119. </productMenu>
  10120. <productMenu id="phone"
  10121. type="2" >
  10122. </productMenu>
  10123. <productMenu id="fmradio"
  10124. type="3" >
  10125. </productMenu>
  10126. <productMenu id="deviceSetting"
  10127. type="1"
  10128. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  10129. <productMenuURL version="2.5.1"
  10130. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10131. />
  10132. <productMenuURL version="1.0"
  10133. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  10134. />
  10135. </productMenu>
  10136. <productMenu id="quickGuide"
  10137. type="1"
  10138. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  10139. size="651KB" >
  10140. </productMenu>
  10141. <productMenu id="userGuide"
  10142. type="1"
  10143. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  10144. size="2.34MB" >
  10145. </productMenu>
  10146. <productMenu id="connectGuide"
  10147. type="1"
  10148. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10149. size="1.12MB" >
  10150. </productMenu>
  10151. <productID id="5580"
  10152. />
  10153. <productGroupable type="0"
  10154. />
  10155. </product>
  10156. <product id="10C"
  10157. name="10C"
  10158. series="10"
  10159. latestVersion="3.0.4"
  10160. show = "1" >
  10161. <productMenu id="protocol"
  10162. type="0">
  10163. </productMenu>
  10164. <productMenu id="sip"
  10165. type="1" >
  10166. <productMenuType version="1.0.4"
  10167. type="0"
  10168. />
  10169. </productMenu>
  10170. <productMenu id="bluetoothIntercom"
  10171. type="1" >
  10172. <productMenuType version="1.0.4"
  10173. type="0"
  10174. />
  10175. </productMenu>
  10176. <productMenu id="phone"
  10177. type="2" >
  10178. </productMenu>
  10179. <productMenu id="fmradio"
  10180. type="3" >
  10181. </productMenu>
  10182. <productMenu id="deviceSetting"
  10183. type="1"
  10184. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  10185. <productMenuURL version="2.3"
  10186. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  10187. />
  10188. <productMenuURL version="2.1.1"
  10189. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  10190. />
  10191. <productMenuURL version="1.0.4"
  10192. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  10193. />
  10194. <productMenuURL version="1.0.2"
  10195. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  10196. />
  10197. </productMenu>
  10198. <productMenu id="quickGuide"
  10199. type="1"
  10200. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  10201. size="935KB" >
  10202. </productMenu>
  10203. <productMenu id="userGuide"
  10204. type="1"
  10205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  10206. size="2.82MB" >
  10207. </productMenu>
  10208. <productMenu id="connectGuide"
  10209. type="1"
  10210. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10211. size="1.12MB" >
  10212. </productMenu>
  10213. <productID id="5510"
  10214. />
  10215. <productGroupable type="0"
  10216. />
  10217. </product>
  10218. <product id="10U_GT_AIR"
  10219. name="10U GT-Air"
  10220. series="10"
  10221. latestVersion="2.0.4"
  10222. show = "1" >
  10223. <productMenu id="protocol"
  10224. type="0">
  10225. </productMenu>
  10226. <productMenu id="sip"
  10227. type="1" >
  10228. <productMenuType version="1.0.2"
  10229. type="0"
  10230. />
  10231. </productMenu>
  10232. <productMenu id="bluetoothIntercom"
  10233. type="1" >
  10234. <productMenuType version="1.0.2"
  10235. type="0"
  10236. />
  10237. </productMenu>
  10238. <productMenu id="phone"
  10239. type="2" >
  10240. </productMenu>
  10241. <productMenu id="fmradio"
  10242. type="3" >
  10243. </productMenu>
  10244. <productMenu id="deviceSetting"
  10245. type="1"
  10246. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10247. <productMenuURL version="1.3.2"
  10248. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10249. />
  10250. <productMenuURL version="1.0.2"
  10251. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10252. />
  10253. </productMenu>
  10254. <productMenu id="quickGuide"
  10255. type="1"
  10256. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  10257. size="685KB" >
  10258. </productMenu>
  10259. <productMenu id="userGuide"
  10260. type="1"
  10261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10262. size="684KB" >
  10263. </productMenu>
  10264. <productMenu id="connectGuide"
  10265. type="1"
  10266. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10267. size="1.12MB" >
  10268. </productMenu>
  10269. <productID id="5610"
  10270. />
  10271. <productGroupable type="0"
  10272. />
  10273. </product>
  10274. <product id="10U_NEOTEC"
  10275. name="10U Neotec"
  10276. series="10"
  10277. latestVersion="2.0.4"
  10278. show = "1" >
  10279. <productMenu id="protocol"
  10280. type="0">
  10281. </productMenu>
  10282. <productMenu id="sip"
  10283. type="1" >
  10284. <productMenuType version="1.0.2"
  10285. type="0"
  10286. />
  10287. </productMenu>
  10288. <productMenu id="bluetoothIntercom"
  10289. type="1" >
  10290. <productMenuType version="1.0.2"
  10291. type="0"
  10292. />
  10293. </productMenu>
  10294. <productMenu id="phone"
  10295. type="2" >
  10296. </productMenu>
  10297. <productMenu id="fmradio"
  10298. type="3" >
  10299. </productMenu>
  10300. <productMenu id="deviceSetting"
  10301. type="1"
  10302. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10303. <productMenuURL version="1.3.2"
  10304. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10305. />
  10306. <productMenuURL version="1.0.2"
  10307. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10308. />
  10309. </productMenu>
  10310. <productMenu id="quickGuide"
  10311. type="1"
  10312. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  10313. size="689KB" >
  10314. </productMenu>
  10315. <productMenu id="userGuide"
  10316. type="1"
  10317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10318. size="684KB" >
  10319. </productMenu>
  10320. <productMenu id="connectGuide"
  10321. type="1"
  10322. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10323. size="1.12MB" >
  10324. </productMenu>
  10325. <productID id="5611"
  10326. />
  10327. <productGroupable type="0"
  10328. />
  10329. </product>
  10330. <product id="10U_J_CRUISE"
  10331. name="10U J-Cruise"
  10332. series="10"
  10333. latestVersion="2.0.4"
  10334. show = "1" >
  10335. <productMenu id="protocol"
  10336. type="0">
  10337. </productMenu>
  10338. <productMenu id="sip"
  10339. type="1" >
  10340. <productMenuType version="1.0.2"
  10341. type="0"
  10342. />
  10343. </productMenu>
  10344. <productMenu id="bluetoothIntercom"
  10345. type="1" >
  10346. <productMenuType version="1.0.2"
  10347. type="0"
  10348. />
  10349. </productMenu>
  10350. <productMenu id="phone"
  10351. type="2" >
  10352. </productMenu>
  10353. <productMenu id="fmradio"
  10354. type="3" >
  10355. </productMenu>
  10356. <productMenu id="deviceSetting"
  10357. type="1"
  10358. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10359. <productMenuURL version="1.3.2"
  10360. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10361. />
  10362. <productMenuURL version="1.0.2"
  10363. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10364. />
  10365. </productMenu>
  10366. <productMenu id="quickGuide"
  10367. type="1"
  10368. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  10369. size="686KB" >
  10370. </productMenu>
  10371. <productMenu id="userGuide"
  10372. type="1"
  10373. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10374. size="684KB" >
  10375. </productMenu>
  10376. <productMenu id="connectGuide"
  10377. type="1"
  10378. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10379. size="1.12MB" >
  10380. </productMenu>
  10381. <productID id="5612"
  10382. />
  10383. <productGroupable type="0"
  10384. />
  10385. </product>
  10386. <product id="10U_C3"
  10387. name="10U C3/C3Pro"
  10388. series="10"
  10389. latestVersion="2.0.4"
  10390. show = "1" >
  10391. <productMenu id="protocol"
  10392. type="0">
  10393. </productMenu>
  10394. <productMenu id="sip"
  10395. type="1" >
  10396. <productMenuType version="1.0.2"
  10397. type="0"
  10398. />
  10399. </productMenu>
  10400. <productMenu id="bluetoothIntercom"
  10401. type="1" >
  10402. <productMenuType version="1.0.2"
  10403. type="0"
  10404. />
  10405. </productMenu>
  10406. <productMenu id="phone"
  10407. type="2" >
  10408. </productMenu>
  10409. <productMenu id="fmradio"
  10410. type="3" >
  10411. </productMenu>
  10412. <productMenu id="deviceSetting"
  10413. type="1"
  10414. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10415. <productMenuURL version="1.3.2"
  10416. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10417. />
  10418. <productMenuURL version="1.0.2"
  10419. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10420. />
  10421. </productMenu>
  10422. <productMenu id="quickGuide"
  10423. type="1"
  10424. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10425. size="199KB" >
  10426. </productMenu>
  10427. <productMenu id="userGuide"
  10428. type="1"
  10429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10430. size="684KB" >
  10431. </productMenu>
  10432. <productMenu id="connectGuide"
  10433. type="1"
  10434. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10435. size="1.12MB" >
  10436. </productMenu>
  10437. <productID id="5620"
  10438. />
  10439. <productGroupable type="0"
  10440. />
  10441. </product>
  10442. <product id="10U_ARAI"
  10443. name="10U Arai"
  10444. series="10"
  10445. latestVersion="2.0.4"
  10446. show = "1" >
  10447. <productMenu id="protocol"
  10448. type="0">
  10449. </productMenu>
  10450. <productMenu id="sip"
  10451. type="1" >
  10452. <productMenuType version="1.0.2"
  10453. type="0"
  10454. />
  10455. </productMenu>
  10456. <productMenu id="bluetoothIntercom"
  10457. type="1" >
  10458. <productMenuType version="1.0.2"
  10459. type="0"
  10460. />
  10461. </productMenu>
  10462. <productMenu id="phone"
  10463. type="2" >
  10464. </productMenu>
  10465. <productMenu id="fmradio"
  10466. type="3" >
  10467. </productMenu>
  10468. <productMenu id="deviceSetting"
  10469. type="1"
  10470. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10471. <productMenuURL version="1.3.2"
  10472. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10473. />
  10474. <productMenuURL version="1.0.2"
  10475. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10476. />
  10477. </productMenu>
  10478. <productMenu id="quickGuide"
  10479. type="1"
  10480. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10481. size="689KB" >
  10482. </productMenu>
  10483. <productMenu id="userGuide"
  10484. type="1"
  10485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10486. size="684KB" >
  10487. </productMenu>
  10488. <productMenu id="connectGuide"
  10489. type="1"
  10490. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10491. size="1.12MB" >
  10492. </productMenu>
  10493. <productID id="5621"
  10494. />
  10495. <productGroupable type="0"
  10496. />
  10497. </product>
  10498. <product id="10Upad"
  10499. name="10Upad"
  10500. series="10"
  10501. latestVersion="2.0.3"
  10502. show = "1" >
  10503. <productMenu id="protocol"
  10504. type="0">
  10505. </productMenu>
  10506. <productMenu id="sip"
  10507. type="1" >
  10508. </productMenu>
  10509. <productMenu id="bluetoothIntercom"
  10510. type="1" >
  10511. </productMenu>
  10512. <productMenu id="phone"
  10513. type="2" >
  10514. </productMenu>
  10515. <productMenu id="fmradio"
  10516. type="3" >
  10517. </productMenu>
  10518. <productMenu id="deviceSetting"
  10519. type="1"
  10520. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10521. <productMenuURL version="1.0.3"
  10522. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10523. />
  10524. </productMenu>
  10525. <productMenu id="quickGuide"
  10526. type="1"
  10527. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10528. size="615KB" >
  10529. </productMenu>
  10530. <productMenu id="userGuide"
  10531. type="1"
  10532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10533. size="0.99MB" >
  10534. </productMenu>
  10535. <productMenu id="connectGuide"
  10536. type="1"
  10537. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10538. size="1.12MB" >
  10539. </productMenu>
  10540. <productID id="6210"
  10541. />
  10542. <productGroupable type="0"
  10543. />
  10544. </product>
  10545. <product id="5S"
  10546. name="5S"
  10547. series="5"
  10548. latestVersion="2.3.1"
  10549. show = "1" >
  10550. <productMenu id="protocol"
  10551. type="3" >
  10552. </productMenu>
  10553. <productMenu id="sip"
  10554. type="1" >
  10555. </productMenu>
  10556. <productMenu id="bluetoothIntercom"
  10557. type="1" >
  10558. </productMenu>
  10559. <productMenu id="phone"
  10560. type="1" >
  10561. </productMenu>
  10562. <productMenu id="fmradio"
  10563. type="0" >
  10564. </productMenu>
  10565. <productMenu id="deviceSetting"
  10566. type="1"
  10567. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10568. </productMenu>
  10569. <productMenu id="quickGuide"
  10570. type="0"
  10571. url=""
  10572. size="934KB" >
  10573. </productMenu>
  10574. <productMenu id="userGuide"
  10575. type="1"
  10576. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10577. size="1.14MB" >
  10578. </productMenu>
  10579. <productMenu id="connectGuide"
  10580. type="1"
  10581. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10582. size="1.12MB" >
  10583. </productMenu>
  10584. <productID id="5590"
  10585. />
  10586. <productGroupable type="0"
  10587. />
  10588. </product>
  10589. <product id="5S"
  10590. name="5S"
  10591. series="5"
  10592. latestVersion="1.2"
  10593. show = "-1" >
  10594. <productMenu id="protocol"
  10595. type="0">
  10596. </productMenu>
  10597. <productMenu id="sip"
  10598. type="1" >
  10599. </productMenu>
  10600. <productMenu id="bluetoothIntercom"
  10601. type="1" >
  10602. </productMenu>
  10603. <productMenu id="phone"
  10604. type="2" >
  10605. </productMenu>
  10606. <productMenu id="fmradio"
  10607. type="3" >
  10608. </productMenu>
  10609. <productMenu id="deviceSetting"
  10610. type="1"
  10611. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10612. </productMenu>
  10613. <productMenu id="quickGuide"
  10614. type="0"
  10615. url=""
  10616. size="970KB" >
  10617. </productMenu>
  10618. <productMenu id="userGuide"
  10619. type="1"
  10620. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10621. size="1.26MB" >
  10622. </productMenu>
  10623. <productID id="5534"
  10624. />
  10625. <productGroupable type="0"
  10626. />
  10627. </product>
  10628. <product id="5S"
  10629. name="5S"
  10630. series="5"
  10631. latestVersion="3.0.1"
  10632. show = "-1" >
  10633. <productMenu id="protocol"
  10634. type="0">
  10635. </productMenu>
  10636. <productMenu id="sip"
  10637. type="1" >
  10638. </productMenu>
  10639. <productMenu id="bluetoothIntercom"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="phone"
  10643. type="2" >
  10644. </productMenu>
  10645. <productMenu id="fmradio"
  10646. type="0" >
  10647. </productMenu>
  10648. <productMenu id="deviceSetting"
  10649. type="1"
  10650. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10651. </productMenu>
  10652. <productMenu id="quickGuide"
  10653. type="0"
  10654. url=""
  10655. size="970KB" >
  10656. </productMenu>
  10657. <productMenu id="userGuide"
  10658. type="1"
  10659. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10660. size="1.26MB" >
  10661. </productMenu>
  10662. <productID id="5538"
  10663. />
  10664. <productGroupable type="0"
  10665. />
  10666. </product>
  10667. <product id="3SPLUS"
  10668. name="3S PLUS"
  10669. series="3"
  10670. latestVersion="2.2"
  10671. show = "1" >
  10672. <productMenu id="protocol"
  10673. type="3" >
  10674. </productMenu>
  10675. <productMenu id="sip"
  10676. type="1" >
  10677. </productMenu>
  10678. <productMenu id="bluetoothIntercom"
  10679. type="1" >
  10680. </productMenu>
  10681. <productMenu id="deviceSetting"
  10682. type="1"
  10683. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10684. <productMenuURL version="2.2.1"
  10685. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10686. />
  10687. </productMenu>
  10688. <productMenu id="quickGuide"
  10689. type="1"
  10690. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10691. size="344KB" >
  10692. </productMenu>
  10693. <productMenu id="userGuide"
  10694. type="1"
  10695. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10696. size="1.14MB" >
  10697. </productMenu>
  10698. <productMenu id="connectGuide"
  10699. type="1"
  10700. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10701. size="1.12MB" >
  10702. </productMenu>
  10703. <productID id="4023"
  10704. />
  10705. <productGroupable type="0"
  10706. />
  10707. </product>
  10708. <product id="3SPLUS"
  10709. name="3S PLUS"
  10710. series="3"
  10711. latestVersion="1.1"
  10712. show = "-1" >
  10713. <productMenu id="protocol"
  10714. type="0">
  10715. </productMenu>
  10716. <productMenu id="sip"
  10717. type="1" >
  10718. </productMenu>
  10719. <productMenu id="bluetoothIntercom"
  10720. type="1" >
  10721. </productMenu>
  10722. <productMenu id="deviceSetting"
  10723. type="1"
  10724. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10725. </productMenu>
  10726. <productMenu id="quickGuide"
  10727. type="1"
  10728. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10729. size="842KB" >
  10730. </productMenu>
  10731. <productMenu id="userGuide"
  10732. type="1"
  10733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10734. size="1.02MB" >
  10735. </productMenu>
  10736. <productID id="6320"
  10737. />
  10738. <productGroupable type="0"
  10739. />
  10740. </product>
  10741. <product id="AConnect"
  10742. name="Alpinestars A-Connect"
  10743. series="60"
  10744. latestVersion="1.0.2"
  10745. latestVersionMesh="0.19"
  10746. latestVersionVoicePrompt="1.6"
  10747. show = "-1" >
  10748. <productMenu id="protocol"
  10749. type="2" >
  10750. </productMenu>
  10751. <productMenu id="ota"
  10752. type="2" >
  10753. <otaLanguages>
  10754. <otaLanguage
  10755. id="0"
  10756. name="English"
  10757. package="0"
  10758. />
  10759. <otaLanguage
  10760. id="0"
  10761. name="Français"
  10762. package="1"
  10763. />
  10764. <otaLanguage
  10765. id="0"
  10766. name="Español"
  10767. package="2"
  10768. />
  10769. <otaLanguage
  10770. id="0"
  10771. name="Italiano"
  10772. package="3"
  10773. />
  10774. <otaLanguage
  10775. id="0"
  10776. name="Deutsch"
  10777. package="4"
  10778. />
  10779. <otaLanguage
  10780. id="0"
  10781. name="Nederlands"
  10782. package="5"
  10783. />
  10784. <otaLanguage
  10785. id="0"
  10786. name="Русский"
  10787. package="6"
  10788. />
  10789. <otaLanguage
  10790. id="0"
  10791. name="简体中文"
  10792. package="7"
  10793. />
  10794. <otaLanguage
  10795. id="0"
  10796. name="한국어"
  10797. package="8"
  10798. />
  10799. <otaLanguage
  10800. id="0"
  10801. name="日本語"
  10802. package="9"
  10803. />
  10804. <otaLanguage
  10805. id="0"
  10806. name="Suomi"
  10807. package="10"
  10808. />
  10809. <otaLanguage
  10810. id="0"
  10811. name="Polski"
  10812. package="11"
  10813. />
  10814. </otaLanguages>
  10815. <otaPackages>
  10816. <package
  10817. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10818. size="5183988"
  10819. />
  10820. <package
  10821. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10822. size="5183988"
  10823. />
  10824. <package
  10825. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10826. size="5183988"
  10827. />
  10828. <package
  10829. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10830. size="5183988"
  10831. />
  10832. <package
  10833. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10834. size="5183988"
  10835. />
  10836. <package
  10837. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10838. size="5183988"
  10839. />
  10840. <package
  10841. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10842. size="5183988"
  10843. />
  10844. <package
  10845. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10846. size="5183988"
  10847. />
  10848. <package
  10849. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10850. size="5183988"
  10851. />
  10852. <package
  10853. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10854. size="5183988"
  10855. />
  10856. <package
  10857. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10858. size="5183988"
  10859. />
  10860. <package
  10861. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10862. size="5183988"
  10863. />
  10864. </otaPackages>
  10865. </productMenu>
  10866. <productMenu id="sip"
  10867. type="1" >
  10868. </productMenu>
  10869. <productMenu id="illusion"
  10870. type="0" >
  10871. </productMenu>
  10872. <productMenu id="meshIntercom+"
  10873. type="3"
  10874. url="2" >
  10875. </productMenu>
  10876. <productMenu id="waveIntercom"
  10877. type="1" >
  10878. </productMenu>
  10879. <productMenu id="bluetoothIntercom"
  10880. type="1"
  10881. url="2" >
  10882. </productMenu>
  10883. <productMenu id="bluetoothIntercomGrouping"
  10884. type="0" >
  10885. </productMenu>
  10886. <productMenu id="fmradio"
  10887. type="1"
  10888. url="1" >
  10889. </productMenu>
  10890. <productMenu id="phone"
  10891. type="1" >
  10892. </productMenu>
  10893. <productMenu id="music"
  10894. type="1" >
  10895. </productMenu>
  10896. <productMenu id="musicSharing"
  10897. type="0" >
  10898. </productMenu>
  10899. <productMenu id="deviceSetting"
  10900. type="1"
  10901. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10902. <productMenuURL version="1.0.3"
  10903. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10904. />
  10905. </productMenu>
  10906. <productMenu id="quickGuide"
  10907. type="0"
  10908. url=""
  10909. size="1.12MB" >
  10910. </productMenu>
  10911. <productMenu id="userGuide"
  10912. type="1"
  10913. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10914. size="2.0MB" >
  10915. </productMenu>
  10916. <productMenu id="videoGuide"
  10917. type="0"
  10918. url=""
  10919. size="3.41MB" >
  10920. </productMenu>
  10921. <productMenu id="volume"
  10922. type="16" >
  10923. </productMenu>
  10924. <productMenu id="volume+"
  10925. type="2"
  10926. url="0x6004" >
  10927. </productMenu>
  10928. <productMenu id="soundMode"
  10929. type="0" >
  10930. </productMenu>
  10931. <productMenu id="battery"
  10932. type="1" >
  10933. </productMenu>
  10934. <productID id="6A82"
  10935. />
  10936. <productGroupable type="0"
  10937. />
  10938. </product>
  10939. <product id="iCon"
  10940. name="iCon"
  10941. series="50"
  10942. latestVersion="1.2"
  10943. show = "0" >
  10944. <productMenu id="protocol"
  10945. type="2" >
  10946. </productMenu>
  10947. <productMenu id="alexa"
  10948. type="0" >
  10949. </productMenu>
  10950. <productMenu id="wa"
  10951. type="0" >
  10952. </productMenu>
  10953. <productMenu id="sip"
  10954. type="1" >
  10955. </productMenu>
  10956. <productMenu id="led"
  10957. type="3" >
  10958. </productMenu>
  10959. <productMenu id="meshIntercom"
  10960. type="20" >
  10961. </productMenu>
  10962. <productMenu id="meshIntercom+"
  10963. type="3"
  10964. url="0" >
  10965. <productMenuType version="1.0.9"
  10966. type="2"
  10967. />
  10968. </productMenu>
  10969. <productMenu id="bluetoothIntercom"
  10970. type="1" >
  10971. </productMenu>
  10972. <productMenu id="phone"
  10973. type="1" >
  10974. </productMenu>
  10975. <productMenu id="music"
  10976. type="1" >
  10977. </productMenu>
  10978. <productMenu id="fmradio"
  10979. type="1" >
  10980. </productMenu>
  10981. <productMenu id="deviceSetting"
  10982. type="1"
  10983. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10984. <productMenuURL version="1.0.9"
  10985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10986. />
  10987. </productMenu>
  10988. <productMenu id="quickGuide"
  10989. type="1"
  10990. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10991. size="344KB" >
  10992. </productMenu>
  10993. <productMenu id="userGuide"
  10994. type="1"
  10995. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10996. size="3.41MB" >
  10997. </productMenu>
  10998. <productMenu id="volume"
  10999. type="11" >
  11000. </productMenu>
  11001. <productMenu id="battery"
  11002. type="1" >
  11003. </productMenu>
  11004. <productID id="3900"
  11005. />
  11006. <productGroupable type="0"
  11007. />
  11008. </product>
  11009. <product id="ICONHelmLinkSL"
  11010. name="ICON HelmLink SL"
  11011. series="50"
  11012. latestVersion="1.0"
  11013. latestVersionVoicePrompt="1.6"
  11014. show = "-1" >
  11015. <productMenu id="protocol"
  11016. type="2" >
  11017. </productMenu>
  11018. <productMenu id="alexa"
  11019. type="0" >
  11020. </productMenu>
  11021. <productMenu id="ota"
  11022. type="2" >
  11023. <otaPackages>
  11024. <package
  11025. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  11026. size="2945812"
  11027. />
  11028. </otaPackages>
  11029. </productMenu>
  11030. <productMenu id="wa"
  11031. type="0" >
  11032. </productMenu>
  11033. <productMenu id="meshIntercom"
  11034. type="30" >
  11035. </productMenu>
  11036. <productMenu id="meshIntercom+"
  11037. type="3"
  11038. url="2" >
  11039. </productMenu>
  11040. <productMenu id="waveIntercom"
  11041. type="1" >
  11042. </productMenu>
  11043. <productMenu id="phone"
  11044. type="1" >
  11045. </productMenu>
  11046. <productMenu id="music"
  11047. type="1" >
  11048. </productMenu>
  11049. <productMenu id="musicSharing"
  11050. type="0" >
  11051. </productMenu>
  11052. <productMenu id="deviceSetting"
  11053. type="1"
  11054. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  11055. </productMenu>
  11056. <productMenu id="quickGuide"
  11057. type="0"
  11058. url=""
  11059. size="1.12MB" >
  11060. </productMenu>
  11061. <productMenu id="userGuide"
  11062. type="1"
  11063. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  11064. size="2.0MB" >
  11065. </productMenu>
  11066. <productMenu id="volume"
  11067. type="12" >
  11068. </productMenu>
  11069. <productMenu id="battery"
  11070. type="1" >
  11071. </productMenu>
  11072. <productID id="6842"
  11073. />
  11074. <productGroupable type="0"
  11075. />
  11076. </product>
  11077. <product id="SC2"
  11078. name="SC2"
  11079. series="50"
  11080. latestVersion="2.4"
  11081. show = "0" >
  11082. <productMenu id="protocol"
  11083. type="2" >
  11084. </productMenu>
  11085. <productMenu id="alexa"
  11086. type="0" >
  11087. </productMenu>
  11088. <productMenu id="wa"
  11089. type="0" >
  11090. </productMenu>
  11091. <productMenu id="sip"
  11092. type="1" >
  11093. </productMenu>
  11094. <productMenu id="meshIntercom"
  11095. type="30" >
  11096. <productMenuType version="2.0.3"
  11097. type="20"
  11098. />
  11099. </productMenu>
  11100. <productMenu id="meshIntercom+"
  11101. type="3"
  11102. url="2" >
  11103. <productMenuType version="2.2.9"
  11104. type="2"
  11105. />
  11106. <productMenuURL version="2.0.3"
  11107. url="0"
  11108. />
  11109. </productMenu>
  11110. <productMenu id="waveIntercom"
  11111. type="1" >
  11112. <productMenuType version="2.2.9"
  11113. type="0"
  11114. />
  11115. </productMenu>
  11116. <productMenu id="bluetoothIntercom"
  11117. type="1" >
  11118. </productMenu>
  11119. <productMenu id="phone"
  11120. type="1" >
  11121. </productMenu>
  11122. <productMenu id="music"
  11123. type="1" >
  11124. </productMenu>
  11125. <productMenu id="fmradio"
  11126. type="1" >
  11127. </productMenu>
  11128. <productMenu id="deviceSetting"
  11129. type="1"
  11130. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11131. <productMenuURL version="2.3.9"
  11132. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11133. />
  11134. <productMenuURL version="2.2.9"
  11135. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11136. />
  11137. <productMenuURL version="2.1"
  11138. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11139. />
  11140. <productMenuURL version="2.0.3"
  11141. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11142. />
  11143. </productMenu>
  11144. <productMenu id="quickGuide"
  11145. type="1"
  11146. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11147. size="934KB" >
  11148. </productMenu>
  11149. <productMenu id="userGuide"
  11150. type="1"
  11151. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11152. size="1.14MB" >
  11153. </productMenu>
  11154. <productMenu id="volume"
  11155. type="11" >
  11156. </productMenu>
  11157. <productMenu id="battery"
  11158. type="1" >
  11159. </productMenu>
  11160. <productID id="3217"
  11161. />
  11162. <productGroupable type="0"
  11163. />
  11164. </product>
  11165. <product id="SC2"
  11166. name="SC2"
  11167. series="50"
  11168. latestVersion="1.5"
  11169. show = "0" >
  11170. <productMenu id="protocol"
  11171. type="2" >
  11172. </productMenu>
  11173. <productMenu id="alexa"
  11174. type="0" >
  11175. </productMenu>
  11176. <productMenu id="wa"
  11177. type="0" >
  11178. </productMenu>
  11179. <productMenu id="sip"
  11180. type="1" >
  11181. </productMenu>
  11182. <productMenu id="meshIntercom"
  11183. type="30" >
  11184. <productMenuType version="1.1.4"
  11185. type="20"
  11186. />
  11187. </productMenu>
  11188. <productMenu id="meshIntercom+"
  11189. type="3"
  11190. url="2" >
  11191. <productMenuType version="1.3.9"
  11192. type="2"
  11193. />
  11194. <productMenuURL version="1.1.4"
  11195. url="0"
  11196. />
  11197. </productMenu>
  11198. <productMenu id="waveIntercom"
  11199. type="1" >
  11200. <productMenuType version="1.3.9"
  11201. type="0"
  11202. />
  11203. </productMenu>
  11204. <productMenu id="bluetoothIntercom"
  11205. type="1" >
  11206. </productMenu>
  11207. <productMenu id="phone"
  11208. type="1" >
  11209. </productMenu>
  11210. <productMenu id="music"
  11211. type="1" >
  11212. </productMenu>
  11213. <productMenu id="fmradio"
  11214. type="1" >
  11215. </productMenu>
  11216. <productMenu id="deviceSetting"
  11217. type="1"
  11218. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11219. <productMenuURL version="1.4.9"
  11220. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11221. />
  11222. <productMenuURL version="1.3.9"
  11223. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11224. />
  11225. <productMenuURL version="1.2"
  11226. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11227. />
  11228. <productMenuURL version="1.1.4"
  11229. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11230. />
  11231. </productMenu>
  11232. <productMenu id="quickGuide"
  11233. type="1"
  11234. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11235. size="934KB" >
  11236. </productMenu>
  11237. <productMenu id="userGuide"
  11238. type="1"
  11239. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11240. size="1.14MB" >
  11241. </productMenu>
  11242. <productMenu id="volume"
  11243. type="11" >
  11244. </productMenu>
  11245. <productMenu id="battery"
  11246. type="1" >
  11247. </productMenu>
  11248. <productID id="3170"
  11249. />
  11250. <productGroupable type="0"
  11251. />
  11252. </product>
  11253. <product id="HD50S"
  11254. name="H-D Audio 50S"
  11255. series="50"
  11256. latestVersion="1.0.1"
  11257. show = "-1" >
  11258. <productMenu id="protocol"
  11259. type="2" >
  11260. </productMenu>
  11261. <productMenu id="alexa"
  11262. type="0" >
  11263. </productMenu>
  11264. <productMenu id="ota"
  11265. type="0"
  11266. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11267. size="1150234" >
  11268. </productMenu>
  11269. <productMenu id="wa"
  11270. type="1" >
  11271. </productMenu>
  11272. <productMenu id="sip"
  11273. type="1" >
  11274. </productMenu>
  11275. <productMenu id="meshIntercom"
  11276. type="20" >
  11277. </productMenu>
  11278. <productMenu id="meshIntercom+"
  11279. type="3"
  11280. url="0" >
  11281. <productMenuType version="1.0.9"
  11282. type="2"
  11283. />
  11284. </productMenu>
  11285. <productMenu id="bluetoothIntercom"
  11286. type="1" >
  11287. </productMenu>
  11288. <productMenu id="phone"
  11289. type="1" >
  11290. </productMenu>
  11291. <productMenu id="music"
  11292. type="1" >
  11293. </productMenu>
  11294. <productMenu id="fmradio"
  11295. type="1" >
  11296. </productMenu>
  11297. <productMenu id="deviceSetting"
  11298. type="1"
  11299. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11300. <productMenuURL version="1.0.9"
  11301. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11302. />
  11303. </productMenu>
  11304. <productMenu id="quickGuide"
  11305. type="1"
  11306. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11307. size="934KB" >
  11308. </productMenu>
  11309. <productMenu id="userGuide"
  11310. type="1"
  11311. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11312. size="1.14MB" >
  11313. </productMenu>
  11314. <productMenu id="volume"
  11315. type="11" >
  11316. </productMenu>
  11317. <productMenu id="battery"
  11318. type="1" >
  11319. </productMenu>
  11320. <productID id="3156"
  11321. />
  11322. <productGroupable type="0"
  11323. />
  11324. </product>
  11325. <product id="HD50S"
  11326. name="H-D Audio 50S"
  11327. series="50"
  11328. latestVersion="2.0.2"
  11329. show = "0" >
  11330. <productMenu id="protocol"
  11331. type="2" >
  11332. </productMenu>
  11333. <productMenu id="alexa"
  11334. type="0" >
  11335. </productMenu>
  11336. <productMenu id="ota"
  11337. type="0"
  11338. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11339. size="1150234" >
  11340. </productMenu>
  11341. <productMenu id="wa"
  11342. type="1" >
  11343. </productMenu>
  11344. <productMenu id="sip"
  11345. type="1" >
  11346. </productMenu>
  11347. <productMenu id="meshIntercom"
  11348. type="20" >
  11349. </productMenu>
  11350. <productMenu id="meshIntercom+"
  11351. type="3"
  11352. url="0" >
  11353. <productMenuType version="2.0.9"
  11354. type="2"
  11355. />
  11356. </productMenu>
  11357. <productMenu id="bluetoothIntercom"
  11358. type="1" >
  11359. </productMenu>
  11360. <productMenu id="phone"
  11361. type="1" >
  11362. </productMenu>
  11363. <productMenu id="music"
  11364. type="1" >
  11365. </productMenu>
  11366. <productMenu id="fmradio"
  11367. type="1" >
  11368. </productMenu>
  11369. <productMenu id="deviceSetting"
  11370. type="1"
  11371. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11372. <productMenuURL version="2.0.9"
  11373. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11374. />
  11375. </productMenu>
  11376. <productMenu id="quickGuide"
  11377. type="1"
  11378. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11379. size="934KB" >
  11380. </productMenu>
  11381. <productMenu id="userGuide"
  11382. type="1"
  11383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11384. size="1.14MB" >
  11385. </productMenu>
  11386. <productMenu id="volume"
  11387. type="11" >
  11388. </productMenu>
  11389. <productMenu id="battery"
  11390. type="1" >
  11391. </productMenu>
  11392. <productID id="3213"
  11393. />
  11394. <productGroupable type="0"
  11395. />
  11396. </product>
  11397. <product id="HD50C"
  11398. name="H-D Audio 50C"
  11399. series="50"
  11400. latestVersion="1.0.1"
  11401. show = "0" >
  11402. <productMenu id="protocol"
  11403. type="2" >
  11404. </productMenu>
  11405. <productMenu id="ota"
  11406. type="0" >
  11407. </productMenu>
  11408. <productMenu id="wa"
  11409. type="1" >
  11410. </productMenu>
  11411. <productMenu id="sip"
  11412. type="1" >
  11413. </productMenu>
  11414. <productMenu id="meshIntercom"
  11415. type="20" >
  11416. </productMenu>
  11417. <productMenu id="meshIntercom+"
  11418. type="3"
  11419. url="0" >
  11420. <productMenuType version="1.0.9"
  11421. type="2"
  11422. />
  11423. </productMenu>
  11424. <productMenu id="bluetoothIntercom"
  11425. type="1" >
  11426. </productMenu>
  11427. <productMenu id="phone"
  11428. type="1" >
  11429. </productMenu>
  11430. <productMenu id="music"
  11431. type="1" >
  11432. </productMenu>
  11433. <productMenu id="fmradio"
  11434. type="1" >
  11435. </productMenu>
  11436. <productMenu id="deviceSetting"
  11437. type="1"
  11438. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11439. <productMenuURL version="1.0.9"
  11440. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11441. />
  11442. </productMenu>
  11443. <productMenu id="quickGuide"
  11444. type="1"
  11445. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11446. size="344KB" >
  11447. </productMenu>
  11448. <productMenu id="userGuide"
  11449. type="1"
  11450. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11451. size="3.41MB" >
  11452. </productMenu>
  11453. <productMenu id="volume"
  11454. type="11" >
  11455. </productMenu>
  11456. <productMenu id="battery"
  11457. type="1" >
  11458. </productMenu>
  11459. <productID id="3240"
  11460. />
  11461. <productGroupable type="0"
  11462. />
  11463. </product>
  11464. <product id="HD50S"
  11465. name="FURY N04"
  11466. series="Helmet"
  11467. latestVersion="1.0"
  11468. show = "0" >
  11469. <productMenu id="protocol"
  11470. type="2" >
  11471. </productMenu>
  11472. <productMenu id="alexa"
  11473. type="0" >
  11474. </productMenu>
  11475. <productMenu id="ota"
  11476. type="0" >
  11477. </productMenu>
  11478. <productMenu id="wa"
  11479. type="0" >
  11480. </productMenu>
  11481. <productMenu id="meshIntercom"
  11482. type="20" >
  11483. </productMenu>
  11484. <productMenu id="meshIntercom+"
  11485. type="3"
  11486. url="0" >
  11487. <productMenuType version="1.0.9"
  11488. type="2"
  11489. />
  11490. </productMenu>
  11491. <productMenu id="phone"
  11492. type="1" >
  11493. </productMenu>
  11494. <productMenu id="music"
  11495. type="1" >
  11496. </productMenu>
  11497. <productMenu id="fmradio"
  11498. type="1" >
  11499. </productMenu>
  11500. <productMenu id="deviceSetting"
  11501. type="1"
  11502. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  11503. <productMenuURL version="1.0.9"
  11504. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  11505. />
  11506. </productMenu>
  11507. <productMenu id="quickGuide"
  11508. type="1"
  11509. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  11510. size="1.12MB" >
  11511. </productMenu>
  11512. <productMenu id="userGuide"
  11513. type="1"
  11514. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  11515. size="2.0MB" >
  11516. </productMenu>
  11517. <productMenu id="volume"
  11518. type="13" >
  11519. </productMenu>
  11520. <productMenu id="battery"
  11521. type="1" >
  11522. </productMenu>
  11523. <productID id="5553"
  11524. />
  11525. <productGroupable type="0"
  11526. />
  11527. </product>
  11528. <product id="XCOM3Pro"
  11529. name="X-COM3 Pro"
  11530. series="50"
  11531. latestVersion="1.1"
  11532. show = "0" >
  11533. <productMenu id="protocol"
  11534. type="2" >
  11535. </productMenu>
  11536. <productMenu id="alexa"
  11537. type="0" >
  11538. </productMenu>
  11539. <productMenu id="ota"
  11540. type="0" >
  11541. </productMenu>
  11542. <productMenu id="wa"
  11543. type="0" >
  11544. </productMenu>
  11545. <productMenu id="sip"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="meshIntercom"
  11549. type="30" >
  11550. </productMenu>
  11551. <productMenu id="meshIntercom+"
  11552. type="3"
  11553. url="2" >
  11554. <productMenuType version="1.1"
  11555. type="2"
  11556. />
  11557. </productMenu>
  11558. <productMenu id="waveIntercom"
  11559. type="1" >
  11560. <productMenuType version="1.1"
  11561. type="0"
  11562. />
  11563. </productMenu>
  11564. <productMenu id="bluetoothIntercom"
  11565. type="1" >
  11566. </productMenu>
  11567. <productMenu id="phone"
  11568. type="1" >
  11569. </productMenu>
  11570. <productMenu id="music"
  11571. type="1" >
  11572. </productMenu>
  11573. <productMenu id="fmradio"
  11574. type="1" >
  11575. </productMenu>
  11576. <productMenu id="deviceSetting"
  11577. type="1"
  11578. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  11579. <productMenuURL version="1.1"
  11580. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  11581. />
  11582. </productMenu>
  11583. <productMenu id="quickGuide"
  11584. type="0"
  11585. url=""
  11586. size="344KB" >
  11587. </productMenu>
  11588. <productMenu id="userGuide"
  11589. type="1"
  11590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  11591. size="3.41MB" >
  11592. </productMenu>
  11593. <productMenu id="volume"
  11594. type="11" >
  11595. </productMenu>
  11596. <productMenu id="battery"
  11597. type="1" >
  11598. </productMenu>
  11599. <productID id="321A"
  11600. />
  11601. <productGroupable type="0"
  11602. />
  11603. </product>
  11604. <product id="XCOM3"
  11605. name="X-COM3"
  11606. series="20"
  11607. latestVersion="1.0"
  11608. show = "0" >
  11609. <productMenu id="protocol"
  11610. type="2" >
  11611. </productMenu>
  11612. <productMenu id="sip"
  11613. type="1" >
  11614. </productMenu>
  11615. <productMenu id="bluetoothIntercom"
  11616. type="1" >
  11617. </productMenu>
  11618. <productMenu id="phone"
  11619. type="1" >
  11620. </productMenu>
  11621. <productMenu id="music"
  11622. type="1" >
  11623. </productMenu>
  11624. <productMenu id="fmradio"
  11625. type="1" >
  11626. </productMenu>
  11627. <productMenu id="deviceSetting"
  11628. type="1"
  11629. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11630. </productMenu>
  11631. <productMenu id="quickGuide"
  11632. type="0"
  11633. url=""
  11634. size="934KB" >
  11635. </productMenu>
  11636. <productMenu id="userGuide"
  11637. type="1"
  11638. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11639. size="1.14MB" >
  11640. </productMenu>
  11641. <productMenu id="volume"
  11642. type="15" >
  11643. </productMenu>
  11644. <productID id="3410"
  11645. />
  11646. <productGroupable type="0"
  11647. />
  11648. </product>
  11649. <product id="X-COM2"
  11650. name="X-COM2"
  11651. series="20"
  11652. latestVersion="1.0.5"
  11653. show = "0" >
  11654. <productMenu id="protocol"
  11655. type="0">
  11656. </productMenu>
  11657. <productMenu id="sip"
  11658. type="1" >
  11659. </productMenu>
  11660. <productMenu id="bluetoothIntercom"
  11661. type="1" >
  11662. </productMenu>
  11663. <productMenu id="intercomSetting"
  11664. type="1" >
  11665. </productMenu>
  11666. <productMenu id="phone"
  11667. type="2" >
  11668. </productMenu>
  11669. <productMenu id="fmradio"
  11670. type="3" >
  11671. </productMenu>
  11672. <productMenu id="deviceSetting"
  11673. type="1"
  11674. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11675. </productMenu>
  11676. <productMenu id="quickGuide"
  11677. type="1"
  11678. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11679. size="796KB" >
  11680. </productMenu>
  11681. <productMenu id="userGuide"
  11682. type="1"
  11683. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11684. size="1.90MB" >
  11685. </productMenu>
  11686. <productID id="2030"
  11687. />
  11688. <productGroupable type="1"
  11689. />
  11690. </product>
  11691. <product id="AVAABC"
  11692. name="AVA ABC"
  11693. series="SPIDER"
  11694. latestVersion="1.1"
  11695. show = "0" >
  11696. <productMenu id="protocol"
  11697. type="2" >
  11698. </productMenu>
  11699. <productMenu id="alexa"
  11700. type="0" >
  11701. </productMenu>
  11702. <productMenu id="ota"
  11703. type="0" >
  11704. <productMenuType version="1.0"
  11705. type="0"
  11706. />
  11707. <otaPackages>
  11708. <package
  11709. url="https://api.sena.com/support/OTA/"
  11710. size="2945812"
  11711. />
  11712. </otaPackages>
  11713. </productMenu>
  11714. <productMenu id="wa"
  11715. type="0" >
  11716. </productMenu>
  11717. <productMenu id="meshIntercom"
  11718. type="30" >
  11719. <productMenuType version="1.0"
  11720. type="20"
  11721. />
  11722. </productMenu>
  11723. <productMenu id="meshIntercom+"
  11724. type="3"
  11725. url="2" >
  11726. <productMenuType version="1.0"
  11727. type="2"
  11728. />
  11729. <productMenuURL version="1.0"
  11730. url="0"
  11731. />
  11732. </productMenu>
  11733. <productMenu id="waveIntercom"
  11734. type="1" >
  11735. <productMenuType version="1.0"
  11736. type="0"
  11737. />
  11738. </productMenu>
  11739. <productMenu id="phone"
  11740. type="1" >
  11741. </productMenu>
  11742. <productMenu id="music"
  11743. type="1" >
  11744. </productMenu>
  11745. <productMenu id="musicSharing"
  11746. type="0" >
  11747. </productMenu>
  11748. <productMenu id="deviceSetting"
  11749. type="1"
  11750. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11751. <productMenuURL version="1.0"
  11752. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11753. />
  11754. </productMenu>
  11755. <productMenu id="quickGuide"
  11756. type="1"
  11757. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11758. size="1.12MB" >
  11759. </productMenu>
  11760. <productMenu id="userGuide"
  11761. type="1"
  11762. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11763. size="2.0MB" >
  11764. </productMenu>
  11765. <productMenu id="volume"
  11766. type="12" >
  11767. </productMenu>
  11768. <productMenu id="battery"
  11769. type="1" >
  11770. </productMenu>
  11771. <productID id="6808"
  11772. />
  11773. <productGroupable type="0"
  11774. />
  11775. </product>
  11776. <product id="ADVANCEProCOM2"
  11777. name="ADVANCE ProCOM 2"
  11778. series="Helmet"
  11779. latestVersion="0.5"
  11780. latestVersionVoicePrompt="0.3"
  11781. show = "-1" >
  11782. <productMenu id="protocol"
  11783. type="2" >
  11784. </productMenu>
  11785. <productMenu id="ota"
  11786. type="2" >
  11787. <otaLanguages>
  11788. <otaLanguage
  11789. id="0"
  11790. name="English"
  11791. package="0"
  11792. />
  11793. <otaLanguage
  11794. id="0"
  11795. name="Français"
  11796. package="1"
  11797. />
  11798. <otaLanguage
  11799. id="0"
  11800. name="Español"
  11801. package="2"
  11802. />
  11803. <otaLanguage
  11804. id="0"
  11805. name="Italiano"
  11806. package="3"
  11807. />
  11808. <otaLanguage
  11809. id="0"
  11810. name="Deutsch"
  11811. package="4"
  11812. />
  11813. <otaLanguage
  11814. id="0"
  11815. name="Nederlands"
  11816. package="5"
  11817. />
  11818. <otaLanguage
  11819. id="0"
  11820. name="Русский"
  11821. package="6"
  11822. />
  11823. <otaLanguage
  11824. id="0"
  11825. name="简体中文"
  11826. package="7"
  11827. />
  11828. <otaLanguage
  11829. id="0"
  11830. name="한국어"
  11831. package="8"
  11832. />
  11833. <otaLanguage
  11834. id="0"
  11835. name="日本語"
  11836. package="9"
  11837. />
  11838. <otaLanguage
  11839. id="0"
  11840. name="Suomi"
  11841. package="10"
  11842. />
  11843. <otaLanguage
  11844. id="0"
  11845. name="Polski"
  11846. package="11"
  11847. />
  11848. </otaLanguages>
  11849. <otaPackages>
  11850. <package
  11851. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11852. size="5183988"
  11853. />
  11854. <package
  11855. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11856. size="5183988"
  11857. />
  11858. <package
  11859. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11860. size="5183988"
  11861. />
  11862. <package
  11863. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11864. size="5183988"
  11865. />
  11866. <package
  11867. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11868. size="5183988"
  11869. />
  11870. <package
  11871. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11872. size="5183988"
  11873. />
  11874. <package
  11875. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11876. size="5183988"
  11877. />
  11878. <package
  11879. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11880. size="5183988"
  11881. />
  11882. <package
  11883. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11884. size="5183988"
  11885. />
  11886. <package
  11887. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11888. size="5183988"
  11889. />
  11890. <package
  11891. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11892. size="5183988"
  11893. />
  11894. <package
  11895. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11896. size="5183988"
  11897. />
  11898. </otaPackages>
  11899. </productMenu>
  11900. <productMenu id="wa"
  11901. type="0" >
  11902. </productMenu>
  11903. <productMenu id="meshIntercom"
  11904. type="30" >
  11905. </productMenu>
  11906. <productMenu id="meshIntercom+"
  11907. type="3"
  11908. url="2" >
  11909. </productMenu>
  11910. <productMenu id="waveIntercom"
  11911. type="1" >
  11912. </productMenu>
  11913. <productMenu id="fmradio"
  11914. type="1" >
  11915. </productMenu>
  11916. <productMenu id="phone"
  11917. type="0" >
  11918. </productMenu>
  11919. <productMenu id="music"
  11920. type="1" >
  11921. </productMenu>
  11922. <productMenu id="musicSharing"
  11923. type="0" >
  11924. </productMenu>
  11925. <productMenu id="deviceSetting"
  11926. type="1"
  11927. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11928. </productMenu>
  11929. <productMenu id="quickGuide"
  11930. type="0"
  11931. url=""
  11932. size="1.12MB" >
  11933. </productMenu>
  11934. <productMenu id="userGuide"
  11935. type="1"
  11936. url=""
  11937. size="2.0MB" >
  11938. </productMenu>
  11939. <productMenu id="videoGuide"
  11940. type="0"
  11941. url=""
  11942. size="3.41MB" >
  11943. </productMenu>
  11944. <productMenu id="connectGuide"
  11945. type="1"
  11946. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11947. size="1.12MB" >
  11948. </productMenu>
  11949. <productMenu id="volume"
  11950. type="16" >
  11951. </productMenu>
  11952. <productMenu id="battery"
  11953. type="1" >
  11954. </productMenu>
  11955. <productID id="6A85"
  11956. />
  11957. <productGroupable type="0"
  11958. />
  11959. </product>
  11960. <product id="TRIUMPH60X"
  11961. name="TRIUMPH 60X"
  11962. series="60"
  11963. latestVersion="0.3"
  11964. latestVersionMesh="0.19"
  11965. latestVersionVoicePrompt="1.8"
  11966. show = "-1" >
  11967. <productMenu id="protocol"
  11968. type="2" >
  11969. </productMenu>
  11970. <productMenu id="ota"
  11971. type="2" >
  11972. <otaLanguages>
  11973. <otaLanguage
  11974. id="0"
  11975. name="English"
  11976. package="0"
  11977. />
  11978. <otaLanguage
  11979. id="0"
  11980. name="Français"
  11981. package="1"
  11982. />
  11983. <otaLanguage
  11984. id="0"
  11985. name="Español"
  11986. package="2"
  11987. />
  11988. <otaLanguage
  11989. id="0"
  11990. name="Italiano"
  11991. package="3"
  11992. />
  11993. <otaLanguage
  11994. id="0"
  11995. name="Deutsch"
  11996. package="4"
  11997. />
  11998. <otaLanguage
  11999. id="0"
  12000. name="Nederlands"
  12001. package="5"
  12002. />
  12003. <otaLanguage
  12004. id="0"
  12005. name="Русский"
  12006. package="6"
  12007. />
  12008. <otaLanguage
  12009. id="0"
  12010. name="简体中文"
  12011. package="7"
  12012. />
  12013. <otaLanguage
  12014. id="0"
  12015. name="한국어"
  12016. package="8"
  12017. />
  12018. <otaLanguage
  12019. id="0"
  12020. name="日本語"
  12021. package="9"
  12022. />
  12023. <otaLanguage
  12024. id="0"
  12025. name="Suomi"
  12026. package="10"
  12027. />
  12028. <otaLanguage
  12029. id="0"
  12030. name="Polski"
  12031. package="11"
  12032. />
  12033. </otaLanguages>
  12034. <otaPackages>
  12035. <package
  12036. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0.img"
  12037. size="5183988"
  12038. />
  12039. <package
  12040. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fr-FR.img"
  12041. size="5183988"
  12042. />
  12043. <package
  12044. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-es-ES.img"
  12045. size="5183988"
  12046. />
  12047. <package
  12048. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-it-IT.img"
  12049. size="5183988"
  12050. />
  12051. <package
  12052. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-de-DE.img"
  12053. size="5183988"
  12054. />
  12055. <package
  12056. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-nl-NL.img"
  12057. size="5183988"
  12058. />
  12059. <package
  12060. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ru-RU.img"
  12061. size="5183988"
  12062. />
  12063. <package
  12064. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-cmn-CN.img"
  12065. size="5183988"
  12066. />
  12067. <package
  12068. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ko-KR.img"
  12069. size="5183988"
  12070. />
  12071. <package
  12072. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ja-JP.img"
  12073. size="5183988"
  12074. />
  12075. <package
  12076. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fi-FI.img"
  12077. size="5183988"
  12078. />
  12079. <package
  12080. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-pl-PL.img"
  12081. size="5183988"
  12082. />
  12083. </otaPackages>
  12084. </productMenu>
  12085. <productMenu id="wa"
  12086. type="0" >
  12087. </productMenu>
  12088. <productMenu id="sip"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="led"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="illusion"
  12095. type="1" >
  12096. </productMenu>
  12097. <productMenu id="meshIntercom"
  12098. type="30" >
  12099. </productMenu>
  12100. <productMenu id="meshIntercom+"
  12101. type="3"
  12102. url="2" >
  12103. </productMenu>
  12104. <productMenu id="bluetoothIntercom"
  12105. type="1" >
  12106. </productMenu>
  12107. <productMenu id="fmradio"
  12108. type="1"
  12109. url="1" >
  12110. </productMenu>
  12111. <productMenu id="mic"
  12112. type="0" >
  12113. </productMenu>
  12114. <productMenu id="phone"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="music"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="musicSharing"
  12121. type="0" >
  12122. </productMenu>
  12123. <productMenu id="deviceSetting"
  12124. type="1"
  12125. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  12126. </productMenu>
  12127. <productMenu id="quickGuide"
  12128. type="0"
  12129. url=""
  12130. size="1.12MB" >
  12131. </productMenu>
  12132. <productMenu id="userGuide"
  12133. type="1"
  12134. url=""
  12135. size="2.0MB" >
  12136. </productMenu>
  12137. <productMenu id="videoGuide"
  12138. type="0"
  12139. url=""
  12140. size="3.41MB" >
  12141. </productMenu>
  12142. <productMenu id="keySettings"
  12143. type="1"
  12144. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  12145. </productMenu>
  12146. <productMenu id="volume"
  12147. type="13" >
  12148. </productMenu>
  12149. <productMenu id="volume+"
  12150. type="2"
  12151. url="0x6004" >
  12152. </productMenu>
  12153. <productMenu id="battery"
  12154. type="1" >
  12155. </productMenu>
  12156. <productID id="6A1C"
  12157. />
  12158. <productGroupable type="0"
  12159. />
  12160. </product>
  12161. <product id="Triumph_50S"
  12162. name="Triumph 50S"
  12163. series="50"
  12164. latestVersion="1.5"
  12165. show = "0" >
  12166. <productMenu id="protocol"
  12167. type="2" >
  12168. </productMenu>
  12169. <productMenu id="alexa"
  12170. type="0" >
  12171. </productMenu>
  12172. <productMenu id="ota"
  12173. type="0"
  12174. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12175. size="1150234" >
  12176. </productMenu>
  12177. <productMenu id="wa"
  12178. type="1" >
  12179. </productMenu>
  12180. <productMenu id="sip"
  12181. type="1" >
  12182. </productMenu>
  12183. <productMenu id="meshIntercom"
  12184. type="20" >
  12185. </productMenu>
  12186. <productMenu id="bluetoothIntercom"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="meshIntercom+"
  12190. type="3"
  12191. url="2" >
  12192. <productMenuType version="1.2.9"
  12193. type="2"
  12194. />
  12195. <productMenuURL version="1.2.9"
  12196. url="0"
  12197. />
  12198. </productMenu>
  12199. <productMenu id="waveIntercom"
  12200. type="1" >
  12201. <productMenuType version="1.2.9"
  12202. type="0"
  12203. />
  12204. </productMenu>
  12205. <productMenu id="phone"
  12206. type="1" >
  12207. </productMenu>
  12208. <productMenu id="music"
  12209. type="1" >
  12210. </productMenu>
  12211. <productMenu id="fmradio"
  12212. type="1" >
  12213. </productMenu>
  12214. <productMenu id="deviceSetting"
  12215. type="1"
  12216. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12217. <productMenuURL version="1.2.9"
  12218. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  12219. />
  12220. <productMenuURL version="1.0"
  12221. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  12222. />
  12223. </productMenu>
  12224. <productMenu id="quickGuide"
  12225. type="1"
  12226. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  12227. size="934KB" >
  12228. </productMenu>
  12229. <productMenu id="userGuide"
  12230. type="1"
  12231. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  12232. size="1.14MB" >
  12233. </productMenu>
  12234. <productMenu id="volume"
  12235. type="11" >
  12236. </productMenu>
  12237. <productMenu id="battery"
  12238. type="1" >
  12239. </productMenu>
  12240. <productID id="3264"
  12241. />
  12242. <productGroupable type="0"
  12243. />
  12244. </product>
  12245. <product id="RE50S"
  12246. name="RE 50S"
  12247. series="50"
  12248. latestVersion="2.7"
  12249. show = "0" >
  12250. <productMenu id="protocol"
  12251. type="2" >
  12252. </productMenu>
  12253. <productMenu id="alexa"
  12254. type="0" >
  12255. </productMenu>
  12256. <productMenu id="ota"
  12257. type="0"
  12258. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12259. size="1150234" >
  12260. </productMenu>
  12261. <productMenu id="wa"
  12262. type="1" >
  12263. </productMenu>
  12264. <productMenu id="sip"
  12265. type="1" >
  12266. </productMenu>
  12267. <productMenu id="meshIntercom"
  12268. type="30" >
  12269. </productMenu>
  12270. <productMenu id="meshIntercom+"
  12271. type="3"
  12272. url="2" >
  12273. <productMenuType version="2.5"
  12274. type="2"
  12275. />
  12276. </productMenu>
  12277. <productMenu id="waveIntercom"
  12278. type="1" >
  12279. <productMenuType version="2.5"
  12280. type="0"
  12281. />
  12282. </productMenu>
  12283. <productMenu id="bluetoothIntercom"
  12284. type="1" >
  12285. </productMenu>
  12286. <productMenu id="phone"
  12287. type="1" >
  12288. </productMenu>
  12289. <productMenu id="music"
  12290. type="1" >
  12291. </productMenu>
  12292. <productMenu id="fmradio"
  12293. type="1" >
  12294. </productMenu>
  12295. <productMenu id="deviceSetting"
  12296. type="1"
  12297. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12298. <productMenuURL version="2.5.9"
  12299. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  12300. />
  12301. </productMenu>
  12302. <productMenu id="quickGuide"
  12303. type="1"
  12304. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  12305. size="934KB" >
  12306. </productMenu>
  12307. <productMenu id="userGuide"
  12308. type="1"
  12309. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  12310. size="1.14MB" >
  12311. </productMenu>
  12312. <productMenu id="videoGuide"
  12313. type="0"
  12314. url=""
  12315. size="3.41MB" >
  12316. </productMenu>
  12317. <productMenu id="volume"
  12318. type="11" >
  12319. </productMenu>
  12320. <productMenu id="battery"
  12321. type="1" >
  12322. </productMenu>
  12323. <productID id="321C"
  12324. />
  12325. <productGroupable type="0"
  12326. />
  12327. </product>
  12328. <product id="BMW_HELMET_II_U1"
  12329. name="BMW HELMET II U1"
  12330. series="50"
  12331. latestVersion="1.0"
  12332. show = "0" >
  12333. <productMenu id="protocol"
  12334. type="2" >
  12335. </productMenu>
  12336. <productMenu id="alexa"
  12337. type="0" >
  12338. </productMenu>
  12339. <productMenu id="sip"
  12340. type="1" >
  12341. </productMenu>
  12342. <productMenu id="meshIntercom"
  12343. type="20" >
  12344. </productMenu>
  12345. <productMenu id="bluetoothIntercom"
  12346. type="1" >
  12347. </productMenu>
  12348. <productMenu id="bluetoothIntercom2"
  12349. type="1" >
  12350. </productMenu>
  12351. <productMenu id="phone"
  12352. type="1" >
  12353. </productMenu>
  12354. <productMenu id="music"
  12355. type="1" >
  12356. </productMenu>
  12357. <productMenu id="fmradio"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="deviceSetting"
  12361. type="1"
  12362. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  12363. </productMenu>
  12364. <productMenu id="quickGuide"
  12365. type="1"
  12366. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  12367. size="934KB" >
  12368. </productMenu>
  12369. <productMenu id="userGuide"
  12370. type="1"
  12371. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  12372. size="1.14MB" >
  12373. </productMenu>
  12374. <productMenu id="volume"
  12375. type="11" >
  12376. </productMenu>
  12377. <productMenu id="battery"
  12378. type="1" >
  12379. </productMenu>
  12380. <productID id="3260"
  12381. />
  12382. <productGroupable type="0"
  12383. />
  12384. </product>
  12385. <product id="OUTRUSHR"
  12386. name="CX935"
  12387. series="Helmet"
  12388. latestVersion="2.1"
  12389. show = "-1" >
  12390. <productMenu id="protocol"
  12391. type="3">
  12392. </productMenu>
  12393. <productMenu id="sip"
  12394. type="1" >
  12395. </productMenu>
  12396. <productMenu id="bluetoothIntercom"
  12397. type="1" >
  12398. </productMenu>
  12399. <productMenu id="phone"
  12400. type="1" >
  12401. </productMenu>
  12402. <productMenu id="fmradio"
  12403. type="0" >
  12404. </productMenu>
  12405. <productMenu id="deviceSetting"
  12406. type="1"
  12407. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  12408. </productMenu>
  12409. <productMenu id="userGuide"
  12410. type="1"
  12411. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  12412. size="660KB" >
  12413. </productMenu>
  12414. <productID id="5446"
  12415. />
  12416. <productGroupable type="0"
  12417. />
  12418. </product>
  12419. <product id="LSE_01"
  12420. name="LSE-01"
  12421. series="SF"
  12422. latestVersion="1.2.3"
  12423. show = "0" >
  12424. <productMenu id="protocol"
  12425. type="1"
  12426. url="3">
  12427. </productMenu>
  12428. <productMenu id="sip"
  12429. type="1" >
  12430. </productMenu>
  12431. <productMenu id="bluetoothIntercom"
  12432. type="1" >
  12433. </productMenu>
  12434. <productMenu id="phone"
  12435. type="1" >
  12436. </productMenu>
  12437. <productMenu id="music"
  12438. type="1" >
  12439. </productMenu>
  12440. <productMenu id="fmradio"
  12441. type="1" >
  12442. </productMenu>
  12443. <productMenu id="deviceSetting"
  12444. type="1"
  12445. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12446. <productMenuURL version="1.1"
  12447. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  12448. />
  12449. <productMenuURL version="1.0"
  12450. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  12451. />
  12452. </productMenu>
  12453. <productMenu id="quickGuide"
  12454. type="1"
  12455. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  12456. size="607KB" >
  12457. </productMenu>
  12458. <productMenu id="userGuide"
  12459. type="1"
  12460. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  12461. size="1.91MB" >
  12462. </productMenu>
  12463. <productMenu id="volume"
  12464. type="4" >
  12465. </productMenu>
  12466. <productID id="5416"
  12467. />
  12468. <productGroupable type="0"
  12469. />
  12470. </product>
  12471. <product id="AGV_ARK"
  12472. name="AGV ARK"
  12473. series="SF"
  12474. latestVersion="1.0.3"
  12475. show = "0" >
  12476. <productMenu id="protocol"
  12477. type="1"
  12478. url="3">
  12479. </productMenu>
  12480. <productMenu id="sip"
  12481. type="1" >
  12482. </productMenu>
  12483. <productMenu id="bluetoothIntercom"
  12484. type="1" >
  12485. </productMenu>
  12486. <productMenu id="phone"
  12487. type="1" >
  12488. </productMenu>
  12489. <productMenu id="music"
  12490. type="1" >
  12491. </productMenu>
  12492. <productMenu id="fmradio"
  12493. type="1" >
  12494. </productMenu>
  12495. <productMenu id="deviceSetting"
  12496. type="1"
  12497. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12498. </productMenu>
  12499. <productMenu id="quickGuide"
  12500. type="1"
  12501. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  12502. size="607KB" >
  12503. </productMenu>
  12504. <productMenu id="userGuide"
  12505. type="1"
  12506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  12507. size="1.91MB" >
  12508. </productMenu>
  12509. <productMenu id="volume"
  12510. type="4" >
  12511. </productMenu>
  12512. <productID id="5420"
  12513. />
  12514. <productGroupable type="0"
  12515. />
  12516. </product>
  12517. <product id="KLIM_KRIOS"
  12518. name="KLIM Krios"
  12519. series="10"
  12520. latestVersion="1.1.2"
  12521. show = "0" >
  12522. <productMenu id="protocol"
  12523. type="0">
  12524. </productMenu>
  12525. <productMenu id="sip"
  12526. type="1" >
  12527. </productMenu>
  12528. <productMenu id="bluetoothIntercom"
  12529. type="1" >
  12530. </productMenu>
  12531. <productMenu id="phone"
  12532. type="2" >
  12533. </productMenu>
  12534. <productMenu id="fmradio"
  12535. type="3" >
  12536. </productMenu>
  12537. <productMenu id="deviceSetting"
  12538. type="1"
  12539. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  12540. <productMenuURL version="1.0"
  12541. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  12542. />
  12543. </productMenu>
  12544. <productMenu id="quickGuide"
  12545. type="1"
  12546. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  12547. size="649KB" >
  12548. </productMenu>
  12549. <productMenu id="userGuide"
  12550. type="1"
  12551. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  12552. size="1.43MB" >
  12553. </productMenu>
  12554. <productID id="5910"
  12555. />
  12556. <productGroupable type="0"
  12557. />
  12558. </product>
  12559. <product id="POLARIS_SLINGSHOT"
  12560. name="Polaris Slingshot"
  12561. series="10"
  12562. latestVersion="1.1.2"
  12563. show = "0" >
  12564. <productMenu id="protocol"
  12565. type="0">
  12566. </productMenu>
  12567. <productMenu id="sip"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="bluetoothIntercom"
  12571. type="1" >
  12572. </productMenu>
  12573. <productMenu id="phone"
  12574. type="2" >
  12575. </productMenu>
  12576. <productMenu id="fmradio"
  12577. type="3" >
  12578. </productMenu>
  12579. <productMenu id="deviceSetting"
  12580. type="1"
  12581. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  12582. <productMenuURL version="1.0"
  12583. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  12584. />
  12585. </productMenu>
  12586. <productMenu id="quickGuide"
  12587. type="1"
  12588. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  12589. size="689KB" >
  12590. </productMenu>
  12591. <productMenu id="userGuide"
  12592. type="1"
  12593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  12594. size="1.43MB" >
  12595. </productMenu>
  12596. <productID id="5920"
  12597. />
  12598. <productGroupable type="0"
  12599. />
  12600. </product>
  12601. <product id="DWO6"
  12602. name="SEDICI DWO6-PRO"
  12603. series="10"
  12604. latestVersion="1.0.2"
  12605. show = "0" >
  12606. <productMenu id="protocol"
  12607. type="0">
  12608. </productMenu>
  12609. <productMenu id="sip"
  12610. type="1" >
  12611. </productMenu>
  12612. <productMenu id="bluetoothIntercom"
  12613. type="1" >
  12614. </productMenu>
  12615. <productMenu id="phone"
  12616. type="2" >
  12617. </productMenu>
  12618. <productMenu id="fmradio"
  12619. type="3" >
  12620. </productMenu>
  12621. <productMenu id="deviceSetting"
  12622. type="1"
  12623. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12624. </productMenu>
  12625. <productMenu id="quickGuide"
  12626. type="1"
  12627. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12628. size="529KB" >
  12629. </productMenu>
  12630. <productMenu id="userGuide"
  12631. type="1"
  12632. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12633. size="4.09MB" >
  12634. </productMenu>
  12635. <productID id="6112"
  12636. />
  12637. <productGroupable type="0"
  12638. />
  12639. </product>
  12640. <product id="DWO6A"
  12641. name="SEDICI DWO-6"
  12642. series="10"
  12643. latestVersion="1.0.2"
  12644. show = "0" >
  12645. <productMenu id="protocol"
  12646. type="0">
  12647. </productMenu>
  12648. <productMenu id="sip"
  12649. type="1" >
  12650. </productMenu>
  12651. <productMenu id="bluetoothIntercom"
  12652. type="1" >
  12653. </productMenu>
  12654. <productMenu id="phone"
  12655. type="2" >
  12656. </productMenu>
  12657. <productMenu id="fmradio"
  12658. type="3" >
  12659. </productMenu>
  12660. <productMenu id="deviceSetting"
  12661. type="1"
  12662. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12663. </productMenu>
  12664. <productMenu id="quickGuide"
  12665. type="1"
  12666. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12667. size="522KB" >
  12668. </productMenu>
  12669. <productMenu id="userGuide"
  12670. type="1"
  12671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12672. size="2.71MB" >
  12673. </productMenu>
  12674. <productID id="6114"
  12675. />
  12676. <productGroupable type="0"
  12677. />
  12678. </product>
  12679. <product id="3SPLUS"
  12680. name="ZILL"
  12681. series="3"
  12682. latestVersion="1.0.4"
  12683. show = "0" >
  12684. <productMenu id="protocol"
  12685. type="0">
  12686. </productMenu>
  12687. <productMenu id="sip"
  12688. type="1" >
  12689. </productMenu>
  12690. <productMenu id="bluetoothIntercom"
  12691. type="1" >
  12692. </productMenu>
  12693. <productMenu id="deviceSetting"
  12694. type="1"
  12695. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12696. </productMenu>
  12697. <productMenu id="quickGuide"
  12698. type="1"
  12699. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12700. size="842KB" >
  12701. </productMenu>
  12702. <productMenu id="userGuide"
  12703. type="1"
  12704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12705. size="1.02MB" >
  12706. </productMenu>
  12707. <productID id="6335"
  12708. />
  12709. <productGroupable type="0"
  12710. />
  12711. </product>
  12712. <product id="HD50S"
  12713. name="Boom! Audio 30K"
  12714. series="30"
  12715. latestVersion="3.4"
  12716. show = "0" >
  12717. <productMenu id="protocol"
  12718. type="1"
  12719. url="0">
  12720. </productMenu>
  12721. <productMenu id="wa"
  12722. type="0" >
  12723. </productMenu>
  12724. <productMenu id="sip"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="meshIntercom"
  12728. type="20" >
  12729. <productMenuType version="2.9.9"
  12730. type="10"
  12731. />
  12732. </productMenu>
  12733. <productMenu id="bluetoothIntercom"
  12734. type="1" >
  12735. </productMenu>
  12736. <productMenu id="phone"
  12737. type="1" >
  12738. </productMenu>
  12739. <productMenu id="music"
  12740. type="1" >
  12741. </productMenu>
  12742. <productMenu id="fmradio"
  12743. type="1" >
  12744. </productMenu>
  12745. <productMenu id="deviceSetting"
  12746. type="1"
  12747. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12748. <productMenuURL version="3.2"
  12749. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12750. />
  12751. <productMenuURL version="3.0"
  12752. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12753. />
  12754. <productMenuURL version="2.2"
  12755. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12756. />
  12757. </productMenu>
  12758. <productMenu id="quickGuide"
  12759. type="1"
  12760. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12761. size="1.06MB" >
  12762. </productMenu>
  12763. <productMenu id="userGuide"
  12764. type="1"
  12765. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12766. size="3.15MB" >
  12767. </productMenu>
  12768. <productMenu id="volume"
  12769. type="1" >
  12770. </productMenu>
  12771. <productID id="3112"
  12772. />
  12773. <productGroupable type="0"
  12774. />
  12775. </product>
  12776. <product id="HD50S"
  12777. name="Boom! Audio N02"
  12778. series="30"
  12779. latestVersion="3.1"
  12780. show = "0" >
  12781. <productMenu id="protocol"
  12782. type="1"
  12783. url="0">
  12784. </productMenu>
  12785. <productMenu id="wa"
  12786. type="2" >
  12787. </productMenu>
  12788. <productMenu id="sip"
  12789. type="1" >
  12790. </productMenu>
  12791. <productMenu id="meshIntercom"
  12792. type="20" >
  12793. <productMenuType version="2.9.9"
  12794. type="10"
  12795. />
  12796. </productMenu>
  12797. <productMenu id="bluetoothIntercom"
  12798. type="1" >
  12799. </productMenu>
  12800. <productMenu id="phone"
  12801. type="1" >
  12802. </productMenu>
  12803. <productMenu id="music"
  12804. type="1" >
  12805. </productMenu>
  12806. <productMenu id="fmradio"
  12807. type="1" >
  12808. </productMenu>
  12809. <productMenu id="deviceSetting"
  12810. type="1"
  12811. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12812. <productMenuURL version="2.2"
  12813. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12814. />
  12815. </productMenu>
  12816. <productMenu id="quickGuide"
  12817. type="1"
  12818. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12819. size="1.06MB" >
  12820. </productMenu>
  12821. <productMenu id="userGuide"
  12822. type="1"
  12823. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12824. size="3.15MB" >
  12825. </productMenu>
  12826. <productMenu id="volume"
  12827. type="2" >
  12828. </productMenu>
  12829. <productID id="3114"
  12830. />
  12831. <productGroupable type="0"
  12832. />
  12833. </product>
  12834. <product id="HD50S"
  12835. name="Boom Audio 20S"
  12836. series="50"
  12837. latestVersion="2.5.2"
  12838. show = "0" >
  12839. <productMenu id="protocol"
  12840. type="0">
  12841. </productMenu>
  12842. <productMenu id="sip"
  12843. type="1" >
  12844. <productMenuType version="1.0"
  12845. type="0"
  12846. />
  12847. </productMenu>
  12848. <productMenu id="bluetoothIntercom"
  12849. type="1" >
  12850. <productMenuType version="1.0"
  12851. type="0"
  12852. />
  12853. </productMenu>
  12854. <productMenu id="intercomSetting"
  12855. type="1" >
  12856. </productMenu>
  12857. <productMenu id="phone"
  12858. type="2" >
  12859. </productMenu>
  12860. <productMenu id="fmradio"
  12861. type="3" >
  12862. </productMenu>
  12863. <productMenu id="deviceSetting"
  12864. type="1"
  12865. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12866. <productMenuURL version="2.4"
  12867. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12868. />
  12869. <productMenuURL version="1.5"
  12870. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12871. />
  12872. <productMenuURL version="1.4.1"
  12873. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12874. />
  12875. <productMenuURL version="1.1"
  12876. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12877. />
  12878. <productMenuURL version="1.0"
  12879. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12880. />
  12881. </productMenu>
  12882. <productMenu id="quickGuide"
  12883. type="1"
  12884. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12885. size="264KB" >
  12886. </productMenu>
  12887. <productMenu id="userGuide"
  12888. type="1"
  12889. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12890. size="3.09MB" >
  12891. </productMenu>
  12892. <productMenu id="connectGuide"
  12893. type="1"
  12894. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12895. size="1.12MB" >
  12896. </productMenu>
  12897. <productID id="4210"
  12898. />
  12899. <productProductKey key="11"
  12900. />
  12901. <productID id="4230"
  12902. />
  12903. <productProductKey key="11"
  12904. />
  12905. <productGroupable type="1"
  12906. />
  12907. </product>
  12908. <product id="HD50S"
  12909. name="Boom Audio 20S EVO"
  12910. series="50"
  12911. latestVersion="2.5.2"
  12912. show = "0" >
  12913. <productMenu id="protocol"
  12914. type="0">
  12915. </productMenu>
  12916. <productMenu id="sip"
  12917. type="1" >
  12918. <productMenuType version="1.0"
  12919. type="0"
  12920. />
  12921. </productMenu>
  12922. <productMenu id="bluetoothIntercom"
  12923. type="1" >
  12924. <productMenuType version="1.0"
  12925. type="0"
  12926. />
  12927. </productMenu>
  12928. <productMenu id="intercomSetting"
  12929. type="1" >
  12930. </productMenu>
  12931. <productMenu id="phone"
  12932. type="2" >
  12933. </productMenu>
  12934. <productMenu id="fmradio"
  12935. type="3" >
  12936. </productMenu>
  12937. <productMenu id="deviceSetting"
  12938. type="1"
  12939. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12940. <productMenuURL version="2.4"
  12941. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12942. />
  12943. <productMenuURL version="1.5"
  12944. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12945. />
  12946. <productMenuURL version="1.4.1"
  12947. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12948. />
  12949. <productMenuURL version="1.1"
  12950. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12951. />
  12952. <productMenuURL version="1.0"
  12953. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12954. />
  12955. </productMenu>
  12956. <productMenu id="quickGuide"
  12957. type="1"
  12958. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12959. size="321KB" >
  12960. </productMenu>
  12961. <productMenu id="userGuide"
  12962. type="1"
  12963. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12964. size="2.46MB" >
  12965. </productMenu>
  12966. <productID id="4230"
  12967. />
  12968. <productProductKey key="27"
  12969. />
  12970. <productGroupable type="1"
  12971. />
  12972. </product>
  12973. <product id="HD50S"
  12974. name="Boom! Audio 10S"
  12975. series="50"
  12976. latestVersion="1.1.3"
  12977. show = "0" >
  12978. <productMenu id="protocol"
  12979. type="0">
  12980. </productMenu>
  12981. <productMenu id="sip"
  12982. type="1" >
  12983. </productMenu>
  12984. <productMenu id="bluetoothIntercom"
  12985. type="1" >
  12986. </productMenu>
  12987. <productMenu id="phone"
  12988. type="2" >
  12989. </productMenu>
  12990. <productMenu id="fmradio"
  12991. type="3" >
  12992. </productMenu>
  12993. <productMenu id="deviceSetting"
  12994. type="1"
  12995. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12996. </productMenu>
  12997. <productMenu id="quickGuide"
  12998. type="1"
  12999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13000. size="538KB" >
  13001. </productMenu>
  13002. <productMenu id="userGuide"
  13003. type="1"
  13004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13005. size="1.55MB" >
  13006. </productMenu>
  13007. <productID id="5532"
  13008. />
  13009. <productGroupable type="0"
  13010. />
  13011. </product>
  13012. <product id="HD50S"
  13013. name="Boom! Audio N01 10R"
  13014. series="50"
  13015. latestVersion="1.1.3"
  13016. show = "0" >
  13017. <productMenu id="protocol"
  13018. type="0">
  13019. </productMenu>
  13020. <productMenu id="sip"
  13021. type="1" >
  13022. </productMenu>
  13023. <productMenu id="bluetoothIntercom"
  13024. type="1" >
  13025. </productMenu>
  13026. <productMenu id="phone"
  13027. type="2" >
  13028. </productMenu>
  13029. <productMenu id="fmradio"
  13030. type="3" >
  13031. </productMenu>
  13032. <productMenu id="deviceSetting"
  13033. type="1"
  13034. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  13035. </productMenu>
  13036. <productMenu id="quickGuide"
  13037. type="1"
  13038. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13039. size="766KB" >
  13040. </productMenu>
  13041. <productMenu id="userGuide"
  13042. type="1"
  13043. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13044. size="1.45MB" >
  13045. </productMenu>
  13046. <productID id="5522"
  13047. />
  13048. <productGroupable type="0"
  13049. />
  13050. </product>
  13051. <product id="HD50S"
  13052. name="OUTRUSH-R N03"
  13053. series="50"
  13054. latestVersion="1.2.1"
  13055. show = "-1" >
  13056. <productMenu id="protocol"
  13057. type="0">
  13058. </productMenu>
  13059. <productMenu id="sip"
  13060. type="1" >
  13061. </productMenu>
  13062. <productMenu id="bluetoothIntercom"
  13063. type="1" >
  13064. </productMenu>
  13065. <productMenu id="phone"
  13066. type="2" >
  13067. </productMenu>
  13068. <productMenu id="fmradio"
  13069. type="3" >
  13070. </productMenu>
  13071. <productMenu id="deviceSetting"
  13072. type="1"
  13073. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  13074. </productMenu>
  13075. <productMenu id="userGuide"
  13076. type="1"
  13077. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  13078. size="660KB" >
  13079. </productMenu>
  13080. <productID id="5434"
  13081. />
  13082. <productGroupable type="0"
  13083. />
  13084. </product>
  13085. <product id="HD50S"
  13086. name="OUTRUSH-R N03"
  13087. series="50"
  13088. latestVersion="2.0"
  13089. show = "0" >
  13090. <productMenu id="protocol"
  13091. type="3" >
  13092. </productMenu>
  13093. <productMenu id="sip"
  13094. type="1" >
  13095. </productMenu>
  13096. <productMenu id="bluetoothIntercom"
  13097. type="1" >
  13098. </productMenu>
  13099. <productMenu id="phone"
  13100. type="1" >
  13101. </productMenu>
  13102. <productMenu id="fmradio"
  13103. type="1" >
  13104. </productMenu>
  13105. <productMenu id="deviceSetting"
  13106. type="1"
  13107. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  13108. </productMenu>
  13109. <productMenu id="userGuide"
  13110. type="1"
  13111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  13112. size="1.14MB" >
  13113. </productMenu>
  13114. <productID id="5441"
  13115. />
  13116. <productGroupable type="0"
  13117. />
  13118. </product>
  13119. <product id="5R"
  13120. name="5R"
  13121. series="5"
  13122. latestVersion="1.0.1"
  13123. show = "1" >
  13124. <productMenu id="protocol"
  13125. type="3" >
  13126. </productMenu>
  13127. <productMenu id="sip"
  13128. type="1" >
  13129. </productMenu>
  13130. <productMenu id="bluetoothIntercom"
  13131. type="1" >
  13132. </productMenu>
  13133. <productMenu id="phone"
  13134. type="1" >
  13135. </productMenu>
  13136. <productMenu id="fmradio"
  13137. type="1" >
  13138. </productMenu>
  13139. <productMenu id="deviceSetting"
  13140. type="1"
  13141. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13142. </productMenu>
  13143. <productMenu id="quickGuide"
  13144. type="0"
  13145. url=""
  13146. size="934KB" >
  13147. </productMenu>
  13148. <productMenu id="userGuide"
  13149. type="1"
  13150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  13151. size="1.14MB" >
  13152. </productMenu>
  13153. <productMenu id="connectGuide"
  13154. type="1"
  13155. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13156. size="1.12MB" >
  13157. </productMenu>
  13158. <productID id="5591"
  13159. />
  13160. <productGroupable type="0"
  13161. />
  13162. </product>
  13163. <product id="5R"
  13164. name="5R LITE"
  13165. series="5"
  13166. latestVersion="1.0.1"
  13167. show = "1" >
  13168. <productMenu id="protocol"
  13169. type="3" >
  13170. </productMenu>
  13171. <productMenu id="sip"
  13172. type="1" >
  13173. </productMenu>
  13174. <productMenu id="bluetoothIntercom"
  13175. type="1" >
  13176. </productMenu>
  13177. <productMenu id="phone"
  13178. type="1" >
  13179. </productMenu>
  13180. <productMenu id="fmradio"
  13181. type="1" >
  13182. </productMenu>
  13183. <productMenu id="deviceSetting"
  13184. type="1"
  13185. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13186. </productMenu>
  13187. <productMenu id="quickGuide"
  13188. type="0"
  13189. url=""
  13190. size="934KB" >
  13191. </productMenu>
  13192. <productMenu id="userGuide"
  13193. type="1"
  13194. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13195. size="1.14MB" >
  13196. </productMenu>
  13197. <productMenu id="connectGuide"
  13198. type="1"
  13199. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13200. size="1.12MB" >
  13201. </productMenu>
  13202. <productID id="5592"
  13203. />
  13204. <productGroupable type="0"
  13205. />
  13206. </product>
  13207. <product id="50RLE"
  13208. name="50R LE"
  13209. series="50"
  13210. latestVersion="1.1"
  13211. show = "0" >
  13212. <productMenu id="protocol"
  13213. type="2" >
  13214. </productMenu>
  13215. <productMenu id="alexa"
  13216. type="0" >
  13217. </productMenu>
  13218. <productMenu id="sip"
  13219. type="1" >
  13220. </productMenu>
  13221. <productMenu id="meshIntercom"
  13222. type="30" >
  13223. </productMenu>
  13224. <productMenu id="meshIntercom+"
  13225. type="3"
  13226. url="2" >
  13227. <productMenuType version="1.0.9"
  13228. type="2"
  13229. />
  13230. </productMenu>
  13231. <productMenu id="waveIntercom"
  13232. type="1" >
  13233. <productMenuType version="1.0.9"
  13234. type="0"
  13235. />
  13236. </productMenu>
  13237. <productMenu id="bluetoothIntercom"
  13238. type="1" >
  13239. </productMenu>
  13240. <productMenu id="phone"
  13241. type="1" >
  13242. </productMenu>
  13243. <productMenu id="music"
  13244. type="1" >
  13245. </productMenu>
  13246. <productMenu id="fmradio"
  13247. type="0" >
  13248. </productMenu>
  13249. <productMenu id="deviceSetting"
  13250. type="1"
  13251. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  13252. <productMenuURL version="1.0.9"
  13253. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  13254. />
  13255. </productMenu>
  13256. <productMenu id="quickGuide"
  13257. type="0"
  13258. url=""
  13259. size="344KB" >
  13260. </productMenu>
  13261. <productMenu id="userGuide"
  13262. type="0"
  13263. url=""
  13264. size="3.41MB" >
  13265. </productMenu>
  13266. <productMenu id="volume"
  13267. type="11" >
  13268. </productMenu>
  13269. <productMenu id="battery"
  13270. type="1" >
  13271. </productMenu>
  13272. <productID id="3223"
  13273. />
  13274. <productGroupable type="0"
  13275. />
  13276. </product>
  13277. <product id="5RLOUIS"
  13278. name="5R LOUIS EDITION"
  13279. series="5"
  13280. latestVersion="1.0"
  13281. show = "-1" >
  13282. <productMenu id="protocol"
  13283. type="3" >
  13284. </productMenu>
  13285. <productMenu id="sip"
  13286. type="1" >
  13287. </productMenu>
  13288. <productMenu id="bluetoothIntercom"
  13289. type="1" >
  13290. </productMenu>
  13291. <productMenu id="phone"
  13292. type="1" >
  13293. </productMenu>
  13294. <productMenu id="fmradio"
  13295. type="1" >
  13296. </productMenu>
  13297. <productMenu id="deviceSetting"
  13298. type="1"
  13299. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13300. </productMenu>
  13301. <productMenu id="quickGuide"
  13302. type="0"
  13303. url=""
  13304. size="934KB" >
  13305. </productMenu>
  13306. <productMenu id="userGuide"
  13307. type="0"
  13308. url=""
  13309. size="1.14MB" >
  13310. </productMenu>
  13311. <productID id="5597"
  13312. />
  13313. <productGroupable type="0"
  13314. />
  13315. </product>
  13316. <product id="5S"
  13317. name="Ridekont 5S"
  13318. series="5"
  13319. latestVersion="2.3"
  13320. show = "-1" >
  13321. <productMenu id="protocol"
  13322. type="3" >
  13323. </productMenu>
  13324. <productMenu id="sip"
  13325. type="1" >
  13326. </productMenu>
  13327. <productMenu id="bluetoothIntercom"
  13328. type="1" >
  13329. </productMenu>
  13330. <productMenu id="phone"
  13331. type="1" >
  13332. </productMenu>
  13333. <productMenu id="fmradio"
  13334. type="0" >
  13335. </productMenu>
  13336. <productMenu id="deviceSetting"
  13337. type="1"
  13338. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13339. </productMenu>
  13340. <productMenu id="quickGuide"
  13341. type="0"
  13342. url=""
  13343. size="934KB" >
  13344. </productMenu>
  13345. <productMenu id="userGuide"
  13346. type="1"
  13347. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  13348. size="1.14MB" >
  13349. </productMenu>
  13350. <productID id="5589"
  13351. />
  13352. <productGroupable type="0"
  13353. />
  13354. </product>
  13355. <product id="5R"
  13356. name="Ridekont 5R"
  13357. series="5"
  13358. latestVersion="1.0"
  13359. show = "0" >
  13360. <productMenu id="protocol"
  13361. type="3" >
  13362. </productMenu>
  13363. <productMenu id="sip"
  13364. type="1" >
  13365. </productMenu>
  13366. <productMenu id="bluetoothIntercom"
  13367. type="1" >
  13368. </productMenu>
  13369. <productMenu id="phone"
  13370. type="1" >
  13371. </productMenu>
  13372. <productMenu id="fmradio"
  13373. type="1" >
  13374. </productMenu>
  13375. <productMenu id="deviceSetting"
  13376. type="1"
  13377. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13378. </productMenu>
  13379. <productMenu id="quickGuide"
  13380. type="1"
  13381. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  13382. size="934KB" >
  13383. </productMenu>
  13384. <productMenu id="userGuide"
  13385. type="1"
  13386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  13387. size="1.14MB" >
  13388. </productMenu>
  13389. <productID id="5593"
  13390. />
  13391. <productGroupable type="0"
  13392. />
  13393. </product>
  13394. <product id="5R"
  13395. name="Ridekont 5R LITE"
  13396. series="5"
  13397. latestVersion="1.0"
  13398. show = "0" >
  13399. <productMenu id="protocol"
  13400. type="3" >
  13401. </productMenu>
  13402. <productMenu id="sip"
  13403. type="1" >
  13404. </productMenu>
  13405. <productMenu id="bluetoothIntercom"
  13406. type="1" >
  13407. </productMenu>
  13408. <productMenu id="phone"
  13409. type="1" >
  13410. </productMenu>
  13411. <productMenu id="fmradio"
  13412. type="1" >
  13413. </productMenu>
  13414. <productMenu id="deviceSetting"
  13415. type="1"
  13416. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13417. </productMenu>
  13418. <productMenu id="quickGuide"
  13419. type="0"
  13420. url=""
  13421. size="934KB" >
  13422. </productMenu>
  13423. <productMenu id="userGuide"
  13424. type="1"
  13425. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13426. size="1.14MB" >
  13427. </productMenu>
  13428. <productID id="5594"
  13429. />
  13430. <productGroupable type="0"
  13431. />
  13432. </product>
  13433. <product id="SA30"
  13434. name="SA30"
  13435. series="SA"
  13436. latestVersion="1.0.3"
  13437. latestVersionVoicePrompt="0.15"
  13438. show = "-1" >
  13439. <productMenu id="protocol"
  13440. type="2" >
  13441. </productMenu>
  13442. <productMenu id="ota"
  13443. type="2" >
  13444. <otaPackages>
  13445. <package
  13446. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  13447. size="3144148"
  13448. />
  13449. </otaPackages>
  13450. </productMenu>
  13451. <productMenu id="meshIntercom"
  13452. type="30" >
  13453. </productMenu>
  13454. <productMenu id="meshIntercom+"
  13455. type="3"
  13456. url="2" >
  13457. </productMenu>
  13458. <productMenu id="phone"
  13459. type="1" >
  13460. </productMenu>
  13461. <productMenu id="music"
  13462. type="1" >
  13463. </productMenu>
  13464. <productMenu id="musicSharing"
  13465. type="0" >
  13466. </productMenu>
  13467. <productMenu id="deviceSetting"
  13468. type="1"
  13469. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  13470. </productMenu>
  13471. <productMenu id="quickGuide"
  13472. type="0"
  13473. url=""
  13474. size="1.12MB" >
  13475. </productMenu>
  13476. <productMenu id="userGuide"
  13477. type="1"
  13478. url=""
  13479. size="2.0MB" >
  13480. </productMenu>
  13481. <productMenu id="videoGuide"
  13482. type="0"
  13483. url=""
  13484. size="3.41MB" >
  13485. </productMenu>
  13486. <productMenu id="volume"
  13487. type="12" >
  13488. </productMenu>
  13489. <productMenu id="battery"
  13490. type="1" >
  13491. </productMenu>
  13492. <productID id="6852"
  13493. />
  13494. <productGroupable type="0"
  13495. />
  13496. </product>
  13497. <product id="I30"
  13498. name="I30"
  13499. series="I"
  13500. latestVersion="1.0.3"
  13501. latestVersionVoicePrompt="0.2"
  13502. show = "-1" >
  13503. <productMenu id="protocol"
  13504. type="2" >
  13505. </productMenu>
  13506. <productMenu id="ota"
  13507. type="2" >
  13508. <otaPackages>
  13509. <package
  13510. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  13511. size="3144148"
  13512. />
  13513. </otaPackages>
  13514. </productMenu>
  13515. <productMenu id="meshIntercom"
  13516. type="30" >
  13517. </productMenu>
  13518. <productMenu id="meshIntercom+"
  13519. type="3"
  13520. url="2" >
  13521. </productMenu>
  13522. <productMenu id="phone"
  13523. type="1" >
  13524. </productMenu>
  13525. <productMenu id="music"
  13526. type="1" >
  13527. </productMenu>
  13528. <productMenu id="musicSharing"
  13529. type="0" >
  13530. </productMenu>
  13531. <productMenu id="deviceSetting"
  13532. type="1"
  13533. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  13534. </productMenu>
  13535. <productMenu id="quickGuide"
  13536. type="0"
  13537. url=""
  13538. size="1.12MB" >
  13539. </productMenu>
  13540. <productMenu id="userGuide"
  13541. type="1"
  13542. url=""
  13543. size="2.10MB" >
  13544. </productMenu>
  13545. <productMenu id="videoGuide"
  13546. type="0"
  13547. url=""
  13548. size="3.11MB" >
  13549. </productMenu>
  13550. <productMenu id="volume"
  13551. type="12" >
  13552. </productMenu>
  13553. <productMenu id="battery"
  13554. type="1" >
  13555. </productMenu>
  13556. <productID id="6853"
  13557. />
  13558. <productGroupable type="0"
  13559. />
  13560. </product>
  13561. <product id="LS2C30"
  13562. name="LS2-C30"
  13563. series="C"
  13564. latestVersion="1.0"
  13565. latestVersionVoicePrompt="0.13"
  13566. show = "-1" >
  13567. <productMenu id="protocol"
  13568. type="2" >
  13569. </productMenu>
  13570. <productMenu id="ota"
  13571. type="2" >
  13572. <otaPackages>
  13573. <package
  13574. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2-C30-v1.0-build0.img"
  13575. size="3144148"
  13576. />
  13577. </otaPackages>
  13578. </productMenu>
  13579. <productMenu id="meshIntercom+"
  13580. type="3"
  13581. url="2" >
  13582. </productMenu>
  13583. <productMenu id="waveIntercom"
  13584. type="1" >
  13585. </productMenu>
  13586. <productMenu id="phone"
  13587. type="1" >
  13588. </productMenu>
  13589. <productMenu id="music"
  13590. type="1" >
  13591. </productMenu>
  13592. <productMenu id="musicSharing"
  13593. type="0" >
  13594. </productMenu>
  13595. <productMenu id="deviceSetting"
  13596. type="1"
  13597. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13598. </productMenu>
  13599. <productMenu id="quickGuide"
  13600. type="0"
  13601. url=""
  13602. size="1.17MB" >
  13603. </productMenu>
  13604. <productMenu id="userGuide"
  13605. type="1"
  13606. url=""
  13607. size="2.0MB" >
  13608. </productMenu>
  13609. <productMenu id="videoGuide"
  13610. type="0"
  13611. url=""
  13612. size="3.41MB" >
  13613. </productMenu>
  13614. <productMenu id="volume"
  13615. type="12" >
  13616. </productMenu>
  13617. <productMenu id="battery"
  13618. type="1" >
  13619. </productMenu>
  13620. <productID id="685E"
  13621. />
  13622. <productGroupable type="0"
  13623. />
  13624. </product>
  13625. <product id="C30EVO"
  13626. name="C30 EVO"
  13627. series="C"
  13628. latestVersion="1.0"
  13629. latestVersionVoicePrompt="0.13"
  13630. show = "-1" >
  13631. <productMenu id="protocol"
  13632. type="2" >
  13633. </productMenu>
  13634. <productMenu id="ota"
  13635. type="0" >
  13636. <otaPackages>
  13637. <package
  13638. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13639. size="3144148"
  13640. />
  13641. </otaPackages>
  13642. </productMenu>
  13643. <productMenu id="meshIntercom+"
  13644. type="3"
  13645. url="2" >
  13646. </productMenu>
  13647. <productMenu id="waveIntercom"
  13648. type="1" >
  13649. </productMenu>
  13650. <productMenu id="phone"
  13651. type="1" >
  13652. </productMenu>
  13653. <productMenu id="music"
  13654. type="1" >
  13655. </productMenu>
  13656. <productMenu id="musicSharing"
  13657. type="0" >
  13658. </productMenu>
  13659. <productMenu id="deviceSetting"
  13660. type="1"
  13661. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13662. </productMenu>
  13663. <productMenu id="quickGuide"
  13664. type="0"
  13665. url=""
  13666. size="1.17MB" >
  13667. </productMenu>
  13668. <productMenu id="userGuide"
  13669. type="1"
  13670. url=""
  13671. size="2.0MB" >
  13672. </productMenu>
  13673. <productMenu id="videoGuide"
  13674. type="0"
  13675. url=""
  13676. size="3.41MB" >
  13677. </productMenu>
  13678. <productMenu id="volume"
  13679. type="12" >
  13680. </productMenu>
  13681. <productMenu id="battery"
  13682. type="1" >
  13683. </productMenu>
  13684. <productID id="685B"
  13685. />
  13686. <productGroupable type="0"
  13687. />
  13688. </product>
  13689. <product id="C30"
  13690. name="SENA C30"
  13691. series="C"
  13692. latestVersion="1.2.4"
  13693. latestVersionVoicePrompt="0.13"
  13694. show = "1" >
  13695. <productMenu id="protocol"
  13696. type="2" >
  13697. </productMenu>
  13698. <productMenu id="alexa"
  13699. type="0" >
  13700. </productMenu>
  13701. <productMenu id="ota"
  13702. type="2" >
  13703. <otaPackages>
  13704. <package
  13705. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13706. size="3144148"
  13707. />
  13708. </otaPackages>
  13709. </productMenu>
  13710. <productMenu id="wa"
  13711. type="0" >
  13712. </productMenu>
  13713. <productMenu id="meshIntercom"
  13714. type="30" >
  13715. </productMenu>
  13716. <productMenu id="meshIntercom+"
  13717. type="3"
  13718. url="2" >
  13719. <productMenuType version="1.0.9"
  13720. type="2"
  13721. />
  13722. </productMenu>
  13723. <productMenu id="waveIntercom"
  13724. type="1" >
  13725. <productMenuType version="1.1.9"
  13726. type="0"
  13727. />
  13728. </productMenu>
  13729. <productMenu id="phone"
  13730. type="1" >
  13731. </productMenu>
  13732. <productMenu id="music"
  13733. type="1" >
  13734. </productMenu>
  13735. <productMenu id="musicSharing"
  13736. type="0" >
  13737. </productMenu>
  13738. <productMenu id="deviceSetting"
  13739. type="1"
  13740. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13741. <productMenuURL version="1.1.3"
  13742. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13743. />
  13744. <productMenuURL version="1.0.9"
  13745. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13746. />
  13747. </productMenu>
  13748. <productMenu id="quickGuide"
  13749. type="1"
  13750. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13751. size="1.12MB" >
  13752. </productMenu>
  13753. <productMenu id="userGuide"
  13754. type="0"
  13755. url=""
  13756. size="2.0MB" >
  13757. </productMenu>
  13758. <productMenu id="videoGuide"
  13759. type="0"
  13760. url=""
  13761. size="3.41MB" >
  13762. </productMenu>
  13763. <productMenu id="volume"
  13764. type="12" >
  13765. </productMenu>
  13766. <productMenu id="battery"
  13767. type="1" >
  13768. </productMenu>
  13769. <productID id="683A"
  13770. />
  13771. <productGroupable type="0"
  13772. />
  13773. </product>
  13774. <product id="C20"
  13775. name="C20"
  13776. series="C"
  13777. latestVersion="1.0"
  13778. show = "1" >
  13779. <productMenu id="protocol"
  13780. type="3" >
  13781. </productMenu>
  13782. <productMenu id="sip"
  13783. type="1" >
  13784. </productMenu>
  13785. <productMenu id="bluetoothIntercom"
  13786. type="1" >
  13787. </productMenu>
  13788. <productMenu id="phone"
  13789. type="1" >
  13790. </productMenu>
  13791. <productMenu id="deviceSetting"
  13792. type="1"
  13793. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13794. </productMenu>
  13795. <productMenu id="quickGuide"
  13796. type="1"
  13797. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13798. size="934KB" >
  13799. </productMenu>
  13800. <productMenu id="userGuide"
  13801. type="1"
  13802. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13803. size="1.14MB" >
  13804. </productMenu>
  13805. <productID id="3701"
  13806. />
  13807. <productGroupable type="0"
  13808. />
  13809. </product>
  13810. <product id="C10"
  13811. name="C10"
  13812. series="C"
  13813. latestVersion="1.4.4"
  13814. show = "1" >
  13815. <productMenu id="protocol"
  13816. type="3" >
  13817. </productMenu>
  13818. <productMenu id="sip"
  13819. type="1" >
  13820. </productMenu>
  13821. <productMenu id="bluetoothIntercom"
  13822. type="1" >
  13823. </productMenu>
  13824. <productMenu id="phone"
  13825. type="1" >
  13826. </productMenu>
  13827. <productMenu id="fmradio"
  13828. type="0" >
  13829. </productMenu>
  13830. <productMenu id="deviceSetting"
  13831. type="1"
  13832. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13833. </productMenu>
  13834. <productMenu id="userGuide"
  13835. type="1"
  13836. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13837. size="1.14MB" >
  13838. </productMenu>
  13839. <productID id="5595"
  13840. />
  13841. <productGroupable type="0"
  13842. />
  13843. </product>
  13844. <product id="CA1"
  13845. name="CA1"
  13846. series="C"
  13847. latestVersion="0.2"
  13848. show = "-1" >
  13849. <productMenu id="protocol"
  13850. type="2" >
  13851. </productMenu>
  13852. <productMenu id="ota"
  13853. type="2" >
  13854. <otaPackages>
  13855. <package
  13856. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13857. size="3144148"
  13858. />
  13859. </otaPackages>
  13860. </productMenu>
  13861. <productMenu id="phone"
  13862. type="1" >
  13863. </productMenu>
  13864. <productMenu id="music"
  13865. type="1" >
  13866. </productMenu>
  13867. <productMenu id="musicSharing"
  13868. type="0" >
  13869. </productMenu>
  13870. <productMenu id="deviceSetting"
  13871. type="1"
  13872. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13873. </productMenu>
  13874. <productMenu id="quickGuide"
  13875. type="1"
  13876. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13877. size="1.12MB" >
  13878. </productMenu>
  13879. <productMenu id="userGuide"
  13880. type="0"
  13881. url=""
  13882. size="2.0MB" >
  13883. </productMenu>
  13884. <productMenu id="videoGuide"
  13885. type="1"
  13886. url=""
  13887. size="3.41MB" >
  13888. </productMenu>
  13889. <productMenu id="volume"
  13890. type="12" >
  13891. </productMenu>
  13892. <productMenu id="battery"
  13893. type="1" >
  13894. </productMenu>
  13895. <productID id="5F01"
  13896. />
  13897. <productGroupable type="0"
  13898. />
  13899. </product>
  13900. <product id="J30"
  13901. name="J30"
  13902. series="J"
  13903. latestVersion="1.2.4"
  13904. latestVersionVoicePrompt="0.14"
  13905. show = "0" >
  13906. <productMenu id="protocol"
  13907. type="2" >
  13908. </productMenu>
  13909. <productMenu id="alexa"
  13910. type="0" >
  13911. </productMenu>
  13912. <productMenu id="ota"
  13913. type="2" >
  13914. <otaPackages>
  13915. <package
  13916. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13917. size="3144148"
  13918. />
  13919. </otaPackages>
  13920. </productMenu>
  13921. <productMenu id="wa"
  13922. type="0" >
  13923. </productMenu>
  13924. <productMenu id="meshIntercom"
  13925. type="30" >
  13926. </productMenu>
  13927. <productMenu id="meshIntercom+"
  13928. type="3"
  13929. url="2" >
  13930. <productMenuType version="1.0.9"
  13931. type="2"
  13932. />
  13933. </productMenu>
  13934. <productMenu id="waveIntercom"
  13935. type="1" >
  13936. <productMenuType version="1.1.9"
  13937. type="0"
  13938. />
  13939. </productMenu>
  13940. <productMenu id="phone"
  13941. type="1" >
  13942. </productMenu>
  13943. <productMenu id="music"
  13944. type="1" >
  13945. </productMenu>
  13946. <productMenu id="musicSharing"
  13947. type="0" >
  13948. </productMenu>
  13949. <productMenu id="deviceSetting"
  13950. type="1"
  13951. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13952. <productMenuURL version="1.0.9"
  13953. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13954. />
  13955. </productMenu>
  13956. <productMenu id="quickGuide"
  13957. type="0"
  13958. url=""
  13959. size="1.12MB" >
  13960. </productMenu>
  13961. <productMenu id="userGuide"
  13962. type="1"
  13963. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13964. size="2.0MB" >
  13965. </productMenu>
  13966. <productMenu id="videoGuide"
  13967. type="0"
  13968. url=""
  13969. size="3.41MB" >
  13970. </productMenu>
  13971. <productMenu id="volume"
  13972. type="12" >
  13973. </productMenu>
  13974. <productMenu id="battery"
  13975. type="1" >
  13976. </productMenu>
  13977. <productID id="6848"
  13978. />
  13979. <productGroupable type="0"
  13980. />
  13981. </product>
  13982. <product id="J10"
  13983. name="J10"
  13984. series="5"
  13985. latestVersion="1.1.4"
  13986. show = "0" >
  13987. <productMenu id="protocol"
  13988. type="3" >
  13989. </productMenu>
  13990. <productMenu id="sip"
  13991. type="1" >
  13992. </productMenu>
  13993. <productMenu id="bluetoothIntercom"
  13994. type="1" >
  13995. </productMenu>
  13996. <productMenu id="phone"
  13997. type="1" >
  13998. </productMenu>
  13999. <productMenu id="fmradio"
  14000. type="0" >
  14001. </productMenu>
  14002. <productMenu id="deviceSetting"
  14003. type="1"
  14004. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  14005. </productMenu>
  14006. <productMenu id="userGuide"
  14007. type="1"
  14008. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  14009. size="1.14MB" >
  14010. </productMenu>
  14011. <productID id="5598"
  14012. />
  14013. <productGroupable type="0"
  14014. />
  14015. </product>
  14016. <product id="B20"
  14017. name="B20"
  14018. series="B"
  14019. latestVersion="1.1.4"
  14020. latestVersionVoicePrompt="0.14"
  14021. show = "0" >
  14022. <productMenu id="protocol"
  14023. type="2" >
  14024. </productMenu>
  14025. <productMenu id="alexa"
  14026. type="0" >
  14027. </productMenu>
  14028. <productMenu id="ota"
  14029. type="2" >
  14030. <otaPackages>
  14031. <package
  14032. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  14033. size="3144148"
  14034. />
  14035. </otaPackages>
  14036. </productMenu>
  14037. <productMenu id="wa"
  14038. type="0" >
  14039. </productMenu>
  14040. <productMenu id="meshIntercom"
  14041. type="30" >
  14042. </productMenu>
  14043. <productMenu id="phone"
  14044. type="1" >
  14045. </productMenu>
  14046. <productMenu id="music"
  14047. type="1" >
  14048. </productMenu>
  14049. <productMenu id="musicSharing"
  14050. type="0" >
  14051. </productMenu>
  14052. <productMenu id="deviceSetting"
  14053. type="1"
  14054. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  14055. <productMenuURL version="1.0.9"
  14056. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  14057. />
  14058. </productMenu>
  14059. <productMenu id="quickGuide"
  14060. type="0"
  14061. url=""
  14062. size="1.12MB" >
  14063. </productMenu>
  14064. <productMenu id="userGuide"
  14065. type="1"
  14066. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  14067. size="2.0MB" >
  14068. </productMenu>
  14069. <productMenu id="videoGuide"
  14070. type="0"
  14071. url=""
  14072. size="3.41MB" >
  14073. </productMenu>
  14074. <productMenu id="volume"
  14075. type="12" >
  14076. </productMenu>
  14077. <productMenu id="battery"
  14078. type="1" >
  14079. </productMenu>
  14080. <productID id="6847"
  14081. />
  14082. <productGroupable type="0"
  14083. />
  14084. </product>
  14085. <product id="B10"
  14086. name="B10"
  14087. series="5"
  14088. latestVersion="1.2.4"
  14089. show = "0" >
  14090. <productMenu id="protocol"
  14091. type="3" >
  14092. </productMenu>
  14093. <productMenu id="sip"
  14094. type="1" >
  14095. </productMenu>
  14096. <productMenu id="bluetoothIntercom"
  14097. type="1" >
  14098. </productMenu>
  14099. <productMenu id="phone"
  14100. type="1" >
  14101. </productMenu>
  14102. <productMenu id="fmradio"
  14103. type="0" >
  14104. </productMenu>
  14105. <productMenu id="deviceSetting"
  14106. type="1"
  14107. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  14108. </productMenu>
  14109. <productMenu id="userGuide"
  14110. type="1"
  14111. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  14112. size="1.14MB" >
  14113. </productMenu>
  14114. <productID id="5596"
  14115. />
  14116. <productGroupable type="0"
  14117. />
  14118. </product>
  14119. <product id="E30"
  14120. name="E30"
  14121. series="E"
  14122. latestVersion="1.1.4"
  14123. latestVersionVoicePrompt="0.14"
  14124. show = "0" >
  14125. <productMenu id="protocol"
  14126. type="2" >
  14127. </productMenu>
  14128. <productMenu id="alexa"
  14129. type="0" >
  14130. </productMenu>
  14131. <productMenu id="ota"
  14132. type="2" >
  14133. <otaPackages>
  14134. <package
  14135. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  14136. size="3144148"
  14137. />
  14138. </otaPackages>
  14139. </productMenu>
  14140. <productMenu id="wa"
  14141. type="0" >
  14142. </productMenu>
  14143. <productMenu id="meshIntercom"
  14144. type="30" >
  14145. </productMenu>
  14146. <productMenu id="meshIntercom+"
  14147. type="3"
  14148. url="2" >
  14149. </productMenu>
  14150. <productMenu id="waveIntercom"
  14151. type="1" >
  14152. <productMenuType version="1.0.9"
  14153. type="0"
  14154. />
  14155. </productMenu>
  14156. <productMenu id="phone"
  14157. type="1" >
  14158. </productMenu>
  14159. <productMenu id="music"
  14160. type="1" >
  14161. </productMenu>
  14162. <productMenu id="musicSharing"
  14163. type="0" >
  14164. </productMenu>
  14165. <productMenu id="deviceSetting"
  14166. type="1"
  14167. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  14168. </productMenu>
  14169. <productMenu id="quickGuide"
  14170. type="0"
  14171. url=""
  14172. size="1.12MB" >
  14173. </productMenu>
  14174. <productMenu id="userGuide"
  14175. type="1"
  14176. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  14177. size="2.0MB" >
  14178. </productMenu>
  14179. <productMenu id="videoGuide"
  14180. type="0"
  14181. url=""
  14182. size="3.41MB" >
  14183. </productMenu>
  14184. <productMenu id="volume"
  14185. type="12" >
  14186. </productMenu>
  14187. <productMenu id="battery"
  14188. type="1" >
  14189. </productMenu>
  14190. <productID id="6846"
  14191. />
  14192. <productGroupable type="0"
  14193. />
  14194. </product>
  14195. <product id="ACSRAM"
  14196. name="ACS-RAM"
  14197. series="ACS"
  14198. latestVersion="1.0.5"
  14199. show = "1" >
  14200. <productMenu id="protocol"
  14201. type="3" >
  14202. </productMenu>
  14203. <productMenu id="sip"
  14204. type="1" >
  14205. </productMenu>
  14206. <productMenu id="bluetoothIntercom"
  14207. type="1" >
  14208. </productMenu>
  14209. <productMenu id="deviceSetting"
  14210. type="1"
  14211. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  14212. <productMenuURL version="1.0.9"
  14213. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  14214. />
  14215. </productMenu>
  14216. <productMenu id="quickGuide"
  14217. type="1"
  14218. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  14219. size="344KB" >
  14220. </productMenu>
  14221. <productMenu id="userGuide"
  14222. type="1"
  14223. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  14224. size="1.14MB" >
  14225. </productMenu>
  14226. <productMenu id="connectGuide"
  14227. type="1"
  14228. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  14229. size="1.12MB" >
  14230. </productMenu>
  14231. <productID id="3400"
  14232. />
  14233. <productGroupable type="0"
  14234. />
  14235. </product>
  14236. <product id="ACS10"
  14237. name="ACS10"
  14238. series="ACS"
  14239. latestVersion="1.0.2"
  14240. show = "1" >
  14241. <productMenu id="protocol"
  14242. type="0">
  14243. </productMenu>
  14244. <productMenu id="sip"
  14245. type="1" >
  14246. </productMenu>
  14247. <productMenu id="bluetoothIntercom"
  14248. type="1" >
  14249. </productMenu>
  14250. <productMenu id="phone"
  14251. type="2" >
  14252. </productMenu>
  14253. <productMenu id="deviceSetting"
  14254. type="1"
  14255. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  14256. </productMenu>
  14257. <productMenu id="quickGuide"
  14258. type="1"
  14259. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  14260. size="970KB" >
  14261. </productMenu>
  14262. <productMenu id="userGuide"
  14263. type="1"
  14264. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  14265. size="1.26MB" >
  14266. </productMenu>
  14267. <productMenu id="connectGuide"
  14268. type="1"
  14269. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  14270. size="1.12MB" >
  14271. </productMenu>
  14272. <productID id="3300"
  14273. />
  14274. <productGroupable type="0"
  14275. />
  14276. </product>
  14277. <product id="DWO7ProMesh"
  14278. name="DWO 7 Pro Mesh"
  14279. series="50"
  14280. latestVersion="1.1"
  14281. latestVersionVoicePrompt="0.9"
  14282. show = "0" >
  14283. <productMenu id="protocol"
  14284. type="2" >
  14285. </productMenu>
  14286. <productMenu id="alexa"
  14287. type="0" >
  14288. </productMenu>
  14289. <productMenu id="ota"
  14290. type="2" >
  14291. <otaPackages>
  14292. <package
  14293. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  14294. size="2945812"
  14295. />
  14296. </otaPackages>
  14297. </productMenu>
  14298. <productMenu id="wa"
  14299. type="0" >
  14300. </productMenu>
  14301. <productMenu id="meshIntercom"
  14302. type="20" >
  14303. </productMenu>
  14304. <productMenu id="meshIntercom+"
  14305. type="3"
  14306. url="2" >
  14307. <productMenuType version="1.0.9"
  14308. type="2"
  14309. />
  14310. <productMenuURL version="2.1.1"
  14311. url="0"
  14312. />
  14313. </productMenu>
  14314. <productMenu id="waveIntercom"
  14315. type="1" >
  14316. <productMenuType version="1.0.9"
  14317. type="0"
  14318. />
  14319. </productMenu>
  14320. <productMenu id="phone"
  14321. type="1" >
  14322. </productMenu>
  14323. <productMenu id="music"
  14324. type="1" >
  14325. </productMenu>
  14326. <productMenu id="fmradio"
  14327. type="1" >
  14328. </productMenu>
  14329. <productMenu id="musicSharing"
  14330. type="0" >
  14331. </productMenu>
  14332. <productMenu id="deviceSetting"
  14333. type="1"
  14334. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  14335. <productMenuURL version="1.0.9"
  14336. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  14337. />
  14338. </productMenu>
  14339. <productMenu id="quickGuide"
  14340. type="1"
  14341. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14342. size="1.12MB" >
  14343. </productMenu>
  14344. <productMenu id="userGuide"
  14345. type="1"
  14346. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14347. size="2.0MB" >
  14348. </productMenu>
  14349. <productMenu id="volume"
  14350. type="12" >
  14351. </productMenu>
  14352. <productMenu id="battery"
  14353. type="1" >
  14354. </productMenu>
  14355. <productID id="6806"
  14356. />
  14357. <productGroupable type="0"
  14358. />
  14359. </product>
  14360. <product id="ERA1X"
  14361. name="ERA 1 X"
  14362. series="UCOM"
  14363. latestVersion="0.2.1"
  14364. latestVersionMesh="0.19"
  14365. latestVersionVoicePrompt="1.2"
  14366. show = "-1" >
  14367. <productMenu id="protocol"
  14368. type="2" >
  14369. </productMenu>
  14370. <productMenu id="ota"
  14371. type="2" >
  14372. <otaLanguages>
  14373. <otaLanguage
  14374. id="0"
  14375. name="English"
  14376. package="0"
  14377. />
  14378. <otaLanguage
  14379. id="0"
  14380. name="French"
  14381. package="1"
  14382. />
  14383. <otaLanguage
  14384. id="0"
  14385. name="Spanish"
  14386. package="2"
  14387. />
  14388. <otaLanguage
  14389. id="0"
  14390. name="Italian"
  14391. package="3"
  14392. />
  14393. <otaLanguage
  14394. id="0"
  14395. name="German"
  14396. package="4"
  14397. />
  14398. <otaLanguage
  14399. id="0"
  14400. name="Dutch"
  14401. package="5"
  14402. />
  14403. <otaLanguage
  14404. id="0"
  14405. name="Russian"
  14406. package="6"
  14407. />
  14408. <otaLanguage
  14409. id="0"
  14410. name="Chinese"
  14411. package="7"
  14412. />
  14413. <otaLanguage
  14414. id="0"
  14415. name="Korean"
  14416. package="8"
  14417. />
  14418. <otaLanguage
  14419. id="0"
  14420. name="Japanese"
  14421. package="9"
  14422. />
  14423. <otaLanguage
  14424. id="0"
  14425. name="Finnish"
  14426. package="10"
  14427. />
  14428. <otaLanguage
  14429. id="0"
  14430. name="Polish"
  14431. package="11"
  14432. />
  14433. <otaLanguage
  14434. id="0"
  14435. name="Czech"
  14436. package="12"
  14437. />
  14438. <otaLanguage
  14439. id="0"
  14440. name="Danish"
  14441. package="13"
  14442. />
  14443. <otaLanguage
  14444. id="0"
  14445. name="Norwegian"
  14446. package="14"
  14447. />
  14448. <otaLanguage
  14449. id="0"
  14450. name="Swedish"
  14451. package="15"
  14452. />
  14453. <otaLanguage
  14454. id="0"
  14455. name="Turkish"
  14456. package="16"
  14457. />
  14458. <otaLanguage
  14459. id="0"
  14460. name="Hungarian"
  14461. package="17"
  14462. />
  14463. <otaLanguage
  14464. id="0"
  14465. name="Portuguese"
  14466. package="18"
  14467. />
  14468. <otaLanguage
  14469. id="0"
  14470. name="Hebrew"
  14471. package="19"
  14472. />
  14473. <otaLanguage
  14474. id="0"
  14475. name="Greek"
  14476. package="20"
  14477. />
  14478. </otaLanguages>
  14479. <otaPackages>
  14480. <package
  14481. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  14482. size="5183988"
  14483. />
  14484. <package
  14485. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  14486. size="5183988"
  14487. />
  14488. <package
  14489. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  14490. size="5183988"
  14491. />
  14492. <package
  14493. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  14494. size="5183988"
  14495. />
  14496. <package
  14497. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  14498. size="5183988"
  14499. />
  14500. <package
  14501. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  14502. size="5183988"
  14503. />
  14504. <package
  14505. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  14506. size="5183988"
  14507. />
  14508. <package
  14509. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  14510. size="5183988"
  14511. />
  14512. <package
  14513. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  14514. size="5183988"
  14515. />
  14516. <package
  14517. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  14518. size="5183988"
  14519. />
  14520. <package
  14521. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  14522. size="5183988"
  14523. />
  14524. <package
  14525. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  14526. size="5183988"
  14527. />
  14528. <package
  14529. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  14530. size="5183988"
  14531. />
  14532. <package
  14533. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  14534. size="5183988"
  14535. />
  14536. <package
  14537. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  14538. size="5183988"
  14539. />
  14540. <package
  14541. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  14542. size="5183988"
  14543. />
  14544. <package
  14545. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  14546. size="5183988"
  14547. />
  14548. <package
  14549. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  14550. size="5183988"
  14551. />
  14552. <package
  14553. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  14554. size="5183988"
  14555. />
  14556. <package
  14557. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  14558. size="5183988"
  14559. />
  14560. <package
  14561. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  14562. size="5183988"
  14563. />
  14564. </otaPackages>
  14565. </productMenu>
  14566. <productMenu id="wa"
  14567. type="0" >
  14568. </productMenu>
  14569. <productMenu id="sip"
  14570. type="1" >
  14571. </productMenu>
  14572. <productMenu id="led"
  14573. type="0" >
  14574. </productMenu>
  14575. <productMenu id="illusion"
  14576. type="1" >
  14577. </productMenu>
  14578. <productMenu id="meshIntercom"
  14579. type="30" >
  14580. </productMenu>
  14581. <productMenu id="meshIntercom+"
  14582. type="3"
  14583. url="2" >
  14584. </productMenu>
  14585. <productMenu id="waveIntercom"
  14586. type="0" >
  14587. </productMenu>
  14588. <productMenu id="bluetoothIntercom"
  14589. type="1" >
  14590. </productMenu>
  14591. <productMenu id="bluetoothIntercomGrouping"
  14592. type="0" >
  14593. </productMenu>
  14594. <productMenu id="fmradio"
  14595. type="1"
  14596. url="1" >
  14597. </productMenu>
  14598. <productMenu id="phone"
  14599. type="1" >
  14600. </productMenu>
  14601. <productMenu id="music"
  14602. type="1" >
  14603. </productMenu>
  14604. <productMenu id="musicSharing"
  14605. type="0" >
  14606. </productMenu>
  14607. <productMenu id="deviceSetting"
  14608. type="1"
  14609. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14610. </productMenu>
  14611. <productMenu id="quickGuide"
  14612. type="0"
  14613. url=""
  14614. size="1.12MB" >
  14615. </productMenu>
  14616. <productMenu id="userGuide"
  14617. type="1"
  14618. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14619. size="2.0MB" >
  14620. </productMenu>
  14621. <productMenu id="videoGuide"
  14622. type="0"
  14623. url=""
  14624. size="3.41MB" >
  14625. </productMenu>
  14626. <productMenu id="volume"
  14627. type="16" >
  14628. </productMenu>
  14629. <productMenu id="soundMode"
  14630. type="1" >
  14631. </productMenu>
  14632. <productMenu id="battery"
  14633. type="1" >
  14634. </productMenu>
  14635. <productID id="6A83"
  14636. />
  14637. <productGroupable type="0"
  14638. />
  14639. </product>
  14640. <product id="MeshStation"
  14641. name="Mesh Station"
  14642. series="50"
  14643. latestVersion="0.9"
  14644. show = "-1" >
  14645. <productMenu id="protocol"
  14646. type="2" >
  14647. </productMenu>
  14648. <productMenu id="meshIntercom"
  14649. type="20"
  14650. url="99" >
  14651. </productMenu>
  14652. <productID id="3161"
  14653. />
  14654. <productGroupable type="0"
  14655. />
  14656. </product>
  14657. </products>
  14658. </sna>