snm.xml 551 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260202" 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="warranty"
  150. type="1" >
  151. </productMenu>
  152. <productMenu id="serialNumber"
  153. type="1" >
  154. </productMenu>
  155. <productMenu id="ota"
  156. type="0" >
  157. <otaLanguages>
  158. <otaLanguage
  159. id="0"
  160. name="English"
  161. package="0"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Français"
  166. package="1"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="Español"
  171. package="2"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Italiano"
  176. package="3"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Deutsch"
  181. package="4"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Nederlands"
  186. package="5"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Русский"
  191. package="6"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="简体中文"
  196. package="7"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="한국어"
  201. package="8"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="日本語"
  206. package="9"
  207. />
  208. <otaLanguage
  209. id="0"
  210. name="Suomi"
  211. package="10"
  212. />
  213. <otaLanguage
  214. id="0"
  215. name="Polski"
  216. package="11"
  217. />
  218. </otaLanguages>
  219. <otaPackages>
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  242. size="5183988"
  243. />
  244. <package
  245. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  246. size="5183988"
  247. />
  248. <package
  249. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  250. size="5183988"
  251. />
  252. <package
  253. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  254. size="5183988"
  255. />
  256. <package
  257. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  258. size="5183988"
  259. />
  260. <package
  261. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  262. size="5183988"
  263. />
  264. <package
  265. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  266. size="5183988"
  267. />
  268. </otaPackages>
  269. </productMenu>
  270. <productMenu id="sip"
  271. type="1" >
  272. </productMenu>
  273. <productMenu id="illusion"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="meshIntercom"
  277. type="30" >
  278. </productMenu>
  279. <productMenu id="meshIntercom+"
  280. type="3"
  281. url="2" >
  282. </productMenu>
  283. <productMenu id="waveIntercom"
  284. type="1" >
  285. </productMenu>
  286. <productMenu id="bluetoothIntercom"
  287. type="1"
  288. url="2" >
  289. </productMenu>
  290. <productMenu id="bluetoothIntercomGrouping"
  291. type="0" >
  292. </productMenu>
  293. <productMenu id="fmradio"
  294. type="1"
  295. url="1" >
  296. </productMenu>
  297. <productMenu id="phone"
  298. type="1" >
  299. </productMenu>
  300. <productMenu id="music"
  301. type="1" >
  302. </productMenu>
  303. <productMenu id="musicSharing"
  304. type="0" >
  305. </productMenu>
  306. <productMenu id="deviceSetting"
  307. type="1"
  308. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  309. </productMenu>
  310. <productMenu id="quickGuide"
  311. type="0"
  312. url=""
  313. size="1.12MB" >
  314. </productMenu>
  315. <productMenu id="userGuide"
  316. type="1"
  317. url=""
  318. size="2.0MB" >
  319. </productMenu>
  320. <productMenu id="videoGuide"
  321. type="0"
  322. url=""
  323. size="3.41MB" >
  324. </productMenu>
  325. <productMenu id="connectGuide"
  326. type="0"
  327. url=""
  328. size="1.12MB" >
  329. </productMenu>
  330. <productMenu id="volume"
  331. type="16" >
  332. </productMenu>
  333. <productMenu id="soundMode"
  334. type="1" >
  335. </productMenu>
  336. <productMenu id="battery"
  337. type="1" >
  338. </productMenu>
  339. <productID id="6A1A"
  340. />
  341. <productGroupable type="0"
  342. />
  343. </product>
  344. <product id="60SEVO"
  345. name="60S EVO"
  346. series="60"
  347. latestVersion="1.0.3"
  348. latestVersionMesh="0.19"
  349. latestVersionVoicePrompt="1.8"
  350. show = "1" >
  351. <productMenu id="protocol"
  352. type="2" >
  353. </productMenu>
  354. <productMenu id="warranty"
  355. type="1" >
  356. </productMenu>
  357. <productMenu id="serialNumber"
  358. type="1" >
  359. </productMenu>
  360. <productMenu id="ota"
  361. type="2" >
  362. <otaLanguages>
  363. <otaLanguage
  364. id="0"
  365. name="English"
  366. package="0"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Français"
  371. package="1"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Español"
  376. package="2"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Italiano"
  381. package="3"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Deutsch"
  386. package="4"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Nederlands"
  391. package="5"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Русский"
  396. package="6"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="简体中文"
  401. package="7"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="한국어"
  406. package="8"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="日本語"
  411. package="9"
  412. />
  413. <otaLanguage
  414. id="0"
  415. name="Suomi"
  416. package="10"
  417. />
  418. <otaLanguage
  419. id="0"
  420. name="Polski"
  421. package="11"
  422. />
  423. </otaLanguages>
  424. <otaPackages>
  425. <package
  426. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  427. size="5183988"
  428. />
  429. <package
  430. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  431. size="5183988"
  432. />
  433. <package
  434. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  435. size="5183988"
  436. />
  437. <package
  438. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  439. size="5183988"
  440. />
  441. <package
  442. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  443. size="5183988"
  444. />
  445. <package
  446. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  447. size="5183988"
  448. />
  449. <package
  450. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  451. size="5183988"
  452. />
  453. <package
  454. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  455. size="5183988"
  456. />
  457. <package
  458. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  459. size="5183988"
  460. />
  461. <package
  462. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  463. size="5183988"
  464. />
  465. <package
  466. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  467. size="5183988"
  468. />
  469. <package
  470. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  471. size="5183988"
  472. />
  473. </otaPackages>
  474. </productMenu>
  475. <productMenu id="sip"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="illusion"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="meshIntercom"
  482. type="30" >
  483. </productMenu>
  484. <productMenu id="meshIntercom+"
  485. type="3"
  486. url="2" >
  487. </productMenu>
  488. <productMenu id="waveIntercom"
  489. type="1" >
  490. </productMenu>
  491. <productMenu id="bluetoothIntercom"
  492. type="1"
  493. url="2" >
  494. </productMenu>
  495. <productMenu id="bluetoothIntercomGrouping"
  496. type="0" >
  497. </productMenu>
  498. <productMenu id="fmradio"
  499. type="1"
  500. url="1" >
  501. </productMenu>
  502. <productMenu id="phone"
  503. type="1" >
  504. </productMenu>
  505. <productMenu id="music"
  506. type="1" >
  507. </productMenu>
  508. <productMenu id="musicSharing"
  509. type="0" >
  510. </productMenu>
  511. <productMenu id="deviceSetting"
  512. type="1"
  513. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  514. <productMenuURL version="1.0.2"
  515. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  516. />
  517. </productMenu>
  518. <productMenu id="quickGuide"
  519. type="0"
  520. url=""
  521. size="1.12MB" >
  522. </productMenu>
  523. <productMenu id="userGuide"
  524. type="1"
  525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  526. size="2.0MB" >
  527. </productMenu>
  528. <productMenu id="videoGuide"
  529. type="0"
  530. url=""
  531. size="3.41MB" >
  532. </productMenu>
  533. <productMenu id="connectGuide"
  534. type="1"
  535. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  536. size="1.12MB" >
  537. </productMenu>
  538. <productMenu id="volume"
  539. type="16" >
  540. </productMenu>
  541. <productMenu id="volume+"
  542. type="2"
  543. url="0x6004" >
  544. </productMenu>
  545. <productMenu id="soundMode"
  546. type="1" >
  547. </productMenu>
  548. <productMenu id="appearance"
  549. type="1"
  550. url="1|white,silver,black,glossy_black" >
  551. </productMenu>
  552. <productMenu id="battery"
  553. type="1" >
  554. </productMenu>
  555. <productID id="6A15"
  556. />
  557. <productGroupable type="0"
  558. />
  559. </product>
  560. <product id="60SEVOTTEditon"
  561. name="60S EVO TT Editon"
  562. series="60"
  563. latestVersion="1.0.3"
  564. latestVersionMesh="0.19"
  565. latestVersionVoicePrompt="1.8"
  566. show = "-1" >
  567. <productMenu id="protocol"
  568. type="2" >
  569. </productMenu>
  570. <productMenu id="warranty"
  571. type="1" >
  572. </productMenu>
  573. <productMenu id="serialNumber"
  574. type="1" >
  575. </productMenu>
  576. <productMenu id="ota"
  577. type="0" >
  578. <otaLanguages>
  579. <otaLanguage
  580. id="0"
  581. name="English"
  582. package="0"
  583. />
  584. <otaLanguage
  585. id="0"
  586. name="Français"
  587. package="1"
  588. />
  589. <otaLanguage
  590. id="0"
  591. name="Español"
  592. package="2"
  593. />
  594. <otaLanguage
  595. id="0"
  596. name="Italiano"
  597. package="3"
  598. />
  599. <otaLanguage
  600. id="0"
  601. name="Deutsch"
  602. package="4"
  603. />
  604. <otaLanguage
  605. id="0"
  606. name="Nederlands"
  607. package="5"
  608. />
  609. <otaLanguage
  610. id="0"
  611. name="Русский"
  612. package="6"
  613. />
  614. <otaLanguage
  615. id="0"
  616. name="简体中文"
  617. package="7"
  618. />
  619. <otaLanguage
  620. id="0"
  621. name="한국어"
  622. package="8"
  623. />
  624. <otaLanguage
  625. id="0"
  626. name="日本語"
  627. package="9"
  628. />
  629. <otaLanguage
  630. id="0"
  631. name="Suomi"
  632. package="10"
  633. />
  634. <otaLanguage
  635. id="0"
  636. name="Polski"
  637. package="11"
  638. />
  639. </otaLanguages>
  640. <otaPackages>
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-fr-FR.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-es-ES.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-it-IT.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-de-DE.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-nl-NL.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ru-RU.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-cmn-CN.img"
  671. size="5183988"
  672. />
  673. <package
  674. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ko-KR.img"
  675. size="5183988"
  676. />
  677. <package
  678. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ja-JP.img"
  679. size="5183988"
  680. />
  681. <package
  682. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-fi-FI.img"
  683. size="5183988"
  684. />
  685. <package
  686. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-pl-PL.img"
  687. size="5183988"
  688. />
  689. </otaPackages>
  690. </productMenu>
  691. <productMenu id="sip"
  692. type="1" >
  693. </productMenu>
  694. <productMenu id="illusion"
  695. type="1" >
  696. </productMenu>
  697. <productMenu id="meshIntercom"
  698. type="30" >
  699. </productMenu>
  700. <productMenu id="meshIntercom+"
  701. type="3"
  702. url="2" >
  703. </productMenu>
  704. <productMenu id="waveIntercom"
  705. type="1" >
  706. </productMenu>
  707. <productMenu id="bluetoothIntercom"
  708. type="1"
  709. url="2" >
  710. </productMenu>
  711. <productMenu id="bluetoothIntercomGrouping"
  712. type="0" >
  713. </productMenu>
  714. <productMenu id="fmradio"
  715. type="1"
  716. url="1" >
  717. </productMenu>
  718. <productMenu id="phone"
  719. type="1" >
  720. </productMenu>
  721. <productMenu id="music"
  722. type="1" >
  723. </productMenu>
  724. <productMenu id="musicSharing"
  725. type="0" >
  726. </productMenu>
  727. <productMenu id="deviceSetting"
  728. type="1"
  729. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  730. <productMenuURL version="1.0.2"
  731. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  732. />
  733. </productMenu>
  734. <productMenu id="quickGuide"
  735. type="0"
  736. url=""
  737. size="1.12MB" >
  738. </productMenu>
  739. <productMenu id="userGuide"
  740. type="1"
  741. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  742. size="2.0MB" >
  743. </productMenu>
  744. <productMenu id="videoGuide"
  745. type="0"
  746. url=""
  747. size="3.41MB" >
  748. </productMenu>
  749. <productMenu id="connectGuide"
  750. type="1"
  751. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  752. size="1.12MB" >
  753. </productMenu>
  754. <productMenu id="volume"
  755. type="16" >
  756. </productMenu>
  757. <productMenu id="volume+"
  758. type="2"
  759. url="0x6004" >
  760. </productMenu>
  761. <productMenu id="soundMode"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="appearance"
  765. type="1"
  766. url="1|white,silver,black,glossy_black" >
  767. </productMenu>
  768. <productMenu id="battery"
  769. type="1" >
  770. </productMenu>
  771. <productID id="6A25"
  772. />
  773. <productGroupable type="0"
  774. />
  775. </product>
  776. <product id="60S"
  777. name="60S"
  778. series="60"
  779. latestVersion="1.2.11"
  780. latestVersionMesh="1.2"
  781. latestVersionVoicePrompt="1.8"
  782. show = "1" >
  783. <productMenu id="protocol"
  784. type="2" >
  785. </productMenu>
  786. <productMenu id="ota"
  787. type="2" >
  788. <otaLanguages>
  789. <otaLanguage
  790. id="0"
  791. name="English"
  792. package="0"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Français"
  797. package="1"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Español"
  802. package="2"
  803. />
  804. <otaLanguage
  805. id="0"
  806. name="Italiano"
  807. package="3"
  808. />
  809. <otaLanguage
  810. id="0"
  811. name="Deutsch"
  812. package="4"
  813. />
  814. <otaLanguage
  815. id="0"
  816. name="Nederlands"
  817. package="5"
  818. />
  819. <otaLanguage
  820. id="0"
  821. name="Русский"
  822. package="6"
  823. />
  824. <otaLanguage
  825. id="0"
  826. name="简体中文"
  827. package="7"
  828. />
  829. <otaLanguage
  830. id="0"
  831. name="한국어"
  832. package="8"
  833. />
  834. <otaLanguage
  835. id="0"
  836. name="日本語"
  837. package="9"
  838. />
  839. <otaLanguage
  840. id="0"
  841. name="Suomi"
  842. package="10"
  843. />
  844. <otaLanguage
  845. id="0"
  846. name="Polski"
  847. package="11"
  848. />
  849. </otaLanguages>
  850. <otaPackages>
  851. <package
  852. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  853. size="5183988"
  854. />
  855. <package
  856. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  857. size="5183988"
  858. />
  859. <package
  860. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  861. size="5183988"
  862. />
  863. <package
  864. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  865. size="5183988"
  866. />
  867. <package
  868. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  869. size="5183988"
  870. />
  871. <package
  872. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  873. size="5183988"
  874. />
  875. <package
  876. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  877. size="5183988"
  878. />
  879. <package
  880. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  881. size="5183988"
  882. />
  883. <package
  884. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  885. size="5183988"
  886. />
  887. <package
  888. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  889. size="5183988"
  890. />
  891. <package
  892. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  893. size="5183988"
  894. />
  895. <package
  896. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  897. size="5183988"
  898. />
  899. </otaPackages>
  900. </productMenu>
  901. <productMenu id="sip"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="illusion"
  905. type="1" >
  906. </productMenu>
  907. <productMenu id="meshIntercom"
  908. type="30" >
  909. </productMenu>
  910. <productMenu id="meshIntercom+"
  911. type="3"
  912. url="2" >
  913. </productMenu>
  914. <productMenu id="waveIntercom"
  915. type="1" >
  916. </productMenu>
  917. <productMenu id="bluetoothIntercom"
  918. type="1"
  919. url="2" >
  920. </productMenu>
  921. <productMenu id="bluetoothIntercomGrouping"
  922. type="0" >
  923. </productMenu>
  924. <productMenu id="fmradio"
  925. type="1"
  926. url="1" >
  927. </productMenu>
  928. <productMenu id="phone"
  929. type="1" >
  930. </productMenu>
  931. <productMenu id="music"
  932. type="1" >
  933. </productMenu>
  934. <productMenu id="musicSharing"
  935. type="0" >
  936. </productMenu>
  937. <productMenu id="deviceSetting"
  938. type="1"
  939. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  940. <productMenuURL version="1.2.10"
  941. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  942. />
  943. <productMenuURL version="1.2.6"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  945. />
  946. <productMenuURL version="1.2.3"
  947. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  948. />
  949. </productMenu>
  950. <productMenu id="quickGuide"
  951. type="0"
  952. url=""
  953. size="1.12MB" >
  954. </productMenu>
  955. <productMenu id="userGuide"
  956. type="1"
  957. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  958. size="2.0MB" >
  959. </productMenu>
  960. <productMenu id="videoGuide"
  961. type="0"
  962. url=""
  963. size="3.41MB" >
  964. </productMenu>
  965. <productMenu id="connectGuide"
  966. type="1"
  967. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  968. size="1.12MB" >
  969. </productMenu>
  970. <productMenu id="volume"
  971. type="16" >
  972. </productMenu>
  973. <productMenu id="volume+"
  974. type="2"
  975. url="0x6004" >
  976. <productMenuURL version="1.2.3"
  977. url="0x6004"
  978. />
  979. </productMenu>
  980. <productMenu id="soundMode"
  981. type="0" >
  982. </productMenu>
  983. <productMenu id="appearance"
  984. type="1"
  985. url="2|white,silver,chrome,black" >
  986. </productMenu>
  987. <productMenu id="battery"
  988. type="1" >
  989. </productMenu>
  990. <productID id="6A0D"
  991. />
  992. <productGroupable type="0"
  993. />
  994. </product>
  995. <product id="60S"
  996. name="60S"
  997. series="60"
  998. latestVersion="1.2.11"
  999. latestVersionMesh="1.2"
  1000. latestVersionVoicePrompt="1.8"
  1001. show = "-1" >
  1002. <productMenu id="protocol"
  1003. type="2" >
  1004. </productMenu>
  1005. <productMenu id="ota"
  1006. type="2" >
  1007. <otaLanguages>
  1008. <otaLanguage
  1009. id="0"
  1010. name="English"
  1011. package="0"
  1012. />
  1013. <otaLanguage
  1014. id="0"
  1015. name="Français"
  1016. package="1"
  1017. />
  1018. <otaLanguage
  1019. id="0"
  1020. name="Español"
  1021. package="2"
  1022. />
  1023. <otaLanguage
  1024. id="0"
  1025. name="Italiano"
  1026. package="3"
  1027. />
  1028. <otaLanguage
  1029. id="0"
  1030. name="Deutsch"
  1031. package="4"
  1032. />
  1033. <otaLanguage
  1034. id="0"
  1035. name="Nederlands"
  1036. package="5"
  1037. />
  1038. <otaLanguage
  1039. id="0"
  1040. name="Русский"
  1041. package="6"
  1042. />
  1043. <otaLanguage
  1044. id="0"
  1045. name="简体中文"
  1046. package="7"
  1047. />
  1048. <otaLanguage
  1049. id="0"
  1050. name="한국어"
  1051. package="8"
  1052. />
  1053. <otaLanguage
  1054. id="0"
  1055. name="日本語"
  1056. package="9"
  1057. />
  1058. <otaLanguage
  1059. id="0"
  1060. name="Suomi"
  1061. package="10"
  1062. />
  1063. <otaLanguage
  1064. id="0"
  1065. name="Polski"
  1066. package="11"
  1067. />
  1068. </otaLanguages>
  1069. <otaPackages>
  1070. <package
  1071. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  1072. size="5183988"
  1073. />
  1074. <package
  1075. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  1076. size="5183988"
  1077. />
  1078. <package
  1079. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  1080. size="5183988"
  1081. />
  1082. <package
  1083. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  1084. size="5183988"
  1085. />
  1086. <package
  1087. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  1088. size="5183988"
  1089. />
  1090. <package
  1091. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  1092. size="5183988"
  1093. />
  1094. <package
  1095. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  1096. size="5183988"
  1097. />
  1098. <package
  1099. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  1100. size="5183988"
  1101. />
  1102. <package
  1103. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  1104. size="5183988"
  1105. />
  1106. <package
  1107. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  1108. size="5183988"
  1109. />
  1110. <package
  1111. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  1112. size="5183988"
  1113. />
  1114. <package
  1115. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  1116. size="5183988"
  1117. />
  1118. </otaPackages>
  1119. </productMenu>
  1120. <productMenu id="wa"
  1121. type="0" >
  1122. </productMenu>
  1123. <productMenu id="sip"
  1124. type="1" >
  1125. </productMenu>
  1126. <productMenu id="led"
  1127. type="0" >
  1128. </productMenu>
  1129. <productMenu id="illusion"
  1130. type="1" >
  1131. </productMenu>
  1132. <productMenu id="meshIntercom"
  1133. type="30" >
  1134. </productMenu>
  1135. <productMenu id="meshIntercom+"
  1136. type="3"
  1137. url="2" >
  1138. <productMenuURL version="1.0.2"
  1139. url="10"
  1140. />
  1141. </productMenu>
  1142. <productMenu id="waveIntercom"
  1143. type="1" >
  1144. <productMenuType version="1.0.9"
  1145. type="0"
  1146. />
  1147. </productMenu>
  1148. <productMenu id="bluetoothIntercom"
  1149. type="1"
  1150. url="2" >
  1151. </productMenu>
  1152. <productMenu id="bluetoothIntercomGrouping"
  1153. type="0" >
  1154. </productMenu>
  1155. <productMenu id="fmradio"
  1156. type="1"
  1157. url="1" >
  1158. </productMenu>
  1159. <productMenu id="phone"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="music"
  1163. type="1" >
  1164. </productMenu>
  1165. <productMenu id="musicSharing"
  1166. type="0" >
  1167. </productMenu>
  1168. <productMenu id="deviceSetting"
  1169. type="1"
  1170. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  1171. <productMenuURL version="1.2.10"
  1172. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  1173. />
  1174. <productMenuURL version="1.2.6"
  1175. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  1176. />
  1177. <productMenuURL version="1.2.3"
  1178. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  1179. />
  1180. <productMenuURL version="1.0.2"
  1181. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  1182. />
  1183. <productMenuURL version="1.0"
  1184. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  1185. />
  1186. <productMenuURL version="0.9.11"
  1187. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  1188. />
  1189. </productMenu>
  1190. <productMenu id="quickGuide"
  1191. type="0"
  1192. url=""
  1193. size="1.12MB" >
  1194. </productMenu>
  1195. <productMenu id="userGuide"
  1196. type="1"
  1197. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  1198. size="2.0MB" >
  1199. </productMenu>
  1200. <productMenu id="videoGuide"
  1201. type="0"
  1202. url=""
  1203. size="3.41MB" >
  1204. </productMenu>
  1205. <productMenu id="connectGuide"
  1206. type="1"
  1207. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  1208. size="1.12MB" >
  1209. </productMenu>
  1210. <productMenu id="volume"
  1211. type="16" >
  1212. <productMenuType version="0.9.11"
  1213. type="13"
  1214. />
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. <productMenuURL version="1.2.3"
  1220. url="0x6004"
  1221. />
  1222. </productMenu>
  1223. <productMenu id="soundMode"
  1224. type="0" >
  1225. <productMenuType version="0.9.11"
  1226. type="0"
  1227. />
  1228. </productMenu>
  1229. <productMenu id="appearance"
  1230. type="1"
  1231. url="2|white,silver,chrome,black" >
  1232. </productMenu>
  1233. <productMenu id="battery"
  1234. type="1" >
  1235. </productMenu>
  1236. <productID id="6A02"
  1237. />
  1238. <productGroupable type="0"
  1239. />
  1240. </product>
  1241. <product id="60X"
  1242. name="60X"
  1243. series="60"
  1244. latestVersion="1.0.1"
  1245. latestVersionMesh="0.19"
  1246. latestVersionVoicePrompt="1.8"
  1247. show = "1" >
  1248. <productMenu id="protocol"
  1249. type="2" >
  1250. </productMenu>
  1251. <productMenu id="warranty"
  1252. type="1" >
  1253. </productMenu>
  1254. <productMenu id="serialNumber"
  1255. type="1" >
  1256. </productMenu>
  1257. <productMenu id="ota"
  1258. type="2" >
  1259. <otaLanguages>
  1260. <otaLanguage
  1261. id="0"
  1262. name="English"
  1263. package="0"
  1264. />
  1265. <otaLanguage
  1266. id="0"
  1267. name="Français"
  1268. package="1"
  1269. />
  1270. <otaLanguage
  1271. id="0"
  1272. name="Español"
  1273. package="2"
  1274. />
  1275. <otaLanguage
  1276. id="0"
  1277. name="Italiano"
  1278. package="3"
  1279. />
  1280. <otaLanguage
  1281. id="0"
  1282. name="Deutsch"
  1283. package="4"
  1284. />
  1285. <otaLanguage
  1286. id="0"
  1287. name="Nederlands"
  1288. package="5"
  1289. />
  1290. <otaLanguage
  1291. id="0"
  1292. name="Русский"
  1293. package="6"
  1294. />
  1295. <otaLanguage
  1296. id="0"
  1297. name="简体中文"
  1298. package="7"
  1299. />
  1300. <otaLanguage
  1301. id="0"
  1302. name="한국어"
  1303. package="8"
  1304. />
  1305. <otaLanguage
  1306. id="0"
  1307. name="日本語"
  1308. package="9"
  1309. />
  1310. <otaLanguage
  1311. id="0"
  1312. name="Suomi"
  1313. package="10"
  1314. />
  1315. <otaLanguage
  1316. id="0"
  1317. name="Polski"
  1318. package="11"
  1319. />
  1320. </otaLanguages>
  1321. <otaPackages>
  1322. <package
  1323. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1324. size="5183988"
  1325. />
  1326. <package
  1327. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1328. size="5183988"
  1329. />
  1330. <package
  1331. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1332. size="5183988"
  1333. />
  1334. <package
  1335. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1336. size="5183988"
  1337. />
  1338. <package
  1339. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1340. size="5183988"
  1341. />
  1342. <package
  1343. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1344. size="5183988"
  1345. />
  1346. <package
  1347. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1348. size="5183988"
  1349. />
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1368. size="5183988"
  1369. />
  1370. </otaPackages>
  1371. </productMenu>
  1372. <productMenu id="wa"
  1373. type="0" >
  1374. </productMenu>
  1375. <productMenu id="sip"
  1376. type="1" >
  1377. </productMenu>
  1378. <productMenu id="led"
  1379. type="1" >
  1380. </productMenu>
  1381. <productMenu id="illusion"
  1382. type="1" >
  1383. </productMenu>
  1384. <productMenu id="meshIntercom"
  1385. type="30" >
  1386. </productMenu>
  1387. <productMenu id="meshIntercom+"
  1388. type="3"
  1389. url="2" >
  1390. </productMenu>
  1391. <productMenu id="waveIntercom"
  1392. type="1" >
  1393. </productMenu>
  1394. <productMenu id="bluetoothIntercom"
  1395. type="1" >
  1396. </productMenu>
  1397. <productMenu id="fmradio"
  1398. type="1"
  1399. url="1" >
  1400. </productMenu>
  1401. <productMenu id="mic"
  1402. type="0" >
  1403. </productMenu>
  1404. <productMenu id="phone"
  1405. type="1" >
  1406. </productMenu>
  1407. <productMenu id="music"
  1408. type="1" >
  1409. </productMenu>
  1410. <productMenu id="musicSharing"
  1411. type="0" >
  1412. </productMenu>
  1413. <productMenu id="deviceSetting"
  1414. type="1"
  1415. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1416. <productMenuURL version="1.0"
  1417. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1418. />
  1419. </productMenu>
  1420. <productMenu id="quickGuide"
  1421. type="0"
  1422. url=""
  1423. size="1.12MB" >
  1424. </productMenu>
  1425. <productMenu id="userGuide"
  1426. type="1"
  1427. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1428. size="2.0MB" >
  1429. </productMenu>
  1430. <productMenu id="videoGuide"
  1431. type="0"
  1432. url=""
  1433. size="3.41MB" >
  1434. </productMenu>
  1435. <productMenu id="connectGuide"
  1436. type="1"
  1437. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1438. size="1.12MB" >
  1439. </productMenu>
  1440. <productMenu id="keySettings"
  1441. type="1"
  1442. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1443. </productMenu>
  1444. <productMenu id="volume"
  1445. type="13" >
  1446. </productMenu>
  1447. <productMenu id="volume+"
  1448. type="2"
  1449. url="0x6004" >
  1450. </productMenu>
  1451. <productMenu id="appearance"
  1452. type="1"
  1453. url="1|white,silver,black,glossy_black" >
  1454. </productMenu>
  1455. <productMenu id="battery"
  1456. type="1" >
  1457. </productMenu>
  1458. <productID id="6A03"
  1459. />
  1460. <productGroupable type="0"
  1461. />
  1462. </product>
  1463. <product id="60XTTEdition"
  1464. name="60X TT Edition"
  1465. series="60"
  1466. latestVersion="1.0.1"
  1467. latestVersionMesh="0.19"
  1468. latestVersionVoicePrompt="1.8"
  1469. show = "-1" >
  1470. <productMenu id="protocol"
  1471. type="2" >
  1472. </productMenu>
  1473. <productMenu id="warranty"
  1474. type="1" >
  1475. </productMenu>
  1476. <productMenu id="serialNumber"
  1477. type="1" >
  1478. </productMenu>
  1479. <productMenu id="ota"
  1480. type="0" >
  1481. <otaLanguages>
  1482. <otaLanguage
  1483. id="0"
  1484. name="English"
  1485. package="0"
  1486. />
  1487. <otaLanguage
  1488. id="0"
  1489. name="Français"
  1490. package="1"
  1491. />
  1492. <otaLanguage
  1493. id="0"
  1494. name="Español"
  1495. package="2"
  1496. />
  1497. <otaLanguage
  1498. id="0"
  1499. name="Italiano"
  1500. package="3"
  1501. />
  1502. <otaLanguage
  1503. id="0"
  1504. name="Deutsch"
  1505. package="4"
  1506. />
  1507. <otaLanguage
  1508. id="0"
  1509. name="Nederlands"
  1510. package="5"
  1511. />
  1512. <otaLanguage
  1513. id="0"
  1514. name="Русский"
  1515. package="6"
  1516. />
  1517. <otaLanguage
  1518. id="0"
  1519. name="简体中文"
  1520. package="7"
  1521. />
  1522. <otaLanguage
  1523. id="0"
  1524. name="한국어"
  1525. package="8"
  1526. />
  1527. <otaLanguage
  1528. id="0"
  1529. name="日本語"
  1530. package="9"
  1531. />
  1532. <otaLanguage
  1533. id="0"
  1534. name="Suomi"
  1535. package="10"
  1536. />
  1537. <otaLanguage
  1538. id="0"
  1539. name="Polski"
  1540. package="11"
  1541. />
  1542. </otaLanguages>
  1543. <otaPackages>
  1544. <package
  1545. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1.img"
  1546. size="5183988"
  1547. />
  1548. <package
  1549. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-fr-FR.img"
  1550. size="5183988"
  1551. />
  1552. <package
  1553. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-es-ES.img"
  1554. size="5183988"
  1555. />
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-it-IT.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-de-DE.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-nl-NL.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ru-RU.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-cmn-CN.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ko-KR.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ja-JP.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-fi-FI.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-pl-PL.img"
  1590. size="5183988"
  1591. />
  1592. </otaPackages>
  1593. </productMenu>
  1594. <productMenu id="wa"
  1595. type="0" >
  1596. </productMenu>
  1597. <productMenu id="sip"
  1598. type="1" >
  1599. </productMenu>
  1600. <productMenu id="led"
  1601. type="1" >
  1602. </productMenu>
  1603. <productMenu id="illusion"
  1604. type="1" >
  1605. </productMenu>
  1606. <productMenu id="meshIntercom"
  1607. type="30" >
  1608. </productMenu>
  1609. <productMenu id="meshIntercom+"
  1610. type="3"
  1611. url="2" >
  1612. </productMenu>
  1613. <productMenu id="waveIntercom"
  1614. type="1" >
  1615. </productMenu>
  1616. <productMenu id="bluetoothIntercom"
  1617. type="1" >
  1618. </productMenu>
  1619. <productMenu id="fmradio"
  1620. type="1"
  1621. url="1" >
  1622. </productMenu>
  1623. <productMenu id="mic"
  1624. type="0" >
  1625. </productMenu>
  1626. <productMenu id="phone"
  1627. type="1" >
  1628. </productMenu>
  1629. <productMenu id="music"
  1630. type="1" >
  1631. </productMenu>
  1632. <productMenu id="musicSharing"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="deviceSetting"
  1636. type="1"
  1637. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1638. <productMenuURL version="1.0"
  1639. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1640. />
  1641. </productMenu>
  1642. <productMenu id="quickGuide"
  1643. type="0"
  1644. url=""
  1645. size="1.12MB" >
  1646. </productMenu>
  1647. <productMenu id="userGuide"
  1648. type="1"
  1649. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1650. size="2.0MB" >
  1651. </productMenu>
  1652. <productMenu id="videoGuide"
  1653. type="0"
  1654. url=""
  1655. size="3.41MB" >
  1656. </productMenu>
  1657. <productMenu id="connectGuide"
  1658. type="1"
  1659. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1660. size="1.12MB" >
  1661. </productMenu>
  1662. <productMenu id="keySettings"
  1663. type="1"
  1664. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1665. </productMenu>
  1666. <productMenu id="volume"
  1667. type="13" >
  1668. </productMenu>
  1669. <productMenu id="volume+"
  1670. type="2"
  1671. url="0x6004" >
  1672. </productMenu>
  1673. <productMenu id="appearance"
  1674. type="1"
  1675. url="1|white,silver,black,glossy_black" >
  1676. </productMenu>
  1677. <productMenu id="battery"
  1678. type="1" >
  1679. </productMenu>
  1680. <productID id="6A26"
  1681. />
  1682. <productGroupable type="0"
  1683. />
  1684. </product>
  1685. <product id="R35"
  1686. name="R35"
  1687. series="R"
  1688. latestVersion="1.1.2"
  1689. latestVersionVoicePrompt="1.5"
  1690. show = "1" >
  1691. <productMenu id="protocol"
  1692. type="2" >
  1693. </productMenu>
  1694. <productMenu id="ota"
  1695. type="2" >
  1696. <otaLanguages>
  1697. <otaLanguage
  1698. id="0"
  1699. name="English"
  1700. package="0"
  1701. />
  1702. <otaLanguage
  1703. id="0"
  1704. name="简体中文"
  1705. package="1"
  1706. />
  1707. <otaLanguage
  1708. id="0"
  1709. name="Chinese Singapore"
  1710. package="2"
  1711. />
  1712. <otaLanguage
  1713. id="0"
  1714. name="Filipino"
  1715. package="3"
  1716. />
  1717. <otaLanguage
  1718. id="0"
  1719. name="Hebrew"
  1720. package="4"
  1721. />
  1722. <otaLanguage
  1723. id="0"
  1724. name="Hindi"
  1725. package="5"
  1726. />
  1727. <otaLanguage
  1728. id="0"
  1729. name="Indonesian"
  1730. package="6"
  1731. />
  1732. <otaLanguage
  1733. id="0"
  1734. name="日本語"
  1735. package="7"
  1736. />
  1737. <otaLanguage
  1738. id="0"
  1739. name="한국어"
  1740. package="8"
  1741. />
  1742. <otaLanguage
  1743. id="0"
  1744. name="Malay"
  1745. package="9"
  1746. />
  1747. <otaLanguage
  1748. id="0"
  1749. name="Modern Standard Arabic"
  1750. package="10"
  1751. />
  1752. <otaLanguage
  1753. id="0"
  1754. name="Taiwanese"
  1755. package="11"
  1756. />
  1757. <otaLanguage
  1758. id="0"
  1759. name="Tamil"
  1760. package="12"
  1761. />
  1762. <otaLanguage
  1763. id="0"
  1764. name="Thai"
  1765. package="13"
  1766. />
  1767. <otaLanguage
  1768. id="0"
  1769. name="东北话"
  1770. package="14"
  1771. />
  1772. <otaLanguage
  1773. id="0"
  1774. name="广东话"
  1775. package="15"
  1776. />
  1777. <otaLanguage
  1778. id="0"
  1779. name="江浙沪"
  1780. package="16"
  1781. />
  1782. <otaLanguage
  1783. id="0"
  1784. name="四川话"
  1785. package="17"
  1786. />
  1787. <otaLanguage
  1788. id="0"
  1789. name="陕西话"
  1790. package="18"
  1791. />
  1792. </otaLanguages>
  1793. <otaPackages>
  1794. <package
  1795. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1796. size="5183988"
  1797. />
  1798. <package
  1799. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1800. size="5183988"
  1801. />
  1802. <package
  1803. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1804. size="5183988"
  1805. />
  1806. <package
  1807. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1808. size="5183988"
  1809. />
  1810. <package
  1811. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1812. size="5183988"
  1813. />
  1814. <package
  1815. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1816. size="5183988"
  1817. />
  1818. <package
  1819. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1820. size="5183988"
  1821. />
  1822. <package
  1823. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1824. size="5183988"
  1825. />
  1826. <package
  1827. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1828. size="5183988"
  1829. />
  1830. <package
  1831. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1832. size="5183988"
  1833. />
  1834. <package
  1835. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1836. size="5183988"
  1837. />
  1838. <package
  1839. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1840. size="5183988"
  1841. />
  1842. <package
  1843. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1844. size="5183988"
  1845. />
  1846. <package
  1847. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1848. size="5183988"
  1849. />
  1850. <package
  1851. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1852. size="5183988"
  1853. />
  1854. <package
  1855. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1856. size="5183988"
  1857. />
  1858. <package
  1859. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1860. size="5183988"
  1861. />
  1862. <package
  1863. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1864. size="5183988"
  1865. />
  1866. <package
  1867. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1868. size="5183988"
  1869. />
  1870. </otaPackages>
  1871. </productMenu>
  1872. <productMenu id="sip"
  1873. type="1" >
  1874. </productMenu>
  1875. <productMenu id="illusion"
  1876. type="1" >
  1877. </productMenu>
  1878. <productMenu id="meshIntercom"
  1879. type="30" >
  1880. </productMenu>
  1881. <productMenu id="meshIntercom+"
  1882. type="3"
  1883. url="2" >
  1884. </productMenu>
  1885. <productMenu id="waveIntercom"
  1886. type="1" >
  1887. </productMenu>
  1888. <productMenu id="phone"
  1889. type="1" >
  1890. </productMenu>
  1891. <productMenu id="music"
  1892. type="1" >
  1893. </productMenu>
  1894. <productMenu id="musicSharing"
  1895. type="0" >
  1896. </productMenu>
  1897. <productMenu id="deviceSetting"
  1898. type="1"
  1899. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1900. <productMenuURL version="1.1.1"
  1901. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1902. />
  1903. <productMenuURL version="1.0.3"
  1904. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1905. />
  1906. </productMenu>
  1907. <productMenu id="quickGuide"
  1908. type="0"
  1909. url=""
  1910. size="1.12MB" >
  1911. </productMenu>
  1912. <productMenu id="userGuide"
  1913. type="1"
  1914. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1915. size="2.0MB" >
  1916. </productMenu>
  1917. <productMenu id="videoGuide"
  1918. type="0"
  1919. url=""
  1920. size="3.41MB" >
  1921. </productMenu>
  1922. <productMenu id="connectGuide"
  1923. type="1"
  1924. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1925. size="1.12MB" >
  1926. </productMenu>
  1927. <productMenu id="volume"
  1928. type="16" >
  1929. </productMenu>
  1930. <productMenu id="volume+"
  1931. type="2"
  1932. url="0x6004" >
  1933. </productMenu>
  1934. <productMenu id="soundMode"
  1935. type="0" >
  1936. </productMenu>
  1937. <productMenu id="appearance"
  1938. type="1"
  1939. url="1|white,silver,chrome,black" >
  1940. </productMenu>
  1941. <productMenu id="battery"
  1942. type="1" >
  1943. </productMenu>
  1944. <productID id="6A06"
  1945. />
  1946. <productGroupable type="0"
  1947. />
  1948. </product>
  1949. <product id="COM60X"
  1950. name="BMW MOTORRAD COM 60X"
  1951. series="60"
  1952. latestVersion="0.1.1"
  1953. latestVersionMesh="0.19"
  1954. latestVersionVoicePrompt="1.8"
  1955. show = "-1" >
  1956. <productMenu id="protocol"
  1957. type="2" >
  1958. </productMenu>
  1959. <productMenu id="ota"
  1960. type="2" >
  1961. <otaLanguages>
  1962. <otaLanguage
  1963. id="0"
  1964. name="English"
  1965. package="0"
  1966. />
  1967. <otaLanguage
  1968. id="0"
  1969. name="Français"
  1970. package="1"
  1971. />
  1972. <otaLanguage
  1973. id="0"
  1974. name="Español"
  1975. package="2"
  1976. />
  1977. <otaLanguage
  1978. id="0"
  1979. name="Italiano"
  1980. package="3"
  1981. />
  1982. <otaLanguage
  1983. id="0"
  1984. name="Deutsch"
  1985. package="4"
  1986. />
  1987. <otaLanguage
  1988. id="0"
  1989. name="Nederlands"
  1990. package="5"
  1991. />
  1992. <otaLanguage
  1993. id="0"
  1994. name="Русский"
  1995. package="6"
  1996. />
  1997. <otaLanguage
  1998. id="0"
  1999. name="简体中文"
  2000. package="7"
  2001. />
  2002. <otaLanguage
  2003. id="0"
  2004. name="한국어"
  2005. package="8"
  2006. />
  2007. <otaLanguage
  2008. id="0"
  2009. name="日本語"
  2010. package="9"
  2011. />
  2012. <otaLanguage
  2013. id="0"
  2014. name="Suomi"
  2015. package="10"
  2016. />
  2017. <otaLanguage
  2018. id="0"
  2019. name="Polski"
  2020. package="11"
  2021. />
  2022. </otaLanguages>
  2023. <otaPackages>
  2024. <package
  2025. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0.img"
  2026. size="5183988"
  2027. />
  2028. <package
  2029. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fr-FR.img"
  2030. size="5183988"
  2031. />
  2032. <package
  2033. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-es-ES.img"
  2034. size="5183988"
  2035. />
  2036. <package
  2037. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-it-IT.img"
  2038. size="5183988"
  2039. />
  2040. <package
  2041. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-de-DE.img"
  2042. size="5183988"
  2043. />
  2044. <package
  2045. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-nl-NL.img"
  2046. size="5183988"
  2047. />
  2048. <package
  2049. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ru-RU.img"
  2050. size="5183988"
  2051. />
  2052. <package
  2053. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-cmn-CN.img"
  2054. size="5183988"
  2055. />
  2056. <package
  2057. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ko-KR.img"
  2058. size="5183988"
  2059. />
  2060. <package
  2061. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ja-JP.img"
  2062. size="5183988"
  2063. />
  2064. <package
  2065. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fi-FI.img"
  2066. size="5183988"
  2067. />
  2068. <package
  2069. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-pl-PL.img"
  2070. size="5183988"
  2071. />
  2072. </otaPackages>
  2073. </productMenu>
  2074. <productMenu id="wa"
  2075. type="0" >
  2076. </productMenu>
  2077. <productMenu id="sip"
  2078. type="1" >
  2079. </productMenu>
  2080. <productMenu id="led"
  2081. type="1" >
  2082. </productMenu>
  2083. <productMenu id="illusion"
  2084. type="1" >
  2085. </productMenu>
  2086. <productMenu id="meshIntercom"
  2087. type="30" >
  2088. </productMenu>
  2089. <productMenu id="meshIntercom+"
  2090. type="3"
  2091. url="2" >
  2092. </productMenu>
  2093. <productMenu id="bluetoothIntercom"
  2094. type="1" >
  2095. </productMenu>
  2096. <productMenu id="fmradio"
  2097. type="1"
  2098. url="1" >
  2099. </productMenu>
  2100. <productMenu id="mic"
  2101. type="0" >
  2102. </productMenu>
  2103. <productMenu id="phone"
  2104. type="1" >
  2105. </productMenu>
  2106. <productMenu id="music"
  2107. type="1" >
  2108. </productMenu>
  2109. <productMenu id="musicSharing"
  2110. type="0" >
  2111. </productMenu>
  2112. <productMenu id="deviceSetting"
  2113. type="1"
  2114. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  2115. </productMenu>
  2116. <productMenu id="quickGuide"
  2117. type="0"
  2118. url=""
  2119. size="1.12MB" >
  2120. </productMenu>
  2121. <productMenu id="userGuide"
  2122. type="1"
  2123. url=""
  2124. size="2.0MB" >
  2125. </productMenu>
  2126. <productMenu id="videoGuide"
  2127. type="0"
  2128. url=""
  2129. size="3.41MB" >
  2130. </productMenu>
  2131. <productMenu id="keySettings"
  2132. type="1"
  2133. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  2134. </productMenu>
  2135. <productMenu id="volume"
  2136. type="13" >
  2137. </productMenu>
  2138. <productMenu id="volume+"
  2139. type="2"
  2140. url="0x6004" >
  2141. </productMenu>
  2142. <productMenu id="battery"
  2143. type="1" >
  2144. </productMenu>
  2145. <productID id="6A1B"
  2146. />
  2147. <productGroupable type="0"
  2148. />
  2149. </product>
  2150. <product id="COMP1"
  2151. name="BMW COM P1"
  2152. series="60"
  2153. latestVersion="1.2"
  2154. latestVersionMesh="0.19"
  2155. latestVersionVoicePrompt="1.0"
  2156. show = "-1" >
  2157. <productMenu id="protocol"
  2158. type="2" >
  2159. </productMenu>
  2160. <productMenu id="ota"
  2161. type="2" >
  2162. <otaLanguages>
  2163. <otaLanguage
  2164. id="0"
  2165. name="English"
  2166. package="0"
  2167. />
  2168. <otaLanguage
  2169. id="0"
  2170. name="Français"
  2171. package="1"
  2172. />
  2173. <otaLanguage
  2174. id="0"
  2175. name="Español"
  2176. package="2"
  2177. />
  2178. <otaLanguage
  2179. id="0"
  2180. name="Italiano"
  2181. package="3"
  2182. />
  2183. <otaLanguage
  2184. id="0"
  2185. name="Deutsch"
  2186. package="4"
  2187. />
  2188. <otaLanguage
  2189. id="0"
  2190. name="Nederlands"
  2191. package="5"
  2192. />
  2193. <otaLanguage
  2194. id="0"
  2195. name="Русский"
  2196. package="6"
  2197. />
  2198. <otaLanguage
  2199. id="0"
  2200. name="简体中文"
  2201. package="7"
  2202. />
  2203. <otaLanguage
  2204. id="0"
  2205. name="한국어"
  2206. package="8"
  2207. />
  2208. <otaLanguage
  2209. id="0"
  2210. name="日本語"
  2211. package="9"
  2212. />
  2213. <otaLanguage
  2214. id="0"
  2215. name="Suomi"
  2216. package="10"
  2217. />
  2218. </otaLanguages>
  2219. <otaPackages>
  2220. <package
  2221. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  2222. size="5183988"
  2223. />
  2224. <package
  2225. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  2226. size="5183988"
  2227. />
  2228. <package
  2229. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  2230. size="5183988"
  2231. />
  2232. <package
  2233. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  2234. size="5183988"
  2235. />
  2236. <package
  2237. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  2238. size="5183988"
  2239. />
  2240. <package
  2241. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  2242. size="5183988"
  2243. />
  2244. <package
  2245. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  2246. size="5183988"
  2247. />
  2248. <package
  2249. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  2250. size="5183988"
  2251. />
  2252. <package
  2253. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  2254. size="5183988"
  2255. />
  2256. <package
  2257. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  2258. size="5183988"
  2259. />
  2260. <package
  2261. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  2262. size="5183988"
  2263. />
  2264. </otaPackages>
  2265. </productMenu>
  2266. <productMenu id="wa"
  2267. type="0" >
  2268. </productMenu>
  2269. <productMenu id="sip"
  2270. type="1" >
  2271. </productMenu>
  2272. <productMenu id="led"
  2273. type="0" >
  2274. </productMenu>
  2275. <productMenu id="illusion"
  2276. type="0" >
  2277. </productMenu>
  2278. <productMenu id="meshIntercom"
  2279. type="30" >
  2280. </productMenu>
  2281. <productMenu id="bluetoothIntercom"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="bluetoothIntercomGrouping"
  2285. type="0" >
  2286. </productMenu>
  2287. <productMenu id="fmradio"
  2288. type="0" >
  2289. </productMenu>
  2290. <productMenu id="phone"
  2291. type="1" >
  2292. </productMenu>
  2293. <productMenu id="music"
  2294. type="1" >
  2295. </productMenu>
  2296. <productMenu id="musicSharing"
  2297. type="0" >
  2298. </productMenu>
  2299. <productMenu id="deviceSetting"
  2300. type="1"
  2301. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  2302. </productMenu>
  2303. <productMenu id="quickGuide"
  2304. type="0"
  2305. url=""
  2306. size="1.12MB" >
  2307. </productMenu>
  2308. <productMenu id="userGuide"
  2309. type="0"
  2310. url=""
  2311. size="2.0MB" >
  2312. </productMenu>
  2313. <productMenu id="videoGuide"
  2314. type="0"
  2315. url=""
  2316. size="3.41MB" >
  2317. </productMenu>
  2318. <productMenu id="volume"
  2319. type="16" >
  2320. </productMenu>
  2321. <productMenu id="battery"
  2322. type="1" >
  2323. </productMenu>
  2324. <productID id="6A80"
  2325. />
  2326. <productGroupable type="0"
  2327. />
  2328. </product>
  2329. <product id="50S"
  2330. name="50S"
  2331. series="50"
  2332. latestVersion="2.7.2"
  2333. show = "1" >
  2334. <productMenu id="protocol"
  2335. type="2" >
  2336. </productMenu>
  2337. <productMenu id="alexa"
  2338. type="0" >
  2339. </productMenu>
  2340. <productMenu id="ota"
  2341. type="0"
  2342. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2343. size="1150234" >
  2344. </productMenu>
  2345. <productMenu id="wa"
  2346. type="1" >
  2347. </productMenu>
  2348. <productMenu id="sip"
  2349. type="1" >
  2350. </productMenu>
  2351. <productMenu id="meshIntercom"
  2352. type="30" >
  2353. <productMenuType version="2.1.1"
  2354. type="20"
  2355. />
  2356. </productMenu>
  2357. <productMenu id="meshIntercom+"
  2358. type="3"
  2359. url="2" >
  2360. <productMenuType version="2.5.9"
  2361. type="2"
  2362. />
  2363. <productMenuURL version="2.1.1"
  2364. url="0"
  2365. />
  2366. </productMenu>
  2367. <productMenu id="waveIntercom"
  2368. type="1" >
  2369. <productMenuType version="2.6"
  2370. type="0"
  2371. />
  2372. </productMenu>
  2373. <productMenu id="bluetoothIntercom"
  2374. type="1" >
  2375. </productMenu>
  2376. <productMenu id="phone"
  2377. type="1" >
  2378. </productMenu>
  2379. <productMenu id="music"
  2380. type="1" >
  2381. </productMenu>
  2382. <productMenu id="fmradio"
  2383. type="1" >
  2384. </productMenu>
  2385. <productMenu id="deviceSetting"
  2386. type="1"
  2387. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2388. <productMenuURL version="2.5.9"
  2389. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2390. />
  2391. <productMenuURL version="2.1.1"
  2392. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2393. />
  2394. <productMenuURL version="2.0.3"
  2395. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2396. />
  2397. </productMenu>
  2398. <productMenu id="quickGuide"
  2399. type="0"
  2400. url=""
  2401. size="934KB" >
  2402. </productMenu>
  2403. <productMenu id="userGuide"
  2404. type="1"
  2405. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  2406. size="1.14MB" >
  2407. </productMenu>
  2408. <productMenu id="videoGuide"
  2409. type="1"
  2410. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2411. size="3.41MB" >
  2412. </productMenu>
  2413. <productMenu id="connectGuide"
  2414. type="1"
  2415. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  2416. size="1.12MB" >
  2417. </productMenu>
  2418. <productMenu id="volume"
  2419. type="11" >
  2420. </productMenu>
  2421. <productMenu id="battery"
  2422. type="1" >
  2423. </productMenu>
  2424. <productID id="3210"
  2425. />
  2426. <productGroupable type="0"
  2427. />
  2428. </product>
  2429. <product id="50S"
  2430. name="50S"
  2431. series="50"
  2432. latestVersion="1.5.1"
  2433. show = "-1" >
  2434. <productMenu id="protocol"
  2435. type="2" >
  2436. </productMenu>
  2437. <productMenu id="alexa"
  2438. type="0" >
  2439. </productMenu>
  2440. <productMenu id="wa"
  2441. type="1" >
  2442. </productMenu>
  2443. <productMenu id="sip"
  2444. type="1" >
  2445. </productMenu>
  2446. <productMenu id="meshIntercom"
  2447. type="30" >
  2448. <productMenuType version="1.2.2"
  2449. type="20"
  2450. />
  2451. </productMenu>
  2452. <productMenu id="meshIntercom+"
  2453. type="3"
  2454. url="2" >
  2455. <productMenuType version="1.4.9"
  2456. type="2"
  2457. />
  2458. <productMenuURL version="1.2.2"
  2459. url="0"
  2460. />
  2461. </productMenu>
  2462. <productMenu id="waveIntercom"
  2463. type="1" >
  2464. <productMenuType version="1.3.9"
  2465. type="0"
  2466. />
  2467. </productMenu>
  2468. <productMenu id="bluetoothIntercom"
  2469. type="1" >
  2470. </productMenu>
  2471. <productMenu id="phone"
  2472. type="1" >
  2473. </productMenu>
  2474. <productMenu id="music"
  2475. type="1" >
  2476. </productMenu>
  2477. <productMenu id="fmradio"
  2478. type="1" >
  2479. </productMenu>
  2480. <productMenu id="deviceSetting"
  2481. type="1"
  2482. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2483. <productMenuURL version="1.4.9"
  2484. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2485. />
  2486. <productMenuURL version="1.3.9"
  2487. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2488. />
  2489. <productMenuURL version="1.2.2"
  2490. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2491. />
  2492. <productMenuURL version="1.1.1"
  2493. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2494. />
  2495. </productMenu>
  2496. <productMenu id="quickGuide"
  2497. type="0"
  2498. url=""
  2499. size="934KB" >
  2500. </productMenu>
  2501. <productMenu id="userGuide"
  2502. type="1"
  2503. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2504. size="1.14MB" >
  2505. </productMenu>
  2506. <productMenu id="videoGuide"
  2507. type="1"
  2508. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2509. size="3.41MB" >
  2510. </productMenu>
  2511. <productMenu id="volume"
  2512. type="11" >
  2513. </productMenu>
  2514. <productMenu id="battery"
  2515. type="1" >
  2516. </productMenu>
  2517. <productID id="3132"
  2518. />
  2519. <productGroupable type="0"
  2520. />
  2521. </product>
  2522. <product id="50R"
  2523. name="50R"
  2524. series="50"
  2525. latestVersion="2.7.1"
  2526. show = "1" >
  2527. <productMenu id="protocol"
  2528. type="2" >
  2529. </productMenu>
  2530. <productMenu id="alexa"
  2531. type="0" >
  2532. </productMenu>
  2533. <productMenu id="ota"
  2534. type="0"
  2535. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2536. size="1150234" >
  2537. </productMenu>
  2538. <productMenu id="wa"
  2539. type="1" >
  2540. </productMenu>
  2541. <productMenu id="sip"
  2542. type="1" >
  2543. </productMenu>
  2544. <productMenu id="meshIntercom"
  2545. type="30" >
  2546. <productMenuType version="2.1.1"
  2547. type="20"
  2548. />
  2549. </productMenu>
  2550. <productMenu id="meshIntercom+"
  2551. type="3"
  2552. url="2" >
  2553. <productMenuType version="2.5.9"
  2554. type="2"
  2555. />
  2556. <productMenuURL version="2.1.1"
  2557. url="0"
  2558. />
  2559. </productMenu>
  2560. <productMenu id="waveIntercom"
  2561. type="1" >
  2562. <productMenuType version="2.6"
  2563. type="0"
  2564. />
  2565. </productMenu>
  2566. <productMenu id="bluetoothIntercom"
  2567. type="1" >
  2568. </productMenu>
  2569. <productMenu id="phone"
  2570. type="1" >
  2571. </productMenu>
  2572. <productMenu id="music"
  2573. type="1" >
  2574. </productMenu>
  2575. <productMenu id="fmradio"
  2576. type="1" >
  2577. </productMenu>
  2578. <productMenu id="deviceSetting"
  2579. type="1"
  2580. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2581. <productMenuURL version="2.5.9"
  2582. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2583. />
  2584. <productMenuURL version="2.1.1"
  2585. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2586. />
  2587. <productMenuURL version="2.0"
  2588. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2589. />
  2590. </productMenu>
  2591. <productMenu id="quickGuide"
  2592. type="0"
  2593. url=""
  2594. size="344KB" >
  2595. </productMenu>
  2596. <productMenu id="userGuide"
  2597. type="1"
  2598. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2599. size="3.41MB" >
  2600. </productMenu>
  2601. <productMenu id="videoGuide"
  2602. type="1"
  2603. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2604. size="3.41MB" >
  2605. </productMenu>
  2606. <productMenu id="connectGuide"
  2607. type="1"
  2608. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2609. size="1.12MB" >
  2610. </productMenu>
  2611. <productMenu id="volume"
  2612. type="11" >
  2613. </productMenu>
  2614. <productMenu id="battery"
  2615. type="1" >
  2616. </productMenu>
  2617. <productID id="3218"
  2618. />
  2619. <productGroupable type="0"
  2620. />
  2621. </product>
  2622. <product id="50R"
  2623. name="50R"
  2624. series="50"
  2625. latestVersion="1.5.1"
  2626. show = "-1" >
  2627. <productMenu id="protocol"
  2628. type="2" >
  2629. </productMenu>
  2630. <productMenu id="alexa"
  2631. type="0" >
  2632. </productMenu>
  2633. <productMenu id="wa"
  2634. type="1" >
  2635. </productMenu>
  2636. <productMenu id="sip"
  2637. type="1" >
  2638. </productMenu>
  2639. <productMenu id="meshIntercom"
  2640. type="30" >
  2641. <productMenuType version="1.2.2"
  2642. type="20"
  2643. />
  2644. </productMenu>
  2645. <productMenu id="meshIntercom+"
  2646. type="3"
  2647. url="2" >
  2648. <productMenuType version="1.4.9"
  2649. type="2"
  2650. />
  2651. <productMenuURL version="1.2.2"
  2652. url="0"
  2653. />
  2654. </productMenu>
  2655. <productMenu id="waveIntercom"
  2656. type="1" >
  2657. <productMenuType version="1.3.9"
  2658. type="0"
  2659. />
  2660. </productMenu>
  2661. <productMenu id="bluetoothIntercom"
  2662. type="1" >
  2663. </productMenu>
  2664. <productMenu id="phone"
  2665. type="1" >
  2666. </productMenu>
  2667. <productMenu id="music"
  2668. type="1" >
  2669. </productMenu>
  2670. <productMenu id="fmradio"
  2671. type="1" >
  2672. </productMenu>
  2673. <productMenu id="deviceSetting"
  2674. type="1"
  2675. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2676. <productMenuURL version="1.4.9"
  2677. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2678. />
  2679. <productMenuURL version="1.3.9"
  2680. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2681. />
  2682. <productMenuURL version="1.2.2"
  2683. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2684. />
  2685. <productMenuURL version="1.1.1"
  2686. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2687. />
  2688. </productMenu>
  2689. <productMenu id="quickGuide"
  2690. type="0"
  2691. url=""
  2692. size="344KB" >
  2693. </productMenu>
  2694. <productMenu id="userGuide"
  2695. type="1"
  2696. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2697. size="3.41MB" >
  2698. </productMenu>
  2699. <productMenu id="videoGuide"
  2700. type="1"
  2701. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2702. size="3.41MB" >
  2703. </productMenu>
  2704. <productMenu id="volume"
  2705. type="11" >
  2706. </productMenu>
  2707. <productMenu id="battery"
  2708. type="1" >
  2709. </productMenu>
  2710. <productID id="3134"
  2711. />
  2712. <productGroupable type="0"
  2713. />
  2714. </product>
  2715. <product id="50C"
  2716. name="50C"
  2717. series="50"
  2718. latestVersion="1.4.3"
  2719. show = "1" >
  2720. <productMenu id="protocol"
  2721. type="2" >
  2722. </productMenu>
  2723. <productMenu id="ota"
  2724. type="0" >
  2725. </productMenu>
  2726. <productMenu id="wa"
  2727. type="1" >
  2728. </productMenu>
  2729. <productMenu id="sip"
  2730. type="1" >
  2731. </productMenu>
  2732. <productMenu id="meshIntercom"
  2733. type="30" >
  2734. <productMenuType version="1.1.1"
  2735. type="20"
  2736. />
  2737. </productMenu>
  2738. <productMenu id="meshIntercom+"
  2739. type="3"
  2740. url="2" >
  2741. <productMenuType version="1.3.9"
  2742. type="2"
  2743. />
  2744. <productMenuURL version="1.1.1"
  2745. url="0"
  2746. />
  2747. </productMenu>
  2748. <productMenu id="waveIntercom"
  2749. type="1" >
  2750. <productMenuType version="1.2.9"
  2751. type="0"
  2752. />
  2753. </productMenu>
  2754. <productMenu id="bluetoothIntercom"
  2755. type="1" >
  2756. </productMenu>
  2757. <productMenu id="phone"
  2758. type="1" >
  2759. </productMenu>
  2760. <productMenu id="music"
  2761. type="1" >
  2762. </productMenu>
  2763. <productMenu id="fmradio"
  2764. type="1" >
  2765. </productMenu>
  2766. <productMenu id="deviceSetting"
  2767. type="1"
  2768. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2769. <productMenuURL version="1.3.9"
  2770. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2771. />
  2772. <productMenuURL version="1.1.1"
  2773. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2774. />
  2775. <productMenuURL version="1.0.1"
  2776. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2777. />
  2778. </productMenu>
  2779. <productMenu id="quickGuide"
  2780. type="0"
  2781. url=""
  2782. size="344KB" >
  2783. </productMenu>
  2784. <productMenu id="userGuide"
  2785. type="1"
  2786. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2787. size="3.41MB" >
  2788. </productMenu>
  2789. <productMenu id="connectGuide"
  2790. type="1"
  2791. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2792. size="1.12MB" >
  2793. </productMenu>
  2794. <productMenu id="volume"
  2795. type="11" >
  2796. </productMenu>
  2797. <productMenu id="battery"
  2798. type="1" >
  2799. </productMenu>
  2800. <productID id="3232"
  2801. />
  2802. <productGroupable type="0"
  2803. />
  2804. </product>
  2805. <product id="PHANTOMXB"
  2806. name="PHANTOM XB"
  2807. series="Helmet"
  2808. latestVersion="1.2.11"
  2809. latestVersionVoicePrompt="1.8"
  2810. show = "-1" >
  2811. <productMenu id="protocol"
  2812. type="2" >
  2813. </productMenu>
  2814. <productMenu id="ota"
  2815. type="2" >
  2816. <otaLanguages>
  2817. <otaLanguage
  2818. id="0"
  2819. name="English"
  2820. package="0"
  2821. />
  2822. <otaLanguage
  2823. id="0"
  2824. name="Français"
  2825. package="1"
  2826. />
  2827. <otaLanguage
  2828. id="0"
  2829. name="Español"
  2830. package="2"
  2831. />
  2832. <otaLanguage
  2833. id="0"
  2834. name="Italiano"
  2835. package="3"
  2836. />
  2837. <otaLanguage
  2838. id="0"
  2839. name="Deutsch"
  2840. package="4"
  2841. />
  2842. <otaLanguage
  2843. id="0"
  2844. name="Nederlands"
  2845. package="5"
  2846. />
  2847. <otaLanguage
  2848. id="0"
  2849. name="Русский"
  2850. package="6"
  2851. />
  2852. <otaLanguage
  2853. id="0"
  2854. name="简体中文"
  2855. package="7"
  2856. />
  2857. <otaLanguage
  2858. id="0"
  2859. name="한국어"
  2860. package="8"
  2861. />
  2862. <otaLanguage
  2863. id="0"
  2864. name="日本語"
  2865. package="9"
  2866. />
  2867. <otaLanguage
  2868. id="0"
  2869. name="Suomi"
  2870. package="10"
  2871. />
  2872. <otaLanguage
  2873. id="0"
  2874. name="Polski"
  2875. package="11"
  2876. />
  2877. </otaLanguages>
  2878. <otaPackages>
  2879. <package
  2880. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0.img"
  2881. size="5183988"
  2882. />
  2883. <package
  2884. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fr-FR.img"
  2885. size="5183988"
  2886. />
  2887. <package
  2888. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-es-ES.img"
  2889. size="5183988"
  2890. />
  2891. <package
  2892. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-it-IT.img"
  2893. size="5183988"
  2894. />
  2895. <package
  2896. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-de-DE.img"
  2897. size="5183988"
  2898. />
  2899. <package
  2900. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-nl-NL.img"
  2901. size="5183988"
  2902. />
  2903. <package
  2904. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ru-RU.img"
  2905. size="5183988"
  2906. />
  2907. <package
  2908. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-cmn-CN.img"
  2909. size="5183988"
  2910. />
  2911. <package
  2912. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ko-KR.img"
  2913. size="5183988"
  2914. />
  2915. <package
  2916. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ja-JP.img"
  2917. size="5183988"
  2918. />
  2919. <package
  2920. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fi-FI.img"
  2921. size="5183988"
  2922. />
  2923. <package
  2924. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-pl-PL.img"
  2925. size="5183988"
  2926. />
  2927. </otaPackages>
  2928. </productMenu>
  2929. <productMenu id="wa"
  2930. type="0" >
  2931. </productMenu>
  2932. <productMenu id="led"
  2933. type="5" >
  2934. </productMenu>
  2935. <productMenu id="led+"
  2936. type="2"
  2937. url="1" >
  2938. </productMenu>
  2939. <productMenu id="meshIntercom"
  2940. type="30" >
  2941. </productMenu>
  2942. <productMenu id="meshIntercom+"
  2943. type="3"
  2944. url="2" >
  2945. </productMenu>
  2946. <productMenu id="waveIntercom"
  2947. type="1" >
  2948. </productMenu>
  2949. <productMenu id="fmradio"
  2950. type="0" >
  2951. </productMenu>
  2952. <productMenu id="phone"
  2953. type="1" >
  2954. </productMenu>
  2955. <productMenu id="music"
  2956. type="1" >
  2957. </productMenu>
  2958. <productMenu id="musicSharing"
  2959. type="0" >
  2960. </productMenu>
  2961. <productMenu id="deviceSetting"
  2962. type="1"
  2963. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2964. <productMenuURL version="1.2.10"
  2965. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2966. />
  2967. <productMenuURL version="1.2.4"
  2968. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2969. />
  2970. </productMenu>
  2971. <productMenu id="quickGuide"
  2972. type="0"
  2973. url=""
  2974. size="1.12MB" >
  2975. </productMenu>
  2976. <productMenu id="userGuide"
  2977. type="1"
  2978. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2979. size="2.0MB" >
  2980. </productMenu>
  2981. <productMenu id="videoGuide"
  2982. type="0"
  2983. url=""
  2984. size="3.41MB" >
  2985. </productMenu>
  2986. <productMenu id="volume"
  2987. type="16" >
  2988. </productMenu>
  2989. <productMenu id="volume+"
  2990. type="2"
  2991. url="0x6004" >
  2992. </productMenu>
  2993. <productMenu id="battery"
  2994. type="1" >
  2995. </productMenu>
  2996. <productID id="6A0F"
  2997. />
  2998. <productGroupable type="0"
  2999. />
  3000. </product>
  3001. <product id="PHANTOMXB"
  3002. name="PHANTOM XB"
  3003. series="Helmet"
  3004. latestVersion="1.2.11"
  3005. latestVersionVoicePrompt="1.8"
  3006. show = "-1" >
  3007. <productMenu id="protocol"
  3008. type="2" >
  3009. </productMenu>
  3010. <productMenu id="ota"
  3011. type="2" >
  3012. <otaLanguages>
  3013. <otaLanguage
  3014. id="0"
  3015. name="English"
  3016. package="0"
  3017. />
  3018. <otaLanguage
  3019. id="0"
  3020. name="Français"
  3021. package="1"
  3022. />
  3023. <otaLanguage
  3024. id="0"
  3025. name="Español"
  3026. package="2"
  3027. />
  3028. <otaLanguage
  3029. id="0"
  3030. name="Italiano"
  3031. package="3"
  3032. />
  3033. <otaLanguage
  3034. id="0"
  3035. name="Deutsch"
  3036. package="4"
  3037. />
  3038. <otaLanguage
  3039. id="0"
  3040. name="Nederlands"
  3041. package="5"
  3042. />
  3043. <otaLanguage
  3044. id="0"
  3045. name="Русский"
  3046. package="6"
  3047. />
  3048. <otaLanguage
  3049. id="0"
  3050. name="简体中文"
  3051. package="7"
  3052. />
  3053. <otaLanguage
  3054. id="0"
  3055. name="한국어"
  3056. package="8"
  3057. />
  3058. <otaLanguage
  3059. id="0"
  3060. name="日本語"
  3061. package="9"
  3062. />
  3063. <otaLanguage
  3064. id="0"
  3065. name="Suomi"
  3066. package="10"
  3067. />
  3068. <otaLanguage
  3069. id="0"
  3070. name="Polski"
  3071. package="11"
  3072. />
  3073. </otaLanguages>
  3074. <otaPackages>
  3075. <package
  3076. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0.img"
  3077. size="5183988"
  3078. />
  3079. <package
  3080. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fr-FR.img"
  3081. size="5183988"
  3082. />
  3083. <package
  3084. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-es-ES.img"
  3085. size="5183988"
  3086. />
  3087. <package
  3088. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-it-IT.img"
  3089. size="5183988"
  3090. />
  3091. <package
  3092. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-de-DE.img"
  3093. size="5183988"
  3094. />
  3095. <package
  3096. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-nl-NL.img"
  3097. size="5183988"
  3098. />
  3099. <package
  3100. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ru-RU.img"
  3101. size="5183988"
  3102. />
  3103. <package
  3104. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-cmn-CN.img"
  3105. size="5183988"
  3106. />
  3107. <package
  3108. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ko-KR.img"
  3109. size="5183988"
  3110. />
  3111. <package
  3112. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ja-JP.img"
  3113. size="5183988"
  3114. />
  3115. <package
  3116. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fi-FI.img"
  3117. size="5183988"
  3118. />
  3119. <package
  3120. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-pl-PL.img"
  3121. size="5183988"
  3122. />
  3123. </otaPackages>
  3124. </productMenu>
  3125. <productMenu id="wa"
  3126. type="0" >
  3127. </productMenu>
  3128. <productMenu id="led"
  3129. type="5" >
  3130. </productMenu>
  3131. <productMenu id="led+"
  3132. type="2"
  3133. url="1" >
  3134. </productMenu>
  3135. <productMenu id="meshIntercom"
  3136. type="30" >
  3137. </productMenu>
  3138. <productMenu id="meshIntercom+"
  3139. type="3"
  3140. url="2" >
  3141. </productMenu>
  3142. <productMenu id="waveIntercom"
  3143. type="1" >
  3144. </productMenu>
  3145. <productMenu id="fmradio"
  3146. type="0" >
  3147. </productMenu>
  3148. <productMenu id="phone"
  3149. type="1" >
  3150. </productMenu>
  3151. <productMenu id="music"
  3152. type="1" >
  3153. </productMenu>
  3154. <productMenu id="musicSharing"
  3155. type="0" >
  3156. </productMenu>
  3157. <productMenu id="deviceSetting"
  3158. type="1"
  3159. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3160. <productMenuURL version="1.2.10"
  3161. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3162. />
  3163. <productMenuURL version="1.2.4"
  3164. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3165. />
  3166. <productMenuURL version="1.2.1"
  3167. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3168. />
  3169. </productMenu>
  3170. <productMenu id="quickGuide"
  3171. type="0"
  3172. url=""
  3173. size="1.12MB" >
  3174. </productMenu>
  3175. <productMenu id="userGuide"
  3176. type="1"
  3177. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3178. size="2.0MB" >
  3179. </productMenu>
  3180. <productMenu id="videoGuide"
  3181. type="0"
  3182. url=""
  3183. size="3.41MB" >
  3184. </productMenu>
  3185. <productMenu id="volume"
  3186. type="16" >
  3187. </productMenu>
  3188. <productMenu id="volume+"
  3189. type="2"
  3190. url="0x6004" >
  3191. </productMenu>
  3192. <productMenu id="battery"
  3193. type="1" >
  3194. </productMenu>
  3195. <productID id="6A0C"
  3196. />
  3197. <productGroupable type="0"
  3198. />
  3199. </product>
  3200. <product id="PHANTOMKV"
  3201. name="PHANTOM KV"
  3202. series="Helmet"
  3203. latestVersion="1.2.11"
  3204. latestVersionVoicePrompt="1.8"
  3205. show = "1" >
  3206. <productMenu id="protocol"
  3207. type="2" >
  3208. </productMenu>
  3209. <productMenu id="ota"
  3210. type="2" >
  3211. <otaLanguages>
  3212. <otaLanguage
  3213. id="0"
  3214. name="English"
  3215. package="0"
  3216. />
  3217. <otaLanguage
  3218. id="0"
  3219. name="Français"
  3220. package="1"
  3221. />
  3222. <otaLanguage
  3223. id="0"
  3224. name="Español"
  3225. package="2"
  3226. />
  3227. <otaLanguage
  3228. id="0"
  3229. name="Italiano"
  3230. package="3"
  3231. />
  3232. <otaLanguage
  3233. id="0"
  3234. name="Deutsch"
  3235. package="4"
  3236. />
  3237. <otaLanguage
  3238. id="0"
  3239. name="Nederlands"
  3240. package="5"
  3241. />
  3242. <otaLanguage
  3243. id="0"
  3244. name="Русский"
  3245. package="6"
  3246. />
  3247. <otaLanguage
  3248. id="0"
  3249. name="简体中文"
  3250. package="7"
  3251. />
  3252. <otaLanguage
  3253. id="0"
  3254. name="한국어"
  3255. package="8"
  3256. />
  3257. <otaLanguage
  3258. id="0"
  3259. name="日本語"
  3260. package="9"
  3261. />
  3262. <otaLanguage
  3263. id="0"
  3264. name="Suomi"
  3265. package="10"
  3266. />
  3267. <otaLanguage
  3268. id="0"
  3269. name="Polski"
  3270. package="11"
  3271. />
  3272. </otaLanguages>
  3273. <otaPackages>
  3274. <package
  3275. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0.img"
  3276. size="5183988"
  3277. />
  3278. <package
  3279. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fr-FR.img"
  3280. size="5183988"
  3281. />
  3282. <package
  3283. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-es-ES.img"
  3284. size="5183988"
  3285. />
  3286. <package
  3287. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-it-IT.img"
  3288. size="5183988"
  3289. />
  3290. <package
  3291. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-de-DE.img"
  3292. size="5183988"
  3293. />
  3294. <package
  3295. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-nl-NL.img"
  3296. size="5183988"
  3297. />
  3298. <package
  3299. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ru-RU.img"
  3300. size="5183988"
  3301. />
  3302. <package
  3303. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-cmn-CN.img"
  3304. size="5183988"
  3305. />
  3306. <package
  3307. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ko-KR.img"
  3308. size="5183988"
  3309. />
  3310. <package
  3311. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ja-JP.img"
  3312. size="5183988"
  3313. />
  3314. <package
  3315. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fi-FI.img"
  3316. size="5183988"
  3317. />
  3318. <package
  3319. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-pl-PL.img"
  3320. size="5183988"
  3321. />
  3322. </otaPackages>
  3323. </productMenu>
  3324. <productMenu id="wa"
  3325. type="0" >
  3326. </productMenu>
  3327. <productMenu id="led"
  3328. type="5" >
  3329. </productMenu>
  3330. <productMenu id="led+"
  3331. type="2"
  3332. url="1" >
  3333. </productMenu>
  3334. <productMenu id="meshIntercom"
  3335. type="30" >
  3336. </productMenu>
  3337. <productMenu id="meshIntercom+"
  3338. type="3"
  3339. url="2" >
  3340. </productMenu>
  3341. <productMenu id="waveIntercom"
  3342. type="1" >
  3343. </productMenu>
  3344. <productMenu id="fmradio"
  3345. type="0" >
  3346. </productMenu>
  3347. <productMenu id="phone"
  3348. type="1" >
  3349. </productMenu>
  3350. <productMenu id="music"
  3351. type="1" >
  3352. </productMenu>
  3353. <productMenu id="musicSharing"
  3354. type="0" >
  3355. </productMenu>
  3356. <productMenu id="deviceSetting"
  3357. type="1"
  3358. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3359. <productMenuURL version="1.2.10"
  3360. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3361. />
  3362. <productMenuURL version="1.2.4"
  3363. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3364. />
  3365. </productMenu>
  3366. <productMenu id="quickGuide"
  3367. type="0"
  3368. url=""
  3369. size="1.12MB" >
  3370. </productMenu>
  3371. <productMenu id="userGuide"
  3372. type="1"
  3373. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3374. size="2.0MB" >
  3375. </productMenu>
  3376. <productMenu id="videoGuide"
  3377. type="0"
  3378. url=""
  3379. size="3.41MB" >
  3380. </productMenu>
  3381. <productMenu id="connectGuide"
  3382. type="1"
  3383. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3384. size="1.1MB" >
  3385. </productMenu>
  3386. <productMenu id="volume"
  3387. type="16" >
  3388. </productMenu>
  3389. <productMenu id="volume+"
  3390. type="2"
  3391. url="0x6004" >
  3392. </productMenu>
  3393. <productMenu id="soundMode"
  3394. type="1" >
  3395. </productMenu>
  3396. <productMenu id="battery"
  3397. type="1" >
  3398. </productMenu>
  3399. <productID id="6A13"
  3400. />
  3401. <productGroupable type="0"
  3402. />
  3403. </product>
  3404. <product id="PHANTOMCamera"
  3405. name="PHANTOM Camera"
  3406. series="Helmet"
  3407. latestVersion="1.2.10"
  3408. latestVersionVoicePrompt="1.7"
  3409. show = "1" >
  3410. <productMenu id="protocol"
  3411. type="2" >
  3412. </productMenu>
  3413. <productMenu id="ota"
  3414. type="3" >
  3415. <otaLanguages>
  3416. <otaLanguage
  3417. id="0"
  3418. name="English"
  3419. package="0"
  3420. />
  3421. <otaLanguage
  3422. id="0"
  3423. name="Français"
  3424. package="1"
  3425. />
  3426. <otaLanguage
  3427. id="0"
  3428. name="Español"
  3429. package="2"
  3430. />
  3431. <otaLanguage
  3432. id="0"
  3433. name="Italiano"
  3434. package="3"
  3435. />
  3436. <otaLanguage
  3437. id="0"
  3438. name="Deutsch"
  3439. package="4"
  3440. />
  3441. <otaLanguage
  3442. id="0"
  3443. name="Nederlands"
  3444. package="5"
  3445. />
  3446. <otaLanguage
  3447. id="0"
  3448. name="Русский"
  3449. package="6"
  3450. />
  3451. <otaLanguage
  3452. id="0"
  3453. name="简体中文"
  3454. package="7"
  3455. />
  3456. <otaLanguage
  3457. id="0"
  3458. name="한국어"
  3459. package="8"
  3460. />
  3461. <otaLanguage
  3462. id="0"
  3463. name="日本語"
  3464. package="9"
  3465. />
  3466. <otaLanguage
  3467. id="0"
  3468. name="Suomi"
  3469. package="10"
  3470. />
  3471. <otaLanguage
  3472. id="0"
  3473. name="Polski"
  3474. package="11"
  3475. />
  3476. </otaLanguages>
  3477. <otaPackages>
  3478. <package
  3479. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3480. size="5183988"
  3481. />
  3482. <package
  3483. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3484. size="5183988"
  3485. />
  3486. <package
  3487. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3488. size="5183988"
  3489. />
  3490. <package
  3491. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3492. size="5183988"
  3493. />
  3494. <package
  3495. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3496. size="5183988"
  3497. />
  3498. <package
  3499. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3500. size="5183988"
  3501. />
  3502. <package
  3503. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3504. size="5183988"
  3505. />
  3506. <package
  3507. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3508. size="5183988"
  3509. />
  3510. <package
  3511. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3512. size="5183988"
  3513. />
  3514. <package
  3515. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3516. size="5183988"
  3517. />
  3518. <package
  3519. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3520. size="5183988"
  3521. />
  3522. <package
  3523. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3524. size="5183988"
  3525. />
  3526. </otaPackages>
  3527. </productMenu>
  3528. <productMenu id="wa"
  3529. type="0" >
  3530. </productMenu>
  3531. <productMenu id="led"
  3532. type="5" >
  3533. </productMenu>
  3534. <productMenu id="led+"
  3535. type="2"
  3536. url="1" >
  3537. </productMenu>
  3538. <productMenu id="meshIntercom"
  3539. type="30" >
  3540. </productMenu>
  3541. <productMenu id="meshIntercom+"
  3542. type="3"
  3543. url="2" >
  3544. </productMenu>
  3545. <productMenu id="waveIntercom"
  3546. type="1" >
  3547. </productMenu>
  3548. <productMenu id="fmradio"
  3549. type="0" >
  3550. </productMenu>
  3551. <productMenu id="phone"
  3552. type="1" >
  3553. </productMenu>
  3554. <productMenu id="music"
  3555. type="1" >
  3556. </productMenu>
  3557. <productMenu id="musicSharing"
  3558. type="0" >
  3559. </productMenu>
  3560. <productMenu id="deviceSetting"
  3561. type="1"
  3562. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3563. </productMenu>
  3564. <productMenu id="quickGuide"
  3565. type="0"
  3566. url=""
  3567. size="1.12MB" >
  3568. </productMenu>
  3569. <productMenu id="userGuide"
  3570. type="1"
  3571. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3572. size="2.0MB" >
  3573. </productMenu>
  3574. <productMenu id="videoGuide"
  3575. type="0"
  3576. url=""
  3577. size="3.41MB" >
  3578. </productMenu>
  3579. <productMenu id="volume"
  3580. type="16" >
  3581. </productMenu>
  3582. <productMenu id="battery"
  3583. type="1" >
  3584. </productMenu>
  3585. <productID id="6A10"
  3586. />
  3587. <productGroupable type="0"
  3588. />
  3589. </product>
  3590. <product id="PHANTOMCamera"
  3591. name="PHANTOM Camera"
  3592. series="Helmet"
  3593. latestVersion="1.2.10"
  3594. latestVersionVoicePrompt="1.7"
  3595. show = "-1" >
  3596. <productMenu id="protocol"
  3597. type="2" >
  3598. </productMenu>
  3599. <productMenu id="ota"
  3600. type="3" >
  3601. <otaLanguages>
  3602. <otaLanguage
  3603. id="0"
  3604. name="English"
  3605. package="0"
  3606. />
  3607. <otaLanguage
  3608. id="0"
  3609. name="Français"
  3610. package="1"
  3611. />
  3612. <otaLanguage
  3613. id="0"
  3614. name="Español"
  3615. package="2"
  3616. />
  3617. <otaLanguage
  3618. id="0"
  3619. name="Italiano"
  3620. package="3"
  3621. />
  3622. <otaLanguage
  3623. id="0"
  3624. name="Deutsch"
  3625. package="4"
  3626. />
  3627. <otaLanguage
  3628. id="0"
  3629. name="Nederlands"
  3630. package="5"
  3631. />
  3632. <otaLanguage
  3633. id="0"
  3634. name="Русский"
  3635. package="6"
  3636. />
  3637. <otaLanguage
  3638. id="0"
  3639. name="简体中文"
  3640. package="7"
  3641. />
  3642. <otaLanguage
  3643. id="0"
  3644. name="한국어"
  3645. package="8"
  3646. />
  3647. <otaLanguage
  3648. id="0"
  3649. name="日本語"
  3650. package="9"
  3651. />
  3652. <otaLanguage
  3653. id="0"
  3654. name="Suomi"
  3655. package="10"
  3656. />
  3657. <otaLanguage
  3658. id="0"
  3659. name="Polski"
  3660. package="11"
  3661. />
  3662. </otaLanguages>
  3663. <otaPackages>
  3664. <package
  3665. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3666. size="5183988"
  3667. />
  3668. <package
  3669. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3670. size="5183988"
  3671. />
  3672. <package
  3673. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3674. size="5183988"
  3675. />
  3676. <package
  3677. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3678. size="5183988"
  3679. />
  3680. <package
  3681. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3682. size="5183988"
  3683. />
  3684. <package
  3685. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3686. size="5183988"
  3687. />
  3688. <package
  3689. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3690. size="5183988"
  3691. />
  3692. <package
  3693. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3694. size="5183988"
  3695. />
  3696. <package
  3697. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3698. size="5183988"
  3699. />
  3700. <package
  3701. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3702. size="5183988"
  3703. />
  3704. <package
  3705. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3706. size="5183988"
  3707. />
  3708. <package
  3709. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3710. size="5183988"
  3711. />
  3712. </otaPackages>
  3713. </productMenu>
  3714. <productMenu id="wa"
  3715. type="0" >
  3716. </productMenu>
  3717. <productMenu id="led"
  3718. type="5" >
  3719. </productMenu>
  3720. <productMenu id="led+"
  3721. type="2"
  3722. url="1" >
  3723. </productMenu>
  3724. <productMenu id="meshIntercom"
  3725. type="30" >
  3726. </productMenu>
  3727. <productMenu id="meshIntercom+"
  3728. type="3"
  3729. url="2" >
  3730. </productMenu>
  3731. <productMenu id="waveIntercom"
  3732. type="1" >
  3733. </productMenu>
  3734. <productMenu id="fmradio"
  3735. type="0" >
  3736. </productMenu>
  3737. <productMenu id="phone"
  3738. type="1" >
  3739. </productMenu>
  3740. <productMenu id="music"
  3741. type="1" >
  3742. </productMenu>
  3743. <productMenu id="musicSharing"
  3744. type="0" >
  3745. </productMenu>
  3746. <productMenu id="deviceSetting"
  3747. type="1"
  3748. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3749. </productMenu>
  3750. <productMenu id="quickGuide"
  3751. type="0"
  3752. url=""
  3753. size="1.12MB" >
  3754. </productMenu>
  3755. <productMenu id="userGuide"
  3756. type="1"
  3757. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3758. size="2.0MB" >
  3759. </productMenu>
  3760. <productMenu id="videoGuide"
  3761. type="0"
  3762. url=""
  3763. size="3.41MB" >
  3764. </productMenu>
  3765. <productMenu id="volume"
  3766. type="16" >
  3767. </productMenu>
  3768. <productMenu id="battery"
  3769. type="1" >
  3770. </productMenu>
  3771. <productID id="6A09"
  3772. />
  3773. <productGroupable type="0"
  3774. />
  3775. </product>
  3776. <product id="PHANTOM"
  3777. name="PHANTOM ANC"
  3778. series="Helmet"
  3779. latestVersion="1.2.11"
  3780. latestVersionVoicePrompt="1.8"
  3781. show = "1" >
  3782. <productMenu id="protocol"
  3783. type="2" >
  3784. </productMenu>
  3785. <productMenu id="ota"
  3786. type="2" >
  3787. <productMenuType version="0.6.9"
  3788. type="0"
  3789. />
  3790. <otaLanguages>
  3791. <otaLanguage
  3792. id="0"
  3793. name="English"
  3794. package="0"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Français"
  3799. package="1"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Español"
  3804. package="2"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Italiano"
  3809. package="3"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="Deutsch"
  3814. package="4"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Nederlands"
  3819. package="5"
  3820. />
  3821. <otaLanguage
  3822. id="0"
  3823. name="Русский"
  3824. package="6"
  3825. />
  3826. <otaLanguage
  3827. id="0"
  3828. name="简体中文"
  3829. package="7"
  3830. />
  3831. <otaLanguage
  3832. id="0"
  3833. name="한국어"
  3834. package="8"
  3835. />
  3836. <otaLanguage
  3837. id="0"
  3838. name="日本語"
  3839. package="9"
  3840. />
  3841. <otaLanguage
  3842. id="0"
  3843. name="Suomi"
  3844. package="10"
  3845. />
  3846. <otaLanguage
  3847. id="0"
  3848. name="Polski"
  3849. package="11"
  3850. />
  3851. </otaLanguages>
  3852. <otaPackages>
  3853. <package
  3854. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0.img"
  3855. size="5183988"
  3856. />
  3857. <package
  3858. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fr-FR.img"
  3859. size="5183988"
  3860. />
  3861. <package
  3862. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-es-ES.img"
  3863. size="5183988"
  3864. />
  3865. <package
  3866. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-it-IT.img"
  3867. size="5183988"
  3868. />
  3869. <package
  3870. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-de-DE.img"
  3871. size="5183988"
  3872. />
  3873. <package
  3874. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-nl-NL.img"
  3875. size="5183988"
  3876. />
  3877. <package
  3878. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ru-RU.img"
  3879. size="5183988"
  3880. />
  3881. <package
  3882. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-cmn-CN.img"
  3883. size="5183988"
  3884. />
  3885. <package
  3886. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ko-KR.img"
  3887. size="5183988"
  3888. />
  3889. <package
  3890. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ja-JP.img"
  3891. size="5183988"
  3892. />
  3893. <package
  3894. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fi-FI.img"
  3895. size="5183988"
  3896. />
  3897. <package
  3898. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-pl-PL.img"
  3899. size="5183988"
  3900. />
  3901. </otaPackages>
  3902. </productMenu>
  3903. <productMenu id="wa"
  3904. type="0" >
  3905. </productMenu>
  3906. <productMenu id="led"
  3907. type="5" >
  3908. </productMenu>
  3909. <productMenu id="led+"
  3910. type="2"
  3911. url="1" >
  3912. </productMenu>
  3913. <productMenu id="meshIntercom"
  3914. type="30" >
  3915. </productMenu>
  3916. <productMenu id="meshIntercom+"
  3917. type="3"
  3918. url="2" >
  3919. <productMenuURL version="1.0.4"
  3920. url="10"
  3921. />
  3922. </productMenu>
  3923. <productMenu id="waveIntercom"
  3924. type="1" >
  3925. <productMenuType version="1.0.9"
  3926. type="0"
  3927. />
  3928. </productMenu>
  3929. <productMenu id="fmradio"
  3930. type="0" >
  3931. </productMenu>
  3932. <productMenu id="phone"
  3933. type="1" >
  3934. </productMenu>
  3935. <productMenu id="music"
  3936. type="1" >
  3937. </productMenu>
  3938. <productMenu id="musicSharing"
  3939. type="0" >
  3940. </productMenu>
  3941. <productMenu id="deviceSetting"
  3942. type="1"
  3943. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3944. <productMenuURL version="1.2.10"
  3945. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3946. />
  3947. <productMenuURL version="1.2.4"
  3948. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3949. />
  3950. <productMenuURL version="1.2.1"
  3951. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3952. />
  3953. <productMenuURL version="1.1.2"
  3954. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3955. />
  3956. <productMenuURL version="1.0.4"
  3957. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3958. />
  3959. </productMenu>
  3960. <productMenu id="quickGuide"
  3961. type="0"
  3962. url=""
  3963. size="1.12MB" >
  3964. </productMenu>
  3965. <productMenu id="userGuide"
  3966. type="1"
  3967. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3968. size="2.0MB" >
  3969. </productMenu>
  3970. <productMenu id="videoGuide"
  3971. type="0"
  3972. url=""
  3973. size="3.41MB" >
  3974. </productMenu>
  3975. <productMenu id="connectGuide"
  3976. type="1"
  3977. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3978. size="1.1MB" >
  3979. </productMenu>
  3980. <productMenu id="volume"
  3981. type="16" >
  3982. </productMenu>
  3983. <productMenu id="volume+"
  3984. type="2"
  3985. url="0x6004" >
  3986. </productMenu>
  3987. <productMenu id="soundMode"
  3988. type="1" >
  3989. <productMenuType version="0.9.11"
  3990. type="0"
  3991. />
  3992. </productMenu>
  3993. <productMenu id="battery"
  3994. type="1" >
  3995. </productMenu>
  3996. <productID id="6A01"
  3997. />
  3998. <productGroupable type="0"
  3999. />
  4000. </product>
  4001. <product id="PHANTOM"
  4002. name="PHANTOM ANC"
  4003. series="Helmet"
  4004. latestVersion="1.2.11"
  4005. latestVersionVoicePrompt="1.8"
  4006. show = "-1" >
  4007. <productMenu id="protocol"
  4008. type="2" >
  4009. </productMenu>
  4010. <productMenu id="ota"
  4011. type="2" >
  4012. <otaLanguages>
  4013. <otaLanguage
  4014. id="0"
  4015. name="English"
  4016. package="0"
  4017. />
  4018. <otaLanguage
  4019. id="0"
  4020. name="Français"
  4021. package="1"
  4022. />
  4023. <otaLanguage
  4024. id="0"
  4025. name="Español"
  4026. package="2"
  4027. />
  4028. <otaLanguage
  4029. id="0"
  4030. name="Italiano"
  4031. package="3"
  4032. />
  4033. <otaLanguage
  4034. id="0"
  4035. name="Deutsch"
  4036. package="4"
  4037. />
  4038. <otaLanguage
  4039. id="0"
  4040. name="Nederlands"
  4041. package="5"
  4042. />
  4043. <otaLanguage
  4044. id="0"
  4045. name="Русский"
  4046. package="6"
  4047. />
  4048. <otaLanguage
  4049. id="0"
  4050. name="简体中文"
  4051. package="7"
  4052. />
  4053. <otaLanguage
  4054. id="0"
  4055. name="한국어"
  4056. package="8"
  4057. />
  4058. <otaLanguage
  4059. id="0"
  4060. name="日本語"
  4061. package="9"
  4062. />
  4063. <otaLanguage
  4064. id="0"
  4065. name="Suomi"
  4066. package="10"
  4067. />
  4068. <otaLanguage
  4069. id="0"
  4070. name="Polski"
  4071. package="11"
  4072. />
  4073. </otaLanguages>
  4074. <otaPackages>
  4075. <package
  4076. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0.img"
  4077. size="5183988"
  4078. />
  4079. <package
  4080. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fr-FR.img"
  4081. size="5183988"
  4082. />
  4083. <package
  4084. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-es-ES.img"
  4085. size="5183988"
  4086. />
  4087. <package
  4088. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-it-IT.img"
  4089. size="5183988"
  4090. />
  4091. <package
  4092. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-de-DE.img"
  4093. size="5183988"
  4094. />
  4095. <package
  4096. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-nl-NL.img"
  4097. size="5183988"
  4098. />
  4099. <package
  4100. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ru-RU.img"
  4101. size="5183988"
  4102. />
  4103. <package
  4104. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-cmn-CN.img"
  4105. size="5183988"
  4106. />
  4107. <package
  4108. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ko-KR.img"
  4109. size="5183988"
  4110. />
  4111. <package
  4112. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ja-JP.img"
  4113. size="5183988"
  4114. />
  4115. <package
  4116. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fi-FI.img"
  4117. size="5183988"
  4118. />
  4119. <package
  4120. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-pl-PL.img"
  4121. size="5183988"
  4122. />
  4123. </otaPackages>
  4124. </productMenu>
  4125. <productMenu id="led"
  4126. type="5" >
  4127. </productMenu>
  4128. <productMenu id="led+"
  4129. type="2"
  4130. url="1" >
  4131. </productMenu>
  4132. <productMenu id="meshIntercom"
  4133. type="30" >
  4134. </productMenu>
  4135. <productMenu id="meshIntercom+"
  4136. type="3"
  4137. url="2" >
  4138. </productMenu>
  4139. <productMenu id="waveIntercom"
  4140. type="1" >
  4141. </productMenu>
  4142. <productMenu id="fmradio"
  4143. type="0" >
  4144. </productMenu>
  4145. <productMenu id="phone"
  4146. type="1" >
  4147. </productMenu>
  4148. <productMenu id="music"
  4149. type="1" >
  4150. </productMenu>
  4151. <productMenu id="musicSharing"
  4152. type="0" >
  4153. </productMenu>
  4154. <productMenu id="deviceSetting"
  4155. type="1"
  4156. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4157. <productMenuURL version="1.2.10"
  4158. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4159. />
  4160. <productMenuURL version="1.2.4"
  4161. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4162. />
  4163. </productMenu>
  4164. <productMenu id="quickGuide"
  4165. type="0"
  4166. url=""
  4167. size="1.12MB" >
  4168. </productMenu>
  4169. <productMenu id="userGuide"
  4170. type="1"
  4171. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4172. size="2.0MB" >
  4173. </productMenu>
  4174. <productMenu id="videoGuide"
  4175. type="0"
  4176. url=""
  4177. size="3.41MB" >
  4178. </productMenu>
  4179. <productMenu id="connectGuide"
  4180. type="1"
  4181. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4182. size="1.1MB" >
  4183. </productMenu>
  4184. <productMenu id="volume"
  4185. type="16" >
  4186. </productMenu>
  4187. <productMenu id="volume+"
  4188. type="2"
  4189. url="0x6004" >
  4190. </productMenu>
  4191. <productMenu id="soundMode"
  4192. type="1" >
  4193. </productMenu>
  4194. <productMenu id="battery"
  4195. type="1" >
  4196. </productMenu>
  4197. <productID id="6A19"
  4198. />
  4199. <productGroupable type="0"
  4200. />
  4201. </product>
  4202. <product id="PHANTOM"
  4203. name="PHANTOM"
  4204. series="Helmet"
  4205. latestVersion="1.2.11"
  4206. latestVersionVoicePrompt="1.8"
  4207. show = "-1" >
  4208. <productMenu id="protocol"
  4209. type="2" >
  4210. </productMenu>
  4211. <productMenu id="ota"
  4212. type="2" >
  4213. <otaLanguages>
  4214. <otaLanguage
  4215. id="0"
  4216. name="English"
  4217. package="0"
  4218. />
  4219. <otaLanguage
  4220. id="0"
  4221. name="Français"
  4222. package="1"
  4223. />
  4224. <otaLanguage
  4225. id="0"
  4226. name="Español"
  4227. package="2"
  4228. />
  4229. <otaLanguage
  4230. id="0"
  4231. name="Italiano"
  4232. package="3"
  4233. />
  4234. <otaLanguage
  4235. id="0"
  4236. name="Deutsch"
  4237. package="4"
  4238. />
  4239. <otaLanguage
  4240. id="0"
  4241. name="Nederlands"
  4242. package="5"
  4243. />
  4244. <otaLanguage
  4245. id="0"
  4246. name="Русский"
  4247. package="6"
  4248. />
  4249. <otaLanguage
  4250. id="0"
  4251. name="简体中文"
  4252. package="7"
  4253. />
  4254. <otaLanguage
  4255. id="0"
  4256. name="한국어"
  4257. package="8"
  4258. />
  4259. <otaLanguage
  4260. id="0"
  4261. name="日本語"
  4262. package="9"
  4263. />
  4264. <otaLanguage
  4265. id="0"
  4266. name="Suomi"
  4267. package="10"
  4268. />
  4269. <otaLanguage
  4270. id="0"
  4271. name="Polski"
  4272. package="11"
  4273. />
  4274. </otaLanguages>
  4275. <otaPackages>
  4276. <package
  4277. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0.img"
  4278. size="5183988"
  4279. />
  4280. <package
  4281. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fr-FR.img"
  4282. size="5183988"
  4283. />
  4284. <package
  4285. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-es-ES.img"
  4286. size="5183988"
  4287. />
  4288. <package
  4289. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-it-IT.img"
  4290. size="5183988"
  4291. />
  4292. <package
  4293. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-de-DE.img"
  4294. size="5183988"
  4295. />
  4296. <package
  4297. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-nl-NL.img"
  4298. size="5183988"
  4299. />
  4300. <package
  4301. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ru-RU.img"
  4302. size="5183988"
  4303. />
  4304. <package
  4305. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-cmn-CN.img"
  4306. size="5183988"
  4307. />
  4308. <package
  4309. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ko-KR.img"
  4310. size="5183988"
  4311. />
  4312. <package
  4313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ja-JP.img"
  4314. size="5183988"
  4315. />
  4316. <package
  4317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fi-FI.img"
  4318. size="5183988"
  4319. />
  4320. <package
  4321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-pl-PL.img"
  4322. size="5183988"
  4323. />
  4324. </otaPackages>
  4325. </productMenu>
  4326. <productMenu id="wa"
  4327. type="0" >
  4328. </productMenu>
  4329. <productMenu id="led"
  4330. type="5" >
  4331. </productMenu>
  4332. <productMenu id="led+"
  4333. type="2"
  4334. url="1" >
  4335. </productMenu>
  4336. <productMenu id="meshIntercom"
  4337. type="30" >
  4338. </productMenu>
  4339. <productMenu id="meshIntercom+"
  4340. type="3"
  4341. url="2" >
  4342. </productMenu>
  4343. <productMenu id="waveIntercom"
  4344. type="1" >
  4345. </productMenu>
  4346. <productMenu id="fmradio"
  4347. type="0" >
  4348. </productMenu>
  4349. <productMenu id="phone"
  4350. type="1" >
  4351. </productMenu>
  4352. <productMenu id="music"
  4353. type="1" >
  4354. </productMenu>
  4355. <productMenu id="musicSharing"
  4356. type="0" >
  4357. </productMenu>
  4358. <productMenu id="deviceSetting"
  4359. type="1"
  4360. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4361. <productMenuURL version="1.2.10"
  4362. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4363. />
  4364. <productMenuURL version="1.2.4"
  4365. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4366. />
  4367. </productMenu>
  4368. <productMenu id="quickGuide"
  4369. type="0"
  4370. url=""
  4371. size="1.52MB" >
  4372. </productMenu>
  4373. <productMenu id="userGuide"
  4374. type="1"
  4375. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4376. size="2.01MB" >
  4377. </productMenu>
  4378. <productMenu id="videoGuide"
  4379. type="0"
  4380. url=""
  4381. size="3.46MB" >
  4382. </productMenu>
  4383. <productMenu id="connectGuide"
  4384. type="1"
  4385. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4386. size="1.1MB" >
  4387. </productMenu>
  4388. <productMenu id="volume"
  4389. type="16" >
  4390. </productMenu>
  4391. <productMenu id="volume+"
  4392. type="2"
  4393. url="0x6004" >
  4394. </productMenu>
  4395. <productMenu id="battery"
  4396. type="1" >
  4397. </productMenu>
  4398. <productID id="6A0E"
  4399. />
  4400. <productGroupable type="0"
  4401. />
  4402. </product>
  4403. <product id="PHANTOM"
  4404. name="PHANTOM"
  4405. series="Helmet"
  4406. latestVersion="1.2.11"
  4407. latestVersionVoicePrompt="1.8"
  4408. show = "1" >
  4409. <productMenu id="protocol"
  4410. type="2" >
  4411. </productMenu>
  4412. <productMenu id="ota"
  4413. type="2" >
  4414. <otaLanguages>
  4415. <otaLanguage
  4416. id="0"
  4417. name="English"
  4418. package="0"
  4419. />
  4420. <otaLanguage
  4421. id="0"
  4422. name="Français"
  4423. package="1"
  4424. />
  4425. <otaLanguage
  4426. id="0"
  4427. name="Español"
  4428. package="2"
  4429. />
  4430. <otaLanguage
  4431. id="0"
  4432. name="Italiano"
  4433. package="3"
  4434. />
  4435. <otaLanguage
  4436. id="0"
  4437. name="Deutsch"
  4438. package="4"
  4439. />
  4440. <otaLanguage
  4441. id="0"
  4442. name="Nederlands"
  4443. package="5"
  4444. />
  4445. <otaLanguage
  4446. id="0"
  4447. name="Русский"
  4448. package="6"
  4449. />
  4450. <otaLanguage
  4451. id="0"
  4452. name="简体中文"
  4453. package="7"
  4454. />
  4455. <otaLanguage
  4456. id="0"
  4457. name="한국어"
  4458. package="8"
  4459. />
  4460. <otaLanguage
  4461. id="0"
  4462. name="日本語"
  4463. package="9"
  4464. />
  4465. <otaLanguage
  4466. id="0"
  4467. name="Suomi"
  4468. package="10"
  4469. />
  4470. <otaLanguage
  4471. id="0"
  4472. name="Polski"
  4473. package="11"
  4474. />
  4475. </otaLanguages>
  4476. <otaPackages>
  4477. <package
  4478. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0.img"
  4479. size="5183988"
  4480. />
  4481. <package
  4482. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fr-FR.img"
  4483. size="5183988"
  4484. />
  4485. <package
  4486. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-es-ES.img"
  4487. size="5183988"
  4488. />
  4489. <package
  4490. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-it-IT.img"
  4491. size="5183988"
  4492. />
  4493. <package
  4494. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-de-DE.img"
  4495. size="5183988"
  4496. />
  4497. <package
  4498. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-nl-NL.img"
  4499. size="5183988"
  4500. />
  4501. <package
  4502. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ru-RU.img"
  4503. size="5183988"
  4504. />
  4505. <package
  4506. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-cmn-CN.img"
  4507. size="5183988"
  4508. />
  4509. <package
  4510. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ko-KR.img"
  4511. size="5183988"
  4512. />
  4513. <package
  4514. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ja-JP.img"
  4515. size="5183988"
  4516. />
  4517. <package
  4518. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fi-FI.img"
  4519. size="5183988"
  4520. />
  4521. <package
  4522. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-pl-PL.img"
  4523. size="5183988"
  4524. />
  4525. </otaPackages>
  4526. </productMenu>
  4527. <productMenu id="wa"
  4528. type="0" >
  4529. </productMenu>
  4530. <productMenu id="led"
  4531. type="5" >
  4532. <productMenuType version="1.0.1"
  4533. type="4"
  4534. />
  4535. </productMenu>
  4536. <productMenu id="led+"
  4537. type="2"
  4538. url="1" >
  4539. <productMenuType version="1.0.1"
  4540. type="-1"
  4541. />
  4542. </productMenu>
  4543. <productMenu id="meshIntercom"
  4544. type="30" >
  4545. </productMenu>
  4546. <productMenu id="meshIntercom+"
  4547. type="3"
  4548. url="2" >
  4549. <productMenuURL version="1.0.4"
  4550. url="10"
  4551. />
  4552. </productMenu>
  4553. <productMenu id="waveIntercom"
  4554. type="1" >
  4555. <productMenuType version="1.0.9"
  4556. type="0"
  4557. />
  4558. </productMenu>
  4559. <productMenu id="fmradio"
  4560. type="0" >
  4561. </productMenu>
  4562. <productMenu id="phone"
  4563. type="1" >
  4564. </productMenu>
  4565. <productMenu id="music"
  4566. type="1" >
  4567. </productMenu>
  4568. <productMenu id="musicSharing"
  4569. type="0" >
  4570. </productMenu>
  4571. <productMenu id="deviceSetting"
  4572. type="1"
  4573. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4574. <productMenuURL version="1.2.10"
  4575. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4576. />
  4577. <productMenuURL version="1.2.4"
  4578. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4579. />
  4580. <productMenuURL version="1.2.1"
  4581. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4582. />
  4583. <productMenuURL version="1.0.4"
  4584. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4585. />
  4586. <productMenuURL version="1.0.1"
  4587. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4588. />
  4589. </productMenu>
  4590. <productMenu id="quickGuide"
  4591. type="0"
  4592. url=""
  4593. size="1.12MB" >
  4594. </productMenu>
  4595. <productMenu id="userGuide"
  4596. type="1"
  4597. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4598. size="2.0MB" >
  4599. </productMenu>
  4600. <productMenu id="videoGuide"
  4601. type="0"
  4602. url=""
  4603. size="3.41MB" >
  4604. </productMenu>
  4605. <productMenu id="connectGuide"
  4606. type="1"
  4607. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4608. size="1.12MB" >
  4609. </productMenu>
  4610. <productMenu id="volume"
  4611. type="16" >
  4612. <productMenuType version="1.0"
  4613. type="13"
  4614. />
  4615. </productMenu>
  4616. <productMenu id="volume+"
  4617. type="2"
  4618. url="0x6004" >
  4619. </productMenu>
  4620. <productMenu id="battery"
  4621. type="1" >
  4622. </productMenu>
  4623. <productID id="6A04"
  4624. />
  4625. <productGroupable type="0"
  4626. />
  4627. </product>
  4628. <product id="PHANTOMEasyLink"
  4629. name="PHANTOM EasyLink"
  4630. series="Helmet"
  4631. latestVersion="0.1"
  4632. latestVersionVoicePrompt="1.2"
  4633. show = "-1" >
  4634. <productMenu id="protocol"
  4635. type="2" >
  4636. </productMenu>
  4637. <productMenu id="ota"
  4638. type="0" >
  4639. <otaLanguages>
  4640. <otaLanguage
  4641. id="0"
  4642. name="English"
  4643. package="0"
  4644. />
  4645. <otaLanguage
  4646. id="0"
  4647. name="Français"
  4648. package="1"
  4649. />
  4650. <otaLanguage
  4651. id="0"
  4652. name="Español"
  4653. package="2"
  4654. />
  4655. <otaLanguage
  4656. id="0"
  4657. name="Italiano"
  4658. package="3"
  4659. />
  4660. <otaLanguage
  4661. id="0"
  4662. name="Deutsch"
  4663. package="4"
  4664. />
  4665. <otaLanguage
  4666. id="0"
  4667. name="Nederlands"
  4668. package="5"
  4669. />
  4670. <otaLanguage
  4671. id="0"
  4672. name="Русский"
  4673. package="6"
  4674. />
  4675. <otaLanguage
  4676. id="0"
  4677. name="简体中文"
  4678. package="7"
  4679. />
  4680. <otaLanguage
  4681. id="0"
  4682. name="한국어"
  4683. package="8"
  4684. />
  4685. <otaLanguage
  4686. id="0"
  4687. name="日本語"
  4688. package="9"
  4689. />
  4690. <otaLanguage
  4691. id="0"
  4692. name="Suomi"
  4693. package="10"
  4694. />
  4695. <otaLanguage
  4696. id="0"
  4697. name="Polski"
  4698. package="11"
  4699. />
  4700. </otaLanguages>
  4701. <otaPackages>
  4702. <package
  4703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4704. size="5183988"
  4705. />
  4706. <package
  4707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4708. size="5183988"
  4709. />
  4710. <package
  4711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4712. size="5183988"
  4713. />
  4714. <package
  4715. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4716. size="5183988"
  4717. />
  4718. <package
  4719. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4720. size="5183988"
  4721. />
  4722. <package
  4723. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4724. size="5183988"
  4725. />
  4726. <package
  4727. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4728. size="5183988"
  4729. />
  4730. <package
  4731. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4732. size="5183988"
  4733. />
  4734. <package
  4735. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4736. size="5183988"
  4737. />
  4738. <package
  4739. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4740. size="5183988"
  4741. />
  4742. <package
  4743. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4744. size="5183988"
  4745. />
  4746. <package
  4747. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4748. size="5183988"
  4749. />
  4750. </otaPackages>
  4751. </productMenu>
  4752. <productMenu id="meshIntercom"
  4753. type="30" >
  4754. </productMenu>
  4755. <productMenu id="meshIntercom+"
  4756. type="3"
  4757. url="2" >
  4758. </productMenu>
  4759. <productMenu id="waveIntercom"
  4760. type="1" >
  4761. </productMenu>
  4762. <productMenu id="fmradio"
  4763. type="0" >
  4764. </productMenu>
  4765. <productMenu id="phone"
  4766. type="1" >
  4767. </productMenu>
  4768. <productMenu id="music"
  4769. type="1" >
  4770. </productMenu>
  4771. <productMenu id="musicSharing"
  4772. type="0" >
  4773. </productMenu>
  4774. <productMenu id="deviceSetting"
  4775. type="1"
  4776. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4777. </productMenu>
  4778. <productMenu id="quickGuide"
  4779. type="0"
  4780. url=""
  4781. size="1.12MB" >
  4782. </productMenu>
  4783. <productMenu id="userGuide"
  4784. type="1"
  4785. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4786. size="2.0MB" >
  4787. </productMenu>
  4788. <productMenu id="videoGuide"
  4789. type="0"
  4790. url=""
  4791. size="3.41MB" >
  4792. </productMenu>
  4793. <productMenu id="connectGuide"
  4794. type="0"
  4795. url=""
  4796. size="1.12MB" >
  4797. </productMenu>
  4798. <productMenu id="volume"
  4799. type="16" >
  4800. </productMenu>
  4801. <productMenu id="battery"
  4802. type="1" >
  4803. </productMenu>
  4804. <productID id="6A18"
  4805. />
  4806. <productGroupable type="0"
  4807. />
  4808. </product>
  4809. <product id="SPIDERX"
  4810. name="SPIDER X"
  4811. series="SPIDER"
  4812. latestVersion="1.0.1"
  4813. latestVersionMesh="0.19"
  4814. latestVersionVoicePrompt="1.8"
  4815. show="-1" >
  4816. <productMenu id="protocol"
  4817. type="2" >
  4818. </productMenu>
  4819. <productMenu id="warranty"
  4820. type="1" >
  4821. </productMenu>
  4822. <productMenu id="serialNumber"
  4823. type="1" >
  4824. </productMenu>
  4825. <productMenu id="ota"
  4826. type="0" >
  4827. <otaLanguages>
  4828. <otaLanguage
  4829. id="0"
  4830. name="English"
  4831. package="0"
  4832. />
  4833. <otaLanguage
  4834. id="0"
  4835. name="Français"
  4836. package="1"
  4837. />
  4838. <otaLanguage
  4839. id="0"
  4840. name="Español"
  4841. package="2"
  4842. />
  4843. <otaLanguage
  4844. id="0"
  4845. name="Italiano"
  4846. package="3"
  4847. />
  4848. <otaLanguage
  4849. id="0"
  4850. name="Deutsch"
  4851. package="4"
  4852. />
  4853. <otaLanguage
  4854. id="0"
  4855. name="Nederlands"
  4856. package="5"
  4857. />
  4858. <otaLanguage
  4859. id="0"
  4860. name="Русский"
  4861. package="6"
  4862. />
  4863. <otaLanguage
  4864. id="0"
  4865. name="简体中文"
  4866. package="7"
  4867. />
  4868. <otaLanguage
  4869. id="0"
  4870. name="한국어"
  4871. package="8"
  4872. />
  4873. <otaLanguage
  4874. id="0"
  4875. name="日本語"
  4876. package="9"
  4877. />
  4878. <otaLanguage
  4879. id="0"
  4880. name="Suomi"
  4881. package="10"
  4882. />
  4883. <otaLanguage
  4884. id="0"
  4885. name="Polski"
  4886. package="11"
  4887. />
  4888. </otaLanguages>
  4889. <otaPackages>
  4890. <package
  4891. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0.img"
  4892. size="5183988"
  4893. />
  4894. <package
  4895. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fr-FR.img"
  4896. size="5183988"
  4897. />
  4898. <package
  4899. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-es-ES.img"
  4900. size="5183988"
  4901. />
  4902. <package
  4903. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-it-IT.img"
  4904. size="5183988"
  4905. />
  4906. <package
  4907. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-de-DE.img"
  4908. size="5183988"
  4909. />
  4910. <package
  4911. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-nl-NL.img"
  4912. size="5183988"
  4913. />
  4914. <package
  4915. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ru-RU.img"
  4916. size="5183988"
  4917. />
  4918. <package
  4919. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-cmn-CN.img"
  4920. size="5183988"
  4921. />
  4922. <package
  4923. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ko-KR.img"
  4924. size="5183988"
  4925. />
  4926. <package
  4927. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ja-JP.img"
  4928. size="5183988"
  4929. />
  4930. <package
  4931. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fi-FI.img"
  4932. size="5183988"
  4933. />
  4934. <package
  4935. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-pl-PL.img"
  4936. size="5183988"
  4937. />
  4938. </otaPackages>
  4939. </productMenu>
  4940. <productMenu id="meshIntercom+"
  4941. type="3"
  4942. url="2" >
  4943. </productMenu>
  4944. <productMenu id="waveIntercom"
  4945. type="1" >
  4946. </productMenu>
  4947. <productMenu id="fmradio"
  4948. type="1"
  4949. url="1" >
  4950. </productMenu>
  4951. <productMenu id="mic"
  4952. type="0" >
  4953. </productMenu>
  4954. <productMenu id="phone"
  4955. type="1" >
  4956. </productMenu>
  4957. <productMenu id="music"
  4958. type="1" >
  4959. </productMenu>
  4960. <productMenu id="musicSharing"
  4961. type="0" >
  4962. </productMenu>
  4963. <productMenu id="deviceSetting"
  4964. type="1"
  4965. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  4966. </productMenu>
  4967. <productMenu id="quickGuide"
  4968. type="0"
  4969. url=""
  4970. size="1.12MB" >
  4971. </productMenu>
  4972. <productMenu id="userGuide"
  4973. type="1"
  4974. url=""
  4975. size="2.0MB" >
  4976. </productMenu>
  4977. <productMenu id="videoGuide"
  4978. type="0"
  4979. url=""
  4980. size="3.41MB" >
  4981. </productMenu>
  4982. <productMenu id="connectGuide"
  4983. type="1"
  4984. url=""
  4985. size="1.12MB" >
  4986. </productMenu>
  4987. <productMenu id="keySettings"
  4988. type="0"
  4989. url="" >
  4990. </productMenu>
  4991. <productMenu id="volume"
  4992. type="13" >
  4993. </productMenu>
  4994. <productMenu id="volume+"
  4995. type="2"
  4996. url="0x6004" >
  4997. </productMenu>
  4998. <productMenu id="appearance"
  4999. type="0"
  5000. url="" >
  5001. </productMenu>
  5002. <productMenu id="battery"
  5003. type="1" >
  5004. </productMenu>
  5005. <productID id="6A20"
  5006. />
  5007. <productGroupable type="0"
  5008. />
  5009. </product>
  5010. <product id="SPIDERXSlim"
  5011. name="SPIDER X Slim"
  5012. series="SPIDER"
  5013. latestVersion="1.0.1"
  5014. latestVersionVoicePrompt="1.8"
  5015. show = "1" >
  5016. <productMenu id="protocol"
  5017. type="2" >
  5018. </productMenu>
  5019. <productMenu id="warranty"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="serialNumber"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="ota"
  5026. type="2" >
  5027. <otaLanguages>
  5028. <otaLanguage
  5029. id="0"
  5030. name="English"
  5031. package="0"
  5032. />
  5033. <otaLanguage
  5034. id="0"
  5035. name="Français"
  5036. package="1"
  5037. />
  5038. <otaLanguage
  5039. id="0"
  5040. name="Español"
  5041. package="2"
  5042. />
  5043. <otaLanguage
  5044. id="0"
  5045. name="Italiano"
  5046. package="3"
  5047. />
  5048. <otaLanguage
  5049. id="0"
  5050. name="Deutsch"
  5051. package="4"
  5052. />
  5053. <otaLanguage
  5054. id="0"
  5055. name="Nederlands"
  5056. package="5"
  5057. />
  5058. <otaLanguage
  5059. id="0"
  5060. name="Русский"
  5061. package="6"
  5062. />
  5063. <otaLanguage
  5064. id="0"
  5065. name="简体中文"
  5066. package="7"
  5067. />
  5068. <otaLanguage
  5069. id="0"
  5070. name="한국어"
  5071. package="8"
  5072. />
  5073. <otaLanguage
  5074. id="0"
  5075. name="日本語"
  5076. package="9"
  5077. />
  5078. <otaLanguage
  5079. id="0"
  5080. name="Suomi"
  5081. package="10"
  5082. />
  5083. <otaLanguage
  5084. id="0"
  5085. name="Polski"
  5086. package="11"
  5087. />
  5088. </otaLanguages>
  5089. <otaPackages>
  5090. <package
  5091. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  5092. size="5183988"
  5093. />
  5094. <package
  5095. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  5096. size="5183988"
  5097. />
  5098. <package
  5099. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  5100. size="5183988"
  5101. />
  5102. <package
  5103. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  5104. size="5183988"
  5105. />
  5106. <package
  5107. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  5108. size="5183988"
  5109. />
  5110. <package
  5111. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  5112. size="5183988"
  5113. />
  5114. <package
  5115. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  5116. size="5183988"
  5117. />
  5118. <package
  5119. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  5120. size="5183988"
  5121. />
  5122. <package
  5123. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  5124. size="5183988"
  5125. />
  5126. <package
  5127. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  5128. size="5183988"
  5129. />
  5130. <package
  5131. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  5132. size="5183988"
  5133. />
  5134. <package
  5135. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  5136. size="5183988"
  5137. />
  5138. </otaPackages>
  5139. </productMenu>
  5140. <productMenu id="meshIntercom"
  5141. type="30" >
  5142. </productMenu>
  5143. <productMenu id="meshIntercom+"
  5144. type="3"
  5145. url="2" >
  5146. </productMenu>
  5147. <productMenu id="waveIntercom"
  5148. type="1" >
  5149. </productMenu>
  5150. <productMenu id="fmradio"
  5151. type="1"
  5152. url="1" >
  5153. </productMenu>
  5154. <productMenu id="phone"
  5155. type="1" >
  5156. </productMenu>
  5157. <productMenu id="music"
  5158. type="1" >
  5159. </productMenu>
  5160. <productMenu id="musicSharing"
  5161. type="0" >
  5162. </productMenu>
  5163. <productMenu id="deviceSetting"
  5164. type="1"
  5165. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  5166. <productMenuURL version="1.0"
  5167. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  5168. />
  5169. </productMenu>
  5170. <productMenu id="quickGuide"
  5171. type="0"
  5172. url=""
  5173. size="1.12MB" >
  5174. </productMenu>
  5175. <productMenu id="userGuide"
  5176. type="1"
  5177. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  5178. size="2.0MB" >
  5179. </productMenu>
  5180. <productMenu id="videoGuide"
  5181. type="0"
  5182. url=""
  5183. size="3.41MB" >
  5184. </productMenu>
  5185. <productMenu id="connectGuide"
  5186. type="1"
  5187. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  5188. size="1.12MB" >
  5189. </productMenu>
  5190. <productMenu id="volume"
  5191. type="16" >
  5192. </productMenu>
  5193. <productMenu id="volume+"
  5194. type="2"
  5195. url="0x6004" >
  5196. </productMenu>
  5197. <productMenu id="appearance"
  5198. type="1"
  5199. url="2|white,silver,chrome,black" >
  5200. </productMenu>
  5201. <productMenu id="battery"
  5202. type="1" >
  5203. </productMenu>
  5204. <productID id="6A07"
  5205. />
  5206. <productGroupable type="0"
  5207. />
  5208. </product>
  5209. <product id="LS2SPECTRUMPRO"
  5210. name="LS2 SPECTRUM PRO"
  5211. series="SPIDER"
  5212. latestVersion="1.0.1"
  5213. latestVersionVoicePrompt="1.8"
  5214. show = "-1" >
  5215. <productMenu id="protocol"
  5216. type="2" >
  5217. </productMenu>
  5218. <productMenu id="warranty"
  5219. type="0" >
  5220. </productMenu>
  5221. <productMenu id="serialNumber"
  5222. type="0" >
  5223. </productMenu>
  5224. <productMenu id="ota"
  5225. type="0" >
  5226. <otaLanguages>
  5227. <otaLanguage
  5228. id="0"
  5229. name="English"
  5230. package="0"
  5231. />
  5232. <otaLanguage
  5233. id="0"
  5234. name="Français"
  5235. package="1"
  5236. />
  5237. <otaLanguage
  5238. id="0"
  5239. name="Español"
  5240. package="2"
  5241. />
  5242. <otaLanguage
  5243. id="0"
  5244. name="Italiano"
  5245. package="3"
  5246. />
  5247. <otaLanguage
  5248. id="0"
  5249. name="Deutsch"
  5250. package="4"
  5251. />
  5252. <otaLanguage
  5253. id="0"
  5254. name="Nederlands"
  5255. package="5"
  5256. />
  5257. <otaLanguage
  5258. id="0"
  5259. name="Русский"
  5260. package="6"
  5261. />
  5262. <otaLanguage
  5263. id="0"
  5264. name="简体中文"
  5265. package="7"
  5266. />
  5267. <otaLanguage
  5268. id="0"
  5269. name="한국어"
  5270. package="8"
  5271. />
  5272. <otaLanguage
  5273. id="0"
  5274. name="日本語"
  5275. package="9"
  5276. />
  5277. <otaLanguage
  5278. id="0"
  5279. name="Suomi"
  5280. package="10"
  5281. />
  5282. <otaLanguage
  5283. id="0"
  5284. name="Polski"
  5285. package="11"
  5286. />
  5287. </otaLanguages>
  5288. <otaPackages>
  5289. <package
  5290. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fr-FR.img"
  5295. size="5183988"
  5296. />
  5297. <package
  5298. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-es-ES.img"
  5299. size="5183988"
  5300. />
  5301. <package
  5302. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-it-IT.img"
  5303. size="5183988"
  5304. />
  5305. <package
  5306. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-de-DE.img"
  5307. size="5183988"
  5308. />
  5309. <package
  5310. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-nl-NL.img"
  5311. size="5183988"
  5312. />
  5313. <package
  5314. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ru-RU.img"
  5315. size="5183988"
  5316. />
  5317. <package
  5318. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-cmn-CN.img"
  5319. size="5183988"
  5320. />
  5321. <package
  5322. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ko-KR.img"
  5323. size="5183988"
  5324. />
  5325. <package
  5326. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ja-JP.img"
  5327. size="5183988"
  5328. />
  5329. <package
  5330. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fi-FI.img"
  5331. size="5183988"
  5332. />
  5333. <package
  5334. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-pl-PL.img"
  5335. size="5183988"
  5336. />
  5337. </otaPackages>
  5338. </productMenu>
  5339. <productMenu id="meshIntercom"
  5340. type="30" >
  5341. </productMenu>
  5342. <productMenu id="meshIntercom+"
  5343. type="3"
  5344. url="2" >
  5345. </productMenu>
  5346. <productMenu id="waveIntercom"
  5347. type="1" >
  5348. </productMenu>
  5349. <productMenu id="fmradio"
  5350. type="1"
  5351. url="1" >
  5352. </productMenu>
  5353. <productMenu id="phone"
  5354. type="1" >
  5355. </productMenu>
  5356. <productMenu id="music"
  5357. type="1" >
  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/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  5365. </productMenu>
  5366. <productMenu id="quickGuide"
  5367. type="0"
  5368. url=""
  5369. size="1.12MB" >
  5370. </productMenu>
  5371. <productMenu id="userGuide"
  5372. type="1"
  5373. url=""
  5374. size="2.0MB" >
  5375. </productMenu>
  5376. <productMenu id="videoGuide"
  5377. type="0"
  5378. url=""
  5379. size="3.41MB" >
  5380. </productMenu>
  5381. <productMenu id="connectGuide"
  5382. type="1"
  5383. url=""
  5384. size="1.12MB" >
  5385. </productMenu>
  5386. <productMenu id="volume"
  5387. type="16" >
  5388. </productMenu>
  5389. <productMenu id="volume+"
  5390. type="2"
  5391. url="0x6004" >
  5392. </productMenu>
  5393. <productMenu id="appearance"
  5394. type="0"
  5395. url="2|white,silver,chrome,black" >
  5396. </productMenu>
  5397. <productMenu id="battery"
  5398. type="1" >
  5399. </productMenu>
  5400. <productID id="6A22"
  5401. />
  5402. <productGroupable type="0"
  5403. />
  5404. </product>
  5405. <product id="XFITM"
  5406. name="X-FIT M"
  5407. series="SPIDER"
  5408. latestVersion="0.1.11"
  5409. latestVersionVoicePrompt="1.1"
  5410. show = "-1" >
  5411. <productMenu id="protocol"
  5412. type="2" >
  5413. </productMenu>
  5414. <productMenu id="ota"
  5415. type="0" >
  5416. <otaLanguages>
  5417. <otaLanguage
  5418. id="0"
  5419. name="English"
  5420. package="0"
  5421. />
  5422. <otaLanguage
  5423. id="0"
  5424. name="Français"
  5425. package="1"
  5426. />
  5427. <otaLanguage
  5428. id="0"
  5429. name="Español"
  5430. package="2"
  5431. />
  5432. <otaLanguage
  5433. id="0"
  5434. name="Italiano"
  5435. package="3"
  5436. />
  5437. <otaLanguage
  5438. id="0"
  5439. name="Deutsch"
  5440. package="4"
  5441. />
  5442. <otaLanguage
  5443. id="0"
  5444. name="Nederlands"
  5445. package="5"
  5446. />
  5447. <otaLanguage
  5448. id="0"
  5449. name="Русский"
  5450. package="6"
  5451. />
  5452. <otaLanguage
  5453. id="0"
  5454. name="简体中文"
  5455. package="7"
  5456. />
  5457. <otaLanguage
  5458. id="0"
  5459. name="한국어"
  5460. package="8"
  5461. />
  5462. <otaLanguage
  5463. id="0"
  5464. name="日本語"
  5465. package="9"
  5466. />
  5467. <otaLanguage
  5468. id="0"
  5469. name="Suomi"
  5470. package="10"
  5471. />
  5472. <otaLanguage
  5473. id="0"
  5474. name="Polski"
  5475. package="11"
  5476. />
  5477. </otaLanguages>
  5478. <otaPackages>
  5479. <package
  5480. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  5481. size="5183988"
  5482. />
  5483. <package
  5484. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  5485. size="5183988"
  5486. />
  5487. <package
  5488. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  5489. size="5183988"
  5490. />
  5491. <package
  5492. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  5493. size="5183988"
  5494. />
  5495. <package
  5496. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  5497. size="5183988"
  5498. />
  5499. <package
  5500. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  5501. size="5183988"
  5502. />
  5503. <package
  5504. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  5505. size="5183988"
  5506. />
  5507. <package
  5508. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  5509. size="5183988"
  5510. />
  5511. <package
  5512. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  5513. size="5183988"
  5514. />
  5515. <package
  5516. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  5517. size="5183988"
  5518. />
  5519. <package
  5520. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  5521. size="5183988"
  5522. />
  5523. <package
  5524. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  5525. size="5183988"
  5526. />
  5527. </otaPackages>
  5528. </productMenu>
  5529. <productMenu id="meshIntercom"
  5530. type="30" >
  5531. </productMenu>
  5532. <productMenu id="meshIntercom+"
  5533. type="3"
  5534. url="2" >
  5535. </productMenu>
  5536. <productMenu id="waveIntercom"
  5537. type="1" >
  5538. </productMenu>
  5539. <productMenu id="fmradio"
  5540. type="1"
  5541. url="1" >
  5542. </productMenu>
  5543. <productMenu id="phone"
  5544. type="1" >
  5545. </productMenu>
  5546. <productMenu id="music"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="musicSharing"
  5550. type="0" >
  5551. </productMenu>
  5552. <productMenu id="deviceSetting"
  5553. type="1"
  5554. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  5555. </productMenu>
  5556. <productMenu id="quickGuide"
  5557. type="0"
  5558. url=""
  5559. size="1.12MB" >
  5560. </productMenu>
  5561. <productMenu id="userGuide"
  5562. type="1"
  5563. url=""
  5564. size="2.0MB" >
  5565. </productMenu>
  5566. <productMenu id="videoGuide"
  5567. type="0"
  5568. url=""
  5569. size="3.41MB" >
  5570. </productMenu>
  5571. <productMenu id="volume"
  5572. type="16" >
  5573. </productMenu>
  5574. <productMenu id="volume+"
  5575. type="2"
  5576. url="0x6004" >
  5577. </productMenu>
  5578. <productMenu id="battery"
  5579. type="1" >
  5580. </productMenu>
  5581. <productID id="6A17"
  5582. />
  5583. <productGroupable type="0"
  5584. />
  5585. </product>
  5586. <product id="VORTEXMESH"
  5587. name="VORTEX MESH"
  5588. series="Helmet"
  5589. latestVersion="0.1.11"
  5590. latestVersionVoicePrompt="1.1"
  5591. show = "-1" >
  5592. <productMenu id="protocol"
  5593. type="2" >
  5594. </productMenu>
  5595. <productMenu id="ota"
  5596. type="0" >
  5597. <otaLanguages>
  5598. <otaLanguage
  5599. id="0"
  5600. name="English"
  5601. package="0"
  5602. />
  5603. <otaLanguage
  5604. id="0"
  5605. name="Français"
  5606. package="1"
  5607. />
  5608. <otaLanguage
  5609. id="0"
  5610. name="Español"
  5611. package="2"
  5612. />
  5613. <otaLanguage
  5614. id="0"
  5615. name="Italiano"
  5616. package="3"
  5617. />
  5618. <otaLanguage
  5619. id="0"
  5620. name="Deutsch"
  5621. package="4"
  5622. />
  5623. <otaLanguage
  5624. id="0"
  5625. name="Nederlands"
  5626. package="5"
  5627. />
  5628. <otaLanguage
  5629. id="0"
  5630. name="Русский"
  5631. package="6"
  5632. />
  5633. <otaLanguage
  5634. id="0"
  5635. name="简体中文"
  5636. package="7"
  5637. />
  5638. <otaLanguage
  5639. id="0"
  5640. name="한국어"
  5641. package="8"
  5642. />
  5643. <otaLanguage
  5644. id="0"
  5645. name="日本語"
  5646. package="9"
  5647. />
  5648. <otaLanguage
  5649. id="0"
  5650. name="Suomi"
  5651. package="10"
  5652. />
  5653. <otaLanguage
  5654. id="0"
  5655. name="Polski"
  5656. package="11"
  5657. />
  5658. </otaLanguages>
  5659. <otaPackages>
  5660. <package
  5661. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  5662. size="5183988"
  5663. />
  5664. <package
  5665. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  5666. size="5183988"
  5667. />
  5668. <package
  5669. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  5670. size="5183988"
  5671. />
  5672. <package
  5673. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  5674. size="5183988"
  5675. />
  5676. <package
  5677. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  5678. size="5183988"
  5679. />
  5680. <package
  5681. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  5682. size="5183988"
  5683. />
  5684. <package
  5685. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  5686. size="5183988"
  5687. />
  5688. <package
  5689. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  5690. size="5183988"
  5691. />
  5692. <package
  5693. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  5694. size="5183988"
  5695. />
  5696. <package
  5697. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  5698. size="5183988"
  5699. />
  5700. <package
  5701. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  5702. size="5183988"
  5703. />
  5704. <package
  5705. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  5706. size="5183988"
  5707. />
  5708. </otaPackages>
  5709. </productMenu>
  5710. <productMenu id="wa"
  5711. type="0" >
  5712. </productMenu>
  5713. <productMenu id="led"
  5714. type="5" >
  5715. </productMenu>
  5716. <productMenu id="led+"
  5717. type="2"
  5718. url="1" >
  5719. </productMenu>
  5720. <productMenu id="meshIntercom"
  5721. type="30" >
  5722. </productMenu>
  5723. <productMenu id="meshIntercom+"
  5724. type="3"
  5725. url="2" >
  5726. </productMenu>
  5727. <productMenu id="waveIntercom"
  5728. type="1" >
  5729. </productMenu>
  5730. <productMenu id="fmradio"
  5731. type="0" >
  5732. </productMenu>
  5733. <productMenu id="phone"
  5734. type="1" >
  5735. </productMenu>
  5736. <productMenu id="music"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="musicSharing"
  5740. type="0" >
  5741. </productMenu>
  5742. <productMenu id="deviceSetting"
  5743. type="1"
  5744. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5745. </productMenu>
  5746. <productMenu id="quickGuide"
  5747. type="0"
  5748. url=""
  5749. size="1.12MB" >
  5750. </productMenu>
  5751. <productMenu id="userGuide"
  5752. type="1"
  5753. url=""
  5754. size="2.0MB" >
  5755. </productMenu>
  5756. <productMenu id="videoGuide"
  5757. type="0"
  5758. url=""
  5759. size="3.41MB" >
  5760. </productMenu>
  5761. <productMenu id="volume"
  5762. type="16" >
  5763. </productMenu>
  5764. <productMenu id="battery"
  5765. type="1" >
  5766. </productMenu>
  5767. <productID id="6A12"
  5768. />
  5769. <productGroupable type="0"
  5770. />
  5771. </product>
  5772. <product id="MeshOn"
  5773. name="MeshON"
  5774. series="Other"
  5775. latestVersion="1.0.1"
  5776. latestVersionVoicePrompt="0.7"
  5777. show = "1" >
  5778. <productMenu id="protocol"
  5779. type="2" >
  5780. </productMenu>
  5781. <productMenu id="ota"
  5782. type="2" >
  5783. <otaPackages>
  5784. <package
  5785. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  5786. size="2945812"
  5787. />
  5788. </otaPackages>
  5789. </productMenu>
  5790. <productMenu id="meshIntercom+"
  5791. type="3"
  5792. url="4" >
  5793. </productMenu>
  5794. <productMenu id="waveIntercom"
  5795. type="0" >
  5796. </productMenu>
  5797. <productMenu id="phone"
  5798. type="0" >
  5799. </productMenu>
  5800. <productMenu id="music"
  5801. type="0" >
  5802. </productMenu>
  5803. <productMenu id="musicSharing"
  5804. type="0" >
  5805. </productMenu>
  5806. <productMenu id="deviceSetting"
  5807. type="1"
  5808. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_02.xml" >
  5809. </productMenu>
  5810. <productMenu id="userGuide"
  5811. type="1"
  5812. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  5813. size="2.0MB" >
  5814. </productMenu>
  5815. <productMenu id="connectGuide"
  5816. type="1"
  5817. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  5818. size="1.12MB" >
  5819. </productMenu>
  5820. <productMenu id="bluetoothHeadset"
  5821. type="1"
  5822. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  5823. </productMenu>
  5824. <productMenu id="volume"
  5825. type="0" >
  5826. </productMenu>
  5827. <productMenu id="battery"
  5828. type="1" >
  5829. </productMenu>
  5830. <productID id="684E"
  5831. />
  5832. <productGroupable type="0"
  5833. />
  5834. </product>
  5835. <product id="Impulse"
  5836. name="Impulse"
  5837. series="Helmet"
  5838. latestVersion="1.4.1"
  5839. show = "1" >
  5840. <productMenu id="protocol"
  5841. type="2" >
  5842. </productMenu>
  5843. <productMenu id="alexa"
  5844. type="0" >
  5845. </productMenu>
  5846. <productMenu id="ota"
  5847. type="0" >
  5848. </productMenu>
  5849. <productMenu id="wa"
  5850. type="24" >
  5851. </productMenu>
  5852. <productMenu id="manager"
  5853. type="0" >
  5854. </productMenu>
  5855. <productMenu id="sip"
  5856. type="1" >
  5857. </productMenu>
  5858. <productMenu id="led"
  5859. type="1" >
  5860. <productMenuType version="1.0.1"
  5861. type="2"
  5862. />
  5863. <productMenuType version="1.0"
  5864. type="1"
  5865. />
  5866. </productMenu>
  5867. <productMenu id="meshIntercom"
  5868. type="30" >
  5869. <productMenuType version="1.1.1"
  5870. type="20"
  5871. />
  5872. </productMenu>
  5873. <productMenu id="meshIntercom+"
  5874. type="3"
  5875. url="2" >
  5876. <productMenuType version="1.3.9"
  5877. type="2"
  5878. />
  5879. <productMenuURL version="1.1.1"
  5880. url="0"
  5881. />
  5882. </productMenu>
  5883. <productMenu id="waveIntercom"
  5884. type="1" >
  5885. <productMenuType version="1.3.9"
  5886. type="0"
  5887. />
  5888. </productMenu>
  5889. <productMenu id="bluetoothIntercom"
  5890. type="1" >
  5891. </productMenu>
  5892. <productMenu id="phone"
  5893. type="1" >
  5894. </productMenu>
  5895. <productMenu id="music"
  5896. type="1" >
  5897. </productMenu>
  5898. <productMenu id="fmradio"
  5899. type="1" >
  5900. </productMenu>
  5901. <productMenu id="deviceSetting"
  5902. type="1"
  5903. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5904. <productMenuURL version="1.3.9"
  5905. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5906. />
  5907. <productMenuURL version="1.1.1"
  5908. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5909. />
  5910. <productMenuURL version="1.0.4"
  5911. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5912. />
  5913. </productMenu>
  5914. <productMenu id="quickGuide"
  5915. type="0"
  5916. url=""
  5917. size="344KB" >
  5918. </productMenu>
  5919. <productMenu id="userGuide"
  5920. type="1"
  5921. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5922. size="3.41MB" >
  5923. </productMenu>
  5924. <productMenu id="connectGuide"
  5925. type="1"
  5926. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5927. size="1.12MB" >
  5928. </productMenu>
  5929. <productMenu id="volume"
  5930. type="11" >
  5931. </productMenu>
  5932. <productMenu id="battery"
  5933. type="1" >
  5934. </productMenu>
  5935. <productID id="3148"
  5936. />
  5937. <productGroupable type="0"
  5938. />
  5939. </product>
  5940. <product id="Impulse"
  5941. name="Impulse"
  5942. series="Helmet"
  5943. latestVersion="2.0"
  5944. show = "-1" >
  5945. <productMenu id="protocol"
  5946. type="2" >
  5947. </productMenu>
  5948. <productMenu id="alexa"
  5949. type="0" >
  5950. </productMenu>
  5951. <productMenu id="ota"
  5952. type="0" >
  5953. </productMenu>
  5954. <productMenu id="wa"
  5955. type="8" >
  5956. </productMenu>
  5957. <productMenu id="manager"
  5958. type="0" >
  5959. </productMenu>
  5960. <productMenu id="sip"
  5961. type="1" >
  5962. </productMenu>
  5963. <productMenu id="led"
  5964. type="3" >
  5965. </productMenu>
  5966. <productMenu id="meshIntercom"
  5967. type="20" >
  5968. </productMenu>
  5969. <productMenu id="bluetoothIntercom"
  5970. type="1" >
  5971. </productMenu>
  5972. <productMenu id="phone"
  5973. type="1" >
  5974. </productMenu>
  5975. <productMenu id="music"
  5976. type="1" >
  5977. </productMenu>
  5978. <productMenu id="fmradio"
  5979. type="1" >
  5980. </productMenu>
  5981. <productMenu id="deviceSetting"
  5982. type="1"
  5983. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5984. </productMenu>
  5985. <productMenu id="quickGuide"
  5986. type="1"
  5987. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5988. size="344KB" >
  5989. </productMenu>
  5990. <productMenu id="userGuide"
  5991. type="1"
  5992. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5993. size="3.41MB" >
  5994. </productMenu>
  5995. <productMenu id="volume"
  5996. type="11" >
  5997. </productMenu>
  5998. <productMenu id="battery"
  5999. type="1" >
  6000. </productMenu>
  6001. <productID id="3221"
  6002. />
  6003. <productGroupable type="0"
  6004. />
  6005. </product>
  6006. <product id="Stryker"
  6007. name="Stryker"
  6008. series="Helmet"
  6009. latestVersion="1.4.1"
  6010. show = "1" >
  6011. <productMenu id="protocol"
  6012. type="2" >
  6013. </productMenu>
  6014. <productMenu id="alexa"
  6015. type="0" >
  6016. </productMenu>
  6017. <productMenu id="ota"
  6018. type="0" >
  6019. </productMenu>
  6020. <productMenu id="wa"
  6021. type="40" >
  6022. </productMenu>
  6023. <productMenu id="manager"
  6024. type="0" >
  6025. </productMenu>
  6026. <productMenu id="sip"
  6027. type="1" >
  6028. </productMenu>
  6029. <productMenu id="led"
  6030. type="1" >
  6031. <productMenuType version="1.0.1"
  6032. type="2"
  6033. />
  6034. <productMenuType version="1.0"
  6035. type="1"
  6036. />
  6037. </productMenu>
  6038. <productMenu id="meshIntercom"
  6039. type="30" >
  6040. <productMenuType version="1.1.1"
  6041. type="20"
  6042. />
  6043. </productMenu>
  6044. <productMenu id="meshIntercom+"
  6045. type="3"
  6046. url="2" >
  6047. <productMenuType version="1.3.9"
  6048. type="2"
  6049. />
  6050. <productMenuURL version="1.1.1"
  6051. url="0"
  6052. />
  6053. </productMenu>
  6054. <productMenu id="waveIntercom"
  6055. type="1" >
  6056. <productMenuType version="1.2.9"
  6057. type="0"
  6058. />
  6059. </productMenu>
  6060. <productMenu id="bluetoothIntercom"
  6061. type="1" >
  6062. </productMenu>
  6063. <productMenu id="phone"
  6064. type="1" >
  6065. </productMenu>
  6066. <productMenu id="music"
  6067. type="1" >
  6068. </productMenu>
  6069. <productMenu id="fmradio"
  6070. type="1" >
  6071. </productMenu>
  6072. <productMenu id="deviceSetting"
  6073. type="1"
  6074. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  6075. <productMenuURL version="1.3.9"
  6076. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  6077. />
  6078. <productMenuURL version="1.1.1"
  6079. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  6080. />
  6081. <productMenuURL version="1.0.4"
  6082. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  6083. />
  6084. </productMenu>
  6085. <productMenu id="quickGuide"
  6086. type="0"
  6087. url=""
  6088. size="344KB" >
  6089. </productMenu>
  6090. <productMenu id="userGuide"
  6091. type="1"
  6092. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  6093. size="3.41MB" >
  6094. </productMenu>
  6095. <productMenu id="connectGuide"
  6096. type="1"
  6097. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6098. size="1.12MB" >
  6099. </productMenu>
  6100. <productMenu id="volume"
  6101. type="11" >
  6102. </productMenu>
  6103. <productMenu id="battery"
  6104. type="1" >
  6105. </productMenu>
  6106. <productID id="3154"
  6107. />
  6108. <productGroupable type="0"
  6109. />
  6110. </product>
  6111. <product id="SRL3Plus"
  6112. name="SRL3 Plus"
  6113. series="60"
  6114. latestVersion="0.9.14"
  6115. latestVersionMesh="0.19"
  6116. latestVersionVoicePrompt="1.8"
  6117. show = "-1" >
  6118. <productMenu id="protocol"
  6119. type="2" >
  6120. </productMenu>
  6121. <productMenu id="ota"
  6122. type="0" >
  6123. <otaLanguages>
  6124. <otaLanguage
  6125. id="0"
  6126. name="English"
  6127. package="0"
  6128. />
  6129. <otaLanguage
  6130. id="0"
  6131. name="Français"
  6132. package="1"
  6133. />
  6134. <otaLanguage
  6135. id="0"
  6136. name="Español"
  6137. package="2"
  6138. />
  6139. <otaLanguage
  6140. id="0"
  6141. name="Italiano"
  6142. package="3"
  6143. />
  6144. <otaLanguage
  6145. id="0"
  6146. name="Deutsch"
  6147. package="4"
  6148. />
  6149. <otaLanguage
  6150. id="0"
  6151. name="Nederlands"
  6152. package="5"
  6153. />
  6154. <otaLanguage
  6155. id="0"
  6156. name="Русский"
  6157. package="6"
  6158. />
  6159. <otaLanguage
  6160. id="0"
  6161. name="简体中文"
  6162. package="7"
  6163. />
  6164. <otaLanguage
  6165. id="0"
  6166. name="한국어"
  6167. package="8"
  6168. />
  6169. <otaLanguage
  6170. id="0"
  6171. name="日本語"
  6172. package="9"
  6173. />
  6174. <otaLanguage
  6175. id="0"
  6176. name="Suomi"
  6177. package="10"
  6178. />
  6179. <otaLanguage
  6180. id="0"
  6181. name="Polski"
  6182. package="11"
  6183. />
  6184. </otaLanguages>
  6185. <otaPackages>
  6186. <package
  6187. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  6188. size="5183988"
  6189. />
  6190. <package
  6191. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  6192. size="5183988"
  6193. />
  6194. <package
  6195. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  6196. size="5183988"
  6197. />
  6198. <package
  6199. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  6200. size="5183988"
  6201. />
  6202. <package
  6203. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  6204. size="5183988"
  6205. />
  6206. <package
  6207. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  6208. size="5183988"
  6209. />
  6210. <package
  6211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  6212. size="5183988"
  6213. />
  6214. <package
  6215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  6216. size="5183988"
  6217. />
  6218. <package
  6219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  6220. size="5183988"
  6221. />
  6222. <package
  6223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  6224. size="5183988"
  6225. />
  6226. <package
  6227. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  6228. size="5183988"
  6229. />
  6230. <package
  6231. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  6232. size="5183988"
  6233. />
  6234. </otaPackages>
  6235. </productMenu>
  6236. <productMenu id="sip"
  6237. type="1" >
  6238. </productMenu>
  6239. <productMenu id="meshIntercom+"
  6240. type="3"
  6241. url="2" >
  6242. </productMenu>
  6243. <productMenu id="waveIntercom"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="bluetoothIntercom"
  6247. type="1"
  6248. url="2" >
  6249. </productMenu>
  6250. <productMenu id="bluetoothIntercomGrouping"
  6251. type="0" >
  6252. </productMenu>
  6253. <productMenu id="fmradio"
  6254. type="1"
  6255. url="1" >
  6256. </productMenu>
  6257. <productMenu id="phone"
  6258. type="1" >
  6259. </productMenu>
  6260. <productMenu id="music"
  6261. type="1" >
  6262. </productMenu>
  6263. <productMenu id="musicSharing"
  6264. type="0" >
  6265. </productMenu>
  6266. <productMenu id="deviceSetting"
  6267. type="1"
  6268. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  6269. </productMenu>
  6270. <productMenu id="quickGuide"
  6271. type="0"
  6272. url=""
  6273. size="1.12MB" >
  6274. </productMenu>
  6275. <productMenu id="userGuide"
  6276. type="0"
  6277. url=""
  6278. size="2.0MB" >
  6279. </productMenu>
  6280. <productMenu id="videoGuide"
  6281. type="0"
  6282. url=""
  6283. size="3.41MB" >
  6284. </productMenu>
  6285. <productMenu id="volume"
  6286. type="16" >
  6287. </productMenu>
  6288. <productMenu id="soundMode"
  6289. type="0" >
  6290. </productMenu>
  6291. <productMenu id="battery"
  6292. type="1" >
  6293. </productMenu>
  6294. <productID id="6A08"
  6295. />
  6296. <productGroupable type="0"
  6297. />
  6298. </product>
  6299. <product id="SRL3"
  6300. name="SRL3"
  6301. series="SRL"
  6302. latestVersion="1.5"
  6303. show = "1" >
  6304. <productMenu id="protocol"
  6305. type="2" >
  6306. </productMenu>
  6307. <productMenu id="alexa"
  6308. type="0" >
  6309. </productMenu>
  6310. <productMenu id="ota"
  6311. type="0" >
  6312. </productMenu>
  6313. <productMenu id="wa"
  6314. type="1" >
  6315. </productMenu>
  6316. <productMenu id="sip"
  6317. type="1" >
  6318. </productMenu>
  6319. <productMenu id="meshIntercom"
  6320. type="30" >
  6321. </productMenu>
  6322. <productMenu id="meshIntercom+"
  6323. type="3"
  6324. url="2" >
  6325. <productMenuType version="1.3.9"
  6326. type="2"
  6327. />
  6328. </productMenu>
  6329. <productMenu id="waveIntercom"
  6330. type="1" >
  6331. <productMenuType version="1.4.9"
  6332. type="0"
  6333. />
  6334. </productMenu>
  6335. <productMenu id="bluetoothIntercom"
  6336. type="1" >
  6337. </productMenu>
  6338. <productMenu id="phone"
  6339. type="1" >
  6340. </productMenu>
  6341. <productMenu id="music"
  6342. type="1" >
  6343. </productMenu>
  6344. <productMenu id="fmradio"
  6345. type="1" >
  6346. </productMenu>
  6347. <productMenu id="deviceSetting"
  6348. type="1"
  6349. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6350. <productMenuURL version="1.3"
  6351. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6352. />
  6353. </productMenu>
  6354. <productMenu id="quickGuide"
  6355. type="0"
  6356. url=""
  6357. size="344KB" >
  6358. </productMenu>
  6359. <productMenu id="userGuide"
  6360. type="1"
  6361. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.4.1_en_260831.pdf"
  6362. size="3.41MB" >
  6363. </productMenu>
  6364. <productMenu id="connectGuide"
  6365. type="1"
  6366. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6367. size="1.12MB" >
  6368. </productMenu>
  6369. <productMenu id="volume"
  6370. type="11" >
  6371. </productMenu>
  6372. <productMenu id="battery"
  6373. type="1" >
  6374. </productMenu>
  6375. <productID id="3219"
  6376. />
  6377. <productGroupable type="0"
  6378. />
  6379. </product>
  6380. <product id="SRL_Mesh"
  6381. name="SRL-Mesh"
  6382. series="SRL"
  6383. latestVersion="1.7.1"
  6384. show = "1" >
  6385. <productMenu id="protocol"
  6386. type="2" >
  6387. </productMenu>
  6388. <productMenu id="alexa"
  6389. type="0" >
  6390. </productMenu>
  6391. <productMenu id="ota"
  6392. type="0" >
  6393. </productMenu>
  6394. <productMenu id="wa"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="sip"
  6398. type="1" >
  6399. </productMenu>
  6400. <productMenu id="meshIntercom"
  6401. type="30" >
  6402. <productMenuType version="1.1.1"
  6403. type="20"
  6404. />
  6405. </productMenu>
  6406. <productMenu id="meshIntercom+"
  6407. type="3"
  6408. url="2" >
  6409. <productMenuType version="1.5.9"
  6410. type="2"
  6411. />
  6412. <productMenuURL version="1.1.1"
  6413. url="0"
  6414. />
  6415. </productMenu>
  6416. <productMenu id="waveIntercom"
  6417. type="1" >
  6418. <productMenuType version="1.6.9"
  6419. type="0"
  6420. />
  6421. </productMenu>
  6422. <productMenu id="bluetoothIntercom"
  6423. type="1" >
  6424. </productMenu>
  6425. <productMenu id="phone"
  6426. type="1" >
  6427. </productMenu>
  6428. <productMenu id="music"
  6429. type="1" >
  6430. </productMenu>
  6431. <productMenu id="fmradio"
  6432. type="1" >
  6433. </productMenu>
  6434. <productMenu id="deviceSetting"
  6435. type="1"
  6436. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6437. <productMenuURL version="1.5"
  6438. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6439. />
  6440. <productMenuURL version="1.1.1"
  6441. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6442. />
  6443. <productMenuURL version="1.0.3"
  6444. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6445. />
  6446. </productMenu>
  6447. <productMenu id="quickGuide"
  6448. type="0"
  6449. url=""
  6450. size="344KB" >
  6451. </productMenu>
  6452. <productMenu id="userGuide"
  6453. type="1"
  6454. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  6455. size="3.41MB" >
  6456. </productMenu>
  6457. <productMenu id="connectGuide"
  6458. type="1"
  6459. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6460. size="1.12MB" >
  6461. </productMenu>
  6462. <productMenu id="volume"
  6463. type="11" >
  6464. </productMenu>
  6465. <productMenu id="battery"
  6466. type="1" >
  6467. </productMenu>
  6468. <productID id="3216"
  6469. />
  6470. <productGroupable type="0"
  6471. />
  6472. </product>
  6473. <product id="SRL_EXT"
  6474. name="SRL-EXT"
  6475. series="SRL"
  6476. latestVersion="1.7.1"
  6477. show = "1" >
  6478. <productMenu id="protocol"
  6479. type="2" >
  6480. </productMenu>
  6481. <productMenu id="alexa"
  6482. type="0" >
  6483. </productMenu>
  6484. <productMenu id="ota"
  6485. type="0" >
  6486. </productMenu>
  6487. <productMenu id="wa"
  6488. type="0" >
  6489. </productMenu>
  6490. <productMenu id="sip"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="meshIntercom"
  6494. type="30" >
  6495. <productMenuType version="1.1.1"
  6496. type="20"
  6497. />
  6498. </productMenu>
  6499. <productMenu id="meshIntercom+"
  6500. type="3"
  6501. url="2" >
  6502. <productMenuType version="1.5.9"
  6503. type="2"
  6504. />
  6505. <productMenuURL version="1.1.1"
  6506. url="0"
  6507. />
  6508. </productMenu>
  6509. <productMenu id="waveIntercom"
  6510. type="1" >
  6511. <productMenuType version="1.6.9"
  6512. type="0"
  6513. />
  6514. </productMenu>
  6515. <productMenu id="bluetoothIntercom"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="phone"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="music"
  6522. type="1" >
  6523. </productMenu>
  6524. <productMenu id="fmradio"
  6525. type="1" >
  6526. </productMenu>
  6527. <productMenu id="deviceSetting"
  6528. type="1"
  6529. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6530. <productMenuURL version="1.5"
  6531. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6532. />
  6533. <productMenuURL version="1.1.1"
  6534. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6535. />
  6536. <productMenuURL version="1.0.3"
  6537. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6538. />
  6539. </productMenu>
  6540. <productMenu id="quickGuide"
  6541. type="0"
  6542. url=""
  6543. size="344KB" >
  6544. </productMenu>
  6545. <productMenu id="userGuide"
  6546. type="1"
  6547. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  6548. size="3.41MB" >
  6549. </productMenu>
  6550. <productMenu id="connectGuide"
  6551. type="1"
  6552. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6553. size="1.12MB" >
  6554. </productMenu>
  6555. <productMenu id="volume"
  6556. type="11" >
  6557. </productMenu>
  6558. <productMenu id="battery"
  6559. type="1" >
  6560. </productMenu>
  6561. <productID id="3212"
  6562. />
  6563. <productGroupable type="0"
  6564. />
  6565. </product>
  6566. <product id="SRL2"
  6567. name="SRL2"
  6568. series="SRL"
  6569. latestVersion="1.0.9"
  6570. show = "1" >
  6571. <productMenu id="protocol"
  6572. type="0">
  6573. </productMenu>
  6574. <productMenu id="sip"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="bluetoothIntercom"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="intercomSetting"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="phone"
  6584. type="2" >
  6585. </productMenu>
  6586. <productMenu id="fmradio"
  6587. type="3" >
  6588. </productMenu>
  6589. <productMenu id="deviceSetting"
  6590. type="1"
  6591. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6592. </productMenu>
  6593. <productMenu id="quickGuide"
  6594. type="1"
  6595. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  6596. size="846KB" >
  6597. </productMenu>
  6598. <productMenu id="userGuide"
  6599. type="1"
  6600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  6601. size="1.18MB" >
  6602. </productMenu>
  6603. <productMenu id="connectGuide"
  6604. type="1"
  6605. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6606. size="1.12MB" >
  6607. </productMenu>
  6608. <productID id="4530"
  6609. />
  6610. <productGroupable type="1"
  6611. />
  6612. </product>
  6613. <product id="Neotec2"
  6614. name="SRL Neotec2"
  6615. series="SRL"
  6616. latestVersion="1.1.5"
  6617. show = "1" >
  6618. <productMenu id="protocol"
  6619. type="0">
  6620. </productMenu>
  6621. <productMenu id="sip"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="bluetoothIntercom"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="intercomSetting"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="phone"
  6631. type="2" >
  6632. </productMenu>
  6633. <productMenu id="fmradio"
  6634. type="3" >
  6635. </productMenu>
  6636. <productMenu id="deviceSetting"
  6637. type="1"
  6638. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6639. </productMenu>
  6640. <productMenu id="quickGuide"
  6641. type="0"
  6642. url=""
  6643. size="796KB" >
  6644. </productMenu>
  6645. <productMenu id="userGuide"
  6646. type="1"
  6647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  6648. size="1.90MB" >
  6649. </productMenu>
  6650. <productMenu id="connectGuide"
  6651. type="1"
  6652. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6653. size="1.12MB" >
  6654. </productMenu>
  6655. <productID id="4510"
  6656. />
  6657. <productGroupable type="1"
  6658. />
  6659. </product>
  6660. <product id="MultiComNeo"
  6661. name="MultiCom Neo"
  6662. series="MultiCom"
  6663. latestVersion="1.0"
  6664. latestVersionVoicePrompt="1.6"
  6665. show = "-1" >
  6666. <productMenu id="protocol"
  6667. type="2" >
  6668. </productMenu>
  6669. <productMenu id="ota"
  6670. type="0" >
  6671. <otaPackages>
  6672. <package
  6673. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  6674. size="2945812"
  6675. />
  6676. </otaPackages>
  6677. </productMenu>
  6678. <productMenu id="meshIntercom+"
  6679. type="3"
  6680. url="2" >
  6681. </productMenu>
  6682. <productMenu id="waveIntercom"
  6683. type="1" >
  6684. </productMenu>
  6685. <productMenu id="phone"
  6686. type="1" >
  6687. </productMenu>
  6688. <productMenu id="music"
  6689. type="1" >
  6690. </productMenu>
  6691. <productMenu id="musicSharing"
  6692. type="0" >
  6693. </productMenu>
  6694. <productMenu id="deviceSetting"
  6695. type="1"
  6696. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  6697. </productMenu>
  6698. <productMenu id="quickGuide"
  6699. type="0"
  6700. url=""
  6701. size="1.12MB" >
  6702. </productMenu>
  6703. <productMenu id="userGuide"
  6704. type="1"
  6705. url=""
  6706. size="2.0MB" >
  6707. </productMenu>
  6708. <productMenu id="videoGuide"
  6709. type="0"
  6710. url=""
  6711. size="3.41MB" >
  6712. </productMenu>
  6713. <productMenu id="connectGuide"
  6714. type="0"
  6715. url=""
  6716. size="1.12MB" >
  6717. </productMenu>
  6718. <productMenu id="volume"
  6719. type="12" >
  6720. </productMenu>
  6721. <productMenu id="volume+"
  6722. type="2"
  6723. url="0x2000" >
  6724. </productMenu>
  6725. <productMenu id="battery"
  6726. type="1" >
  6727. </productMenu>
  6728. <productID id="685F"
  6729. />
  6730. <productGroupable type="0"
  6731. />
  6732. </product>
  6733. <product id="SPIDERST2ANC"
  6734. name="SPIDER ST2 ANC"
  6735. series="SPIDER"
  6736. latestVersion="0.5.1"
  6737. latestVersionVoicePrompt="0.2"
  6738. latestVersionMesh="0.8"
  6739. show = "-1" >
  6740. <productMenu id="protocol"
  6741. type="2" >
  6742. </productMenu>
  6743. <productMenu id="ota"
  6744. type="0" >
  6745. <otaPackages>
  6746. <package
  6747. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  6748. size="2945812"
  6749. />
  6750. </otaPackages>
  6751. </productMenu>
  6752. <productMenu id="wa"
  6753. type="0" >
  6754. </productMenu>
  6755. <productMenu id="led"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="meshIntercom"
  6759. type="30" >
  6760. </productMenu>
  6761. <productMenu id="fmradio"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="phone"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="music"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="musicSharing"
  6771. type="0" >
  6772. </productMenu>
  6773. <productMenu id="deviceSetting"
  6774. type="1"
  6775. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  6776. </productMenu>
  6777. <productMenu id="quickGuide"
  6778. type="1"
  6779. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  6780. size="1.12MB" >
  6781. </productMenu>
  6782. <productMenu id="userGuide"
  6783. type="1"
  6784. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  6785. size="2.0MB" >
  6786. </productMenu>
  6787. <productMenu id="videoGuide"
  6788. type="1"
  6789. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6790. size="3.41MB" >
  6791. </productMenu>
  6792. <productMenu id="volume"
  6793. type="12" >
  6794. </productMenu>
  6795. <productMenu id="battery"
  6796. type="1" >
  6797. </productMenu>
  6798. <productID id="6A00"
  6799. />
  6800. <productGroupable type="0"
  6801. />
  6802. </product>
  6803. <product id="SPIDER_ST1"
  6804. name="SPIDER ST1"
  6805. series="SPIDER"
  6806. latestVersion="2.5.3"
  6807. latestVersionVoicePrompt="1.6"
  6808. show = "1" >
  6809. <productMenu id="protocol"
  6810. type="2" >
  6811. </productMenu>
  6812. <productMenu id="alexa"
  6813. type="0" >
  6814. </productMenu>
  6815. <productMenu id="ota"
  6816. type="2" >
  6817. <productMenuType version="2.1.9"
  6818. type="0"
  6819. />
  6820. <otaPackages>
  6821. <package
  6822. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  6823. size="2945812"
  6824. />
  6825. </otaPackages>
  6826. </productMenu>
  6827. <productMenu id="wa"
  6828. type="0" >
  6829. </productMenu>
  6830. <productMenu id="meshIntercom"
  6831. type="30" >
  6832. <productMenuType version="2.1.1"
  6833. type="20"
  6834. />
  6835. </productMenu>
  6836. <productMenu id="meshIntercom+"
  6837. type="3"
  6838. url="2" >
  6839. <productMenuType version="2.2.9"
  6840. type="2"
  6841. />
  6842. <productMenuURL version="2.1.1"
  6843. url="0"
  6844. />
  6845. </productMenu>
  6846. <productMenu id="waveIntercom"
  6847. type="1" >
  6848. <productMenuType version="2.3.9"
  6849. type="0"
  6850. />
  6851. </productMenu>
  6852. <productMenu id="phone"
  6853. type="1" >
  6854. </productMenu>
  6855. <productMenu id="music"
  6856. type="1" >
  6857. </productMenu>
  6858. <productMenu id="musicSharing"
  6859. type="0" >
  6860. </productMenu>
  6861. <productMenu id="deviceSetting"
  6862. type="1"
  6863. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6864. <productMenuURL version="2.4.9"
  6865. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6866. />
  6867. <productMenuURL version="2.2.2"
  6868. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6869. />
  6870. <productMenuURL version="2.1.1"
  6871. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6872. />
  6873. </productMenu>
  6874. <productMenu id="quickGuide"
  6875. type="0"
  6876. url=""
  6877. size="1.12MB" >
  6878. </productMenu>
  6879. <productMenu id="userGuide"
  6880. type="1"
  6881. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6882. size="2.0MB" >
  6883. </productMenu>
  6884. <productMenu id="videoGuide"
  6885. type="1"
  6886. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6887. size="3.41MB" >
  6888. </productMenu>
  6889. <productMenu id="connectGuide"
  6890. type="1"
  6891. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6892. size="1.12MB" >
  6893. </productMenu>
  6894. <productMenu id="volume"
  6895. type="12" >
  6896. </productMenu>
  6897. <productMenu id="volume+"
  6898. type="2"
  6899. url="0x2000" >
  6900. </productMenu>
  6901. <productMenu id="battery"
  6902. type="1" >
  6903. </productMenu>
  6904. <productID id="6800"
  6905. />
  6906. <productGroupable type="0"
  6907. />
  6908. </product>
  6909. <product id="SPIDER_ST1"
  6910. name="SPIDER ST1"
  6911. series="SPIDER"
  6912. latestVersion="1.2.2"
  6913. show = "-1" >
  6914. <productMenu id="protocol"
  6915. type="2" >
  6916. </productMenu>
  6917. <productMenu id="alexa"
  6918. type="0" >
  6919. </productMenu>
  6920. <productMenu id="ota"
  6921. type="0" >
  6922. </productMenu>
  6923. <productMenu id="wa"
  6924. type="0" >
  6925. </productMenu>
  6926. <productMenu id="meshIntercom"
  6927. type="20" >
  6928. </productMenu>
  6929. <productMenu id="phone"
  6930. type="1" >
  6931. </productMenu>
  6932. <productMenu id="music"
  6933. type="1" >
  6934. </productMenu>
  6935. <productMenu id="deviceSetting"
  6936. type="1"
  6937. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6938. </productMenu>
  6939. <productMenu id="quickGuide"
  6940. type="0"
  6941. url=""
  6942. size="1.12MB" >
  6943. </productMenu>
  6944. <productMenu id="userGuide"
  6945. type="1"
  6946. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6947. size="2.0MB" >
  6948. </productMenu>
  6949. <productMenu id="videoGuide"
  6950. type="1"
  6951. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6952. size="3.41MB" >
  6953. </productMenu>
  6954. <productMenu id="volume"
  6955. type="13" >
  6956. <productMenuType version="1.1.6"
  6957. type="14"/>
  6958. </productMenu>
  6959. <productMenu id="battery"
  6960. type="1" >
  6961. </productMenu>
  6962. <productID id="6510"
  6963. />
  6964. <productGroupable type="0"
  6965. />
  6966. </product>
  6967. <product id="SPIDER_RT1"
  6968. name="SPIDER RT1"
  6969. series="SPIDER"
  6970. latestVersion="2.5.3"
  6971. latestVersionVoicePrompt="1.6"
  6972. show = "1" >
  6973. <productMenu id="protocol"
  6974. type="2" >
  6975. </productMenu>
  6976. <productMenu id="alexa"
  6977. type="0" >
  6978. </productMenu>
  6979. <productMenu id="ota"
  6980. type="2" >
  6981. <productMenuType version="2.1.9"
  6982. type="0"
  6983. />
  6984. <otaPackages>
  6985. <package
  6986. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6987. size="2945812"
  6988. />
  6989. </otaPackages>
  6990. </productMenu>
  6991. <productMenu id="wa"
  6992. type="0" >
  6993. </productMenu>
  6994. <productMenu id="meshIntercom"
  6995. type="30" >
  6996. <productMenuType version="2.1.1"
  6997. type="20"
  6998. />
  6999. </productMenu>
  7000. <productMenu id="meshIntercom+"
  7001. type="3"
  7002. url="2" >
  7003. <productMenuType version="2.2.9"
  7004. type="2"
  7005. />
  7006. <productMenuURL version="2.1.1"
  7007. url="0"
  7008. />
  7009. </productMenu>
  7010. <productMenu id="waveIntercom"
  7011. type="1" >
  7012. <productMenuType version="2.3.9"
  7013. type="0"
  7014. />
  7015. </productMenu>
  7016. <productMenu id="phone"
  7017. type="1" >
  7018. </productMenu>
  7019. <productMenu id="music"
  7020. type="1" >
  7021. </productMenu>
  7022. <productMenu id="musicSharing"
  7023. type="0" >
  7024. </productMenu>
  7025. <productMenu id="deviceSetting"
  7026. type="1"
  7027. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  7028. <productMenuURL version="2.4.9"
  7029. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  7030. />
  7031. <productMenuURL version="2.2.2"
  7032. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7033. />
  7034. <productMenuURL version="2.1.1"
  7035. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  7036. />
  7037. </productMenu>
  7038. <productMenu id="quickGuide"
  7039. type="0"
  7040. url=""
  7041. size="1.12MB" >
  7042. </productMenu>
  7043. <productMenu id="userGuide"
  7044. type="1"
  7045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  7046. size="2.0MB" >
  7047. </productMenu>
  7048. <productMenu id="videoGuide"
  7049. type="1"
  7050. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  7051. size="3.41MB" >
  7052. </productMenu>
  7053. <productMenu id="connectGuide"
  7054. type="1"
  7055. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7056. size="1.12MB" >
  7057. </productMenu>
  7058. <productMenu id="volume"
  7059. type="12" >
  7060. </productMenu>
  7061. <productMenu id="volume+"
  7062. type="2"
  7063. url="0x2000" >
  7064. </productMenu>
  7065. <productMenu id="battery"
  7066. type="1" >
  7067. </productMenu>
  7068. <productID id="6810"
  7069. />
  7070. <productGroupable type="0"
  7071. />
  7072. </product>
  7073. <product id="SPIDER_RT1"
  7074. name="SPIDER RT1"
  7075. series="SPIDER"
  7076. latestVersion="1.2.2"
  7077. show = "-1" >
  7078. <productMenu id="protocol"
  7079. type="2" >
  7080. </productMenu>
  7081. <productMenu id="alexa"
  7082. type="0" >
  7083. </productMenu>
  7084. <productMenu id="ota"
  7085. type="0" >
  7086. </productMenu>
  7087. <productMenu id="wa"
  7088. type="0" >
  7089. </productMenu>
  7090. <productMenu id="meshIntercom"
  7091. type="20" >
  7092. </productMenu>
  7093. <productMenu id="phone"
  7094. type="1" >
  7095. </productMenu>
  7096. <productMenu id="music"
  7097. type="1" >
  7098. </productMenu>
  7099. <productMenu id="deviceSetting"
  7100. type="1"
  7101. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  7102. </productMenu>
  7103. <productMenu id="quickGuide"
  7104. type="0"
  7105. url=""
  7106. size="1.32MB" >
  7107. </productMenu>
  7108. <productMenu id="userGuide"
  7109. type="1"
  7110. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  7111. size="1.79MB" >
  7112. </productMenu>
  7113. <productMenu id="videoGuide"
  7114. type="1"
  7115. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  7116. size="3.41MB" >
  7117. </productMenu>
  7118. <productMenu id="volume"
  7119. type="13" >
  7120. <productMenuType version="1.1.6"
  7121. type="14"/>
  7122. </productMenu>
  7123. <productMenu id="battery"
  7124. type="1" >
  7125. </productMenu>
  7126. <productID id="6500"
  7127. />
  7128. <productGroupable type="0"
  7129. />
  7130. </product>
  7131. <product id="30K"
  7132. name="30K"
  7133. series="30"
  7134. latestVersion="4.5.1"
  7135. show = "1" >
  7136. <productMenu id="protocol"
  7137. type="2" >
  7138. </productMenu>
  7139. <productMenu id="alexa"
  7140. type="0" >
  7141. </productMenu>
  7142. <productMenu id="wa"
  7143. type="1" >
  7144. </productMenu>
  7145. <productMenu id="sip"
  7146. type="1" >
  7147. </productMenu>
  7148. <productMenu id="meshIntercom"
  7149. type="30" >
  7150. <productMenuType version="4.0.4"
  7151. type="20"
  7152. />
  7153. </productMenu>
  7154. <productMenu id="meshIntercom+"
  7155. type="3"
  7156. url="2" >
  7157. <productMenuType version="4.3.9"
  7158. type="2"
  7159. />
  7160. <productMenuURL version="4.0.4"
  7161. url="0"
  7162. />
  7163. </productMenu>
  7164. <productMenu id="waveIntercom"
  7165. type="1" >
  7166. <productMenuType version="4.4.9"
  7167. type="0"
  7168. />
  7169. </productMenu>
  7170. <productMenu id="bluetoothIntercom"
  7171. type="1" >
  7172. </productMenu>
  7173. <productMenu id="phone"
  7174. type="1" >
  7175. </productMenu>
  7176. <productMenu id="music"
  7177. type="1" >
  7178. </productMenu>
  7179. <productMenu id="fmradio"
  7180. type="1" >
  7181. </productMenu>
  7182. <productMenu id="deviceSetting"
  7183. type="1"
  7184. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  7185. <productMenuURL version="4.3"
  7186. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  7187. />
  7188. <productMenuURL version="4.2"
  7189. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  7190. />
  7191. <productMenuURL version="4.0.4"
  7192. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  7193. />
  7194. </productMenu>
  7195. <productMenu id="quickGuide"
  7196. type="0"
  7197. url=""
  7198. size="934KB" >
  7199. </productMenu>
  7200. <productMenu id="userGuide"
  7201. type="1"
  7202. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  7203. size="1.14MB" >
  7204. </productMenu>
  7205. <productMenu id="connectGuide"
  7206. type="1"
  7207. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  7208. size="1.12MB" >
  7209. </productMenu>
  7210. <productMenu id="volume"
  7211. type="11" >
  7212. </productMenu>
  7213. <productMenu id="battery"
  7214. type="1" >
  7215. </productMenu>
  7216. <productID id="3211"
  7217. />
  7218. <productGroupable type="0"
  7219. />
  7220. </product>
  7221. <product id="30K"
  7222. name="30K"
  7223. series="30"
  7224. latestVersion="3.5"
  7225. show = "-1" >
  7226. <productMenu id="protocol"
  7227. type="1"
  7228. url="0">
  7229. </productMenu>
  7230. <productMenu id="wa"
  7231. type="7" >
  7232. </productMenu>
  7233. <productMenu id="sip"
  7234. type="1" >
  7235. </productMenu>
  7236. <productMenu id="meshIntercom"
  7237. type="20" >
  7238. <productMenuType version="2.9.9"
  7239. type="10"
  7240. />
  7241. </productMenu>
  7242. <productMenu id="meshIntercom+"
  7243. type="3"
  7244. url="2" >
  7245. <productMenuType version="3.4.9"
  7246. type="2"
  7247. />
  7248. <productMenuType version="2.9.9"
  7249. type="1"
  7250. />
  7251. <productMenuURL version="3.3.1"
  7252. url="0"
  7253. />
  7254. </productMenu>
  7255. <productMenu id="bluetoothIntercom"
  7256. type="1" >
  7257. </productMenu>
  7258. <productMenu id="phone"
  7259. type="1" >
  7260. </productMenu>
  7261. <productMenu id="music"
  7262. type="1" >
  7263. </productMenu>
  7264. <productMenu id="fmradio"
  7265. type="1" >
  7266. </productMenu>
  7267. <productMenu id="deviceSetting"
  7268. type="1"
  7269. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  7270. <productMenuURL version="3.4.9"
  7271. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  7272. />
  7273. <productMenuURL version="3.3.1"
  7274. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  7275. />
  7276. <productMenuURL version="3.0.1"
  7277. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  7278. />
  7279. <productMenuURL version="2.3.1"
  7280. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  7281. />
  7282. <productMenuURL version="2.0"
  7283. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7284. />
  7285. <productMenuURL version="1.0.3"
  7286. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  7287. />
  7288. </productMenu>
  7289. <productMenu id="quickGuide"
  7290. type="0"
  7291. url=""
  7292. size="1.06MB" >
  7293. </productMenu>
  7294. <productMenu id="userGuide"
  7295. type="1"
  7296. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  7297. size="3.15MB" >
  7298. </productMenu>
  7299. <productMenu id="volume"
  7300. type="1" >
  7301. </productMenu>
  7302. <productID id="3110"
  7303. />
  7304. <productGroupable type="0"
  7305. />
  7306. </product>
  7307. <product id="FURY"
  7308. name="FURY"
  7309. series="Helmet"
  7310. latestVersion="1.0"
  7311. show = "-1" >
  7312. <productMenu id="protocol"
  7313. type="2" >
  7314. </productMenu>
  7315. <productMenu id="alexa"
  7316. type="0" >
  7317. </productMenu>
  7318. <productMenu id="ota"
  7319. type="0" >
  7320. </productMenu>
  7321. <productMenu id="wa"
  7322. type="0" >
  7323. </productMenu>
  7324. <productMenu id="meshIntercom"
  7325. type="20" >
  7326. </productMenu>
  7327. <productMenu id="phone"
  7328. type="1" >
  7329. </productMenu>
  7330. <productMenu id="music"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="fmradio"
  7334. type="1" >
  7335. </productMenu>
  7336. <productMenu id="deviceSetting"
  7337. type="1"
  7338. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  7339. </productMenu>
  7340. <productMenu id="quickGuide"
  7341. type="1"
  7342. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7343. size="1.12MB" >
  7344. </productMenu>
  7345. <productMenu id="userGuide"
  7346. type="1"
  7347. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7348. size="2.0MB" >
  7349. </productMenu>
  7350. <productMenu id="volume"
  7351. type="13" >
  7352. </productMenu>
  7353. <productMenu id="battery"
  7354. type="1" >
  7355. </productMenu>
  7356. <productID id="5552"
  7357. />
  7358. <productGroupable type="0"
  7359. />
  7360. </product>
  7361. <product id="MomentumM"
  7362. name="Momentum EVO"
  7363. series="Helmet"
  7364. latestVersion="2.1.2"
  7365. show = "1" >
  7366. <productMenu id="protocol"
  7367. type="1"
  7368. url="0">
  7369. </productMenu>
  7370. <productMenu id="wa"
  7371. type="3" >
  7372. </productMenu>
  7373. <productMenu id="sip"
  7374. type="1" >
  7375. </productMenu>
  7376. <productMenu id="meshIntercom"
  7377. type="20" >
  7378. <productMenuType version="1.9.9"
  7379. type="10"
  7380. />
  7381. </productMenu>
  7382. <productMenu id="bluetoothIntercom"
  7383. type="1" >
  7384. </productMenu>
  7385. <productMenu id="phone"
  7386. type="1" >
  7387. </productMenu>
  7388. <productMenu id="music"
  7389. type="1" >
  7390. </productMenu>
  7391. <productMenu id="fmradio"
  7392. type="1" >
  7393. </productMenu>
  7394. <productMenu id="deviceSetting"
  7395. type="1"
  7396. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  7397. <productMenuURL version="1.0.1"
  7398. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  7399. />
  7400. </productMenu>
  7401. <productMenu id="quickGuide"
  7402. type="1"
  7403. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  7404. size="1.06MB" >
  7405. </productMenu>
  7406. <productMenu id="userGuide"
  7407. type="1"
  7408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  7409. size="3.15MB" >
  7410. </productMenu>
  7411. <productMenu id="connectGuide"
  7412. type="1"
  7413. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  7414. size="1.12MB" >
  7415. </productMenu>
  7416. <productMenu id="volume"
  7417. type="2" >
  7418. </productMenu>
  7419. <productID id="3116"
  7420. />
  7421. <productGroupable type="0"
  7422. />
  7423. </product>
  7424. <product id="Momentum"
  7425. name="Momentum"
  7426. series="Helmet"
  7427. latestVersion="1.0.9"
  7428. show = "1" >
  7429. <productMenu id="protocol"
  7430. type="0">
  7431. </productMenu>
  7432. <productMenu id="sip"
  7433. type="1" >
  7434. </productMenu>
  7435. <productMenu id="bluetoothIntercom"
  7436. type="1" >
  7437. </productMenu>
  7438. <productMenu id="intercomSetting"
  7439. type="1" >
  7440. </productMenu>
  7441. <productMenu id="phone"
  7442. type="2" >
  7443. </productMenu>
  7444. <productMenu id="fmradio"
  7445. type="3" >
  7446. </productMenu>
  7447. <productMenu id="deviceSetting"
  7448. type="1"
  7449. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7450. </productMenu>
  7451. <productMenu id="quickGuide"
  7452. type="1"
  7453. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  7454. size="796KB" >
  7455. </productMenu>
  7456. <productMenu id="userGuide"
  7457. type="1"
  7458. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  7459. size="1.90MB" >
  7460. </productMenu>
  7461. <productMenu id="connectGuide"
  7462. type="1"
  7463. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7464. size="1.12MB" >
  7465. </productMenu>
  7466. <productID id="4310"
  7467. />
  7468. <productGroupable type="1"
  7469. />
  7470. </product>
  7471. <product id="Momentum_Pro"
  7472. name="Momentum Pro"
  7473. series="Helmet"
  7474. latestVersion="1.0.6"
  7475. show = "1" >
  7476. <productMenu id="protocol"
  7477. type="0">
  7478. </productMenu>
  7479. <productMenu id="sip"
  7480. type="1" >
  7481. </productMenu>
  7482. <productMenu id="bluetoothIntercom"
  7483. type="1" >
  7484. </productMenu>
  7485. <productMenu id="intercomSetting"
  7486. type="1" >
  7487. </productMenu>
  7488. <productMenu id="phone"
  7489. type="2" >
  7490. </productMenu>
  7491. <productMenu id="fmradio"
  7492. type="3" >
  7493. </productMenu>
  7494. <productMenu id="deviceSetting"
  7495. type="1"
  7496. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7497. </productMenu>
  7498. <productMenu id="quickGuide"
  7499. type="1"
  7500. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  7501. size="796KB" >
  7502. </productMenu>
  7503. <productMenu id="userGuide"
  7504. type="1"
  7505. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  7506. size="1.90MB" >
  7507. </productMenu>
  7508. <productMenu id="connectGuide"
  7509. type="1"
  7510. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7511. size="1.12MB" >
  7512. </productMenu>
  7513. <productID id="4330"
  7514. />
  7515. <productGroupable type="1"
  7516. />
  7517. </product>
  7518. <product id="Momentum_INC"
  7519. name="Momentum INC"
  7520. series="Helmet"
  7521. latestVersion="1.0.7"
  7522. show = "1" >
  7523. <productMenu id="protocol"
  7524. type="0">
  7525. </productMenu>
  7526. <productMenu id="sip"
  7527. type="1" >
  7528. </productMenu>
  7529. <productMenu id="bluetoothIntercom"
  7530. type="1" >
  7531. </productMenu>
  7532. <productMenu id="intercomSetting"
  7533. type="1" >
  7534. </productMenu>
  7535. <productMenu id="phone"
  7536. type="2" >
  7537. </productMenu>
  7538. <productMenu id="fmradio"
  7539. type="3" >
  7540. </productMenu>
  7541. <productMenu id="deviceSetting"
  7542. type="1"
  7543. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7544. </productMenu>
  7545. <productMenu id="quickGuide"
  7546. type="1"
  7547. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  7548. size="794KB" >
  7549. </productMenu>
  7550. <productMenu id="userGuide"
  7551. type="1"
  7552. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  7553. size="1.53MB" >
  7554. </productMenu>
  7555. <productMenu id="connectGuide"
  7556. type="1"
  7557. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7558. size="1.12MB" >
  7559. </productMenu>
  7560. <productID id="4410"
  7561. />
  7562. <productGroupable type="1"
  7563. />
  7564. </product>
  7565. <product id="Momentum_INCP"
  7566. name="Momentum INC Pro"
  7567. series="Helmet"
  7568. latestVersion="1.0.4"
  7569. show = "1" >
  7570. <productMenu id="protocol"
  7571. type="0">
  7572. </productMenu>
  7573. <productMenu id="sip"
  7574. type="1" >
  7575. </productMenu>
  7576. <productMenu id="bluetoothIntercom"
  7577. type="1" >
  7578. </productMenu>
  7579. <productMenu id="intercomSetting"
  7580. type="1" >
  7581. </productMenu>
  7582. <productMenu id="phone"
  7583. type="2" >
  7584. </productMenu>
  7585. <productMenu id="fmradio"
  7586. type="3" >
  7587. </productMenu>
  7588. <productMenu id="deviceSetting"
  7589. type="1"
  7590. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7591. </productMenu>
  7592. <productMenu id="quickGuide"
  7593. type="1"
  7594. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  7595. size="794KB" >
  7596. </productMenu>
  7597. <productMenu id="userGuide"
  7598. type="1"
  7599. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  7600. size="1.53MB" >
  7601. </productMenu>
  7602. <productMenu id="connectGuide"
  7603. type="1"
  7604. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7605. size="1.12MB" >
  7606. </productMenu>
  7607. <productID id="4430"
  7608. />
  7609. <productGroupable type="1"
  7610. />
  7611. </product>
  7612. <product id="Momentum_Lite"
  7613. name="Momentum Lite"
  7614. series="Helmet"
  7615. latestVersion="2.0.3"
  7616. show = "1" >
  7617. <productMenu id="protocol"
  7618. type="0">
  7619. </productMenu>
  7620. <productMenu id="sip"
  7621. type="1" >
  7622. </productMenu>
  7623. <productMenu id="bluetoothIntercom"
  7624. type="1" >
  7625. </productMenu>
  7626. <productMenu id="phone"
  7627. type="2" >
  7628. </productMenu>
  7629. <productMenu id="fmradio"
  7630. type="3" >
  7631. </productMenu>
  7632. <productMenu id="deviceSetting"
  7633. type="1"
  7634. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7635. <productMenuURL version="1.1"
  7636. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  7637. />
  7638. </productMenu>
  7639. <productMenu id="quickGuide"
  7640. type="1"
  7641. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  7642. size="790KB" >
  7643. </productMenu>
  7644. <productMenu id="userGuide"
  7645. type="1"
  7646. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  7647. size="1.42MB" >
  7648. </productMenu>
  7649. <productMenu id="connectGuide"
  7650. type="1"
  7651. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7652. size="1.12MB" >
  7653. </productMenu>
  7654. <productID id="5526"
  7655. />
  7656. <productGroupable type="0"
  7657. />
  7658. </product>
  7659. <product id="OUTRUSHM"
  7660. name="OUTRUSH M"
  7661. series="Helmet"
  7662. latestVersion="1.0"
  7663. show = "-1" >
  7664. <productMenu id="protocol"
  7665. type="2" >
  7666. </productMenu>
  7667. <productMenu id="alexa"
  7668. type="0" >
  7669. </productMenu>
  7670. <productMenu id="ota"
  7671. type="0" >
  7672. </productMenu>
  7673. <productMenu id="wa"
  7674. type="0" >
  7675. </productMenu>
  7676. <productMenu id="meshIntercom"
  7677. type="30" >
  7678. </productMenu>
  7679. <productMenu id="phone"
  7680. type="1" >
  7681. </productMenu>
  7682. <productMenu id="music"
  7683. type="1" >
  7684. </productMenu>
  7685. <productMenu id="fmradio"
  7686. type="1" >
  7687. </productMenu>
  7688. <productMenu id="deviceSetting"
  7689. type="1"
  7690. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  7691. </productMenu>
  7692. <productMenu id="quickGuide"
  7693. type="1"
  7694. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7695. size="1.12MB" >
  7696. </productMenu>
  7697. <productMenu id="userGuide"
  7698. type="1"
  7699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7700. size="2.0MB" >
  7701. </productMenu>
  7702. <productMenu id="volume"
  7703. type="13" >
  7704. </productMenu>
  7705. <productMenu id="battery"
  7706. type="1" >
  7707. </productMenu>
  7708. <productID id="5600"
  7709. />
  7710. <productGroupable type="0"
  7711. />
  7712. </product>
  7713. <product id="ProRideEVO"
  7714. name="ProRide EVO"
  7715. series="Helmet"
  7716. latestVersion="1.1.2"
  7717. show = "1" >
  7718. <productMenu id="protocol"
  7719. type="0">
  7720. </productMenu>
  7721. <productMenu id="sip"
  7722. type="1" >
  7723. </productMenu>
  7724. <productMenu id="bluetoothIntercom"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="phone"
  7728. type="2" >
  7729. </productMenu>
  7730. <productMenu id="fmradio"
  7731. type="3" >
  7732. </productMenu>
  7733. <productMenu id="deviceSetting"
  7734. type="1"
  7735. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  7736. </productMenu>
  7737. <productMenu id="userGuide"
  7738. type="1"
  7739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  7740. size="778KB" >
  7741. </productMenu>
  7742. <productMenu id="connectGuide"
  7743. type="1"
  7744. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7745. size="1.12MB" >
  7746. </productMenu>
  7747. <productID id="5426"
  7748. />
  7749. <productGroupable type="0"
  7750. />
  7751. </product>
  7752. <product id="OUTRUSHR"
  7753. name="OUTRUSH R"
  7754. series="Helmet"
  7755. latestVersion="2.1"
  7756. show = "1" >
  7757. <productMenu id="protocol"
  7758. type="3" >
  7759. </productMenu>
  7760. <productMenu id="sip"
  7761. type="1" >
  7762. </productMenu>
  7763. <productMenu id="bluetoothIntercom"
  7764. type="1" >
  7765. </productMenu>
  7766. <productMenu id="phone"
  7767. type="1" >
  7768. </productMenu>
  7769. <productMenu id="fmradio"
  7770. type="0" >
  7771. </productMenu>
  7772. <productMenu id="deviceSetting"
  7773. type="1"
  7774. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7775. </productMenu>
  7776. <productMenu id="userGuide"
  7777. type="1"
  7778. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  7779. size="1.14MB" >
  7780. </productMenu>
  7781. <productMenu id="connectGuide"
  7782. type="1"
  7783. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7784. size="1.12MB" >
  7785. </productMenu>
  7786. <productID id="5440"
  7787. />
  7788. <productGroupable type="0"
  7789. />
  7790. </product>
  7791. <product id="OUTRUSHR"
  7792. name="OUTRUSH R"
  7793. series="Helmet"
  7794. latestVersion="1.1.4"
  7795. show = "-1" >
  7796. <productMenu id="protocol"
  7797. type="0">
  7798. </productMenu>
  7799. <productMenu id="sip"
  7800. type="1" >
  7801. </productMenu>
  7802. <productMenu id="bluetoothIntercom"
  7803. type="1" >
  7804. </productMenu>
  7805. <productMenu id="phone"
  7806. type="2" >
  7807. </productMenu>
  7808. <productMenu id="fmradio"
  7809. type="3" >
  7810. </productMenu>
  7811. <productMenu id="deviceSetting"
  7812. type="1"
  7813. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7814. </productMenu>
  7815. <productMenu id="userGuide"
  7816. type="1"
  7817. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7818. size="660KB" >
  7819. </productMenu>
  7820. <productMenu id="connectGuide"
  7821. type="1"
  7822. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7823. size="1.12MB" >
  7824. </productMenu>
  7825. <productID id="5424"
  7826. />
  7827. <productGroupable type="0"
  7828. />
  7829. </product>
  7830. <product id="OUTSTARS"
  7831. name="OUTSTAR S"
  7832. series="Helmet"
  7833. latestVersion="2.0.1"
  7834. show = "-1" >
  7835. <productMenu id="protocol"
  7836. type="3" >
  7837. </productMenu>
  7838. <productMenu id="sip"
  7839. type="1" >
  7840. </productMenu>
  7841. <productMenu id="bluetoothIntercom"
  7842. type="1" >
  7843. </productMenu>
  7844. <productMenu id="phone"
  7845. type="1" >
  7846. </productMenu>
  7847. <productMenu id="fmradio"
  7848. type="0" >
  7849. </productMenu>
  7850. <productMenu id="deviceSetting"
  7851. type="1"
  7852. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7853. </productMenu>
  7854. <productMenu id="userGuide"
  7855. type="0"
  7856. url=""
  7857. size="1.14MB" >
  7858. </productMenu>
  7859. <productID id="5443"
  7860. />
  7861. <productGroupable type="0"
  7862. />
  7863. </product>
  7864. <product id="OUTSTARS"
  7865. name="OUTSTAR S"
  7866. series="Helmet"
  7867. latestVersion="1.1.4"
  7868. show = "1" >
  7869. <productMenu id="protocol"
  7870. type="0">
  7871. </productMenu>
  7872. <productMenu id="sip"
  7873. type="1" >
  7874. </productMenu>
  7875. <productMenu id="bluetoothIntercom"
  7876. type="1" >
  7877. </productMenu>
  7878. <productMenu id="phone"
  7879. type="2" >
  7880. </productMenu>
  7881. <productMenu id="fmradio"
  7882. type="3" >
  7883. </productMenu>
  7884. <productMenu id="deviceSetting"
  7885. type="1"
  7886. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7887. </productMenu>
  7888. <productMenu id="quickGuide"
  7889. type="1"
  7890. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7891. size="643KB" >
  7892. </productMenu>
  7893. <productMenu id="userGuide"
  7894. type="1"
  7895. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7896. size="1.15MB" >
  7897. </productMenu>
  7898. <productMenu id="connectGuide"
  7899. type="1"
  7900. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7901. size="1.12MB" >
  7902. </productMenu>
  7903. <productID id="5428"
  7904. />
  7905. <productGroupable type="0"
  7906. />
  7907. </product>
  7908. <product id="OUTRIDE"
  7909. name="OUTRIDE"
  7910. series="Helmet"
  7911. latestVersion="1.0.1"
  7912. show = "1" >
  7913. <productMenu id="protocol"
  7914. type="0">
  7915. </productMenu>
  7916. <productMenu id="sip"
  7917. type="1" >
  7918. </productMenu>
  7919. <productMenu id="bluetoothIntercom"
  7920. type="1" >
  7921. </productMenu>
  7922. <productMenu id="phone"
  7923. type="2" >
  7924. </productMenu>
  7925. <productMenu id="fmradio"
  7926. type="3" >
  7927. </productMenu>
  7928. <productMenu id="deviceSetting"
  7929. type="1"
  7930. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7931. </productMenu>
  7932. <productMenu id="quickGuide"
  7933. type="1"
  7934. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7935. size="643KB" >
  7936. </productMenu>
  7937. <productMenu id="userGuide"
  7938. type="1"
  7939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7940. size="660KB" >
  7941. </productMenu>
  7942. <productMenu id="connectGuide"
  7943. type="1"
  7944. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7945. size="1.12MB" >
  7946. </productMenu>
  7947. <productID id="5432"
  7948. />
  7949. <productGroupable type="0"
  7950. />
  7951. </product>
  7952. <product id="OUTFORCE"
  7953. name="OUTFORCE"
  7954. series="Helmet"
  7955. latestVersion="1.0.1"
  7956. show = "1" >
  7957. <productMenu id="protocol"
  7958. type="0">
  7959. </productMenu>
  7960. <productMenu id="sip"
  7961. type="1" >
  7962. </productMenu>
  7963. <productMenu id="bluetoothIntercom"
  7964. type="1" >
  7965. </productMenu>
  7966. <productMenu id="phone"
  7967. type="2" >
  7968. </productMenu>
  7969. <productMenu id="fmradio"
  7970. type="3" >
  7971. </productMenu>
  7972. <productMenu id="deviceSetting"
  7973. type="1"
  7974. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7975. </productMenu>
  7976. <productMenu id="quickGuide"
  7977. type="1"
  7978. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7979. size="643KB" >
  7980. </productMenu>
  7981. <productMenu id="userGuide"
  7982. type="1"
  7983. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7984. size="660KB" >
  7985. </productMenu>
  7986. <productMenu id="connectGuide"
  7987. type="1"
  7988. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7989. size="1.12MB" >
  7990. </productMenu>
  7991. <productID id="5430"
  7992. />
  7993. <productGroupable type="0"
  7994. />
  7995. </product>
  7996. <product id="Rumba"
  7997. name="Rumba"
  7998. series="30"
  7999. latestVersion="2.0"
  8000. show = "-1" >
  8001. <productMenu id="protocol"
  8002. type="3" >
  8003. </productMenu>
  8004. <productMenu id="sip"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="bluetoothIntercom"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="deviceSetting"
  8011. type="1"
  8012. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  8013. </productMenu>
  8014. <productMenu id="quickGuide"
  8015. type="1"
  8016. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  8017. size="344KB" >
  8018. </productMenu>
  8019. <productMenu id="userGuide"
  8020. type="1"
  8021. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  8022. size="1.14MB" >
  8023. </productMenu>
  8024. <productID id="6322"
  8025. />
  8026. <productGroupable type="0"
  8027. />
  8028. </product>
  8029. <product id="Savage"
  8030. name="Savage"
  8031. series="Helmet"
  8032. latestVersion="1.2.2"
  8033. show = "1" >
  8034. <productMenu id="protocol"
  8035. type="0">
  8036. </productMenu>
  8037. <productMenu id="sip"
  8038. type="1" >
  8039. </productMenu>
  8040. <productMenu id="bluetoothIntercom"
  8041. type="1" >
  8042. </productMenu>
  8043. <productMenu id="phone"
  8044. type="2" >
  8045. </productMenu>
  8046. <productMenu id="fmradio"
  8047. type="3" >
  8048. </productMenu>
  8049. <productMenu id="deviceSetting"
  8050. type="1"
  8051. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  8052. <productMenuURL version="1.9"
  8053. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  8054. />
  8055. <productMenuURL version="1.1"
  8056. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  8057. />
  8058. </productMenu>
  8059. <productMenu id="quickGuide"
  8060. type="1"
  8061. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  8062. size="796KB" >
  8063. </productMenu>
  8064. <productMenu id="userGuide"
  8065. type="1"
  8066. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  8067. size="910KB" >
  8068. </productMenu>
  8069. <productMenu id="connectGuide"
  8070. type="1"
  8071. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8072. size="1.12MB" >
  8073. </productMenu>
  8074. <productID id="5550"
  8075. />
  8076. <productGroupable type="0"
  8077. />
  8078. </product>
  8079. <product id="RECON"
  8080. name="RECON"
  8081. series="Helmet"
  8082. latestVersion="1.0"
  8083. latestVersionVoicePrompt="1.8"
  8084. show = "-1" >
  8085. <productMenu id="protocol"
  8086. type="2" >
  8087. </productMenu>
  8088. <productMenu id="ota"
  8089. type="2" >
  8090. <otaLanguages>
  8091. <otaLanguage
  8092. id="0"
  8093. name="English"
  8094. package="0"
  8095. />
  8096. <otaLanguage
  8097. id="0"
  8098. name="Français"
  8099. package="1"
  8100. />
  8101. <otaLanguage
  8102. id="0"
  8103. name="Español"
  8104. package="2"
  8105. />
  8106. <otaLanguage
  8107. id="0"
  8108. name="Italiano"
  8109. package="3"
  8110. />
  8111. <otaLanguage
  8112. id="0"
  8113. name="Deutsch"
  8114. package="4"
  8115. />
  8116. <otaLanguage
  8117. id="0"
  8118. name="Nederlands"
  8119. package="5"
  8120. />
  8121. <otaLanguage
  8122. id="0"
  8123. name="Русский"
  8124. package="6"
  8125. />
  8126. <otaLanguage
  8127. id="0"
  8128. name="简体中文"
  8129. package="7"
  8130. />
  8131. <otaLanguage
  8132. id="0"
  8133. name="한국어"
  8134. package="8"
  8135. />
  8136. <otaLanguage
  8137. id="0"
  8138. name="日本語"
  8139. package="9"
  8140. />
  8141. <otaLanguage
  8142. id="0"
  8143. name="Suomi"
  8144. package="10"
  8145. />
  8146. <otaLanguage
  8147. id="0"
  8148. name="Polski"
  8149. package="11"
  8150. />
  8151. </otaLanguages>
  8152. <otaPackages>
  8153. <package
  8154. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  8155. size="5183988"
  8156. />
  8157. <package
  8158. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  8159. size="5183988"
  8160. />
  8161. <package
  8162. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  8163. size="5183988"
  8164. />
  8165. <package
  8166. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  8167. size="5183988"
  8168. />
  8169. <package
  8170. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  8171. size="5183988"
  8172. />
  8173. <package
  8174. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  8175. size="5183988"
  8176. />
  8177. <package
  8178. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  8179. size="5183988"
  8180. />
  8181. <package
  8182. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  8183. size="5183988"
  8184. />
  8185. <package
  8186. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  8187. size="5183988"
  8188. />
  8189. <package
  8190. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  8191. size="5183988"
  8192. />
  8193. <package
  8194. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  8195. size="5183988"
  8196. />
  8197. <package
  8198. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  8199. size="5183988"
  8200. />
  8201. </otaPackages>
  8202. </productMenu>
  8203. <productMenu id="wa"
  8204. type="0" >
  8205. </productMenu>
  8206. <productMenu id="led"
  8207. type="5" >
  8208. </productMenu>
  8209. <productMenu id="led+"
  8210. type="2"
  8211. url="1" >
  8212. </productMenu>
  8213. <productMenu id="meshIntercom+"
  8214. type="3"
  8215. url="2" >
  8216. </productMenu>
  8217. <productMenu id="waveIntercom"
  8218. type="1" >
  8219. </productMenu>
  8220. <productMenu id="fmradio"
  8221. type="0" >
  8222. </productMenu>
  8223. <productMenu id="phone"
  8224. type="1" >
  8225. </productMenu>
  8226. <productMenu id="music"
  8227. type="1" >
  8228. </productMenu>
  8229. <productMenu id="musicSharing"
  8230. type="0" >
  8231. </productMenu>
  8232. <productMenu id="deviceSetting"
  8233. type="1"
  8234. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  8235. </productMenu>
  8236. <productMenu id="quickGuide"
  8237. type="0"
  8238. url=""
  8239. size="1.12MB" >
  8240. </productMenu>
  8241. <productMenu id="userGuide"
  8242. type="1"
  8243. url=""
  8244. size="2.28MB" >
  8245. </productMenu>
  8246. <productMenu id="videoGuide"
  8247. type="0"
  8248. url=""
  8249. size="3.41MB" >
  8250. </productMenu>
  8251. <productMenu id="volume"
  8252. type="16" >
  8253. </productMenu>
  8254. <productMenu id="volume+"
  8255. type="2"
  8256. url="0x6004" >
  8257. </productMenu>
  8258. <productMenu id="battery"
  8259. type="1" >
  8260. </productMenu>
  8261. <productID id="6A1D"
  8262. />
  8263. <productGroupable type="0"
  8264. />
  8265. </product>
  8266. <product id="SPECTER"
  8267. name="SPECTER"
  8268. series="Helmet"
  8269. latestVersion="1.0.11"
  8270. latestVersionVoicePrompt="1.8"
  8271. show = "1" >
  8272. <productMenu id="protocol"
  8273. type="2" >
  8274. </productMenu>
  8275. <productMenu id="ota"
  8276. type="2" >
  8277. <otaLanguages>
  8278. <otaLanguage
  8279. id="0"
  8280. name="English"
  8281. package="0"
  8282. />
  8283. <otaLanguage
  8284. id="0"
  8285. name="Français"
  8286. package="1"
  8287. />
  8288. <otaLanguage
  8289. id="0"
  8290. name="Español"
  8291. package="2"
  8292. />
  8293. <otaLanguage
  8294. id="0"
  8295. name="Italiano"
  8296. package="3"
  8297. />
  8298. <otaLanguage
  8299. id="0"
  8300. name="Deutsch"
  8301. package="4"
  8302. />
  8303. <otaLanguage
  8304. id="0"
  8305. name="Nederlands"
  8306. package="5"
  8307. />
  8308. <otaLanguage
  8309. id="0"
  8310. name="Русский"
  8311. package="6"
  8312. />
  8313. <otaLanguage
  8314. id="0"
  8315. name="简体中文"
  8316. package="7"
  8317. />
  8318. <otaLanguage
  8319. id="0"
  8320. name="한국어"
  8321. package="8"
  8322. />
  8323. <otaLanguage
  8324. id="0"
  8325. name="日本語"
  8326. package="9"
  8327. />
  8328. <otaLanguage
  8329. id="0"
  8330. name="Suomi"
  8331. package="10"
  8332. />
  8333. <otaLanguage
  8334. id="0"
  8335. name="Polski"
  8336. package="11"
  8337. />
  8338. </otaLanguages>
  8339. <otaPackages>
  8340. <package
  8341. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0.img"
  8342. size="5183988"
  8343. />
  8344. <package
  8345. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fr-FR.img"
  8346. size="5183988"
  8347. />
  8348. <package
  8349. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-es-ES.img"
  8350. size="5183988"
  8351. />
  8352. <package
  8353. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-it-IT.img"
  8354. size="5183988"
  8355. />
  8356. <package
  8357. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-de-DE.img"
  8358. size="5183988"
  8359. />
  8360. <package
  8361. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-nl-NL.img"
  8362. size="5183988"
  8363. />
  8364. <package
  8365. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ru-RU.img"
  8366. size="5183988"
  8367. />
  8368. <package
  8369. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-cmn-CN.img"
  8370. size="5183988"
  8371. />
  8372. <package
  8373. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ko-KR.img"
  8374. size="5183988"
  8375. />
  8376. <package
  8377. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ja-JP.img"
  8378. size="5183988"
  8379. />
  8380. <package
  8381. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fi-FI.img"
  8382. size="5183988"
  8383. />
  8384. <package
  8385. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-pl-PL.img"
  8386. size="5183988"
  8387. />
  8388. </otaPackages>
  8389. </productMenu>
  8390. <productMenu id="wa"
  8391. type="0" >
  8392. </productMenu>
  8393. <productMenu id="led"
  8394. type="5" >
  8395. </productMenu>
  8396. <productMenu id="led+"
  8397. type="2"
  8398. url="1" >
  8399. </productMenu>
  8400. <productMenu id="meshIntercom+"
  8401. type="3"
  8402. url="2" >
  8403. </productMenu>
  8404. <productMenu id="waveIntercom"
  8405. type="1" >
  8406. </productMenu>
  8407. <productMenu id="fmradio"
  8408. type="0" >
  8409. </productMenu>
  8410. <productMenu id="phone"
  8411. type="1" >
  8412. </productMenu>
  8413. <productMenu id="music"
  8414. type="1" >
  8415. </productMenu>
  8416. <productMenu id="musicSharing"
  8417. type="0" >
  8418. </productMenu>
  8419. <productMenu id="deviceSetting"
  8420. type="1"
  8421. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  8422. <productMenuURL version="1.0.10"
  8423. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8424. />
  8425. <productMenuURL version="1.0.4"
  8426. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8427. />
  8428. </productMenu>
  8429. <productMenu id="quickGuide"
  8430. type="0"
  8431. url=""
  8432. size="1.12MB" >
  8433. </productMenu>
  8434. <productMenu id="userGuide"
  8435. type="1"
  8436. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8437. size="2.0MB" >
  8438. </productMenu>
  8439. <productMenu id="videoGuide"
  8440. type="0"
  8441. url=""
  8442. size="3.41MB" >
  8443. </productMenu>
  8444. <productMenu id="connectGuide"
  8445. type="1"
  8446. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8447. size="1.12MB" >
  8448. </productMenu>
  8449. <productMenu id="volume"
  8450. type="16" >
  8451. </productMenu>
  8452. <productMenu id="volume+"
  8453. type="2"
  8454. url="0x6004" >
  8455. </productMenu>
  8456. <productMenu id="battery"
  8457. type="1" >
  8458. </productMenu>
  8459. <productID id="6A11"
  8460. />
  8461. <productGroupable type="0"
  8462. />
  8463. </product>
  8464. <product id="SPECTER"
  8465. name="SPECTER"
  8466. series="Helmet"
  8467. latestVersion="1.0.11"
  8468. latestVersionVoicePrompt="1.8"
  8469. show = "-1" >
  8470. <productMenu id="protocol"
  8471. type="2" >
  8472. </productMenu>
  8473. <productMenu id="ota"
  8474. type="2" >
  8475. <otaLanguages>
  8476. <otaLanguage
  8477. id="0"
  8478. name="English"
  8479. package="0"
  8480. />
  8481. <otaLanguage
  8482. id="0"
  8483. name="Français"
  8484. package="1"
  8485. />
  8486. <otaLanguage
  8487. id="0"
  8488. name="Español"
  8489. package="2"
  8490. />
  8491. <otaLanguage
  8492. id="0"
  8493. name="Italiano"
  8494. package="3"
  8495. />
  8496. <otaLanguage
  8497. id="0"
  8498. name="Deutsch"
  8499. package="4"
  8500. />
  8501. <otaLanguage
  8502. id="0"
  8503. name="Nederlands"
  8504. package="5"
  8505. />
  8506. <otaLanguage
  8507. id="0"
  8508. name="Русский"
  8509. package="6"
  8510. />
  8511. <otaLanguage
  8512. id="0"
  8513. name="简体中文"
  8514. package="7"
  8515. />
  8516. <otaLanguage
  8517. id="0"
  8518. name="한국어"
  8519. package="8"
  8520. />
  8521. <otaLanguage
  8522. id="0"
  8523. name="日本語"
  8524. package="9"
  8525. />
  8526. <otaLanguage
  8527. id="0"
  8528. name="Suomi"
  8529. package="10"
  8530. />
  8531. <otaLanguage
  8532. id="0"
  8533. name="Polski"
  8534. package="11"
  8535. />
  8536. </otaLanguages>
  8537. <otaPackages>
  8538. <package
  8539. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0.img"
  8540. size="5183988"
  8541. />
  8542. <package
  8543. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fr-FR.img"
  8544. size="5183988"
  8545. />
  8546. <package
  8547. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-es-ES.img"
  8548. size="5183988"
  8549. />
  8550. <package
  8551. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-it-IT.img"
  8552. size="5183988"
  8553. />
  8554. <package
  8555. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-de-DE.img"
  8556. size="5183988"
  8557. />
  8558. <package
  8559. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-nl-NL.img"
  8560. size="5183988"
  8561. />
  8562. <package
  8563. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ru-RU.img"
  8564. size="5183988"
  8565. />
  8566. <package
  8567. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-cmn-CN.img"
  8568. size="5183988"
  8569. />
  8570. <package
  8571. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ko-KR.img"
  8572. size="5183988"
  8573. />
  8574. <package
  8575. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ja-JP.img"
  8576. size="5183988"
  8577. />
  8578. <package
  8579. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fi-FI.img"
  8580. size="5183988"
  8581. />
  8582. <package
  8583. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-pl-PL.img"
  8584. size="5183988"
  8585. />
  8586. </otaPackages>
  8587. </productMenu>
  8588. <productMenu id="wa"
  8589. type="0" >
  8590. </productMenu>
  8591. <productMenu id="led"
  8592. type="5" >
  8593. </productMenu>
  8594. <productMenu id="led+"
  8595. type="2"
  8596. url="1" >
  8597. </productMenu>
  8598. <productMenu id="meshIntercom+"
  8599. type="3"
  8600. url="2" >
  8601. </productMenu>
  8602. <productMenu id="waveIntercom"
  8603. type="1" >
  8604. </productMenu>
  8605. <productMenu id="fmradio"
  8606. type="0" >
  8607. </productMenu>
  8608. <productMenu id="phone"
  8609. type="1" >
  8610. </productMenu>
  8611. <productMenu id="music"
  8612. type="1" >
  8613. </productMenu>
  8614. <productMenu id="musicSharing"
  8615. type="0" >
  8616. </productMenu>
  8617. <productMenu id="deviceSetting"
  8618. type="1"
  8619. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  8620. <productMenuURL version="1.0.10"
  8621. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8622. />
  8623. <productMenuURL version="1.0.4"
  8624. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8625. />
  8626. <productMenuURL version="1.0"
  8627. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  8628. />
  8629. </productMenu>
  8630. <productMenu id="quickGuide"
  8631. type="0"
  8632. url=""
  8633. size="1.12MB" >
  8634. </productMenu>
  8635. <productMenu id="userGuide"
  8636. type="1"
  8637. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8638. size="2.0MB" >
  8639. </productMenu>
  8640. <productMenu id="videoGuide"
  8641. type="0"
  8642. url=""
  8643. size="3.41MB" >
  8644. </productMenu>
  8645. <productMenu id="connectGuide"
  8646. type="1"
  8647. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8648. size="1.12MB" >
  8649. </productMenu>
  8650. <productMenu id="volume"
  8651. type="16" >
  8652. </productMenu>
  8653. <productMenu id="volume+"
  8654. type="2"
  8655. url="0x6004" >
  8656. </productMenu>
  8657. <productMenu id="battery"
  8658. type="1" >
  8659. </productMenu>
  8660. <productID id="6A0A"
  8661. />
  8662. <productGroupable type="0"
  8663. />
  8664. </product>
  8665. <product id="OUTLANDER"
  8666. name="OUTLANDER"
  8667. series="Helmet"
  8668. latestVersion="1.0.11"
  8669. latestVersionVoicePrompt="1.8"
  8670. show = "1" >
  8671. <productMenu id="protocol"
  8672. type="2" >
  8673. </productMenu>
  8674. <productMenu id="ota"
  8675. type="2" >
  8676. <otaLanguages>
  8677. <otaLanguage
  8678. id="0"
  8679. name="English"
  8680. package="0"
  8681. />
  8682. <otaLanguage
  8683. id="0"
  8684. name="Français"
  8685. package="1"
  8686. />
  8687. <otaLanguage
  8688. id="0"
  8689. name="Español"
  8690. package="2"
  8691. />
  8692. <otaLanguage
  8693. id="0"
  8694. name="Italiano"
  8695. package="3"
  8696. />
  8697. <otaLanguage
  8698. id="0"
  8699. name="Deutsch"
  8700. package="4"
  8701. />
  8702. <otaLanguage
  8703. id="0"
  8704. name="Nederlands"
  8705. package="5"
  8706. />
  8707. <otaLanguage
  8708. id="0"
  8709. name="Русский"
  8710. package="6"
  8711. />
  8712. <otaLanguage
  8713. id="0"
  8714. name="简体中文"
  8715. package="7"
  8716. />
  8717. <otaLanguage
  8718. id="0"
  8719. name="한국어"
  8720. package="8"
  8721. />
  8722. <otaLanguage
  8723. id="0"
  8724. name="日本語"
  8725. package="9"
  8726. />
  8727. <otaLanguage
  8728. id="0"
  8729. name="Suomi"
  8730. package="10"
  8731. />
  8732. <otaLanguage
  8733. id="0"
  8734. name="Polski"
  8735. package="11"
  8736. />
  8737. </otaLanguages>
  8738. <otaPackages>
  8739. <package
  8740. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0.img"
  8741. size="5183988"
  8742. />
  8743. <package
  8744. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fr-FR.img"
  8745. size="5183988"
  8746. />
  8747. <package
  8748. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-es-ES.img"
  8749. size="5183988"
  8750. />
  8751. <package
  8752. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-it-IT.img"
  8753. size="5183988"
  8754. />
  8755. <package
  8756. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-de-DE.img"
  8757. size="5183988"
  8758. />
  8759. <package
  8760. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-nl-NL.img"
  8761. size="5183988"
  8762. />
  8763. <package
  8764. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ru-RU.img"
  8765. size="5183988"
  8766. />
  8767. <package
  8768. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-cmn-CN.img"
  8769. size="5183988"
  8770. />
  8771. <package
  8772. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ko-KR.img"
  8773. size="5183988"
  8774. />
  8775. <package
  8776. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ja-JP.img"
  8777. size="5183988"
  8778. />
  8779. <package
  8780. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fi-FI.img"
  8781. size="5183988"
  8782. />
  8783. <package
  8784. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-pl-PL.img"
  8785. size="5183988"
  8786. />
  8787. </otaPackages>
  8788. </productMenu>
  8789. <productMenu id="wa"
  8790. type="0" >
  8791. </productMenu>
  8792. <productMenu id="led"
  8793. type="5" >
  8794. </productMenu>
  8795. <productMenu id="led+"
  8796. type="2"
  8797. url="1" >
  8798. </productMenu>
  8799. <productMenu id="meshIntercom+"
  8800. type="3"
  8801. url="2" >
  8802. </productMenu>
  8803. <productMenu id="waveIntercom"
  8804. type="1" >
  8805. </productMenu>
  8806. <productMenu id="fmradio"
  8807. type="0" >
  8808. </productMenu>
  8809. <productMenu id="phone"
  8810. type="1" >
  8811. </productMenu>
  8812. <productMenu id="music"
  8813. type="1" >
  8814. </productMenu>
  8815. <productMenu id="musicSharing"
  8816. type="0" >
  8817. </productMenu>
  8818. <productMenu id="deviceSetting"
  8819. type="1"
  8820. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  8821. <productMenuURL version="1.0.10"
  8822. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  8823. />
  8824. <productMenuURL version="1.0.4"
  8825. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  8826. />
  8827. </productMenu>
  8828. <productMenu id="quickGuide"
  8829. type="0"
  8830. url=""
  8831. size="1.12MB" >
  8832. </productMenu>
  8833. <productMenu id="userGuide"
  8834. type="1"
  8835. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  8836. size="2.0MB" >
  8837. </productMenu>
  8838. <productMenu id="connectGuide"
  8839. type="1"
  8840. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8841. size="1.12MB" >
  8842. </productMenu>
  8843. <productMenu id="videoGuide"
  8844. type="0"
  8845. url=""
  8846. size="3.41MB" >
  8847. </productMenu>
  8848. <productMenu id="volume"
  8849. type="16" >
  8850. </productMenu>
  8851. <productMenu id="volume+"
  8852. type="2"
  8853. url="0x6004" >
  8854. </productMenu>
  8855. <productMenu id="battery"
  8856. type="1" >
  8857. </productMenu>
  8858. <productID id="6A05"
  8859. />
  8860. <productGroupable type="0"
  8861. />
  8862. </product>
  8863. <product id="OUTRUSH2"
  8864. name="OUTRUSH 2"
  8865. series="Helmet"
  8866. latestVersion="1.0.3"
  8867. latestVersionVoicePrompt="1.6"
  8868. show = "1" >
  8869. <productMenu id="protocol"
  8870. type="2" >
  8871. </productMenu>
  8872. <productMenu id="alexa"
  8873. type="0" >
  8874. </productMenu>
  8875. <productMenu id="ota"
  8876. type="2" >
  8877. <otaPackages>
  8878. <package
  8879. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8880. size="2945812"
  8881. />
  8882. </otaPackages>
  8883. </productMenu>
  8884. <productMenu id="meshIntercom+"
  8885. type="3"
  8886. url="2" >
  8887. </productMenu>
  8888. <productMenu id="waveIntercom"
  8889. type="1" >
  8890. </productMenu>
  8891. <productMenu id="phone"
  8892. type="1" >
  8893. </productMenu>
  8894. <productMenu id="music"
  8895. type="1" >
  8896. </productMenu>
  8897. <productMenu id="musicSharing"
  8898. type="0" >
  8899. </productMenu>
  8900. <productMenu id="deviceSetting"
  8901. type="1"
  8902. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8903. <productMenuURL version="1.0"
  8904. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8905. />
  8906. </productMenu>
  8907. <productMenu id="quickGuide"
  8908. type="0"
  8909. url=""
  8910. size="1.12MB" >
  8911. </productMenu>
  8912. <productMenu id="userGuide"
  8913. type="1"
  8914. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8915. size="2.0MB" >
  8916. </productMenu>
  8917. <productMenu id="connectGuide"
  8918. type="1"
  8919. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8920. size="1.12MB" >
  8921. </productMenu>
  8922. <productMenu id="volume"
  8923. type="12" >
  8924. </productMenu>
  8925. <productMenu id="battery"
  8926. type="1" >
  8927. </productMenu>
  8928. <productID id="684A"
  8929. />
  8930. <productGroupable type="0"
  8931. />
  8932. </product>
  8933. <product id="OUTSTAR2"
  8934. name="OUTSTAR 2"
  8935. series="Helmet"
  8936. latestVersion="1.0.2"
  8937. latestVersionVoicePrompt="1.6"
  8938. show = "1" >
  8939. <productMenu id="protocol"
  8940. type="2" >
  8941. </productMenu>
  8942. <productMenu id="alexa"
  8943. type="0" >
  8944. </productMenu>
  8945. <productMenu id="ota"
  8946. type="2" >
  8947. <otaPackages>
  8948. <package
  8949. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8950. size="2945812"
  8951. />
  8952. </otaPackages>
  8953. </productMenu>
  8954. <productMenu id="meshIntercom+"
  8955. type="3"
  8956. url="2" >
  8957. </productMenu>
  8958. <productMenu id="waveIntercom"
  8959. type="1" >
  8960. </productMenu>
  8961. <productMenu id="phone"
  8962. type="1" >
  8963. </productMenu>
  8964. <productMenu id="music"
  8965. type="1" >
  8966. </productMenu>
  8967. <productMenu id="musicSharing"
  8968. type="0" >
  8969. </productMenu>
  8970. <productMenu id="deviceSetting"
  8971. type="1"
  8972. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8973. </productMenu>
  8974. <productMenu id="quickGuide"
  8975. type="0"
  8976. url=""
  8977. size="1.12MB" >
  8978. </productMenu>
  8979. <productMenu id="userGuide"
  8980. type="1"
  8981. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8982. size="2.0MB" >
  8983. </productMenu>
  8984. <productMenu id="connectGuide"
  8985. type="1"
  8986. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8987. size="1.12MB" >
  8988. </productMenu>
  8989. <productMenu id="volume"
  8990. type="12" >
  8991. </productMenu>
  8992. <productMenu id="battery"
  8993. type="1" >
  8994. </productMenu>
  8995. <productID id="684B"
  8996. />
  8997. <productGroupable type="0"
  8998. />
  8999. </product>
  9000. <product id="SURGE"
  9001. name="SURGE"
  9002. series="Helmet"
  9003. latestVersion="1.2"
  9004. latestVersionVoicePrompt="1.3"
  9005. show = "1" >
  9006. <productMenu id="protocol"
  9007. type="2" >
  9008. </productMenu>
  9009. <productMenu id="alexa"
  9010. type="0" >
  9011. </productMenu>
  9012. <productMenu id="ota"
  9013. type="2" >
  9014. <otaPackages>
  9015. <package
  9016. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  9017. size="2945812"
  9018. />
  9019. </otaPackages>
  9020. </productMenu>
  9021. <productMenu id="meshIntercom"
  9022. type="30" >
  9023. </productMenu>
  9024. <productMenu id="meshIntercom+"
  9025. type="3"
  9026. url="2" >
  9027. <productMenuType version="1.0.1"
  9028. type="2"
  9029. />
  9030. </productMenu>
  9031. <productMenu id="waveIntercom"
  9032. type="1" >
  9033. <productMenuType version="1.0.9"
  9034. type="0"
  9035. />
  9036. </productMenu>
  9037. <productMenu id="phone"
  9038. type="1" >
  9039. </productMenu>
  9040. <productMenu id="music"
  9041. type="1" >
  9042. </productMenu>
  9043. <productMenu id="musicSharing"
  9044. type="0" >
  9045. </productMenu>
  9046. <productMenu id="deviceSetting"
  9047. type="1"
  9048. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  9049. <productMenuURL version="1.1.9"
  9050. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  9051. />
  9052. <productMenuURL version="1.0.1"
  9053. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  9054. />
  9055. </productMenu>
  9056. <productMenu id="quickGuide"
  9057. type="0"
  9058. url=""
  9059. size="1.12MB" >
  9060. </productMenu>
  9061. <productMenu id="userGuide"
  9062. type="1"
  9063. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  9064. size="2.0MB" >
  9065. </productMenu>
  9066. <productMenu id="volume"
  9067. type="12" >
  9068. </productMenu>
  9069. <productMenu id="battery"
  9070. type="1" >
  9071. </productMenu>
  9072. <productID id="6840"
  9073. />
  9074. <productGroupable type="0"
  9075. />
  9076. </product>
  9077. <product id="Cavalry2"
  9078. name="Cavalry 2"
  9079. series="Helmet"
  9080. latestVersion="1.2"
  9081. latestVersionVoicePrompt="1.3"
  9082. show = "1" >
  9083. <productMenu id="protocol"
  9084. type="2" >
  9085. </productMenu>
  9086. <productMenu id="alexa"
  9087. type="0" >
  9088. </productMenu>
  9089. <productMenu id="ota"
  9090. type="2" >
  9091. <otaPackages>
  9092. <package
  9093. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  9094. size="3144148"
  9095. />
  9096. </otaPackages>
  9097. </productMenu>
  9098. <productMenu id="wa"
  9099. type="0" >
  9100. </productMenu>
  9101. <productMenu id="meshIntercom"
  9102. type="30" >
  9103. </productMenu>
  9104. <productMenu id="meshIntercom+"
  9105. type="3"
  9106. url="2" >
  9107. <productMenuType version="1.0"
  9108. type="2"
  9109. />
  9110. </productMenu>
  9111. <productMenu id="waveIntercom"
  9112. type="1" >
  9113. <productMenuType version="1.0.9"
  9114. type="0"
  9115. />
  9116. </productMenu>
  9117. <productMenu id="phone"
  9118. type="1" >
  9119. </productMenu>
  9120. <productMenu id="music"
  9121. type="1" >
  9122. </productMenu>
  9123. <productMenu id="musicSharing"
  9124. type="0" >
  9125. </productMenu>
  9126. <productMenu id="deviceSetting"
  9127. type="1"
  9128. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_05.xml" >
  9129. <productMenuURL version="1.1.9"
  9130. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  9131. />
  9132. <productMenuURL version="1.0"
  9133. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  9134. />
  9135. </productMenu>
  9136. <productMenu id="quickGuide"
  9137. type="0"
  9138. url=""
  9139. size="1.12MB" >
  9140. </productMenu>
  9141. <productMenu id="userGuide"
  9142. type="1"
  9143. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  9144. size="2.0MB" >
  9145. </productMenu>
  9146. <productMenu id="connectGuide"
  9147. type="1"
  9148. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  9149. size="1.12MB" >
  9150. </productMenu>
  9151. <productMenu id="volume"
  9152. type="12" >
  9153. </productMenu>
  9154. <productMenu id="battery"
  9155. type="1" >
  9156. </productMenu>
  9157. <productID id="6839"
  9158. />
  9159. <productGroupable type="0"
  9160. />
  9161. </product>
  9162. <product id="Cavalry"
  9163. name="Cavalry"
  9164. series="Helmet"
  9165. latestVersion="1.2.2"
  9166. show = "1" >
  9167. <productMenu id="protocol"
  9168. type="0">
  9169. </productMenu>
  9170. <productMenu id="sip"
  9171. type="1" >
  9172. </productMenu>
  9173. <productMenu id="bluetoothIntercom"
  9174. type="1" >
  9175. </productMenu>
  9176. <productMenu id="phone"
  9177. type="2" >
  9178. </productMenu>
  9179. <productMenu id="fmradio"
  9180. type="3" >
  9181. </productMenu>
  9182. <productMenu id="deviceSetting"
  9183. type="1"
  9184. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  9185. <productMenuURL version="1.9"
  9186. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  9187. />
  9188. <productMenuURL version="1.0.1"
  9189. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  9190. />
  9191. </productMenu>
  9192. <productMenu id="quickGuide"
  9193. type="1"
  9194. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  9195. size="795KB" >
  9196. </productMenu>
  9197. <productMenu id="userGuide"
  9198. type="1"
  9199. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  9200. size="1.87MB" >
  9201. </productMenu>
  9202. <productMenu id="connectGuide"
  9203. type="1"
  9204. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9205. size="1.12MB" >
  9206. </productMenu>
  9207. <productID id="5524"
  9208. />
  9209. <productGroupable type="0"
  9210. />
  9211. </product>
  9212. <product id="Cavalry_Lite"
  9213. name="Cavalry Lite"
  9214. series="Helmet"
  9215. latestVersion="1.0.2"
  9216. show = "1" >
  9217. <productMenu id="protocol"
  9218. type="0">
  9219. </productMenu>
  9220. <productMenu id="sip"
  9221. type="1" >
  9222. </productMenu>
  9223. <productMenu id="bluetoothIntercom"
  9224. type="1" >
  9225. </productMenu>
  9226. <productMenu id="phone"
  9227. type="2" >
  9228. </productMenu>
  9229. <productMenu id="fmradio"
  9230. type="3" >
  9231. </productMenu>
  9232. <productMenu id="deviceSetting"
  9233. type="1"
  9234. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  9235. </productMenu>
  9236. <productMenu id="userGuide"
  9237. type="1"
  9238. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  9239. size="1.74MB" >
  9240. </productMenu>
  9241. <productMenu id="connectGuide"
  9242. type="1"
  9243. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9244. size="1.12MB" >
  9245. </productMenu>
  9246. <productID id="5536"
  9247. />
  9248. <productGroupable type="0"
  9249. />
  9250. </product>
  9251. <product id="VORTEX"
  9252. name="VORTEX"
  9253. series="VORTEX"
  9254. latestVersion="1.0.2"
  9255. latestVersionVoicePrompt="1.0"
  9256. show = "1" >
  9257. <productMenu id="protocol"
  9258. type="2" >
  9259. </productMenu>
  9260. <productMenu id="warranty"
  9261. type="1" >
  9262. </productMenu>
  9263. <productMenu id="serialNumber"
  9264. type="1" >
  9265. </productMenu>
  9266. <productMenu id="ota"
  9267. type="2" >
  9268. <otaLanguages>
  9269. <otaLanguage
  9270. id="0"
  9271. name="English"
  9272. package="0"
  9273. />
  9274. <otaLanguage
  9275. id="0"
  9276. name="Français"
  9277. package="1"
  9278. />
  9279. <otaLanguage
  9280. id="0"
  9281. name="Español"
  9282. package="2"
  9283. />
  9284. <otaLanguage
  9285. id="0"
  9286. name="Italiano"
  9287. package="3"
  9288. />
  9289. <otaLanguage
  9290. id="0"
  9291. name="Deutsch"
  9292. package="4"
  9293. />
  9294. <otaLanguage
  9295. id="0"
  9296. name="Nederlands"
  9297. package="5"
  9298. />
  9299. <otaLanguage
  9300. id="0"
  9301. name="Русский"
  9302. package="6"
  9303. />
  9304. <otaLanguage
  9305. id="0"
  9306. name="简体中文"
  9307. package="7"
  9308. />
  9309. <otaLanguage
  9310. id="0"
  9311. name="한국어"
  9312. package="8"
  9313. />
  9314. <otaLanguage
  9315. id="0"
  9316. name="日本語"
  9317. package="9"
  9318. />
  9319. <otaLanguage
  9320. id="0"
  9321. name="Suomi"
  9322. package="10"
  9323. />
  9324. <otaLanguage
  9325. id="0"
  9326. name="Polski"
  9327. package="11"
  9328. />
  9329. </otaLanguages>
  9330. <otaPackages>
  9331. <package
  9332. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  9333. size="5183988"
  9334. />
  9335. <package
  9336. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  9337. size="5183988"
  9338. />
  9339. <package
  9340. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  9341. size="5183988"
  9342. />
  9343. <package
  9344. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  9345. size="5183988"
  9346. />
  9347. <package
  9348. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  9349. size="5183988"
  9350. />
  9351. <package
  9352. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  9353. size="5183988"
  9354. />
  9355. <package
  9356. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  9357. size="5183988"
  9358. />
  9359. <package
  9360. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  9361. size="5183988"
  9362. />
  9363. <package
  9364. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  9365. size="5183988"
  9366. />
  9367. <package
  9368. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  9369. size="5183988"
  9370. />
  9371. <package
  9372. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  9373. size="5183988"
  9374. />
  9375. <package
  9376. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  9377. size="5183988"
  9378. />
  9379. </otaPackages>
  9380. </productMenu>
  9381. <productMenu id="sip"
  9382. type="1" >
  9383. </productMenu>
  9384. <productMenu id="bluetoothIntercom"
  9385. type="1" >
  9386. </productMenu>
  9387. <productMenu id="phone"
  9388. type="1" >
  9389. </productMenu>
  9390. <productMenu id="music"
  9391. type="1" >
  9392. </productMenu>
  9393. <productMenu id="fmradio"
  9394. type="1"
  9395. url="1" >
  9396. </productMenu>
  9397. <productMenu id="deviceSetting"
  9398. type="1"
  9399. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  9400. </productMenu>
  9401. <productMenu id="quickGuide"
  9402. type="0"
  9403. url=""
  9404. size="934KB" >
  9405. </productMenu>
  9406. <productMenu id="userGuide"
  9407. type="1"
  9408. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  9409. size="1.14MB" >
  9410. </productMenu>
  9411. <productMenu id="connectGuide"
  9412. type="1"
  9413. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  9414. size="1.12MB" >
  9415. </productMenu>
  9416. <productMenu id="volume"
  9417. type="15" >
  9418. </productMenu>
  9419. <productMenu id="volume+"
  9420. type="2"
  9421. url="0x0018" >
  9422. </productMenu>
  9423. <productMenu id="appearance"
  9424. type="1"
  9425. url="1|white,silver,black" >
  9426. </productMenu>
  9427. <productID id="3451"
  9428. />
  9429. <productGroupable type="0"
  9430. />
  9431. </product>
  9432. <product id="SF4"
  9433. name="SF4"
  9434. series="SF"
  9435. latestVersion="1.1.5"
  9436. show = "-1" >
  9437. <productMenu id="protocol"
  9438. type="1"
  9439. url="3">
  9440. </productMenu>
  9441. <productMenu id="sip"
  9442. type="1" >
  9443. </productMenu>
  9444. <productMenu id="bluetoothIntercom"
  9445. type="1" >
  9446. </productMenu>
  9447. <productMenu id="phone"
  9448. type="1" >
  9449. </productMenu>
  9450. <productMenu id="music"
  9451. type="1" >
  9452. </productMenu>
  9453. <productMenu id="fmradio"
  9454. type="1" >
  9455. </productMenu>
  9456. <productMenu id="deviceSetting"
  9457. type="1"
  9458. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9459. <productMenuURL version="1.0.1"
  9460. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9461. />
  9462. </productMenu>
  9463. <productMenu id="quickGuide"
  9464. type="1"
  9465. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  9466. size="607KB" >
  9467. </productMenu>
  9468. <productMenu id="userGuide"
  9469. type="1"
  9470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9471. size="1.91MB" >
  9472. </productMenu>
  9473. <productMenu id="volume"
  9474. type="4" >
  9475. </productMenu>
  9476. <productID id="5414"
  9477. />
  9478. <productGroupable type="0"
  9479. />
  9480. </product>
  9481. <product id="SF4"
  9482. name="SF4"
  9483. series="SF"
  9484. latestVersion="3.4.4"
  9485. show = "1" >
  9486. <productMenu id="protocol"
  9487. type="2" >
  9488. </productMenu>
  9489. <productMenu id="sip"
  9490. type="1" >
  9491. </productMenu>
  9492. <productMenu id="bluetoothIntercom"
  9493. type="1" >
  9494. </productMenu>
  9495. <productMenu id="phone"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="music"
  9499. type="1" >
  9500. </productMenu>
  9501. <productMenu id="fmradio"
  9502. type="1" >
  9503. </productMenu>
  9504. <productMenu id="deviceSetting"
  9505. type="1"
  9506. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  9507. <productMenuURL version="3.0"
  9508. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  9509. />
  9510. </productMenu>
  9511. <productMenu id="quickGuide"
  9512. type="0"
  9513. url=""
  9514. size="934KB" >
  9515. </productMenu>
  9516. <productMenu id="userGuide"
  9517. type="1"
  9518. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9519. size="1.14MB" >
  9520. </productMenu>
  9521. <productMenu id="connectGuide"
  9522. type="1"
  9523. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9524. size="1.12MB" >
  9525. </productMenu>
  9526. <productMenu id="volume"
  9527. type="15" >
  9528. </productMenu>
  9529. <productID id="3370"
  9530. />
  9531. <productGroupable type="0"
  9532. />
  9533. </product>
  9534. <product id="SF2"
  9535. name="SF2"
  9536. series="SF"
  9537. latestVersion="1.2.1"
  9538. show = "-1" >
  9539. <productMenu id="protocol"
  9540. type="1"
  9541. url="2">
  9542. </productMenu>
  9543. <productMenu id="sip"
  9544. type="1" >
  9545. </productMenu>
  9546. <productMenu id="bluetoothIntercom"
  9547. type="1" >
  9548. </productMenu>
  9549. <productMenu id="phone"
  9550. type="1" >
  9551. </productMenu>
  9552. <productMenu id="music"
  9553. type="1" >
  9554. </productMenu>
  9555. <productMenu id="fmradio"
  9556. type="1" >
  9557. </productMenu>
  9558. <productMenu id="deviceSetting"
  9559. type="1"
  9560. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9561. <productMenuURL version="1.0.1"
  9562. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9563. />
  9564. </productMenu>
  9565. <productMenu id="quickGuide"
  9566. type="1"
  9567. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  9568. size="607KB" >
  9569. </productMenu>
  9570. <productMenu id="userGuide"
  9571. type="1"
  9572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9573. size="1.91MB" >
  9574. </productMenu>
  9575. <productMenu id="volume"
  9576. type="4" >
  9577. </productMenu>
  9578. <productID id="5412"
  9579. />
  9580. <productGroupable type="0"
  9581. />
  9582. </product>
  9583. <product id="SF2"
  9584. name="SF2"
  9585. series="SF"
  9586. latestVersion="3.3.4"
  9587. show = "1" >
  9588. <productMenu id="protocol"
  9589. type="2" >
  9590. </productMenu>
  9591. <productMenu id="sip"
  9592. type="1" >
  9593. </productMenu>
  9594. <productMenu id="bluetoothIntercom"
  9595. type="1" >
  9596. </productMenu>
  9597. <productMenu id="phone"
  9598. type="1" >
  9599. </productMenu>
  9600. <productMenu id="music"
  9601. type="1" >
  9602. </productMenu>
  9603. <productMenu id="fmradio"
  9604. type="0" >
  9605. </productMenu>
  9606. <productMenu id="deviceSetting"
  9607. type="1"
  9608. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9609. <productMenuURL version="3.0"
  9610. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9611. />
  9612. </productMenu>
  9613. <productMenu id="quickGuide"
  9614. type="0"
  9615. url=""
  9616. size="934KB" >
  9617. </productMenu>
  9618. <productMenu id="userGuide"
  9619. type="1"
  9620. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9621. size="1.14MB" >
  9622. </productMenu>
  9623. <productMenu id="connectGuide"
  9624. type="1"
  9625. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9626. size="1.12MB" >
  9627. </productMenu>
  9628. <productMenu id="volume"
  9629. type="15" >
  9630. </productMenu>
  9631. <productID id="3360"
  9632. />
  9633. <productGroupable type="0"
  9634. />
  9635. </product>
  9636. <product id="SF1"
  9637. name="SF1"
  9638. series="SF"
  9639. latestVersion="2.0.5"
  9640. show = "-1" >
  9641. <productMenu id="protocol"
  9642. type="1"
  9643. url="1">
  9644. </productMenu>
  9645. <productMenu id="sip"
  9646. type="1" >
  9647. </productMenu>
  9648. <productMenu id="bluetoothIntercom"
  9649. type="1" >
  9650. <productMenuType version="1.1"
  9651. type="0"
  9652. />
  9653. </productMenu>
  9654. <productMenu id="phone"
  9655. type="1" >
  9656. </productMenu>
  9657. <productMenu id="music"
  9658. type="1" >
  9659. </productMenu>
  9660. <productMenu id="deviceSetting"
  9661. type="1"
  9662. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  9663. <productMenuURL version="1.1"
  9664. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  9665. />
  9666. <productMenuURL version="1.0"
  9667. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  9668. />
  9669. </productMenu>
  9670. <productMenu id="quickGuide"
  9671. type="1"
  9672. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  9673. size="401KB" >
  9674. </productMenu>
  9675. <productMenu id="userGuide"
  9676. type="1"
  9677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9678. size="1.91MB" >
  9679. </productMenu>
  9680. <productMenu id="volume"
  9681. type="3" >
  9682. </productMenu>
  9683. <productID id="5410"
  9684. />
  9685. <productGroupable type="0"
  9686. />
  9687. </product>
  9688. <product id="SF1"
  9689. name="SF1"
  9690. series="SF"
  9691. latestVersion="3.3.4"
  9692. show = "1" >
  9693. <productMenu id="protocol"
  9694. type="2" >
  9695. </productMenu>
  9696. <productMenu id="sip"
  9697. type="1" >
  9698. </productMenu>
  9699. <productMenu id="bluetoothIntercom"
  9700. type="1" >
  9701. </productMenu>
  9702. <productMenu id="phone"
  9703. type="1" >
  9704. </productMenu>
  9705. <productMenu id="music"
  9706. type="1" >
  9707. </productMenu>
  9708. <productMenu id="fmradio"
  9709. type="0" >
  9710. </productMenu>
  9711. <productMenu id="deviceSetting"
  9712. type="1"
  9713. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9714. <productMenuURL version="3.0"
  9715. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9716. />
  9717. </productMenu>
  9718. <productMenu id="quickGuide"
  9719. type="0"
  9720. url=""
  9721. size="934KB" >
  9722. </productMenu>
  9723. <productMenu id="userGuide"
  9724. type="1"
  9725. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9726. size="1.14MB" >
  9727. </productMenu>
  9728. <productMenu id="connectGuide"
  9729. type="1"
  9730. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9731. size="1.12MB" >
  9732. </productMenu>
  9733. <productMenu id="volume"
  9734. type="15" >
  9735. </productMenu>
  9736. <productID id="3350"
  9737. />
  9738. <productGroupable type="0"
  9739. />
  9740. </product>
  9741. <product id="SFR"
  9742. name="SFR"
  9743. series="SF"
  9744. latestVersion="1.1.1"
  9745. show = "1" >
  9746. <productMenu id="protocol"
  9747. type="1"
  9748. url="3">
  9749. </productMenu>
  9750. <productMenu id="sip"
  9751. type="1" >
  9752. </productMenu>
  9753. <productMenu id="bluetoothIntercom"
  9754. type="1" >
  9755. </productMenu>
  9756. <productMenu id="phone"
  9757. type="1" >
  9758. </productMenu>
  9759. <productMenu id="music"
  9760. type="1" >
  9761. </productMenu>
  9762. <productMenu id="fmradio"
  9763. type="1" >
  9764. </productMenu>
  9765. <productMenu id="deviceSetting"
  9766. type="1"
  9767. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9768. </productMenu>
  9769. <productMenu id="quickGuide"
  9770. type="1"
  9771. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  9772. size="607KB" >
  9773. </productMenu>
  9774. <productMenu id="userGuide"
  9775. type="1"
  9776. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  9777. size="1.91MB" >
  9778. </productMenu>
  9779. <productMenu id="volume"
  9780. type="4" >
  9781. </productMenu>
  9782. <productID id="5418"
  9783. />
  9784. <productGroupable type="0"
  9785. />
  9786. </product>
  9787. <product id="20S"
  9788. name="20S"
  9789. series="20"
  9790. latestVersion="2.2.3"
  9791. show = "1" >
  9792. <productMenu id="protocol"
  9793. type="0">
  9794. </productMenu>
  9795. <productMenu id="wa"
  9796. type="5" >
  9797. </productMenu>
  9798. <productMenu id="sip"
  9799. type="1" >
  9800. <productMenuType version="1.0"
  9801. type="0"
  9802. />
  9803. </productMenu>
  9804. <productMenu id="bluetoothIntercom"
  9805. type="1" >
  9806. <productMenuType version="1.0"
  9807. type="0"
  9808. />
  9809. </productMenu>
  9810. <productMenu id="intercomSetting"
  9811. type="1" >
  9812. </productMenu>
  9813. <productMenu id="phone"
  9814. type="2" >
  9815. </productMenu>
  9816. <productMenu id="fmradio"
  9817. type="3" >
  9818. </productMenu>
  9819. <productMenu id="deviceSetting"
  9820. type="1"
  9821. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9822. <productMenuURL version="2.0.2"
  9823. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9824. />
  9825. <productMenuURL version="1.5"
  9826. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9827. />
  9828. <productMenuURL version="1.4.1"
  9829. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9830. />
  9831. <productMenuURL version="1.1"
  9832. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9833. />
  9834. <productMenuURL version="1.0"
  9835. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9836. />
  9837. </productMenu>
  9838. <productMenu id="quickGuide"
  9839. type="0"
  9840. url=""
  9841. size="264KB" >
  9842. </productMenu>
  9843. <productMenu id="userGuide"
  9844. type="1"
  9845. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9846. size="3.09MB" >
  9847. </productMenu>
  9848. <productMenu id="connectGuide"
  9849. type="1"
  9850. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9851. size="1.12MB" >
  9852. </productMenu>
  9853. <productID id="4210"
  9854. />
  9855. <productGroupable type="1"
  9856. />
  9857. </product>
  9858. <product id="20S_EVO"
  9859. name="20S EVO"
  9860. series="20"
  9861. latestVersion="2.2.3"
  9862. show = "1" >
  9863. <productMenu id="protocol"
  9864. type="0">
  9865. </productMenu>
  9866. <productMenu id="wa"
  9867. type="5" >
  9868. </productMenu>
  9869. <productMenu id="sip"
  9870. type="1" >
  9871. <productMenuType version="1.0"
  9872. type="0"
  9873. />
  9874. </productMenu>
  9875. <productMenu id="bluetoothIntercom"
  9876. type="1" >
  9877. <productMenuType version="1.0"
  9878. type="0"
  9879. />
  9880. </productMenu>
  9881. <productMenu id="intercomSetting"
  9882. type="1" >
  9883. </productMenu>
  9884. <productMenu id="phone"
  9885. type="2" >
  9886. </productMenu>
  9887. <productMenu id="fmradio"
  9888. type="3" >
  9889. </productMenu>
  9890. <productMenu id="deviceSetting"
  9891. type="1"
  9892. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9893. <productMenuURL version="2.0.2"
  9894. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9895. />
  9896. <productMenuURL version="1.5"
  9897. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9898. />
  9899. <productMenuURL version="1.4.1"
  9900. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9901. />
  9902. <productMenuURL version="1.1"
  9903. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9904. />
  9905. <productMenuURL version="1.0"
  9906. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9907. />
  9908. </productMenu>
  9909. <productMenu id="quickGuide"
  9910. type="0"
  9911. url=""
  9912. size="264KB" >
  9913. </productMenu>
  9914. <productMenu id="userGuide"
  9915. type="1"
  9916. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9917. size="3.09MB" >
  9918. </productMenu>
  9919. <productMenu id="connectGuide"
  9920. type="1"
  9921. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9922. size="1.12MB" >
  9923. </productMenu>
  9924. <productID id="4210"
  9925. />
  9926. <productProductKey key="16"
  9927. />
  9928. <productGroupable type="1"
  9929. />
  9930. </product>
  9931. <product id="10S"
  9932. name="10S"
  9933. series="10"
  9934. latestVersion="3.0.2"
  9935. show = "1" >
  9936. <productMenu id="protocol"
  9937. type="3" >
  9938. </productMenu>
  9939. <productMenu id="sip"
  9940. type="1" >
  9941. </productMenu>
  9942. <productMenu id="bluetoothIntercom"
  9943. type="1" >
  9944. </productMenu>
  9945. <productMenu id="phone"
  9946. type="1" >
  9947. </productMenu>
  9948. <productMenu id="deviceSetting"
  9949. type="1"
  9950. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9951. </productMenu>
  9952. <productMenu id="quickGuide"
  9953. type="1"
  9954. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9955. size="934KB" >
  9956. </productMenu>
  9957. <productMenu id="userGuide"
  9958. type="1"
  9959. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9960. size="1.14MB" >
  9961. </productMenu>
  9962. <productMenu id="connectGuide"
  9963. type="1"
  9964. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9965. size="1.12MB" >
  9966. </productMenu>
  9967. <productID id="3380"
  9968. />
  9969. <productGroupable type="0"
  9970. />
  9971. </product>
  9972. <product id="10S"
  9973. name="10S"
  9974. series="10"
  9975. latestVersion="2.1.1"
  9976. show = "-1" >
  9977. <productMenu id="protocol"
  9978. type="0">
  9979. </productMenu>
  9980. <productMenu id="sip"
  9981. type="1" >
  9982. </productMenu>
  9983. <productMenu id="bluetoothIntercom"
  9984. type="1" >
  9985. </productMenu>
  9986. <productMenu id="phone"
  9987. type="2" >
  9988. </productMenu>
  9989. <productMenu id="fmradio"
  9990. type="3" >
  9991. </productMenu>
  9992. <productMenu id="deviceSetting"
  9993. type="1"
  9994. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9995. <productMenuURL version="1.5"
  9996. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9997. />
  9998. <productMenuURL version="1.3.1"
  9999. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  10000. />
  10001. </productMenu>
  10002. <productMenu id="quickGuide"
  10003. type="1"
  10004. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  10005. size="310KB" >
  10006. </productMenu>
  10007. <productMenu id="userGuide"
  10008. type="1"
  10009. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  10010. size="1.57MB" >
  10011. </productMenu>
  10012. <productID id="5530"
  10013. />
  10014. <productGroupable type="0"
  10015. />
  10016. </product>
  10017. <product id="Apex"
  10018. name="Apex"
  10019. series="APEX"
  10020. latestVersion="1.0.1"
  10021. latestVersionVoicePrompt="0.2"
  10022. show = "1" >
  10023. <productMenu id="protocol"
  10024. type="2" >
  10025. </productMenu>
  10026. <productMenu id="warranty"
  10027. type="1" >
  10028. </productMenu>
  10029. <productMenu id="serialNumber"
  10030. type="1" >
  10031. </productMenu>
  10032. <productMenu id="ota"
  10033. type="2" >
  10034. <otaLanguages>
  10035. <otaLanguage
  10036. id="0"
  10037. name="English"
  10038. package="0"
  10039. />
  10040. <otaLanguage
  10041. id="0"
  10042. name="Français"
  10043. package="1"
  10044. />
  10045. <otaLanguage
  10046. id="0"
  10047. name="Español"
  10048. package="2"
  10049. />
  10050. <otaLanguage
  10051. id="0"
  10052. name="Italiano"
  10053. package="3"
  10054. />
  10055. <otaLanguage
  10056. id="0"
  10057. name="Deutsch"
  10058. package="4"
  10059. />
  10060. <otaLanguage
  10061. id="0"
  10062. name="Nederlands"
  10063. package="5"
  10064. />
  10065. <otaLanguage
  10066. id="0"
  10067. name="Русский"
  10068. package="6"
  10069. />
  10070. <otaLanguage
  10071. id="0"
  10072. name="简体中文"
  10073. package="7"
  10074. />
  10075. <otaLanguage
  10076. id="0"
  10077. name="한국어"
  10078. package="8"
  10079. />
  10080. <otaLanguage
  10081. id="0"
  10082. name="日本語"
  10083. package="9"
  10084. />
  10085. <otaLanguage
  10086. id="0"
  10087. name="Suomi"
  10088. package="10"
  10089. />
  10090. <otaLanguage
  10091. id="0"
  10092. name="Polski"
  10093. package="11"
  10094. />
  10095. </otaLanguages>
  10096. <otaPackages>
  10097. <package
  10098. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3.img"
  10099. size="5183988"
  10100. />
  10101. <package
  10102. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fr-FR.img"
  10103. size="5183988"
  10104. />
  10105. <package
  10106. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-es-ES.img"
  10107. size="5183988"
  10108. />
  10109. <package
  10110. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-it-IT.img"
  10111. size="5183988"
  10112. />
  10113. <package
  10114. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-de-DE.img"
  10115. size="5183988"
  10116. />
  10117. <package
  10118. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-nl-NL.img"
  10119. size="5183988"
  10120. />
  10121. <package
  10122. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ru-RU.img"
  10123. size="5183988"
  10124. />
  10125. <package
  10126. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-cmn-CN.img"
  10127. size="5183988"
  10128. />
  10129. <package
  10130. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ko-KR.img"
  10131. size="5183988"
  10132. />
  10133. <package
  10134. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ja-JP.img"
  10135. size="5183988"
  10136. />
  10137. <package
  10138. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fi-FI.img"
  10139. size="5183988"
  10140. />
  10141. <package
  10142. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-pl-PL.img"
  10143. size="5183988"
  10144. />
  10145. </otaPackages>
  10146. </productMenu>
  10147. <productMenu id="sip"
  10148. type="1" >
  10149. </productMenu>
  10150. <productMenu id="bluetoothIntercom"
  10151. type="1" >
  10152. </productMenu>
  10153. <productMenu id="phone"
  10154. type="1" >
  10155. </productMenu>
  10156. <productMenu id="music"
  10157. type="1" >
  10158. </productMenu>
  10159. <productMenu id="fmradio"
  10160. type="1"
  10161. url="1" >
  10162. </productMenu>
  10163. <productMenu id="deviceSetting"
  10164. type="1"
  10165. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  10166. <productMenuURL version="1.0"
  10167. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  10168. />
  10169. </productMenu>
  10170. <productMenu id="quickGuide"
  10171. type="0"
  10172. url=""
  10173. size="934KB" >
  10174. </productMenu>
  10175. <productMenu id="userGuide"
  10176. type="1"
  10177. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  10178. size="1.14MB" >
  10179. </productMenu>
  10180. <productMenu id="connectGuide"
  10181. type="1"
  10182. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  10183. size="1.12MB" >
  10184. </productMenu>
  10185. <productMenu id="volume+"
  10186. type="2"
  10187. url="0x0004" >
  10188. </productMenu>
  10189. <productMenu id="appearance"
  10190. type="1"
  10191. url="1|white,silver,black" >
  10192. </productMenu>
  10193. <productMenu id="battery"
  10194. type="1" >
  10195. </productMenu>
  10196. <productID id="3452"
  10197. />
  10198. <productGroupable type="0"
  10199. />
  10200. </product>
  10201. <product id="ApexPlus"
  10202. name="Apex Plus"
  10203. series="APEX"
  10204. latestVersion="1.0.1"
  10205. latestVersionVoicePrompt="0.2"
  10206. show = "1" >
  10207. <productMenu id="protocol"
  10208. type="2" >
  10209. </productMenu>
  10210. <productMenu id="warranty"
  10211. type="1" >
  10212. </productMenu>
  10213. <productMenu id="serialNumber"
  10214. type="1" >
  10215. </productMenu>
  10216. <productMenu id="ota"
  10217. type="2" >
  10218. <otaLanguages>
  10219. <otaLanguage
  10220. id="0"
  10221. name="English"
  10222. package="0"
  10223. />
  10224. <otaLanguage
  10225. id="0"
  10226. name="Français"
  10227. package="1"
  10228. />
  10229. <otaLanguage
  10230. id="0"
  10231. name="Español"
  10232. package="2"
  10233. />
  10234. <otaLanguage
  10235. id="0"
  10236. name="Italiano"
  10237. package="3"
  10238. />
  10239. <otaLanguage
  10240. id="0"
  10241. name="Deutsch"
  10242. package="4"
  10243. />
  10244. <otaLanguage
  10245. id="0"
  10246. name="Nederlands"
  10247. package="5"
  10248. />
  10249. <otaLanguage
  10250. id="0"
  10251. name="Русский"
  10252. package="6"
  10253. />
  10254. <otaLanguage
  10255. id="0"
  10256. name="简体中文"
  10257. package="7"
  10258. />
  10259. <otaLanguage
  10260. id="0"
  10261. name="한국어"
  10262. package="8"
  10263. />
  10264. <otaLanguage
  10265. id="0"
  10266. name="日本語"
  10267. package="9"
  10268. />
  10269. <otaLanguage
  10270. id="0"
  10271. name="Suomi"
  10272. package="10"
  10273. />
  10274. <otaLanguage
  10275. id="0"
  10276. name="Polski"
  10277. package="11"
  10278. />
  10279. </otaLanguages>
  10280. <otaPackages>
  10281. <package
  10282. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3.img"
  10283. size="5183988"
  10284. />
  10285. <package
  10286. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fr-FR.img"
  10287. size="5183988"
  10288. />
  10289. <package
  10290. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-es-ES.img"
  10291. size="5183988"
  10292. />
  10293. <package
  10294. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-it-IT.img"
  10295. size="5183988"
  10296. />
  10297. <package
  10298. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-de-DE.img"
  10299. size="5183988"
  10300. />
  10301. <package
  10302. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-nl-NL.img"
  10303. size="5183988"
  10304. />
  10305. <package
  10306. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ru-RU.img"
  10307. size="5183988"
  10308. />
  10309. <package
  10310. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-cmn-CN.img"
  10311. size="5183988"
  10312. />
  10313. <package
  10314. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ko-KR.img"
  10315. size="5183988"
  10316. />
  10317. <package
  10318. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ja-JP.img"
  10319. size="5183988"
  10320. />
  10321. <package
  10322. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fi-FI.img"
  10323. size="5183988"
  10324. />
  10325. <package
  10326. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-pl-PL.img"
  10327. size="5183988"
  10328. />
  10329. </otaPackages>
  10330. </productMenu>
  10331. <productMenu id="sip"
  10332. type="1" >
  10333. </productMenu>
  10334. <productMenu id="bluetoothIntercom"
  10335. type="1" >
  10336. </productMenu>
  10337. <productMenu id="phone"
  10338. type="1" >
  10339. </productMenu>
  10340. <productMenu id="music"
  10341. type="1" >
  10342. </productMenu>
  10343. <productMenu id="fmradio"
  10344. type="1"
  10345. url="1" >
  10346. </productMenu>
  10347. <productMenu id="deviceSetting"
  10348. type="1"
  10349. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  10350. <productMenuURL version="1.0"
  10351. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  10352. />
  10353. </productMenu>
  10354. <productMenu id="quickGuide"
  10355. type="0"
  10356. url=""
  10357. size="934KB" >
  10358. </productMenu>
  10359. <productMenu id="userGuide"
  10360. type="1"
  10361. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  10362. size="1.14MB" >
  10363. </productMenu>
  10364. <productMenu id="connectGuide"
  10365. type="1"
  10366. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  10367. size="1.12MB" >
  10368. </productMenu>
  10369. <productMenu id="volume+"
  10370. type="2"
  10371. url="0x0004" >
  10372. </productMenu>
  10373. <productMenu id="appearance"
  10374. type="1"
  10375. url="1|white,silver,black" >
  10376. </productMenu>
  10377. <productMenu id="battery"
  10378. type="1" >
  10379. </productMenu>
  10380. <productID id="3453"
  10381. />
  10382. <productGroupable type="0"
  10383. />
  10384. </product>
  10385. <product id="10R2"
  10386. name="10R 2"
  10387. series="10"
  10388. latestVersion="0.9"
  10389. latestVersionVoicePrompt="1.1"
  10390. show = "-1" >
  10391. <productMenu id="protocol"
  10392. type="2" >
  10393. </productMenu>
  10394. <productMenu id="ota"
  10395. type="2" >
  10396. <otaPackages>
  10397. <package
  10398. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  10399. size="2945812"
  10400. />
  10401. </otaPackages>
  10402. </productMenu>
  10403. <productMenu id="sip"
  10404. type="1" >
  10405. </productMenu>
  10406. <productMenu id="bluetoothIntercom"
  10407. type="1" >
  10408. </productMenu>
  10409. <productMenu id="phone"
  10410. type="1" >
  10411. </productMenu>
  10412. <productMenu id="music"
  10413. type="1" >
  10414. </productMenu>
  10415. <productMenu id="fmradio"
  10416. type="1"
  10417. url="1" >
  10418. </productMenu>
  10419. <productMenu id="deviceSetting"
  10420. type="1"
  10421. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  10422. </productMenu>
  10423. <productMenu id="quickGuide"
  10424. type="1"
  10425. url=""
  10426. size="934KB" >
  10427. </productMenu>
  10428. <productMenu id="userGuide"
  10429. type="0"
  10430. url=""
  10431. size="1.14MB" >
  10432. </productMenu>
  10433. <productMenu id="volume"
  10434. type="15" >
  10435. </productMenu>
  10436. <productID id="4000"
  10437. />
  10438. <productGroupable type="0"
  10439. />
  10440. </product>
  10441. <product id="10R"
  10442. name="10R"
  10443. series="10"
  10444. latestVersion="2.1.1"
  10445. show = "1" >
  10446. <productMenu id="protocol"
  10447. type="0">
  10448. </productMenu>
  10449. <productMenu id="sip"
  10450. type="1" >
  10451. <productMenuType version="1.0.2"
  10452. type="0"
  10453. />
  10454. </productMenu>
  10455. <productMenu id="bluetoothIntercom"
  10456. type="1" >
  10457. <productMenuType version="1.0.2"
  10458. type="0"
  10459. />
  10460. </productMenu>
  10461. <productMenu id="phone"
  10462. type="2" >
  10463. </productMenu>
  10464. <productMenu id="fmradio"
  10465. type="3" >
  10466. </productMenu>
  10467. <productMenu id="deviceSetting"
  10468. type="1"
  10469. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10470. <productMenuURL version="1.4"
  10471. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  10472. />
  10473. <productMenuURL version="1.2.1"
  10474. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  10475. />
  10476. <productMenuURL version="1.0.2"
  10477. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  10478. />
  10479. <productMenuURL version="1.0"
  10480. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  10481. />
  10482. </productMenu>
  10483. <productMenu id="quickGuide"
  10484. type="1"
  10485. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  10486. size="400KB" >
  10487. </productMenu>
  10488. <productMenu id="userGuide"
  10489. type="1"
  10490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  10491. size="2.75MB" >
  10492. </productMenu>
  10493. <productMenu id="connectGuide"
  10494. type="1"
  10495. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10496. size="1.12MB" >
  10497. </productMenu>
  10498. <productID id="5520"
  10499. />
  10500. <productGroupable type="0"
  10501. />
  10502. </product>
  10503. <product id="10C_EVO"
  10504. name="10C EVO"
  10505. series="10"
  10506. latestVersion="1.7"
  10507. show = "1" >
  10508. <productMenu id="protocol"
  10509. type="0">
  10510. </productMenu>
  10511. <productMenu id="sip"
  10512. type="1" >
  10513. </productMenu>
  10514. <productMenu id="bluetoothIntercom"
  10515. type="1" >
  10516. </productMenu>
  10517. <productMenu id="phone"
  10518. type="2" >
  10519. </productMenu>
  10520. <productMenu id="fmradio"
  10521. type="3" >
  10522. </productMenu>
  10523. <productMenu id="deviceSetting"
  10524. type="1"
  10525. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  10526. <productMenuURL version="1.3.1"
  10527. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10528. />
  10529. </productMenu>
  10530. <productMenu id="quickGuide"
  10531. type="1"
  10532. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  10533. size="1.32MB" >
  10534. </productMenu>
  10535. <productMenu id="userGuide"
  10536. type="1"
  10537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  10538. size="1.68MB" >
  10539. </productMenu>
  10540. <productMenu id="connectGuide"
  10541. type="1"
  10542. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10543. size="1.12MB" >
  10544. </productMenu>
  10545. <productID id="5570"
  10546. />
  10547. <productGroupable type="0"
  10548. />
  10549. </product>
  10550. <product id="10C_Pro"
  10551. name="10C Pro"
  10552. series="10"
  10553. latestVersion="2.7.1"
  10554. show = "1" >
  10555. <productMenu id="protocol"
  10556. type="0">
  10557. </productMenu>
  10558. <productMenu id="sip"
  10559. type="1" >
  10560. </productMenu>
  10561. <productMenu id="bluetoothIntercom"
  10562. type="1" >
  10563. </productMenu>
  10564. <productMenu id="phone"
  10565. type="2" >
  10566. </productMenu>
  10567. <productMenu id="fmradio"
  10568. type="3" >
  10569. </productMenu>
  10570. <productMenu id="deviceSetting"
  10571. type="1"
  10572. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  10573. <productMenuURL version="2.5.1"
  10574. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10575. />
  10576. <productMenuURL version="1.0"
  10577. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  10578. />
  10579. </productMenu>
  10580. <productMenu id="quickGuide"
  10581. type="1"
  10582. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  10583. size="651KB" >
  10584. </productMenu>
  10585. <productMenu id="userGuide"
  10586. type="1"
  10587. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  10588. size="2.34MB" >
  10589. </productMenu>
  10590. <productMenu id="connectGuide"
  10591. type="1"
  10592. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10593. size="1.12MB" >
  10594. </productMenu>
  10595. <productID id="5580"
  10596. />
  10597. <productGroupable type="0"
  10598. />
  10599. </product>
  10600. <product id="10C"
  10601. name="10C"
  10602. series="10"
  10603. latestVersion="3.0.4"
  10604. show = "1" >
  10605. <productMenu id="protocol"
  10606. type="0">
  10607. </productMenu>
  10608. <productMenu id="sip"
  10609. type="1" >
  10610. <productMenuType version="1.0.4"
  10611. type="0"
  10612. />
  10613. </productMenu>
  10614. <productMenu id="bluetoothIntercom"
  10615. type="1" >
  10616. <productMenuType version="1.0.4"
  10617. type="0"
  10618. />
  10619. </productMenu>
  10620. <productMenu id="phone"
  10621. type="2" >
  10622. </productMenu>
  10623. <productMenu id="fmradio"
  10624. type="3" >
  10625. </productMenu>
  10626. <productMenu id="deviceSetting"
  10627. type="1"
  10628. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  10629. <productMenuURL version="2.3"
  10630. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  10631. />
  10632. <productMenuURL version="2.1.1"
  10633. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  10634. />
  10635. <productMenuURL version="1.0.4"
  10636. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  10637. />
  10638. <productMenuURL version="1.0.2"
  10639. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  10640. />
  10641. </productMenu>
  10642. <productMenu id="quickGuide"
  10643. type="1"
  10644. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  10645. size="935KB" >
  10646. </productMenu>
  10647. <productMenu id="userGuide"
  10648. type="1"
  10649. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  10650. size="2.82MB" >
  10651. </productMenu>
  10652. <productMenu id="connectGuide"
  10653. type="1"
  10654. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10655. size="1.12MB" >
  10656. </productMenu>
  10657. <productID id="5510"
  10658. />
  10659. <productGroupable type="0"
  10660. />
  10661. </product>
  10662. <product id="10U_GT_AIR"
  10663. name="10U GT-Air"
  10664. series="10"
  10665. latestVersion="2.0.4"
  10666. show = "1" >
  10667. <productMenu id="protocol"
  10668. type="0">
  10669. </productMenu>
  10670. <productMenu id="sip"
  10671. type="1" >
  10672. <productMenuType version="1.0.2"
  10673. type="0"
  10674. />
  10675. </productMenu>
  10676. <productMenu id="bluetoothIntercom"
  10677. type="1" >
  10678. <productMenuType version="1.0.2"
  10679. type="0"
  10680. />
  10681. </productMenu>
  10682. <productMenu id="phone"
  10683. type="2" >
  10684. </productMenu>
  10685. <productMenu id="fmradio"
  10686. type="3" >
  10687. </productMenu>
  10688. <productMenu id="deviceSetting"
  10689. type="1"
  10690. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10691. <productMenuURL version="1.3.2"
  10692. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10693. />
  10694. <productMenuURL version="1.0.2"
  10695. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10696. />
  10697. </productMenu>
  10698. <productMenu id="quickGuide"
  10699. type="1"
  10700. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  10701. size="685KB" >
  10702. </productMenu>
  10703. <productMenu id="userGuide"
  10704. type="1"
  10705. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10706. size="684KB" >
  10707. </productMenu>
  10708. <productMenu id="connectGuide"
  10709. type="1"
  10710. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10711. size="1.12MB" >
  10712. </productMenu>
  10713. <productID id="5610"
  10714. />
  10715. <productGroupable type="0"
  10716. />
  10717. </product>
  10718. <product id="10U_NEOTEC"
  10719. name="10U Neotec"
  10720. series="10"
  10721. latestVersion="2.0.4"
  10722. show = "1" >
  10723. <productMenu id="protocol"
  10724. type="0">
  10725. </productMenu>
  10726. <productMenu id="sip"
  10727. type="1" >
  10728. <productMenuType version="1.0.2"
  10729. type="0"
  10730. />
  10731. </productMenu>
  10732. <productMenu id="bluetoothIntercom"
  10733. type="1" >
  10734. <productMenuType version="1.0.2"
  10735. type="0"
  10736. />
  10737. </productMenu>
  10738. <productMenu id="phone"
  10739. type="2" >
  10740. </productMenu>
  10741. <productMenu id="fmradio"
  10742. type="3" >
  10743. </productMenu>
  10744. <productMenu id="deviceSetting"
  10745. type="1"
  10746. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10747. <productMenuURL version="1.3.2"
  10748. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10749. />
  10750. <productMenuURL version="1.0.2"
  10751. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10752. />
  10753. </productMenu>
  10754. <productMenu id="quickGuide"
  10755. type="1"
  10756. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  10757. size="689KB" >
  10758. </productMenu>
  10759. <productMenu id="userGuide"
  10760. type="1"
  10761. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10762. size="684KB" >
  10763. </productMenu>
  10764. <productMenu id="connectGuide"
  10765. type="1"
  10766. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10767. size="1.12MB" >
  10768. </productMenu>
  10769. <productID id="5611"
  10770. />
  10771. <productGroupable type="0"
  10772. />
  10773. </product>
  10774. <product id="10U_J_CRUISE"
  10775. name="10U J-Cruise"
  10776. series="10"
  10777. latestVersion="2.0.4"
  10778. show = "1" >
  10779. <productMenu id="protocol"
  10780. type="0">
  10781. </productMenu>
  10782. <productMenu id="sip"
  10783. type="1" >
  10784. <productMenuType version="1.0.2"
  10785. type="0"
  10786. />
  10787. </productMenu>
  10788. <productMenu id="bluetoothIntercom"
  10789. type="1" >
  10790. <productMenuType version="1.0.2"
  10791. type="0"
  10792. />
  10793. </productMenu>
  10794. <productMenu id="phone"
  10795. type="2" >
  10796. </productMenu>
  10797. <productMenu id="fmradio"
  10798. type="3" >
  10799. </productMenu>
  10800. <productMenu id="deviceSetting"
  10801. type="1"
  10802. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10803. <productMenuURL version="1.3.2"
  10804. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10805. />
  10806. <productMenuURL version="1.0.2"
  10807. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10808. />
  10809. </productMenu>
  10810. <productMenu id="quickGuide"
  10811. type="1"
  10812. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  10813. size="686KB" >
  10814. </productMenu>
  10815. <productMenu id="userGuide"
  10816. type="1"
  10817. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10818. size="684KB" >
  10819. </productMenu>
  10820. <productMenu id="connectGuide"
  10821. type="1"
  10822. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10823. size="1.12MB" >
  10824. </productMenu>
  10825. <productID id="5612"
  10826. />
  10827. <productGroupable type="0"
  10828. />
  10829. </product>
  10830. <product id="10U_C3"
  10831. name="10U C3/C3Pro"
  10832. series="10"
  10833. latestVersion="2.0.4"
  10834. show = "1" >
  10835. <productMenu id="protocol"
  10836. type="0">
  10837. </productMenu>
  10838. <productMenu id="sip"
  10839. type="1" >
  10840. <productMenuType version="1.0.2"
  10841. type="0"
  10842. />
  10843. </productMenu>
  10844. <productMenu id="bluetoothIntercom"
  10845. type="1" >
  10846. <productMenuType version="1.0.2"
  10847. type="0"
  10848. />
  10849. </productMenu>
  10850. <productMenu id="phone"
  10851. type="2" >
  10852. </productMenu>
  10853. <productMenu id="fmradio"
  10854. type="3" >
  10855. </productMenu>
  10856. <productMenu id="deviceSetting"
  10857. type="1"
  10858. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10859. <productMenuURL version="1.3.2"
  10860. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10861. />
  10862. <productMenuURL version="1.0.2"
  10863. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10864. />
  10865. </productMenu>
  10866. <productMenu id="quickGuide"
  10867. type="1"
  10868. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10869. size="199KB" >
  10870. </productMenu>
  10871. <productMenu id="userGuide"
  10872. type="1"
  10873. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10874. size="684KB" >
  10875. </productMenu>
  10876. <productMenu id="connectGuide"
  10877. type="1"
  10878. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10879. size="1.12MB" >
  10880. </productMenu>
  10881. <productID id="5620"
  10882. />
  10883. <productGroupable type="0"
  10884. />
  10885. </product>
  10886. <product id="10U_ARAI"
  10887. name="10U Arai"
  10888. series="10"
  10889. latestVersion="2.0.4"
  10890. show = "1" >
  10891. <productMenu id="protocol"
  10892. type="0">
  10893. </productMenu>
  10894. <productMenu id="sip"
  10895. type="1" >
  10896. <productMenuType version="1.0.2"
  10897. type="0"
  10898. />
  10899. </productMenu>
  10900. <productMenu id="bluetoothIntercom"
  10901. type="1" >
  10902. <productMenuType version="1.0.2"
  10903. type="0"
  10904. />
  10905. </productMenu>
  10906. <productMenu id="phone"
  10907. type="2" >
  10908. </productMenu>
  10909. <productMenu id="fmradio"
  10910. type="3" >
  10911. </productMenu>
  10912. <productMenu id="deviceSetting"
  10913. type="1"
  10914. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10915. <productMenuURL version="1.3.2"
  10916. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10917. />
  10918. <productMenuURL version="1.0.2"
  10919. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10920. />
  10921. </productMenu>
  10922. <productMenu id="quickGuide"
  10923. type="1"
  10924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10925. size="689KB" >
  10926. </productMenu>
  10927. <productMenu id="userGuide"
  10928. type="1"
  10929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10930. size="684KB" >
  10931. </productMenu>
  10932. <productMenu id="connectGuide"
  10933. type="1"
  10934. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10935. size="1.12MB" >
  10936. </productMenu>
  10937. <productID id="5621"
  10938. />
  10939. <productGroupable type="0"
  10940. />
  10941. </product>
  10942. <product id="10Upad"
  10943. name="10Upad"
  10944. series="10"
  10945. latestVersion="2.0.3"
  10946. show = "1" >
  10947. <productMenu id="protocol"
  10948. type="0">
  10949. </productMenu>
  10950. <productMenu id="sip"
  10951. type="1" >
  10952. </productMenu>
  10953. <productMenu id="bluetoothIntercom"
  10954. type="1" >
  10955. </productMenu>
  10956. <productMenu id="phone"
  10957. type="2" >
  10958. </productMenu>
  10959. <productMenu id="fmradio"
  10960. type="3" >
  10961. </productMenu>
  10962. <productMenu id="deviceSetting"
  10963. type="1"
  10964. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10965. <productMenuURL version="1.0.3"
  10966. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10967. />
  10968. </productMenu>
  10969. <productMenu id="quickGuide"
  10970. type="1"
  10971. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10972. size="615KB" >
  10973. </productMenu>
  10974. <productMenu id="userGuide"
  10975. type="1"
  10976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10977. size="0.99MB" >
  10978. </productMenu>
  10979. <productMenu id="connectGuide"
  10980. type="1"
  10981. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10982. size="1.12MB" >
  10983. </productMenu>
  10984. <productID id="6210"
  10985. />
  10986. <productGroupable type="0"
  10987. />
  10988. </product>
  10989. <product id="5S"
  10990. name="5S"
  10991. series="5"
  10992. latestVersion="2.3.1"
  10993. show = "1" >
  10994. <productMenu id="protocol"
  10995. type="3" >
  10996. </productMenu>
  10997. <productMenu id="sip"
  10998. type="1" >
  10999. </productMenu>
  11000. <productMenu id="bluetoothIntercom"
  11001. type="1" >
  11002. </productMenu>
  11003. <productMenu id="phone"
  11004. type="1" >
  11005. </productMenu>
  11006. <productMenu id="fmradio"
  11007. type="0" >
  11008. </productMenu>
  11009. <productMenu id="deviceSetting"
  11010. type="1"
  11011. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11012. </productMenu>
  11013. <productMenu id="quickGuide"
  11014. type="0"
  11015. url=""
  11016. size="934KB" >
  11017. </productMenu>
  11018. <productMenu id="userGuide"
  11019. type="1"
  11020. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11021. size="1.14MB" >
  11022. </productMenu>
  11023. <productMenu id="connectGuide"
  11024. type="1"
  11025. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  11026. size="1.12MB" >
  11027. </productMenu>
  11028. <productID id="5590"
  11029. />
  11030. <productGroupable type="0"
  11031. />
  11032. </product>
  11033. <product id="5S"
  11034. name="5S"
  11035. series="5"
  11036. latestVersion="1.2"
  11037. show = "-1" >
  11038. <productMenu id="protocol"
  11039. type="0">
  11040. </productMenu>
  11041. <productMenu id="sip"
  11042. type="1" >
  11043. </productMenu>
  11044. <productMenu id="bluetoothIntercom"
  11045. type="1" >
  11046. </productMenu>
  11047. <productMenu id="phone"
  11048. type="2" >
  11049. </productMenu>
  11050. <productMenu id="fmradio"
  11051. type="3" >
  11052. </productMenu>
  11053. <productMenu id="deviceSetting"
  11054. type="1"
  11055. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  11056. </productMenu>
  11057. <productMenu id="quickGuide"
  11058. type="0"
  11059. url=""
  11060. size="970KB" >
  11061. </productMenu>
  11062. <productMenu id="userGuide"
  11063. type="1"
  11064. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  11065. size="1.26MB" >
  11066. </productMenu>
  11067. <productID id="5534"
  11068. />
  11069. <productGroupable type="0"
  11070. />
  11071. </product>
  11072. <product id="5S"
  11073. name="5S"
  11074. series="5"
  11075. latestVersion="3.0.1"
  11076. show = "-1" >
  11077. <productMenu id="protocol"
  11078. type="0">
  11079. </productMenu>
  11080. <productMenu id="sip"
  11081. type="1" >
  11082. </productMenu>
  11083. <productMenu id="bluetoothIntercom"
  11084. type="1" >
  11085. </productMenu>
  11086. <productMenu id="phone"
  11087. type="2" >
  11088. </productMenu>
  11089. <productMenu id="fmradio"
  11090. type="0" >
  11091. </productMenu>
  11092. <productMenu id="deviceSetting"
  11093. type="1"
  11094. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  11095. </productMenu>
  11096. <productMenu id="quickGuide"
  11097. type="0"
  11098. url=""
  11099. size="970KB" >
  11100. </productMenu>
  11101. <productMenu id="userGuide"
  11102. type="1"
  11103. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  11104. size="1.26MB" >
  11105. </productMenu>
  11106. <productID id="5538"
  11107. />
  11108. <productGroupable type="0"
  11109. />
  11110. </product>
  11111. <product id="3SPLUS"
  11112. name="3S PLUS"
  11113. series="3"
  11114. latestVersion="2.2"
  11115. show = "1" >
  11116. <productMenu id="protocol"
  11117. type="3" >
  11118. </productMenu>
  11119. <productMenu id="sip"
  11120. type="1" >
  11121. </productMenu>
  11122. <productMenu id="bluetoothIntercom"
  11123. type="1" >
  11124. </productMenu>
  11125. <productMenu id="deviceSetting"
  11126. type="1"
  11127. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  11128. <productMenuURL version="2.2.1"
  11129. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  11130. />
  11131. </productMenu>
  11132. <productMenu id="quickGuide"
  11133. type="1"
  11134. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11135. size="344KB" >
  11136. </productMenu>
  11137. <productMenu id="userGuide"
  11138. type="1"
  11139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  11140. size="1.14MB" >
  11141. </productMenu>
  11142. <productMenu id="connectGuide"
  11143. type="1"
  11144. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  11145. size="1.12MB" >
  11146. </productMenu>
  11147. <productID id="4023"
  11148. />
  11149. <productGroupable type="0"
  11150. />
  11151. </product>
  11152. <product id="3SPLUS"
  11153. name="3S PLUS"
  11154. series="3"
  11155. latestVersion="1.1"
  11156. show = "-1" >
  11157. <productMenu id="protocol"
  11158. type="0">
  11159. </productMenu>
  11160. <productMenu id="sip"
  11161. type="1" >
  11162. </productMenu>
  11163. <productMenu id="bluetoothIntercom"
  11164. type="1" >
  11165. </productMenu>
  11166. <productMenu id="deviceSetting"
  11167. type="1"
  11168. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11169. </productMenu>
  11170. <productMenu id="quickGuide"
  11171. type="1"
  11172. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11173. size="842KB" >
  11174. </productMenu>
  11175. <productMenu id="userGuide"
  11176. type="1"
  11177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  11178. size="1.02MB" >
  11179. </productMenu>
  11180. <productID id="6320"
  11181. />
  11182. <productGroupable type="0"
  11183. />
  11184. </product>
  11185. <product id="AConnect"
  11186. name="Alpinestars A-Connect"
  11187. series="60"
  11188. latestVersion="1.0.2"
  11189. latestVersionMesh="0.19"
  11190. latestVersionVoicePrompt="1.6"
  11191. show = "-1" >
  11192. <productMenu id="protocol"
  11193. type="2" >
  11194. </productMenu>
  11195. <productMenu id="ota"
  11196. type="2" >
  11197. <otaLanguages>
  11198. <otaLanguage
  11199. id="0"
  11200. name="English"
  11201. package="0"
  11202. />
  11203. <otaLanguage
  11204. id="0"
  11205. name="Français"
  11206. package="1"
  11207. />
  11208. <otaLanguage
  11209. id="0"
  11210. name="Español"
  11211. package="2"
  11212. />
  11213. <otaLanguage
  11214. id="0"
  11215. name="Italiano"
  11216. package="3"
  11217. />
  11218. <otaLanguage
  11219. id="0"
  11220. name="Deutsch"
  11221. package="4"
  11222. />
  11223. <otaLanguage
  11224. id="0"
  11225. name="Nederlands"
  11226. package="5"
  11227. />
  11228. <otaLanguage
  11229. id="0"
  11230. name="Русский"
  11231. package="6"
  11232. />
  11233. <otaLanguage
  11234. id="0"
  11235. name="简体中文"
  11236. package="7"
  11237. />
  11238. <otaLanguage
  11239. id="0"
  11240. name="한국어"
  11241. package="8"
  11242. />
  11243. <otaLanguage
  11244. id="0"
  11245. name="日本語"
  11246. package="9"
  11247. />
  11248. <otaLanguage
  11249. id="0"
  11250. name="Suomi"
  11251. package="10"
  11252. />
  11253. <otaLanguage
  11254. id="0"
  11255. name="Polski"
  11256. package="11"
  11257. />
  11258. </otaLanguages>
  11259. <otaPackages>
  11260. <package
  11261. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  11262. size="5183988"
  11263. />
  11264. <package
  11265. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  11266. size="5183988"
  11267. />
  11268. <package
  11269. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  11270. size="5183988"
  11271. />
  11272. <package
  11273. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  11274. size="5183988"
  11275. />
  11276. <package
  11277. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  11278. size="5183988"
  11279. />
  11280. <package
  11281. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  11282. size="5183988"
  11283. />
  11284. <package
  11285. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  11286. size="5183988"
  11287. />
  11288. <package
  11289. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  11290. size="5183988"
  11291. />
  11292. <package
  11293. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  11294. size="5183988"
  11295. />
  11296. <package
  11297. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  11298. size="5183988"
  11299. />
  11300. <package
  11301. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  11302. size="5183988"
  11303. />
  11304. <package
  11305. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  11306. size="5183988"
  11307. />
  11308. </otaPackages>
  11309. </productMenu>
  11310. <productMenu id="sip"
  11311. type="1" >
  11312. </productMenu>
  11313. <productMenu id="illusion"
  11314. type="0" >
  11315. </productMenu>
  11316. <productMenu id="meshIntercom+"
  11317. type="3"
  11318. url="2" >
  11319. </productMenu>
  11320. <productMenu id="waveIntercom"
  11321. type="1" >
  11322. </productMenu>
  11323. <productMenu id="bluetoothIntercom"
  11324. type="1"
  11325. url="2" >
  11326. </productMenu>
  11327. <productMenu id="bluetoothIntercomGrouping"
  11328. type="0" >
  11329. </productMenu>
  11330. <productMenu id="fmradio"
  11331. type="1"
  11332. url="1" >
  11333. </productMenu>
  11334. <productMenu id="phone"
  11335. type="1" >
  11336. </productMenu>
  11337. <productMenu id="music"
  11338. type="1" >
  11339. </productMenu>
  11340. <productMenu id="musicSharing"
  11341. type="0" >
  11342. </productMenu>
  11343. <productMenu id="deviceSetting"
  11344. type="1"
  11345. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  11346. <productMenuURL version="1.0.3"
  11347. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  11348. />
  11349. </productMenu>
  11350. <productMenu id="quickGuide"
  11351. type="0"
  11352. url=""
  11353. size="1.12MB" >
  11354. </productMenu>
  11355. <productMenu id="userGuide"
  11356. type="1"
  11357. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  11358. size="2.0MB" >
  11359. </productMenu>
  11360. <productMenu id="videoGuide"
  11361. type="0"
  11362. url=""
  11363. size="3.41MB" >
  11364. </productMenu>
  11365. <productMenu id="volume"
  11366. type="16" >
  11367. </productMenu>
  11368. <productMenu id="volume+"
  11369. type="2"
  11370. url="0x6004" >
  11371. </productMenu>
  11372. <productMenu id="soundMode"
  11373. type="0" >
  11374. </productMenu>
  11375. <productMenu id="battery"
  11376. type="1" >
  11377. </productMenu>
  11378. <productID id="6A82"
  11379. />
  11380. <productGroupable type="0"
  11381. />
  11382. </product>
  11383. <product id="iCon"
  11384. name="iCon"
  11385. series="50"
  11386. latestVersion="1.2"
  11387. show = "0" >
  11388. <productMenu id="protocol"
  11389. type="2" >
  11390. </productMenu>
  11391. <productMenu id="alexa"
  11392. type="0" >
  11393. </productMenu>
  11394. <productMenu id="wa"
  11395. type="0" >
  11396. </productMenu>
  11397. <productMenu id="sip"
  11398. type="1" >
  11399. </productMenu>
  11400. <productMenu id="led"
  11401. type="3" >
  11402. </productMenu>
  11403. <productMenu id="meshIntercom"
  11404. type="20" >
  11405. </productMenu>
  11406. <productMenu id="meshIntercom+"
  11407. type="3"
  11408. url="0" >
  11409. <productMenuType version="1.0.9"
  11410. type="2"
  11411. />
  11412. </productMenu>
  11413. <productMenu id="bluetoothIntercom"
  11414. type="1" >
  11415. </productMenu>
  11416. <productMenu id="phone"
  11417. type="1" >
  11418. </productMenu>
  11419. <productMenu id="music"
  11420. type="1" >
  11421. </productMenu>
  11422. <productMenu id="fmradio"
  11423. type="1" >
  11424. </productMenu>
  11425. <productMenu id="deviceSetting"
  11426. type="1"
  11427. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  11428. <productMenuURL version="1.0.9"
  11429. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11430. />
  11431. </productMenu>
  11432. <productMenu id="quickGuide"
  11433. type="1"
  11434. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  11435. size="344KB" >
  11436. </productMenu>
  11437. <productMenu id="userGuide"
  11438. type="1"
  11439. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  11440. size="3.41MB" >
  11441. </productMenu>
  11442. <productMenu id="volume"
  11443. type="11" >
  11444. </productMenu>
  11445. <productMenu id="battery"
  11446. type="1" >
  11447. </productMenu>
  11448. <productID id="3900"
  11449. />
  11450. <productGroupable type="0"
  11451. />
  11452. </product>
  11453. <product id="ICONHelmLinkSL"
  11454. name="ICON HelmLink SL"
  11455. series="50"
  11456. latestVersion="1.0"
  11457. latestVersionVoicePrompt="1.6"
  11458. show = "-1" >
  11459. <productMenu id="protocol"
  11460. type="2" >
  11461. </productMenu>
  11462. <productMenu id="alexa"
  11463. type="0" >
  11464. </productMenu>
  11465. <productMenu id="ota"
  11466. type="2" >
  11467. <otaPackages>
  11468. <package
  11469. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  11470. size="2945812"
  11471. />
  11472. </otaPackages>
  11473. </productMenu>
  11474. <productMenu id="wa"
  11475. type="0" >
  11476. </productMenu>
  11477. <productMenu id="meshIntercom"
  11478. type="30" >
  11479. </productMenu>
  11480. <productMenu id="meshIntercom+"
  11481. type="3"
  11482. url="2" >
  11483. </productMenu>
  11484. <productMenu id="waveIntercom"
  11485. type="1" >
  11486. </productMenu>
  11487. <productMenu id="phone"
  11488. type="1" >
  11489. </productMenu>
  11490. <productMenu id="music"
  11491. type="1" >
  11492. </productMenu>
  11493. <productMenu id="musicSharing"
  11494. type="0" >
  11495. </productMenu>
  11496. <productMenu id="deviceSetting"
  11497. type="1"
  11498. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  11499. </productMenu>
  11500. <productMenu id="quickGuide"
  11501. type="0"
  11502. url=""
  11503. size="1.12MB" >
  11504. </productMenu>
  11505. <productMenu id="userGuide"
  11506. type="1"
  11507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  11508. size="2.0MB" >
  11509. </productMenu>
  11510. <productMenu id="volume"
  11511. type="12" >
  11512. </productMenu>
  11513. <productMenu id="battery"
  11514. type="1" >
  11515. </productMenu>
  11516. <productID id="6842"
  11517. />
  11518. <productGroupable type="0"
  11519. />
  11520. </product>
  11521. <product id="SC2"
  11522. name="SC2"
  11523. series="50"
  11524. latestVersion="2.4"
  11525. show = "0" >
  11526. <productMenu id="protocol"
  11527. type="2" >
  11528. </productMenu>
  11529. <productMenu id="alexa"
  11530. type="0" >
  11531. </productMenu>
  11532. <productMenu id="wa"
  11533. type="0" >
  11534. </productMenu>
  11535. <productMenu id="sip"
  11536. type="1" >
  11537. </productMenu>
  11538. <productMenu id="meshIntercom"
  11539. type="30" >
  11540. <productMenuType version="2.0.3"
  11541. type="20"
  11542. />
  11543. </productMenu>
  11544. <productMenu id="meshIntercom+"
  11545. type="3"
  11546. url="2" >
  11547. <productMenuType version="2.2.9"
  11548. type="2"
  11549. />
  11550. <productMenuURL version="2.0.3"
  11551. url="0"
  11552. />
  11553. </productMenu>
  11554. <productMenu id="waveIntercom"
  11555. type="1" >
  11556. <productMenuType version="2.2.9"
  11557. type="0"
  11558. />
  11559. </productMenu>
  11560. <productMenu id="bluetoothIntercom"
  11561. type="1" >
  11562. </productMenu>
  11563. <productMenu id="phone"
  11564. type="1" >
  11565. </productMenu>
  11566. <productMenu id="music"
  11567. type="1" >
  11568. </productMenu>
  11569. <productMenu id="fmradio"
  11570. type="1" >
  11571. </productMenu>
  11572. <productMenu id="deviceSetting"
  11573. type="1"
  11574. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11575. <productMenuURL version="2.3.9"
  11576. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11577. />
  11578. <productMenuURL version="2.2.9"
  11579. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11580. />
  11581. <productMenuURL version="2.1"
  11582. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11583. />
  11584. <productMenuURL version="2.0.3"
  11585. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11586. />
  11587. </productMenu>
  11588. <productMenu id="quickGuide"
  11589. type="1"
  11590. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11591. size="934KB" >
  11592. </productMenu>
  11593. <productMenu id="userGuide"
  11594. type="1"
  11595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11596. size="1.14MB" >
  11597. </productMenu>
  11598. <productMenu id="volume"
  11599. type="11" >
  11600. </productMenu>
  11601. <productMenu id="battery"
  11602. type="1" >
  11603. </productMenu>
  11604. <productID id="3217"
  11605. />
  11606. <productGroupable type="0"
  11607. />
  11608. </product>
  11609. <product id="SC2"
  11610. name="SC2"
  11611. series="50"
  11612. latestVersion="1.5"
  11613. show = "0" >
  11614. <productMenu id="protocol"
  11615. type="2" >
  11616. </productMenu>
  11617. <productMenu id="alexa"
  11618. type="0" >
  11619. </productMenu>
  11620. <productMenu id="wa"
  11621. type="0" >
  11622. </productMenu>
  11623. <productMenu id="sip"
  11624. type="1" >
  11625. </productMenu>
  11626. <productMenu id="meshIntercom"
  11627. type="30" >
  11628. <productMenuType version="1.1.4"
  11629. type="20"
  11630. />
  11631. </productMenu>
  11632. <productMenu id="meshIntercom+"
  11633. type="3"
  11634. url="2" >
  11635. <productMenuType version="1.3.9"
  11636. type="2"
  11637. />
  11638. <productMenuURL version="1.1.4"
  11639. url="0"
  11640. />
  11641. </productMenu>
  11642. <productMenu id="waveIntercom"
  11643. type="1" >
  11644. <productMenuType version="1.3.9"
  11645. type="0"
  11646. />
  11647. </productMenu>
  11648. <productMenu id="bluetoothIntercom"
  11649. type="1" >
  11650. </productMenu>
  11651. <productMenu id="phone"
  11652. type="1" >
  11653. </productMenu>
  11654. <productMenu id="music"
  11655. type="1" >
  11656. </productMenu>
  11657. <productMenu id="fmradio"
  11658. type="1" >
  11659. </productMenu>
  11660. <productMenu id="deviceSetting"
  11661. type="1"
  11662. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11663. <productMenuURL version="1.4.9"
  11664. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11665. />
  11666. <productMenuURL version="1.3.9"
  11667. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11668. />
  11669. <productMenuURL version="1.2"
  11670. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11671. />
  11672. <productMenuURL version="1.1.4"
  11673. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11674. />
  11675. </productMenu>
  11676. <productMenu id="quickGuide"
  11677. type="1"
  11678. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11679. size="934KB" >
  11680. </productMenu>
  11681. <productMenu id="userGuide"
  11682. type="1"
  11683. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11684. size="1.14MB" >
  11685. </productMenu>
  11686. <productMenu id="volume"
  11687. type="11" >
  11688. </productMenu>
  11689. <productMenu id="battery"
  11690. type="1" >
  11691. </productMenu>
  11692. <productID id="3170"
  11693. />
  11694. <productGroupable type="0"
  11695. />
  11696. </product>
  11697. <product id="HD50S"
  11698. name="H-D Audio 50S"
  11699. series="50"
  11700. latestVersion="1.0.1"
  11701. show = "-1" >
  11702. <productMenu id="protocol"
  11703. type="2" >
  11704. </productMenu>
  11705. <productMenu id="alexa"
  11706. type="0" >
  11707. </productMenu>
  11708. <productMenu id="ota"
  11709. type="0"
  11710. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11711. size="1150234" >
  11712. </productMenu>
  11713. <productMenu id="wa"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="sip"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="meshIntercom"
  11720. type="20" >
  11721. </productMenu>
  11722. <productMenu id="meshIntercom+"
  11723. type="3"
  11724. url="0" >
  11725. <productMenuType version="1.0.9"
  11726. type="2"
  11727. />
  11728. </productMenu>
  11729. <productMenu id="bluetoothIntercom"
  11730. type="1" >
  11731. </productMenu>
  11732. <productMenu id="phone"
  11733. type="1" >
  11734. </productMenu>
  11735. <productMenu id="music"
  11736. type="1" >
  11737. </productMenu>
  11738. <productMenu id="fmradio"
  11739. type="1" >
  11740. </productMenu>
  11741. <productMenu id="deviceSetting"
  11742. type="1"
  11743. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11744. <productMenuURL version="1.0.9"
  11745. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11746. />
  11747. </productMenu>
  11748. <productMenu id="quickGuide"
  11749. type="1"
  11750. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11751. size="934KB" >
  11752. </productMenu>
  11753. <productMenu id="userGuide"
  11754. type="1"
  11755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11756. size="1.14MB" >
  11757. </productMenu>
  11758. <productMenu id="volume"
  11759. type="11" >
  11760. </productMenu>
  11761. <productMenu id="battery"
  11762. type="1" >
  11763. </productMenu>
  11764. <productID id="3156"
  11765. />
  11766. <productGroupable type="0"
  11767. />
  11768. </product>
  11769. <product id="HD50S"
  11770. name="H-D Audio 50S"
  11771. series="50"
  11772. latestVersion="2.0.2"
  11773. show = "0" >
  11774. <productMenu id="protocol"
  11775. type="2" >
  11776. </productMenu>
  11777. <productMenu id="alexa"
  11778. type="0" >
  11779. </productMenu>
  11780. <productMenu id="ota"
  11781. type="0"
  11782. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11783. size="1150234" >
  11784. </productMenu>
  11785. <productMenu id="wa"
  11786. type="1" >
  11787. </productMenu>
  11788. <productMenu id="sip"
  11789. type="1" >
  11790. </productMenu>
  11791. <productMenu id="meshIntercom"
  11792. type="20" >
  11793. </productMenu>
  11794. <productMenu id="meshIntercom+"
  11795. type="3"
  11796. url="0" >
  11797. <productMenuType version="2.0.9"
  11798. type="2"
  11799. />
  11800. </productMenu>
  11801. <productMenu id="bluetoothIntercom"
  11802. type="1" >
  11803. </productMenu>
  11804. <productMenu id="phone"
  11805. type="1" >
  11806. </productMenu>
  11807. <productMenu id="music"
  11808. type="1" >
  11809. </productMenu>
  11810. <productMenu id="fmradio"
  11811. type="1" >
  11812. </productMenu>
  11813. <productMenu id="deviceSetting"
  11814. type="1"
  11815. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11816. <productMenuURL version="2.0.9"
  11817. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11818. />
  11819. </productMenu>
  11820. <productMenu id="quickGuide"
  11821. type="1"
  11822. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11823. size="934KB" >
  11824. </productMenu>
  11825. <productMenu id="userGuide"
  11826. type="1"
  11827. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11828. size="1.14MB" >
  11829. </productMenu>
  11830. <productMenu id="volume"
  11831. type="11" >
  11832. </productMenu>
  11833. <productMenu id="battery"
  11834. type="1" >
  11835. </productMenu>
  11836. <productID id="3213"
  11837. />
  11838. <productGroupable type="0"
  11839. />
  11840. </product>
  11841. <product id="HD50C"
  11842. name="H-D Audio 50C"
  11843. series="50"
  11844. latestVersion="1.0.1"
  11845. show = "0" >
  11846. <productMenu id="protocol"
  11847. type="2" >
  11848. </productMenu>
  11849. <productMenu id="ota"
  11850. type="0" >
  11851. </productMenu>
  11852. <productMenu id="wa"
  11853. type="1" >
  11854. </productMenu>
  11855. <productMenu id="sip"
  11856. type="1" >
  11857. </productMenu>
  11858. <productMenu id="meshIntercom"
  11859. type="20" >
  11860. </productMenu>
  11861. <productMenu id="meshIntercom+"
  11862. type="3"
  11863. url="0" >
  11864. <productMenuType version="1.0.9"
  11865. type="2"
  11866. />
  11867. </productMenu>
  11868. <productMenu id="bluetoothIntercom"
  11869. type="1" >
  11870. </productMenu>
  11871. <productMenu id="phone"
  11872. type="1" >
  11873. </productMenu>
  11874. <productMenu id="music"
  11875. type="1" >
  11876. </productMenu>
  11877. <productMenu id="fmradio"
  11878. type="1" >
  11879. </productMenu>
  11880. <productMenu id="deviceSetting"
  11881. type="1"
  11882. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11883. <productMenuURL version="1.0.9"
  11884. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11885. />
  11886. </productMenu>
  11887. <productMenu id="quickGuide"
  11888. type="1"
  11889. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11890. size="344KB" >
  11891. </productMenu>
  11892. <productMenu id="userGuide"
  11893. type="1"
  11894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11895. size="3.41MB" >
  11896. </productMenu>
  11897. <productMenu id="volume"
  11898. type="11" >
  11899. </productMenu>
  11900. <productMenu id="battery"
  11901. type="1" >
  11902. </productMenu>
  11903. <productID id="3240"
  11904. />
  11905. <productGroupable type="0"
  11906. />
  11907. </product>
  11908. <product id="HD50S"
  11909. name="FURY N04"
  11910. series="Helmet"
  11911. latestVersion="1.0"
  11912. show = "0" >
  11913. <productMenu id="protocol"
  11914. type="2" >
  11915. </productMenu>
  11916. <productMenu id="alexa"
  11917. type="0" >
  11918. </productMenu>
  11919. <productMenu id="ota"
  11920. type="0" >
  11921. </productMenu>
  11922. <productMenu id="wa"
  11923. type="0" >
  11924. </productMenu>
  11925. <productMenu id="meshIntercom"
  11926. type="20" >
  11927. </productMenu>
  11928. <productMenu id="meshIntercom+"
  11929. type="3"
  11930. url="0" >
  11931. <productMenuType version="1.0.9"
  11932. type="2"
  11933. />
  11934. </productMenu>
  11935. <productMenu id="phone"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="music"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="fmradio"
  11942. type="1" >
  11943. </productMenu>
  11944. <productMenu id="deviceSetting"
  11945. type="1"
  11946. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  11947. <productMenuURL version="1.0.9"
  11948. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  11949. />
  11950. </productMenu>
  11951. <productMenu id="quickGuide"
  11952. type="1"
  11953. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  11954. size="1.12MB" >
  11955. </productMenu>
  11956. <productMenu id="userGuide"
  11957. type="1"
  11958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  11959. size="2.0MB" >
  11960. </productMenu>
  11961. <productMenu id="volume"
  11962. type="13" >
  11963. </productMenu>
  11964. <productMenu id="battery"
  11965. type="1" >
  11966. </productMenu>
  11967. <productID id="5553"
  11968. />
  11969. <productGroupable type="0"
  11970. />
  11971. </product>
  11972. <product id="XCOM3Pro"
  11973. name="X-COM3 Pro"
  11974. series="50"
  11975. latestVersion="1.1"
  11976. show = "0" >
  11977. <productMenu id="protocol"
  11978. type="2" >
  11979. </productMenu>
  11980. <productMenu id="alexa"
  11981. type="0" >
  11982. </productMenu>
  11983. <productMenu id="ota"
  11984. type="0" >
  11985. </productMenu>
  11986. <productMenu id="wa"
  11987. type="0" >
  11988. </productMenu>
  11989. <productMenu id="sip"
  11990. type="1" >
  11991. </productMenu>
  11992. <productMenu id="meshIntercom"
  11993. type="30" >
  11994. </productMenu>
  11995. <productMenu id="meshIntercom+"
  11996. type="3"
  11997. url="2" >
  11998. <productMenuType version="1.1"
  11999. type="2"
  12000. />
  12001. </productMenu>
  12002. <productMenu id="waveIntercom"
  12003. type="1" >
  12004. <productMenuType version="1.1"
  12005. type="0"
  12006. />
  12007. </productMenu>
  12008. <productMenu id="bluetoothIntercom"
  12009. type="1" >
  12010. </productMenu>
  12011. <productMenu id="phone"
  12012. type="1" >
  12013. </productMenu>
  12014. <productMenu id="music"
  12015. type="1" >
  12016. </productMenu>
  12017. <productMenu id="fmradio"
  12018. type="1" >
  12019. </productMenu>
  12020. <productMenu id="deviceSetting"
  12021. type="1"
  12022. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  12023. <productMenuURL version="1.1"
  12024. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  12025. />
  12026. </productMenu>
  12027. <productMenu id="quickGuide"
  12028. type="0"
  12029. url=""
  12030. size="344KB" >
  12031. </productMenu>
  12032. <productMenu id="userGuide"
  12033. type="1"
  12034. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  12035. size="3.41MB" >
  12036. </productMenu>
  12037. <productMenu id="volume"
  12038. type="11" >
  12039. </productMenu>
  12040. <productMenu id="battery"
  12041. type="1" >
  12042. </productMenu>
  12043. <productID id="321A"
  12044. />
  12045. <productGroupable type="0"
  12046. />
  12047. </product>
  12048. <product id="XCOM3"
  12049. name="X-COM3"
  12050. series="20"
  12051. latestVersion="1.0"
  12052. show = "0" >
  12053. <productMenu id="protocol"
  12054. type="2" >
  12055. </productMenu>
  12056. <productMenu id="sip"
  12057. type="1" >
  12058. </productMenu>
  12059. <productMenu id="bluetoothIntercom"
  12060. type="1" >
  12061. </productMenu>
  12062. <productMenu id="phone"
  12063. type="1" >
  12064. </productMenu>
  12065. <productMenu id="music"
  12066. type="1" >
  12067. </productMenu>
  12068. <productMenu id="fmradio"
  12069. type="1" >
  12070. </productMenu>
  12071. <productMenu id="deviceSetting"
  12072. type="1"
  12073. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  12074. </productMenu>
  12075. <productMenu id="quickGuide"
  12076. type="0"
  12077. url=""
  12078. size="934KB" >
  12079. </productMenu>
  12080. <productMenu id="userGuide"
  12081. type="1"
  12082. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  12083. size="1.14MB" >
  12084. </productMenu>
  12085. <productMenu id="volume"
  12086. type="15" >
  12087. </productMenu>
  12088. <productID id="3410"
  12089. />
  12090. <productGroupable type="0"
  12091. />
  12092. </product>
  12093. <product id="X-COM2"
  12094. name="X-COM2"
  12095. series="20"
  12096. latestVersion="1.0.5"
  12097. show = "0" >
  12098. <productMenu id="protocol"
  12099. type="0">
  12100. </productMenu>
  12101. <productMenu id="sip"
  12102. type="1" >
  12103. </productMenu>
  12104. <productMenu id="bluetoothIntercom"
  12105. type="1" >
  12106. </productMenu>
  12107. <productMenu id="intercomSetting"
  12108. type="1" >
  12109. </productMenu>
  12110. <productMenu id="phone"
  12111. type="2" >
  12112. </productMenu>
  12113. <productMenu id="fmradio"
  12114. type="3" >
  12115. </productMenu>
  12116. <productMenu id="deviceSetting"
  12117. type="1"
  12118. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  12119. </productMenu>
  12120. <productMenu id="quickGuide"
  12121. type="1"
  12122. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  12123. size="796KB" >
  12124. </productMenu>
  12125. <productMenu id="userGuide"
  12126. type="1"
  12127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  12128. size="1.90MB" >
  12129. </productMenu>
  12130. <productID id="2030"
  12131. />
  12132. <productGroupable type="1"
  12133. />
  12134. </product>
  12135. <product id="AVAABC"
  12136. name="AVA ABC"
  12137. series="SPIDER"
  12138. latestVersion="1.1"
  12139. show = "0" >
  12140. <productMenu id="protocol"
  12141. type="2" >
  12142. </productMenu>
  12143. <productMenu id="alexa"
  12144. type="0" >
  12145. </productMenu>
  12146. <productMenu id="ota"
  12147. type="0" >
  12148. <productMenuType version="1.0"
  12149. type="0"
  12150. />
  12151. <otaPackages>
  12152. <package
  12153. url="https://api.sena.com/support/OTA/"
  12154. size="2945812"
  12155. />
  12156. </otaPackages>
  12157. </productMenu>
  12158. <productMenu id="wa"
  12159. type="0" >
  12160. </productMenu>
  12161. <productMenu id="meshIntercom"
  12162. type="30" >
  12163. <productMenuType version="1.0"
  12164. type="20"
  12165. />
  12166. </productMenu>
  12167. <productMenu id="meshIntercom+"
  12168. type="3"
  12169. url="2" >
  12170. <productMenuType version="1.0"
  12171. type="2"
  12172. />
  12173. <productMenuURL version="1.0"
  12174. url="0"
  12175. />
  12176. </productMenu>
  12177. <productMenu id="waveIntercom"
  12178. type="1" >
  12179. <productMenuType version="1.0"
  12180. type="0"
  12181. />
  12182. </productMenu>
  12183. <productMenu id="phone"
  12184. type="1" >
  12185. </productMenu>
  12186. <productMenu id="music"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="musicSharing"
  12190. type="0" >
  12191. </productMenu>
  12192. <productMenu id="deviceSetting"
  12193. type="1"
  12194. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  12195. <productMenuURL version="1.0"
  12196. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  12197. />
  12198. </productMenu>
  12199. <productMenu id="quickGuide"
  12200. type="1"
  12201. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  12202. size="1.12MB" >
  12203. </productMenu>
  12204. <productMenu id="userGuide"
  12205. type="1"
  12206. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  12207. size="2.0MB" >
  12208. </productMenu>
  12209. <productMenu id="volume"
  12210. type="12" >
  12211. </productMenu>
  12212. <productMenu id="battery"
  12213. type="1" >
  12214. </productMenu>
  12215. <productID id="6808"
  12216. />
  12217. <productGroupable type="0"
  12218. />
  12219. </product>
  12220. <product id="ADVANCEProCOM2"
  12221. name="ADVANCE ProCOM 2"
  12222. series="Helmet"
  12223. latestVersion="0.5"
  12224. latestVersionVoicePrompt="0.3"
  12225. show = "-1" >
  12226. <productMenu id="protocol"
  12227. type="2" >
  12228. </productMenu>
  12229. <productMenu id="ota"
  12230. type="2" >
  12231. <otaLanguages>
  12232. <otaLanguage
  12233. id="0"
  12234. name="English"
  12235. package="0"
  12236. />
  12237. <otaLanguage
  12238. id="0"
  12239. name="Français"
  12240. package="1"
  12241. />
  12242. <otaLanguage
  12243. id="0"
  12244. name="Español"
  12245. package="2"
  12246. />
  12247. <otaLanguage
  12248. id="0"
  12249. name="Italiano"
  12250. package="3"
  12251. />
  12252. <otaLanguage
  12253. id="0"
  12254. name="Deutsch"
  12255. package="4"
  12256. />
  12257. <otaLanguage
  12258. id="0"
  12259. name="Nederlands"
  12260. package="5"
  12261. />
  12262. <otaLanguage
  12263. id="0"
  12264. name="Русский"
  12265. package="6"
  12266. />
  12267. <otaLanguage
  12268. id="0"
  12269. name="简体中文"
  12270. package="7"
  12271. />
  12272. <otaLanguage
  12273. id="0"
  12274. name="한국어"
  12275. package="8"
  12276. />
  12277. <otaLanguage
  12278. id="0"
  12279. name="日本語"
  12280. package="9"
  12281. />
  12282. <otaLanguage
  12283. id="0"
  12284. name="Suomi"
  12285. package="10"
  12286. />
  12287. <otaLanguage
  12288. id="0"
  12289. name="Polski"
  12290. package="11"
  12291. />
  12292. </otaLanguages>
  12293. <otaPackages>
  12294. <package
  12295. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  12296. size="5183988"
  12297. />
  12298. <package
  12299. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  12300. size="5183988"
  12301. />
  12302. <package
  12303. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  12304. size="5183988"
  12305. />
  12306. <package
  12307. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  12308. size="5183988"
  12309. />
  12310. <package
  12311. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  12312. size="5183988"
  12313. />
  12314. <package
  12315. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  12316. size="5183988"
  12317. />
  12318. <package
  12319. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  12320. size="5183988"
  12321. />
  12322. <package
  12323. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  12324. size="5183988"
  12325. />
  12326. <package
  12327. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  12328. size="5183988"
  12329. />
  12330. <package
  12331. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  12332. size="5183988"
  12333. />
  12334. <package
  12335. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  12336. size="5183988"
  12337. />
  12338. <package
  12339. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  12340. size="5183988"
  12341. />
  12342. </otaPackages>
  12343. </productMenu>
  12344. <productMenu id="wa"
  12345. type="0" >
  12346. </productMenu>
  12347. <productMenu id="meshIntercom"
  12348. type="30" >
  12349. </productMenu>
  12350. <productMenu id="meshIntercom+"
  12351. type="3"
  12352. url="2" >
  12353. </productMenu>
  12354. <productMenu id="waveIntercom"
  12355. type="1" >
  12356. </productMenu>
  12357. <productMenu id="fmradio"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="phone"
  12361. type="0" >
  12362. </productMenu>
  12363. <productMenu id="music"
  12364. type="1" >
  12365. </productMenu>
  12366. <productMenu id="musicSharing"
  12367. type="0" >
  12368. </productMenu>
  12369. <productMenu id="deviceSetting"
  12370. type="1"
  12371. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  12372. </productMenu>
  12373. <productMenu id="quickGuide"
  12374. type="0"
  12375. url=""
  12376. size="1.12MB" >
  12377. </productMenu>
  12378. <productMenu id="userGuide"
  12379. type="1"
  12380. url=""
  12381. size="2.0MB" >
  12382. </productMenu>
  12383. <productMenu id="videoGuide"
  12384. type="0"
  12385. url=""
  12386. size="3.41MB" >
  12387. </productMenu>
  12388. <productMenu id="connectGuide"
  12389. type="1"
  12390. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  12391. size="1.12MB" >
  12392. </productMenu>
  12393. <productMenu id="volume"
  12394. type="16" >
  12395. </productMenu>
  12396. <productMenu id="battery"
  12397. type="1" >
  12398. </productMenu>
  12399. <productID id="6A85"
  12400. />
  12401. <productGroupable type="0"
  12402. />
  12403. </product>
  12404. <product id="TRIUMPH60X"
  12405. name="TRIUMPH 60X"
  12406. series="60"
  12407. latestVersion="0.3"
  12408. latestVersionMesh="0.19"
  12409. latestVersionVoicePrompt="1.8"
  12410. show = "-1" >
  12411. <productMenu id="protocol"
  12412. type="2" >
  12413. </productMenu>
  12414. <productMenu id="ota"
  12415. type="2" >
  12416. <otaLanguages>
  12417. <otaLanguage
  12418. id="0"
  12419. name="English"
  12420. package="0"
  12421. />
  12422. <otaLanguage
  12423. id="0"
  12424. name="Français"
  12425. package="1"
  12426. />
  12427. <otaLanguage
  12428. id="0"
  12429. name="Español"
  12430. package="2"
  12431. />
  12432. <otaLanguage
  12433. id="0"
  12434. name="Italiano"
  12435. package="3"
  12436. />
  12437. <otaLanguage
  12438. id="0"
  12439. name="Deutsch"
  12440. package="4"
  12441. />
  12442. <otaLanguage
  12443. id="0"
  12444. name="Nederlands"
  12445. package="5"
  12446. />
  12447. <otaLanguage
  12448. id="0"
  12449. name="Русский"
  12450. package="6"
  12451. />
  12452. <otaLanguage
  12453. id="0"
  12454. name="简体中文"
  12455. package="7"
  12456. />
  12457. <otaLanguage
  12458. id="0"
  12459. name="한국어"
  12460. package="8"
  12461. />
  12462. <otaLanguage
  12463. id="0"
  12464. name="日本語"
  12465. package="9"
  12466. />
  12467. <otaLanguage
  12468. id="0"
  12469. name="Suomi"
  12470. package="10"
  12471. />
  12472. <otaLanguage
  12473. id="0"
  12474. name="Polski"
  12475. package="11"
  12476. />
  12477. </otaLanguages>
  12478. <otaPackages>
  12479. <package
  12480. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0.img"
  12481. size="5183988"
  12482. />
  12483. <package
  12484. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fr-FR.img"
  12485. size="5183988"
  12486. />
  12487. <package
  12488. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-es-ES.img"
  12489. size="5183988"
  12490. />
  12491. <package
  12492. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-it-IT.img"
  12493. size="5183988"
  12494. />
  12495. <package
  12496. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-de-DE.img"
  12497. size="5183988"
  12498. />
  12499. <package
  12500. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-nl-NL.img"
  12501. size="5183988"
  12502. />
  12503. <package
  12504. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ru-RU.img"
  12505. size="5183988"
  12506. />
  12507. <package
  12508. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-cmn-CN.img"
  12509. size="5183988"
  12510. />
  12511. <package
  12512. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ko-KR.img"
  12513. size="5183988"
  12514. />
  12515. <package
  12516. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ja-JP.img"
  12517. size="5183988"
  12518. />
  12519. <package
  12520. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fi-FI.img"
  12521. size="5183988"
  12522. />
  12523. <package
  12524. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-pl-PL.img"
  12525. size="5183988"
  12526. />
  12527. </otaPackages>
  12528. </productMenu>
  12529. <productMenu id="wa"
  12530. type="0" >
  12531. </productMenu>
  12532. <productMenu id="sip"
  12533. type="1" >
  12534. </productMenu>
  12535. <productMenu id="led"
  12536. type="1" >
  12537. </productMenu>
  12538. <productMenu id="illusion"
  12539. type="1" >
  12540. </productMenu>
  12541. <productMenu id="meshIntercom"
  12542. type="30" >
  12543. </productMenu>
  12544. <productMenu id="meshIntercom+"
  12545. type="3"
  12546. url="2" >
  12547. </productMenu>
  12548. <productMenu id="bluetoothIntercom"
  12549. type="1" >
  12550. </productMenu>
  12551. <productMenu id="fmradio"
  12552. type="1"
  12553. url="1" >
  12554. </productMenu>
  12555. <productMenu id="mic"
  12556. type="0" >
  12557. </productMenu>
  12558. <productMenu id="phone"
  12559. type="1" >
  12560. </productMenu>
  12561. <productMenu id="music"
  12562. type="1" >
  12563. </productMenu>
  12564. <productMenu id="musicSharing"
  12565. type="0" >
  12566. </productMenu>
  12567. <productMenu id="deviceSetting"
  12568. type="1"
  12569. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  12570. </productMenu>
  12571. <productMenu id="quickGuide"
  12572. type="0"
  12573. url=""
  12574. size="1.12MB" >
  12575. </productMenu>
  12576. <productMenu id="userGuide"
  12577. type="1"
  12578. url=""
  12579. size="2.0MB" >
  12580. </productMenu>
  12581. <productMenu id="videoGuide"
  12582. type="0"
  12583. url=""
  12584. size="3.41MB" >
  12585. </productMenu>
  12586. <productMenu id="keySettings"
  12587. type="1"
  12588. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  12589. </productMenu>
  12590. <productMenu id="volume"
  12591. type="13" >
  12592. </productMenu>
  12593. <productMenu id="volume+"
  12594. type="2"
  12595. url="0x6004" >
  12596. </productMenu>
  12597. <productMenu id="battery"
  12598. type="1" >
  12599. </productMenu>
  12600. <productID id="6A1C"
  12601. />
  12602. <productGroupable type="0"
  12603. />
  12604. </product>
  12605. <product id="Triumph_50S"
  12606. name="Triumph 50S"
  12607. series="50"
  12608. latestVersion="1.5"
  12609. show = "0" >
  12610. <productMenu id="protocol"
  12611. type="2" >
  12612. </productMenu>
  12613. <productMenu id="alexa"
  12614. type="0" >
  12615. </productMenu>
  12616. <productMenu id="ota"
  12617. type="0"
  12618. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12619. size="1150234" >
  12620. </productMenu>
  12621. <productMenu id="wa"
  12622. type="1" >
  12623. </productMenu>
  12624. <productMenu id="sip"
  12625. type="1" >
  12626. </productMenu>
  12627. <productMenu id="meshIntercom"
  12628. type="20" >
  12629. </productMenu>
  12630. <productMenu id="bluetoothIntercom"
  12631. type="1" >
  12632. </productMenu>
  12633. <productMenu id="meshIntercom+"
  12634. type="3"
  12635. url="2" >
  12636. <productMenuType version="1.2.9"
  12637. type="2"
  12638. />
  12639. <productMenuURL version="1.2.9"
  12640. url="0"
  12641. />
  12642. </productMenu>
  12643. <productMenu id="waveIntercom"
  12644. type="1" >
  12645. <productMenuType version="1.2.9"
  12646. type="0"
  12647. />
  12648. </productMenu>
  12649. <productMenu id="phone"
  12650. type="1" >
  12651. </productMenu>
  12652. <productMenu id="music"
  12653. type="1" >
  12654. </productMenu>
  12655. <productMenu id="fmradio"
  12656. type="1" >
  12657. </productMenu>
  12658. <productMenu id="deviceSetting"
  12659. type="1"
  12660. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12661. <productMenuURL version="1.2.9"
  12662. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  12663. />
  12664. <productMenuURL version="1.0"
  12665. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  12666. />
  12667. </productMenu>
  12668. <productMenu id="quickGuide"
  12669. type="1"
  12670. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  12671. size="934KB" >
  12672. </productMenu>
  12673. <productMenu id="userGuide"
  12674. type="1"
  12675. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  12676. size="1.14MB" >
  12677. </productMenu>
  12678. <productMenu id="volume"
  12679. type="11" >
  12680. </productMenu>
  12681. <productMenu id="battery"
  12682. type="1" >
  12683. </productMenu>
  12684. <productID id="3264"
  12685. />
  12686. <productGroupable type="0"
  12687. />
  12688. </product>
  12689. <product id="RE50S"
  12690. name="RE 50S"
  12691. series="50"
  12692. latestVersion="2.7"
  12693. show = "0" >
  12694. <productMenu id="protocol"
  12695. type="2" >
  12696. </productMenu>
  12697. <productMenu id="alexa"
  12698. type="0" >
  12699. </productMenu>
  12700. <productMenu id="ota"
  12701. type="0"
  12702. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12703. size="1150234" >
  12704. </productMenu>
  12705. <productMenu id="wa"
  12706. type="1" >
  12707. </productMenu>
  12708. <productMenu id="sip"
  12709. type="1" >
  12710. </productMenu>
  12711. <productMenu id="meshIntercom"
  12712. type="30" >
  12713. </productMenu>
  12714. <productMenu id="meshIntercom+"
  12715. type="3"
  12716. url="2" >
  12717. <productMenuType version="2.5"
  12718. type="2"
  12719. />
  12720. </productMenu>
  12721. <productMenu id="waveIntercom"
  12722. type="1" >
  12723. <productMenuType version="2.5"
  12724. type="0"
  12725. />
  12726. </productMenu>
  12727. <productMenu id="bluetoothIntercom"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="phone"
  12731. type="1" >
  12732. </productMenu>
  12733. <productMenu id="music"
  12734. type="1" >
  12735. </productMenu>
  12736. <productMenu id="fmradio"
  12737. type="1" >
  12738. </productMenu>
  12739. <productMenu id="deviceSetting"
  12740. type="1"
  12741. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12742. <productMenuURL version="2.5.9"
  12743. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  12744. />
  12745. </productMenu>
  12746. <productMenu id="quickGuide"
  12747. type="1"
  12748. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  12749. size="934KB" >
  12750. </productMenu>
  12751. <productMenu id="userGuide"
  12752. type="1"
  12753. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  12754. size="1.14MB" >
  12755. </productMenu>
  12756. <productMenu id="videoGuide"
  12757. type="0"
  12758. url=""
  12759. size="3.41MB" >
  12760. </productMenu>
  12761. <productMenu id="volume"
  12762. type="11" >
  12763. </productMenu>
  12764. <productMenu id="battery"
  12765. type="1" >
  12766. </productMenu>
  12767. <productID id="321C"
  12768. />
  12769. <productGroupable type="0"
  12770. />
  12771. </product>
  12772. <product id="BMW_HELMET_II_U1"
  12773. name="BMW HELMET II U1"
  12774. series="50"
  12775. latestVersion="1.0"
  12776. show = "0" >
  12777. <productMenu id="protocol"
  12778. type="2" >
  12779. </productMenu>
  12780. <productMenu id="alexa"
  12781. type="0" >
  12782. </productMenu>
  12783. <productMenu id="sip"
  12784. type="1" >
  12785. </productMenu>
  12786. <productMenu id="meshIntercom"
  12787. type="20" >
  12788. </productMenu>
  12789. <productMenu id="bluetoothIntercom"
  12790. type="1" >
  12791. </productMenu>
  12792. <productMenu id="bluetoothIntercom2"
  12793. type="1" >
  12794. </productMenu>
  12795. <productMenu id="phone"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="music"
  12799. type="1" >
  12800. </productMenu>
  12801. <productMenu id="fmradio"
  12802. type="1" >
  12803. </productMenu>
  12804. <productMenu id="deviceSetting"
  12805. type="1"
  12806. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  12807. </productMenu>
  12808. <productMenu id="quickGuide"
  12809. type="1"
  12810. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  12811. size="934KB" >
  12812. </productMenu>
  12813. <productMenu id="userGuide"
  12814. type="1"
  12815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  12816. size="1.14MB" >
  12817. </productMenu>
  12818. <productMenu id="volume"
  12819. type="11" >
  12820. </productMenu>
  12821. <productMenu id="battery"
  12822. type="1" >
  12823. </productMenu>
  12824. <productID id="3260"
  12825. />
  12826. <productGroupable type="0"
  12827. />
  12828. </product>
  12829. <product id="OUTRUSHR"
  12830. name="CX935"
  12831. series="Helmet"
  12832. latestVersion="2.1"
  12833. show = "-1" >
  12834. <productMenu id="protocol"
  12835. type="3">
  12836. </productMenu>
  12837. <productMenu id="sip"
  12838. type="1" >
  12839. </productMenu>
  12840. <productMenu id="bluetoothIntercom"
  12841. type="1" >
  12842. </productMenu>
  12843. <productMenu id="phone"
  12844. type="1" >
  12845. </productMenu>
  12846. <productMenu id="fmradio"
  12847. type="0" >
  12848. </productMenu>
  12849. <productMenu id="deviceSetting"
  12850. type="1"
  12851. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  12852. </productMenu>
  12853. <productMenu id="userGuide"
  12854. type="1"
  12855. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  12856. size="660KB" >
  12857. </productMenu>
  12858. <productID id="5446"
  12859. />
  12860. <productGroupable type="0"
  12861. />
  12862. </product>
  12863. <product id="LSE_01"
  12864. name="LSE-01"
  12865. series="SF"
  12866. latestVersion="1.2.3"
  12867. show = "0" >
  12868. <productMenu id="protocol"
  12869. type="1"
  12870. url="3">
  12871. </productMenu>
  12872. <productMenu id="sip"
  12873. type="1" >
  12874. </productMenu>
  12875. <productMenu id="bluetoothIntercom"
  12876. type="1" >
  12877. </productMenu>
  12878. <productMenu id="phone"
  12879. type="1" >
  12880. </productMenu>
  12881. <productMenu id="music"
  12882. type="1" >
  12883. </productMenu>
  12884. <productMenu id="fmradio"
  12885. type="1" >
  12886. </productMenu>
  12887. <productMenu id="deviceSetting"
  12888. type="1"
  12889. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12890. <productMenuURL version="1.1"
  12891. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  12892. />
  12893. <productMenuURL version="1.0"
  12894. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  12895. />
  12896. </productMenu>
  12897. <productMenu id="quickGuide"
  12898. type="1"
  12899. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  12900. size="607KB" >
  12901. </productMenu>
  12902. <productMenu id="userGuide"
  12903. type="1"
  12904. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  12905. size="1.91MB" >
  12906. </productMenu>
  12907. <productMenu id="volume"
  12908. type="4" >
  12909. </productMenu>
  12910. <productID id="5416"
  12911. />
  12912. <productGroupable type="0"
  12913. />
  12914. </product>
  12915. <product id="AGV_ARK"
  12916. name="AGV ARK"
  12917. series="SF"
  12918. latestVersion="1.0.3"
  12919. show = "0" >
  12920. <productMenu id="protocol"
  12921. type="1"
  12922. url="3">
  12923. </productMenu>
  12924. <productMenu id="sip"
  12925. type="1" >
  12926. </productMenu>
  12927. <productMenu id="bluetoothIntercom"
  12928. type="1" >
  12929. </productMenu>
  12930. <productMenu id="phone"
  12931. type="1" >
  12932. </productMenu>
  12933. <productMenu id="music"
  12934. type="1" >
  12935. </productMenu>
  12936. <productMenu id="fmradio"
  12937. type="1" >
  12938. </productMenu>
  12939. <productMenu id="deviceSetting"
  12940. type="1"
  12941. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12942. </productMenu>
  12943. <productMenu id="quickGuide"
  12944. type="1"
  12945. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  12946. size="607KB" >
  12947. </productMenu>
  12948. <productMenu id="userGuide"
  12949. type="1"
  12950. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  12951. size="1.91MB" >
  12952. </productMenu>
  12953. <productMenu id="volume"
  12954. type="4" >
  12955. </productMenu>
  12956. <productID id="5420"
  12957. />
  12958. <productGroupable type="0"
  12959. />
  12960. </product>
  12961. <product id="KLIM_KRIOS"
  12962. name="KLIM Krios"
  12963. series="10"
  12964. latestVersion="1.1.2"
  12965. show = "0" >
  12966. <productMenu id="protocol"
  12967. type="0">
  12968. </productMenu>
  12969. <productMenu id="sip"
  12970. type="1" >
  12971. </productMenu>
  12972. <productMenu id="bluetoothIntercom"
  12973. type="1" >
  12974. </productMenu>
  12975. <productMenu id="phone"
  12976. type="2" >
  12977. </productMenu>
  12978. <productMenu id="fmradio"
  12979. type="3" >
  12980. </productMenu>
  12981. <productMenu id="deviceSetting"
  12982. type="1"
  12983. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  12984. <productMenuURL version="1.0"
  12985. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  12986. />
  12987. </productMenu>
  12988. <productMenu id="quickGuide"
  12989. type="1"
  12990. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  12991. size="649KB" >
  12992. </productMenu>
  12993. <productMenu id="userGuide"
  12994. type="1"
  12995. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  12996. size="1.43MB" >
  12997. </productMenu>
  12998. <productID id="5910"
  12999. />
  13000. <productGroupable type="0"
  13001. />
  13002. </product>
  13003. <product id="POLARIS_SLINGSHOT"
  13004. name="Polaris Slingshot"
  13005. series="10"
  13006. latestVersion="1.1.2"
  13007. show = "0" >
  13008. <productMenu id="protocol"
  13009. type="0">
  13010. </productMenu>
  13011. <productMenu id="sip"
  13012. type="1" >
  13013. </productMenu>
  13014. <productMenu id="bluetoothIntercom"
  13015. type="1" >
  13016. </productMenu>
  13017. <productMenu id="phone"
  13018. type="2" >
  13019. </productMenu>
  13020. <productMenu id="fmradio"
  13021. type="3" >
  13022. </productMenu>
  13023. <productMenu id="deviceSetting"
  13024. type="1"
  13025. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  13026. <productMenuURL version="1.0"
  13027. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  13028. />
  13029. </productMenu>
  13030. <productMenu id="quickGuide"
  13031. type="1"
  13032. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  13033. size="689KB" >
  13034. </productMenu>
  13035. <productMenu id="userGuide"
  13036. type="1"
  13037. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  13038. size="1.43MB" >
  13039. </productMenu>
  13040. <productID id="5920"
  13041. />
  13042. <productGroupable type="0"
  13043. />
  13044. </product>
  13045. <product id="DWO6"
  13046. name="SEDICI DWO6-PRO"
  13047. series="10"
  13048. latestVersion="1.0.2"
  13049. show = "0" >
  13050. <productMenu id="protocol"
  13051. type="0">
  13052. </productMenu>
  13053. <productMenu id="sip"
  13054. type="1" >
  13055. </productMenu>
  13056. <productMenu id="bluetoothIntercom"
  13057. type="1" >
  13058. </productMenu>
  13059. <productMenu id="phone"
  13060. type="2" >
  13061. </productMenu>
  13062. <productMenu id="fmradio"
  13063. type="3" >
  13064. </productMenu>
  13065. <productMenu id="deviceSetting"
  13066. type="1"
  13067. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  13068. </productMenu>
  13069. <productMenu id="quickGuide"
  13070. type="1"
  13071. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  13072. size="529KB" >
  13073. </productMenu>
  13074. <productMenu id="userGuide"
  13075. type="1"
  13076. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  13077. size="4.09MB" >
  13078. </productMenu>
  13079. <productID id="6112"
  13080. />
  13081. <productGroupable type="0"
  13082. />
  13083. </product>
  13084. <product id="DWO6A"
  13085. name="SEDICI DWO-6"
  13086. series="10"
  13087. latestVersion="1.0.2"
  13088. show = "0" >
  13089. <productMenu id="protocol"
  13090. type="0">
  13091. </productMenu>
  13092. <productMenu id="sip"
  13093. type="1" >
  13094. </productMenu>
  13095. <productMenu id="bluetoothIntercom"
  13096. type="1" >
  13097. </productMenu>
  13098. <productMenu id="phone"
  13099. type="2" >
  13100. </productMenu>
  13101. <productMenu id="fmradio"
  13102. type="3" >
  13103. </productMenu>
  13104. <productMenu id="deviceSetting"
  13105. type="1"
  13106. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  13107. </productMenu>
  13108. <productMenu id="quickGuide"
  13109. type="1"
  13110. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  13111. size="522KB" >
  13112. </productMenu>
  13113. <productMenu id="userGuide"
  13114. type="1"
  13115. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  13116. size="2.71MB" >
  13117. </productMenu>
  13118. <productID id="6114"
  13119. />
  13120. <productGroupable type="0"
  13121. />
  13122. </product>
  13123. <product id="3SPLUS"
  13124. name="ZILL"
  13125. series="3"
  13126. latestVersion="1.0.4"
  13127. show = "0" >
  13128. <productMenu id="protocol"
  13129. type="0">
  13130. </productMenu>
  13131. <productMenu id="sip"
  13132. type="1" >
  13133. </productMenu>
  13134. <productMenu id="bluetoothIntercom"
  13135. type="1" >
  13136. </productMenu>
  13137. <productMenu id="deviceSetting"
  13138. type="1"
  13139. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  13140. </productMenu>
  13141. <productMenu id="quickGuide"
  13142. type="1"
  13143. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  13144. size="842KB" >
  13145. </productMenu>
  13146. <productMenu id="userGuide"
  13147. type="1"
  13148. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  13149. size="1.02MB" >
  13150. </productMenu>
  13151. <productID id="6335"
  13152. />
  13153. <productGroupable type="0"
  13154. />
  13155. </product>
  13156. <product id="HD50S"
  13157. name="Boom! Audio 30K"
  13158. series="30"
  13159. latestVersion="3.4"
  13160. show = "0" >
  13161. <productMenu id="protocol"
  13162. type="1"
  13163. url="0">
  13164. </productMenu>
  13165. <productMenu id="wa"
  13166. type="0" >
  13167. </productMenu>
  13168. <productMenu id="sip"
  13169. type="1" >
  13170. </productMenu>
  13171. <productMenu id="meshIntercom"
  13172. type="20" >
  13173. <productMenuType version="2.9.9"
  13174. type="10"
  13175. />
  13176. </productMenu>
  13177. <productMenu id="bluetoothIntercom"
  13178. type="1" >
  13179. </productMenu>
  13180. <productMenu id="phone"
  13181. type="1" >
  13182. </productMenu>
  13183. <productMenu id="music"
  13184. type="1" >
  13185. </productMenu>
  13186. <productMenu id="fmradio"
  13187. type="1" >
  13188. </productMenu>
  13189. <productMenu id="deviceSetting"
  13190. type="1"
  13191. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  13192. <productMenuURL version="3.2"
  13193. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  13194. />
  13195. <productMenuURL version="3.0"
  13196. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  13197. />
  13198. <productMenuURL version="2.2"
  13199. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  13200. />
  13201. </productMenu>
  13202. <productMenu id="quickGuide"
  13203. type="1"
  13204. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  13205. size="1.06MB" >
  13206. </productMenu>
  13207. <productMenu id="userGuide"
  13208. type="1"
  13209. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  13210. size="3.15MB" >
  13211. </productMenu>
  13212. <productMenu id="volume"
  13213. type="1" >
  13214. </productMenu>
  13215. <productID id="3112"
  13216. />
  13217. <productGroupable type="0"
  13218. />
  13219. </product>
  13220. <product id="HD50S"
  13221. name="Boom! Audio N02"
  13222. series="30"
  13223. latestVersion="3.1"
  13224. show = "0" >
  13225. <productMenu id="protocol"
  13226. type="1"
  13227. url="0">
  13228. </productMenu>
  13229. <productMenu id="wa"
  13230. type="2" >
  13231. </productMenu>
  13232. <productMenu id="sip"
  13233. type="1" >
  13234. </productMenu>
  13235. <productMenu id="meshIntercom"
  13236. type="20" >
  13237. <productMenuType version="2.9.9"
  13238. type="10"
  13239. />
  13240. </productMenu>
  13241. <productMenu id="bluetoothIntercom"
  13242. type="1" >
  13243. </productMenu>
  13244. <productMenu id="phone"
  13245. type="1" >
  13246. </productMenu>
  13247. <productMenu id="music"
  13248. type="1" >
  13249. </productMenu>
  13250. <productMenu id="fmradio"
  13251. type="1" >
  13252. </productMenu>
  13253. <productMenu id="deviceSetting"
  13254. type="1"
  13255. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  13256. <productMenuURL version="2.2"
  13257. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  13258. />
  13259. </productMenu>
  13260. <productMenu id="quickGuide"
  13261. type="1"
  13262. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  13263. size="1.06MB" >
  13264. </productMenu>
  13265. <productMenu id="userGuide"
  13266. type="1"
  13267. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  13268. size="3.15MB" >
  13269. </productMenu>
  13270. <productMenu id="volume"
  13271. type="2" >
  13272. </productMenu>
  13273. <productID id="3114"
  13274. />
  13275. <productGroupable type="0"
  13276. />
  13277. </product>
  13278. <product id="HD50S"
  13279. name="Boom Audio 20S"
  13280. series="50"
  13281. latestVersion="2.5.2"
  13282. show = "0" >
  13283. <productMenu id="protocol"
  13284. type="0">
  13285. </productMenu>
  13286. <productMenu id="sip"
  13287. type="1" >
  13288. <productMenuType version="1.0"
  13289. type="0"
  13290. />
  13291. </productMenu>
  13292. <productMenu id="bluetoothIntercom"
  13293. type="1" >
  13294. <productMenuType version="1.0"
  13295. type="0"
  13296. />
  13297. </productMenu>
  13298. <productMenu id="intercomSetting"
  13299. type="1" >
  13300. </productMenu>
  13301. <productMenu id="phone"
  13302. type="2" >
  13303. </productMenu>
  13304. <productMenu id="fmradio"
  13305. type="3" >
  13306. </productMenu>
  13307. <productMenu id="deviceSetting"
  13308. type="1"
  13309. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  13310. <productMenuURL version="2.4"
  13311. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  13312. />
  13313. <productMenuURL version="1.5"
  13314. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  13315. />
  13316. <productMenuURL version="1.4.1"
  13317. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  13318. />
  13319. <productMenuURL version="1.1"
  13320. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  13321. />
  13322. <productMenuURL version="1.0"
  13323. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  13324. />
  13325. </productMenu>
  13326. <productMenu id="quickGuide"
  13327. type="1"
  13328. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  13329. size="264KB" >
  13330. </productMenu>
  13331. <productMenu id="userGuide"
  13332. type="1"
  13333. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  13334. size="3.09MB" >
  13335. </productMenu>
  13336. <productMenu id="connectGuide"
  13337. type="1"
  13338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  13339. size="1.12MB" >
  13340. </productMenu>
  13341. <productID id="4210"
  13342. />
  13343. <productProductKey key="11"
  13344. />
  13345. <productID id="4230"
  13346. />
  13347. <productProductKey key="11"
  13348. />
  13349. <productGroupable type="1"
  13350. />
  13351. </product>
  13352. <product id="HD50S"
  13353. name="Boom Audio 20S EVO"
  13354. series="50"
  13355. latestVersion="2.5.2"
  13356. show = "0" >
  13357. <productMenu id="protocol"
  13358. type="0">
  13359. </productMenu>
  13360. <productMenu id="sip"
  13361. type="1" >
  13362. <productMenuType version="1.0"
  13363. type="0"
  13364. />
  13365. </productMenu>
  13366. <productMenu id="bluetoothIntercom"
  13367. type="1" >
  13368. <productMenuType version="1.0"
  13369. type="0"
  13370. />
  13371. </productMenu>
  13372. <productMenu id="intercomSetting"
  13373. type="1" >
  13374. </productMenu>
  13375. <productMenu id="phone"
  13376. type="2" >
  13377. </productMenu>
  13378. <productMenu id="fmradio"
  13379. type="3" >
  13380. </productMenu>
  13381. <productMenu id="deviceSetting"
  13382. type="1"
  13383. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  13384. <productMenuURL version="2.4"
  13385. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  13386. />
  13387. <productMenuURL version="1.5"
  13388. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  13389. />
  13390. <productMenuURL version="1.4.1"
  13391. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  13392. />
  13393. <productMenuURL version="1.1"
  13394. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  13395. />
  13396. <productMenuURL version="1.0"
  13397. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  13398. />
  13399. </productMenu>
  13400. <productMenu id="quickGuide"
  13401. type="1"
  13402. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  13403. size="321KB" >
  13404. </productMenu>
  13405. <productMenu id="userGuide"
  13406. type="1"
  13407. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  13408. size="2.46MB" >
  13409. </productMenu>
  13410. <productID id="4230"
  13411. />
  13412. <productProductKey key="27"
  13413. />
  13414. <productGroupable type="1"
  13415. />
  13416. </product>
  13417. <product id="HD50S"
  13418. name="Boom! Audio 10S"
  13419. series="50"
  13420. latestVersion="1.1.3"
  13421. show = "0" >
  13422. <productMenu id="protocol"
  13423. type="0">
  13424. </productMenu>
  13425. <productMenu id="sip"
  13426. type="1" >
  13427. </productMenu>
  13428. <productMenu id="bluetoothIntercom"
  13429. type="1" >
  13430. </productMenu>
  13431. <productMenu id="phone"
  13432. type="2" >
  13433. </productMenu>
  13434. <productMenu id="fmradio"
  13435. type="3" >
  13436. </productMenu>
  13437. <productMenu id="deviceSetting"
  13438. type="1"
  13439. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  13440. </productMenu>
  13441. <productMenu id="quickGuide"
  13442. type="1"
  13443. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13444. size="538KB" >
  13445. </productMenu>
  13446. <productMenu id="userGuide"
  13447. type="1"
  13448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13449. size="1.55MB" >
  13450. </productMenu>
  13451. <productID id="5532"
  13452. />
  13453. <productGroupable type="0"
  13454. />
  13455. </product>
  13456. <product id="HD50S"
  13457. name="Boom! Audio N01 10R"
  13458. series="50"
  13459. latestVersion="1.1.3"
  13460. show = "0" >
  13461. <productMenu id="protocol"
  13462. type="0">
  13463. </productMenu>
  13464. <productMenu id="sip"
  13465. type="1" >
  13466. </productMenu>
  13467. <productMenu id="bluetoothIntercom"
  13468. type="1" >
  13469. </productMenu>
  13470. <productMenu id="phone"
  13471. type="2" >
  13472. </productMenu>
  13473. <productMenu id="fmradio"
  13474. type="3" >
  13475. </productMenu>
  13476. <productMenu id="deviceSetting"
  13477. type="1"
  13478. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  13479. </productMenu>
  13480. <productMenu id="quickGuide"
  13481. type="1"
  13482. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13483. size="766KB" >
  13484. </productMenu>
  13485. <productMenu id="userGuide"
  13486. type="1"
  13487. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13488. size="1.45MB" >
  13489. </productMenu>
  13490. <productID id="5522"
  13491. />
  13492. <productGroupable type="0"
  13493. />
  13494. </product>
  13495. <product id="HD50S"
  13496. name="OUTRUSH-R N03"
  13497. series="50"
  13498. latestVersion="1.2.1"
  13499. show = "-1" >
  13500. <productMenu id="protocol"
  13501. type="0">
  13502. </productMenu>
  13503. <productMenu id="sip"
  13504. type="1" >
  13505. </productMenu>
  13506. <productMenu id="bluetoothIntercom"
  13507. type="1" >
  13508. </productMenu>
  13509. <productMenu id="phone"
  13510. type="2" >
  13511. </productMenu>
  13512. <productMenu id="fmradio"
  13513. type="3" >
  13514. </productMenu>
  13515. <productMenu id="deviceSetting"
  13516. type="1"
  13517. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  13518. </productMenu>
  13519. <productMenu id="userGuide"
  13520. type="1"
  13521. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  13522. size="660KB" >
  13523. </productMenu>
  13524. <productID id="5434"
  13525. />
  13526. <productGroupable type="0"
  13527. />
  13528. </product>
  13529. <product id="HD50S"
  13530. name="OUTRUSH-R N03"
  13531. series="50"
  13532. latestVersion="2.0"
  13533. show = "0" >
  13534. <productMenu id="protocol"
  13535. type="3" >
  13536. </productMenu>
  13537. <productMenu id="sip"
  13538. type="1" >
  13539. </productMenu>
  13540. <productMenu id="bluetoothIntercom"
  13541. type="1" >
  13542. </productMenu>
  13543. <productMenu id="phone"
  13544. type="1" >
  13545. </productMenu>
  13546. <productMenu id="fmradio"
  13547. type="1" >
  13548. </productMenu>
  13549. <productMenu id="deviceSetting"
  13550. type="1"
  13551. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  13552. </productMenu>
  13553. <productMenu id="userGuide"
  13554. type="1"
  13555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  13556. size="1.14MB" >
  13557. </productMenu>
  13558. <productID id="5441"
  13559. />
  13560. <productGroupable type="0"
  13561. />
  13562. </product>
  13563. <product id="5R"
  13564. name="5R"
  13565. series="5"
  13566. latestVersion="1.0.1"
  13567. show = "1" >
  13568. <productMenu id="protocol"
  13569. type="3" >
  13570. </productMenu>
  13571. <productMenu id="sip"
  13572. type="1" >
  13573. </productMenu>
  13574. <productMenu id="bluetoothIntercom"
  13575. type="1" >
  13576. </productMenu>
  13577. <productMenu id="phone"
  13578. type="1" >
  13579. </productMenu>
  13580. <productMenu id="fmradio"
  13581. type="1" >
  13582. </productMenu>
  13583. <productMenu id="deviceSetting"
  13584. type="1"
  13585. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13586. </productMenu>
  13587. <productMenu id="quickGuide"
  13588. type="0"
  13589. url=""
  13590. size="934KB" >
  13591. </productMenu>
  13592. <productMenu id="userGuide"
  13593. type="1"
  13594. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  13595. size="1.14MB" >
  13596. </productMenu>
  13597. <productMenu id="connectGuide"
  13598. type="1"
  13599. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13600. size="1.12MB" >
  13601. </productMenu>
  13602. <productID id="5591"
  13603. />
  13604. <productGroupable type="0"
  13605. />
  13606. </product>
  13607. <product id="5R"
  13608. name="5R LITE"
  13609. series="5"
  13610. latestVersion="1.0.1"
  13611. show = "1" >
  13612. <productMenu id="protocol"
  13613. type="3" >
  13614. </productMenu>
  13615. <productMenu id="sip"
  13616. type="1" >
  13617. </productMenu>
  13618. <productMenu id="bluetoothIntercom"
  13619. type="1" >
  13620. </productMenu>
  13621. <productMenu id="phone"
  13622. type="1" >
  13623. </productMenu>
  13624. <productMenu id="fmradio"
  13625. type="1" >
  13626. </productMenu>
  13627. <productMenu id="deviceSetting"
  13628. type="1"
  13629. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13630. </productMenu>
  13631. <productMenu id="quickGuide"
  13632. type="0"
  13633. url=""
  13634. size="934KB" >
  13635. </productMenu>
  13636. <productMenu id="userGuide"
  13637. type="1"
  13638. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13639. size="1.14MB" >
  13640. </productMenu>
  13641. <productMenu id="connectGuide"
  13642. type="1"
  13643. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13644. size="1.12MB" >
  13645. </productMenu>
  13646. <productID id="5592"
  13647. />
  13648. <productGroupable type="0"
  13649. />
  13650. </product>
  13651. <product id="50RLE"
  13652. name="50R LE"
  13653. series="50"
  13654. latestVersion="1.1"
  13655. show = "0" >
  13656. <productMenu id="protocol"
  13657. type="2" >
  13658. </productMenu>
  13659. <productMenu id="alexa"
  13660. type="0" >
  13661. </productMenu>
  13662. <productMenu id="sip"
  13663. type="1" >
  13664. </productMenu>
  13665. <productMenu id="meshIntercom"
  13666. type="30" >
  13667. </productMenu>
  13668. <productMenu id="meshIntercom+"
  13669. type="3"
  13670. url="2" >
  13671. <productMenuType version="1.0.9"
  13672. type="2"
  13673. />
  13674. </productMenu>
  13675. <productMenu id="waveIntercom"
  13676. type="1" >
  13677. <productMenuType version="1.0.9"
  13678. type="0"
  13679. />
  13680. </productMenu>
  13681. <productMenu id="bluetoothIntercom"
  13682. type="1" >
  13683. </productMenu>
  13684. <productMenu id="phone"
  13685. type="1" >
  13686. </productMenu>
  13687. <productMenu id="music"
  13688. type="1" >
  13689. </productMenu>
  13690. <productMenu id="fmradio"
  13691. type="0" >
  13692. </productMenu>
  13693. <productMenu id="deviceSetting"
  13694. type="1"
  13695. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  13696. <productMenuURL version="1.0.9"
  13697. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  13698. />
  13699. </productMenu>
  13700. <productMenu id="quickGuide"
  13701. type="0"
  13702. url=""
  13703. size="344KB" >
  13704. </productMenu>
  13705. <productMenu id="userGuide"
  13706. type="0"
  13707. url=""
  13708. size="3.41MB" >
  13709. </productMenu>
  13710. <productMenu id="volume"
  13711. type="11" >
  13712. </productMenu>
  13713. <productMenu id="battery"
  13714. type="1" >
  13715. </productMenu>
  13716. <productID id="3223"
  13717. />
  13718. <productGroupable type="0"
  13719. />
  13720. </product>
  13721. <product id="5RLOUIS"
  13722. name="5R LOUIS EDITION"
  13723. series="5"
  13724. latestVersion="1.0"
  13725. show = "-1" >
  13726. <productMenu id="protocol"
  13727. type="3" >
  13728. </productMenu>
  13729. <productMenu id="sip"
  13730. type="1" >
  13731. </productMenu>
  13732. <productMenu id="bluetoothIntercom"
  13733. type="1" >
  13734. </productMenu>
  13735. <productMenu id="phone"
  13736. type="1" >
  13737. </productMenu>
  13738. <productMenu id="fmradio"
  13739. type="1" >
  13740. </productMenu>
  13741. <productMenu id="deviceSetting"
  13742. type="1"
  13743. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13744. </productMenu>
  13745. <productMenu id="quickGuide"
  13746. type="0"
  13747. url=""
  13748. size="934KB" >
  13749. </productMenu>
  13750. <productMenu id="userGuide"
  13751. type="0"
  13752. url=""
  13753. size="1.14MB" >
  13754. </productMenu>
  13755. <productID id="5597"
  13756. />
  13757. <productGroupable type="0"
  13758. />
  13759. </product>
  13760. <product id="5S"
  13761. name="Ridekont 5S"
  13762. series="5"
  13763. latestVersion="2.3"
  13764. show = "-1" >
  13765. <productMenu id="protocol"
  13766. type="3" >
  13767. </productMenu>
  13768. <productMenu id="sip"
  13769. type="1" >
  13770. </productMenu>
  13771. <productMenu id="bluetoothIntercom"
  13772. type="1" >
  13773. </productMenu>
  13774. <productMenu id="phone"
  13775. type="1" >
  13776. </productMenu>
  13777. <productMenu id="fmradio"
  13778. type="0" >
  13779. </productMenu>
  13780. <productMenu id="deviceSetting"
  13781. type="1"
  13782. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13783. </productMenu>
  13784. <productMenu id="quickGuide"
  13785. type="0"
  13786. url=""
  13787. size="934KB" >
  13788. </productMenu>
  13789. <productMenu id="userGuide"
  13790. type="1"
  13791. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  13792. size="1.14MB" >
  13793. </productMenu>
  13794. <productID id="5589"
  13795. />
  13796. <productGroupable type="0"
  13797. />
  13798. </product>
  13799. <product id="5R"
  13800. name="Ridekont 5R"
  13801. series="5"
  13802. latestVersion="1.0"
  13803. show = "0" >
  13804. <productMenu id="protocol"
  13805. type="3" >
  13806. </productMenu>
  13807. <productMenu id="sip"
  13808. type="1" >
  13809. </productMenu>
  13810. <productMenu id="bluetoothIntercom"
  13811. type="1" >
  13812. </productMenu>
  13813. <productMenu id="phone"
  13814. type="1" >
  13815. </productMenu>
  13816. <productMenu id="fmradio"
  13817. type="1" >
  13818. </productMenu>
  13819. <productMenu id="deviceSetting"
  13820. type="1"
  13821. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13822. </productMenu>
  13823. <productMenu id="quickGuide"
  13824. type="1"
  13825. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  13826. size="934KB" >
  13827. </productMenu>
  13828. <productMenu id="userGuide"
  13829. type="1"
  13830. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  13831. size="1.14MB" >
  13832. </productMenu>
  13833. <productID id="5593"
  13834. />
  13835. <productGroupable type="0"
  13836. />
  13837. </product>
  13838. <product id="5R"
  13839. name="Ridekont 5R LITE"
  13840. series="5"
  13841. latestVersion="1.0"
  13842. show = "0" >
  13843. <productMenu id="protocol"
  13844. type="3" >
  13845. </productMenu>
  13846. <productMenu id="sip"
  13847. type="1" >
  13848. </productMenu>
  13849. <productMenu id="bluetoothIntercom"
  13850. type="1" >
  13851. </productMenu>
  13852. <productMenu id="phone"
  13853. type="1" >
  13854. </productMenu>
  13855. <productMenu id="fmradio"
  13856. type="1" >
  13857. </productMenu>
  13858. <productMenu id="deviceSetting"
  13859. type="1"
  13860. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13861. </productMenu>
  13862. <productMenu id="quickGuide"
  13863. type="0"
  13864. url=""
  13865. size="934KB" >
  13866. </productMenu>
  13867. <productMenu id="userGuide"
  13868. type="1"
  13869. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13870. size="1.14MB" >
  13871. </productMenu>
  13872. <productID id="5594"
  13873. />
  13874. <productGroupable type="0"
  13875. />
  13876. </product>
  13877. <product id="SA30"
  13878. name="SA30"
  13879. series="SA"
  13880. latestVersion="1.0.3"
  13881. latestVersionVoicePrompt="0.15"
  13882. show = "-1" >
  13883. <productMenu id="protocol"
  13884. type="2" >
  13885. </productMenu>
  13886. <productMenu id="ota"
  13887. type="2" >
  13888. <otaPackages>
  13889. <package
  13890. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  13891. size="3144148"
  13892. />
  13893. </otaPackages>
  13894. </productMenu>
  13895. <productMenu id="meshIntercom"
  13896. type="30" >
  13897. </productMenu>
  13898. <productMenu id="meshIntercom+"
  13899. type="3"
  13900. url="2" >
  13901. </productMenu>
  13902. <productMenu id="phone"
  13903. type="1" >
  13904. </productMenu>
  13905. <productMenu id="music"
  13906. type="1" >
  13907. </productMenu>
  13908. <productMenu id="musicSharing"
  13909. type="0" >
  13910. </productMenu>
  13911. <productMenu id="deviceSetting"
  13912. type="1"
  13913. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  13914. </productMenu>
  13915. <productMenu id="quickGuide"
  13916. type="0"
  13917. url=""
  13918. size="1.12MB" >
  13919. </productMenu>
  13920. <productMenu id="userGuide"
  13921. type="1"
  13922. url=""
  13923. size="2.0MB" >
  13924. </productMenu>
  13925. <productMenu id="videoGuide"
  13926. type="0"
  13927. url=""
  13928. size="3.41MB" >
  13929. </productMenu>
  13930. <productMenu id="volume"
  13931. type="12" >
  13932. </productMenu>
  13933. <productMenu id="battery"
  13934. type="1" >
  13935. </productMenu>
  13936. <productID id="6852"
  13937. />
  13938. <productGroupable type="0"
  13939. />
  13940. </product>
  13941. <product id="I30"
  13942. name="I30"
  13943. series="I"
  13944. latestVersion="1.0.3"
  13945. latestVersionVoicePrompt="0.2"
  13946. show = "-1" >
  13947. <productMenu id="protocol"
  13948. type="2" >
  13949. </productMenu>
  13950. <productMenu id="ota"
  13951. type="2" >
  13952. <otaPackages>
  13953. <package
  13954. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  13955. size="3144148"
  13956. />
  13957. </otaPackages>
  13958. </productMenu>
  13959. <productMenu id="meshIntercom"
  13960. type="30" >
  13961. </productMenu>
  13962. <productMenu id="meshIntercom+"
  13963. type="3"
  13964. url="2" >
  13965. </productMenu>
  13966. <productMenu id="phone"
  13967. type="1" >
  13968. </productMenu>
  13969. <productMenu id="music"
  13970. type="1" >
  13971. </productMenu>
  13972. <productMenu id="musicSharing"
  13973. type="0" >
  13974. </productMenu>
  13975. <productMenu id="deviceSetting"
  13976. type="1"
  13977. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  13978. </productMenu>
  13979. <productMenu id="quickGuide"
  13980. type="0"
  13981. url=""
  13982. size="1.12MB" >
  13983. </productMenu>
  13984. <productMenu id="userGuide"
  13985. type="1"
  13986. url=""
  13987. size="2.10MB" >
  13988. </productMenu>
  13989. <productMenu id="videoGuide"
  13990. type="0"
  13991. url=""
  13992. size="3.11MB" >
  13993. </productMenu>
  13994. <productMenu id="volume"
  13995. type="12" >
  13996. </productMenu>
  13997. <productMenu id="battery"
  13998. type="1" >
  13999. </productMenu>
  14000. <productID id="6853"
  14001. />
  14002. <productGroupable type="0"
  14003. />
  14004. </product>
  14005. <product id="LS2C30"
  14006. name="LS2-C30"
  14007. series="C"
  14008. latestVersion="1.0"
  14009. latestVersionVoicePrompt="0.13"
  14010. show = "-1" >
  14011. <productMenu id="protocol"
  14012. type="2" >
  14013. </productMenu>
  14014. <productMenu id="ota"
  14015. type="2" >
  14016. <otaPackages>
  14017. <package
  14018. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2-C30-v1.0-build0.img"
  14019. size="3144148"
  14020. />
  14021. </otaPackages>
  14022. </productMenu>
  14023. <productMenu id="meshIntercom+"
  14024. type="3"
  14025. url="2" >
  14026. </productMenu>
  14027. <productMenu id="waveIntercom"
  14028. type="1" >
  14029. </productMenu>
  14030. <productMenu id="phone"
  14031. type="1" >
  14032. </productMenu>
  14033. <productMenu id="music"
  14034. type="1" >
  14035. </productMenu>
  14036. <productMenu id="musicSharing"
  14037. type="0" >
  14038. </productMenu>
  14039. <productMenu id="deviceSetting"
  14040. type="1"
  14041. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  14042. </productMenu>
  14043. <productMenu id="quickGuide"
  14044. type="0"
  14045. url=""
  14046. size="1.17MB" >
  14047. </productMenu>
  14048. <productMenu id="userGuide"
  14049. type="1"
  14050. url=""
  14051. size="2.0MB" >
  14052. </productMenu>
  14053. <productMenu id="videoGuide"
  14054. type="0"
  14055. url=""
  14056. size="3.41MB" >
  14057. </productMenu>
  14058. <productMenu id="volume"
  14059. type="12" >
  14060. </productMenu>
  14061. <productMenu id="battery"
  14062. type="1" >
  14063. </productMenu>
  14064. <productID id="685E"
  14065. />
  14066. <productGroupable type="0"
  14067. />
  14068. </product>
  14069. <product id="C30EVO"
  14070. name="C30 EVO"
  14071. series="C"
  14072. latestVersion="1.0"
  14073. latestVersionVoicePrompt="0.13"
  14074. show = "-1" >
  14075. <productMenu id="protocol"
  14076. type="2" >
  14077. </productMenu>
  14078. <productMenu id="ota"
  14079. type="0" >
  14080. <otaPackages>
  14081. <package
  14082. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  14083. size="3144148"
  14084. />
  14085. </otaPackages>
  14086. </productMenu>
  14087. <productMenu id="meshIntercom+"
  14088. type="3"
  14089. url="2" >
  14090. </productMenu>
  14091. <productMenu id="waveIntercom"
  14092. type="1" >
  14093. </productMenu>
  14094. <productMenu id="phone"
  14095. type="1" >
  14096. </productMenu>
  14097. <productMenu id="music"
  14098. type="1" >
  14099. </productMenu>
  14100. <productMenu id="musicSharing"
  14101. type="0" >
  14102. </productMenu>
  14103. <productMenu id="deviceSetting"
  14104. type="1"
  14105. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  14106. </productMenu>
  14107. <productMenu id="quickGuide"
  14108. type="0"
  14109. url=""
  14110. size="1.17MB" >
  14111. </productMenu>
  14112. <productMenu id="userGuide"
  14113. type="1"
  14114. url=""
  14115. size="2.0MB" >
  14116. </productMenu>
  14117. <productMenu id="videoGuide"
  14118. type="0"
  14119. url=""
  14120. size="3.41MB" >
  14121. </productMenu>
  14122. <productMenu id="volume"
  14123. type="12" >
  14124. </productMenu>
  14125. <productMenu id="battery"
  14126. type="1" >
  14127. </productMenu>
  14128. <productID id="685B"
  14129. />
  14130. <productGroupable type="0"
  14131. />
  14132. </product>
  14133. <product id="C30"
  14134. name="SENA C30"
  14135. series="C"
  14136. latestVersion="1.2.4"
  14137. latestVersionVoicePrompt="0.13"
  14138. show = "1" >
  14139. <productMenu id="protocol"
  14140. type="2" >
  14141. </productMenu>
  14142. <productMenu id="alexa"
  14143. type="0" >
  14144. </productMenu>
  14145. <productMenu id="ota"
  14146. type="2" >
  14147. <otaPackages>
  14148. <package
  14149. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  14150. size="3144148"
  14151. />
  14152. </otaPackages>
  14153. </productMenu>
  14154. <productMenu id="wa"
  14155. type="0" >
  14156. </productMenu>
  14157. <productMenu id="meshIntercom"
  14158. type="30" >
  14159. </productMenu>
  14160. <productMenu id="meshIntercom+"
  14161. type="3"
  14162. url="2" >
  14163. <productMenuType version="1.0.9"
  14164. type="2"
  14165. />
  14166. </productMenu>
  14167. <productMenu id="waveIntercom"
  14168. type="1" >
  14169. <productMenuType version="1.1.9"
  14170. type="0"
  14171. />
  14172. </productMenu>
  14173. <productMenu id="phone"
  14174. type="1" >
  14175. </productMenu>
  14176. <productMenu id="music"
  14177. type="1" >
  14178. </productMenu>
  14179. <productMenu id="musicSharing"
  14180. type="0" >
  14181. </productMenu>
  14182. <productMenu id="deviceSetting"
  14183. type="1"
  14184. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  14185. <productMenuURL version="1.1.3"
  14186. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  14187. />
  14188. <productMenuURL version="1.0.9"
  14189. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  14190. />
  14191. </productMenu>
  14192. <productMenu id="quickGuide"
  14193. type="1"
  14194. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  14195. size="1.12MB" >
  14196. </productMenu>
  14197. <productMenu id="userGuide"
  14198. type="0"
  14199. url=""
  14200. size="2.0MB" >
  14201. </productMenu>
  14202. <productMenu id="videoGuide"
  14203. type="0"
  14204. url=""
  14205. size="3.41MB" >
  14206. </productMenu>
  14207. <productMenu id="volume"
  14208. type="12" >
  14209. </productMenu>
  14210. <productMenu id="battery"
  14211. type="1" >
  14212. </productMenu>
  14213. <productID id="683A"
  14214. />
  14215. <productGroupable type="0"
  14216. />
  14217. </product>
  14218. <product id="C20"
  14219. name="C20"
  14220. series="C"
  14221. latestVersion="1.0"
  14222. show = "1" >
  14223. <productMenu id="protocol"
  14224. type="3" >
  14225. </productMenu>
  14226. <productMenu id="sip"
  14227. type="1" >
  14228. </productMenu>
  14229. <productMenu id="bluetoothIntercom"
  14230. type="1" >
  14231. </productMenu>
  14232. <productMenu id="phone"
  14233. type="1" >
  14234. </productMenu>
  14235. <productMenu id="deviceSetting"
  14236. type="1"
  14237. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  14238. </productMenu>
  14239. <productMenu id="quickGuide"
  14240. type="1"
  14241. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  14242. size="934KB" >
  14243. </productMenu>
  14244. <productMenu id="userGuide"
  14245. type="1"
  14246. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  14247. size="1.14MB" >
  14248. </productMenu>
  14249. <productID id="3701"
  14250. />
  14251. <productGroupable type="0"
  14252. />
  14253. </product>
  14254. <product id="C10"
  14255. name="C10"
  14256. series="C"
  14257. latestVersion="1.4.4"
  14258. show = "1" >
  14259. <productMenu id="protocol"
  14260. type="3" >
  14261. </productMenu>
  14262. <productMenu id="sip"
  14263. type="1" >
  14264. </productMenu>
  14265. <productMenu id="bluetoothIntercom"
  14266. type="1" >
  14267. </productMenu>
  14268. <productMenu id="phone"
  14269. type="1" >
  14270. </productMenu>
  14271. <productMenu id="fmradio"
  14272. type="0" >
  14273. </productMenu>
  14274. <productMenu id="deviceSetting"
  14275. type="1"
  14276. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  14277. </productMenu>
  14278. <productMenu id="userGuide"
  14279. type="1"
  14280. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  14281. size="1.14MB" >
  14282. </productMenu>
  14283. <productID id="5595"
  14284. />
  14285. <productGroupable type="0"
  14286. />
  14287. </product>
  14288. <product id="CA1"
  14289. name="CA1"
  14290. series="C"
  14291. latestVersion="0.2"
  14292. show = "-1" >
  14293. <productMenu id="protocol"
  14294. type="2" >
  14295. </productMenu>
  14296. <productMenu id="ota"
  14297. type="2" >
  14298. <otaPackages>
  14299. <package
  14300. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  14301. size="3144148"
  14302. />
  14303. </otaPackages>
  14304. </productMenu>
  14305. <productMenu id="phone"
  14306. type="1" >
  14307. </productMenu>
  14308. <productMenu id="music"
  14309. type="1" >
  14310. </productMenu>
  14311. <productMenu id="musicSharing"
  14312. type="0" >
  14313. </productMenu>
  14314. <productMenu id="deviceSetting"
  14315. type="1"
  14316. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  14317. </productMenu>
  14318. <productMenu id="quickGuide"
  14319. type="1"
  14320. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  14321. size="1.12MB" >
  14322. </productMenu>
  14323. <productMenu id="userGuide"
  14324. type="0"
  14325. url=""
  14326. size="2.0MB" >
  14327. </productMenu>
  14328. <productMenu id="videoGuide"
  14329. type="1"
  14330. url=""
  14331. size="3.41MB" >
  14332. </productMenu>
  14333. <productMenu id="volume"
  14334. type="12" >
  14335. </productMenu>
  14336. <productMenu id="battery"
  14337. type="1" >
  14338. </productMenu>
  14339. <productID id="5F01"
  14340. />
  14341. <productGroupable type="0"
  14342. />
  14343. </product>
  14344. <product id="J30"
  14345. name="J30"
  14346. series="J"
  14347. latestVersion="1.2.4"
  14348. latestVersionVoicePrompt="0.14"
  14349. show = "0" >
  14350. <productMenu id="protocol"
  14351. type="2" >
  14352. </productMenu>
  14353. <productMenu id="alexa"
  14354. type="0" >
  14355. </productMenu>
  14356. <productMenu id="ota"
  14357. type="2" >
  14358. <otaPackages>
  14359. <package
  14360. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  14361. size="3144148"
  14362. />
  14363. </otaPackages>
  14364. </productMenu>
  14365. <productMenu id="wa"
  14366. type="0" >
  14367. </productMenu>
  14368. <productMenu id="meshIntercom"
  14369. type="30" >
  14370. </productMenu>
  14371. <productMenu id="meshIntercom+"
  14372. type="3"
  14373. url="2" >
  14374. <productMenuType version="1.0.9"
  14375. type="2"
  14376. />
  14377. </productMenu>
  14378. <productMenu id="waveIntercom"
  14379. type="1" >
  14380. <productMenuType version="1.1.9"
  14381. type="0"
  14382. />
  14383. </productMenu>
  14384. <productMenu id="phone"
  14385. type="1" >
  14386. </productMenu>
  14387. <productMenu id="music"
  14388. type="1" >
  14389. </productMenu>
  14390. <productMenu id="musicSharing"
  14391. type="0" >
  14392. </productMenu>
  14393. <productMenu id="deviceSetting"
  14394. type="1"
  14395. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  14396. <productMenuURL version="1.0.9"
  14397. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  14398. />
  14399. </productMenu>
  14400. <productMenu id="quickGuide"
  14401. type="0"
  14402. url=""
  14403. size="1.12MB" >
  14404. </productMenu>
  14405. <productMenu id="userGuide"
  14406. type="1"
  14407. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  14408. size="2.0MB" >
  14409. </productMenu>
  14410. <productMenu id="videoGuide"
  14411. type="0"
  14412. url=""
  14413. size="3.41MB" >
  14414. </productMenu>
  14415. <productMenu id="volume"
  14416. type="12" >
  14417. </productMenu>
  14418. <productMenu id="battery"
  14419. type="1" >
  14420. </productMenu>
  14421. <productID id="6848"
  14422. />
  14423. <productGroupable type="0"
  14424. />
  14425. </product>
  14426. <product id="J10"
  14427. name="J10"
  14428. series="5"
  14429. latestVersion="1.1.4"
  14430. show = "0" >
  14431. <productMenu id="protocol"
  14432. type="3" >
  14433. </productMenu>
  14434. <productMenu id="sip"
  14435. type="1" >
  14436. </productMenu>
  14437. <productMenu id="bluetoothIntercom"
  14438. type="1" >
  14439. </productMenu>
  14440. <productMenu id="phone"
  14441. type="1" >
  14442. </productMenu>
  14443. <productMenu id="fmradio"
  14444. type="0" >
  14445. </productMenu>
  14446. <productMenu id="deviceSetting"
  14447. type="1"
  14448. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  14449. </productMenu>
  14450. <productMenu id="userGuide"
  14451. type="1"
  14452. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  14453. size="1.14MB" >
  14454. </productMenu>
  14455. <productID id="5598"
  14456. />
  14457. <productGroupable type="0"
  14458. />
  14459. </product>
  14460. <product id="B20"
  14461. name="B20"
  14462. series="B"
  14463. latestVersion="1.1.4"
  14464. latestVersionVoicePrompt="0.14"
  14465. show = "0" >
  14466. <productMenu id="protocol"
  14467. type="2" >
  14468. </productMenu>
  14469. <productMenu id="alexa"
  14470. type="0" >
  14471. </productMenu>
  14472. <productMenu id="ota"
  14473. type="2" >
  14474. <otaPackages>
  14475. <package
  14476. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  14477. size="3144148"
  14478. />
  14479. </otaPackages>
  14480. </productMenu>
  14481. <productMenu id="wa"
  14482. type="0" >
  14483. </productMenu>
  14484. <productMenu id="meshIntercom"
  14485. type="30" >
  14486. </productMenu>
  14487. <productMenu id="phone"
  14488. type="1" >
  14489. </productMenu>
  14490. <productMenu id="music"
  14491. type="1" >
  14492. </productMenu>
  14493. <productMenu id="musicSharing"
  14494. type="0" >
  14495. </productMenu>
  14496. <productMenu id="deviceSetting"
  14497. type="1"
  14498. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  14499. <productMenuURL version="1.0.9"
  14500. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  14501. />
  14502. </productMenu>
  14503. <productMenu id="quickGuide"
  14504. type="0"
  14505. url=""
  14506. size="1.12MB" >
  14507. </productMenu>
  14508. <productMenu id="userGuide"
  14509. type="1"
  14510. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  14511. size="2.0MB" >
  14512. </productMenu>
  14513. <productMenu id="videoGuide"
  14514. type="0"
  14515. url=""
  14516. size="3.41MB" >
  14517. </productMenu>
  14518. <productMenu id="volume"
  14519. type="12" >
  14520. </productMenu>
  14521. <productMenu id="battery"
  14522. type="1" >
  14523. </productMenu>
  14524. <productID id="6847"
  14525. />
  14526. <productGroupable type="0"
  14527. />
  14528. </product>
  14529. <product id="B10"
  14530. name="B10"
  14531. series="5"
  14532. latestVersion="1.2.4"
  14533. show = "0" >
  14534. <productMenu id="protocol"
  14535. type="3" >
  14536. </productMenu>
  14537. <productMenu id="sip"
  14538. type="1" >
  14539. </productMenu>
  14540. <productMenu id="bluetoothIntercom"
  14541. type="1" >
  14542. </productMenu>
  14543. <productMenu id="phone"
  14544. type="1" >
  14545. </productMenu>
  14546. <productMenu id="fmradio"
  14547. type="0" >
  14548. </productMenu>
  14549. <productMenu id="deviceSetting"
  14550. type="1"
  14551. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  14552. </productMenu>
  14553. <productMenu id="userGuide"
  14554. type="1"
  14555. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  14556. size="1.14MB" >
  14557. </productMenu>
  14558. <productID id="5596"
  14559. />
  14560. <productGroupable type="0"
  14561. />
  14562. </product>
  14563. <product id="E30"
  14564. name="E30"
  14565. series="E"
  14566. latestVersion="1.1.4"
  14567. latestVersionVoicePrompt="0.14"
  14568. show = "0" >
  14569. <productMenu id="protocol"
  14570. type="2" >
  14571. </productMenu>
  14572. <productMenu id="alexa"
  14573. type="0" >
  14574. </productMenu>
  14575. <productMenu id="ota"
  14576. type="2" >
  14577. <otaPackages>
  14578. <package
  14579. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  14580. size="3144148"
  14581. />
  14582. </otaPackages>
  14583. </productMenu>
  14584. <productMenu id="wa"
  14585. type="0" >
  14586. </productMenu>
  14587. <productMenu id="meshIntercom"
  14588. type="30" >
  14589. </productMenu>
  14590. <productMenu id="meshIntercom+"
  14591. type="3"
  14592. url="2" >
  14593. </productMenu>
  14594. <productMenu id="waveIntercom"
  14595. type="1" >
  14596. <productMenuType version="1.0.9"
  14597. type="0"
  14598. />
  14599. </productMenu>
  14600. <productMenu id="phone"
  14601. type="1" >
  14602. </productMenu>
  14603. <productMenu id="music"
  14604. type="1" >
  14605. </productMenu>
  14606. <productMenu id="musicSharing"
  14607. type="0" >
  14608. </productMenu>
  14609. <productMenu id="deviceSetting"
  14610. type="1"
  14611. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  14612. </productMenu>
  14613. <productMenu id="quickGuide"
  14614. type="0"
  14615. url=""
  14616. size="1.12MB" >
  14617. </productMenu>
  14618. <productMenu id="userGuide"
  14619. type="1"
  14620. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  14621. size="2.0MB" >
  14622. </productMenu>
  14623. <productMenu id="videoGuide"
  14624. type="0"
  14625. url=""
  14626. size="3.41MB" >
  14627. </productMenu>
  14628. <productMenu id="volume"
  14629. type="12" >
  14630. </productMenu>
  14631. <productMenu id="battery"
  14632. type="1" >
  14633. </productMenu>
  14634. <productID id="6846"
  14635. />
  14636. <productGroupable type="0"
  14637. />
  14638. </product>
  14639. <product id="ACSRAM"
  14640. name="ACS-RAM"
  14641. series="ACS"
  14642. latestVersion="1.0.5"
  14643. show = "1" >
  14644. <productMenu id="protocol"
  14645. type="3" >
  14646. </productMenu>
  14647. <productMenu id="sip"
  14648. type="1" >
  14649. </productMenu>
  14650. <productMenu id="bluetoothIntercom"
  14651. type="1" >
  14652. </productMenu>
  14653. <productMenu id="deviceSetting"
  14654. type="1"
  14655. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  14656. <productMenuURL version="1.0.9"
  14657. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  14658. />
  14659. </productMenu>
  14660. <productMenu id="quickGuide"
  14661. type="1"
  14662. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  14663. size="344KB" >
  14664. </productMenu>
  14665. <productMenu id="userGuide"
  14666. type="1"
  14667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  14668. size="1.14MB" >
  14669. </productMenu>
  14670. <productMenu id="connectGuide"
  14671. type="1"
  14672. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  14673. size="1.12MB" >
  14674. </productMenu>
  14675. <productID id="3400"
  14676. />
  14677. <productGroupable type="0"
  14678. />
  14679. </product>
  14680. <product id="ACS10"
  14681. name="ACS10"
  14682. series="ACS"
  14683. latestVersion="1.0.2"
  14684. show = "1" >
  14685. <productMenu id="protocol"
  14686. type="0">
  14687. </productMenu>
  14688. <productMenu id="sip"
  14689. type="1" >
  14690. </productMenu>
  14691. <productMenu id="bluetoothIntercom"
  14692. type="1" >
  14693. </productMenu>
  14694. <productMenu id="phone"
  14695. type="2" >
  14696. </productMenu>
  14697. <productMenu id="deviceSetting"
  14698. type="1"
  14699. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  14700. </productMenu>
  14701. <productMenu id="quickGuide"
  14702. type="1"
  14703. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  14704. size="970KB" >
  14705. </productMenu>
  14706. <productMenu id="userGuide"
  14707. type="1"
  14708. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  14709. size="1.26MB" >
  14710. </productMenu>
  14711. <productMenu id="connectGuide"
  14712. type="1"
  14713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  14714. size="1.12MB" >
  14715. </productMenu>
  14716. <productID id="3300"
  14717. />
  14718. <productGroupable type="0"
  14719. />
  14720. </product>
  14721. <product id="DWO7ProMesh"
  14722. name="DWO 7 Pro Mesh"
  14723. series="50"
  14724. latestVersion="1.1"
  14725. latestVersionVoicePrompt="0.9"
  14726. show = "0" >
  14727. <productMenu id="protocol"
  14728. type="2" >
  14729. </productMenu>
  14730. <productMenu id="alexa"
  14731. type="0" >
  14732. </productMenu>
  14733. <productMenu id="ota"
  14734. type="2" >
  14735. <otaPackages>
  14736. <package
  14737. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  14738. size="2945812"
  14739. />
  14740. </otaPackages>
  14741. </productMenu>
  14742. <productMenu id="wa"
  14743. type="0" >
  14744. </productMenu>
  14745. <productMenu id="meshIntercom"
  14746. type="20" >
  14747. </productMenu>
  14748. <productMenu id="meshIntercom+"
  14749. type="3"
  14750. url="2" >
  14751. <productMenuType version="1.0.9"
  14752. type="2"
  14753. />
  14754. <productMenuURL version="2.1.1"
  14755. url="0"
  14756. />
  14757. </productMenu>
  14758. <productMenu id="waveIntercom"
  14759. type="1" >
  14760. <productMenuType version="1.0.9"
  14761. type="0"
  14762. />
  14763. </productMenu>
  14764. <productMenu id="phone"
  14765. type="1" >
  14766. </productMenu>
  14767. <productMenu id="music"
  14768. type="1" >
  14769. </productMenu>
  14770. <productMenu id="fmradio"
  14771. type="1" >
  14772. </productMenu>
  14773. <productMenu id="musicSharing"
  14774. type="0" >
  14775. </productMenu>
  14776. <productMenu id="deviceSetting"
  14777. type="1"
  14778. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  14779. <productMenuURL version="1.0.9"
  14780. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  14781. />
  14782. </productMenu>
  14783. <productMenu id="quickGuide"
  14784. type="1"
  14785. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14786. size="1.12MB" >
  14787. </productMenu>
  14788. <productMenu id="userGuide"
  14789. type="1"
  14790. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14791. size="2.0MB" >
  14792. </productMenu>
  14793. <productMenu id="volume"
  14794. type="12" >
  14795. </productMenu>
  14796. <productMenu id="battery"
  14797. type="1" >
  14798. </productMenu>
  14799. <productID id="6806"
  14800. />
  14801. <productGroupable type="0"
  14802. />
  14803. </product>
  14804. <product id="ERA1X"
  14805. name="ERA 1 X"
  14806. series="UCOM"
  14807. latestVersion="0.2.1"
  14808. latestVersionMesh="0.19"
  14809. latestVersionVoicePrompt="1.2"
  14810. show = "-1" >
  14811. <productMenu id="protocol"
  14812. type="2" >
  14813. </productMenu>
  14814. <productMenu id="ota"
  14815. type="2" >
  14816. <otaLanguages>
  14817. <otaLanguage
  14818. id="0"
  14819. name="English"
  14820. package="0"
  14821. />
  14822. <otaLanguage
  14823. id="0"
  14824. name="French"
  14825. package="1"
  14826. />
  14827. <otaLanguage
  14828. id="0"
  14829. name="Spanish"
  14830. package="2"
  14831. />
  14832. <otaLanguage
  14833. id="0"
  14834. name="Italian"
  14835. package="3"
  14836. />
  14837. <otaLanguage
  14838. id="0"
  14839. name="German"
  14840. package="4"
  14841. />
  14842. <otaLanguage
  14843. id="0"
  14844. name="Dutch"
  14845. package="5"
  14846. />
  14847. <otaLanguage
  14848. id="0"
  14849. name="Russian"
  14850. package="6"
  14851. />
  14852. <otaLanguage
  14853. id="0"
  14854. name="Chinese"
  14855. package="7"
  14856. />
  14857. <otaLanguage
  14858. id="0"
  14859. name="Korean"
  14860. package="8"
  14861. />
  14862. <otaLanguage
  14863. id="0"
  14864. name="Japanese"
  14865. package="9"
  14866. />
  14867. <otaLanguage
  14868. id="0"
  14869. name="Finnish"
  14870. package="10"
  14871. />
  14872. <otaLanguage
  14873. id="0"
  14874. name="Polish"
  14875. package="11"
  14876. />
  14877. <otaLanguage
  14878. id="0"
  14879. name="Czech"
  14880. package="12"
  14881. />
  14882. <otaLanguage
  14883. id="0"
  14884. name="Danish"
  14885. package="13"
  14886. />
  14887. <otaLanguage
  14888. id="0"
  14889. name="Norwegian"
  14890. package="14"
  14891. />
  14892. <otaLanguage
  14893. id="0"
  14894. name="Swedish"
  14895. package="15"
  14896. />
  14897. <otaLanguage
  14898. id="0"
  14899. name="Turkish"
  14900. package="16"
  14901. />
  14902. <otaLanguage
  14903. id="0"
  14904. name="Hungarian"
  14905. package="17"
  14906. />
  14907. <otaLanguage
  14908. id="0"
  14909. name="Portuguese"
  14910. package="18"
  14911. />
  14912. <otaLanguage
  14913. id="0"
  14914. name="Hebrew"
  14915. package="19"
  14916. />
  14917. <otaLanguage
  14918. id="0"
  14919. name="Greek"
  14920. package="20"
  14921. />
  14922. </otaLanguages>
  14923. <otaPackages>
  14924. <package
  14925. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  14926. size="5183988"
  14927. />
  14928. <package
  14929. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  14930. size="5183988"
  14931. />
  14932. <package
  14933. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  14934. size="5183988"
  14935. />
  14936. <package
  14937. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  14938. size="5183988"
  14939. />
  14940. <package
  14941. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  14942. size="5183988"
  14943. />
  14944. <package
  14945. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  14946. size="5183988"
  14947. />
  14948. <package
  14949. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  14950. size="5183988"
  14951. />
  14952. <package
  14953. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  14954. size="5183988"
  14955. />
  14956. <package
  14957. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  14958. size="5183988"
  14959. />
  14960. <package
  14961. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  14962. size="5183988"
  14963. />
  14964. <package
  14965. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  14966. size="5183988"
  14967. />
  14968. <package
  14969. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  14970. size="5183988"
  14971. />
  14972. <package
  14973. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  14974. size="5183988"
  14975. />
  14976. <package
  14977. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  14978. size="5183988"
  14979. />
  14980. <package
  14981. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  14982. size="5183988"
  14983. />
  14984. <package
  14985. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  14986. size="5183988"
  14987. />
  14988. <package
  14989. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  14990. size="5183988"
  14991. />
  14992. <package
  14993. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  14994. size="5183988"
  14995. />
  14996. <package
  14997. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  14998. size="5183988"
  14999. />
  15000. <package
  15001. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  15002. size="5183988"
  15003. />
  15004. <package
  15005. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  15006. size="5183988"
  15007. />
  15008. </otaPackages>
  15009. </productMenu>
  15010. <productMenu id="wa"
  15011. type="0" >
  15012. </productMenu>
  15013. <productMenu id="sip"
  15014. type="1" >
  15015. </productMenu>
  15016. <productMenu id="led"
  15017. type="0" >
  15018. </productMenu>
  15019. <productMenu id="illusion"
  15020. type="1" >
  15021. </productMenu>
  15022. <productMenu id="meshIntercom"
  15023. type="30" >
  15024. </productMenu>
  15025. <productMenu id="meshIntercom+"
  15026. type="3"
  15027. url="2" >
  15028. </productMenu>
  15029. <productMenu id="waveIntercom"
  15030. type="0" >
  15031. </productMenu>
  15032. <productMenu id="bluetoothIntercom"
  15033. type="1" >
  15034. </productMenu>
  15035. <productMenu id="bluetoothIntercomGrouping"
  15036. type="0" >
  15037. </productMenu>
  15038. <productMenu id="fmradio"
  15039. type="1"
  15040. url="1" >
  15041. </productMenu>
  15042. <productMenu id="phone"
  15043. type="1" >
  15044. </productMenu>
  15045. <productMenu id="music"
  15046. type="1" >
  15047. </productMenu>
  15048. <productMenu id="musicSharing"
  15049. type="0" >
  15050. </productMenu>
  15051. <productMenu id="deviceSetting"
  15052. type="1"
  15053. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  15054. </productMenu>
  15055. <productMenu id="quickGuide"
  15056. type="0"
  15057. url=""
  15058. size="1.12MB" >
  15059. </productMenu>
  15060. <productMenu id="userGuide"
  15061. type="1"
  15062. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  15063. size="2.0MB" >
  15064. </productMenu>
  15065. <productMenu id="videoGuide"
  15066. type="0"
  15067. url=""
  15068. size="3.41MB" >
  15069. </productMenu>
  15070. <productMenu id="volume"
  15071. type="16" >
  15072. </productMenu>
  15073. <productMenu id="soundMode"
  15074. type="1" >
  15075. </productMenu>
  15076. <productMenu id="battery"
  15077. type="1" >
  15078. </productMenu>
  15079. <productID id="6A83"
  15080. />
  15081. <productGroupable type="0"
  15082. />
  15083. </product>
  15084. <product id="MeshStation"
  15085. name="Mesh Station"
  15086. series="50"
  15087. latestVersion="0.9"
  15088. show = "-1" >
  15089. <productMenu id="protocol"
  15090. type="2" >
  15091. </productMenu>
  15092. <productMenu id="meshIntercom"
  15093. type="20"
  15094. url="99" >
  15095. </productMenu>
  15096. <productID id="3161"
  15097. />
  15098. <productGroupable type="0"
  15099. />
  15100. </product>
  15101. </products>
  15102. </sna>