ibm_cloud.xml 293 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989
  1. <shapes name="mxgraph.ibm_cloud">
  2. <shape aspect="variable" h="32" name="application--web" strokewidth="inherit" w="32">
  3. <connections/>
  4. <foreground>
  5. <save/>
  6. <rect h="32" w="32" x="0" y="0"/>
  7. <stroke/>
  8. <restore/>
  9. <rect/>
  10. <stroke/>
  11. <path>
  12. <move x="26" y="2"/>
  13. <line x="30" y="2"/>
  14. <line x="30" y="6"/>
  15. <line x="26" y="6"/>
  16. <close/>
  17. <move x="26" y="8"/>
  18. <line x="30" y="8"/>
  19. <line x="30" y="12"/>
  20. <line x="26" y="12"/>
  21. <close/>
  22. <move x="20" y="2"/>
  23. <line x="24" y="2"/>
  24. <line x="24" y="6"/>
  25. <line x="20" y="6"/>
  26. <close/>
  27. <move x="20" y="8"/>
  28. <line x="24" y="8"/>
  29. <line x="24" y="12"/>
  30. <line x="20" y="12"/>
  31. <close/>
  32. </path>
  33. <fillstroke/>
  34. <path>
  35. <move x="28" y="16"/>
  36. <line x="28" y="22"/>
  37. <line x="4" y="22"/>
  38. <line x="4" y="6"/>
  39. <line x="16" y="6"/>
  40. <line x="16" y="4"/>
  41. <line x="4" y="4"/>
  42. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="2" x-axis-rotation="0" y="6"/>
  43. <line x="2" y="22"/>
  44. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="24"/>
  45. <line x="12" y="24"/>
  46. <line x="12" y="28"/>
  47. <line x="8" y="28"/>
  48. <line x="8" y="30"/>
  49. <line x="24" y="30"/>
  50. <line x="24" y="28"/>
  51. <line x="20" y="28"/>
  52. <line x="20" y="24"/>
  53. <line x="28" y="24"/>
  54. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="30" x-axis-rotation="0" y="22"/>
  55. <line x="30" y="16"/>
  56. <close/>
  57. <move x="18" y="28"/>
  58. <line x="14" y="28"/>
  59. <line x="14" y="24"/>
  60. <line x="18" y="24"/>
  61. <close/>
  62. </path>
  63. <fillstroke/>
  64. </foreground>
  65. </shape>
  66. <shape aspect="variable" h="32" name="application" strokewidth="inherit" w="32">
  67. <connections/>
  68. <foreground>
  69. <save/>
  70. <rect h="32" w="32" x="0" y="0"/>
  71. <stroke/>
  72. <restore/>
  73. <rect/>
  74. <stroke/>
  75. <path>
  76. <move x="16" y="18"/>
  77. <line x="6" y="18"/>
  78. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="4" x-axis-rotation="0" y="16"/>
  79. <line x="4" y="6"/>
  80. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="6" x-axis-rotation="0" y="4"/>
  81. <line x="16" y="4"/>
  82. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="18" x-axis-rotation="0" y="6"/>
  83. <line x="18" y="16"/>
  84. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="16" x-axis-rotation="0" y="18"/>
  85. <move x="6" y="6"/>
  86. <line x="6" y="16"/>
  87. <line x="16" y="16"/>
  88. <line x="16" y="6"/>
  89. <close/>
  90. <move x="26" y="12"/>
  91. <line x="26" y="16"/>
  92. <line x="22" y="16"/>
  93. <line x="22" y="12"/>
  94. <close/>
  95. <move x="26" y="10"/>
  96. <line x="22" y="10"/>
  97. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="20" x-axis-rotation="0" y="12"/>
  98. <line x="20" y="16"/>
  99. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="22" x-axis-rotation="0" y="18"/>
  100. <line x="26" y="18"/>
  101. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="16"/>
  102. <line x="28" y="12"/>
  103. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="10"/>
  104. <move x="26" y="22"/>
  105. <line x="26" y="26"/>
  106. <line x="22" y="26"/>
  107. <line x="22" y="22"/>
  108. <close/>
  109. <move x="26" y="20"/>
  110. <line x="22" y="20"/>
  111. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="20" x-axis-rotation="0" y="22"/>
  112. <line x="20" y="26"/>
  113. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="22" x-axis-rotation="0" y="28"/>
  114. <line x="26" y="28"/>
  115. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="26"/>
  116. <line x="28" y="22"/>
  117. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="20"/>
  118. <move x="16" y="22"/>
  119. <line x="16" y="26"/>
  120. <line x="12" y="26"/>
  121. <line x="12" y="22"/>
  122. <close/>
  123. <move x="16" y="20"/>
  124. <line x="12" y="20"/>
  125. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="10" x-axis-rotation="0" y="22"/>
  126. <line x="10" y="26"/>
  127. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="12" x-axis-rotation="0" y="28"/>
  128. <line x="16" y="28"/>
  129. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="18" x-axis-rotation="0" y="26"/>
  130. <line x="18" y="22"/>
  131. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="16" x-axis-rotation="0" y="20"/>
  132. </path>
  133. <fillstroke/>
  134. </foreground>
  135. </shape>
  136. <shape aspect="variable" h="32" name="arrows--horizontal" strokewidth="inherit" w="32">
  137. <connections/>
  138. <foreground>
  139. <save/>
  140. <rect h="32" w="32" x="0" y="0"/>
  141. <stroke/>
  142. <restore/>
  143. <rect/>
  144. <stroke/>
  145. <path>
  146. <move x="11.41" y="26.59"/>
  147. <line x="7.83" y="23"/>
  148. <line x="28" y="23"/>
  149. <line x="28" y="21"/>
  150. <line x="7.83" y="21"/>
  151. <line x="11.41" y="17.41"/>
  152. <line x="10" y="16"/>
  153. <line x="4" y="22"/>
  154. <line x="10" y="28"/>
  155. <line x="11.41" y="26.59"/>
  156. <close/>
  157. <move x="28" y="10"/>
  158. <line x="22" y="4"/>
  159. <line x="20.59" y="5.41"/>
  160. <line x="24.17" y="9"/>
  161. <line x="4" y="9"/>
  162. <line x="4" y="11"/>
  163. <line x="24.17" y="11"/>
  164. <line x="20.59" y="14.59"/>
  165. <line x="22" y="16"/>
  166. <line x="28" y="10"/>
  167. <close/>
  168. </path>
  169. <fillstroke/>
  170. </foreground>
  171. </shape>
  172. <shape aspect="variable" h="32" name="autoscaling" strokewidth="inherit" w="32">
  173. <connections/>
  174. <foreground>
  175. <save/>
  176. <rect h="32" w="32" x="0" y="0"/>
  177. <stroke/>
  178. <restore/>
  179. <rect/>
  180. <stroke/>
  181. <path>
  182. <move x="22" y="28"/>
  183. <line x="12" y="28"/>
  184. <line x="12" y="26"/>
  185. <line x="22" y="26"/>
  186. <line x="22" y="10"/>
  187. <line x="6" y="10"/>
  188. <line x="6" y="20"/>
  189. <line x="4" y="20"/>
  190. <line x="4" y="10"/>
  191. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="6" x-axis-rotation="0" y="8"/>
  192. <line x="22" y="8"/>
  193. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="24" x-axis-rotation="0" y="10"/>
  194. <line x="24" y="26"/>
  195. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="22" x-axis-rotation="0" y="28"/>
  196. <close/>
  197. </path>
  198. <fillstroke/>
  199. <path>
  200. <move x="28" y="22"/>
  201. <line x="26" y="22"/>
  202. <line x="26" y="20"/>
  203. <line x="28" y="20"/>
  204. <line x="28" y="4"/>
  205. <line x="12" y="4"/>
  206. <line x="12" y="6"/>
  207. <line x="10" y="6"/>
  208. <line x="10" y="4"/>
  209. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="12" x-axis-rotation="0" y="2"/>
  210. <line x="28" y="2"/>
  211. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="4"/>
  212. <line x="30" y="20"/>
  213. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="22"/>
  214. <close/>
  215. </path>
  216. <fillstroke/>
  217. <path>
  218. <move x="10" y="14"/>
  219. <line x="10" y="16"/>
  220. <line x="14.586" y="16"/>
  221. <line x="3" y="27.586"/>
  222. <line x="4.414" y="29"/>
  223. <line x="16" y="17.414"/>
  224. <line x="16" y="22"/>
  225. <line x="18" y="22"/>
  226. <line x="18" y="14"/>
  227. <line x="10" y="14"/>
  228. <close/>
  229. </path>
  230. <fillstroke/>
  231. </foreground>
  232. </shape>
  233. <shape aspect="variable" h="32" name="bastion-host" strokewidth="inherit" w="32">
  234. <connections/>
  235. <foreground>
  236. <save/>
  237. <rect h="32" w="32" x="0" y="0"/>
  238. <stroke/>
  239. <restore/>
  240. <rect/>
  241. <stroke/>
  242. <path>
  243. <move x="27.527" y="2.709"/>
  244. <arc large-arc-flag="0" rx="1.996" ry="1.996" sweep-flag="0" x="26" x-axis-rotation="0" y="2"/>
  245. <line x="23.31" y="2"/>
  246. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="0" x="21.967" x-axis-rotation="0" y="2.83"/>
  247. <line x="21.382" y="4"/>
  248. <line x="20" y="4"/>
  249. <line x="20" y="3.5"/>
  250. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="0" x="18.5" x-axis-rotation="0" y="2"/>
  251. <line x="13.5" y="2"/>
  252. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="0" x="12" x-axis-rotation="0" y="3.5"/>
  253. <line x="12" y="4"/>
  254. <line x="10.618" y="4"/>
  255. <line x="10.033" y="2.83"/>
  256. <arc large-arc-flag="0" rx="1.502" ry="1.502" sweep-flag="0" x="8.69" x-axis-rotation="0" y="2"/>
  257. <line x="6" y="2"/>
  258. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4.028" x-axis-rotation="0" y="4.333"/>
  259. <line x="4.732" y="8.5"/>
  260. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="7.69" x-axis-rotation="0" y="11"/>
  261. <line x="8" y="11"/>
  262. <line x="8" y="23"/>
  263. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="0" x="5" x-axis-rotation="0" y="26"/>
  264. <line x="5" y="30"/>
  265. <line x="27" y="30"/>
  266. <line x="27" y="26"/>
  267. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="0" x="24" x-axis-rotation="0" y="23"/>
  268. <line x="24" y="11"/>
  269. <line x="24.31" y="11"/>
  270. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="27.268" x-axis-rotation="0" y="8.5"/>
  271. <line x="27.972" y="4.333"/>
  272. <arc large-arc-flag="0" rx="1.994" ry="1.994" sweep-flag="0" x="27.527" x-axis-rotation="0" y="2.709"/>
  273. <close/>
  274. <move x="25" y="26"/>
  275. <line x="25" y="28"/>
  276. <line x="7" y="28"/>
  277. <line x="7" y="26"/>
  278. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="8" x-axis-rotation="0" y="25"/>
  279. <line x="24" y="25"/>
  280. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="25" x-axis-rotation="0" y="26"/>
  281. <close/>
  282. <move x="22" y="23"/>
  283. <line x="10" y="23"/>
  284. <line x="10" y="11"/>
  285. <line x="22" y="11"/>
  286. <close/>
  287. <move x="25.296" y="8.167"/>
  288. <arc large-arc-flag="0" rx="0.998" ry="0.998" sweep-flag="1" x="24.31" x-axis-rotation="0" y="9"/>
  289. <line x="7.69" y="9"/>
  290. <arc large-arc-flag="0" rx="0.998" ry="0.998" sweep-flag="1" x="6.704" x-axis-rotation="0" y="8.166"/>
  291. <line x="6" y="4"/>
  292. <line x="8.382" y="4"/>
  293. <line x="9.382" y="6"/>
  294. <line x="14" y="6"/>
  295. <line x="14" y="4"/>
  296. <line x="18" y="4"/>
  297. <line x="18" y="6"/>
  298. <line x="22.617" y="6"/>
  299. <line x="23.618" y="4"/>
  300. <line x="26" y="4"/>
  301. <close/>
  302. </path>
  303. <fillstroke/>
  304. </foreground>
  305. </shape>
  306. <shape aspect="variable" h="32" name="block-storage" strokewidth="inherit" w="32">
  307. <connections/>
  308. <foreground>
  309. <save/>
  310. <rect h="32" w="32" x="0" y="0"/>
  311. <stroke/>
  312. <restore/>
  313. <rect/>
  314. <stroke/>
  315. <path>
  316. <move x="9" y="12"/>
  317. <line x="9" y="10"/>
  318. <line x="4" y="10"/>
  319. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="2" x-axis-rotation="0" y="12"/>
  320. <line x="2" y="28"/>
  321. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="30"/>
  322. <line x="20" y="30"/>
  323. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="22" x-axis-rotation="0" y="28"/>
  324. <line x="22" y="19"/>
  325. <line x="20" y="19"/>
  326. <line x="20" y="28"/>
  327. <line x="4" y="28"/>
  328. <line x="4" y="12"/>
  329. </path>
  330. <fillstroke/>
  331. <path>
  332. <move x="22" y="12"/>
  333. <line x="14" y="12"/>
  334. <line x="14" y="4"/>
  335. <line x="22" y="4"/>
  336. <close/>
  337. <move x="12" y="4"/>
  338. <line x="12" y="12"/>
  339. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="14" x-axis-rotation="0" y="14"/>
  340. <line x="22" y="14"/>
  341. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="12"/>
  342. <line x="24" y="4"/>
  343. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="22" x-axis-rotation="0" y="2"/>
  344. <line x="14" y="2"/>
  345. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="12" x-axis-rotation="0" y="4"/>
  346. <close/>
  347. <move x="14" y="18"/>
  348. <line x="14" y="22"/>
  349. <line x="10" y="22"/>
  350. <line x="10" y="18"/>
  351. <line x="14" y="18"/>
  352. <move x="8" y="18"/>
  353. <line x="8" y="22"/>
  354. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="10" x-axis-rotation="0" y="24"/>
  355. <line x="14" y="24"/>
  356. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="16" x-axis-rotation="0" y="22"/>
  357. <line x="16" y="18"/>
  358. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="14" x-axis-rotation="0" y="16"/>
  359. <line x="10" y="16"/>
  360. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="18"/>
  361. <close/>
  362. <move x="28" y="17"/>
  363. <line x="28" y="19"/>
  364. <line x="26" y="19"/>
  365. <line x="26" y="17"/>
  366. <line x="28" y="17"/>
  367. <move x="24" y="16"/>
  368. <line x="24" y="20"/>
  369. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="25" x-axis-rotation="0" y="21"/>
  370. <line x="29" y="21"/>
  371. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="30" x-axis-rotation="0" y="20"/>
  372. <line x="30" y="16"/>
  373. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="29" x-axis-rotation="0" y="15"/>
  374. <line x="25" y="15"/>
  375. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="24" x-axis-rotation="0" y="16"/>
  376. <close/>
  377. </path>
  378. <fillstroke/>
  379. </foreground>
  380. </shape>
  381. <shape aspect="variable" h="32" name="cloud--monitoring" strokewidth="inherit" w="32">
  382. <connections/>
  383. <foreground>
  384. <save/>
  385. <rect h="32" w="32" x="0" y="0"/>
  386. <stroke/>
  387. <restore/>
  388. <rect/>
  389. <stroke/>
  390. <path>
  391. <move x="28" y="16"/>
  392. <line x="28" y="22"/>
  393. <line x="4" y="22"/>
  394. <line x="4" y="6"/>
  395. <line x="11" y="6"/>
  396. <line x="11" y="4"/>
  397. <line x="4" y="4"/>
  398. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="2" x-axis-rotation="0" y="6"/>
  399. <line x="2" y="22"/>
  400. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="24"/>
  401. <line x="12" y="24"/>
  402. <line x="12" y="28"/>
  403. <line x="8" y="28"/>
  404. <line x="8" y="30"/>
  405. <line x="24" y="30"/>
  406. <line x="24" y="28"/>
  407. <line x="20" y="28"/>
  408. <line x="20" y="24"/>
  409. <line x="28" y="24"/>
  410. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="30" x-axis-rotation="0" y="22"/>
  411. <line x="30" y="16"/>
  412. <close/>
  413. <move x="18" y="28"/>
  414. <line x="14" y="28"/>
  415. <line x="14" y="24"/>
  416. <line x="18" y="24"/>
  417. <close/>
  418. </path>
  419. <fillstroke/>
  420. <path>
  421. <move x="18" y="18"/>
  422. <line x="17.99" y="18"/>
  423. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="17.039" x-axis-rotation="0" y="17.275"/>
  424. <line x="15.246" y="11"/>
  425. <line x="11" y="11"/>
  426. <line x="11" y="9"/>
  427. <line x="16" y="9"/>
  428. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16.962" x-axis-rotation="0" y="9.725"/>
  429. <line x="18.036" y="13.485"/>
  430. <line x="21.045" y="3.705"/>
  431. <arc large-arc-flag="0" rx="1.014" ry="1.014" sweep-flag="1" x="22" x-axis-rotation="0" y="3"/>
  432. <arc large-arc-flag="0" rx="0.98" ry="0.98" sweep-flag="1" x="22.949" x-axis-rotation="0" y="3.684"/>
  433. <line x="24.72" y="9"/>
  434. <line x="30" y="9"/>
  435. <line x="30" y="11"/>
  436. <line x="24" y="11"/>
  437. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="23.051" x-axis-rotation="0" y="10.316"/>
  438. <line x="22.038" y="7.276"/>
  439. <line x="18.956" y="17.294"/>
  440. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="18" x-axis-rotation="0" y="18"/>
  441. <close/>
  442. </path>
  443. <fillstroke/>
  444. </foreground>
  445. </shape>
  446. <shape aspect="variable" h="32" name="cloud-registry" strokewidth="inherit" w="32">
  447. <connections/>
  448. <foreground>
  449. <save/>
  450. <rect h="32" w="32" x="0" y="0"/>
  451. <stroke/>
  452. <restore/>
  453. <rect/>
  454. <stroke/>
  455. <path>
  456. <move x="28" y="30"/>
  457. <line x="23" y="30"/>
  458. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="21" x-axis-rotation="0" y="28"/>
  459. <line x="21" y="23"/>
  460. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="23" x-axis-rotation="0" y="21"/>
  461. <line x="28" y="21"/>
  462. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="23"/>
  463. <line x="30" y="28"/>
  464. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="30"/>
  465. <close/>
  466. <move x="23" y="23"/>
  467. <line x="22.999" y="23"/>
  468. <line x="23" y="28"/>
  469. <line x="28" y="28"/>
  470. <line x="28" y="23"/>
  471. <close/>
  472. <move x="16" y="23"/>
  473. <line x="11" y="23"/>
  474. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="9" x-axis-rotation="0" y="21"/>
  475. <line x="9" y="11"/>
  476. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="11" x-axis-rotation="0" y="9"/>
  477. <line x="21" y="9"/>
  478. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="23" x-axis-rotation="0" y="11"/>
  479. <line x="23" y="16"/>
  480. <line x="21" y="16"/>
  481. <line x="21" y="11"/>
  482. <line x="11" y="11"/>
  483. <line x="11" y="21"/>
  484. <line x="16" y="21"/>
  485. <close/>
  486. </path>
  487. <fillstroke/>
  488. <path>
  489. <move x="16" y="30"/>
  490. <line x="4" y="30"/>
  491. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="2" x-axis-rotation="0" y="28"/>
  492. <line x="2" y="4"/>
  493. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="2"/>
  494. <line x="28" y="2"/>
  495. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="4"/>
  496. <line x="30" y="16"/>
  497. <line x="28" y="16"/>
  498. <line x="28" y="4"/>
  499. <line x="4" y="4"/>
  500. <line x="4" y="28"/>
  501. <line x="16" y="28"/>
  502. <close/>
  503. </path>
  504. <fillstroke/>
  505. </foreground>
  506. </shape>
  507. <shape aspect="variable" h="32" name="cloud-satellite" strokewidth="inherit" w="32">
  508. <connections/>
  509. <foreground>
  510. <save/>
  511. <rect h="32" w="32" x="0" y="0"/>
  512. <stroke/>
  513. <restore/>
  514. <rect/>
  515. <stroke/>
  516. <ellipse h="4" w="4" x="7" y="18"/>
  517. <fillstroke/>
  518. <path>
  519. <move x="16" y="20"/>
  520. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="16"/>
  521. <arc large-arc-flag="0" rx="4.012" ry="4.012" sweep-flag="1" x="16" x-axis-rotation="0" y="20"/>
  522. <close/>
  523. <move x="16" y="14"/>
  524. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="18" x-axis-rotation="0" y="16"/>
  525. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="0" x="16" x-axis-rotation="0" y="14"/>
  526. <close/>
  527. </path>
  528. <fillstroke/>
  529. <ellipse h="4" w="4" x="21" y="10"/>
  530. <fillstroke/>
  531. <path>
  532. <move x="16" y="31"/>
  533. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="15.496" x-axis-rotation="0" y="30.864"/>
  534. <line x="3.496" y="23.864"/>
  535. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3" x-axis-rotation="0" y="23"/>
  536. <line x="3" y="9"/>
  537. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3.496" x-axis-rotation="0" y="8.136"/>
  538. <line x="15.496" y="1.136"/>
  539. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16.504" x-axis-rotation="0" y="1.136"/>
  540. <line x="28.504" y="8.136"/>
  541. <line x="27.496" y="9.864"/>
  542. <line x="16" y="3.158"/>
  543. <line x="5" y="9.574"/>
  544. <line x="5" y="22.426"/>
  545. <line x="16" y="28.843"/>
  546. <line x="27" y="22.426"/>
  547. <line x="27" y="15"/>
  548. <line x="29" y="15"/>
  549. <line x="29" y="23"/>
  550. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="28.504" x-axis-rotation="0" y="23.864"/>
  551. <line x="16.504" y="30.864"/>
  552. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="16" x-axis-rotation="0" y="31"/>
  553. <close/>
  554. </path>
  555. <fillstroke/>
  556. </foreground>
  557. </shape>
  558. <shape aspect="variable" h="32" name="cloud-services" strokewidth="inherit" w="32.638">
  559. <connections/>
  560. <foreground>
  561. <save/>
  562. <rect h="32" w="32" x="0.319" y="0"/>
  563. <stroke/>
  564. <restore/>
  565. <rect/>
  566. <stroke/>
  567. <path>
  568. <move x="26.141" y="10.124"/>
  569. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="6.497" x-axis-rotation="0" y="10.124"/>
  570. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="0" x="7.819" x-axis-rotation="0" y="25"/>
  571. <line x="8.319" y="25"/>
  572. <line x="8.319" y="23"/>
  573. <line x="7.819" y="23"/>
  574. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="1" x="7.442" x-axis-rotation="0" y="12.02"/>
  575. <line x="8.278" y="11.963"/>
  576. <line x="8.368" y="11.13"/>
  577. <arc large-arc-flag="0" rx="7.998" ry="7.998" sweep-flag="1" x="24.27" x-axis-rotation="0" y="11.13"/>
  578. <line x="24.36" y="11.963"/>
  579. <line x="25.196" y="12.021"/>
  580. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="1" x="24.819" x-axis-rotation="0" y="23"/>
  581. <line x="24.319" y="23"/>
  582. <line x="24.319" y="25"/>
  583. <line x="24.819" y="25"/>
  584. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="0" x="26.141" x-axis-rotation="0" y="10.124"/>
  585. <close/>
  586. </path>
  587. <fillstroke/>
  588. <path>
  589. <move x="23.319" y="22"/>
  590. <line x="23.319" y="20"/>
  591. <line x="21.218" y="20"/>
  592. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="20.486" x-axis-rotation="0" y="18.247"/>
  593. <line x="21.976" y="16.757"/>
  594. <line x="20.562" y="15.343"/>
  595. <line x="19.072" y="16.833"/>
  596. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="17.319" x-axis-rotation="0" y="16.101"/>
  597. <line x="17.319" y="14"/>
  598. <line x="15.319" y="14"/>
  599. <line x="15.319" y="16.101"/>
  600. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="13.566" x-axis-rotation="0" y="16.833"/>
  601. <line x="12.076" y="15.343"/>
  602. <line x="10.662" y="16.757"/>
  603. <line x="12.152" y="18.247"/>
  604. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="11.42" x-axis-rotation="0" y="20"/>
  605. <line x="9.319" y="20"/>
  606. <line x="9.319" y="22"/>
  607. <line x="11.42" y="22"/>
  608. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="12.152" x-axis-rotation="0" y="23.753"/>
  609. <line x="10.662" y="25.243"/>
  610. <line x="12.076" y="26.657"/>
  611. <line x="13.566" y="25.167"/>
  612. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="15.319" x-axis-rotation="0" y="25.899"/>
  613. <line x="15.319" y="28"/>
  614. <line x="17.319" y="28"/>
  615. <line x="17.319" y="25.899"/>
  616. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="19.072" x-axis-rotation="0" y="25.167"/>
  617. <line x="20.562" y="26.657"/>
  618. <line x="21.976" y="25.243"/>
  619. <line x="20.486" y="23.753"/>
  620. <arc large-arc-flag="0" rx="4.968" ry="4.968" sweep-flag="0" x="21.218" x-axis-rotation="0" y="22"/>
  621. <close/>
  622. <move x="16.319" y="24"/>
  623. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="19.319" x-axis-rotation="0" y="21"/>
  624. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="16.319" x-axis-rotation="0" y="24"/>
  625. <close/>
  626. </path>
  627. <fillstroke/>
  628. </foreground>
  629. </shape>
  630. <shape aspect="variable" h="32" name="continuous-integration" strokewidth="inherit" w="32">
  631. <connections/>
  632. <foreground>
  633. <save/>
  634. <rect h="32" w="32" x="0" y="0"/>
  635. <stroke/>
  636. <restore/>
  637. <rect/>
  638. <stroke/>
  639. <path>
  640. <move x="31.9" y="15.5"/>
  641. <line x="26.2" y="5.5"/>
  642. <curve x1="25.9" x2="25.6" x3="25.3" y1="5.2" y2="5" y3="5"/>
  643. <line x="6.7" y="5"/>
  644. <curve x1="6.4" x2="6.1" x3="5.9" y1="5" y2="5.2" y3="5.5"/>
  645. <line x="0.2" y="15.5"/>
  646. <curve x1="0" x2="0" x3="0" y1="15.7" y2="15.8" y3="16"/>
  647. <curve x1="0" x2="0" x3="0.1" y1="16.2" y2="16.3" y3="16.5"/>
  648. <line x="5.8" y="26.5"/>
  649. <curve x1="6.1" x2="6.4" x3="6.7" y1="26.8" y2="27" y3="27"/>
  650. <line x="25.2" y="27"/>
  651. <curve x1="25.6" x2="25.9" x3="26.1" y1="27" y2="26.8" y3="26.5"/>
  652. <line x="31.8" y="16.5"/>
  653. <curve x1="32" x2="32" x3="32" y1="16.3" y2="16.2" y3="16"/>
  654. <curve x1="32" x2="32" x3="31.9" y1="15.8" y2="15.7" y3="15.5"/>
  655. <close/>
  656. <move x="17.8" y="15"/>
  657. <line x="9.8" y="15"/>
  658. <line x="13.8" y="8"/>
  659. <line x="17.8" y="15"/>
  660. <close/>
  661. <move x="15.5" y="7"/>
  662. <line x="23.5" y="7"/>
  663. <line x="19.5" y="14"/>
  664. <line x="15.5" y="7"/>
  665. <close/>
  666. <move x="17.8" y="17"/>
  667. <line x="13.8" y="24"/>
  668. <line x="9.8" y="17"/>
  669. <line x="17.8" y="17"/>
  670. <close/>
  671. <move x="19.5" y="18"/>
  672. <line x="23.5" y="25"/>
  673. <line x="15.5" y="25"/>
  674. <line x="19.5" y="18"/>
  675. <close/>
  676. <move x="21.2" y="17"/>
  677. <line x="29.2" y="17"/>
  678. <line x="25.2" y="24"/>
  679. <line x="21.2" y="17"/>
  680. <close/>
  681. <move x="21.2" y="15"/>
  682. <line x="25.2" y="8"/>
  683. <line x="29.2" y="15"/>
  684. <line x="21.2" y="15"/>
  685. <close/>
  686. <move x="7.3" y="7"/>
  687. <line x="12" y="7"/>
  688. <line x="7.4" y="15"/>
  689. <line x="2.7" y="15"/>
  690. <line x="7.3" y="7"/>
  691. <close/>
  692. <move x="7.3" y="25"/>
  693. <line x="2.7" y="17"/>
  694. <line x="7.4" y="17"/>
  695. <line x="12" y="25"/>
  696. <line x="7.3" y="25"/>
  697. <close/>
  698. </path>
  699. <fillstroke/>
  700. </foreground>
  701. </shape>
  702. <shape aspect="variable" h="32" name="data--base" strokewidth="inherit" w="32">
  703. <connections/>
  704. <foreground>
  705. <save/>
  706. <rect h="32" w="32" x="0" y="0"/>
  707. <stroke/>
  708. <restore/>
  709. <rect/>
  710. <stroke/>
  711. <path>
  712. <move x="24" y="3"/>
  713. <line x="8" y="3"/>
  714. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="5"/>
  715. <line x="6" y="27"/>
  716. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="29"/>
  717. <line x="24" y="29"/>
  718. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="27"/>
  719. <line x="26" y="5"/>
  720. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="3"/>
  721. <close/>
  722. <move x="24" y="5"/>
  723. <line x="24" y="11"/>
  724. <line x="8" y="11"/>
  725. <line x="8" y="5"/>
  726. <close/>
  727. <move x="8" y="19"/>
  728. <line x="8" y="13"/>
  729. <line x="24" y="13"/>
  730. <line x="24" y="19"/>
  731. <close/>
  732. <move x="8" y="27"/>
  733. <line x="8" y="21"/>
  734. <line x="24" y="21"/>
  735. <line x="24" y="27"/>
  736. <close/>
  737. </path>
  738. <fillstroke/>
  739. <ellipse h="2" w="2" x="10" y="7"/>
  740. <fillstroke/>
  741. <ellipse h="2" w="2" x="10" y="15"/>
  742. <fillstroke/>
  743. <ellipse h="2" w="2" x="10" y="23"/>
  744. <fillstroke/>
  745. </foreground>
  746. </shape>
  747. <shape aspect="variable" h="32" name="data--center" strokewidth="inherit" w="32">
  748. <connections/>
  749. <foreground>
  750. <save/>
  751. <rect h="32" w="32" x="0" y="0"/>
  752. <stroke/>
  753. <restore/>
  754. <rect/>
  755. <stroke/>
  756. <path>
  757. <move x="28" y="10"/>
  758. <line x="23" y="10"/>
  759. <line x="23" y="6"/>
  760. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="21" x-axis-rotation="0" y="4"/>
  761. <line x="11" y="4"/>
  762. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="9" x-axis-rotation="0" y="6"/>
  763. <line x="9" y="10"/>
  764. <line x="4" y="10"/>
  765. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="2" x-axis-rotation="0" y="12"/>
  766. <line x="2" y="28"/>
  767. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="4" x-axis-rotation="0" y="30"/>
  768. <line x="28" y="30"/>
  769. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="30" x-axis-rotation="0" y="28"/>
  770. <line x="30" y="12"/>
  771. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="28" x-axis-rotation="0" y="10"/>
  772. <close/>
  773. <move x="4" y="28"/>
  774. <line x="4" y="12"/>
  775. <line x="9" y="12"/>
  776. <line x="9" y="14"/>
  777. <line x="7" y="14"/>
  778. <line x="7" y="16"/>
  779. <line x="9" y="16"/>
  780. <line x="9" y="18"/>
  781. <line x="7" y="18"/>
  782. <line x="7" y="20"/>
  783. <line x="9" y="20"/>
  784. <line x="9" y="22"/>
  785. <line x="7" y="22"/>
  786. <line x="7" y="24"/>
  787. <line x="9" y="24"/>
  788. <line x="9" y="28"/>
  789. <close/>
  790. <move x="21" y="28"/>
  791. <line x="11" y="28"/>
  792. <line x="11" y="6"/>
  793. <line x="21" y="6"/>
  794. <close/>
  795. <move x="28" y="28"/>
  796. <line x="23" y="28"/>
  797. <line x="23" y="24"/>
  798. <line x="25" y="24"/>
  799. <line x="25" y="22"/>
  800. <line x="23" y="22"/>
  801. <line x="23" y="20"/>
  802. <line x="25" y="20"/>
  803. <line x="25" y="18"/>
  804. <line x="23" y="18"/>
  805. <line x="23" y="16"/>
  806. <line x="25" y="16"/>
  807. <line x="25" y="14"/>
  808. <line x="23" y="14"/>
  809. <line x="23" y="12"/>
  810. <line x="28" y="12"/>
  811. <close/>
  812. </path>
  813. <fillstroke/>
  814. <path>
  815. <move x="14" y="8"/>
  816. <line x="18" y="8"/>
  817. <line x="18" y="10"/>
  818. <line x="14" y="10"/>
  819. <close/>
  820. <move x="14" y="12"/>
  821. <line x="18" y="12"/>
  822. <line x="18" y="14"/>
  823. <line x="14" y="14"/>
  824. <close/>
  825. <move x="14" y="16"/>
  826. <line x="18" y="16"/>
  827. <line x="18" y="18"/>
  828. <line x="14" y="18"/>
  829. <close/>
  830. </path>
  831. <fillstroke/>
  832. </foreground>
  833. </shape>
  834. <shape aspect="variable" h="32" name="database--datastax" strokewidth="inherit" w="32">
  835. <connections/>
  836. <foreground>
  837. <save/>
  838. <rect h="32" w="32" x="0" y="0"/>
  839. <stroke/>
  840. <restore/>
  841. <rect/>
  842. <stroke/>
  843. <path>
  844. <move x="18.868" y="22.068"/>
  845. <line x="20.662" y="20.321"/>
  846. <arc large-arc-flag="0" rx="4.218" ry="4.218" sweep-flag="0" x="23.95" x-axis-rotation="0" y="21.953"/>
  847. <curve x1="25.353" x2="25.95" x3="25.95" y1="21.953" y2="21.425" y3="20.573"/>
  848. <curve x1="25.95" x2="25.537" x3="24.479" y1="19.883" y2="19.447" y3="19.309"/>
  849. <line x="23.283" y="19.148"/>
  850. <curve x1="20.708" x2="19.283" x3="19.283" y1="18.826" y2="17.699" y3="15.515"/>
  851. <curve x1="19.283" x2="21.099" x3="23.835" y1="13.192" y2="11.72" y3="11.72"/>
  852. <arc large-arc-flag="0" rx="5.722" ry="5.722" sweep-flag="1" x="28.526" x-axis-rotation="0" y="13.606"/>
  853. <line x="26.801" y="15.33"/>
  854. <arc large-arc-flag="0" rx="3.965" ry="3.965" sweep-flag="0" x="23.927" x-axis-rotation="0" y="14.043"/>
  855. <curve x1="22.662" x2="22.11" x3="22.11" y1="14.043" y2="14.549" y3="15.285"/>
  856. <curve x1="22.11" x2="22.547" x3="23.674" y1="16.089" y2="16.457" y3="16.641"/>
  857. <line x="24.893" y="16.802"/>
  858. <curve x1="27.514" x2="28.779" x3="28.779" y1="17.17" y2="18.343" y3="20.343"/>
  859. <curve x1="28.779" x2="26.824" x3="23.835" y1="22.666" y2="24.276" y3="24.276"/>
  860. <arc large-arc-flag="0" rx="6.094" ry="6.094" sweep-flag="1" x="18.868" x-axis-rotation="0" y="22.068"/>
  861. <close/>
  862. <move x="4.24" y="7.95"/>
  863. <line x="10.08" y="7.95"/>
  864. <curve x1="14.266" x2="17.002" x3="17.002" y1="7.95" y2="10.64" y3="15.975"/>
  865. <curve x1="17.002" x2="14.266" x3="10.082" y1="21.31" y2="24" y3="24"/>
  866. <line x="4.24" y="24"/>
  867. <close/>
  868. <move x="10.08" y="21.31"/>
  869. <curve x1="12.334" x2="13.783" x3="13.783" y1="21.31" y2="19.976" y3="17.24"/>
  870. <line x="13.783" y="14.71"/>
  871. <curve x1="13.783" x2="12.334" x3="10.081" y1="11.974" y2="10.64" y3="10.64"/>
  872. <line x="7.276" y="10.64"/>
  873. <line x="7.276" y="21.31"/>
  874. <close/>
  875. </path>
  876. <fillstroke/>
  877. </foreground>
  878. </shape>
  879. <shape aspect="variable" h="32" name="database--elastic" strokewidth="inherit" w="32">
  880. <connections/>
  881. <foreground>
  882. <save/>
  883. <rect h="32" w="32" x="0" y="0"/>
  884. <stroke/>
  885. <restore/>
  886. <rect/>
  887. <stroke/>
  888. <path>
  889. <move x="17.828" y="22.068"/>
  890. <line x="19.622" y="20.321"/>
  891. <arc large-arc-flag="0" rx="4.218" ry="4.218" sweep-flag="0" x="22.91" x-axis-rotation="0" y="21.953"/>
  892. <curve x1="24.313" x2="24.91" x3="24.91" y1="21.953" y2="21.425" y3="20.573"/>
  893. <curve x1="24.91" x2="24.496" x3="23.438" y1="19.883" y2="19.447" y3="19.309"/>
  894. <line x="22.243" y="19.148"/>
  895. <curve x1="19.667" x2="18.242" x3="18.242" y1="18.826" y2="17.699" y3="15.515"/>
  896. <curve x1="18.242" x2="20.058" x3="22.795" y1="13.192" y2="11.72" y3="11.72"/>
  897. <arc large-arc-flag="0" rx="5.722" ry="5.722" sweep-flag="1" x="27.485" x-axis-rotation="0" y="13.606"/>
  898. <line x="25.761" y="15.33"/>
  899. <arc large-arc-flag="0" rx="3.964" ry="3.964" sweep-flag="0" x="22.887" x-axis-rotation="0" y="14.043"/>
  900. <curve x1="21.622" x2="21.07" x3="21.07" y1="14.043" y2="14.549" y3="15.285"/>
  901. <curve x1="21.07" x2="21.507" x3="22.634" y1="16.089" y2="16.457" y3="16.641"/>
  902. <line x="23.852" y="16.802"/>
  903. <curve x1="26.474" x2="27.738" x3="27.738" y1="17.17" y2="18.343" y3="20.344"/>
  904. <curve x1="27.738" x2="25.784" x3="22.795" y1="22.666" y2="24.276" y3="24.276"/>
  905. <arc large-arc-flag="0" rx="6.094" ry="6.094" sweep-flag="1" x="17.828" x-axis-rotation="0" y="22.068"/>
  906. <close/>
  907. <move x="5.248" y="24"/>
  908. <line x="5.248" y="7.95"/>
  909. <line x="15.825" y="7.95"/>
  910. <line x="15.825" y="10.64"/>
  911. <line x="8.283" y="10.64"/>
  912. <line x="8.283" y="14.526"/>
  913. <line x="14.951" y="14.526"/>
  914. <line x="14.951" y="17.216"/>
  915. <line x="8.283" y="17.216"/>
  916. <line x="8.283" y="21.31"/>
  917. <line x="15.825" y="21.31"/>
  918. <line x="15.825" y="24"/>
  919. <close/>
  920. </path>
  921. <fillstroke/>
  922. </foreground>
  923. </shape>
  924. <shape aspect="variable" h="32" name="database--enterprisedb" strokewidth="inherit" w="32">
  925. <connections/>
  926. <foreground>
  927. <save/>
  928. <rect h="32" w="32" x="0" y="0"/>
  929. <stroke/>
  930. <restore/>
  931. <rect/>
  932. <stroke/>
  933. <path>
  934. <move x="17.84" y="24"/>
  935. <line x="17.84" y="11.997"/>
  936. <line x="20.783" y="11.997"/>
  937. <line x="20.783" y="13.997"/>
  938. <line x="20.898" y="13.997"/>
  939. <arc large-arc-flag="0" rx="3.312" ry="3.312" sweep-flag="1" x="24.255" x-axis-rotation="0" y="11.72"/>
  940. <curve x1="26.715" x2="28.095" x3="28.095" y1="11.72" y2="13.422" y3="16.411"/>
  941. <line x="28.095" y="24"/>
  942. <line x="25.152" y="24"/>
  943. <line x="25.152" y="16.71"/>
  944. <curve x1="25.152" x2="24.577" x3="23.174" y1="15.009" y2="14.135" y3="14.135"/>
  945. <curve x1="21.956" x2="20.783" x3="20.783" y1="14.135" y2="14.779" y3="16.067"/>
  946. <line x="20.783" y="24"/>
  947. <close/>
  948. <move x="4.224" y="24"/>
  949. <line x="4.224" y="7.95"/>
  950. <line x="14.802" y="7.95"/>
  951. <line x="14.802" y="10.64"/>
  952. <line x="7.259" y="10.64"/>
  953. <line x="7.259" y="14.526"/>
  954. <line x="13.928" y="14.526"/>
  955. <line x="13.928" y="17.216"/>
  956. <line x="7.259" y="17.216"/>
  957. <line x="7.259" y="21.31"/>
  958. <line x="14.802" y="21.31"/>
  959. <line x="14.802" y="24"/>
  960. <close/>
  961. </path>
  962. <fillstroke/>
  963. </foreground>
  964. </shape>
  965. <shape aspect="variable" h="32" name="database--etcd" strokewidth="inherit" w="32">
  966. <connections/>
  967. <foreground>
  968. <save/>
  969. <rect h="32" w="32" x="0" y="0"/>
  970. <stroke/>
  971. <restore/>
  972. <rect/>
  973. <stroke/>
  974. <path>
  975. <move x="20.944" y="20.942"/>
  976. <line x="20.944" y="14.342"/>
  977. <line x="19.174" y="14.342"/>
  978. <line x="19.174" y="11.997"/>
  979. <line x="20.094" y="11.997"/>
  980. <curve x1="20.968" x2="21.244" x3="21.244" y1="11.997" y2="11.583" y3="10.755"/>
  981. <line x="21.244" y="8.708"/>
  982. <line x="23.888" y="8.708"/>
  983. <line x="23.888" y="11.997"/>
  984. <line x="26.348" y="11.997"/>
  985. <line x="26.348" y="14.342"/>
  986. <line x="23.888" y="14.342"/>
  987. <line x="23.888" y="21.655"/>
  988. <line x="26.165" y="21.655"/>
  989. <line x="26.165" y="24"/>
  990. <line x="24.049" y="24"/>
  991. <arc large-arc-flag="0" rx="2.778" ry="2.778" sweep-flag="1" x="20.944" x-axis-rotation="0" y="20.942"/>
  992. <close/>
  993. <move x="6.684" y="24"/>
  994. <line x="6.684" y="7.95"/>
  995. <line x="17.263" y="7.95"/>
  996. <line x="17.263" y="10.64"/>
  997. <line x="9.72" y="10.64"/>
  998. <line x="9.72" y="14.526"/>
  999. <line x="16.389" y="14.526"/>
  1000. <line x="16.389" y="17.216"/>
  1001. <line x="9.72" y="17.216"/>
  1002. <line x="9.72" y="21.31"/>
  1003. <line x="17.263" y="21.31"/>
  1004. <line x="17.263" y="24"/>
  1005. <close/>
  1006. </path>
  1007. <fillstroke/>
  1008. </foreground>
  1009. </shape>
  1010. <shape aspect="variable" h="32" name="database--mongodb" strokewidth="inherit" w="32">
  1011. <connections/>
  1012. <foreground>
  1013. <save/>
  1014. <rect h="32" w="32" x="0" y="0"/>
  1015. <stroke/>
  1016. <restore/>
  1017. <rect/>
  1018. <stroke/>
  1019. <path>
  1020. <move x="25.348" y="28.875"/>
  1021. <curve x1="21.301" x2="19.76" x3="19.76" y1="28.875" y2="27.817" y3="26.047"/>
  1022. <arc large-arc-flag="0" rx="2.212" ry="2.212" sweep-flag="1" x="21.899" x-axis-rotation="0" y="23.747"/>
  1023. <line x="21.899" y="23.494"/>
  1024. <arc large-arc-flag="0" rx="1.973" ry="1.973" sweep-flag="1" x="20.359" x-axis-rotation="0" y="21.494"/>
  1025. <curve x1="20.359" x2="21.416" x3="22.565" y1="20.252" y2="19.631" y3="19.378"/>
  1026. <line x="22.565" y="19.286"/>
  1027. <arc large-arc-flag="0" rx="3.623" ry="3.623" sweep-flag="1" x="20.381" x-axis-rotation="0" y="15.791"/>
  1028. <curve x1="20.381" x2="22.106" x3="25.348" y1="13.353" y2="11.721" y3="11.721"/>
  1029. <arc large-arc-flag="0" rx="6.672" ry="6.672" sweep-flag="1" x="27.44" x-axis-rotation="0" y="12.02"/>
  1030. <line x="27.44" y="11.63"/>
  1031. <arc large-arc-flag="0" rx="1.534" ry="1.534" sweep-flag="1" x="29.142" x-axis-rotation="0" y="9.882"/>
  1032. <line x="31.005" y="9.882"/>
  1033. <line x="31.005" y="12.135"/>
  1034. <line x="28.452" y="12.135"/>
  1035. <line x="28.452" y="12.457"/>
  1036. <arc large-arc-flag="0" rx="3.592" ry="3.592" sweep-flag="1" x="30.315" x-axis-rotation="0" y="15.791"/>
  1037. <curve x1="30.315" x2="28.613" x3="25.348" y1="18.206" y2="19.815" y3="19.815"/>
  1038. <arc large-arc-flag="0" rx="7.366" ry="7.366" sweep-flag="1" x="23.508" x-axis-rotation="0" y="19.608"/>
  1039. <arc large-arc-flag="0" rx="1.23" ry="1.23" sweep-flag="0" x="22.658" x-axis-rotation="0" y="20.689"/>
  1040. <curve x1="22.658" x2="23.164" x3="24.222" y1="21.287" y2="21.586" y3="21.586"/>
  1041. <line x="27.44" y="21.586"/>
  1042. <curve x1="30.383" x2="31.648" x3="31.648" y1="21.586" y2="22.851" y3="25.012"/>
  1043. <curve x1="31.648" x2="29.948" x3="25.348" y1="27.518" y2="28.875" y3="28.875"/>
  1044. <close/>
  1045. <move x="26.843" y="24.138"/>
  1046. <line x="22.75" y="24.138"/>
  1047. <arc large-arc-flag="0" rx="1.473" ry="1.473" sweep-flag="0" x="22.129" x-axis-rotation="0" y="25.38"/>
  1048. <curve x1="22.129" x2="22.819" x3="24.659" y1="26.3" y2="26.851" y3="26.851"/>
  1049. <line x="26.13" y="26.851"/>
  1050. <curve x1="28.039" x2="28.89" x3="28.89" y1="26.851" y2="26.368" y3="25.357"/>
  1051. <curve x1="28.89" x2="28.337" x3="26.843" y1="24.597" y2="24.137" y3="24.137"/>
  1052. <close/>
  1053. <move x="27.51" y="15.975"/>
  1054. <line x="27.51" y="15.584"/>
  1055. <curve x1="27.51" x2="26.751" x3="25.348" y1="14.365" y2="13.744" y3="13.744"/>
  1056. <curve x1="23.945" x2="23.186" x3="23.186" y1="13.744" y2="14.364" y3="15.584"/>
  1057. <line x="23.186" y="15.974"/>
  1058. <curve x1="23.186" x2="23.946" x3="25.348" y1="17.17" y2="17.814" y3="17.814"/>
  1059. <curve x1="26.75" x2="27.51" x3="27.51" y1="17.814" y2="17.17" y3="15.974"/>
  1060. <close/>
  1061. <move x="2.234" y="7.95"/>
  1062. <line x="5.66" y="7.95"/>
  1063. <line x="9.776" y="15.791"/>
  1064. <line x="9.868" y="15.791"/>
  1065. <line x="13.938" y="7.95"/>
  1066. <line x="17.228" y="7.95"/>
  1067. <line x="17.228" y="24"/>
  1068. <line x="14.352" y="24"/>
  1069. <line x="14.352" y="12.48"/>
  1070. <line x="14.261" y="12.48"/>
  1071. <line x="13.019" y="15.032"/>
  1072. <line x="9.73" y="21.102"/>
  1073. <line x="6.442" y="15.032"/>
  1074. <line x="5.201" y="12.48"/>
  1075. <line x="5.108" y="12.48"/>
  1076. <line x="5.108" y="24"/>
  1077. <line x="2.234" y="24"/>
  1078. <close/>
  1079. </path>
  1080. <fillstroke/>
  1081. </foreground>
  1082. </shape>
  1083. <shape aspect="variable" h="32" name="database--mysql" strokewidth="inherit" w="32">
  1084. <connections/>
  1085. <foreground>
  1086. <save/>
  1087. <rect h="32" w="32" x="0" y="0"/>
  1088. <stroke/>
  1089. <restore/>
  1090. <rect/>
  1091. <stroke/>
  1092. <path>
  1093. <move x="28.247" y="11.925"/>
  1094. <line x="31.422" y="11.925"/>
  1095. <line x="26.775" y="25.863"/>
  1096. <curve x1="26.469" x2="26.035" x3="25.475" y1="26.798" y2="27.488" y3="27.933"/>
  1097. <curve x1="24.916" x2="24.115" x3="23.072" y1="28.377" y2="28.6" y3="28.6"/>
  1098. <line x="20.956" y="28.6"/>
  1099. <line x="20.956" y="25.955"/>
  1100. <line x="23.233" y="25.955"/>
  1101. <line x="23.647" y="24.621"/>
  1102. <line x="19.415" y="11.925"/>
  1103. <line x="22.797" y="11.925"/>
  1104. <line x="24.567" y="17.56"/>
  1105. <line x="25.441" y="21.056"/>
  1106. <line x="25.579" y="21.056"/>
  1107. <line x="26.477" y="17.56"/>
  1108. <close/>
  1109. <move x="14.217" y="13.465"/>
  1110. <line x="14.148" y="13.465"/>
  1111. <line x="12.976" y="15.812"/>
  1112. <line x="9.848" y="21.493"/>
  1113. <line x="6.789" y="15.835"/>
  1114. <line x="5.569" y="13.305"/>
  1115. <line x="5.501" y="13.305"/>
  1116. <line x="5.501" y="24"/>
  1117. <line x="2.211" y="24"/>
  1118. <line x="2.211" y="7.946"/>
  1119. <line x="5.915" y="7.946"/>
  1120. <line x="9.848" y="15.466"/>
  1121. <line x="9.894" y="15.466"/>
  1122. <line x="13.781" y="7.946"/>
  1123. <line x="17.507" y="7.946"/>
  1124. <line x="17.507" y="24"/>
  1125. <line x="14.217" y="24"/>
  1126. <close/>
  1127. </path>
  1128. <fillstroke/>
  1129. </foreground>
  1130. </shape>
  1131. <shape aspect="variable" h="32" name="database--postgresql" strokewidth="inherit" w="32">
  1132. <connections/>
  1133. <foreground>
  1134. <save/>
  1135. <rect h="32" w="32" x="0" y="0"/>
  1136. <stroke/>
  1137. <restore/>
  1138. <rect/>
  1139. <stroke/>
  1140. <path>
  1141. <move x="22.98" y="28.875"/>
  1142. <curve x1="18.933" x2="17.392" x3="17.392" y1="28.875" y2="27.817" y3="26.047"/>
  1143. <arc large-arc-flag="0" rx="2.211" ry="2.211" sweep-flag="1" x="19.531" x-axis-rotation="0" y="23.747"/>
  1144. <line x="19.531" y="23.494"/>
  1145. <arc large-arc-flag="0" rx="1.972" ry="1.972" sweep-flag="1" x="17.99" x-axis-rotation="0" y="21.494"/>
  1146. <curve x1="17.99" x2="19.047" x3="20.197" y1="20.252" y2="19.631" y3="19.378"/>
  1147. <line x="20.197" y="19.286"/>
  1148. <arc large-arc-flag="0" rx="3.622" ry="3.622" sweep-flag="1" x="18.013" x-axis-rotation="0" y="15.791"/>
  1149. <curve x1="18.013" x2="19.737" x3="22.98" y1="13.353" y2="11.721" y3="11.721"/>
  1150. <arc large-arc-flag="0" rx="6.677" ry="6.677" sweep-flag="1" x="25.072" x-axis-rotation="0" y="12.02"/>
  1151. <line x="25.072" y="11.629"/>
  1152. <arc large-arc-flag="0" rx="1.534" ry="1.534" sweep-flag="1" x="26.774" x-axis-rotation="0" y="9.881"/>
  1153. <line x="28.636" y="9.881"/>
  1154. <line x="28.636" y="12.134"/>
  1155. <line x="26.084" y="12.134"/>
  1156. <line x="26.084" y="12.456"/>
  1157. <arc large-arc-flag="0" rx="3.593" ry="3.593" sweep-flag="1" x="27.946" x-axis-rotation="0" y="15.791"/>
  1158. <curve x1="27.946" x2="26.244" x3="22.979" y1="18.205" y2="19.815" y3="19.815"/>
  1159. <arc large-arc-flag="0" rx="7.372" ry="7.372" sweep-flag="1" x="21.139" x-axis-rotation="0" y="19.608"/>
  1160. <arc large-arc-flag="0" rx="1.23" ry="1.23" sweep-flag="0" x="20.289" x-axis-rotation="0" y="20.688"/>
  1161. <curve x1="20.289" x2="20.795" x3="21.852" y1="21.287" y2="21.585" y3="21.585"/>
  1162. <line x="25.072" y="21.585"/>
  1163. <curve x1="28.015" x2="29.28" x3="29.28" y1="21.585" y2="22.85" y3="25.012"/>
  1164. <curve x1="29.28" x2="27.578" x3="22.98" y1="27.518" y2="28.875" y3="28.875"/>
  1165. <close/>
  1166. <move x="24.474" y="24.138"/>
  1167. <line x="20.381" y="24.138"/>
  1168. <arc large-arc-flag="0" rx="1.474" ry="1.474" sweep-flag="0" x="19.76" x-axis-rotation="0" y="25.38"/>
  1169. <curve x1="19.76" x2="20.45" x3="22.29" y1="26.3" y2="26.852" y3="26.852"/>
  1170. <line x="23.76" y="26.852"/>
  1171. <curve x1="25.67" x2="26.52" x3="26.52" y1="26.852" y2="26.369" y3="25.357"/>
  1172. <curve x1="26.52" x2="25.969" x3="24.474" y1="24.597" y2="24.137" y3="24.137"/>
  1173. <close/>
  1174. <move x="25.141" y="15.975"/>
  1175. <line x="25.141" y="15.584"/>
  1176. <curve x1="25.141" x2="24.382" x3="22.98" y1="14.365" y2="13.744" y3="13.744"/>
  1177. <curve x1="21.578" x2="20.818" x3="20.818" y1="13.744" y2="14.364" y3="15.584"/>
  1178. <line x="20.818" y="15.974"/>
  1179. <curve x1="20.818" x2="21.577" x3="22.98" y1="17.17" y2="17.814" y3="17.814"/>
  1180. <curve x1="24.383" x2="25.14" x3="25.14" y1="17.814" y2="17.17" y3="15.974"/>
  1181. <close/>
  1182. <move x="4.603" y="24"/>
  1183. <line x="4.603" y="7.95"/>
  1184. <line x="11.823" y="7.95"/>
  1185. <curve x1="14.79" x2="16.583" x3="16.583" y1="7.95" y2="9.95" y3="12.917"/>
  1186. <curve x1="16.583" x2="14.789" x3="11.823" y1="15.907" y2="17.884" y3="17.884"/>
  1187. <line x="7.639" y="17.884"/>
  1188. <line x="7.639" y="24"/>
  1189. <close/>
  1190. <move x="7.639" y="15.262"/>
  1191. <line x="11.548" y="15.262"/>
  1192. <arc large-arc-flag="0" rx="1.689" ry="1.689" sweep-flag="0" x="13.433" x-axis-rotation="0" y="13.445"/>
  1193. <line x="13.433" y="12.387"/>
  1194. <arc large-arc-flag="0" rx="1.672" ry="1.672" sweep-flag="0" x="11.548" x-axis-rotation="0" y="10.594"/>
  1195. <line x="7.638" y="10.594"/>
  1196. <close/>
  1197. </path>
  1198. <fillstroke/>
  1199. </foreground>
  1200. </shape>
  1201. <shape aspect="variable" h="32" name="database--rabbit" strokewidth="inherit" w="32">
  1202. <connections/>
  1203. <foreground>
  1204. <save/>
  1205. <rect h="32" w="32" x="0" y="0"/>
  1206. <stroke/>
  1207. <restore/>
  1208. <rect/>
  1209. <stroke/>
  1210. <path>
  1211. <move x="17.943" y="20.735"/>
  1212. <curve x1="17.943" x2="19.806" x3="23.071" y1="18.275" y2="17.055" y3="17.055"/>
  1213. <line x="25.118" y="17.055"/>
  1214. <line x="25.118" y="16.182"/>
  1215. <curve x1="25.118" x2="24.451" x3="22.888" y1="14.848" y2="14.066" y3="14.066"/>
  1216. <arc large-arc-flag="0" rx="3.125" ry="3.125" sweep-flag="0" x="20.151" x-axis-rotation="0" y="15.584"/>
  1217. <line x="18.403" y="14.02"/>
  1218. <arc large-arc-flag="0" rx="5.054" ry="5.054" sweep-flag="1" x="23.094" x-axis-rotation="0" y="11.72"/>
  1219. <curve x1="26.336" x2="28.061" x3="28.061" y1="11.72" y2="13.26" y3="15.997"/>
  1220. <line x="28.061" y="21.654"/>
  1221. <line x="29.257" y="21.654"/>
  1222. <line x="29.257" y="24"/>
  1223. <line x="27.624" y="24"/>
  1224. <arc large-arc-flag="0" rx="2.184" ry="2.184" sweep-flag="1" x="25.394" x-axis-rotation="0" y="21.93"/>
  1225. <line x="25.256" y="21.93"/>
  1226. <curve x1="24.866" x2="23.555" x3="21.761" y1="23.47" y2="24.275" y3="24.275"/>
  1227. <curve x1="19.323" x2="17.943" x3="17.943" y1="24.275" y2="22.873" y3="20.735"/>
  1228. <close/>
  1229. <move x="25.118" y="20.413"/>
  1230. <line x="25.118" y="18.826"/>
  1231. <line x="23.232" y="18.826"/>
  1232. <curve x1="21.692" x2="20.932" x3="20.932" y1="18.826" y2="19.355" y3="20.298"/>
  1233. <line x="20.932" y="20.688"/>
  1234. <curve x1="20.932" x2="21.599" x3="22.749" y1="21.654" y2="22.138" y3="22.138"/>
  1235. <curve x1="24.06" x2="25.118" x3="25.118" y1="22.138" y2="21.54" y3="20.413"/>
  1236. <close/>
  1237. <move x="6.972" y="24"/>
  1238. <line x="3.936" y="24"/>
  1239. <line x="3.936" y="7.95"/>
  1240. <line x="11.18" y="7.95"/>
  1241. <curve x1="14.1" x2="15.917" x3="15.917" y1="7.95" y2="9.882" y3="12.917"/>
  1242. <arc large-arc-flag="0" rx="4.424" ry="4.424" sweep-flag="1" x="12.928" x-axis-rotation="0" y="17.47"/>
  1243. <line x="16.216" y="24"/>
  1244. <line x="12.836" y="24"/>
  1245. <line x="9.846" y="17.814"/>
  1246. <line x="6.972" y="17.814"/>
  1247. <close/>
  1248. <move x="10.881" y="15.262"/>
  1249. <arc large-arc-flag="0" rx="1.689" ry="1.689" sweep-flag="0" x="12.767" x-axis-rotation="0" y="13.445"/>
  1250. <line x="12.767" y="12.387"/>
  1251. <arc large-arc-flag="0" rx="1.672" ry="1.672" sweep-flag="0" x="10.881" x-axis-rotation="0" y="10.594"/>
  1252. <line x="6.97" y="10.594"/>
  1253. <line x="6.97" y="15.262"/>
  1254. <close/>
  1255. </path>
  1256. <fillstroke/>
  1257. </foreground>
  1258. </shape>
  1259. <shape aspect="variable" h="32" name="database--redis" strokewidth="inherit" w="32">
  1260. <connections/>
  1261. <foreground>
  1262. <save/>
  1263. <rect h="32" w="32" x="0" y="0"/>
  1264. <stroke/>
  1265. <restore/>
  1266. <rect/>
  1267. <stroke/>
  1268. <path>
  1269. <move x="25.716" y="22"/>
  1270. <line x="25.6" y="22"/>
  1271. <arc large-arc-flag="0" rx="3.371" ry="3.371" sweep-flag="1" x="22.288" x-axis-rotation="0" y="24.276"/>
  1272. <curve x1="19.276" x2="17.598" x3="17.598" y1="24.276" y2="22" y3="17.976"/>
  1273. <curve x1="17.598" x2="19.276" x3="22.288" y1="13.975" y2="11.721" y3="11.721"/>
  1274. <arc large-arc-flag="0" rx="3.305" ry="3.305" sweep-flag="1" x="25.6" x-axis-rotation="0" y="13.975"/>
  1275. <line x="25.715" y="13.975"/>
  1276. <line x="25.715" y="6.985"/>
  1277. <line x="28.658" y="6.985"/>
  1278. <line x="28.658" y="24"/>
  1279. <line x="25.715" y="24"/>
  1280. <close/>
  1281. <move x="25.716" y="19.884"/>
  1282. <line x="25.716" y="16.067"/>
  1283. <curve x1="25.716" x2="24.635" x3="23.232" y1="14.894" y2="14.135" y3="14.135"/>
  1284. <arc large-arc-flag="0" rx="2.556" ry="2.556" sweep-flag="0" x="20.68" x-axis-rotation="0" y="16.964"/>
  1285. <line x="20.68" y="19.034"/>
  1286. <arc large-arc-flag="0" rx="2.537" ry="2.537" sweep-flag="0" x="23.232" x-axis-rotation="0" y="21.839"/>
  1287. <curve x1="24.635" x2="25.716" x3="25.716" y1="21.839" y2="21.126" y3="19.884"/>
  1288. <close/>
  1289. <move x="6.558" y="24"/>
  1290. <line x="3.522" y="24"/>
  1291. <line x="3.522" y="7.95"/>
  1292. <line x="10.766" y="7.95"/>
  1293. <curve x1="13.686" x2="15.503" x3="15.503" y1="7.95" y2="9.882" y3="12.917"/>
  1294. <arc large-arc-flag="0" rx="4.424" ry="4.424" sweep-flag="1" x="12.513" x-axis-rotation="0" y="17.47"/>
  1295. <line x="15.802" y="24"/>
  1296. <line x="12.422" y="24"/>
  1297. <line x="9.432" y="17.814"/>
  1298. <line x="6.558" y="17.814"/>
  1299. <close/>
  1300. <move x="10.467" y="15.262"/>
  1301. <arc large-arc-flag="0" rx="1.689" ry="1.689" sweep-flag="0" x="12.352" x-axis-rotation="0" y="13.445"/>
  1302. <line x="12.352" y="12.387"/>
  1303. <arc large-arc-flag="0" rx="1.672" ry="1.672" sweep-flag="0" x="10.467" x-axis-rotation="0" y="10.594"/>
  1304. <line x="6.557" y="10.594"/>
  1305. <line x="6.557" y="15.262"/>
  1306. <close/>
  1307. </path>
  1308. <fillstroke/>
  1309. </foreground>
  1310. </shape>
  1311. <shape aspect="variable" h="32" name="dns-services" strokewidth="inherit" w="32">
  1312. <connections/>
  1313. <foreground>
  1314. <save/>
  1315. <rect h="32" w="32" x="0" y="0"/>
  1316. <stroke/>
  1317. <restore/>
  1318. <rect/>
  1319. <stroke/>
  1320. <path>
  1321. <move x="20" y="20"/>
  1322. <line x="30" y="20"/>
  1323. <line x="30" y="22"/>
  1324. <line x="20" y="22"/>
  1325. <close/>
  1326. <move x="20" y="24"/>
  1327. <line x="26" y="24"/>
  1328. <line x="26" y="26"/>
  1329. <line x="20" y="26"/>
  1330. <close/>
  1331. </path>
  1332. <fillstroke/>
  1333. <path>
  1334. <move x="30" y="17"/>
  1335. <line x="30" y="16"/>
  1336. <arc large-arc-flag="1" rx="13.987" ry="13.987" sweep-flag="0" x="19.23" x-axis-rotation="0" y="29.625"/>
  1337. <line x="18.77" y="27.679"/>
  1338. <arc large-arc-flag="0" rx="12.042" ry="12.042" sweep-flag="1" x="16" x-axis-rotation="0" y="28"/>
  1339. <curve x1="15.81" x2="15.625" x3="15.437" y1="28" y2="27.981" y3="27.973"/>
  1340. <arc large-arc-flag="0" rx="20.304" ry="20.304" sweep-flag="1" x="12.026" x-axis-rotation="0" y="17"/>
  1341. <close/>
  1342. <move x="27.958" y="15"/>
  1343. <line x="21.975" y="15"/>
  1344. <arc large-arc-flag="0" rx="24.284" ry="24.284" sweep-flag="0" x="19.201" x-axis-rotation="0" y="4.441"/>
  1345. <arc large-arc-flag="0" rx="12.023" ry="12.023" sweep-flag="1" x="27.96" x-axis-rotation="0" y="15"/>
  1346. <close/>
  1347. <move x="16.564" y="4.027"/>
  1348. <arc large-arc-flag="0" rx="20.304" ry="20.304" sweep-flag="1" x="19.974" x-axis-rotation="0" y="15"/>
  1349. <line x="12.026" y="15"/>
  1350. <arc large-arc-flag="0" rx="20.304" ry="20.304" sweep-flag="1" x="15.437" x-axis-rotation="0" y="4.027"/>
  1351. <curve x1="15.625" x2="15.81" x3="16" y1="4.02" y2="4" y3="4"/>
  1352. <curve x1="16.19" x2="16.375" x3="16.563" y1="4" y2="4.019" y3="4.027"/>
  1353. <close/>
  1354. <move x="12.8" y="4.441"/>
  1355. <arc large-arc-flag="0" rx="24.284" ry="24.284" sweep-flag="0" x="10.025" x-axis-rotation="0" y="15"/>
  1356. <line x="4.04" y="15"/>
  1357. <arc large-arc-flag="0" rx="12.023" ry="12.023" sweep-flag="1" x="12.8" x-axis-rotation="0" y="4.441"/>
  1358. <close/>
  1359. <move x="12.8" y="27.559"/>
  1360. <arc large-arc-flag="0" rx="12.023" ry="12.023" sweep-flag="1" x="4.042" x-axis-rotation="0" y="17"/>
  1361. <line x="10.025" y="17"/>
  1362. <arc large-arc-flag="0" rx="24.284" ry="24.284" sweep-flag="0" x="12.799" x-axis-rotation="0" y="27.559"/>
  1363. <close/>
  1364. </path>
  1365. <fillstroke/>
  1366. </foreground>
  1367. </shape>
  1368. <shape aspect="variable" h="32" name="enterprise" strokewidth="inherit" w="32">
  1369. <connections/>
  1370. <foreground>
  1371. <save/>
  1372. <rect h="32" w="32" x="0" y="0"/>
  1373. <stroke/>
  1374. <restore/>
  1375. <rect/>
  1376. <stroke/>
  1377. <path>
  1378. <move x="8" y="8"/>
  1379. <line x="10" y="8"/>
  1380. <line x="10" y="12"/>
  1381. <line x="8" y="12"/>
  1382. <close/>
  1383. <move x="8" y="14"/>
  1384. <line x="10" y="14"/>
  1385. <line x="10" y="18"/>
  1386. <line x="8" y="18"/>
  1387. <close/>
  1388. <move x="14" y="8"/>
  1389. <line x="16" y="8"/>
  1390. <line x="16" y="12"/>
  1391. <line x="14" y="12"/>
  1392. <close/>
  1393. <move x="14" y="14"/>
  1394. <line x="16" y="14"/>
  1395. <line x="16" y="18"/>
  1396. <line x="14" y="18"/>
  1397. <close/>
  1398. <move x="8" y="20"/>
  1399. <line x="10" y="20"/>
  1400. <line x="10" y="24"/>
  1401. <line x="8" y="24"/>
  1402. <close/>
  1403. <move x="14" y="20"/>
  1404. <line x="16" y="20"/>
  1405. <line x="16" y="24"/>
  1406. <line x="14" y="24"/>
  1407. <close/>
  1408. </path>
  1409. <fillstroke/>
  1410. <path>
  1411. <move x="30" y="14"/>
  1412. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="12"/>
  1413. <line x="22" y="12"/>
  1414. <line x="22" y="4"/>
  1415. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="20" x-axis-rotation="0" y="2"/>
  1416. <line x="4" y="2"/>
  1417. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="2" x-axis-rotation="0" y="4"/>
  1418. <line x="2" y="30"/>
  1419. <line x="30" y="30"/>
  1420. <close/>
  1421. <move x="4" y="4"/>
  1422. <line x="20" y="4"/>
  1423. <line x="20" y="28"/>
  1424. <line x="4" y="28"/>
  1425. <close/>
  1426. <move x="22" y="28"/>
  1427. <line x="22" y="14"/>
  1428. <line x="28" y="14"/>
  1429. <line x="28" y="28"/>
  1430. <close/>
  1431. </path>
  1432. <fillstroke/>
  1433. </foreground>
  1434. </shape>
  1435. <shape aspect="variable" h="32" name="flag" strokewidth="inherit" w="32">
  1436. <connections/>
  1437. <foreground>
  1438. <save/>
  1439. <rect h="32" w="32" x="0" y="0"/>
  1440. <stroke/>
  1441. <restore/>
  1442. <rect/>
  1443. <stroke/>
  1444. <path>
  1445. <move x="6" y="30"/>
  1446. <line x="4" y="30"/>
  1447. <line x="4" y="2"/>
  1448. <line x="28" y="2"/>
  1449. <line x="22.2" y="11"/>
  1450. <line x="28" y="20"/>
  1451. <line x="6" y="20"/>
  1452. <close/>
  1453. <move x="6" y="18"/>
  1454. <line x="24.33" y="18"/>
  1455. <line x="19.8" y="11"/>
  1456. <line x="24.33" y="4"/>
  1457. <line x="6" y="4"/>
  1458. <close/>
  1459. </path>
  1460. <fillstroke/>
  1461. </foreground>
  1462. </shape>
  1463. <shape aspect="variable" h="32" name="floating-ip" strokewidth="inherit" w="32">
  1464. <connections/>
  1465. <foreground>
  1466. <save/>
  1467. <rect h="32" w="32" x="0" y="0"/>
  1468. <stroke/>
  1469. <restore/>
  1470. <rect/>
  1471. <stroke/>
  1472. <path>
  1473. <move x="25" y="11"/>
  1474. <arc large-arc-flag="0" rx="5.008" ry="5.008" sweep-flag="0" x="20.101" x-axis-rotation="0" y="15"/>
  1475. <line x="11.9" y="15"/>
  1476. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="11.9" x-axis-rotation="0" y="17"/>
  1477. <line x="20.1" y="17"/>
  1478. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="25" x-axis-rotation="0" y="11"/>
  1479. <close/>
  1480. <move x="25" y="19"/>
  1481. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="28" x-axis-rotation="0" y="16"/>
  1482. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="25" x-axis-rotation="0" y="19"/>
  1483. <close/>
  1484. </path>
  1485. <fillstroke/>
  1486. </foreground>
  1487. </shape>
  1488. <shape aspect="variable" h="32" name="flow-logs-vpc" strokewidth="inherit" w="32">
  1489. <connections/>
  1490. <foreground>
  1491. <save/>
  1492. <rect h="32" w="32" x="0" y="0"/>
  1493. <stroke/>
  1494. <restore/>
  1495. <rect/>
  1496. <stroke/>
  1497. <path>
  1498. <move x="18" y="19"/>
  1499. <line x="30" y="19"/>
  1500. <line x="30" y="21"/>
  1501. <line x="18" y="21"/>
  1502. <close/>
  1503. <move x="18" y="23"/>
  1504. <line x="30" y="23"/>
  1505. <line x="30" y="25"/>
  1506. <line x="18" y="25"/>
  1507. <close/>
  1508. <move x="18" y="27"/>
  1509. <line x="26" y="27"/>
  1510. <line x="26" y="29"/>
  1511. <line x="18" y="29"/>
  1512. <close/>
  1513. </path>
  1514. <fillstroke/>
  1515. <path>
  1516. <move x="24" y="4"/>
  1517. <arc large-arc-flag="0" rx="3.996" ry="3.996" sweep-flag="0" x="20.142" x-axis-rotation="0" y="7"/>
  1518. <line x="12" y="7"/>
  1519. <line x="12" y="4"/>
  1520. <line x="4" y="4"/>
  1521. <line x="4" y="12"/>
  1522. <line x="12" y="12"/>
  1523. <line x="12" y="9"/>
  1524. <line x="20.142" y="9"/>
  1525. <arc large-arc-flag="0" rx="3.94" ry="3.94" sweep-flag="0" x="20.567" x-axis-rotation="0" y="10.019"/>
  1526. <line x="10.019" y="20.567"/>
  1527. <arc large-arc-flag="0" rx="3.952" ry="3.952" sweep-flag="0" x="8" x-axis-rotation="0" y="20"/>
  1528. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="11.858" x-axis-rotation="0" y="25"/>
  1529. <line x="16" y="25"/>
  1530. <line x="16" y="23"/>
  1531. <line x="11.858" y="23"/>
  1532. <arc large-arc-flag="0" rx="3.94" ry="3.94" sweep-flag="0" x="11.433" x-axis-rotation="0" y="21.981"/>
  1533. <line x="21.981" y="11.433"/>
  1534. <arc large-arc-flag="0" rx="3.952" ry="3.952" sweep-flag="0" x="24" x-axis-rotation="0" y="12"/>
  1535. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="24" x-axis-rotation="0" y="4"/>
  1536. <close/>
  1537. <move x="10" y="10"/>
  1538. <line x="6" y="10"/>
  1539. <line x="6" y="6"/>
  1540. <line x="10" y="6"/>
  1541. <close/>
  1542. <move x="8" y="26"/>
  1543. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="10" x-axis-rotation="0" y="24"/>
  1544. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="8" x-axis-rotation="0" y="26"/>
  1545. <close/>
  1546. <move x="24" y="10"/>
  1547. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="26" x-axis-rotation="0" y="8"/>
  1548. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="24" x-axis-rotation="0" y="10"/>
  1549. <close/>
  1550. </path>
  1551. <fillstroke/>
  1552. </foreground>
  1553. </shape>
  1554. <shape aspect="variable" h="32" name="gateway--public" strokewidth="inherit" w="32">
  1555. <connections/>
  1556. <foreground>
  1557. <save/>
  1558. <rect h="32" w="32" x="0" y="0"/>
  1559. <stroke/>
  1560. <restore/>
  1561. <rect/>
  1562. <stroke/>
  1563. <path>
  1564. <move x="19" y="14"/>
  1565. <line x="14" y="14"/>
  1566. <line x="14" y="12"/>
  1567. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="18" x-axis-rotation="0" y="12"/>
  1568. <line x="20" y="12"/>
  1569. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="12" x-axis-rotation="0" y="12"/>
  1570. <line x="12" y="14.278"/>
  1571. <arc large-arc-flag="0" rx="1.993" ry="1.993" sweep-flag="0" x="11" x-axis-rotation="0" y="16"/>
  1572. <line x="11" y="21"/>
  1573. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="13" x-axis-rotation="0" y="23"/>
  1574. <line x="19" y="23"/>
  1575. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="21" x-axis-rotation="0" y="21"/>
  1576. <line x="21" y="16"/>
  1577. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="19" x-axis-rotation="0" y="14"/>
  1578. <close/>
  1579. <move x="19" y="21"/>
  1580. <line x="13" y="21"/>
  1581. <line x="13" y="16"/>
  1582. <line x="19" y="16"/>
  1583. <close/>
  1584. </path>
  1585. <fillstroke/>
  1586. <path>
  1587. <move x="30.414" y="17.414"/>
  1588. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="30.414" x-axis-rotation="0" y="14.586"/>
  1589. <line x="24.627" y="8.799"/>
  1590. <line x="27.527" y="5.937"/>
  1591. <arc large-arc-flag="1" rx="2.002" ry="2.002" sweep-flag="0" x="26.087" x-axis-rotation="0" y="4.549"/>
  1592. <line x="23.213" y="7.385"/>
  1593. <line x="17.414" y="1.585"/>
  1594. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="14.586" x-axis-rotation="0" y="1.585"/>
  1595. <line x="8.799" y="7.374"/>
  1596. <line x="5.937" y="4.472"/>
  1597. <arc large-arc-flag="1" rx="2.002" ry="2.002" sweep-flag="0" x="4.55" x-axis-rotation="0" y="5.914"/>
  1598. <line x="7.385" y="8.787"/>
  1599. <line x="1.585" y="14.586"/>
  1600. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="1.585" x-axis-rotation="0" y="17.414"/>
  1601. <line x="7.385" y="23.213"/>
  1602. <line x="4.55" y="26.086"/>
  1603. <arc large-arc-flag="1" rx="1.998" ry="1.998" sweep-flag="0" x="5.937" x-axis-rotation="0" y="27.528"/>
  1604. <line x="8.799" y="24.628"/>
  1605. <line x="14.586" y="30.414"/>
  1606. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="17.414" x-axis-rotation="0" y="30.414"/>
  1607. <line x="23.214" y="24.615"/>
  1608. <line x="26.086" y="27.451"/>
  1609. <arc large-arc-flag="1" rx="1.998" ry="1.998" sweep-flag="0" x="27.528" x-axis-rotation="0" y="26.064"/>
  1610. <line x="24.628" y="23.201"/>
  1611. <close/>
  1612. <move x="16" y="29"/>
  1613. <line x="3" y="16"/>
  1614. <line x="16" y="3"/>
  1615. <line x="29" y="16"/>
  1616. <close/>
  1617. </path>
  1618. <fillstroke/>
  1619. </foreground>
  1620. </shape>
  1621. <shape aspect="variable" h="32" name="group--access" strokewidth="inherit" w="32">
  1622. <connections/>
  1623. <foreground>
  1624. <save/>
  1625. <rect h="32" w="32" x="0" y="0"/>
  1626. <stroke/>
  1627. <restore/>
  1628. <rect/>
  1629. <stroke/>
  1630. <path>
  1631. <move x="8" y="19"/>
  1632. <line x="6" y="19"/>
  1633. <line x="6" y="17"/>
  1634. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="9" x-axis-rotation="0" y="14"/>
  1635. <line x="14" y="14"/>
  1636. <line x="14" y="16"/>
  1637. <line x="9" y="16"/>
  1638. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="8" x-axis-rotation="0" y="17"/>
  1639. <close/>
  1640. <move x="12" y="13"/>
  1641. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="16" x-axis-rotation="0" y="9"/>
  1642. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="12" x-axis-rotation="0" y="13"/>
  1643. <close/>
  1644. <move x="12" y="7"/>
  1645. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="14" x-axis-rotation="0" y="9"/>
  1646. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="12" x-axis-rotation="0" y="7"/>
  1647. <close/>
  1648. <move x="20" y="20"/>
  1649. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="24" x-axis-rotation="0" y="16"/>
  1650. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="20" x-axis-rotation="0" y="20"/>
  1651. <close/>
  1652. <move x="20" y="14"/>
  1653. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="22" x-axis-rotation="0" y="16"/>
  1654. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="20" x-axis-rotation="0" y="14"/>
  1655. <close/>
  1656. <move x="26" y="26"/>
  1657. <line x="24" y="26"/>
  1658. <line x="24" y="24"/>
  1659. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="23" x-axis-rotation="0" y="23"/>
  1660. <line x="17" y="23"/>
  1661. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="16" x-axis-rotation="0" y="24"/>
  1662. <line x="16" y="26"/>
  1663. <line x="14" y="26"/>
  1664. <line x="14" y="24"/>
  1665. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="17" x-axis-rotation="0" y="21"/>
  1666. <line x="23" y="21"/>
  1667. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="26" x-axis-rotation="0" y="24"/>
  1668. <close/>
  1669. </path>
  1670. <fillstroke/>
  1671. <path>
  1672. <move x="8" y="30"/>
  1673. <line x="4" y="30"/>
  1674. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="2" x-axis-rotation="0" y="28"/>
  1675. <line x="2" y="4"/>
  1676. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="2"/>
  1677. <line x="8" y="2"/>
  1678. <line x="8" y="4"/>
  1679. <line x="4" y="4"/>
  1680. <line x="4" y="28"/>
  1681. <line x="8" y="28"/>
  1682. <close/>
  1683. <move x="28" y="30"/>
  1684. <line x="24" y="30"/>
  1685. <line x="24" y="28"/>
  1686. <line x="28" y="28"/>
  1687. <line x="28" y="4"/>
  1688. <line x="24" y="4"/>
  1689. <line x="24" y="2"/>
  1690. <line x="28" y="2"/>
  1691. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="4"/>
  1692. <line x="30" y="28"/>
  1693. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="30"/>
  1694. <close/>
  1695. </path>
  1696. <fillstroke/>
  1697. </foreground>
  1698. </shape>
  1699. <shape aspect="variable" h="32" name="group--account" strokewidth="inherit" w="32">
  1700. <connections/>
  1701. <foreground>
  1702. <save/>
  1703. <rect h="32" w="32" x="0" y="0"/>
  1704. <stroke/>
  1705. <restore/>
  1706. <rect/>
  1707. <stroke/>
  1708. <path>
  1709. <move x="17" y="11"/>
  1710. <line x="11" y="11"/>
  1711. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="8" x-axis-rotation="0" y="14"/>
  1712. <line x="8" y="18"/>
  1713. <line x="10" y="18"/>
  1714. <line x="10" y="14"/>
  1715. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="11" x-axis-rotation="0" y="13"/>
  1716. <line x="17" y="13"/>
  1717. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="18" x-axis-rotation="0" y="14"/>
  1718. <line x="18" y="15"/>
  1719. <line x="20" y="15"/>
  1720. <line x="20" y="14"/>
  1721. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="17" x-axis-rotation="0" y="11"/>
  1722. <close/>
  1723. <move x="10" y="6"/>
  1724. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="14" x-axis-rotation="0" y="2"/>
  1725. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="10" x-axis-rotation="0" y="6"/>
  1726. <close/>
  1727. <move x="16" y="6"/>
  1728. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="14" x-axis-rotation="0" y="4"/>
  1729. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="16" x-axis-rotation="0" y="6"/>
  1730. <close/>
  1731. <move x="22" y="27"/>
  1732. <line x="16" y="27"/>
  1733. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="14" x-axis-rotation="0" y="25"/>
  1734. <line x="14" y="19"/>
  1735. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="16" x-axis-rotation="0" y="17"/>
  1736. <line x="22" y="17"/>
  1737. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="24" x-axis-rotation="0" y="19"/>
  1738. <line x="24" y="25"/>
  1739. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="22" x-axis-rotation="0" y="27"/>
  1740. <close/>
  1741. <move x="16" y="19"/>
  1742. <line x="16" y="25"/>
  1743. <line x="22" y="25"/>
  1744. <line x="22" y="19"/>
  1745. <close/>
  1746. <move x="8" y="30"/>
  1747. <line x="4" y="30"/>
  1748. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="2" x-axis-rotation="0" y="28"/>
  1749. <line x="2" y="4"/>
  1750. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="2"/>
  1751. <line x="8" y="2"/>
  1752. <line x="8" y="4"/>
  1753. <line x="4" y="4"/>
  1754. <line x="4" y="28"/>
  1755. <line x="8" y="28"/>
  1756. <close/>
  1757. <move x="28" y="30"/>
  1758. <line x="24" y="30"/>
  1759. <line x="24" y="28"/>
  1760. <line x="28" y="28"/>
  1761. <line x="28" y="4"/>
  1762. <line x="24" y="4"/>
  1763. <line x="24" y="2"/>
  1764. <line x="28" y="2"/>
  1765. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="4"/>
  1766. <line x="30" y="28"/>
  1767. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="30"/>
  1768. <close/>
  1769. </path>
  1770. <fillstroke/>
  1771. </foreground>
  1772. </shape>
  1773. <shape aspect="variable" h="32" name="group--resource" strokewidth="inherit" w="32">
  1774. <connections/>
  1775. <foreground>
  1776. <save/>
  1777. <rect h="32" w="32" x="0" y="0"/>
  1778. <stroke/>
  1779. <restore/>
  1780. <rect/>
  1781. <stroke/>
  1782. <path>
  1783. <move x="22" y="24"/>
  1784. <line x="10" y="24"/>
  1785. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="8" x-axis-rotation="0" y="22"/>
  1786. <line x="8" y="10"/>
  1787. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="10" x-axis-rotation="0" y="8"/>
  1788. <line x="22" y="8"/>
  1789. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="24" x-axis-rotation="0" y="10"/>
  1790. <line x="24" y="22"/>
  1791. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="22" x-axis-rotation="0" y="24"/>
  1792. <close/>
  1793. <move x="10" y="10"/>
  1794. <line x="10" y="22"/>
  1795. <line x="22" y="22"/>
  1796. <line x="22" y="10"/>
  1797. <close/>
  1798. <move x="8" y="30"/>
  1799. <line x="4" y="30"/>
  1800. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="2" x-axis-rotation="0" y="28"/>
  1801. <line x="2" y="4"/>
  1802. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="2"/>
  1803. <line x="8" y="2"/>
  1804. <line x="8" y="4"/>
  1805. <line x="4" y="4"/>
  1806. <line x="4" y="28"/>
  1807. <line x="8" y="28"/>
  1808. <close/>
  1809. <move x="28" y="30"/>
  1810. <line x="24" y="30"/>
  1811. <line x="24" y="28"/>
  1812. <line x="28" y="28"/>
  1813. <line x="28" y="4"/>
  1814. <line x="24" y="4"/>
  1815. <line x="24" y="2"/>
  1816. <line x="28" y="2"/>
  1817. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="4"/>
  1818. <line x="30" y="28"/>
  1819. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="30"/>
  1820. <close/>
  1821. </path>
  1822. <fillstroke/>
  1823. </foreground>
  1824. </shape>
  1825. <shape aspect="variable" h="32" name="group--security" strokewidth="inherit" w="32">
  1826. <connections/>
  1827. <foreground>
  1828. <save/>
  1829. <rect h="32" w="32" x="0" y="0"/>
  1830. <stroke/>
  1831. <restore/>
  1832. <rect/>
  1833. <stroke/>
  1834. <path>
  1835. <move x="11" y="21"/>
  1836. <line x="9" y="21"/>
  1837. <line x="9" y="19"/>
  1838. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="12" x-axis-rotation="0" y="16"/>
  1839. <line x="18" y="16"/>
  1840. <line x="18" y="18"/>
  1841. <line x="12" y="18"/>
  1842. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="11" x-axis-rotation="0" y="19"/>
  1843. <close/>
  1844. <move x="15" y="15"/>
  1845. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="19" x-axis-rotation="0" y="11"/>
  1846. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="15" x-axis-rotation="0" y="15"/>
  1847. <close/>
  1848. <move x="15" y="9"/>
  1849. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="17" x-axis-rotation="0" y="11"/>
  1850. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="15" x-axis-rotation="0" y="9"/>
  1851. <close/>
  1852. <move x="24" y="22"/>
  1853. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="28" x-axis-rotation="0" y="18"/>
  1854. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="24" x-axis-rotation="0" y="22"/>
  1855. <close/>
  1856. <move x="24" y="16"/>
  1857. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="18"/>
  1858. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="24" x-axis-rotation="0" y="16"/>
  1859. <close/>
  1860. <move x="30" y="28"/>
  1861. <line x="28" y="28"/>
  1862. <line x="28" y="26"/>
  1863. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="27" x-axis-rotation="0" y="25"/>
  1864. <line x="21" y="25"/>
  1865. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="0" x="20" x-axis-rotation="0" y="26"/>
  1866. <line x="20" y="28"/>
  1867. <line x="18" y="28"/>
  1868. <line x="18" y="26"/>
  1869. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="21" x-axis-rotation="0" y="23"/>
  1870. <line x="27" y="23"/>
  1871. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="1" x="30" x-axis-rotation="0" y="26"/>
  1872. <close/>
  1873. </path>
  1874. <fillstroke/>
  1875. <path>
  1876. <move x="14" y="27.733"/>
  1877. <line x="8.766" y="24.943"/>
  1878. <arc large-arc-flag="0" rx="8.986" ry="8.986" sweep-flag="1" x="4" x-axis-rotation="0" y="17"/>
  1879. <line x="4" y="4"/>
  1880. <line x="24" y="4"/>
  1881. <line x="24" y="10"/>
  1882. <line x="26" y="10"/>
  1883. <line x="26" y="4"/>
  1884. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="24" x-axis-rotation="0" y="2"/>
  1885. <line x="4" y="2"/>
  1886. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="2" x-axis-rotation="0" y="4"/>
  1887. <line x="2" y="17"/>
  1888. <arc large-arc-flag="0" rx="10.981" ry="10.981" sweep-flag="0" x="7.824" x-axis-rotation="0" y="26.707"/>
  1889. <line x="14" y="30"/>
  1890. <close/>
  1891. </path>
  1892. <fillstroke/>
  1893. </foreground>
  1894. </shape>
  1895. <shape aspect="variable" h="32" name="group-objects" strokewidth="inherit" w="32">
  1896. <connections/>
  1897. <foreground>
  1898. <save/>
  1899. <rect h="32" w="32" x="0" y="0"/>
  1900. <stroke/>
  1901. <restore/>
  1902. <rect/>
  1903. <stroke/>
  1904. <path>
  1905. <move x="19" y="13"/>
  1906. <line x="19" y="9"/>
  1907. <line x="9" y="9"/>
  1908. <line x="9" y="19"/>
  1909. <line x="13" y="19"/>
  1910. <line x="13" y="23"/>
  1911. <line x="23" y="23"/>
  1912. <line x="23" y="13"/>
  1913. <close/>
  1914. <move x="11" y="11"/>
  1915. <line x="17" y="11"/>
  1916. <line x="17" y="17"/>
  1917. <line x="11" y="17"/>
  1918. <close/>
  1919. <move x="21" y="21"/>
  1920. <line x="15" y="21"/>
  1921. <line x="15" y="19"/>
  1922. <line x="19" y="19"/>
  1923. <line x="19" y="15"/>
  1924. <line x="21" y="15"/>
  1925. <close/>
  1926. </path>
  1927. <fillstroke/>
  1928. <path>
  1929. <move x="30" y="8"/>
  1930. <line x="30" y="2"/>
  1931. <line x="24" y="2"/>
  1932. <line x="24" y="4"/>
  1933. <line x="8" y="4"/>
  1934. <line x="8" y="2"/>
  1935. <line x="2" y="2"/>
  1936. <line x="2" y="8"/>
  1937. <line x="4" y="8"/>
  1938. <line x="4" y="24"/>
  1939. <line x="2" y="24"/>
  1940. <line x="2" y="30"/>
  1941. <line x="8" y="30"/>
  1942. <line x="8" y="28"/>
  1943. <line x="24" y="28"/>
  1944. <line x="24" y="30"/>
  1945. <line x="30" y="30"/>
  1946. <line x="30" y="24"/>
  1947. <line x="28" y="24"/>
  1948. <line x="28" y="8"/>
  1949. <close/>
  1950. <move x="26" y="4"/>
  1951. <line x="28" y="4"/>
  1952. <line x="28" y="6"/>
  1953. <line x="26" y="6"/>
  1954. <close/>
  1955. <move x="4" y="4"/>
  1956. <line x="6" y="4"/>
  1957. <line x="6" y="6"/>
  1958. <line x="4" y="6"/>
  1959. <close/>
  1960. <move x="6" y="28"/>
  1961. <line x="4" y="28"/>
  1962. <line x="4" y="26"/>
  1963. <line x="6" y="26"/>
  1964. <close/>
  1965. <move x="28" y="28"/>
  1966. <line x="26" y="28"/>
  1967. <line x="26" y="26"/>
  1968. <line x="28" y="26"/>
  1969. <close/>
  1970. <move x="26" y="24"/>
  1971. <line x="24" y="24"/>
  1972. <line x="24" y="26"/>
  1973. <line x="8" y="26"/>
  1974. <line x="8" y="24"/>
  1975. <line x="6" y="24"/>
  1976. <line x="6" y="8"/>
  1977. <line x="8" y="8"/>
  1978. <line x="8" y="6"/>
  1979. <line x="24" y="6"/>
  1980. <line x="24" y="8"/>
  1981. <line x="26" y="8"/>
  1982. <close/>
  1983. </path>
  1984. <fillstroke/>
  1985. </foreground>
  1986. </shape>
  1987. <shape aspect="variable" h="32" name="group" strokewidth="inherit" w="32">
  1988. <connections/>
  1989. <foreground>
  1990. <save/>
  1991. <rect h="32" w="32" x="0" y="0"/>
  1992. <stroke/>
  1993. <restore/>
  1994. <rect/>
  1995. <stroke/>
  1996. <path>
  1997. <move x="31" y="30"/>
  1998. <line x="29" y="30"/>
  1999. <line x="29" y="27"/>
  2000. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="26" x-axis-rotation="0" y="24"/>
  2001. <line x="22" y="24"/>
  2002. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="19" x-axis-rotation="0" y="27"/>
  2003. <line x="19" y="30"/>
  2004. <line x="17" y="30"/>
  2005. <line x="17" y="27"/>
  2006. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="22" x-axis-rotation="0" y="22"/>
  2007. <line x="26" y="22"/>
  2008. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="31" x-axis-rotation="0" y="27"/>
  2009. <close/>
  2010. <move x="24" y="12"/>
  2011. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="15"/>
  2012. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="12"/>
  2013. <move x="24" y="10"/>
  2014. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="29" x-axis-rotation="0" y="15"/>
  2015. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="24" x-axis-rotation="0" y="10"/>
  2016. <close/>
  2017. <move x="15" y="22"/>
  2018. <line x="13" y="22"/>
  2019. <line x="13" y="19"/>
  2020. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="10" x-axis-rotation="0" y="16"/>
  2021. <line x="6" y="16"/>
  2022. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="3" x-axis-rotation="0" y="19"/>
  2023. <line x="3" y="22"/>
  2024. <line x="1" y="22"/>
  2025. <line x="1" y="19"/>
  2026. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="6" x-axis-rotation="0" y="14"/>
  2027. <line x="10" y="14"/>
  2028. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="15" x-axis-rotation="0" y="19"/>
  2029. <close/>
  2030. <move x="8" y="4"/>
  2031. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="5" x-axis-rotation="0" y="7"/>
  2032. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="8" x-axis-rotation="0" y="4"/>
  2033. <move x="8" y="2"/>
  2034. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="13" x-axis-rotation="0" y="7"/>
  2035. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="8" x-axis-rotation="0" y="2"/>
  2036. <close/>
  2037. </path>
  2038. <fillstroke/>
  2039. </foreground>
  2040. </shape>
  2041. <shape aspect="variable" h="32" name="ibm--cloudant" strokewidth="inherit" w="32">
  2042. <connections/>
  2043. <foreground>
  2044. <save/>
  2045. <rect h="32" w="32" x="0" y="0"/>
  2046. <stroke/>
  2047. <restore/>
  2048. <rect/>
  2049. <stroke/>
  2050. <path>
  2051. <move x="16" y="26"/>
  2052. <line x="21" y="26"/>
  2053. <curve x1="24.86" x2="28" x3="28" y1="26" y2="22.86" y3="19"/>
  2054. <line x="28" y="17"/>
  2055. <line x="26" y="17"/>
  2056. <line x="26" y="19"/>
  2057. <curve x1="26" x2="23.76" x3="21" y1="21.76" y2="24" y3="24"/>
  2058. <line x="16" y="24"/>
  2059. <line x="16" y="26"/>
  2060. <close/>
  2061. <move x="20.25" y="14"/>
  2062. <arc large-arc-flag="0" rx="4.26" ry="4.26" sweep-flag="1" x="16" x-axis-rotation="0" y="9.75"/>
  2063. <arc large-arc-flag="0" rx="4.28" ry="4.28" sweep-flag="1" x="18.78" x-axis-rotation="0" y="5.76"/>
  2064. <curve x1="19.52" x2="21.62" x3="24" y1="3.55" y2="2" y3="2"/>
  2065. <curve x1="26.38" x2="28.48" x3="29.22" y1="2" y2="3.55" y3="5.76"/>
  2066. <curve x1="30.87" x2="32" x3="32" y1="6.37" y2="7.95" y3="9.75"/>
  2067. <curve x1="32" x2="30.14" x3="27.86" y1="12.04" y2="13.94" y3="14"/>
  2068. <line x="20.25" y="14"/>
  2069. <close/>
  2070. <move x="24" y="4"/>
  2071. <curve x1="22.36" x2="20.92" x3="20.58" y1="4" y2="5.17" y3="6.77"/>
  2072. <line x="20.44" y="7.41"/>
  2073. <line x="19.8" y="7.54"/>
  2074. <curve x1="18.76" x2="18" x3="18" y1="7.75" y2="8.68" y3="9.74"/>
  2075. <curve x1="18" x2="19.01" x3="20.25" y1="10.98" y2="12" y3="12"/>
  2076. <line x="27.83" y="12"/>
  2077. <curve x1="29.01" x2="30" x3="30" y1="11.97" y2="10.95" y3="9.74"/>
  2078. <curve x1="30" x2="29.24" x3="28.2" y1="8.68" y2="7.75" y3="7.54"/>
  2079. <line x="27.56" y="7.41"/>
  2080. <line x="27.42" y="6.77"/>
  2081. <arc large-arc-flag="0" rx="3.518" ry="3.518" sweep-flag="0" x="24" x-axis-rotation="0" y="4"/>
  2082. <close/>
  2083. <move x="4" y="14"/>
  2084. <line x="6" y="14"/>
  2085. <line x="6" y="12"/>
  2086. <curve x1="6" x2="8.24" x3="11" y1="9.24" y2="7" y3="7"/>
  2087. <line x="15" y="7"/>
  2088. <line x="15" y="5"/>
  2089. <line x="11" y="5"/>
  2090. <curve x1="7.14" x2="4" x3="4" y1="5" y2="8.14" y3="12"/>
  2091. <line x="4" y="14"/>
  2092. <close/>
  2093. <move x="10" y="17"/>
  2094. <line x="4" y="17"/>
  2095. <curve x1="2.9" x2="2" x3="2" y1="17" y2="17.9" y3="19"/>
  2096. <line x="2" y="29"/>
  2097. <curve x1="2" x2="2.9" x3="4" y1="30.1" y2="31" y3="31"/>
  2098. <line x="10" y="31"/>
  2099. <curve x1="11.1" x2="12" x3="12" y1="31" y2="30.1" y3="29"/>
  2100. <line x="12" y="19"/>
  2101. <curve x1="12" x2="11.1" x3="10" y1="17.9" y2="17" y3="17"/>
  2102. <close/>
  2103. <move x="10" y="19"/>
  2104. <line x="10" y="21"/>
  2105. <line x="4" y="21"/>
  2106. <line x="4" y="19"/>
  2107. <line x="10" y="19"/>
  2108. <close/>
  2109. <move x="10" y="23"/>
  2110. <line x="10" y="25"/>
  2111. <line x="4" y="25"/>
  2112. <line x="4" y="23"/>
  2113. <line x="10" y="23"/>
  2114. <close/>
  2115. <move x="4" y="29"/>
  2116. <line x="4" y="27"/>
  2117. <line x="10" y="27"/>
  2118. <line x="10" y="29"/>
  2119. <line x="4" y="29"/>
  2120. <close/>
  2121. </path>
  2122. <fillstroke/>
  2123. </foreground>
  2124. </shape>
  2125. <shape aspect="variable" h="32" name="ibm--db2-warehouse" strokewidth="inherit" w="32">
  2126. <connections/>
  2127. <foreground>
  2128. <save/>
  2129. <rect h="32" w="32" x="0" y="0"/>
  2130. <stroke/>
  2131. <restore/>
  2132. <rect/>
  2133. <stroke/>
  2134. <path>
  2135. <move x="22.504" y="17.636"/>
  2136. <line x="16.504" y="14.136"/>
  2137. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="15.496" x-axis-rotation="0" y="14.136"/>
  2138. <line x="9.496" y="17.636"/>
  2139. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="9" x-axis-rotation="0" y="18.5"/>
  2140. <line x="9" y="25.5"/>
  2141. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="9.496" x-axis-rotation="0" y="26.364"/>
  2142. <line x="15.496" y="29.864"/>
  2143. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="16.504" x-axis-rotation="0" y="29.864"/>
  2144. <line x="22.504" y="26.364"/>
  2145. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="23" x-axis-rotation="0" y="25.5"/>
  2146. <line x="23" y="18.5"/>
  2147. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="22.504" x-axis-rotation="0" y="17.636"/>
  2148. <close/>
  2149. <move x="21" y="23.834"/>
  2150. <line x="18.468" y="22.315"/>
  2151. <curve x1="18.481" x2="18.5" x3="18.5" y1="22.211" y2="22.108" y3="22"/>
  2152. <arc large-arc-flag="0" rx="2.502" ry="2.502" sweep-flag="0" x="17" x-axis-rotation="0" y="19.712"/>
  2153. <line x="17" y="16.742"/>
  2154. <line x="21" y="19.074"/>
  2155. <line x="21" y="23.834"/>
  2156. <close/>
  2157. <move x="15" y="16.741"/>
  2158. <line x="15" y="19.711"/>
  2159. <arc large-arc-flag="0" rx="2.502" ry="2.502" sweep-flag="0" x="13.5" x-axis-rotation="0" y="22"/>
  2160. <curve x1="13.5" x2="13.519" x3="13.532" y1="22.108" y2="22.21" y3="22.315"/>
  2161. <line x="11" y="23.834"/>
  2162. <line x="11" y="19.074"/>
  2163. <line x="15" y="16.741"/>
  2164. <close/>
  2165. <move x="16" y="27.842"/>
  2166. <line x="12.048" y="25.537"/>
  2167. <line x="14.555" y="24.033"/>
  2168. <curve x1="14.965" x2="15.461" x3="16" y1="24.324" y2="24.5" y3="24.5"/>
  2169. <curve x1="16.539" x2="17.036" x3="17.445" y1="24.5" y2="24.324" y3="24.033"/>
  2170. <line x="19.952" y="25.537"/>
  2171. <line x="16" y="27.842"/>
  2172. <close/>
  2173. </path>
  2174. <fillstroke/>
  2175. <path>
  2176. <move x="24.8" y="9.14"/>
  2177. <curve x1="23.93" x2="20.28" x3="16" y1="5.02" y2="2" y3="2"/>
  2178. <curve x1="11.72" x2="8.07" x3="7.2" y1="2" y2="5.02" y3="9.14"/>
  2179. <curve x1="4.23" x2="2" x3="2" y1="9.74" y2="12.4" y3="15.5"/>
  2180. <curve x1="2" x2="4.14" x3="7" y1="18.57" y2="21.13" y3="21.81"/>
  2181. <line x="7" y="19.7"/>
  2182. <curve x1="5.26" x2="4" x3="4" y1="19.08" y2="17.46" y3="15.5"/>
  2183. <curve x1="4" x2="5.82" x3="8.14" y1="13.17" y2="11.19" y3="11.01"/>
  2184. <line x="8.96" y="10.95"/>
  2185. <line x="9.06" y="10.14"/>
  2186. <curve x1="9.49" x2="12.47" x3="16" y1="6.64" y2="4" y3="4"/>
  2187. <curve x1="19.53" x2="22.51" x3="22.94" y1="4" y2="6.64" y3="10.14"/>
  2188. <line x="23.04" y="10.95"/>
  2189. <line x="23.86" y="11.01"/>
  2190. <curve x1="26.18" x2="28" x3="28" y1="11.2" y2="13.17" y3="15.5"/>
  2191. <curve x1="28" x2="26.74" x3="25" y1="17.45" y2="19.09" y3="19.71"/>
  2192. <line x="25" y="21.82"/>
  2193. <curve x1="27.86" x2="30" x3="30" y1="21.14" y2="18.56" y3="15.5"/>
  2194. <curve x1="30" x2="27.77" x3="24.8" y1="12.39" y2="9.74" y3="9.14"/>
  2195. <close/>
  2196. </path>
  2197. <fillstroke/>
  2198. </foreground>
  2199. </shape>
  2200. <shape aspect="variable" h="32" name="ibm--db2" strokewidth="inherit" w="32">
  2201. <connections/>
  2202. <foreground>
  2203. <save/>
  2204. <rect h="32" w="32" x="0" y="0"/>
  2205. <stroke/>
  2206. <restore/>
  2207. <rect/>
  2208. <stroke/>
  2209. <path>
  2210. <move x="16" y="13"/>
  2211. <curve x1="12.58" x2="10" x3="10" y1="13" y2="14.505" y3="16.5"/>
  2212. <line x="10" y="24.5"/>
  2213. <curve x1="10" x2="12.58" x3="16" y1="26.495" y2="28" y3="28"/>
  2214. <curve x1="19.42" x2="22" x3="22" y1="28" y2="26.495" y3="24.5"/>
  2215. <line x="22" y="16.5"/>
  2216. <curve x1="22" x2="19.42" x3="16" y1="14.505" y2="13" y3="13"/>
  2217. <close/>
  2218. <move x="16" y="15"/>
  2219. <curve x1="18.481" x2="20" x3="20" y1="15" y2="15.971" y3="16.5"/>
  2220. <curve x1="20" x2="18.481" x3="16" y1="17.029" y2="18" y3="18"/>
  2221. <curve x1="13.519" x2="12" x3="12" y1="18" y2="17.029" y3="16.5"/>
  2222. <curve x1="12" x2="13.519" x3="16" y1="15.971" y2="15" y3="15"/>
  2223. <close/>
  2224. <move x="16" y="26"/>
  2225. <curve x1="13.519" x2="12" x3="12" y1="26" y2="25.029" y3="24.5"/>
  2226. <line x="12" y="23.147"/>
  2227. <curve x1="13.047" x2="14.433" x3="16" y1="23.682" y2="24" y3="24"/>
  2228. <curve x1="17.567" x2="18.953" x3="20" y1="24" y2="23.682" y3="23.147"/>
  2229. <line x="20" y="24.5"/>
  2230. <curve x1="20" x2="18.481" x3="16" y1="25.029" y2="26" y3="26"/>
  2231. <close/>
  2232. <move x="16" y="22"/>
  2233. <curve x1="13.519" x2="12" x3="12" y1="22" y2="21.029" y3="20.5"/>
  2234. <line x="12" y="19.147"/>
  2235. <curve x1="13.047" x2="14.433" x3="16" y1="19.682" y2="20" y3="20"/>
  2236. <curve x1="17.567" x2="18.953" x3="20" y1="20" y2="19.682" y3="19.147"/>
  2237. <line x="20" y="20.5"/>
  2238. <curve x1="20" x2="18.481" x3="16" y1="21.029" y2="22" y3="22"/>
  2239. <close/>
  2240. </path>
  2241. <fillstroke/>
  2242. <path>
  2243. <move x="30" y="15.5"/>
  2244. <arc large-arc-flag="0" rx="6.49" ry="6.49" sweep-flag="1" x="24.99" x-axis-rotation="0" y="21.82"/>
  2245. <line x="24.99" y="19.75"/>
  2246. <arc large-arc-flag="0" rx="4.507" ry="4.507" sweep-flag="0" x="28" x-axis-rotation="0" y="15.5"/>
  2247. <curve x1="28" x2="26.17" x3="23.85" y1="13.17" y2="11.21" y3="11.02"/>
  2248. <line x="23.04" y="10.96"/>
  2249. <line x="22.94" y="10.15"/>
  2250. <curve x1="22.51" x2="19.52" x3="16" y1="6.65" y2="4" y3="4"/>
  2251. <curve x1="12.47" x2="9.48" x3="9.05" y1="4" y2="6.65" y3="10.15"/>
  2252. <line x="8.95" y="10.96"/>
  2253. <line x="8.14" y="11.02"/>
  2254. <curve x1="5.82" x2="4" x3="4" y1="11.21" y2="13.17" y3="15.5"/>
  2255. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="6.99" x-axis-rotation="0" y="19.74"/>
  2256. <line x="6.99" y="21.82"/>
  2257. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="2" x-axis-rotation="0" y="15.5"/>
  2258. <curve x1="2" x2="4.22" x3="7.2" y1="12.4" y2="9.75" y3="9.14"/>
  2259. <arc large-arc-flag="0" rx="8.999" ry="8.999" sweep-flag="1" x="16" x-axis-rotation="0" y="2"/>
  2260. <curve x1="20.27" x2="23.93" x3="24.8" y1="2" y2="5.02" y3="9.14"/>
  2261. <curve x1="27.77" x2="30" x3="30" y1="9.75" y2="12.4" y3="15.5"/>
  2262. <close/>
  2263. </path>
  2264. <fillstroke/>
  2265. </foreground>
  2266. </shape>
  2267. <shape aspect="variable" h="32" name="ibm--mq" strokewidth="inherit" w="32">
  2268. <connections/>
  2269. <foreground>
  2270. <save/>
  2271. <rect h="32" w="32" x="0" y="0"/>
  2272. <stroke/>
  2273. <restore/>
  2274. <rect/>
  2275. <stroke/>
  2276. <path>
  2277. <move x="22.5" y="28.4"/>
  2278. <line x="21.6" y="26.6"/>
  2279. <curve x1="25.6" x2="28.1" x3="28.1" y1="24.5" y2="20.4" y3="16"/>
  2280. <curve x1="28.1" x2="22.7" x3="16.1" y1="9.4" y2="4" y3="4"/>
  2281. <curve x1="14.8" x2="13.6" x3="12.4" y1="4" y2="4.2" y3="4.6"/>
  2282. <line x="11.8" y="2.7"/>
  2283. <curve x1="13.1" x2="14.5" x3="16" y1="2.2" y2="2" y3="2"/>
  2284. <curve x1="23.7" x2="30" x3="30" y1="2" y2="8.3" y3="16"/>
  2285. <curve x1="30" x2="27.1" x3="22.5" y1="21.2" y2="26" y3="28.4"/>
  2286. </path>
  2287. <fillstroke/>
  2288. <path>
  2289. <move x="20.5" y="23.8"/>
  2290. <line x="19.5" y="22.1"/>
  2291. <curve x1="21.7" x2="23" x3="23" y1="20.9" y2="18.5" y3="16"/>
  2292. <curve x1="23" x2="19.9" x3="16" y1="12.1" y2="9" y3="9"/>
  2293. <curve x1="15.4" x2="14.8" x3="14.2" y1="9" y2="9.1" y3="9.2"/>
  2294. <line x="13.7" y="7.3"/>
  2295. <curve x1="14.5" x2="15.2" x3="16" y1="7.1" y2="7" y3="7"/>
  2296. <curve x1="21" x2="25" x3="25" y1="7" y2="11" y3="16"/>
  2297. <curve x1="25" x2="23.3" x3="20.5" y1="19.2" y2="22.2" y3="23.8"/>
  2298. <move x="9.5" y="28.4"/>
  2299. <curve x1="4.9" x2="2" x3="2" y1="26" y2="21.2" y3="16"/>
  2300. <curve x1="2" x2="2.2" x3="2.7" y1="14.5" y2="13.1" y3="11.7"/>
  2301. <line x="4.6" y="12.3"/>
  2302. <curve x1="4.2" x2="4" x3="4" y1="13.5" y2="14.7" y3="16"/>
  2303. <curve x1="4" x2="6.5" x3="10.5" y1="20.5" y2="24.6" y3="26.6"/>
  2304. <close/>
  2305. </path>
  2306. <fillstroke/>
  2307. <path>
  2308. <move x="11.5" y="23.8"/>
  2309. <curve x1="8.7" x2="7" x3="7" y1="22.2" y2="19.2" y3="16"/>
  2310. <curve x1="7" x2="7.1" x3="7.3" y1="15.2" y2="14.5" y3="13.8"/>
  2311. <line x="9.2" y="14.3"/>
  2312. <curve x1="9.1" x2="9" x3="9" y1="14.8" y2="15.4" y3="16"/>
  2313. <curve x1="9" x2="10.3" x3="12.5" y1="18.5" y2="20.8" y3="22.1"/>
  2314. <close/>
  2315. </path>
  2316. <fillstroke/>
  2317. <path>
  2318. <move x="20" y="16"/>
  2319. <curve x1="20" x2="18.2" x3="16" y1="13.8" y2="12" y3="12"/>
  2320. <curve x1="15.3" x2="14.6" x3="14" y1="12" y2="12.2" y3="12.6"/>
  2321. <line x="8.9" y="7.5"/>
  2322. <curve x1="9" x2="9" x3="9" y1="7.3" y2="7.2" y3="7"/>
  2323. <curve x1="9" x2="8.1" x3="7" y1="5.9" y2="5" y3="5"/>
  2324. <curve x1="5.9" x2="5" x3="5" y1="5" y2="5.9" y3="7"/>
  2325. <curve x1="5" x2="5.9" x3="7" y1="8.1" y2="9" y3="9"/>
  2326. <curve x1="7.2" x2="7.3" x3="7.5" y1="9" y2="9" y3="8.9"/>
  2327. <line x="12.6" y="14"/>
  2328. <curve x1="12.2" x2="12" x3="12" y1="14.6" y2="15.3" y3="16"/>
  2329. <curve x1="12" x2="13.3" x3="15" y1="17.9" y2="19.4" y3="19.9"/>
  2330. <line x="15" y="27.3"/>
  2331. <curve x1="14.4" x2="14" x3="14" y1="27.6" y2="28.3" y3="29"/>
  2332. <curve x1="14" x2="14.9" x3="16" y1="30.1" y2="31" y3="31"/>
  2333. <curve x1="17.1" x2="18" x3="18" y1="31" y2="30.1" y3="29"/>
  2334. <curve x1="18" x2="17.6" x3="17" y1="28.3" y2="27.6" y3="27.3"/>
  2335. <line x="17" y="19.9"/>
  2336. <curve x1="18.7" x2="20" x3="20" y1="19.4" y2="17.9" y3="16"/>
  2337. <move x="16" y="18"/>
  2338. <curve x1="14.9" x2="14" x3="14" y1="18" y2="17.1" y3="16"/>
  2339. <curve x1="14" x2="14.9" x3="16" y1="14.9" y2="14" y3="14"/>
  2340. <curve x1="17.1" x2="18" x3="18" y1="14" y2="14.9" y3="16"/>
  2341. <curve x1="18" x2="17.1" x3="16" y1="17.1" y2="18" y3="18"/>
  2342. </path>
  2343. <fillstroke/>
  2344. </foreground>
  2345. </shape>
  2346. <shape aspect="variable" h="32" name="ibm--power-vs" strokewidth="inherit" w="32">
  2347. <connections/>
  2348. <foreground>
  2349. <save/>
  2350. <rect h="32" w="32" x="0" y="0"/>
  2351. <stroke/>
  2352. <restore/>
  2353. <rect/>
  2354. <stroke/>
  2355. <path>
  2356. <move x="16" y="25"/>
  2357. <curve x1="14" x2="12" x3="10.4" y1="25" y2="24.3" y3="23"/>
  2358. <line x="11.7" y="21.4"/>
  2359. <curve x1="13" x2="14.5" x3="16.1" y1="22.4" y2="22.9" y3="22.9"/>
  2360. <curve x1="20" x2="23.1" x3="23.1" y1="22.9" y2="19.8" y3="15.9"/>
  2361. <curve x1="23.1" x2="23.1" x3="23" y1="15.6" y2="15.2" y3="14.9"/>
  2362. <line x="25" y="14.6"/>
  2363. <line x="25" y="16"/>
  2364. <curve x1="25" x2="21" x3="16" y1="21" y2="25" y3="25"/>
  2365. <move x="7.1" y="17.3"/>
  2366. <curve x1="7" x2="7" x3="7" y1="16.9" y2="16.4" y3="16"/>
  2367. <curve x1="7" x2="11" x3="16" y1="11" y2="7" y3="7"/>
  2368. <curve x1="18" x2="20" x3="21.6" y1="7" y2="7.7" y3="9"/>
  2369. <line x="20.3" y="10.6"/>
  2370. <curve x1="19.1" x2="17.6" x3="16" y1="9.5" y2="9" y3="9"/>
  2371. <curve x1="12.1" x2="9" x3="9" y1="9" y2="12.1" y3="16"/>
  2372. <curve x1="9" x2="9" x3="9.1" y1="16.3" y2="16.7" y3="17"/>
  2373. <close/>
  2374. </path>
  2375. <fillstroke/>
  2376. <ellipse h="2" w="2" x="22" y="26"/>
  2377. <fillstroke/>
  2378. <ellipse h="2" w="2" x="8" y="19"/>
  2379. <fillstroke/>
  2380. <ellipse h="2" w="2" x="22" y="11"/>
  2381. <fillstroke/>
  2382. <ellipse h="4" w="4" x="14" y="14"/>
  2383. <fillstroke/>
  2384. <ellipse h="2" w="2" x="8" y="4"/>
  2385. <fillstroke/>
  2386. <path>
  2387. <move x="16" y="30"/>
  2388. <curve x1="8.3" x2="2" x3="2" y1="30" y2="23.7" y3="16"/>
  2389. <curve x1="2" x2="3.5" x3="6.1" y1="12.3" y2="8.7" y3="6.1"/>
  2390. <line x="7.5" y="7.5"/>
  2391. <curve x1="5.2" x2="4" x3="4" y1="9.8" y2="12.8" y3="16"/>
  2392. <curve x1="4" x2="9.4" x3="16" y1="22.6" y2="28" y3="28"/>
  2393. <curve x1="17.4" x2="18.8" x3="20.1" y1="28" y2="27.8" y3="27.3"/>
  2394. <line x="20.8" y="29.2"/>
  2395. <curve x1="19.3" x2="17.6" x3="16" y1="29.7" y2="30" y3="30"/>
  2396. <move x="25.9" y="25.9"/>
  2397. <line x="24.5" y="24.5"/>
  2398. <curve x1="26.8" x2="28" x3="28" y1="22.2" y2="19.2" y3="16"/>
  2399. <curve x1="28" x2="22.6" x3="16" y1="9.4" y2="4" y3="4"/>
  2400. <curve x1="14.6" x2="13.2" x3="11.9" y1="4" y2="4.2" y3="4.7"/>
  2401. <line x="11.2" y="2.8"/>
  2402. <curve x1="12.7" x2="14.4" x3="16" y1="2.3" y2="2" y3="2"/>
  2403. <curve x1="23.7" x2="30" x3="30" y1="2" y2="8.3" y3="16"/>
  2404. <curve x1="30" x2="28.5" x3="25.9" y1="19.7" y2="23.3" y3="25.9"/>
  2405. </path>
  2406. <fillstroke/>
  2407. </foreground>
  2408. </shape>
  2409. <shape aspect="variable" h="32" name="ibm--toolchain" strokewidth="inherit" w="32">
  2410. <connections/>
  2411. <foreground>
  2412. <save/>
  2413. <rect h="32" w="32" x="0" y="0"/>
  2414. <stroke/>
  2415. <restore/>
  2416. <rect/>
  2417. <stroke/>
  2418. <path>
  2419. <move x="25" y="21"/>
  2420. <curve x1="24.26" x2="23.576" x3="22.98" y1="21" y2="21.216" y3="21.567"/>
  2421. <line x="20.95" y="19.536"/>
  2422. <line x="19.535" y="20.95"/>
  2423. <line x="21.567" y="22.981"/>
  2424. <arc large-arc-flag="0" rx="3.954" ry="3.954" sweep-flag="0" x="21" x-axis-rotation="0" y="25"/>
  2425. <curve x1="21" x2="22.794" x3="25" y1="27.206" y2="29" y3="29"/>
  2426. <curve x1="25.356" x2="25.694" x3="26.023" y1="29" y2="28.939" y3="28.85"/>
  2427. <line x="23.586" y="26.414"/>
  2428. <arc large-arc-flag="0" rx="1.994" ry="1.994" sweep-flag="1" x="23" x-axis-rotation="0" y="25"/>
  2429. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="26.414" x-axis-rotation="0" y="23.586"/>
  2430. <line x="28.851" y="26.023"/>
  2431. <arc large-arc-flag="0" rx="3.95" ry="3.95" sweep-flag="0" x="29" x-axis-rotation="0" y="25"/>
  2432. <curve x1="29" x2="27.205" x3="25" y1="22.794" y2="21" y3="21"/>
  2433. <move x="20.95" y="12.464"/>
  2434. <line x="24.714" y="8.7"/>
  2435. <curve x1="25.105" x2="25.538" x3="26" y1="8.887" y2="9" y3="9"/>
  2436. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="23" x-axis-rotation="0" y="6"/>
  2437. <curve x1="23" x2="23.113" x3="23.3" y1="6.462" y2="6.895" y3="7.286"/>
  2438. <line x="19.536" y="11.05"/>
  2439. <close/>
  2440. <move x="26" y="5"/>
  2441. <curve x1="26.551" x2="27" x3="27" y1="5" y2="5.449" y3="6"/>
  2442. <curve x1="27" x2="26.551" x3="26" y1="6.551" y2="7" y3="7"/>
  2443. <curve x1="25.449" x2="25" x3="25" y1="7" y2="6.551" y3="6"/>
  2444. <curve x1="25" x2="25.449" x3="26" y1="5.449" y2="5" y3="5"/>
  2445. <move x="16" y="12"/>
  2446. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="12" x-axis-rotation="0" y="16"/>
  2447. <curve x1="12" x2="12.215" x3="12.566" y1="16.74" y2="17.425" y3="18.02"/>
  2448. <line x="7.286" y="23.3"/>
  2449. <arc large-arc-flag="0" rx="2.971" ry="2.971" sweep-flag="0" x="6" x-axis-rotation="0" y="23"/>
  2450. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="9" x-axis-rotation="0" y="26"/>
  2451. <curve x1="9" x2="8.887" x3="8.7" y1="25.538" y2="25.105" y3="24.714"/>
  2452. <line x="13.98" y="19.434"/>
  2453. <arc large-arc-flag="0" rx="3.96" ry="3.96" sweep-flag="0" x="16" x-axis-rotation="0" y="20"/>
  2454. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="16" x-axis-rotation="0" y="12"/>
  2455. <move x="6" y="27"/>
  2456. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="1" x="6" x-axis-rotation="0" y="25"/>
  2457. <arc large-arc-flag="0" rx="1.001" ry="1.001" sweep-flag="1" x="6" x-axis-rotation="0" y="27"/>
  2458. <move x="16" y="18"/>
  2459. <curve x1="14.897" x2="14" x3="14" y1="18" y2="17.103" y3="16"/>
  2460. <curve x1="14" x2="14.897" x3="16" y1="14.897" y2="14" y3="14"/>
  2461. <curve x1="17.103" x2="18" x3="18" y1="14" y2="14.897" y3="16"/>
  2462. <curve x1="18" x2="17.103" x3="16" y1="17.103" y2="18" y3="18"/>
  2463. <move x="7" y="11"/>
  2464. <curve x1="7.74" x2="8.424" x3="9.02" y1="11" y2="10.785" y3="10.433"/>
  2465. <line x="11.05" y="12.464"/>
  2466. <line x="12.464" y="11.05"/>
  2467. <line x="10.434" y="9.019"/>
  2468. <curve x1="10.783" x2="11" x3="11" y1="8.424" y2="7.739" y3="7"/>
  2469. <curve x1="11" x2="9.206" x3="7" y1="4.794" y2="3" y3="3"/>
  2470. <curve x1="6.644" x2="6.306" x3="5.977" y1="3" y2="3.062" y3="3.15"/>
  2471. <line x="8.414" y="5.586"/>
  2472. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="7" x-axis-rotation="0" y="9"/>
  2473. <arc large-arc-flag="0" rx="1.993" ry="1.993" sweep-flag="1" x="5.586" x-axis-rotation="0" y="8.414"/>
  2474. <line x="3.149" y="5.977"/>
  2475. <arc large-arc-flag="0" rx="3.95" ry="3.95" sweep-flag="0" x="3" x-axis-rotation="0" y="7"/>
  2476. <curve x1="3" x2="4.794" x3="7" y1="9.206" y2="11" y3="11"/>
  2477. </path>
  2478. <fillstroke/>
  2479. </foreground>
  2480. </shape>
  2481. <shape aspect="variable" h="32" name="ibm--vpn-for-vpc" strokewidth="inherit" w="32">
  2482. <connections/>
  2483. <foreground>
  2484. <save/>
  2485. <rect h="32" w="32" x="0" y="0"/>
  2486. <stroke/>
  2487. <restore/>
  2488. <rect/>
  2489. <stroke/>
  2490. <path>
  2491. <move x="29" y="23"/>
  2492. <line x="29" y="21"/>
  2493. <curve x1="29" x2="27.65" x3="26" y1="19.35" y2="18" y3="18"/>
  2494. <curve x1="24.35" x2="23" x3="23" y1="18" y2="19.35" y3="21"/>
  2495. <line x="23" y="23"/>
  2496. <curve x1="21.9" x2="21" x3="21" y1="23" y2="23.9" y3="25"/>
  2497. <line x="21" y="29"/>
  2498. <curve x1="21" x2="21.9" x3="23" y1="30.1" y2="31" y3="31"/>
  2499. <line x="29" y="31"/>
  2500. <curve x1="30.1" x2="31" x3="31" y1="31" y2="30.1" y3="29"/>
  2501. <line x="31" y="25"/>
  2502. <curve x1="31" x2="30.1" x3="29" y1="23.9" y2="23" y3="23"/>
  2503. <close/>
  2504. <move x="25" y="21"/>
  2505. <curve x1="25" x2="25.45" x3="26" y1="20.45" y2="20" y3="20"/>
  2506. <curve x1="26.55" x2="27" x3="27" y1="20" y2="20.45" y3="21"/>
  2507. <line x="27" y="23"/>
  2508. <line x="25" y="23"/>
  2509. <line x="25" y="21"/>
  2510. <close/>
  2511. <move x="29" y="29"/>
  2512. <line x="23" y="29"/>
  2513. <line x="23" y="25"/>
  2514. <line x="29" y="25"/>
  2515. <line x="29" y="29"/>
  2516. <close/>
  2517. <move x="7" y="22.14"/>
  2518. <line x="7" y="13"/>
  2519. <line x="5" y="13"/>
  2520. <line x="5" y="22.14"/>
  2521. <curve x1="3.28" x2="2" x3="2" y1="22.59" y2="24.14" y3="26"/>
  2522. <curve x1="2" x2="3.79" x3="6" y1="28.21" y2="30" y3="30"/>
  2523. <curve x1="7.86" x2="9.41" x3="9.86" y1="30" y2="28.72" y3="27"/>
  2524. <line x="18" y="27"/>
  2525. <line x="18" y="25"/>
  2526. <line x="9.86" y="25"/>
  2527. <arc large-arc-flag="0" rx="4.017" ry="4.017" sweep-flag="0" x="7" x-axis-rotation="0" y="22.14"/>
  2528. <close/>
  2529. <move x="6" y="28"/>
  2530. <curve x1="4.9" x2="4" x3="4" y1="28" y2="27.1" y3="26"/>
  2531. <curve x1="4" x2="4.9" x3="6" y1="24.9" y2="24" y3="24"/>
  2532. <curve x1="7.1" x2="8" x3="8" y1="24" y2="24.9" y3="26"/>
  2533. <curve x1="8" x2="7.1" x3="6" y1="27.1" y2="28" y3="28"/>
  2534. <close/>
  2535. <move x="30" y="6"/>
  2536. <curve x1="30" x2="28.21" x3="26" y1="3.79" y2="2" y3="2"/>
  2537. <curve x1="24.14" x2="22.59" x3="22.14" y1="2" y2="3.28" y3="5"/>
  2538. <line x="13" y="5"/>
  2539. <line x="13" y="7"/>
  2540. <line x="22.14" y="7"/>
  2541. <curve x1="22.51" x2="23.6" x3="25" y1="8.4" y2="9.49" y3="9.86"/>
  2542. <line x="25" y="15"/>
  2543. <line x="27" y="15"/>
  2544. <line x="27" y="9.86"/>
  2545. <curve x1="28.72" x2="30" x3="30" y1="9.41" y2="7.86" y3="6"/>
  2546. <close/>
  2547. <move x="26" y="8"/>
  2548. <curve x1="24.9" x2="24" x3="24" y1="8" y2="7.1" y3="6"/>
  2549. <curve x1="24" x2="24.9" x3="26" y1="4.9" y2="4" y3="4"/>
  2550. <curve x1="27.1" x2="28" x3="28" y1="4" y2="4.9" y3="6"/>
  2551. <curve x1="28" x2="27.1" x3="26" y1="7.1" y2="8" y3="8"/>
  2552. <close/>
  2553. </path>
  2554. <fillstroke/>
  2555. <path>
  2556. <move x="10" y="8.59"/>
  2557. <line x="10" y="2"/>
  2558. <line x="2" y="2"/>
  2559. <line x="2" y="10"/>
  2560. <line x="8.59" y="10"/>
  2561. <line x="19.586" y="21"/>
  2562. <line x="21" y="19.586"/>
  2563. <line x="10" y="8.59"/>
  2564. <close/>
  2565. <move x="8" y="8"/>
  2566. <line x="4" y="8"/>
  2567. <line x="4" y="4"/>
  2568. <line x="8" y="4"/>
  2569. <line x="8" y="8"/>
  2570. <close/>
  2571. </path>
  2572. <fillstroke/>
  2573. </foreground>
  2574. </shape>
  2575. <shape aspect="variable" h="32" name="ibm-cloud--app-id" strokewidth="inherit" w="32">
  2576. <connections/>
  2577. <foreground>
  2578. <save/>
  2579. <rect h="32" w="32" x="0" y="0"/>
  2580. <stroke/>
  2581. <restore/>
  2582. <rect/>
  2583. <stroke/>
  2584. <path>
  2585. <move x="20" y="18"/>
  2586. <line x="14" y="18"/>
  2587. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="11" x-axis-rotation="0" y="21"/>
  2588. <line x="11" y="23"/>
  2589. <line x="13" y="23"/>
  2590. <line x="13" y="21"/>
  2591. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="14" x-axis-rotation="0" y="20"/>
  2592. <line x="20" y="20"/>
  2593. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="21" x-axis-rotation="0" y="21"/>
  2594. <line x="21" y="23"/>
  2595. <line x="23" y="23"/>
  2596. <line x="23" y="21"/>
  2597. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="20" x-axis-rotation="0" y="18"/>
  2598. <move x="17" y="17"/>
  2599. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="17" x-axis-rotation="0" y="9"/>
  2600. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="17" x-axis-rotation="0" y="17"/>
  2601. <move x="17" y="11"/>
  2602. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="17" x-axis-rotation="0" y="15"/>
  2603. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="17" x-axis-rotation="0" y="11"/>
  2604. </path>
  2605. <fillstroke/>
  2606. <path>
  2607. <move x="17" y="30"/>
  2608. <curve x1="9.28" x2="3" x3="3" y1="30" y2="23.72" y3="16"/>
  2609. <line x="5" y="16"/>
  2610. <curve x1="5" x2="10.383" x3="17" y1="22.617" y2="28" y3="28"/>
  2611. <curve x1="22.226" x2="26.816" x3="28.421" y1="28" y2="24.662" y3="19.693"/>
  2612. <line x="30.325" y="20.307"/>
  2613. <arc large-arc-flag="0" rx="13.961" ry="13.961" sweep-flag="1" x="17" x-axis-rotation="0" y="30"/>
  2614. <move x="31" y="16"/>
  2615. <line x="29" y="16"/>
  2616. <curve x1="29" x2="23.617" x3="17" y1="9.383" y2="4" y3="4"/>
  2617. <line x="17" y="2"/>
  2618. <curve x1="24.72" x2="31" x3="31" y1="2" y2="8.28" y3="16"/>
  2619. <move x="6" y="14"/>
  2620. <line x="3.861" y="12.987"/>
  2621. <arc large-arc-flag="0" rx="5.022" ry="5.022" sweep-flag="1" x="1" x-axis-rotation="0" y="8.467"/>
  2622. <line x="1" y="2"/>
  2623. <line x="11" y="2"/>
  2624. <line x="11" y="8.468"/>
  2625. <arc large-arc-flag="0" rx="5.021" ry="5.021" sweep-flag="1" x="8.139" x-axis-rotation="0" y="12.988"/>
  2626. <close/>
  2627. <move x="3" y="4"/>
  2628. <line x="3" y="8.468"/>
  2629. <arc large-arc-flag="0" rx="3.01" ry="3.01" sweep-flag="0" x="4.717" x-axis-rotation="0" y="11.178"/>
  2630. <line x="6" y="11.787"/>
  2631. <line x="7.283" y="11.18"/>
  2632. <arc large-arc-flag="0" rx="3.012" ry="3.012" sweep-flag="0" x="9" x-axis-rotation="0" y="8.468"/>
  2633. <line x="9" y="4"/>
  2634. <close/>
  2635. </path>
  2636. <fillstroke/>
  2637. </foreground>
  2638. </shape>
  2639. <shape aspect="variable" h="32" name="ibm-cloud--bare-metal-server" strokewidth="inherit" w="32">
  2640. <connections/>
  2641. <foreground>
  2642. <save/>
  2643. <rect h="32" w="32" x="0" y="0"/>
  2644. <stroke/>
  2645. <restore/>
  2646. <rect/>
  2647. <stroke/>
  2648. <ellipse h="2" w="2" x="8" y="25"/>
  2649. <fillstroke/>
  2650. <path>
  2651. <move x="26" y="30"/>
  2652. <line x="6" y="30"/>
  2653. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="28"/>
  2654. <line x="4" y="24"/>
  2655. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="6" x-axis-rotation="0" y="22"/>
  2656. <line x="26" y="22"/>
  2657. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="24"/>
  2658. <line x="28" y="28"/>
  2659. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="26" x-axis-rotation="0" y="30"/>
  2660. <close/>
  2661. <move x="6" y="24"/>
  2662. <line x="6" y="28"/>
  2663. <line x="26" y="28"/>
  2664. <line x="26" y="24"/>
  2665. <line x="6" y="24"/>
  2666. <close/>
  2667. </path>
  2668. <fillstroke/>
  2669. <ellipse h="2" w="2" x="8" y="15"/>
  2670. <fillstroke/>
  2671. <path>
  2672. <move x="26" y="20"/>
  2673. <line x="6" y="20"/>
  2674. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="18"/>
  2675. <line x="4" y="14"/>
  2676. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="6" x-axis-rotation="0" y="12"/>
  2677. <line x="26" y="12"/>
  2678. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="14"/>
  2679. <line x="28" y="18"/>
  2680. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="26" x-axis-rotation="0" y="20"/>
  2681. <close/>
  2682. <move x="6" y="14"/>
  2683. <line x="6" y="18"/>
  2684. <line x="26" y="18"/>
  2685. <line x="26" y="14"/>
  2686. <line x="6" y="14"/>
  2687. <close/>
  2688. </path>
  2689. <fillstroke/>
  2690. <ellipse h="2" w="2" x="8" y="5"/>
  2691. <fillstroke/>
  2692. <path>
  2693. <move x="26" y="10"/>
  2694. <line x="6" y="10"/>
  2695. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="8"/>
  2696. <line x="4" y="4"/>
  2697. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="6" x-axis-rotation="0" y="2"/>
  2698. <line x="26" y="2"/>
  2699. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="4"/>
  2700. <line x="28" y="8"/>
  2701. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="26" x-axis-rotation="0" y="10"/>
  2702. <close/>
  2703. <move x="6" y="4"/>
  2704. <line x="6" y="8"/>
  2705. <line x="26" y="8"/>
  2706. <line x="26" y="4"/>
  2707. <line x="6" y="4"/>
  2708. <close/>
  2709. </path>
  2710. <fillstroke/>
  2711. </foreground>
  2712. </shape>
  2713. <shape aspect="variable" h="32" name="ibm-cloud--bare-metal-servers-vpc" strokewidth="inherit" w="32">
  2714. <connections/>
  2715. <foreground>
  2716. <save/>
  2717. <rect h="32" w="32" x="0" y="0"/>
  2718. <stroke/>
  2719. <restore/>
  2720. <rect/>
  2721. <stroke/>
  2722. <ellipse h="2" w="2" x="8" y="25"/>
  2723. <fillstroke/>
  2724. <path>
  2725. <move x="4" y="24"/>
  2726. <line x="4" y="28"/>
  2727. <curve x1="4" x2="4.9" x3="6" y1="29.1" y2="30" y3="30"/>
  2728. <line x="18" y="30"/>
  2729. <line x="18" y="28"/>
  2730. <line x="6" y="28"/>
  2731. <line x="6" y="24"/>
  2732. <line x="18" y="24"/>
  2733. <line x="18" y="22"/>
  2734. <line x="6" y="22"/>
  2735. <curve x1="4.9" x2="4" x3="4" y1="22" y2="22.9" y3="24"/>
  2736. <close/>
  2737. <move x="4" y="13"/>
  2738. <line x="4" y="18"/>
  2739. <curve x1="4" x2="4.9" x3="6" y1="19.1" y2="20" y3="20"/>
  2740. <line x="14" y="20"/>
  2741. <line x="14" y="18"/>
  2742. <line x="6" y="18"/>
  2743. <line x="6" y="13"/>
  2744. <line x="4" y="13"/>
  2745. <close/>
  2746. </path>
  2747. <fillstroke/>
  2748. <ellipse h="2" w="2" x="8" y="15"/>
  2749. <fillstroke/>
  2750. <path>
  2751. <move x="28" y="19"/>
  2752. <line x="28" y="14"/>
  2753. <curve x1="28" x2="27.1" x3="26" y1="12.9" y2="12" y3="12"/>
  2754. <line x="18" y="12"/>
  2755. <line x="18" y="14"/>
  2756. <line x="26" y="14"/>
  2757. <line x="26" y="19"/>
  2758. <line x="28" y="19"/>
  2759. <close/>
  2760. <move x="28" y="8"/>
  2761. <line x="28" y="4"/>
  2762. <curve x1="28" x2="27.1" x3="26" y1="2.9" y2="2" y3="2"/>
  2763. <line x="14" y="2"/>
  2764. <line x="14" y="4"/>
  2765. <line x="26" y="4"/>
  2766. <line x="26" y="8"/>
  2767. <line x="14" y="8"/>
  2768. <line x="14" y="10"/>
  2769. <line x="26" y="10"/>
  2770. <curve x1="27.1" x2="28" x3="28" y1="10" y2="9.1" y3="8"/>
  2771. <close/>
  2772. </path>
  2773. <fillstroke/>
  2774. <path>
  2775. <move x="23.41" y="22"/>
  2776. <line x="10" y="8.59"/>
  2777. <line x="10" y="2"/>
  2778. <line x="2" y="2"/>
  2779. <line x="2" y="10"/>
  2780. <line x="8.59" y="10"/>
  2781. <line x="22" y="23.41"/>
  2782. <line x="22" y="30"/>
  2783. <line x="30" y="30"/>
  2784. <line x="30" y="22"/>
  2785. <line x="23.41" y="22"/>
  2786. <close/>
  2787. <move x="8" y="8"/>
  2788. <line x="4" y="8"/>
  2789. <line x="4" y="4"/>
  2790. <line x="8" y="4"/>
  2791. <line x="8" y="8"/>
  2792. <close/>
  2793. <move x="28" y="28"/>
  2794. <line x="24" y="28"/>
  2795. <line x="24" y="24"/>
  2796. <line x="28" y="24"/>
  2797. <line x="28" y="28"/>
  2798. <close/>
  2799. </path>
  2800. <fillstroke/>
  2801. </foreground>
  2802. </shape>
  2803. <shape aspect="variable" h="32" name="ibm-cloud--continuous-delivery" strokewidth="inherit" w="32">
  2804. <connections/>
  2805. <foreground>
  2806. <save/>
  2807. <rect h="32" w="32" x="0" y="0"/>
  2808. <stroke/>
  2809. <restore/>
  2810. <rect/>
  2811. <stroke/>
  2812. <path>
  2813. <move x="23" y="1"/>
  2814. <line x="17" y="7"/>
  2815. <line x="18.415" y="8.402"/>
  2816. <line x="22" y="4.818"/>
  2817. <line x="22" y="21"/>
  2818. <line x="10" y="21"/>
  2819. <line x="10" y="10"/>
  2820. <line x="8" y="10"/>
  2821. <line x="8" y="21"/>
  2822. <curve x1="8" x2="8.897" x3="10" y1="22.103" y2="23" y3="23"/>
  2823. <line x="22" y="23"/>
  2824. <curve x1="23.103" x2="24" x3="24" y1="23" y2="22.103" y3="21"/>
  2825. <line x="24" y="4.815"/>
  2826. <line x="27.586" y="8.402"/>
  2827. <line x="29" y="7"/>
  2828. <line x="23" y="1"/>
  2829. <close/>
  2830. </path>
  2831. <fillstroke/>
  2832. <path>
  2833. <move x="18.5" y="19"/>
  2834. <line x="13.5" y="19"/>
  2835. <curve x1="12.673" x2="12" x3="12" y1="19" y2="18.327" y3="17.5"/>
  2836. <line x="12" y="12.5"/>
  2837. <curve x1="12" x2="12.673" x3="13.5" y1="11.673" y2="11" y3="11"/>
  2838. <line x="18.5" y="11"/>
  2839. <curve x1="19.327" x2="20" x3="20" y1="11" y2="11.673" y3="12.5"/>
  2840. <line x="20" y="17.5"/>
  2841. <curve x1="20" x2="19.327" x3="18.5" y1="18.327" y2="19" y3="19"/>
  2842. <close/>
  2843. <move x="14" y="17"/>
  2844. <line x="18" y="17"/>
  2845. <line x="18" y="13"/>
  2846. <line x="14" y="13"/>
  2847. <line x="14" y="17"/>
  2848. <close/>
  2849. <move x="16" y="31"/>
  2850. <line x="16" y="29"/>
  2851. <curve x1="23.168" x2="29" x3="29" y1="29" y2="23.168" y3="16"/>
  2852. <curve x1="29" x2="28.819" x3="28.462" y1="14.735" y2="13.486" y3="12.285"/>
  2853. <line x="30.379" y="11.715"/>
  2854. <curve x1="30.79" x2="31" x3="31" y1="13.1" y2="14.542" y3="16"/>
  2855. <curve x1="31" x2="24.271" x3="16" y1="24.271" y2="31" y3="31"/>
  2856. <close/>
  2857. <move x="1.621" y="20.285"/>
  2858. <arc large-arc-flag="0" rx="15.011" ry="15.011" sweep-flag="1" x="1" x-axis-rotation="0" y="16"/>
  2859. <curve x1="1" x2="7.729" x3="16" y1="7.729" y2="1" y3="1"/>
  2860. <line x="16" y="3"/>
  2861. <curve x1="8.832" x2="3" x3="3" y1="3" y2="8.832" y3="16"/>
  2862. <curve x1="3" x2="3.181" x3="3.538" y1="17.265" y2="18.514" y3="19.715"/>
  2863. <line x="1.621" y="20.285"/>
  2864. <close/>
  2865. </path>
  2866. <fillstroke/>
  2867. </foreground>
  2868. </shape>
  2869. <shape aspect="variable" h="32" name="ibm-cloud--dedicated-host" strokewidth="inherit" w="32">
  2870. <connections/>
  2871. <foreground>
  2872. <save/>
  2873. <rect h="32" w="32" x="0" y="0"/>
  2874. <stroke/>
  2875. <restore/>
  2876. <rect/>
  2877. <stroke/>
  2878. <ellipse h="2" w="2" x="8" y="5"/>
  2879. <fillstroke/>
  2880. <path>
  2881. <move x="26" y="2"/>
  2882. <line x="6" y="2"/>
  2883. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="4"/>
  2884. <line x="4" y="8"/>
  2885. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="10"/>
  2886. <line x="15" y="10"/>
  2887. <line x="15" y="14"/>
  2888. <line x="17" y="14"/>
  2889. <line x="17" y="10"/>
  2890. <line x="26" y="10"/>
  2891. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="8"/>
  2892. <line x="28" y="4"/>
  2893. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="2"/>
  2894. <move x="26" y="8"/>
  2895. <line x="6" y="8"/>
  2896. <line x="6" y="4"/>
  2897. <line x="26" y="4"/>
  2898. <close/>
  2899. <move x="17" y="28"/>
  2900. <line x="17" y="26"/>
  2901. <line x="15" y="26"/>
  2902. <line x="15" y="28"/>
  2903. <line x="4" y="28"/>
  2904. <line x="4" y="30"/>
  2905. <line x="28" y="30"/>
  2906. <line x="28" y="28"/>
  2907. <close/>
  2908. </path>
  2909. <fillstroke/>
  2910. <ellipse h="2" w="2" x="8" y="19"/>
  2911. <fillstroke/>
  2912. <path>
  2913. <move x="6" y="24"/>
  2914. <line x="26" y="24"/>
  2915. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="22"/>
  2916. <line x="28" y="18"/>
  2917. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="16"/>
  2918. <line x="6" y="16"/>
  2919. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="18"/>
  2920. <line x="4" y="22"/>
  2921. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="24"/>
  2922. <move x="6" y="18"/>
  2923. <line x="26" y="18"/>
  2924. <line x="26" y="22"/>
  2925. <line x="6" y="22"/>
  2926. <close/>
  2927. </path>
  2928. <fillstroke/>
  2929. </foreground>
  2930. </shape>
  2931. <shape aspect="variable" h="32" name="ibm-cloud--direct-link-2--connect" strokewidth="inherit" w="32">
  2932. <connections/>
  2933. <foreground>
  2934. <save/>
  2935. <rect h="32" w="32" x="0" y="0"/>
  2936. <stroke/>
  2937. <restore/>
  2938. <rect/>
  2939. <stroke/>
  2940. <path>
  2941. <move x="17.2" y="13"/>
  2942. <curve x1="17.6" x2="18.7" x3="20" y1="14.2" y2="15" y3="15"/>
  2943. <curve x1="21.7" x2="23" x3="23" y1="15" y2="13.7" y3="12"/>
  2944. <curve x1="23" x2="21.7" x3="20" y1="10.3" y2="9" y3="9"/>
  2945. <curve x1="18.7" x2="17.6" x3="17.2" y1="9" y2="9.8" y3="11"/>
  2946. <line x="5" y="11"/>
  2947. <curve x1="3.9" x2="3" x3="3" y1="11" y2="11.9" y3="13"/>
  2948. <line x="3" y="19"/>
  2949. <line x="0" y="19"/>
  2950. <line x="0" y="21"/>
  2951. <line x="3" y="21"/>
  2952. <line x="3" y="27"/>
  2953. <curve x1="3" x2="3.9" x3="5" y1="28.1" y2="29" y3="29"/>
  2954. <line x="19" y="29"/>
  2955. <curve x1="20.1" x2="21" x3="21" y1="29" y2="28.1" y3="27"/>
  2956. <line x="21" y="23"/>
  2957. <line x="19" y="23"/>
  2958. <line x="19" y="27"/>
  2959. <line x="5" y="27"/>
  2960. <line x="5" y="13"/>
  2961. <line x="17.2" y="13"/>
  2962. <close/>
  2963. <move x="20" y="11"/>
  2964. <curve x1="20.6" x2="21" x3="21" y1="11" y2="11.4" y3="12"/>
  2965. <curve x1="21" x2="20.6" x3="20" y1="12.6" y2="13" y3="13"/>
  2966. <curve x1="19.4" x2="19" x3="19" y1="13" y2="12.6" y3="12"/>
  2967. <curve x1="19" x2="19.4" x3="20" y1="11.4" y2="11" y3="11"/>
  2968. <close/>
  2969. </path>
  2970. <fillstroke/>
  2971. <path>
  2972. <move x="29" y="11"/>
  2973. <line x="29" y="5"/>
  2974. <curve x1="29" x2="28.1" x3="27" y1="3.9" y2="3" y3="3"/>
  2975. <line x="13" y="3"/>
  2976. <curve x1="11.9" x2="11" x3="11" y1="3" y2="3.9" y3="5"/>
  2977. <line x="11" y="9"/>
  2978. <line x="13" y="9"/>
  2979. <line x="13" y="5"/>
  2980. <line x="27" y="5"/>
  2981. <line x="27" y="19"/>
  2982. <line x="14.8" y="19"/>
  2983. <curve x1="14.4" x2="13.3" x3="12" y1="17.8" y2="17" y3="17"/>
  2984. <curve x1="10.3" x2="9" x3="9" y1="17" y2="18.3" y3="20"/>
  2985. <curve x1="9" x2="10.3" x3="12" y1="21.7" y2="23" y3="23"/>
  2986. <curve x1="13.3" x2="14.4" x3="14.8" y1="23" y2="22.2" y3="21"/>
  2987. <line x="27" y="21"/>
  2988. <curve x1="28.1" x2="29" x3="29" y1="21" y2="20.1" y3="19"/>
  2989. <line x="29" y="13"/>
  2990. <line x="32" y="13"/>
  2991. <line x="32" y="11"/>
  2992. <line x="29" y="11"/>
  2993. <close/>
  2994. <move x="12" y="21"/>
  2995. <curve x1="11.4" x2="11" x3="11" y1="21" y2="20.6" y3="20"/>
  2996. <curve x1="11" x2="11.4" x3="12" y1="19.4" y2="19" y3="19"/>
  2997. <curve x1="12.6" x2="13" x3="13" y1="19" y2="19.4" y3="20"/>
  2998. <curve x1="13" x2="12.6" x3="12" y1="20.6" y2="21" y3="21"/>
  2999. <close/>
  3000. </path>
  3001. <fillstroke/>
  3002. </foreground>
  3003. </shape>
  3004. <shape aspect="variable" h="32" name="ibm-cloud--direct-link-2--dedicated" strokewidth="inherit" w="32">
  3005. <connections/>
  3006. <foreground>
  3007. <save/>
  3008. <rect h="32" w="32" x="0" y="0"/>
  3009. <stroke/>
  3010. <restore/>
  3011. <rect/>
  3012. <stroke/>
  3013. <path>
  3014. <move x="32" y="11"/>
  3015. <line x="29" y="11"/>
  3016. <line x="29" y="5"/>
  3017. <curve x1="29" x2="28.1" x3="27" y1="3.9" y2="3" y3="3"/>
  3018. <line x="13" y="3"/>
  3019. <curve x1="11.9" x2="11" x3="11" y1="3" y2="3.9" y3="5"/>
  3020. <line x="11" y="9"/>
  3021. <line x="13" y="9"/>
  3022. <line x="13" y="5"/>
  3023. <line x="27" y="5"/>
  3024. <line x="27" y="19"/>
  3025. <line x="13" y="19"/>
  3026. <line x="13" y="15"/>
  3027. <line x="11" y="15"/>
  3028. <line x="11" y="19"/>
  3029. <curve x1="11" x2="11.9" x3="13" y1="20.1" y2="21" y3="21"/>
  3030. <line x="27" y="21"/>
  3031. <curve x1="28.1" x2="29" x3="29" y1="21" y2="20.1" y3="19"/>
  3032. <line x="29" y="13"/>
  3033. <line x="32" y="13"/>
  3034. <line x="32" y="11"/>
  3035. <close/>
  3036. </path>
  3037. <fillstroke/>
  3038. <path>
  3039. <move x="21" y="17"/>
  3040. <line x="21" y="13"/>
  3041. <curve x1="21" x2="20.1" x3="19" y1="11.9" y2="11" y3="11"/>
  3042. <line x="5" y="11"/>
  3043. <curve x1="3.9" x2="3" x3="3" y1="11" y2="11.9" y3="13"/>
  3044. <line x="3" y="19"/>
  3045. <line x="0" y="19"/>
  3046. <line x="0" y="21"/>
  3047. <line x="3" y="21"/>
  3048. <line x="3" y="27"/>
  3049. <curve x1="3" x2="3.9" x3="5" y1="28.1" y2="29" y3="29"/>
  3050. <line x="19" y="29"/>
  3051. <curve x1="20.1" x2="21" x3="21" y1="29" y2="28.1" y3="27"/>
  3052. <line x="21" y="23"/>
  3053. <line x="19" y="23"/>
  3054. <line x="19" y="27"/>
  3055. <line x="5" y="27"/>
  3056. <line x="5" y="13"/>
  3057. <line x="19" y="13"/>
  3058. <line x="19" y="17"/>
  3059. <line x="21" y="17"/>
  3060. <close/>
  3061. </path>
  3062. <fillstroke/>
  3063. </foreground>
  3064. </shape>
  3065. <shape aspect="variable" h="32" name="ibm-cloud--event-streams" strokewidth="inherit" w="32">
  3066. <connections/>
  3067. <foreground>
  3068. <save/>
  3069. <rect h="32" w="32" x="0" y="0"/>
  3070. <stroke/>
  3071. <restore/>
  3072. <rect/>
  3073. <stroke/>
  3074. <path>
  3075. <move x="23.5" y="9.2"/>
  3076. <line x="22.5" y="10.9"/>
  3077. <curve x1="24.7" x2="26" x3="26" y1="12.1" y2="14.5" y3="17"/>
  3078. <curve x1="26" x2="22.2" x3="20" y1="22.2" y2="25.7" y3="27.2"/>
  3079. <line x="20" y="24"/>
  3080. <line x="19" y="24"/>
  3081. <curve x1="16.5" x2="14.1" x3="12.9" y1="24" y2="22.6" y3="20.4"/>
  3082. <line x="11.2" y="21.4"/>
  3083. <curve x1="12.6" x2="15.2" x3="18.1" y1="24" y2="25.6" y3="26"/>
  3084. <line x="18.1" y="29"/>
  3085. <curve x1="18.1" x2="18.3" x3="18.6" y1="29.3" y2="29.7" y3="29.9"/>
  3086. <curve x1="18.6" x2="18.8" x3="19" y1="30" y2="30" y3="30"/>
  3087. <curve x1="19.2" x2="19.3" x3="19.4" y1="30" y2="30" y3="29.9"/>
  3088. <curve x1="19.8" x2="28" x3="28" y1="29.7" y2="25.5" y3="17"/>
  3089. <curve x1="28" x2="26.3" x3="23.5" y1="13.8" y2="10.8" y3="9.2"/>
  3090. <close/>
  3091. </path>
  3092. <fillstroke/>
  3093. <path>
  3094. <move x="20" y="13.1"/>
  3095. <line x="20" y="7.8"/>
  3096. <curve x1="21.2" x2="22" x3="22" y1="7.4" y2="6.3" y3="5"/>
  3097. <curve x1="22" x2="20.7" x3="19" y1="3.3" y2="2" y3="2"/>
  3098. <curve x1="17.3" x2="16" x3="16" y1="2" y2="3.3" y3="5"/>
  3099. <curve x1="16" x2="16.8" x3="18" y1="6.3" y2="7.4" y3="7.8"/>
  3100. <line x="18" y="13.1"/>
  3101. <curve x1="17.6" x2="17.3" x3="17" y1="13.2" y2="13.3" y3="13.5"/>
  3102. <line x="11.7" y="8.2"/>
  3103. <curve x1="11.9" x2="12" x3="12" y1="7.9" y2="7.5" y3="7"/>
  3104. <curve x1="12" x2="10.7" x3="9" y1="5.3" y2="4" y3="4"/>
  3105. <curve x1="7.3" x2="6" x3="6" y1="4" y2="5.3" y3="7"/>
  3106. <curve x1="6" x2="7.3" x3="9" y1="8.7" y2="10" y3="10"/>
  3107. <curve x1="9.5" x2="9.9" x3="10.3" y1="10" y2="9.9" y3="9.7"/>
  3108. <line x="15.6" y="15"/>
  3109. <curve x1="15.4" x2="15.3" x3="15.2" y1="15.3" y2="15.7" y3="16"/>
  3110. <line x="9.8" y="16"/>
  3111. <curve x1="9.4" x2="8.3" x3="7" y1="14.8" y2="14" y3="14"/>
  3112. <curve x1="5.3" x2="4" x3="4" y1="14" y2="15.3" y3="17"/>
  3113. <curve x1="4" x2="5.3" x3="7" y1="18.7" y2="20" y3="20"/>
  3114. <curve x1="8.3" x2="9.4" x3="9.8" y1="20" y2="19.2" y3="18"/>
  3115. <line x="15.1" y="18"/>
  3116. <curve x1="15.5" x2="17.1" x3="19" y1="19.7" y2="21" y3="21"/>
  3117. <curve x1="21.2" x2="23" x3="23" y1="21" y2="19.2" y3="17"/>
  3118. <curve x1="23" x2="21.7" x3="20" y1="15.1" y2="13.6" y3="13.1"/>
  3119. <close/>
  3120. <move x="19" y="4"/>
  3121. <curve x1="19.6" x2="20" x3="20" y1="4" y2="4.4" y3="5"/>
  3122. <curve x1="20" x2="19.6" x3="19" y1="5.6" y2="6" y3="6"/>
  3123. <curve x1="18.4" x2="18" x3="18" y1="6" y2="5.6" y3="5"/>
  3124. <curve x1="18" x2="18.4" x3="19" y1="4.4" y2="4" y3="4"/>
  3125. <close/>
  3126. <move x="9" y="8"/>
  3127. <curve x1="8.4" x2="8" x3="8" y1="8" y2="7.6" y3="7"/>
  3128. <curve x1="8" x2="8.4" x3="9" y1="6.4" y2="6" y3="6"/>
  3129. <curve x1="9.6" x2="10" x3="10" y1="6" y2="6.4" y3="7"/>
  3130. <curve x1="10" x2="9.6" x3="9" y1="7.6" y2="8" y3="8"/>
  3131. <close/>
  3132. <move x="7" y="18"/>
  3133. <curve x1="6.4" x2="6" x3="6" y1="18" y2="17.6" y3="17"/>
  3134. <curve x1="6" x2="6.4" x3="7" y1="16.4" y2="16" y3="16"/>
  3135. <curve x1="7.6" x2="8" x3="8" y1="16" y2="16.4" y3="17"/>
  3136. <curve x1="8" x2="7.6" x3="7" y1="17.6" y2="18" y3="18"/>
  3137. <close/>
  3138. <move x="19" y="19"/>
  3139. <curve x1="17.9" x2="17" x3="17" y1="19" y2="18.1" y3="17"/>
  3140. <curve x1="17" x2="17.9" x3="19" y1="15.9" y2="15" y3="15"/>
  3141. <curve x1="20.1" x2="21" x3="21" y1="15" y2="15.9" y3="17"/>
  3142. <curve x1="21" x2="20.1" x3="19" y1="18.1" y2="19" y3="19"/>
  3143. <close/>
  3144. </path>
  3145. <fillstroke/>
  3146. </foreground>
  3147. </shape>
  3148. <shape aspect="variable" h="32" name="ibm-cloud--internet-services" strokewidth="inherit" w="32">
  3149. <connections/>
  3150. <foreground>
  3151. <save/>
  3152. <rect h="32" w="32" x="0" y="0"/>
  3153. <stroke/>
  3154. <restore/>
  3155. <rect/>
  3156. <stroke/>
  3157. <path>
  3158. <move x="27" y="22"/>
  3159. <curve x1="26.3" x2="25.6" x3="25.1" y1="22" y2="22.3" y3="22.7"/>
  3160. <line x="19.9" y="19.6"/>
  3161. <curve x1="19.9" x2="20" x3="20" y1="19.4" y2="19.2" y3="19"/>
  3162. <curve x1="20" x2="20" x3="19.9" y1="18.8" y2="18.6" y3="18.4"/>
  3163. <line x="25.1" y="15.3"/>
  3164. <curve x1="25.6" x2="26.3" x3="27" y1="15.7" y2="16" y3="16"/>
  3165. <curve x1="28.7" x2="30" x3="30" y1="16" y2="14.7" y3="13"/>
  3166. <curve x1="30" x2="28.7" x3="27" y1="11.3" y2="10" y3="10"/>
  3167. <curve x1="25.3" x2="24" x3="24" y1="10" y2="11.3" y3="13"/>
  3168. <curve x1="24" x2="24" x3="24.1" y1="13.2" y2="13.4" y3="13.6"/>
  3169. <line x="18.9" y="16.7"/>
  3170. <curve x1="18.4" x2="17.7" x3="17" y1="16.3" y2="16" y3="16"/>
  3171. <curve x1="15.3" x2="14" x3="14" y1="16" y2="17.3" y3="19"/>
  3172. <curve x1="14" x2="15.3" x3="17" y1="20.7" y2="22" y3="22"/>
  3173. <curve x1="17.7" x2="18.4" x3="18.9" y1="22" y2="21.7" y3="21.3"/>
  3174. <line x="24.1" y="24.4"/>
  3175. <curve x1="24.1" x2="24" x3="24" y1="24.6" y2="24.8" y3="25"/>
  3176. <curve x1="24" x2="25.3" x3="27" y1="26.7" y2="28" y3="28"/>
  3177. <curve x1="28.7" x2="30" x3="30" y1="28" y2="26.7" y3="25"/>
  3178. <curve x1="30" x2="28.7" x3="27" y1="23.3" y2="22" y3="22"/>
  3179. <close/>
  3180. <move x="27" y="12"/>
  3181. <curve x1="27.6" x2="28" x3="28" y1="12" y2="12.4" y3="13"/>
  3182. <curve x1="28" x2="27.6" x3="27" y1="13.6" y2="14" y3="14"/>
  3183. <curve x1="26.4" x2="26" x3="26" y1="14" y2="13.6" y3="13"/>
  3184. <curve x1="26" x2="26.4" x3="27" y1="12.4" y2="12" y3="12"/>
  3185. <close/>
  3186. <move x="17" y="20"/>
  3187. <curve x1="16.4" x2="16" x3="16" y1="20" y2="19.6" y3="19"/>
  3188. <curve x1="16" x2="16.4" x3="17" y1="18.4" y2="18" y3="18"/>
  3189. <curve x1="17.6" x2="18" x3="18" y1="18" y2="18.4" y3="19"/>
  3190. <curve x1="18" x2="17.6" x3="17" y1="19.6" y2="20" y3="20"/>
  3191. <close/>
  3192. <move x="27" y="26"/>
  3193. <curve x1="26.4" x2="26" x3="26" y1="26" y2="25.6" y3="25"/>
  3194. <curve x1="26" x2="26.4" x3="27" y1="24.4" y2="24" y3="24"/>
  3195. <curve x1="27.6" x2="28" x3="28" y1="24" y2="24.4" y3="25"/>
  3196. <curve x1="28" x2="27.6" x3="27" y1="25.6" y2="26" y3="26"/>
  3197. <close/>
  3198. </path>
  3199. <fillstroke/>
  3200. <path>
  3201. <move x="19" y="25"/>
  3202. <line x="8.5" y="25"/>
  3203. <curve x1="5.5" x2="3" x3="3" y1="25" y2="22.5" y3="19.5"/>
  3204. <curve x1="3" x2="4.9" x3="7.5" y1="16.8" y2="14.6" y3="14.1"/>
  3205. <line x="8.8" y="13.9"/>
  3206. <line x="9.1" y="12.6"/>
  3207. <curve x1="9.9" x2="13.2" x3="17" y1="8.7" y2="6" y3="6"/>
  3208. <curve x1="17.5" x2="18" x3="18.5" y1="6" y2="6" y3="6.1"/>
  3209. <curve x1="20.1" x2="21.5" x3="22.7" y1="6.4" y2="7.2" y3="8.3"/>
  3210. <line x="24.1" y="6.9"/>
  3211. <curve x1="22.7" x2="20.9" x3="18.9" y1="5.5" y2="4.5" y3="4.2"/>
  3212. <curve x1="18.3" x2="17.6" x3="17" y1="4.1" y2="4" y3="4"/>
  3213. <curve x1="12.3" x2="8.1" x3="7.2" y1="4" y2="7.3" y3="12.1"/>
  3214. <curve x1="3.6" x2="1" x3="1" y1="12.8" y2="15.9" y3="19.5"/>
  3215. <curve x1="1" x2="4.3" x3="8.5" y1="23.6" y2="27" y3="27"/>
  3216. <line x="19" y="27"/>
  3217. <line x="19" y="25"/>
  3218. <close/>
  3219. </path>
  3220. <fillstroke/>
  3221. </foreground>
  3222. </shape>
  3223. <shape aspect="variable" h="32" name="ibm-cloud--key-protect" strokewidth="inherit" w="32">
  3224. <connections/>
  3225. <foreground>
  3226. <save/>
  3227. <rect h="32" w="32" x="0" y="0"/>
  3228. <stroke/>
  3229. <restore/>
  3230. <rect/>
  3231. <stroke/>
  3232. <path>
  3233. <move x="26" y="14.1"/>
  3234. <line x="26" y="2"/>
  3235. <line x="21" y="2"/>
  3236. <line x="21" y="4"/>
  3237. <line x="24" y="4"/>
  3238. <line x="24" y="6"/>
  3239. <line x="21" y="6"/>
  3240. <line x="21" y="8"/>
  3241. <line x="24" y="8"/>
  3242. <line x="24" y="14.1"/>
  3243. <curve x1="22.3" x2="21" x3="21" y1="14.5" y2="16.1" y3="18"/>
  3244. <curve x1="21" x2="22.8" x3="25" y1="20.2" y2="22" y3="22"/>
  3245. <curve x1="27.2" x2="29" x3="29" y1="22" y2="20.2" y3="18"/>
  3246. <curve x1="29" x2="27.7" x3="26" y1="16.1" y2="14.6" y3="14.1"/>
  3247. <close/>
  3248. <move x="25" y="20"/>
  3249. <curve x1="23.9" x2="23" x3="23" y1="20" y2="19.1" y3="18"/>
  3250. <curve x1="23" x2="23.9" x3="25" y1="16.9" y2="16" y3="16"/>
  3251. <curve x1="26.1" x2="27" x3="27" y1="16" y2="16.9" y3="18"/>
  3252. <curve x1="27" x2="26.1" x3="25" y1="19.1" y2="20" y3="20"/>
  3253. <close/>
  3254. </path>
  3255. <fillstroke/>
  3256. <path>
  3257. <move x="15" y="31"/>
  3258. <line x="9.5" y="27.8"/>
  3259. <curve x1="6.1" x2="4" x3="4" y1="25.8" y2="22.2" y3="18.3"/>
  3260. <line x="4" y="4"/>
  3261. <curve x1="4" x2="4.9" x3="6" y1="2.9" y2="2" y3="2"/>
  3262. <line x="18" y="2"/>
  3263. <line x="18" y="4"/>
  3264. <line x="6" y="4"/>
  3265. <line x="6" y="18.3"/>
  3266. <curve x1="6" x2="7.7" x3="10.5" y1="21.5" y2="24.5" y3="26.1"/>
  3267. <line x="15" y="28.8"/>
  3268. <line x="19.5" y="26.1"/>
  3269. <curve x1="20.6" x2="21.6" x3="22.3" y1="25.4" y2="24.6" y3="23.5"/>
  3270. <line x="23.9" y="24.6"/>
  3271. <curve x1="23" x2="21.8" x3="20.4" y1="25.9" y2="27" y3="27.8"/>
  3272. <line x="15" y="31"/>
  3273. <close/>
  3274. </path>
  3275. <fillstroke/>
  3276. </foreground>
  3277. </shape>
  3278. <shape aspect="variable" h="32" name="ibm-cloud--kubernetes-service" strokewidth="inherit" w="32">
  3279. <connections/>
  3280. <foreground>
  3281. <save/>
  3282. <rect h="32" w="32" x="0" y="0"/>
  3283. <stroke/>
  3284. <restore/>
  3285. <rect/>
  3286. <stroke/>
  3287. <path>
  3288. <move x="16" y="23"/>
  3289. <curve x1="15.8" x2="15.6" x3="15.5" y1="23" y2="23" y3="22.9"/>
  3290. <line x="10.5" y="19.9"/>
  3291. <curve x1="10.2" x2="10" x3="10" y1="19.7" y2="19.4" y3="19"/>
  3292. <line x="10" y="13"/>
  3293. <curve x1="10" x2="10.2" x3="10.5" y1="12.6" y2="12.3" y3="12.1"/>
  3294. <line x="15.5" y="9.1"/>
  3295. <curve x1="15.6" x2="15.8" x3="16" y1="9" y2="9" y3="9"/>
  3296. <curve x1="16.2" x2="16.4" x3="16.5" y1="9" y2="9" y3="9.1"/>
  3297. <line x="21.5" y="12.1"/>
  3298. <curve x1="21.8" x2="22" x3="22" y1="12.3" y2="12.6" y3="13"/>
  3299. <line x="22" y="19"/>
  3300. <curve x1="22" x2="21.8" x3="21.5" y1="19.4" y2="19.7" y3="19.9"/>
  3301. <line x="16.5" y="22.9"/>
  3302. <curve x1="16.4" x2="16.2" x3="16" y1="23" y2="23" y3="23"/>
  3303. <close/>
  3304. <move x="12" y="18.4"/>
  3305. <line x="16" y="20.8"/>
  3306. <line x="20" y="18.4"/>
  3307. <line x="20" y="13.5"/>
  3308. <line x="16" y="11.1"/>
  3309. <line x="12" y="13.5"/>
  3310. <line x="12" y="18.4"/>
  3311. <close/>
  3312. </path>
  3313. <fillstroke/>
  3314. <path>
  3315. <move x="16" y="31"/>
  3316. <curve x1="15.8" x2="15.7" x3="15.5" y1="31" y2="31" y3="30.9"/>
  3317. <line x="3.5" y="23.9"/>
  3318. <curve x1="3.2" x2="3" x3="3" y1="23.7" y2="23.4" y3="23"/>
  3319. <line x="3" y="9"/>
  3320. <curve x1="3" x2="3.2" x3="3.5" y1="8.6" y2="8.3" y3="8.1"/>
  3321. <line x="15.5" y="1.1"/>
  3322. <curve x1="15.7" x2="15.8" x3="16" y1="1" y2="1" y3="1"/>
  3323. <curve x1="16.2" x2="16.3" x3="16.5" y1="1" y2="1" y3="1.1"/>
  3324. <line x="28.5" y="8.1"/>
  3325. <line x="27.5" y="9.8"/>
  3326. <line x="16" y="3.2"/>
  3327. <line x="5" y="9.6"/>
  3328. <line x="5" y="22.5"/>
  3329. <line x="16" y="28.9"/>
  3330. <line x="27" y="22.5"/>
  3331. <line x="27" y="15"/>
  3332. <line x="29" y="15"/>
  3333. <line x="29" y="23"/>
  3334. <curve x1="29" x2="28.8" x3="28.5" y1="23.4" y2="23.7" y3="23.9"/>
  3335. <line x="16.5" y="30.9"/>
  3336. <curve x1="16.3" x2="16.2" x3="16" y1="31" y2="31" y3="31"/>
  3337. <close/>
  3338. </path>
  3339. <fillstroke/>
  3340. </foreground>
  3341. </shape>
  3342. <shape aspect="variable" h="32" name="ibm-cloud--logging" strokewidth="inherit" w="32">
  3343. <connections/>
  3344. <foreground>
  3345. <save/>
  3346. <rect h="32" w="32" x="0" y="0"/>
  3347. <stroke/>
  3348. <restore/>
  3349. <rect/>
  3350. <stroke/>
  3351. <path>
  3352. <move x="24.4" y="10"/>
  3353. <curve x1="24.7" x2="25.1" x3="25.7" y1="10.5" y2="10.9" y3="11.2"/>
  3354. <line x="27" y="11.8"/>
  3355. <line x="28.3" y="11.2"/>
  3356. <curve x1="29.3" x2="30" x3="30" y1="10.7" y2="9.6" y3="8.5"/>
  3357. <line x="30" y="4"/>
  3358. <line x="27" y="4"/>
  3359. <line x="27" y="2"/>
  3360. <line x="32" y="2"/>
  3361. <line x="32" y="8.5"/>
  3362. <curve x1="32" x2="30.9" x3="29.1" y1="10.4" y2="12.2" y3="13"/>
  3363. <line x="26.9" y="14"/>
  3364. <line x="24.8" y="13"/>
  3365. <curve x1="23.5" x2="22.6" x3="22.2" y1="12.4" y2="11.3" y3="10"/>
  3366. <close/>
  3367. </path>
  3368. <fillstroke/>
  3369. <path>
  3370. <move x="16" y="6"/>
  3371. <line x="24" y="6"/>
  3372. <line x="24" y="8"/>
  3373. <line x="16" y="8"/>
  3374. <close/>
  3375. <move x="16" y="2"/>
  3376. <line x="24" y="2"/>
  3377. <line x="24" y="4"/>
  3378. <line x="16" y="4"/>
  3379. <close/>
  3380. </path>
  3381. <fillstroke/>
  3382. <path>
  3383. <move x="28" y="16"/>
  3384. <line x="28" y="22"/>
  3385. <line x="4" y="22"/>
  3386. <line x="4" y="6"/>
  3387. <line x="14" y="6"/>
  3388. <line x="14" y="4"/>
  3389. <line x="4" y="4"/>
  3390. <curve x1="2.9" x2="2" x3="2" y1="4" y2="4.9" y3="6"/>
  3391. <line x="2" y="22"/>
  3392. <curve x1="2" x2="2.9" x3="4" y1="23.1" y2="24" y3="24"/>
  3393. <line x="12" y="24"/>
  3394. <line x="12" y="28"/>
  3395. <line x="8" y="28"/>
  3396. <line x="8" y="30"/>
  3397. <line x="24" y="30"/>
  3398. <line x="24" y="28"/>
  3399. <line x="20" y="28"/>
  3400. <line x="20" y="24"/>
  3401. <line x="28" y="24"/>
  3402. <curve x1="29.1" x2="30" x3="30" y1="24" y2="23.1" y3="22"/>
  3403. <line x="30" y="16"/>
  3404. <close/>
  3405. <move x="18" y="28"/>
  3406. <line x="14" y="28"/>
  3407. <line x="14" y="24"/>
  3408. <line x="18" y="24"/>
  3409. <close/>
  3410. </path>
  3411. <fillstroke/>
  3412. </foreground>
  3413. </shape>
  3414. <shape aspect="variable" h="32" name="ibm-cloud--secrets-manager" strokewidth="inherit" w="32">
  3415. <connections/>
  3416. <foreground>
  3417. <save/>
  3418. <rect h="32" w="32" x="0" y="0"/>
  3419. <stroke/>
  3420. <restore/>
  3421. <rect/>
  3422. <stroke/>
  3423. <path>
  3424. <move x="20" y="16"/>
  3425. <curve x1="20" x2="19.8" x3="19.4" y1="15.3" y2="14.6" y3="14"/>
  3426. <line x="22.7" y="10.7"/>
  3427. <line x="21.3" y="9.3"/>
  3428. <line x="18" y="12.6"/>
  3429. <curve x1="17.4" x2="16.7" x3="16" y1="12.2" y2="12" y3="12"/>
  3430. <curve x1="15.3" x2="14.6" x3="14" y1="12" y2="12.2" y3="12.6"/>
  3431. <line x="10.7" y="9.3"/>
  3432. <line x="9.3" y="10.7"/>
  3433. <line x="12.6" y="14"/>
  3434. <curve x1="12.2" x2="12" x3="12" y1="14.6" y2="15.3" y3="16"/>
  3435. <curve x1="12" x2="12.2" x3="12.6" y1="16.7" y2="17.4" y3="18"/>
  3436. <line x="9.3" y="21.3"/>
  3437. <line x="10.7" y="22.7"/>
  3438. <line x="14" y="19.4"/>
  3439. <curve x1="14.6" x2="15.3" x3="16" y1="19.8" y2="20" y3="20"/>
  3440. <curve x1="16.7" x2="17.4" x3="18" y1="20" y2="19.8" y3="19.4"/>
  3441. <line x="21.3" y="22.7"/>
  3442. <line x="22.7" y="21.3"/>
  3443. <line x="19.4" y="18"/>
  3444. <curve x1="19.8" x2="20" x3="20" y1="17.4" y2="16.7" y3="16"/>
  3445. <close/>
  3446. <move x="16" y="18"/>
  3447. <curve x1="14.9" x2="14" x3="14" y1="18" y2="17.1" y3="16"/>
  3448. <curve x1="14" x2="14.9" x3="16" y1="14.9" y2="14" y3="14"/>
  3449. <curve x1="17.1" x2="18" x3="18" y1="14" y2="14.9" y3="16"/>
  3450. <curve x1="18" x2="17.1" x3="16" y1="17.1" y2="18" y3="18"/>
  3451. <close/>
  3452. </path>
  3453. <fillstroke/>
  3454. <path>
  3455. <move x="26" y="17"/>
  3456. <line x="32" y="17"/>
  3457. <line x="32" y="15"/>
  3458. <line x="29.9" y="15"/>
  3459. <curve x1="29.4" x2="23.4" x3="16" y1="7.7" y2="2" y3="2"/>
  3460. <curve x1="8.3" x2="2" x3="2" y1="2" y2="8.3" y3="16"/>
  3461. <curve x1="2" x2="8.3" x3="16" y1="23.7" y2="30" y3="30"/>
  3462. <curve x1="21.2" x2="25.7" x3="28.1" y1="30" y2="27.2" y3="23"/>
  3463. <line x="26.4" y="22"/>
  3464. <curve x1="24.3" x2="20.5" x3="16" y1="25.6" y2="28" y3="28"/>
  3465. <curve x1="9.4" x2="4" x3="4" y1="28" y2="22.6" y3="16"/>
  3466. <curve x1="4" x2="9.4" x3="16" y1="9.4" y2="4" y3="4"/>
  3467. <curve x1="22.3" x2="27.4" x3="27.9" y1="4" y2="8.9" y3="15"/>
  3468. <line x="26" y="15"/>
  3469. <line x="26" y="17"/>
  3470. <close/>
  3471. </path>
  3472. <fillstroke/>
  3473. </foreground>
  3474. </shape>
  3475. <shape aspect="variable" h="32" name="ibm-cloud--security-compliance-center" strokewidth="inherit" w="32">
  3476. <connections/>
  3477. <foreground>
  3478. <save/>
  3479. <rect h="32" w="32" x="0" y="0"/>
  3480. <stroke/>
  3481. <restore/>
  3482. <rect/>
  3483. <stroke/>
  3484. <path>
  3485. <move x="30" y="18"/>
  3486. <line x="30" y="23.5"/>
  3487. <curve x1="30" x2="29.1" x3="27.7" y1="25" y2="26.3" y3="27"/>
  3488. <line x="26" y="27.8"/>
  3489. <line x="24.3" y="27"/>
  3490. <curve x1="22.9" x2="22" x3="22" y1="26.4" y2="25" y3="23.5"/>
  3491. <line x="22" y="18"/>
  3492. <close/>
  3493. <move x="32" y="16"/>
  3494. <line x="20" y="16"/>
  3495. <line x="20" y="23.5"/>
  3496. <curve x1="20" x2="21.3" x3="23.4" y1="25.7" y2="27.8" y3="28.8"/>
  3497. <line x="26" y="30"/>
  3498. <line x="28.6" y="28.8"/>
  3499. <curve x1="30.7" x2="32" x3="32" y1="27.8" y2="25.8" y3="23.5"/>
  3500. <close/>
  3501. </path>
  3502. <fillstroke/>
  3503. <path>
  3504. <move x="16" y="25"/>
  3505. <line x="7.5" y="25"/>
  3506. <curve x1="3.4" x2="0" x3="0" y1="25" y2="21.6" y3="17.5"/>
  3507. <curve x1="0" x2="2.7" x3="6.2" y1="13.8" y2="10.8" y3="10.1"/>
  3508. <curve x1="7.1" x2="11.2" x3="16" y1="5.4" y2="2" y3="2"/>
  3509. <curve x1="21.5" x2="26" x3="26" y1="2" y2="6.5" y3="12"/>
  3510. <line x="24" y="12"/>
  3511. <curve x1="24" x2="20.4" x3="16" y1="7.6" y2="4" y3="4"/>
  3512. <curve x1="11.9" x2="8.5" x3="8" y1="4" y2="7.1" y3="11.1"/>
  3513. <line x="8" y="12"/>
  3514. <line x="7.1" y="12"/>
  3515. <curve x1="4.2" x2="2" x3="2" y1="12.2" y2="14.6" y3="17.5"/>
  3516. <curve x1="2" x2="4.5" x3="7.5" y1="20.5" y2="23" y3="23"/>
  3517. <line x="16" y="23"/>
  3518. <close/>
  3519. </path>
  3520. <fillstroke/>
  3521. </foreground>
  3522. </shape>
  3523. <shape aspect="variable" h="32" name="ibm-cloud--subnets" strokewidth="inherit" w="32">
  3524. <connections/>
  3525. <foreground>
  3526. <save/>
  3527. <rect h="32" w="32" x="0" y="0"/>
  3528. <stroke/>
  3529. <restore/>
  3530. <rect/>
  3531. <stroke/>
  3532. <path>
  3533. <move x="26" y="22"/>
  3534. <arc large-arc-flag="0" rx="3.607" ry="3.607" sweep-flag="0" x="24" x-axis-rotation="0" y="22.6"/>
  3535. <line x="19.414" y="18"/>
  3536. <line x="18" y="19.414"/>
  3537. <line x="22.6" y="24"/>
  3538. <arc large-arc-flag="0" rx="4.176" ry="4.176" sweep-flag="0" x="22.2" x-axis-rotation="0" y="25"/>
  3539. <line x="9.858" y="25"/>
  3540. <arc large-arc-flag="0" rx="3.553" ry="3.553" sweep-flag="0" x="9.4" x-axis-rotation="0" y="24"/>
  3541. <line x="24" y="9.4"/>
  3542. <arc large-arc-flag="0" rx="3.607" ry="3.607" sweep-flag="0" x="26" x-axis-rotation="0" y="10"/>
  3543. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="22.143" x-axis-rotation="0" y="5"/>
  3544. <line x="9.9" y="5"/>
  3545. <arc large-arc-flag="0" rx="4.079" ry="4.079" sweep-flag="0" x="6" x-axis-rotation="0" y="2"/>
  3546. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="6" x-axis-rotation="0" y="10"/>
  3547. <arc large-arc-flag="0" rx="3.607" ry="3.607" sweep-flag="0" x="8" x-axis-rotation="0" y="9.4"/>
  3548. <line x="12.586" y="14"/>
  3549. <line x="14" y="12.586"/>
  3550. <line x="9.4" y="8"/>
  3551. <arc large-arc-flag="0" rx="4.175" ry="4.175" sweep-flag="0" x="9.8" x-axis-rotation="0" y="7"/>
  3552. <line x="22.142" y="7"/>
  3553. <arc large-arc-flag="0" rx="3.555" ry="3.555" sweep-flag="0" x="22.6" x-axis-rotation="0" y="8"/>
  3554. <line x="8" y="22.6"/>
  3555. <arc large-arc-flag="0" rx="3.607" ry="3.607" sweep-flag="0" x="6" x-axis-rotation="0" y="22"/>
  3556. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="9.857" x-axis-rotation="0" y="27"/>
  3557. <line x="22.1" y="27"/>
  3558. <arc large-arc-flag="1" rx="4.012" ry="4.012" sweep-flag="0" x="26" x-axis-rotation="0" y="22"/>
  3559. <close/>
  3560. <move x="26" y="4"/>
  3561. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="24" x-axis-rotation="0" y="6"/>
  3562. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="26" x-axis-rotation="0" y="4"/>
  3563. <close/>
  3564. <move x="6" y="8"/>
  3565. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="8" x-axis-rotation="0" y="6"/>
  3566. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="6" x-axis-rotation="0" y="8"/>
  3567. <close/>
  3568. <move x="6" y="28"/>
  3569. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="8" x-axis-rotation="0" y="26"/>
  3570. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="6" x-axis-rotation="0" y="28"/>
  3571. <close/>
  3572. <move x="26" y="28"/>
  3573. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="28" x-axis-rotation="0" y="26"/>
  3574. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="26" x-axis-rotation="0" y="28"/>
  3575. <close/>
  3576. </path>
  3577. <fillstroke/>
  3578. </foreground>
  3579. </shape>
  3580. <shape aspect="variable" h="32" name="ibm-cloud--transit-gateway" strokewidth="inherit" w="32">
  3581. <connections/>
  3582. <foreground>
  3583. <save/>
  3584. <rect h="32" w="32" x="0" y="0"/>
  3585. <stroke/>
  3586. <restore/>
  3587. <rect/>
  3588. <stroke/>
  3589. <path>
  3590. <move x="12.5" y="7.5"/>
  3591. <line x="11.1" y="6.1"/>
  3592. <line x="14.6" y="2.6"/>
  3593. <curve x1="15.4" x2="16.7" x3="17.4" y1="1.8" y2="1.8" y3="2.6"/>
  3594. <line x="20.9" y="6.1"/>
  3595. <line x="19.5" y="7.5"/>
  3596. <line x="16" y="4"/>
  3597. <line x="12.5" y="7.5"/>
  3598. <close/>
  3599. </path>
  3600. <fillstroke/>
  3601. <path>
  3602. <move x="19.5" y="24.5"/>
  3603. <line x="20.9" y="25.9"/>
  3604. <line x="17.4" y="29.4"/>
  3605. <curve x1="16.6" x2="15.3" x3="14.6" y1="30.2" y2="30.2" y3="29.4"/>
  3606. <line x="11.1" y="25.9"/>
  3607. <line x="12.5" y="24.5"/>
  3608. <line x="16" y="28"/>
  3609. <line x="19.5" y="24.5"/>
  3610. <close/>
  3611. </path>
  3612. <fillstroke/>
  3613. <path>
  3614. <move x="24.5" y="12.5"/>
  3615. <line x="25.9" y="11.1"/>
  3616. <line x="29.4" y="14.6"/>
  3617. <curve x1="30.2" x2="30.2" x3="29.4" y1="15.4" y2="16.7" y3="17.4"/>
  3618. <line x="25.9" y="20.9"/>
  3619. <line x="24.5" y="19.5"/>
  3620. <line x="28" y="16"/>
  3621. <line x="24.5" y="12.5"/>
  3622. <close/>
  3623. </path>
  3624. <fillstroke/>
  3625. <path>
  3626. <move x="7.5" y="19.5"/>
  3627. <line x="6.1" y="20.9"/>
  3628. <line x="2.6" y="17.4"/>
  3629. <curve x1="1.8" x2="1.8" x3="2.6" y1="16.6" y2="15.3" y3="14.6"/>
  3630. <line x="6.1" y="11.1"/>
  3631. <line x="7.5" y="12.5"/>
  3632. <line x="4" y="16"/>
  3633. <line x="7.5" y="19.5"/>
  3634. <close/>
  3635. </path>
  3636. <fillstroke/>
  3637. <path>
  3638. <move x="26" y="24"/>
  3639. <curve x1="25.8" x2="25.7" x3="25.5" y1="24" y2="24" y3="24.1"/>
  3640. <line x="19.4" y="18"/>
  3641. <curve x1="20.2" x2="20.2" x3="19.4" y1="16.8" y2="15.2" y3="14"/>
  3642. <line x="25.5" y="7.9"/>
  3643. <curve x1="25.7" x2="25.8" x3="26" y1="8" y2="8" y3="8"/>
  3644. <curve x1="27.1" x2="28" x3="28" y1="8" y2="7.1" y3="6"/>
  3645. <curve x1="28" x2="27.1" x3="26" y1="4.9" y2="4" y3="4"/>
  3646. <curve x1="24.9" x2="24" x3="24" y1="4" y2="4.9" y3="6"/>
  3647. <curve x1="24" x2="24" x3="24.1" y1="6.2" y2="6.3" y3="6.5"/>
  3648. <line x="18" y="12.6"/>
  3649. <curve x1="16.8" x2="15.2" x3="14" y1="11.8" y2="11.8" y3="12.6"/>
  3650. <line x="7.9" y="6.5"/>
  3651. <curve x1="8" x2="8" x3="8" y1="6.3" y2="6.2" y3="6"/>
  3652. <curve x1="8" x2="7.1" x3="6" y1="4.9" y2="4" y3="4"/>
  3653. <curve x1="4.9" x2="4" x3="4" y1="4" y2="4.9" y3="6"/>
  3654. <curve x1="4" x2="4.9" x3="6" y1="7.1" y2="8" y3="8"/>
  3655. <curve x1="6.2" x2="6.3" x3="6.5" y1="8" y2="8" y3="7.9"/>
  3656. <line x="12.6" y="14"/>
  3657. <curve x1="11.8" x2="11.8" x3="12.6" y1="15.2" y2="16.8" y3="18"/>
  3658. <line x="6.5" y="24.1"/>
  3659. <curve x1="6.3" x2="6.2" x3="6" y1="24" y2="24" y3="24"/>
  3660. <curve x1="4.9" x2="4" x3="4" y1="24" y2="24.9" y3="26"/>
  3661. <curve x1="4" x2="4.9" x3="6" y1="27.1" y2="28" y3="28"/>
  3662. <curve x1="7.1" x2="8" x3="8" y1="28" y2="27.1" y3="26"/>
  3663. <curve x1="8" x2="8" x3="7.9" y1="25.8" y2="25.7" y3="25.5"/>
  3664. <line x="14" y="19.4"/>
  3665. <curve x1="15.2" x2="16.8" x3="18" y1="20.2" y2="20.2" y3="19.4"/>
  3666. <line x="24.1" y="25.5"/>
  3667. <curve x1="24.1" x2="24" x3="24" y1="25.7" y2="25.8" y3="26"/>
  3668. <curve x1="24" x2="24.9" x3="26" y1="27.1" y2="28" y3="28"/>
  3669. <curve x1="27.1" x2="28" x3="28" y1="28" y2="27.1" y3="26"/>
  3670. <curve x1="28" x2="27.1" x3="26" y1="24.9" y2="24" y3="24"/>
  3671. <close/>
  3672. <move x="16" y="18"/>
  3673. <curve x1="14.9" x2="14" x3="14" y1="18" y2="17.1" y3="16"/>
  3674. <curve x1="14" x2="14.9" x3="16" y1="14.9" y2="14" y3="14"/>
  3675. <curve x1="17.1" x2="18" x3="18" y1="14" y2="14.9" y3="16"/>
  3676. <curve x1="18" x2="17.1" x3="16" y1="17.1" y2="18" y3="18"/>
  3677. <close/>
  3678. </path>
  3679. <fillstroke/>
  3680. </foreground>
  3681. </shape>
  3682. <shape aspect="variable" h="32" name="ibm-cloud--virtual-server-classic" strokewidth="inherit" w="32">
  3683. <connections/>
  3684. <foreground>
  3685. <save/>
  3686. <rect h="32" w="32" x="0" y="0"/>
  3687. <stroke/>
  3688. <restore/>
  3689. <rect/>
  3690. <stroke/>
  3691. <ellipse h="2" w="2" x="8" y="25"/>
  3692. <fillstroke/>
  3693. <path>
  3694. <move x="26" y="22"/>
  3695. <line x="21" y="22"/>
  3696. <line x="21" y="24"/>
  3697. <line x="26" y="24"/>
  3698. <line x="26" y="28"/>
  3699. <line x="6" y="28"/>
  3700. <line x="6" y="24"/>
  3701. <line x="15" y="24"/>
  3702. <curve x1="16.1" x2="17" x3="17" y1="24" y2="23.1" y3="22"/>
  3703. <line x="17" y="12.83"/>
  3704. <line x="19.59" y="15.42"/>
  3705. <line x="21" y="14"/>
  3706. <line x="16" y="9"/>
  3707. <line x="11" y="14"/>
  3708. <line x="12.41" y="15.41"/>
  3709. <line x="15" y="12.83"/>
  3710. <line x="15" y="22"/>
  3711. <line x="6" y="22"/>
  3712. <curve x1="4.9" x2="4" x3="4" y1="22" y2="22.9" y3="24"/>
  3713. <line x="4" y="28"/>
  3714. <curve x1="4" x2="4.9" x3="6" y1="29.1" y2="30" y3="30"/>
  3715. <line x="26" y="30"/>
  3716. <curve x1="27.1" x2="28" x3="28" y1="30" y2="29.1" y3="28"/>
  3717. <line x="28" y="24"/>
  3718. <curve x1="28" x2="27.1" x3="26" y1="22.9" y2="22" y3="22"/>
  3719. <close/>
  3720. </path>
  3721. <fillstroke/>
  3722. <path>
  3723. <move x="23.75" y="8.05"/>
  3724. <curve x1="22.87" x2="19.67" x3="16" y1="4.55" y2="2" y3="2"/>
  3725. <curve x1="12.33" x2="9.13" x3="8.25" y1="2" y2="4.55" y3="8.05"/>
  3726. <curve x1="5.29" x2="3" x3="3" y1="8.42" y2="10.95" y3="14"/>
  3727. <curve x1="3" x2="5.69" x3="9" y1="17.31" y2="20" y3="20"/>
  3728. <line x="11" y="20"/>
  3729. <line x="11" y="18"/>
  3730. <line x="9" y="18"/>
  3731. <curve x1="6.79" x2="5" x3="5" y1="18" y2="16.21" y3="14"/>
  3732. <curve x1="5" x2="6.77" x3="8.95" y1="11.81" y2="10.03" y3="10"/>
  3733. <line x="9.94" y="10.02"/>
  3734. <line x="10.06" y="9.14"/>
  3735. <curve x1="10.49" x2="13.04" x3="16" y1="6.21" y2="4" y3="4"/>
  3736. <curve x1="18.96" x2="21.51" x3="21.93" y1="4" y2="6.21" y3="9.15"/>
  3737. <line x="22.05" y="10.03"/>
  3738. <line x="22.93" y="10.01"/>
  3739. <line x="23.06" y="10"/>
  3740. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="27" x-axis-rotation="0" y="14"/>
  3741. <curve x1="27" x2="25.21" x3="23" y1="16.21" y2="18" y3="18"/>
  3742. <line x="21" y="18"/>
  3743. <line x="21" y="20"/>
  3744. <line x="23" y="20"/>
  3745. <curve x1="26.31" x2="29" x3="29" y1="20" y2="17.31" y3="14"/>
  3746. <curve x1="29" x2="26.71" x3="23.75" y1="10.95" y2="8.42" y3="8.05"/>
  3747. <close/>
  3748. </path>
  3749. <fillstroke/>
  3750. </foreground>
  3751. </shape>
  3752. <shape aspect="variable" h="32" name="ibm-cloud--virtual-server-vpc" strokewidth="inherit" w="32">
  3753. <connections/>
  3754. <foreground>
  3755. <save/>
  3756. <rect h="32" w="32" x="0" y="0"/>
  3757. <stroke/>
  3758. <restore/>
  3759. <rect/>
  3760. <stroke/>
  3761. <ellipse h="2" w="2" x="7" y="25"/>
  3762. <fillstroke/>
  3763. <path>
  3764. <move x="5" y="30"/>
  3765. <line x="27" y="30"/>
  3766. <curve x1="28.1" x2="29" x3="29" y1="30" y2="29.1" y3="28"/>
  3767. <line x="29" y="24"/>
  3768. <curve x1="29" x2="28.1" x3="27" y1="22.9" y2="22" y3="22"/>
  3769. <line x="5" y="22"/>
  3770. <curve x1="3.9" x2="3" x3="3" y1="22" y2="22.9" y3="24"/>
  3771. <line x="3" y="28"/>
  3772. <curve x1="3" x2="3.9" x3="5" y1="29.1" y2="30" y3="30"/>
  3773. <close/>
  3774. <move x="5" y="24"/>
  3775. <line x="27" y="24"/>
  3776. <line x="27" y="28"/>
  3777. <line x="5" y="28"/>
  3778. <line x="5" y="24"/>
  3779. <close/>
  3780. <move x="23" y="20"/>
  3781. <line x="9" y="20"/>
  3782. <curve x1="5.69" x2="3" x3="3" y1="20" y2="17.31" y3="14"/>
  3783. <curve x1="3" x2="5.29" x3="8.25" y1="10.95" y2="8.42" y3="8.05"/>
  3784. <curve x1="9.13" x2="12.33" x3="16" y1="4.55" y2="2" y3="2"/>
  3785. <curve x1="19.67" x2="22.87" x3="23.75" y1="2" y2="4.55" y3="8.05"/>
  3786. <curve x1="26.71" x2="29" x3="29" y1="8.42" y2="10.95" y3="14"/>
  3787. <curve x1="29" x2="26.31" x3="23" y1="17.31" y2="20" y3="20"/>
  3788. <close/>
  3789. <move x="8.95" y="10"/>
  3790. <arc large-arc-flag="0" rx="4.008" ry="4.008" sweep-flag="0" x="5" x-axis-rotation="0" y="14"/>
  3791. <curve x1="5" x2="6.79" x3="9" y1="16.21" y2="18" y3="18"/>
  3792. <line x="23" y="18"/>
  3793. <curve x1="25.21" x2="27" x3="27" y1="18" y2="16.21" y3="14"/>
  3794. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="23.06" x-axis-rotation="0" y="10"/>
  3795. <line x="22.94" y="10.01"/>
  3796. <line x="22.06" y="10.03"/>
  3797. <line x="21.94" y="9.15"/>
  3798. <curve x1="21.51" x2="18.96" x3="16" y1="6.21" y2="4" y3="4"/>
  3799. <curve x1="13.04" x2="10.49" x3="10.07" y1="4" y2="6.21" y3="9.15"/>
  3800. <line x="9.95" y="10.03"/>
  3801. <line x="8.95" y="10"/>
  3802. <close/>
  3803. </path>
  3804. <fillstroke/>
  3805. </foreground>
  3806. </shape>
  3807. <shape aspect="variable" h="32" name="ibm-cloud--vpc-endpoints" strokewidth="inherit" w="32">
  3808. <connections/>
  3809. <foreground>
  3810. <save/>
  3811. <rect h="32" w="32" x="0" y="0"/>
  3812. <stroke/>
  3813. <restore/>
  3814. <rect/>
  3815. <stroke/>
  3816. <path>
  3817. <move x="20" y="27"/>
  3818. <line x="7" y="27"/>
  3819. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="5" x-axis-rotation="0" y="25"/>
  3820. <line x="5" y="12"/>
  3821. <line x="7" y="12"/>
  3822. <line x="7" y="25"/>
  3823. <line x="20" y="25"/>
  3824. <close/>
  3825. </path>
  3826. <fillstroke/>
  3827. <path>
  3828. <move x="23.4" y="22"/>
  3829. <line x="19.4" y="18"/>
  3830. <arc large-arc-flag="0" rx="3.606" ry="3.606" sweep-flag="0" x="20" x-axis-rotation="0" y="16"/>
  3831. <arc large-arc-flag="0" rx="4.012" ry="4.012" sweep-flag="0" x="16" x-axis-rotation="0" y="12"/>
  3832. <arc large-arc-flag="0" rx="3.606" ry="3.606" sweep-flag="0" x="14" x-axis-rotation="0" y="12.6"/>
  3833. <line x="10" y="8.6"/>
  3834. <line x="10" y="2"/>
  3835. <line x="2" y="2"/>
  3836. <line x="2" y="10"/>
  3837. <line x="8.6" y="10"/>
  3838. <line x="12.6" y="14"/>
  3839. <arc large-arc-flag="0" rx="3.606" ry="3.606" sweep-flag="0" x="12" x-axis-rotation="0" y="16"/>
  3840. <arc large-arc-flag="0" rx="4.012" ry="4.012" sweep-flag="0" x="16" x-axis-rotation="0" y="20"/>
  3841. <arc large-arc-flag="0" rx="3.606" ry="3.606" sweep-flag="0" x="18" x-axis-rotation="0" y="19.4"/>
  3842. <line x="22" y="23.4"/>
  3843. <line x="22" y="30"/>
  3844. <line x="30" y="30"/>
  3845. <line x="30" y="22"/>
  3846. <close/>
  3847. <move x="8" y="8"/>
  3848. <line x="4" y="8"/>
  3849. <line x="4" y="4"/>
  3850. <line x="8" y="4"/>
  3851. <close/>
  3852. <move x="16" y="18"/>
  3853. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="18" x-axis-rotation="0" y="16"/>
  3854. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="1" x="16" x-axis-rotation="0" y="18"/>
  3855. <close/>
  3856. <move x="28" y="28"/>
  3857. <line x="24" y="28"/>
  3858. <line x="24" y="24"/>
  3859. <line x="28" y="24"/>
  3860. <close/>
  3861. </path>
  3862. <fillstroke/>
  3863. <path>
  3864. <move x="25" y="20"/>
  3865. <line x="27" y="20"/>
  3866. <line x="27" y="7"/>
  3867. <arc large-arc-flag="0" rx="2.006" ry="2.006" sweep-flag="0" x="25" x-axis-rotation="0" y="5"/>
  3868. <line x="12" y="5"/>
  3869. <line x="12" y="7"/>
  3870. <line x="25" y="7"/>
  3871. <close/>
  3872. </path>
  3873. <fillstroke/>
  3874. </foreground>
  3875. </shape>
  3876. <shape aspect="variable" h="32" name="ibm-cloud--vpc" strokewidth="inherit" w="32">
  3877. <connections/>
  3878. <foreground>
  3879. <save/>
  3880. <rect h="32" w="32" x="0" y="0"/>
  3881. <stroke/>
  3882. <restore/>
  3883. <rect/>
  3884. <stroke/>
  3885. <path>
  3886. <move x="23.414" y="22"/>
  3887. <line x="10" y="8.586"/>
  3888. <line x="10" y="2"/>
  3889. <line x="2" y="2"/>
  3890. <line x="2" y="10"/>
  3891. <line x="8.586" y="10"/>
  3892. <line x="22" y="23.414"/>
  3893. <line x="22" y="30"/>
  3894. <line x="30" y="30"/>
  3895. <line x="30" y="22"/>
  3896. <line x="23.414" y="22"/>
  3897. <close/>
  3898. <move x="8" y="8"/>
  3899. <line x="4" y="8"/>
  3900. <line x="4" y="4"/>
  3901. <line x="8" y="4"/>
  3902. <line x="8" y="8"/>
  3903. <close/>
  3904. <move x="28" y="28"/>
  3905. <line x="24" y="28"/>
  3906. <line x="24" y="24"/>
  3907. <line x="28" y="24"/>
  3908. <line x="28" y="28"/>
  3909. <close/>
  3910. </path>
  3911. <fillstroke/>
  3912. <path>
  3913. <move x="30" y="6"/>
  3914. <curve x1="30" x2="28.206" x3="26" y1="3.794" y2="2" y3="2"/>
  3915. <curve x1="24.142" x2="22.59" x3="22.142" y1="2" y2="3.28" y3="5"/>
  3916. <line x="13" y="5"/>
  3917. <line x="13" y="7"/>
  3918. <line x="22.142" y="7"/>
  3919. <arc large-arc-flag="0" rx="3.994" ry="3.994" sweep-flag="0" x="25" x-axis-rotation="0" y="9.858"/>
  3920. <line x="25" y="19"/>
  3921. <line x="27" y="19"/>
  3922. <line x="27" y="9.858"/>
  3923. <curve x1="28.72" x2="30" x3="30" y1="9.411" y2="7.858" y3="6"/>
  3924. <close/>
  3925. <move x="26" y="8"/>
  3926. <curve x1="24.897" x2="24" x3="24" y1="8" y2="7.103" y3="6"/>
  3927. <curve x1="24" x2="24.897" x3="26" y1="4.897" y2="4" y3="4"/>
  3928. <curve x1="27.103" x2="28" x3="28" y1="4" y2="4.897" y3="6"/>
  3929. <curve x1="28" x2="27.103" x3="26" y1="7.103" y2="8" y3="8"/>
  3930. <close/>
  3931. <move x="19" y="25"/>
  3932. <line x="9.858" y="25"/>
  3933. <arc large-arc-flag="0" rx="3.994" ry="3.994" sweep-flag="0" x="7" x-axis-rotation="0" y="22.142"/>
  3934. <line x="7" y="13"/>
  3935. <line x="5" y="13"/>
  3936. <line x="5" y="22.142"/>
  3937. <curve x1="3.28" x2="2" x3="2" y1="22.589" y2="24.142" y3="26"/>
  3938. <curve x1="2" x2="3.794" x3="6" y1="28.206" y2="30" y3="30"/>
  3939. <curve x1="7.858" x2="9.41" x3="9.858" y1="30" y2="28.72" y3="27"/>
  3940. <line x="19" y="27"/>
  3941. <line x="19" y="25"/>
  3942. <close/>
  3943. <move x="6" y="28"/>
  3944. <curve x1="4.897" x2="4" x3="4" y1="28" y2="27.103" y3="26"/>
  3945. <curve x1="4" x2="4.897" x3="6" y1="24.897" y2="24" y3="24"/>
  3946. <curve x1="7.103" x2="8" x3="8" y1="24" y2="24.897" y3="26"/>
  3947. <curve x1="8" x2="7.103" x3="6" y1="27.103" y2="28" y3="28"/>
  3948. <close/>
  3949. </path>
  3950. <fillstroke/>
  3951. </foreground>
  3952. </shape>
  3953. <shape aspect="variable" h="32" name="ibm-cloud-pak--data" strokewidth="inherit" w="32">
  3954. <connections/>
  3955. <foreground>
  3956. <save/>
  3957. <rect h="32" w="32" x="0" y="0"/>
  3958. <stroke/>
  3959. <restore/>
  3960. <rect/>
  3961. <stroke/>
  3962. <ellipse h="2" w="2" x="22" y="14"/>
  3963. <fillstroke/>
  3964. <ellipse h="2" w="2" x="7" y="14"/>
  3965. <fillstroke/>
  3966. <ellipse h="2" w="2" x="20" y="9"/>
  3967. <fillstroke/>
  3968. <ellipse h="2" w="2" x="14" y="22"/>
  3969. <fillstroke/>
  3970. <path>
  3971. <move x="21" y="19"/>
  3972. <arc large-arc-flag="0" rx="1.982" ry="1.982" sweep-flag="0" x="20.488" x-axis-rotation="0" y="19.074"/>
  3973. <line x="18.707" y="17.293"/>
  3974. <line x="18.681" y="17.319"/>
  3975. <arc large-arc-flag="0" rx="2.964" ry="2.964" sweep-flag="0" x="19" x-axis-rotation="0" y="16"/>
  3976. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="0" x="16" x-axis-rotation="0" y="13"/>
  3977. <arc large-arc-flag="0" rx="2.964" ry="2.964" sweep-flag="0" x="14.681" x-axis-rotation="0" y="13.319"/>
  3978. <line x="14.707" y="13.293"/>
  3979. <line x="12.926" y="11.512"/>
  3980. <arc large-arc-flag="1" rx="2.034" ry="2.034" sweep-flag="0" x="11.512" x-axis-rotation="0" y="12.926"/>
  3981. <line x="13.293" y="14.707"/>
  3982. <line x="13.319" y="14.681"/>
  3983. <arc large-arc-flag="0" rx="2.963" ry="2.963" sweep-flag="0" x="13" x-axis-rotation="0" y="16"/>
  3984. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="0" x="16" x-axis-rotation="0" y="19"/>
  3985. <arc large-arc-flag="0" rx="2.963" ry="2.963" sweep-flag="0" x="17.319" x-axis-rotation="0" y="18.681"/>
  3986. <line x="17.293" y="18.707"/>
  3987. <line x="19.074" y="20.488"/>
  3988. <arc large-arc-flag="1" rx="1.996" ry="1.996" sweep-flag="0" x="21" x-axis-rotation="0" y="19"/>
  3989. <close/>
  3990. <move x="16" y="17"/>
  3991. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="17" x-axis-rotation="0" y="16"/>
  3992. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16" x-axis-rotation="0" y="17"/>
  3993. <close/>
  3994. </path>
  3995. <fillstroke/>
  3996. <path>
  3997. <move x="16" y="31"/>
  3998. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="15.496" x-axis-rotation="0" y="30.864"/>
  3999. <line x="3.496" y="23.864"/>
  4000. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3" x-axis-rotation="0" y="23"/>
  4001. <line x="3" y="9"/>
  4002. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3.496" x-axis-rotation="0" y="8.136"/>
  4003. <line x="15.496" y="1.136"/>
  4004. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16.504" x-axis-rotation="0" y="1.136"/>
  4005. <line x="28.504" y="8.136"/>
  4006. <line x="27.496" y="9.864"/>
  4007. <line x="16" y="3.158"/>
  4008. <line x="5" y="9.574"/>
  4009. <line x="5" y="22.426"/>
  4010. <line x="16" y="28.843"/>
  4011. <line x="27" y="22.426"/>
  4012. <line x="27" y="15"/>
  4013. <line x="29" y="15"/>
  4014. <line x="29" y="23"/>
  4015. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="28.504" x-axis-rotation="0" y="23.864"/>
  4016. <line x="16.504" y="30.864"/>
  4017. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="16" x-axis-rotation="0" y="31"/>
  4018. <close/>
  4019. </path>
  4020. <fillstroke/>
  4021. </foreground>
  4022. </shape>
  4023. <shape aspect="variable" h="32" name="ibm-cloud-pak--integration" strokewidth="inherit" w="32">
  4024. <connections/>
  4025. <foreground>
  4026. <save/>
  4027. <rect h="32" w="32" x="0" y="0"/>
  4028. <stroke/>
  4029. <restore/>
  4030. <rect/>
  4031. <stroke/>
  4032. <path>
  4033. <move x="22.121" y="9.879"/>
  4034. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="17.879" x-axis-rotation="0" y="9.879"/>
  4035. <line x="17.414" y="10.343"/>
  4036. <line x="18.828" y="11.757"/>
  4037. <line x="19.293" y="11.293"/>
  4038. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="20.707" x-axis-rotation="0" y="12.707"/>
  4039. <line x="17.414" y="16"/>
  4040. <line x="18.828" y="17.414"/>
  4041. <line x="22.121" y="14.121"/>
  4042. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="22.121" x-axis-rotation="0" y="9.879"/>
  4043. <close/>
  4044. <move x="12.707" y="20.707"/>
  4045. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="11.293" x-axis-rotation="0" y="19.293"/>
  4046. <line x="14.586" y="16"/>
  4047. <line x="13.172" y="14.586"/>
  4048. <line x="9.879" y="17.879"/>
  4049. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="14.121" x-axis-rotation="0" y="22.121"/>
  4050. <line x="14.586" y="21.657"/>
  4051. <line x="13.172" y="20.243"/>
  4052. <close/>
  4053. <move x="14.121" y="9.88"/>
  4054. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="9.88" x-axis-rotation="0" y="14.12"/>
  4055. <line x="10.344" y="14.585"/>
  4056. <line x="11.758" y="13.171"/>
  4057. <line x="11.294" y="12.706"/>
  4058. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="12.708" x-axis-rotation="0" y="11.292"/>
  4059. <line x="16" y="14.586"/>
  4060. <line x="17.414" y="13.172"/>
  4061. <close/>
  4062. </path>
  4063. <fillstroke/>
  4064. <path>
  4065. <move x="22.121" y="17.879"/>
  4066. <line x="21.657" y="17.414"/>
  4067. <line x="20.243" y="18.828"/>
  4068. <line x="20.707" y="19.293"/>
  4069. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="19.293" x-axis-rotation="0" y="20.707"/>
  4070. <line x="16" y="17.414"/>
  4071. <line x="14.586" y="18.828"/>
  4072. <line x="17.879" y="22.121"/>
  4073. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="22.121" x-axis-rotation="0" y="17.879"/>
  4074. <close/>
  4075. </path>
  4076. <fillstroke/>
  4077. <path>
  4078. <move x="16" y="31"/>
  4079. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="15.496" x-axis-rotation="0" y="30.864"/>
  4080. <line x="3.496" y="23.864"/>
  4081. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3" x-axis-rotation="0" y="23"/>
  4082. <line x="3" y="9"/>
  4083. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3.496" x-axis-rotation="0" y="8.136"/>
  4084. <line x="15.496" y="1.136"/>
  4085. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16.504" x-axis-rotation="0" y="1.136"/>
  4086. <line x="28.504" y="8.136"/>
  4087. <line x="27.496" y="9.864"/>
  4088. <line x="16" y="3.158"/>
  4089. <line x="5" y="9.574"/>
  4090. <line x="5" y="22.426"/>
  4091. <line x="16" y="28.843"/>
  4092. <line x="27" y="22.426"/>
  4093. <line x="27" y="15"/>
  4094. <line x="29" y="15"/>
  4095. <line x="29" y="23"/>
  4096. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="28.504" x-axis-rotation="0" y="23.864"/>
  4097. <line x="16.504" y="30.864"/>
  4098. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="16" x-axis-rotation="0" y="31"/>
  4099. <close/>
  4100. </path>
  4101. <fillstroke/>
  4102. </foreground>
  4103. </shape>
  4104. <shape aspect="variable" h="32" name="ibm-cloud-pak--security" strokewidth="inherit" w="32">
  4105. <connections/>
  4106. <foreground>
  4107. <save/>
  4108. <rect h="32" w="32" x="0" y="0"/>
  4109. <stroke/>
  4110. <restore/>
  4111. <rect/>
  4112. <stroke/>
  4113. <path>
  4114. <move x="16" y="23.729"/>
  4115. <arc large-arc-flag="0" rx="6.007" ry="6.007" sweep-flag="1" x="10" x-axis-rotation="0" y="17.729"/>
  4116. <line x="10" y="11.272"/>
  4117. <line x="16" y="8.272"/>
  4118. <line x="22" y="11.272"/>
  4119. <line x="22" y="17.728"/>
  4120. <arc large-arc-flag="0" rx="6.007" ry="6.007" sweep-flag="1" x="16" x-axis-rotation="0" y="23.728"/>
  4121. <close/>
  4122. <move x="12" y="12.507"/>
  4123. <line x="12" y="17.729"/>
  4124. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="20" x-axis-rotation="0" y="17.729"/>
  4125. <line x="20" y="12.507"/>
  4126. <line x="16" y="10.507"/>
  4127. <close/>
  4128. </path>
  4129. <fillstroke/>
  4130. <path>
  4131. <move x="16" y="31"/>
  4132. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="15.496" x-axis-rotation="0" y="30.864"/>
  4133. <line x="3.496" y="23.864"/>
  4134. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3" x-axis-rotation="0" y="23"/>
  4135. <line x="3" y="9"/>
  4136. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="3.496" x-axis-rotation="0" y="8.136"/>
  4137. <line x="15.496" y="1.136"/>
  4138. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16.504" x-axis-rotation="0" y="1.136"/>
  4139. <line x="28.504" y="8.136"/>
  4140. <line x="27.496" y="9.864"/>
  4141. <line x="16" y="3.158"/>
  4142. <line x="5" y="9.574"/>
  4143. <line x="5" y="22.426"/>
  4144. <line x="16" y="28.843"/>
  4145. <line x="27" y="22.426"/>
  4146. <line x="27" y="15"/>
  4147. <line x="29" y="15"/>
  4148. <line x="29" y="23"/>
  4149. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="28.504" x-axis-rotation="0" y="23.864"/>
  4150. <line x="16.504" y="30.864"/>
  4151. <arc large-arc-flag="0" rx="0.999" ry="0.999" sweep-flag="1" x="16" x-axis-rotation="0" y="31"/>
  4152. <close/>
  4153. </path>
  4154. <fillstroke/>
  4155. </foreground>
  4156. </shape>
  4157. <shape aspect="variable" h="32" name="ibm-cloud" strokewidth="inherit" w="32.159">
  4158. <connections/>
  4159. <foreground>
  4160. <save/>
  4161. <rect h="32" w="32" x="0.028" y="0"/>
  4162. <stroke/>
  4163. <restore/>
  4164. <rect/>
  4165. <stroke/>
  4166. <path>
  4167. <move x="24.608" y="13.65"/>
  4168. <arc large-arc-flag="0" rx="9.733" ry="9.733" sweep-flag="0" x="6.314" x-axis-rotation="0" y="17.539"/>
  4169. <arc large-arc-flag="0" rx="6.75" ry="6.75" sweep-flag="0" x="7.028" x-axis-rotation="0" y="31"/>
  4170. <line x="23.028" y="31"/>
  4171. <arc large-arc-flag="0" rx="8.746" ry="8.746" sweep-flag="0" x="24.608" x-axis-rotation="0" y="13.65"/>
  4172. <close/>
  4173. <move x="23.028" y="29.5"/>
  4174. <line x="7.028" y="29.5"/>
  4175. <arc large-arc-flag="0" rx="5.237" ry="5.237" sweep-flag="1" x="6.328" x-axis-rotation="0" y="19.07"/>
  4176. <arc large-arc-flag="0" rx="9.726" ry="9.726" sweep-flag="0" x="7.432" x-axis-rotation="0" y="22.855"/>
  4177. <arc large-arc-flag="1" rx="0.75" ry="0.75" sweep-flag="0" x="8.754" x-axis-rotation="0" y="22.145"/>
  4178. <arc large-arc-flag="0" rx="8.25" ry="8.25" sweep-flag="1" x="22.78" x-axis-rotation="0" y="13.513"/>
  4179. <arc large-arc-flag="0" rx="8.754" ry="8.754" sweep-flag="0" x="16.465" x-axis-rotation="0" y="16.463"/>
  4180. <arc large-arc-flag="1" rx="0.75" ry="0.75" sweep-flag="0" x="17.589" x-axis-rotation="0" y="17.455"/>
  4181. <arc large-arc-flag="1" rx="7.25" ry="7.25" sweep-flag="1" x="23.028" x-axis-rotation="0" y="29.5"/>
  4182. <close/>
  4183. <move x="31.926" y="10.255"/>
  4184. <arc large-arc-flag="0" rx="0.758" ry="0.758" sweep-flag="0" x="30.89" x-axis-rotation="0" y="9.977"/>
  4185. <line x="27.87" y="11.721"/>
  4186. <arc large-arc-flag="1" rx="0.759" ry="0.759" sweep-flag="0" x="28.628" x-axis-rotation="0" y="13.035"/>
  4187. <line x="31.648" y="11.291"/>
  4188. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="31.926" x-axis-rotation="0" y="10.255"/>
  4189. <close/>
  4190. <move x="22.704" y="7.87"/>
  4191. <arc large-arc-flag="0" rx="0.758" ry="0.758" sweep-flag="0" x="23.741" x-axis-rotation="0" y="7.592"/>
  4192. <line x="25.485" y="4.572"/>
  4193. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="24.171" x-axis-rotation="0" y="3.814"/>
  4194. <line x="22.427" y="6.834"/>
  4195. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="22.704" x-axis-rotation="0" y="7.87"/>
  4196. <close/>
  4197. <move x="16.028" y="6.081"/>
  4198. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="16.787" x-axis-rotation="0" y="5.322"/>
  4199. <line x="16.787" y="1.835"/>
  4200. <arc large-arc-flag="1" rx="0.759" ry="0.759" sweep-flag="0" x="15.269" x-axis-rotation="0" y="1.835"/>
  4201. <line x="15.269" y="5.322"/>
  4202. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="16.028" x-axis-rotation="0" y="6.082"/>
  4203. <close/>
  4204. <move x="8.315" y="7.592"/>
  4205. <arc large-arc-flag="0" rx="0.759" ry="0.759" sweep-flag="0" x="9.629" x-axis-rotation="0" y="6.833"/>
  4206. <line x="7.885" y="3.813"/>
  4207. <arc large-arc-flag="1" rx="0.759" ry="0.759" sweep-flag="0" x="6.571" x-axis-rotation="0" y="4.573"/>
  4208. <close/>
  4209. <move x="4.186" y="11.721"/>
  4210. <line x="1.166" y="9.977"/>
  4211. <arc large-arc-flag="1" rx="0.759" ry="0.759" sweep-flag="0" x="0.408" x-axis-rotation="0" y="11.291"/>
  4212. <line x="3.428" y="13.035"/>
  4213. <arc large-arc-flag="1" rx="0.759" ry="0.759" sweep-flag="0" x="4.187" x-axis-rotation="0" y="11.721"/>
  4214. <close/>
  4215. </path>
  4216. <fillstroke/>
  4217. </foreground>
  4218. </shape>
  4219. <shape aspect="variable" h="32" name="ibm-watson--discovery" strokewidth="inherit" w="32">
  4220. <connections/>
  4221. <foreground>
  4222. <save/>
  4223. <rect h="32" w="32" x="0" y="0"/>
  4224. <stroke/>
  4225. <fillstrokecolor color="currentColor"/>
  4226. <path>
  4227. <move x="6" y="17"/>
  4228. <line x="14" y="17"/>
  4229. <line x="14" y="19"/>
  4230. <line x="6" y="19"/>
  4231. <close/>
  4232. </path>
  4233. <fillstroke/>
  4234. <restore/>
  4235. <rect/>
  4236. <stroke/>
  4237. <ellipse h="2" w="2" x="2" y="17"/>
  4238. <fillstroke/>
  4239. <ellipse h="2" w="2" x="12" y="13"/>
  4240. <fillstroke/>
  4241. <path>
  4242. <move x="2" y="13"/>
  4243. <line x="10" y="13"/>
  4244. <line x="10" y="15"/>
  4245. <line x="2" y="15"/>
  4246. <close/>
  4247. <move x="6" y="9"/>
  4248. <line x="14" y="9"/>
  4249. <line x="14" y="11"/>
  4250. <line x="6" y="11"/>
  4251. <close/>
  4252. </path>
  4253. <fillstroke/>
  4254. <ellipse h="2" w="2" x="2" y="9"/>
  4255. <fillstroke/>
  4256. <path>
  4257. <move x="30" y="28.6"/>
  4258. <line x="22.6" y="21.2"/>
  4259. <curve x1="24.1" x2="25" x3="25" y1="19.2" y2="16.7" y3="14"/>
  4260. <curve x1="25" x2="19.6" x3="13" y1="7.4" y2="2" y3="2"/>
  4261. <curve x1="9.7" x2="6.6" x3="4.3" y1="2" y2="3.3" y3="5.8"/>
  4262. <line x="5.8" y="7.2"/>
  4263. <curve x1="7.6" x2="10.2" x3="13" y1="5.1" y2="4" y3="4"/>
  4264. <curve x1="18.5" x2="23" x3="23" y1="4" y2="8.5" y3="14"/>
  4265. <curve x1="23" x2="18.5" x3="13" y1="19.5" y2="24" y3="24"/>
  4266. <curve x1="10" x2="7.2" x3="5.3" y1="24" y2="22.7" y3="20.4"/>
  4267. <line x="3.8" y="21.7"/>
  4268. <curve x1="6" x2="9.4" x3="13" y1="24.4" y2="26" y3="26"/>
  4269. <curve x1="16.2" x2="19.1" x3="21.3" y1="26" y2="24.7" y3="22.7"/>
  4270. <line x="28.6" y="30"/>
  4271. <close/>
  4272. </path>
  4273. <fillstroke/>
  4274. </foreground>
  4275. </shape>
  4276. <shape aspect="variable" h="32" name="ibm-watson--machine-learning" strokewidth="inherit" w="32">
  4277. <connections/>
  4278. <foreground>
  4279. <save/>
  4280. <rect h="32" w="32" x="0" y="0"/>
  4281. <stroke/>
  4282. <restore/>
  4283. <rect/>
  4284. <stroke/>
  4285. <path>
  4286. <move x="3.6" y="22.5"/>
  4287. <curve x1="2.6" x2="2" x3="2" y1="20.5" y2="18.3" y3="16"/>
  4288. <curve x1="2" x2="8.3" x3="16" y1="8.3" y2="2" y3="2"/>
  4289. <line x="16" y="4"/>
  4290. <curve x1="9.4" x2="4" x3="4" y1="4" y2="9.4" y3="16"/>
  4291. <curve x1="4" x2="4.5" x3="5.4" y1="18" y2="19.8" y3="21.5"/>
  4292. <close/>
  4293. <move x="28" y="16"/>
  4294. <curve x1="28" x2="22.6" x3="16" y1="22.6" y2="28" y3="28"/>
  4295. <curve x1="13.1" x2="10.4" x3="8.3" y1="28" y2="27" y3="25.2"/>
  4296. <line x="14" y="19.5"/>
  4297. <line x="12.6" y="18"/>
  4298. <line x="6.1" y="24.5"/>
  4299. <curve x1="5.7" x2="5.7" x3="6.1" y1="24.9" y2="25.5" y3="25.9"/>
  4300. <curve x1="8.7" x2="12.3" x3="16" y1="28.5" y2="30" y3="30"/>
  4301. <curve x1="23.7" x2="30" x3="30" y1="30" y2="23.7" y3="16"/>
  4302. <close/>
  4303. </path>
  4304. <fillstroke/>
  4305. <path>
  4306. <move x="18" y="25"/>
  4307. <curve x1="17.9" x2="17.7" x3="17.6" y1="25" y2="25" y3="24.9"/>
  4308. <curve x1="17.3" x2="17" x3="17" y1="24.8" y2="24.5" y3="24.1"/>
  4309. <line x="16.3" y="19.1"/>
  4310. <line x="18.3" y="18.8"/>
  4311. <line x="18.7" y="22.1"/>
  4312. <line x="20.9" y="20.4"/>
  4313. <line x="20.9" y="15"/>
  4314. <curve x1="20.9" x2="21" x3="21.2" y1="14.7" y2="14.5" y3="14.3"/>
  4315. <line x="24.4" y="11.1"/>
  4316. <curve x1="25.3" x2="25.9" x3="25.9" y1="10.2" y2="8.9" y3="7.6"/>
  4317. <line x="25.9" y="6"/>
  4318. <line x="24.4" y="6"/>
  4319. <curve x1="23.1" x2="21.8" x3="20.9" y1="6" y2="6.5" y3="7.5"/>
  4320. <line x="17.7" y="10.7"/>
  4321. <curve x1="17.5" x2="17.3" x3="17" y1="10.9" y2="11" y3="11"/>
  4322. <line x="11.5" y="11"/>
  4323. <line x="9.8" y="13.2"/>
  4324. <line x="13.1" y="13.6"/>
  4325. <line x="12.8" y="15.6"/>
  4326. <line x="7.8" y="14.9"/>
  4327. <curve x1="7.4" x2="7.1" x3="7" y1="14.9" y2="14.6" y3="14.3"/>
  4328. <curve x1="6.9" x2="6.9" x3="7.1" y1="14" y2="13.6" y3="13.3"/>
  4329. <line x="10.1" y="9.3"/>
  4330. <quad x1="10.55" x2="11" y1="9" y2="9"/>
  4331. <line x="16.6" y="9"/>
  4332. <line x="19.6" y="6"/>
  4333. <curve x1="20.9" x2="22.7" x3="24.5" y1="4.7" y2="4" y3="4"/>
  4334. <line x="26" y="4"/>
  4335. <curve x1="27.1" x2="28" x3="28" y1="4" y2="4.9" y3="6"/>
  4336. <line x="28" y="7.5"/>
  4337. <curve x1="28" x2="27.3" x3="26" y1="9.4" y2="11.1" y3="12.4"/>
  4338. <line x="23" y="15.4"/>
  4339. <line x="23" y="21"/>
  4340. <curve x1="23" x2="22.9" x3="22.6" y1="21.3" y2="21.6" y3="21.8"/>
  4341. <line x="18.6" y="24.8"/>
  4342. <curve x1="18.4" x2="18.2" x3="18" y1="24.9" y2="25" y3="25"/>
  4343. </path>
  4344. <fillstroke/>
  4345. </foreground>
  4346. </shape>
  4347. <shape aspect="variable" h="32" name="ibm-watson--studio" strokewidth="inherit" w="32">
  4348. <connections/>
  4349. <foreground>
  4350. <save/>
  4351. <rect h="32" w="32" x="0" y="0"/>
  4352. <stroke/>
  4353. <restore/>
  4354. <rect/>
  4355. <stroke/>
  4356. <path>
  4357. <move x="25" y="21"/>
  4358. <curve x1="22.2" x2="20" x3="20" y1="21" y2="18.8" y3="16"/>
  4359. <curve x1="20" x2="22.2" x3="25" y1="13.2" y2="11" y3="11"/>
  4360. <curve x1="27.8" x2="30" x3="30" y1="11" y2="13.2" y3="16"/>
  4361. <curve x1="30" x2="27.8" x3="25" y1="18.8" y2="21" y3="21"/>
  4362. <move x="25" y="13"/>
  4363. <curve x1="23.3" x2="22" x3="22" y1="13" y2="14.3" y3="16"/>
  4364. <curve x1="22" x2="23.3" x3="25" y1="17.7" y2="19" y3="19"/>
  4365. <curve x1="26.7" x2="28" x3="28" y1="19" y2="17.7" y3="16"/>
  4366. <curve x1="28" x2="26.7" x3="25" y1="14.3" y2="13" y3="13"/>
  4367. <move x="14" y="11"/>
  4368. <line x="14" y="6"/>
  4369. <curve x1="14" x2="13.1" x3="12" y1="4.9" y2="4" y3="4"/>
  4370. <line x="10" y="4"/>
  4371. <line x="10" y="6"/>
  4372. <line x="12" y="6"/>
  4373. <line x="12" y="11"/>
  4374. <curve x1="12" x2="13.1" x3="14.7" y1="13.1" y2="14.9" y3="16"/>
  4375. <curve x1="13.1" x2="12" x3="12" y1="17.1" y2="18.9" y3="21"/>
  4376. <line x="12" y="26"/>
  4377. <line x="10" y="26"/>
  4378. <line x="10" y="28"/>
  4379. <line x="12" y="28"/>
  4380. <curve x1="13.1" x2="14" x3="14" y1="28" y2="27.1" y3="26"/>
  4381. <line x="14" y="21"/>
  4382. <curve x1="14" x2="15.8" x3="18" y1="18.8" y2="17" y3="17"/>
  4383. <line x="18" y="15"/>
  4384. <curve x1="15.8" x2="14" x3="14" y1="15" y2="13.2" y3="11"/>
  4385. <move x="2" y="30"/>
  4386. <line x="2" y="24"/>
  4387. <line x="8" y="24"/>
  4388. <line x="8" y="30"/>
  4389. <close/>
  4390. <move x="4" y="26"/>
  4391. <line x="4" y="28"/>
  4392. <line x="6" y="28"/>
  4393. <line x="6" y="26"/>
  4394. <close/>
  4395. <move x="2" y="19"/>
  4396. <line x="2" y="13"/>
  4397. <line x="8" y="13"/>
  4398. <line x="8" y="19"/>
  4399. <close/>
  4400. <move x="4" y="15"/>
  4401. <line x="4" y="17"/>
  4402. <line x="6" y="17"/>
  4403. <line x="6" y="15"/>
  4404. <close/>
  4405. <move x="2" y="8"/>
  4406. <line x="2" y="2"/>
  4407. <line x="8" y="2"/>
  4408. <line x="8" y="8"/>
  4409. <close/>
  4410. <move x="4" y="4"/>
  4411. <line x="4" y="6"/>
  4412. <line x="6" y="6"/>
  4413. <line x="6" y="4"/>
  4414. <close/>
  4415. </path>
  4416. <fillstroke/>
  4417. </foreground>
  4418. </shape>
  4419. <shape aspect="variable" h="32" name="ibm-watsonx--assistant" strokewidth="inherit" w="32">
  4420. <connections/>
  4421. <foreground>
  4422. <save/>
  4423. <rect h="32" w="32" x="0" y="0"/>
  4424. <stroke/>
  4425. <restore/>
  4426. <rect/>
  4427. <stroke/>
  4428. <path>
  4429. <move x="28" y="2"/>
  4430. <line x="18" y="2"/>
  4431. <curve x1="16.897" x2="16" x3="16" y1="2" y2="2.897" y3="4"/>
  4432. <line x="16" y="10"/>
  4433. <curve x1="16" x2="16.897" x3="18" y1="11.104" y2="12" y3="12"/>
  4434. <line x="20.423" y="12"/>
  4435. <line x="22.154" y="15"/>
  4436. <line x="23.887" y="14"/>
  4437. <line x="21.577" y="10"/>
  4438. <line x="18" y="10"/>
  4439. <line x="18" y="4"/>
  4440. <line x="28" y="4"/>
  4441. <line x="28" y="10"/>
  4442. <line x="25" y="10"/>
  4443. <line x="25" y="12"/>
  4444. <line x="28" y="12"/>
  4445. <curve x1="29.103" x2="30" x3="30" y1="12" y2="11.104" y3="10"/>
  4446. <line x="30" y="4"/>
  4447. <curve x1="30" x2="29.103" x3="28" y1="2.897" y2="2" y3="2"/>
  4448. <move x="14.69" y="31"/>
  4449. <line x="12.958" y="30"/>
  4450. <line x="16.423" y="24"/>
  4451. <line x="22" y="24"/>
  4452. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="22"/>
  4453. <line x="24" y="17"/>
  4454. <line x="26" y="17"/>
  4455. <line x="26" y="22"/>
  4456. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="22" x-axis-rotation="0" y="26"/>
  4457. <line x="17.577" y="26"/>
  4458. <close/>
  4459. </path>
  4460. <fillstroke/>
  4461. <ellipse h="2" w="2" x="9" y="16"/>
  4462. <fillstroke/>
  4463. <ellipse h="2" w="2" x="13" y="16"/>
  4464. <fillstroke/>
  4465. <ellipse h="2" w="2" x="17" y="16"/>
  4466. <fillstroke/>
  4467. <path>
  4468. <move x="12" y="26"/>
  4469. <line x="6" y="26"/>
  4470. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="2" x-axis-rotation="0" y="22"/>
  4471. <line x="2" y="12"/>
  4472. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="6" x-axis-rotation="0" y="8"/>
  4473. <line x="14" y="8"/>
  4474. <line x="14" y="10"/>
  4475. <line x="6" y="10"/>
  4476. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="12"/>
  4477. <line x="4" y="22"/>
  4478. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="24"/>
  4479. <line x="12" y="24"/>
  4480. <close/>
  4481. </path>
  4482. <fillstroke/>
  4483. </foreground>
  4484. </shape>
  4485. <shape aspect="variable" h="32" name="ibm-watsonx--code-assistant-for-z--refactor" strokewidth="inherit" w="32">
  4486. <connections/>
  4487. <foreground>
  4488. <save/>
  4489. <rect h="32" w="32" x="0" y="0"/>
  4490. <stroke/>
  4491. <restore/>
  4492. <rect/>
  4493. <stroke/>
  4494. <path>
  4495. <move x="22.17" y="16"/>
  4496. <line x="19.59" y="18.58"/>
  4497. <line x="21" y="20"/>
  4498. <line x="25" y="16"/>
  4499. <line x="21" y="12"/>
  4500. <line x="19.58" y="13.41"/>
  4501. <close/>
  4502. <move x="15.5" y="21"/>
  4503. <line x="13.585" y="20.423"/>
  4504. <line x="16.5" y="11"/>
  4505. <line x="18.415" y="11.577"/>
  4506. <close/>
  4507. <move x="9.83" y="16"/>
  4508. <line x="12.41" y="13.42"/>
  4509. <line x="11" y="12"/>
  4510. <line x="7" y="16"/>
  4511. <line x="11" y="20"/>
  4512. <line x="12.42" y="18.59"/>
  4513. <close/>
  4514. </path>
  4515. <fillstroke/>
  4516. <ellipse h="2" w="2" x="18" y="27"/>
  4517. <fillstroke/>
  4518. <path>
  4519. <move x="22" y="29"/>
  4520. <line x="22" y="27"/>
  4521. <curve x1="24.757" x2="27" x3="27" y1="27" y2="24.757" y3="22"/>
  4522. <line x="27" y="10"/>
  4523. <curve x1="27" x2="24.757" x3="22" y1="7.243" y2="5" y3="5"/>
  4524. <line x="16" y="5"/>
  4525. <line x="16" y="3"/>
  4526. <line x="22" y="3"/>
  4527. <curve x1="25.86" x2="29" x3="29" y1="3" y2="6.14" y3="10"/>
  4528. <line x="29" y="22"/>
  4529. <curve x1="29" x2="25.86" x3="22" y1="25.86" y2="29" y3="29"/>
  4530. </path>
  4531. <fillstroke/>
  4532. <ellipse h="2" w="2" x="12" y="3"/>
  4533. <fillstroke/>
  4534. <path>
  4535. <move x="16" y="29"/>
  4536. <line x="10" y="29"/>
  4537. <curve x1="6.14" x2="3" x3="3" y1="29" y2="25.86" y3="22"/>
  4538. <line x="3" y="10"/>
  4539. <curve x1="3" x2="6.14" x3="10" y1="6.14" y2="3" y3="3"/>
  4540. <line x="10" y="5"/>
  4541. <curve x1="7.243" x2="5" x3="5" y1="5" y2="7.243" y3="10"/>
  4542. <line x="5" y="22"/>
  4543. <curve x1="5" x2="7.243" x3="10" y1="24.757" y2="27" y3="27"/>
  4544. <line x="16" y="27"/>
  4545. <close/>
  4546. </path>
  4547. <fillstroke/>
  4548. </foreground>
  4549. </shape>
  4550. <shape aspect="variable" h="32" name="ibm-watsonx--code-assistant-for-z" strokewidth="inherit" w="32">
  4551. <connections/>
  4552. <foreground>
  4553. <save/>
  4554. <rect h="32" w="32" x="0" y="0"/>
  4555. <stroke/>
  4556. <restore/>
  4557. <rect/>
  4558. <stroke/>
  4559. <path>
  4560. <move x="29.17" y="25"/>
  4561. <line x="26.59" y="27.58"/>
  4562. <line x="28" y="29"/>
  4563. <line x="32" y="25"/>
  4564. <line x="28" y="21"/>
  4565. <line x="26.58" y="22.41"/>
  4566. <close/>
  4567. <move x="23" y="30"/>
  4568. <line x="21.085" y="29.423"/>
  4569. <line x="24" y="20"/>
  4570. <line x="25.915" y="20.577"/>
  4571. <close/>
  4572. <move x="17.83" y="25"/>
  4573. <line x="20.41" y="22.42"/>
  4574. <line x="19" y="21"/>
  4575. <line x="15" y="25"/>
  4576. <line x="19" y="29"/>
  4577. <line x="20.42" y="27.59"/>
  4578. <close/>
  4579. <move x="18" y="19"/>
  4580. <line x="16" y="19"/>
  4581. <line x="16" y="5"/>
  4582. <curve x1="16" x2="16.897" x3="18" y1="3.897" y2="3" y3="3"/>
  4583. <line x="27" y="3"/>
  4584. <curve x1="28.103" x2="29" x3="29" y1="3" y2="3.897" y3="5"/>
  4585. <line x="29" y="16"/>
  4586. <line x="27" y="16"/>
  4587. <line x="27" y="5"/>
  4588. <line x="18" y="5"/>
  4589. <close/>
  4590. <move x="12" y="3"/>
  4591. <line x="3" y="3"/>
  4592. <curve x1="1.897" x2="1" x3="1" y1="3" y2="3.898" y3="5"/>
  4593. <line x="1" y="27"/>
  4594. <curve x1="1" x2="1.897" x3="3" y1="28.103" y2="29" y3="29"/>
  4595. <line x="12" y="29"/>
  4596. <curve x1="13.103" x2="14" x3="14" y1="29" y2="28.103" y3="27"/>
  4597. <line x="14" y="5"/>
  4598. <curve x1="14" x2="13.103" x3="12" y1="3.898" y2="3" y3="3"/>
  4599. <move x="12" y="10.037"/>
  4600. <line x="5.075" y="5"/>
  4601. <line x="12" y="5"/>
  4602. <close/>
  4603. <move x="11.3" y="12"/>
  4604. <line x="3" y="18.036"/>
  4605. <line x="3" y="5.964"/>
  4606. <close/>
  4607. <move x="12" y="13.963"/>
  4608. <line x="12.001" y="25.78"/>
  4609. <line x="3.721" y="19.984"/>
  4610. <close/>
  4611. <move x="3" y="21.921"/>
  4612. <line x="10.256" y="27"/>
  4613. <line x="3" y="27"/>
  4614. <close/>
  4615. <move x="12" y="27"/>
  4616. <line x="12.001" y="26.998"/>
  4617. <close/>
  4618. </path>
  4619. <fillstroke/>
  4620. </foreground>
  4621. </shape>
  4622. <shape aspect="variable" h="32" name="ibm-watsonx--code-assistant" strokewidth="inherit" w="32">
  4623. <connections/>
  4624. <foreground>
  4625. <save/>
  4626. <rect h="32" w="32" x="0" y="0"/>
  4627. <stroke/>
  4628. <restore/>
  4629. <rect/>
  4630. <stroke/>
  4631. <path>
  4632. <move x="11" y="28"/>
  4633. <line x="9" y="28"/>
  4634. <curve x1="5.14" x2="2" x3="2" y1="28" y2="24.86" y3="21"/>
  4635. <line x="2" y="19"/>
  4636. <line x="4" y="19"/>
  4637. <line x="4" y="21"/>
  4638. <curve x1="4" x2="6.243" x3="9" y1="23.757" y2="26" y3="26"/>
  4639. <line x="11" y="26"/>
  4640. <line x="11" y="28"/>
  4641. <close/>
  4642. <move x="28.17" y="26"/>
  4643. <line x="25.59" y="28.58"/>
  4644. <line x="27" y="30"/>
  4645. <line x="31" y="26"/>
  4646. <line x="27" y="22"/>
  4647. <line x="25.58" y="23.41"/>
  4648. <line x="28.17" y="26"/>
  4649. <close/>
  4650. <move x="22" y="31"/>
  4651. <line x="20.085" y="30.423"/>
  4652. <line x="23" y="21"/>
  4653. <line x="24.915" y="21.577"/>
  4654. <line x="22" y="31"/>
  4655. <close/>
  4656. <move x="16.83" y="26"/>
  4657. <line x="19.41" y="23.42"/>
  4658. <line x="18" y="22"/>
  4659. <line x="14" y="26"/>
  4660. <line x="18" y="30"/>
  4661. <line x="19.42" y="28.59"/>
  4662. <line x="16.83" y="26"/>
  4663. <close/>
  4664. <move x="30" y="19"/>
  4665. <line x="28" y="19"/>
  4666. <line x="28" y="12"/>
  4667. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="23" x-axis-rotation="0" y="7"/>
  4668. <line x="19" y="7"/>
  4669. <line x="19" y="5"/>
  4670. <line x="23" y="5"/>
  4671. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="30" x-axis-rotation="0" y="12"/>
  4672. <line x="30" y="19"/>
  4673. <close/>
  4674. </path>
  4675. <fillstroke/>
  4676. <ellipse h="2" w="2" x="2" y="3"/>
  4677. <fillstroke/>
  4678. <path>
  4679. <move x="6" y="3"/>
  4680. <line x="16" y="3"/>
  4681. <line x="16" y="5"/>
  4682. <line x="6" y="5"/>
  4683. <close/>
  4684. </path>
  4685. <fillstroke/>
  4686. <ellipse h="2" w="2" x="2" y="11"/>
  4687. <fillstroke/>
  4688. <path>
  4689. <move x="6" y="11"/>
  4690. <line x="16" y="11"/>
  4691. <line x="16" y="13"/>
  4692. <line x="6" y="13"/>
  4693. <close/>
  4694. <move x="2" y="15"/>
  4695. <line x="12" y="15"/>
  4696. <line x="12" y="17"/>
  4697. <line x="2" y="17"/>
  4698. <close/>
  4699. </path>
  4700. <fillstroke/>
  4701. <ellipse h="2" w="2" x="14" y="7"/>
  4702. <fillstroke/>
  4703. <path>
  4704. <move x="2" y="7"/>
  4705. <line x="12" y="7"/>
  4706. <line x="12" y="9"/>
  4707. <line x="2" y="9"/>
  4708. <close/>
  4709. </path>
  4710. <fillstroke/>
  4711. <ellipse h="2" w="2" x="14" y="15"/>
  4712. <fillstroke/>
  4713. </foreground>
  4714. </shape>
  4715. <shape aspect="variable" h="32" name="ibm-watsonx--orchestrate" strokewidth="inherit" w="32">
  4716. <connections/>
  4717. <foreground>
  4718. <save/>
  4719. <rect h="32" w="32" x="0" y="0"/>
  4720. <stroke/>
  4721. <restore/>
  4722. <rect/>
  4723. <stroke/>
  4724. <path>
  4725. <move x="27.925" y="19.428"/>
  4726. <arc large-arc-flag="0" rx="6.01" ry="6.01" sweep-flag="1" x="23" x-axis-rotation="0" y="22"/>
  4727. <arc large-arc-flag="0" rx="5.96" ry="5.96" sweep-flag="1" x="17.856" x-axis-rotation="0" y="19.09"/>
  4728. <line x="16.143" y="20.123"/>
  4729. <arc large-arc-flag="0" rx="7.94" ry="7.94" sweep-flag="0" x="23" x-axis-rotation="0" y="24"/>
  4730. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="26.992" x-axis-rotation="0" y="22.917"/>
  4731. <curve x1="24.648" x2="20.511" x3="16" y1="26.612" y2="29" y3="29"/>
  4732. <curve x1="10.29" x2="5.165" x3="3.538" y1="29" y2="25.182" y3="19.715"/>
  4733. <line x="1.621" y="20.285"/>
  4734. <curve x1="3.5" x2="9.411" x3="16" y1="26.594" y2="31" y3="31"/>
  4735. <curve x1="22.589" x2="28.501" x3="30.379" y1="31" y2="26.594" y3="20.285"/>
  4736. <close/>
  4737. </path>
  4738. <fillstroke/>
  4739. <ellipse h="4" w="4" x="28" y="14"/>
  4740. <fillstroke/>
  4741. <ellipse h="4" w="4" x="0" y="14"/>
  4742. <fillstroke/>
  4743. <ellipse h="4" w="4" x="14" y="14"/>
  4744. <fillstroke/>
  4745. <path>
  4746. <move x="16" y="1"/>
  4747. <curve x1="9.411" x2="3.499" x3="1.621" y1="1" y2="5.406" y3="11.715"/>
  4748. <line x="4.075" y="12.572"/>
  4749. <curve x1="5.198" x2="7.04" x3="9" y1="10.962" y2="10" y3="10"/>
  4750. <curve x1="10.96" x2="12.802" x3="13.925" y1="10" y2="10.961" y3="12.572"/>
  4751. <line x="15.565" y="11.428"/>
  4752. <arc large-arc-flag="0" rx="8.01" ry="8.01" sweep-flag="0" x="9" x-axis-rotation="0" y="8"/>
  4753. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="5.008" x-axis-rotation="0" y="9.084"/>
  4754. <curve x1="7.352" x2="11.489" x3="16" y1="5.388" y2="3" y3="3"/>
  4755. <curve x1="21.71" x2="26.835" x3="28.462" y1="3" y2="6.818" y3="12.285"/>
  4756. <line x="30.379" y="11.715"/>
  4757. <curve x1="28.5" x2="22.589" x3="16" y1="5.406" y2="1" y3="1"/>
  4758. </path>
  4759. <fillstroke/>
  4760. </foreground>
  4761. </shape>
  4762. <shape aspect="variable" h="32" name="ibm-z-os--containers" strokewidth="inherit" w="32">
  4763. <connections/>
  4764. <foreground>
  4765. <save/>
  4766. <rect h="32" w="32" x="0" y="0"/>
  4767. <stroke/>
  4768. <restore/>
  4769. <rect/>
  4770. <stroke/>
  4771. <path>
  4772. <move x="29" y="12"/>
  4773. <line x="20" y="12"/>
  4774. <line x="20" y="3"/>
  4775. <line x="29" y="3"/>
  4776. <close/>
  4777. <move x="22" y="10"/>
  4778. <line x="27" y="10"/>
  4779. <line x="27" y="5"/>
  4780. <line x="22" y="5"/>
  4781. <close/>
  4782. </path>
  4783. <fillstroke/>
  4784. <path>
  4785. <move x="20" y="15"/>
  4786. <line x="20" y="17"/>
  4787. <line x="27" y="17"/>
  4788. <line x="27" y="27"/>
  4789. <line x="17" y="27"/>
  4790. <line x="17" y="3"/>
  4791. <line x="5" y="3"/>
  4792. <curve x1="3.897" x2="3" x3="3" y1="3" y2="3.898" y3="5"/>
  4793. <line x="3" y="27"/>
  4794. <curve x1="3" x2="3.897" x3="5" y1="28.103" y2="29" y3="29"/>
  4795. <line x="27" y="29"/>
  4796. <curve x1="28.103" x2="29" x3="29" y1="29" y2="28.103" y3="27"/>
  4797. <line x="29" y="15"/>
  4798. <close/>
  4799. <move x="6.414" y="17"/>
  4800. <line x="15" y="17"/>
  4801. <line x="15" y="25.586"/>
  4802. <close/>
  4803. <move x="15" y="15"/>
  4804. <line x="6.414" y="15"/>
  4805. <line x="15" y="6.414"/>
  4806. <close/>
  4807. <move x="13.586" y="5"/>
  4808. <line x="5" y="13.586"/>
  4809. <line x="5" y="5"/>
  4810. <close/>
  4811. <move x="5" y="18.414"/>
  4812. <line x="13.586" y="27"/>
  4813. <line x="5" y="27"/>
  4814. <close/>
  4815. </path>
  4816. <fillstroke/>
  4817. </foreground>
  4818. </shape>
  4819. <shape aspect="variable" h="32" name="image-service" strokewidth="inherit" w="32">
  4820. <connections/>
  4821. <foreground>
  4822. <save/>
  4823. <rect h="32" w="32" x="0" y="0"/>
  4824. <stroke/>
  4825. <restore/>
  4826. <rect/>
  4827. <stroke/>
  4828. <path>
  4829. <move x="28" y="20"/>
  4830. <line x="26" y="20"/>
  4831. <line x="26" y="22"/>
  4832. <line x="28" y="22"/>
  4833. <line x="28" y="28"/>
  4834. <line x="4" y="28"/>
  4835. <line x="4" y="22"/>
  4836. <line x="6" y="22"/>
  4837. <line x="6" y="20"/>
  4838. <line x="4" y="20"/>
  4839. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="2" x-axis-rotation="0" y="22"/>
  4840. <line x="2" y="28"/>
  4841. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="30"/>
  4842. <line x="28" y="30"/>
  4843. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="30" x-axis-rotation="0" y="28"/>
  4844. <line x="30" y="22"/>
  4845. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="20"/>
  4846. </path>
  4847. <fillstroke/>
  4848. <ellipse h="2" w="2" x="6" y="24"/>
  4849. <fillstroke/>
  4850. <path>
  4851. <move x="13" y="4"/>
  4852. <line x="15" y="4"/>
  4853. <line x="15" y="12"/>
  4854. <line x="13" y="12"/>
  4855. <close/>
  4856. <move x="9" y="4"/>
  4857. <line x="11" y="4"/>
  4858. <line x="11" y="12"/>
  4859. <line x="9" y="12"/>
  4860. <close/>
  4861. <move x="21" y="12"/>
  4862. <line x="19" y="12"/>
  4863. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="17" x-axis-rotation="0" y="10"/>
  4864. <line x="17" y="6"/>
  4865. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="19" x-axis-rotation="0" y="4"/>
  4866. <line x="21" y="4"/>
  4867. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="23" x-axis-rotation="0" y="6"/>
  4868. <line x="23" y="10"/>
  4869. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="21" x-axis-rotation="0" y="12"/>
  4870. <move x="19" y="6"/>
  4871. <line x="19" y="10"/>
  4872. <line x="21" y="10"/>
  4873. <line x="21" y="6"/>
  4874. <close/>
  4875. <move x="21" y="14"/>
  4876. <line x="23" y="14"/>
  4877. <line x="23" y="22"/>
  4878. <line x="21" y="22"/>
  4879. <close/>
  4880. <move x="9" y="14"/>
  4881. <line x="11" y="14"/>
  4882. <line x="11" y="22"/>
  4883. <line x="9" y="22"/>
  4884. <close/>
  4885. <move x="17" y="22"/>
  4886. <line x="15" y="22"/>
  4887. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="13" x-axis-rotation="0" y="20"/>
  4888. <line x="13" y="16"/>
  4889. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="15" x-axis-rotation="0" y="14"/>
  4890. <line x="17" y="14"/>
  4891. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="19" x-axis-rotation="0" y="16"/>
  4892. <line x="19" y="20"/>
  4893. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="17" x-axis-rotation="0" y="22"/>
  4894. <move x="15" y="16"/>
  4895. <line x="15" y="20"/>
  4896. <line x="17" y="20"/>
  4897. <line x="17" y="16"/>
  4898. <close/>
  4899. </path>
  4900. <fillstroke/>
  4901. </foreground>
  4902. </shape>
  4903. <shape aspect="variable" h="32" name="infrastructure--classic" strokewidth="inherit" w="32">
  4904. <connections/>
  4905. <foreground>
  4906. <save/>
  4907. <rect h="32" w="32" x="0" y="0"/>
  4908. <stroke/>
  4909. <restore/>
  4910. <rect/>
  4911. <stroke/>
  4912. <path>
  4913. <move x="18" y="26"/>
  4914. <line x="30" y="26"/>
  4915. <line x="30" y="28"/>
  4916. <line x="18" y="28"/>
  4917. <close/>
  4918. <move x="18" y="21"/>
  4919. <line x="30" y="21"/>
  4920. <line x="30" y="23"/>
  4921. <line x="18" y="23"/>
  4922. <close/>
  4923. <move x="18" y="16"/>
  4924. <line x="30" y="16"/>
  4925. <line x="30" y="18"/>
  4926. <line x="18" y="18"/>
  4927. <close/>
  4928. </path>
  4929. <fillstroke/>
  4930. <path>
  4931. <move x="14" y="25"/>
  4932. <line x="9.5" y="25"/>
  4933. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="1" x="8.178" x-axis-rotation="0" y="10.124"/>
  4934. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="28" x-axis-rotation="0" y="12"/>
  4935. <line x="26" y="12"/>
  4936. <arc large-arc-flag="0" rx="7.999" ry="7.999" sweep-flag="0" x="10.05" x-axis-rotation="0" y="11.13"/>
  4937. <line x="9.96" y="11.964"/>
  4938. <line x="9.123" y="12.02"/>
  4939. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="0" x="9.5" x-axis-rotation="0" y="23"/>
  4940. <line x="14" y="23"/>
  4941. <close/>
  4942. </path>
  4943. <fillstroke/>
  4944. </foreground>
  4945. </shape>
  4946. <shape aspect="variable" h="32" name="load-balancer--application" strokewidth="inherit" w="32">
  4947. <connections/>
  4948. <foreground>
  4949. <save/>
  4950. <rect h="32" w="32" x="0" y="0"/>
  4951. <stroke/>
  4952. <restore/>
  4953. <rect/>
  4954. <stroke/>
  4955. <path>
  4956. <move x="4" y="26"/>
  4957. <line x="8" y="26"/>
  4958. <line x="8" y="30"/>
  4959. <line x="4" y="30"/>
  4960. <close/>
  4961. <move x="14" y="26"/>
  4962. <line x="18" y="26"/>
  4963. <line x="18" y="30"/>
  4964. <line x="14" y="30"/>
  4965. <close/>
  4966. <move x="24" y="26"/>
  4967. <line x="28" y="26"/>
  4968. <line x="28" y="30"/>
  4969. <line x="24" y="30"/>
  4970. <close/>
  4971. <move x="25" y="16"/>
  4972. <line x="17" y="16"/>
  4973. <line x="17" y="14"/>
  4974. <line x="15" y="14"/>
  4975. <line x="15" y="16"/>
  4976. <line x="7" y="16"/>
  4977. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="5" x-axis-rotation="0" y="18"/>
  4978. <line x="5" y="24"/>
  4979. <line x="7" y="24"/>
  4980. <line x="7" y="18"/>
  4981. <line x="15" y="18"/>
  4982. <line x="15" y="24"/>
  4983. <line x="17" y="24"/>
  4984. <line x="17" y="18"/>
  4985. <line x="25" y="18"/>
  4986. <line x="25" y="24"/>
  4987. <line x="27" y="24"/>
  4988. <line x="27" y="18"/>
  4989. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="25" x-axis-rotation="0" y="16"/>
  4990. <move x="9" y="2"/>
  4991. <line x="9" y="12"/>
  4992. <line x="23" y="12"/>
  4993. <line x="23" y="2"/>
  4994. <close/>
  4995. <move x="11" y="4"/>
  4996. <line x="13" y="4"/>
  4997. <line x="13" y="10"/>
  4998. <line x="11" y="10"/>
  4999. <close/>
  5000. <move x="21" y="10"/>
  5001. <line x="15" y="10"/>
  5002. <line x="15" y="4"/>
  5003. <line x="21" y="4"/>
  5004. <close/>
  5005. </path>
  5006. <fillstroke/>
  5007. </foreground>
  5008. </shape>
  5009. <shape aspect="variable" h="32" name="load-balancer--classic" strokewidth="inherit" w="32">
  5010. <connections/>
  5011. <foreground>
  5012. <save/>
  5013. <rect h="32" w="32" x="0" y="0"/>
  5014. <stroke/>
  5015. <restore/>
  5016. <rect/>
  5017. <stroke/>
  5018. <path>
  5019. <move x="4" y="26"/>
  5020. <line x="8" y="26"/>
  5021. <line x="8" y="30"/>
  5022. <line x="4" y="30"/>
  5023. <close/>
  5024. <move x="14" y="26"/>
  5025. <line x="18" y="26"/>
  5026. <line x="18" y="30"/>
  5027. <line x="14" y="30"/>
  5028. <close/>
  5029. <move x="24" y="26"/>
  5030. <line x="28" y="26"/>
  5031. <line x="28" y="30"/>
  5032. <line x="24" y="30"/>
  5033. <close/>
  5034. <move x="25" y="16"/>
  5035. <line x="17" y="16"/>
  5036. <line x="17" y="12"/>
  5037. <line x="15" y="12"/>
  5038. <line x="15" y="16"/>
  5039. <line x="7" y="16"/>
  5040. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="5" x-axis-rotation="0" y="18"/>
  5041. <line x="5" y="24"/>
  5042. <line x="7" y="24"/>
  5043. <line x="7" y="18"/>
  5044. <line x="15" y="18"/>
  5045. <line x="15" y="24"/>
  5046. <line x="17" y="24"/>
  5047. <line x="17" y="18"/>
  5048. <line x="25" y="18"/>
  5049. <line x="25" y="24"/>
  5050. <line x="27" y="24"/>
  5051. <line x="27" y="18"/>
  5052. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="25" x-axis-rotation="0" y="16"/>
  5053. <move x="20" y="10"/>
  5054. <line x="20" y="2"/>
  5055. <line x="12" y="2"/>
  5056. <line x="12" y="10"/>
  5057. <close/>
  5058. <move x="14" y="8"/>
  5059. <line x="14" y="4"/>
  5060. <line x="18" y="4"/>
  5061. <line x="18" y="8"/>
  5062. <close/>
  5063. </path>
  5064. <fillstroke/>
  5065. </foreground>
  5066. </shape>
  5067. <shape aspect="variable" h="32" name="load-balancer--global" strokewidth="inherit" w="32">
  5068. <connections/>
  5069. <foreground>
  5070. <save/>
  5071. <rect h="32" w="32" x="0" y="0"/>
  5072. <stroke/>
  5073. <restore/>
  5074. <rect/>
  5075. <stroke/>
  5076. <path>
  5077. <move x="4" y="26"/>
  5078. <line x="8" y="26"/>
  5079. <line x="8" y="30"/>
  5080. <line x="4" y="30"/>
  5081. <close/>
  5082. <move x="14" y="26"/>
  5083. <line x="18" y="26"/>
  5084. <line x="18" y="30"/>
  5085. <line x="14" y="30"/>
  5086. <close/>
  5087. <move x="24" y="26"/>
  5088. <line x="28" y="26"/>
  5089. <line x="28" y="30"/>
  5090. <line x="24" y="30"/>
  5091. <close/>
  5092. <move x="25" y="16"/>
  5093. <line x="17" y="16"/>
  5094. <line x="17" y="12"/>
  5095. <line x="15" y="12"/>
  5096. <line x="15" y="16"/>
  5097. <line x="7" y="16"/>
  5098. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="5" x-axis-rotation="0" y="18"/>
  5099. <line x="5" y="24"/>
  5100. <line x="7" y="24"/>
  5101. <line x="7" y="18"/>
  5102. <line x="15" y="18"/>
  5103. <line x="15" y="24"/>
  5104. <line x="17" y="24"/>
  5105. <line x="17" y="18"/>
  5106. <line x="25" y="18"/>
  5107. <line x="25" y="24"/>
  5108. <line x="27" y="24"/>
  5109. <line x="27" y="18"/>
  5110. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="25" x-axis-rotation="0" y="16"/>
  5111. <close/>
  5112. <move x="16" y="10"/>
  5113. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="6"/>
  5114. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="16" x-axis-rotation="0" y="10"/>
  5115. <close/>
  5116. <move x="16" y="4"/>
  5117. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="18" x-axis-rotation="0" y="6"/>
  5118. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="16" x-axis-rotation="0" y="4"/>
  5119. <close/>
  5120. </path>
  5121. <fillstroke/>
  5122. </foreground>
  5123. </shape>
  5124. <shape aspect="variable" h="32" name="load-balancer--network" strokewidth="inherit" w="32">
  5125. <connections/>
  5126. <foreground>
  5127. <save/>
  5128. <rect h="32" w="32" x="0" y="0"/>
  5129. <stroke/>
  5130. <restore/>
  5131. <rect/>
  5132. <stroke/>
  5133. <path>
  5134. <move x="25" y="16"/>
  5135. <line x="17" y="16"/>
  5136. <line x="17" y="12"/>
  5137. <line x="15" y="12"/>
  5138. <line x="15" y="16"/>
  5139. <line x="7" y="16"/>
  5140. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="5" x-axis-rotation="0" y="18"/>
  5141. <line x="5" y="22"/>
  5142. <line x="7" y="22"/>
  5143. <line x="7" y="18"/>
  5144. <line x="15" y="18"/>
  5145. <line x="15" y="22"/>
  5146. <line x="17" y="22"/>
  5147. <line x="17" y="18"/>
  5148. <line x="25" y="18"/>
  5149. <line x="25" y="22"/>
  5150. <line x="27" y="22"/>
  5151. <line x="27" y="18"/>
  5152. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="25" x-axis-rotation="0" y="16"/>
  5153. <move x="20" y="10"/>
  5154. <line x="20" y="2"/>
  5155. <line x="12" y="2"/>
  5156. <line x="12" y="10"/>
  5157. <close/>
  5158. <move x="14" y="8"/>
  5159. <line x="14" y="4"/>
  5160. <line x="18" y="4"/>
  5161. <line x="18" y="8"/>
  5162. <close/>
  5163. <move x="26" y="24"/>
  5164. <arc large-arc-flag="0" rx="2.995" ry="2.995" sweep-flag="0" x="23.184" x-axis-rotation="0" y="26"/>
  5165. <line x="18.816" y="26"/>
  5166. <arc large-arc-flag="0" rx="2.982" ry="2.982" sweep-flag="0" x="13.184" x-axis-rotation="0" y="26"/>
  5167. <line x="8.816" y="26"/>
  5168. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="8.816" x-axis-rotation="0" y="28"/>
  5169. <line x="13.184" y="28"/>
  5170. <arc large-arc-flag="0" rx="2.982" ry="2.982" sweep-flag="0" x="18.816" x-axis-rotation="0" y="28"/>
  5171. <line x="23.184" y="28"/>
  5172. <arc large-arc-flag="1" rx="2.995" ry="2.995" sweep-flag="0" x="26" x-axis-rotation="0" y="24"/>
  5173. <move x="6" y="28"/>
  5174. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="7" x-axis-rotation="0" y="27"/>
  5175. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="6" x-axis-rotation="0" y="28"/>
  5176. <move x="16" y="28"/>
  5177. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="17" x-axis-rotation="0" y="27"/>
  5178. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="16" x-axis-rotation="0" y="28"/>
  5179. <move x="26" y="28"/>
  5180. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="27" x-axis-rotation="0" y="27"/>
  5181. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="26" x-axis-rotation="0" y="28"/>
  5182. </path>
  5183. <fillstroke/>
  5184. </foreground>
  5185. </shape>
  5186. <shape aspect="variable" h="32" name="load-balancer--vpc" strokewidth="inherit" w="32">
  5187. <connections/>
  5188. <foreground>
  5189. <save/>
  5190. <rect h="32" w="32" x="0" y="0"/>
  5191. <stroke/>
  5192. <restore/>
  5193. <rect/>
  5194. <stroke/>
  5195. <path>
  5196. <move x="8" y="30"/>
  5197. <line x="2" y="30"/>
  5198. <line x="2" y="24"/>
  5199. <line x="8" y="24"/>
  5200. <close/>
  5201. <move x="4" y="28"/>
  5202. <line x="6" y="28"/>
  5203. <line x="6" y="26"/>
  5204. <line x="4" y="26"/>
  5205. <close/>
  5206. <move x="19" y="30"/>
  5207. <line x="13" y="30"/>
  5208. <line x="13" y="24"/>
  5209. <line x="19" y="24"/>
  5210. <close/>
  5211. <move x="15" y="28"/>
  5212. <line x="17" y="28"/>
  5213. <line x="17" y="26"/>
  5214. <line x="15" y="26"/>
  5215. <close/>
  5216. <move x="30" y="30"/>
  5217. <line x="24" y="30"/>
  5218. <line x="24" y="24"/>
  5219. <line x="30" y="24"/>
  5220. <close/>
  5221. <move x="26" y="28"/>
  5222. <line x="28" y="28"/>
  5223. <line x="28" y="26"/>
  5224. <line x="26" y="26"/>
  5225. <close/>
  5226. <move x="16" y="10"/>
  5227. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="6"/>
  5228. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="16" x-axis-rotation="0" y="10"/>
  5229. <close/>
  5230. <move x="16" y="4"/>
  5231. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="18" x-axis-rotation="0" y="6"/>
  5232. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="16" x-axis-rotation="0" y="4"/>
  5233. <close/>
  5234. <move x="26" y="16"/>
  5235. <line x="21" y="16"/>
  5236. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="17" x-axis-rotation="0" y="12"/>
  5237. <line x="15" y="12"/>
  5238. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="1" x="11" x-axis-rotation="0" y="16"/>
  5239. <line x="6" y="16"/>
  5240. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="4" x-axis-rotation="0" y="18"/>
  5241. <line x="4" y="22"/>
  5242. <line x="6" y="22"/>
  5243. <line x="6" y="18"/>
  5244. <line x="11" y="18"/>
  5245. <arc large-arc-flag="0" rx="5.97" ry="5.97" sweep-flag="0" x="15" x-axis-rotation="0" y="16.46"/>
  5246. <line x="15" y="22"/>
  5247. <line x="17" y="22"/>
  5248. <line x="17" y="16.46"/>
  5249. <arc large-arc-flag="0" rx="5.97" ry="5.97" sweep-flag="0" x="21" x-axis-rotation="0" y="18"/>
  5250. <line x="26" y="18"/>
  5251. <line x="26" y="22"/>
  5252. <line x="28" y="22"/>
  5253. <line x="28" y="18"/>
  5254. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="26" x-axis-rotation="0" y="16"/>
  5255. <close/>
  5256. </path>
  5257. <fillstroke/>
  5258. </foreground>
  5259. </shape>
  5260. <shape aspect="variable" h="32" name="location" strokewidth="inherit" w="32">
  5261. <connections/>
  5262. <foreground>
  5263. <save/>
  5264. <rect h="32" w="32" x="0" y="0"/>
  5265. <stroke/>
  5266. <restore/>
  5267. <rect/>
  5268. <stroke/>
  5269. <path>
  5270. <move x="16" y="18"/>
  5271. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="1" x="21" x-axis-rotation="0" y="13"/>
  5272. <arc large-arc-flag="0" rx="5.006" ry="5.006" sweep-flag="1" x="16" x-axis-rotation="0" y="18"/>
  5273. <close/>
  5274. <move x="16" y="10"/>
  5275. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="19" x-axis-rotation="0" y="13"/>
  5276. <arc large-arc-flag="0" rx="3.003" ry="3.003" sweep-flag="0" x="16" x-axis-rotation="0" y="10"/>
  5277. <close/>
  5278. </path>
  5279. <fillstroke/>
  5280. <path>
  5281. <move x="16" y="30"/>
  5282. <line x="7.564" y="20.051"/>
  5283. <arc large-arc-flag="0" rx="35.076" ry="35.076" sweep-flag="1" x="7.216" x-axis-rotation="0" y="19.6"/>
  5284. <arc large-arc-flag="0" rx="10.889" ry="10.889" sweep-flag="1" x="5" x-axis-rotation="0" y="13"/>
  5285. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="27" x-axis-rotation="0" y="13"/>
  5286. <arc large-arc-flag="0" rx="10.884" ry="10.884" sweep-flag="1" x="24.785" x-axis-rotation="0" y="19.597"/>
  5287. <line x="24.784" y="19.6"/>
  5288. <curve x1="24.783" x2="24.484" x3="24.439" y1="19.603" y2="19.994" y3="20.047"/>
  5289. <close/>
  5290. <move x="8.812" y="18.395"/>
  5291. <curve x1="8.814" x2="9.046" x3="9.099" y1="18.395" y2="18.703" y3="18.769"/>
  5292. <line x="16" y="26.908"/>
  5293. <line x="22.91" y="18.758"/>
  5294. <curve x1="22.954" x2="23.188" x3="23.189" y1="18.703" y2="18.393" y3="18.392"/>
  5295. <arc large-arc-flag="0" rx="8.901" ry="8.901" sweep-flag="0" x="25" x-axis-rotation="0" y="13"/>
  5296. <arc large-arc-flag="1" rx="9" ry="9" sweep-flag="0" x="7" x-axis-rotation="0" y="13"/>
  5297. <arc large-arc-flag="0" rx="8.905" ry="8.905" sweep-flag="0" x="8.813" x-axis-rotation="0" y="18.395"/>
  5298. <close/>
  5299. </path>
  5300. <fillstroke/>
  5301. </foreground>
  5302. </shape>
  5303. <shape aspect="variable" h="32" name="logo--ansible-community" strokewidth="inherit" w="32">
  5304. <connections/>
  5305. <foreground>
  5306. <save/>
  5307. <rect h="32" w="32" x="0" y="0"/>
  5308. <stroke/>
  5309. <restore/>
  5310. <rect/>
  5311. <stroke/>
  5312. <path>
  5313. <move x="27.8" y="27.7"/>
  5314. <line x="17.5" y="3.1"/>
  5315. <curve x1="17.2" x2="16.6" x3="15.9" y1="2.4" y2="2" y3="2"/>
  5316. <curve x1="15.2" x2="14.6" x3="14.3" y1="2" y2="2.4" y3="3.1"/>
  5317. <line x="3" y="30"/>
  5318. <line x="6.9" y="30"/>
  5319. <line x="11.4" y="18.9"/>
  5320. <line x="24.7" y="29.6"/>
  5321. <curve x1="25.2" x2="25.6" x3="26.1" y1="30" y2="30.2" y3="30.2"/>
  5322. <curve x1="27.1" x2="28" x3="28" y1="30.2" y2="29.5" y3="28.4"/>
  5323. <curve x1="28" x2="27.9" x3="27.8" y1="28.2" y2="28" y3="27.7"/>
  5324. <move x="15.9" y="7.5"/>
  5325. <line x="22.6" y="23.9"/>
  5326. <line x="12.5" y="16"/>
  5327. <close/>
  5328. </path>
  5329. <fillstroke/>
  5330. </foreground>
  5331. </shape>
  5332. <shape aspect="variable" h="32" name="logo--gitlab" strokewidth="inherit" w="32">
  5333. <connections/>
  5334. <foreground>
  5335. <save/>
  5336. <rect h="32" w="32" x="0" y="0"/>
  5337. <stroke/>
  5338. <restore/>
  5339. <rect/>
  5340. <stroke/>
  5341. <path>
  5342. <move x="28.568" y="12.893"/>
  5343. <line x="28.531" y="12.799"/>
  5344. <line x="24.992" y="3.564"/>
  5345. <arc large-arc-flag="0" rx="0.922" ry="0.922" sweep-flag="0" x="24.628" x-axis-rotation="0" y="3.125"/>
  5346. <arc large-arc-flag="0" rx="0.948" ry="0.948" sweep-flag="0" x="23.545" x-axis-rotation="0" y="3.183"/>
  5347. <arc large-arc-flag="0" rx="0.948" ry="0.948" sweep-flag="0" x="23.231" x-axis-rotation="0" y="3.66"/>
  5348. <line x="20.841" y="10.97"/>
  5349. <line x="11.166" y="10.97"/>
  5350. <line x="8.776" y="3.66"/>
  5351. <arc large-arc-flag="0" rx="0.928" ry="0.928" sweep-flag="0" x="8.463" x-axis-rotation="0" y="3.182"/>
  5352. <arc large-arc-flag="0" rx="0.948" ry="0.948" sweep-flag="0" x="7.38" x-axis-rotation="0" y="3.124"/>
  5353. <arc large-arc-flag="0" rx="0.93" ry="0.93" sweep-flag="0" x="7.015" x-axis-rotation="0" y="3.562"/>
  5354. <line x="3.47" y="12.794"/>
  5355. <line x="3.435" y="12.887"/>
  5356. <arc large-arc-flag="0" rx="6.571" ry="6.571" sweep-flag="0" x="5.615" x-axis-rotation="0" y="20.482"/>
  5357. <line x="5.626" y="20.492"/>
  5358. <line x="5.659" y="20.514"/>
  5359. <line x="11.049" y="24.551"/>
  5360. <line x="13.717" y="26.57"/>
  5361. <line x="15.341" y="27.796"/>
  5362. <curve x1="15.731" x2="16.272" x3="16.663" y1="28.093" y2="28.093" y3="27.796"/>
  5363. <line x="18.287" y="26.57"/>
  5364. <line x="20.954" y="24.551"/>
  5365. <line x="26.378" y="20.49"/>
  5366. <line x="26.391" y="20.48"/>
  5367. <arc large-arc-flag="0" rx="6.574" ry="6.574" sweep-flag="0" x="28.568" x-axis-rotation="0" y="12.892"/>
  5368. <close/>
  5369. </path>
  5370. <fillstroke/>
  5371. </foreground>
  5372. </shape>
  5373. <shape aspect="variable" h="32" name="logo--openshift" strokewidth="inherit" w="32">
  5374. <connections/>
  5375. <foreground>
  5376. <save/>
  5377. <rect h="32" w="32" x="0" y="0"/>
  5378. <stroke/>
  5379. <restore/>
  5380. <rect/>
  5381. <stroke/>
  5382. <path>
  5383. <move x="26.461" y="15.797"/>
  5384. <arc large-arc-flag="0" rx="12.135" ry="12.135" sweep-flag="0" x="25.282" x-axis-rotation="0" y="11.48"/>
  5385. <line x="29" y="10.13"/>
  5386. <arc large-arc-flag="0" rx="11.988" ry="11.988" sweep-flag="0" x="27.972" x-axis-rotation="0" y="8.392"/>
  5387. <line x="26.229" y="9.027"/>
  5388. <arc large-arc-flag="0" rx="11.988" ry="11.988" sweep-flag="0" x="4.519" x-axis-rotation="0" y="16.94"/>
  5389. <line x="6.266" y="16.298"/>
  5390. <arc large-arc-flag="0" rx="12.19" ry="12.19" sweep-flag="0" x="6.597" x-axis-rotation="0" y="18.283"/>
  5391. <line x="2.884" y="19.638"/>
  5392. <arc large-arc-flag="0" rx="12.145" ry="12.145" sweep-flag="0" x="4.757" x-axis-rotation="0" y="23.7"/>
  5393. <line x="6.723" y="22.984"/>
  5394. <line x="6.725" y="22.988"/>
  5395. <arc large-arc-flag="0" rx="11.886" ry="11.886" sweep-flag="0" x="11.395" x-axis-rotation="0" y="26.878"/>
  5396. <arc large-arc-flag="0" rx="12.013" ry="12.013" sweep-flag="0" x="27.34" x-axis-rotation="0" y="21.074"/>
  5397. <arc large-arc-flag="0" rx="11.873" ry="11.873" sweep-flag="0" x="28.42" x-axis-rotation="0" y="15.082"/>
  5398. <close/>
  5399. <move x="23.541" y="19.293"/>
  5400. <arc large-arc-flag="0" rx="7.8" ry="7.8" sweep-flag="1" x="13.188" x-axis-rotation="0" y="23.068"/>
  5401. <arc large-arc-flag="0" rx="7.72" ry="7.72" sweep-flag="1" x="10.917" x-axis-rotation="0" y="21.455"/>
  5402. <line x="8.932" y="22.179"/>
  5403. <arc large-arc-flag="0" rx="7.84" ry="7.84" sweep-flag="1" x="6.858" x-axis-rotation="0" y="18.189"/>
  5404. <line x="10.583" y="16.832"/>
  5405. <arc large-arc-flag="0" rx="7.817" ry="7.817" sweep-flag="1" x="10.46" x-axis-rotation="0" y="14.766"/>
  5406. <line x="8.708" y="15.403"/>
  5407. <arc large-arc-flag="0" rx="7.773" ry="7.773" sweep-flag="1" x="19.765" x-axis-rotation="0" y="8.94"/>
  5408. <line x="19.771" y="8.94"/>
  5409. <arc large-arc-flag="0" rx="7.744" ry="7.744" sweep-flag="1" x="22.036" x-axis-rotation="0" y="10.555"/>
  5410. <line x="23.78" y="9.921"/>
  5411. <arc large-arc-flag="0" rx="7.801" ry="7.801" sweep-flag="1" x="25.009" x-axis-rotation="0" y="11.577"/>
  5412. <line x="21.299" y="12.937"/>
  5413. <arc large-arc-flag="0" rx="7.824" ry="7.824" sweep-flag="1" x="22.276" x-axis-rotation="0" y="17.325"/>
  5414. <line x="24.244" y="16.609"/>
  5415. <arc large-arc-flag="0" rx="7.671" ry="7.671" sweep-flag="1" x="23.541" x-axis-rotation="0" y="19.293"/>
  5416. <close/>
  5417. </path>
  5418. <fillstroke/>
  5419. </foreground>
  5420. </shape>
  5421. <shape aspect="variable" h="32" name="microservices--1" strokewidth="inherit" w="32">
  5422. <connections/>
  5423. <foreground>
  5424. <save/>
  5425. <rect h="32" w="32" x="0" y="0"/>
  5426. <stroke/>
  5427. <restore/>
  5428. <rect/>
  5429. <stroke/>
  5430. <path>
  5431. <move x="11" y="21"/>
  5432. <line x="7" y="18.8"/>
  5433. <line x="7" y="14.3"/>
  5434. <line x="11" y="12.1"/>
  5435. <line x="15" y="14.3"/>
  5436. <line x="15" y="18.8"/>
  5437. <close/>
  5438. <move x="9" y="17.6"/>
  5439. <line x="11" y="18.7"/>
  5440. <line x="13" y="17.6"/>
  5441. <line x="13" y="15.4"/>
  5442. <line x="11" y="14.3"/>
  5443. <line x="9" y="15.4"/>
  5444. <close/>
  5445. <move x="6" y="30"/>
  5446. <line x="2" y="27.8"/>
  5447. <line x="2" y="23.3"/>
  5448. <line x="6" y="21"/>
  5449. <line x="10" y="23.2"/>
  5450. <line x="10" y="27.7"/>
  5451. <close/>
  5452. <move x="4" y="26.6"/>
  5453. <line x="6" y="27.7"/>
  5454. <line x="8" y="26.6"/>
  5455. <line x="8" y="24.4"/>
  5456. <line x="6" y="23.3"/>
  5457. <line x="4" y="24.4"/>
  5458. <close/>
  5459. <move x="16" y="30"/>
  5460. <line x="12" y="27.8"/>
  5461. <line x="12" y="23.3"/>
  5462. <line x="16" y="21.1"/>
  5463. <line x="20" y="23.3"/>
  5464. <line x="20" y="27.8"/>
  5465. <close/>
  5466. <move x="14" y="26.6"/>
  5467. <line x="16" y="27.7"/>
  5468. <line x="18" y="26.6"/>
  5469. <line x="18" y="24.4"/>
  5470. <line x="16" y="23.3"/>
  5471. <line x="14" y="24.4"/>
  5472. <close/>
  5473. <move x="26" y="30"/>
  5474. <line x="22" y="27.8"/>
  5475. <line x="22" y="23.3"/>
  5476. <line x="26" y="21.1"/>
  5477. <line x="30" y="23.3"/>
  5478. <line x="30" y="27.8"/>
  5479. <close/>
  5480. <move x="24" y="26.6"/>
  5481. <line x="26" y="27.7"/>
  5482. <line x="28" y="26.6"/>
  5483. <line x="28" y="24.4"/>
  5484. <line x="26" y="23.3"/>
  5485. <line x="24" y="24.4"/>
  5486. <close/>
  5487. <move x="24.6" y="11.6"/>
  5488. <line x="22" y="14.2"/>
  5489. <line x="22" y="9.4"/>
  5490. <line x="25" y="7.7"/>
  5491. <line x="25" y="3.2"/>
  5492. <line x="21" y="1"/>
  5493. <line x="17" y="3.2"/>
  5494. <line x="17" y="7.7"/>
  5495. <line x="20" y="9.4"/>
  5496. <line x="20" y="14.1"/>
  5497. <line x="17.4" y="11.5"/>
  5498. <line x="16" y="13"/>
  5499. <line x="21" y="18"/>
  5500. <line x="26" y="13"/>
  5501. <close/>
  5502. <move x="19" y="4.4"/>
  5503. <line x="21" y="3.3"/>
  5504. <line x="23" y="4.4"/>
  5505. <line x="23" y="6.6"/>
  5506. <line x="21" y="7.7"/>
  5507. <line x="19" y="6.6"/>
  5508. <close/>
  5509. </path>
  5510. <fillstroke/>
  5511. <path>
  5512. <move x="0" y="0"/>
  5513. <line x="32" y="0"/>
  5514. <line x="32" y="32"/>
  5515. <line x="0" y="32"/>
  5516. <close/>
  5517. </path>
  5518. <stroke/>
  5519. </foreground>
  5520. </shape>
  5521. <shape aspect="variable" h="32" name="network--enterprise" strokewidth="inherit" w="32.319">
  5522. <connections/>
  5523. <foreground>
  5524. <save/>
  5525. <rect h="32" w="32" x="0.319" y="0"/>
  5526. <stroke/>
  5527. <restore/>
  5528. <rect/>
  5529. <stroke/>
  5530. <path>
  5531. <move x="26.117" y="10"/>
  5532. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="6.497" x-axis-rotation="0" y="10.124"/>
  5533. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="0" x="7.819" x-axis-rotation="0" y="25"/>
  5534. <line x="8.319" y="25"/>
  5535. <line x="8.319" y="23"/>
  5536. <line x="7.819" y="23"/>
  5537. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="1" x="7.442" x-axis-rotation="0" y="12.02"/>
  5538. <line x="8.279" y="11.963"/>
  5539. <line x="8.369" y="11.13"/>
  5540. <arc large-arc-flag="0" rx="7.993" ry="7.993" sweep-flag="1" x="24.055" x-axis-rotation="0" y="10"/>
  5541. <close/>
  5542. </path>
  5543. <fillstroke/>
  5544. <path>
  5545. <move x="28.319" y="12"/>
  5546. <line x="18.319" y="12"/>
  5547. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="16.319" x-axis-rotation="0" y="14"/>
  5548. <line x="16.319" y="18"/>
  5549. <line x="12.319" y="18"/>
  5550. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="10.319" x-axis-rotation="0" y="20"/>
  5551. <line x="10.319" y="30"/>
  5552. <line x="30.319" y="30"/>
  5553. <line x="30.319" y="14"/>
  5554. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="28.319" x-axis-rotation="0" y="12"/>
  5555. <close/>
  5556. <move x="12.319" y="28"/>
  5557. <line x="12.319" y="20"/>
  5558. <line x="16.319" y="20"/>
  5559. <line x="16.319" y="28"/>
  5560. <close/>
  5561. <move x="28.319" y="28"/>
  5562. <line x="18.319" y="28"/>
  5563. <line x="18.319" y="14"/>
  5564. <line x="28.319" y="14"/>
  5565. <close/>
  5566. </path>
  5567. <fillstroke/>
  5568. <path>
  5569. <move x="20.319" y="16"/>
  5570. <line x="22.319" y="16"/>
  5571. <line x="22.319" y="20"/>
  5572. <line x="20.319" y="20"/>
  5573. <close/>
  5574. <move x="24.319" y="16"/>
  5575. <line x="26.319" y="16"/>
  5576. <line x="26.319" y="20"/>
  5577. <line x="24.319" y="20"/>
  5578. <close/>
  5579. <move x="20.319" y="22"/>
  5580. <line x="22.319" y="22"/>
  5581. <line x="22.319" y="26"/>
  5582. <line x="20.319" y="26"/>
  5583. <close/>
  5584. <move x="24.319" y="22"/>
  5585. <line x="26.319" y="22"/>
  5586. <line x="26.319" y="26"/>
  5587. <line x="24.319" y="26"/>
  5588. <close/>
  5589. </path>
  5590. <fillstroke/>
  5591. </foreground>
  5592. </shape>
  5593. <shape aspect="variable" h="32" name="network--overlay" strokewidth="inherit" w="32.638">
  5594. <connections/>
  5595. <foreground>
  5596. <save/>
  5597. <rect h="32" w="32" x="0.319" y="0"/>
  5598. <stroke/>
  5599. <restore/>
  5600. <rect/>
  5601. <stroke/>
  5602. <path>
  5603. <move x="22.319" y="23"/>
  5604. <line x="14.149" y="23"/>
  5605. <line x="16.729" y="20.41"/>
  5606. <line x="15.319" y="19"/>
  5607. <line x="10.319" y="24"/>
  5608. <line x="15.319" y="29"/>
  5609. <line x="16.729" y="27.59"/>
  5610. <line x="14.149" y="25"/>
  5611. <line x="22.319" y="25"/>
  5612. <line x="22.319" y="23"/>
  5613. <close/>
  5614. <move x="11.319" y="13"/>
  5615. <line x="19.489" y="13"/>
  5616. <line x="16.909" y="10.41"/>
  5617. <line x="18.319" y="9"/>
  5618. <line x="23.319" y="14"/>
  5619. <line x="18.319" y="19"/>
  5620. <line x="16.909" y="17.59"/>
  5621. <line x="19.489" y="15"/>
  5622. <line x="11.319" y="15"/>
  5623. <line x="11.319" y="13"/>
  5624. <close/>
  5625. </path>
  5626. <fillstroke/>
  5627. <path>
  5628. <move x="24.819" y="25"/>
  5629. <line x="24.319" y="25"/>
  5630. <line x="24.319" y="23"/>
  5631. <line x="24.819" y="23"/>
  5632. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="0" x="25.196" x-axis-rotation="0" y="12.02"/>
  5633. <line x="24.359" y="11.964"/>
  5634. <line x="24.269" y="11.13"/>
  5635. <arc large-arc-flag="0" rx="7.998" ry="7.998" sweep-flag="0" x="8.369" x-axis-rotation="0" y="11.13"/>
  5636. <line x="8.279" y="11.964"/>
  5637. <line x="7.442" y="12.021"/>
  5638. <arc large-arc-flag="0" rx="5.496" ry="5.496" sweep-flag="0" x="7.819" x-axis-rotation="0" y="23"/>
  5639. <line x="8.319" y="23"/>
  5640. <line x="8.319" y="25"/>
  5641. <line x="7.819" y="25"/>
  5642. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="1" x="6.497" x-axis-rotation="0" y="10.124"/>
  5643. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="26.141" x-axis-rotation="0" y="10.124"/>
  5644. <arc large-arc-flag="0" rx="7.496" ry="7.496" sweep-flag="1" x="24.819" x-axis-rotation="0" y="25"/>
  5645. <close/>
  5646. </path>
  5647. <fillstroke/>
  5648. </foreground>
  5649. </shape>
  5650. <shape aspect="variable" h="32" name="network--public" strokewidth="inherit" w="32">
  5651. <connections/>
  5652. <foreground>
  5653. <save/>
  5654. <rect h="32" w="32" x="0" y="0"/>
  5655. <stroke/>
  5656. <restore/>
  5657. <rect/>
  5658. <stroke/>
  5659. <path>
  5660. <move x="22.5" y="13"/>
  5661. <curve x1="17.8" x2="14" x3="14" y1="13" y2="16.8" y3="21.5"/>
  5662. <curve x1="14" x2="17.8" x3="22.5" y1="26.2" y2="30" y3="30"/>
  5663. <curve x1="27.2" x2="31" x3="31" y1="30" y2="26.2" y3="21.5"/>
  5664. <curve x1="31" x2="27.2" x3="22.5" y1="16.8" y2="13" y3="13"/>
  5665. <close/>
  5666. <move x="29" y="21"/>
  5667. <line x="26" y="21"/>
  5668. <curve x1="26" x2="25.7" x3="25.1" y1="19" y2="17" y3="15.5"/>
  5669. <curve x1="27.2" x2="28.8" x3="29" y1="16.5" y2="18.5" y3="21"/>
  5670. <close/>
  5671. <move x="22.5" y="28"/>
  5672. <curve x1="22.1" x2="21.2" x3="21" y1="27.8" y2="26.2" y3="23"/>
  5673. <line x="23.9" y="23"/>
  5674. <curve x1="23.7" x2="22.9" x3="22.5" y1="26.2" y2="27.8" y3="28"/>
  5675. <close/>
  5676. <move x="21" y="21"/>
  5677. <curve x1="21.1" x2="22.1" x3="22.4" y1="17.2" y2="15.2" y3="15"/>
  5678. <curve x1="22.8" x2="23.8" x3="23.9" y1="15.2" y2="17.2" y3="21"/>
  5679. <line x="21" y="21"/>
  5680. <close/>
  5681. <move x="19.9" y="15.5"/>
  5682. <curve x1="19.3" x2="19.1" x3="19" y1="17" y2="19" y3="21"/>
  5683. <line x="16" y="21"/>
  5684. <curve x1="16.2" x2="17.8" x3="19.9" y1="18.5" y2="16.5" y3="15.5"/>
  5685. <close/>
  5686. <move x="16.2" y="23"/>
  5687. <line x="19" y="23"/>
  5688. <curve x1="19.1" x2="19.4" x3="19.9" y1="24.6" y2="26.2" y3="27.5"/>
  5689. <curve x1="18.1" x2="16.7" x3="16.2" y1="26.7" y2="25" y3="23"/>
  5690. <close/>
  5691. <move x="25.1" y="27.5"/>
  5692. <curve x1="25.6" x2="25.9" x3="26" y1="26.2" y2="24.7" y3="23"/>
  5693. <line x="28.9" y="23"/>
  5694. <curve x1="28.3" x2="26.9" x3="25.1" y1="25" y2="26.7" y3="27.5"/>
  5695. <close/>
  5696. </path>
  5697. <fillstroke/>
  5698. <path>
  5699. <move x="25.8" y="10"/>
  5700. <curve x1="24.9" x2="20.8" x3="16" y1="5.4" y2="2" y3="2"/>
  5701. <curve x1="11.2" x2="7.1" x3="6.2" y1="2" y2="5.4" y3="10.1"/>
  5702. <curve x1="2.7" x2="0" x3="0" y1="10.8" y2="13.8" y3="17.5"/>
  5703. <curve x1="0" x2="3.4" x3="7.5" y1="21.6" y2="25" y3="25"/>
  5704. <line x="11" y="25"/>
  5705. <line x="11" y="23"/>
  5706. <line x="7.5" y="23"/>
  5707. <curve x1="4.5" x2="2" x3="2" y1="23" y2="20.5" y3="17.5"/>
  5708. <curve x1="2" x2="4.2" x3="7.1" y1="14.6" y2="12.2" y3="12"/>
  5709. <line x="8" y="12"/>
  5710. <line x="8" y="11.1"/>
  5711. <curve x1="8.5" x2="11.9" x3="16" y1="7.1" y2="4" y3="4"/>
  5712. <curve x1="19.7" x2="22.8" x3="23.7" y1="4" y2="6.6" y3="10"/>
  5713. <line x="25.8" y="10"/>
  5714. <close/>
  5715. </path>
  5716. <fillstroke/>
  5717. </foreground>
  5718. </shape>
  5719. <shape aspect="variable" h="32" name="network-interface" strokewidth="inherit" w="32">
  5720. <connections/>
  5721. <foreground>
  5722. <save/>
  5723. <rect h="32" w="32" x="0" y="0"/>
  5724. <stroke/>
  5725. <restore/>
  5726. <rect/>
  5727. <stroke/>
  5728. <path>
  5729. <move x="28" y="18"/>
  5730. <line x="26" y="18"/>
  5731. <line x="26" y="6"/>
  5732. <line x="13" y="6"/>
  5733. <line x="13" y="4"/>
  5734. <line x="26" y="4"/>
  5735. <curve x1="27.103" x2="28" x3="28" y1="4" y2="4.897" y3="6"/>
  5736. <close/>
  5737. <move x="18" y="28"/>
  5738. <line x="6" y="28"/>
  5739. <curve x1="4.897" x2="4" x3="4" y1="28" y2="27.103" y3="26"/>
  5740. <line x="4" y="13"/>
  5741. <line x="6" y="13"/>
  5742. <line x="6" y="26"/>
  5743. <line x="18" y="26"/>
  5744. <close/>
  5745. <move x="26" y="21"/>
  5746. <line x="24.207" y="22.793"/>
  5747. <line x="18.699" y="17.285"/>
  5748. <curve x1="18.886" x2="18.999" x3="18.999" y1="16.895" y2="16.462" y3="16"/>
  5749. <curve x1="18.999" x2="17.654" x3="15.999" y1="14.346" y2="13" y3="13"/>
  5750. <arc large-arc-flag="0" rx="2.96" ry="2.96" sweep-flag="0" x="14.715" x-axis-rotation="0" y="13.3"/>
  5751. <line x="9.433" y="8.02"/>
  5752. <curve x1="9.784" x2="10" x3="10" y1="7.423" y2="6.74" y3="6"/>
  5753. <curve x1="10" x2="8.206" x3="6" y1="3.795" y2="2" y3="2"/>
  5754. <curve x1="3.794" x2="2" x3="2" y1="2" y2="3.794" y3="6"/>
  5755. <curve x1="2" x2="3.794" x3="6" y1="8.206" y2="10" y3="10"/>
  5756. <curve x1="6.74" x2="7.424" x3="8.019" y1="10" y2="9.785" y3="9.433"/>
  5757. <line x="13.301" y="14.715"/>
  5758. <curve x1="13.113" x2="13" x3="13" y1="15.105" y2="15.538" y3="16"/>
  5759. <curve x1="13" x2="14.346" x3="16" y1="17.654" y2="19" y3="19"/>
  5760. <arc large-arc-flag="0" rx="2.96" ry="2.96" sweep-flag="0" x="17.285" x-axis-rotation="0" y="18.7"/>
  5761. <line x="22.793" y="24.207"/>
  5762. <line x="21" y="26"/>
  5763. <line x="26" y="31"/>
  5764. <line x="31" y="26"/>
  5765. <close/>
  5766. <move x="4" y="6"/>
  5767. <curve x1="4" x2="4.897" x3="6" y1="4.898" y2="4" y3="4"/>
  5768. <curve x1="7.103" x2="8" x3="8" y1="4" y2="4.898" y3="6"/>
  5769. <curve x1="8" x2="7.103" x3="6" y1="7.102" y2="8" y3="8"/>
  5770. <curve x1="4.897" x2="4" x3="4" y1="8" y2="7.103" y3="6"/>
  5771. <move x="15" y="16"/>
  5772. <curve x1="15" x2="15.449" x3="16" y1="15.449" y2="15" y3="15"/>
  5773. <curve x1="16.551" x2="17" x3="17" y1="15" y2="15.449" y3="16"/>
  5774. <curve x1="17" x2="16.552" x3="16" y1="16.551" y2="17" y3="17"/>
  5775. <curve x1="15.448" x2="15" x3="15" y1="17" y2="16.551" y3="16"/>
  5776. <move x="23.829" y="26"/>
  5777. <line x="26" y="23.829"/>
  5778. <line x="28.171" y="26"/>
  5779. <line x="26" y="28.171"/>
  5780. <close/>
  5781. </path>
  5782. <fillstroke/>
  5783. </foreground>
  5784. </shape>
  5785. <shape aspect="variable" h="32" name="object-storage" strokewidth="inherit" w="32">
  5786. <connections/>
  5787. <foreground>
  5788. <save/>
  5789. <rect h="32" w="32" x="0" y="0"/>
  5790. <stroke/>
  5791. <restore/>
  5792. <rect/>
  5793. <stroke/>
  5794. <path>
  5795. <move x="28" y="20"/>
  5796. <line x="26" y="20"/>
  5797. <line x="26" y="22"/>
  5798. <line x="28" y="22"/>
  5799. <line x="28" y="28"/>
  5800. <line x="4" y="28"/>
  5801. <line x="4" y="22"/>
  5802. <line x="14" y="22"/>
  5803. <line x="14" y="20"/>
  5804. <line x="4" y="20"/>
  5805. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="2" x-axis-rotation="0" y="22"/>
  5806. <line x="2" y="28"/>
  5807. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="4" x-axis-rotation="0" y="30"/>
  5808. <line x="28" y="30"/>
  5809. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="30" x-axis-rotation="0" y="28"/>
  5810. <line x="30" y="22"/>
  5811. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="28" x-axis-rotation="0" y="20"/>
  5812. <close/>
  5813. </path>
  5814. <fillstroke/>
  5815. <ellipse h="2" w="2" x="6" y="24"/>
  5816. <fillstroke/>
  5817. <path>
  5818. <move x="30" y="8"/>
  5819. <line x="22" y="8"/>
  5820. <line x="22" y="14"/>
  5821. <line x="16" y="14"/>
  5822. <line x="16" y="22"/>
  5823. <line x="24" y="22"/>
  5824. <line x="24" y="16"/>
  5825. <line x="30" y="16"/>
  5826. <close/>
  5827. <move x="22" y="20"/>
  5828. <line x="18" y="20"/>
  5829. <line x="18" y="16"/>
  5830. <line x="22" y="16"/>
  5831. <close/>
  5832. <move x="28" y="14"/>
  5833. <line x="24" y="14"/>
  5834. <line x="24" y="10"/>
  5835. <line x="28" y="10"/>
  5836. <close/>
  5837. <move x="18" y="10"/>
  5838. <line x="10" y="10"/>
  5839. <line x="10" y="2"/>
  5840. <line x="18" y="2"/>
  5841. <close/>
  5842. <move x="12" y="8"/>
  5843. <line x="16" y="8"/>
  5844. <line x="16" y="4"/>
  5845. <line x="12" y="4"/>
  5846. <close/>
  5847. </path>
  5848. <fillstroke/>
  5849. </foreground>
  5850. </shape>
  5851. <shape aspect="variable" h="32" name="password" strokewidth="inherit" w="32">
  5852. <connections/>
  5853. <foreground>
  5854. <save/>
  5855. <rect h="32" w="32" x="0" y="0"/>
  5856. <stroke/>
  5857. <restore/>
  5858. <rect/>
  5859. <stroke/>
  5860. <path>
  5861. <move x="21" y="2"/>
  5862. <arc large-arc-flag="0" rx="8.998" ry="8.998" sweep-flag="0" x="12.388" x-axis-rotation="0" y="13.612"/>
  5863. <line x="2" y="24"/>
  5864. <line x="2" y="30"/>
  5865. <line x="8" y="30"/>
  5866. <line x="18.388" y="19.612"/>
  5867. <arc large-arc-flag="1" rx="9" ry="9" sweep-flag="0" x="21" x-axis-rotation="0" y="2"/>
  5868. <move x="21" y="18"/>
  5869. <arc large-arc-flag="0" rx="7.013" ry="7.013" sweep-flag="1" x="18.968" x-axis-rotation="0" y="17.698"/>
  5870. <line x="17.821" y="17.35"/>
  5871. <line x="16.974" y="18.197"/>
  5872. <line x="13.793" y="21.378"/>
  5873. <line x="12.414" y="20"/>
  5874. <line x="11" y="21.414"/>
  5875. <line x="12.379" y="22.793"/>
  5876. <line x="10.793" y="24.379"/>
  5877. <line x="9.414" y="23"/>
  5878. <line x="8" y="24.414"/>
  5879. <line x="9.379" y="25.793"/>
  5880. <line x="7.172" y="28"/>
  5881. <line x="4" y="28"/>
  5882. <line x="4" y="24.828"/>
  5883. <line x="13.802" y="15.026"/>
  5884. <line x="14.65" y="14.179"/>
  5885. <line x="14.302" y="13.032"/>
  5886. <arc large-arc-flag="1" rx="7" ry="7" sweep-flag="1" x="21" x-axis-rotation="0" y="18"/>
  5887. </path>
  5888. <fillstroke/>
  5889. <ellipse h="4" w="4" x="20" y="8"/>
  5890. <fillstroke/>
  5891. </foreground>
  5892. </shape>
  5893. <shape aspect="variable" h="32" name="point-of-presence" strokewidth="inherit" w="32">
  5894. <connections/>
  5895. <foreground>
  5896. <save/>
  5897. <rect h="32" w="32" x="0" y="0"/>
  5898. <stroke/>
  5899. <restore/>
  5900. <rect/>
  5901. <stroke/>
  5902. <path>
  5903. <move x="28" y="30"/>
  5904. <line x="18" y="30"/>
  5905. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="16" x-axis-rotation="0" y="28"/>
  5906. <line x="16" y="18"/>
  5907. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="18" x-axis-rotation="0" y="16"/>
  5908. <line x="20" y="16"/>
  5909. <line x="20" y="18"/>
  5910. <line x="18" y="18"/>
  5911. <line x="18" y="28"/>
  5912. <line x="28" y="28"/>
  5913. <line x="28" y="18"/>
  5914. <line x="26" y="18"/>
  5915. <line x="26" y="16"/>
  5916. <line x="28" y="16"/>
  5917. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="30" x-axis-rotation="0" y="18"/>
  5918. <line x="30" y="28"/>
  5919. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="28" x-axis-rotation="0" y="30"/>
  5920. <close/>
  5921. <move x="14" y="16"/>
  5922. <line x="4" y="16"/>
  5923. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="2" x-axis-rotation="0" y="14"/>
  5924. <line x="2" y="4"/>
  5925. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="4" x-axis-rotation="0" y="2"/>
  5926. <line x="14" y="2"/>
  5927. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="16" x-axis-rotation="0" y="4"/>
  5928. <line x="16" y="6"/>
  5929. <line x="14" y="6"/>
  5930. <line x="14" y="4"/>
  5931. <line x="4" y="4"/>
  5932. <line x="4" y="14"/>
  5933. <line x="14" y="14"/>
  5934. <line x="14" y="12"/>
  5935. <line x="16" y="12"/>
  5936. <line x="16" y="14"/>
  5937. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="1" x="14" x-axis-rotation="0" y="16"/>
  5938. <close/>
  5939. </path>
  5940. <fillstroke/>
  5941. <path>
  5942. <move x="26" y="9"/>
  5943. <arc large-arc-flag="0" rx="2.993" ry="2.993" sweep-flag="0" x="20.184" x-axis-rotation="0" y="8"/>
  5944. <line x="9" y="8"/>
  5945. <line x="9" y="10"/>
  5946. <line x="20.184" y="10"/>
  5947. <arc large-arc-flag="0" rx="2.994" ry="2.994" sweep-flag="0" x="22" x-axis-rotation="0" y="11.815"/>
  5948. <line x="22" y="23"/>
  5949. <line x="24" y="23"/>
  5950. <line x="24" y="11.816"/>
  5951. <arc large-arc-flag="0" rx="2.996" ry="2.996" sweep-flag="0" x="26" x-axis-rotation="0" y="9"/>
  5952. <close/>
  5953. <move x="23" y="10"/>
  5954. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="24" x-axis-rotation="0" y="9"/>
  5955. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="23" x-axis-rotation="0" y="10"/>
  5956. <close/>
  5957. </path>
  5958. <fillstroke/>
  5959. </foreground>
  5960. </shape>
  5961. <shape aspect="variable" h="32" name="repo--source-code" strokewidth="inherit" w="32">
  5962. <connections/>
  5963. <foreground>
  5964. <save/>
  5965. <rect h="32" w="32" x="0" y="0"/>
  5966. <stroke/>
  5967. <restore/>
  5968. <rect/>
  5969. <stroke/>
  5970. <path>
  5971. <move x="23.6" y="21.4"/>
  5972. <line x="27.2" y="25"/>
  5973. <line x="23.6" y="28.6"/>
  5974. <line x="25" y="30"/>
  5975. <line x="30" y="25"/>
  5976. <line x="25" y="20"/>
  5977. <close/>
  5978. <move x="20.4" y="21.4"/>
  5979. <line x="16.8" y="25"/>
  5980. <line x="20.4" y="28.6"/>
  5981. <line x="19" y="30"/>
  5982. <line x="14" y="25"/>
  5983. <line x="19" y="20"/>
  5984. <close/>
  5985. </path>
  5986. <fillstroke/>
  5987. <path>
  5988. <move x="28" y="8"/>
  5989. <line x="16" y="8"/>
  5990. <line x="12.6" y="4.6"/>
  5991. <curve x1="12.2" x2="11.7" x3="11.2" y1="4.2" y2="4" y3="4"/>
  5992. <line x="4" y="4"/>
  5993. <curve x1="2.9" x2="2" x3="2" y1="4" y2="4.9" y3="6"/>
  5994. <line x="2" y="26"/>
  5995. <curve x1="2" x2="2.9" x3="4" y1="27.1" y2="28" y3="28"/>
  5996. <line x="11" y="28"/>
  5997. <line x="11" y="26"/>
  5998. <line x="4" y="26"/>
  5999. <line x="4" y="6"/>
  6000. <line x="11.2" y="6"/>
  6001. <line x="14.6" y="9.4"/>
  6002. <line x="15.2" y="10"/>
  6003. <line x="28" y="10"/>
  6004. <line x="28" y="18"/>
  6005. <line x="30" y="18"/>
  6006. <line x="30" y="10"/>
  6007. <curve x1="30" x2="29.1" x3="28" y1="8.9" y2="8" y3="8"/>
  6008. </path>
  6009. <fillstroke/>
  6010. </foreground>
  6011. </shape>
  6012. <shape aspect="variable" h="32" name="router" strokewidth="inherit" w="32">
  6013. <connections/>
  6014. <foreground>
  6015. <save/>
  6016. <rect h="32" w="32" x="0" y="0"/>
  6017. <stroke/>
  6018. <restore/>
  6019. <rect/>
  6020. <stroke/>
  6021. <path>
  6022. <move x="21" y="7"/>
  6023. <line x="16" y="2"/>
  6024. <line x="11" y="7"/>
  6025. <line x="12.409" y="8.419"/>
  6026. <line x="15" y="5.847"/>
  6027. <line x="15" y="13"/>
  6028. <line x="17" y="13"/>
  6029. <line x="17" y="5.794"/>
  6030. <line x="19.591" y="8.419"/>
  6031. <line x="21" y="7"/>
  6032. <close/>
  6033. <move x="21" y="25"/>
  6034. <line x="16" y="30"/>
  6035. <line x="11" y="25"/>
  6036. <line x="12.409" y="23.581"/>
  6037. <line x="15" y="26.153"/>
  6038. <line x="15" y="19"/>
  6039. <line x="17" y="19"/>
  6040. <line x="17" y="26.206"/>
  6041. <line x="19.591" y="23.581"/>
  6042. <line x="21" y="25"/>
  6043. <close/>
  6044. <move x="24" y="11"/>
  6045. <line x="19" y="16"/>
  6046. <line x="24" y="21"/>
  6047. <line x="25.419" y="19.591"/>
  6048. <line x="22.847" y="17"/>
  6049. <line x="30" y="17"/>
  6050. <line x="30" y="15"/>
  6051. <line x="22.794" y="15"/>
  6052. <line x="25.419" y="12.409"/>
  6053. <line x="24" y="11"/>
  6054. <close/>
  6055. <move x="8" y="11"/>
  6056. <line x="13" y="16"/>
  6057. <line x="8" y="21"/>
  6058. <line x="6.581" y="19.591"/>
  6059. <line x="9.153" y="17"/>
  6060. <line x="2" y="17"/>
  6061. <line x="2" y="15"/>
  6062. <line x="9.206" y="15"/>
  6063. <line x="6.581" y="12.409"/>
  6064. <line x="8" y="11"/>
  6065. <close/>
  6066. </path>
  6067. <fillstroke/>
  6068. </foreground>
  6069. </shape>
  6070. <shape aspect="variable" h="32" name="server--proxy" strokewidth="inherit" w="32">
  6071. <connections/>
  6072. <foreground>
  6073. <save/>
  6074. <rect h="32" w="32" x="0" y="0"/>
  6075. <stroke/>
  6076. <restore/>
  6077. <rect/>
  6078. <stroke/>
  6079. <path>
  6080. <move x="6" y="30"/>
  6081. <line x="26" y="30"/>
  6082. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="28"/>
  6083. <line x="28" y="22"/>
  6084. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="20"/>
  6085. <line x="6" y="20"/>
  6086. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="4" x-axis-rotation="0" y="22"/>
  6087. <line x="4" y="28"/>
  6088. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="30"/>
  6089. <move x="6" y="22"/>
  6090. <line x="26" y="22"/>
  6091. <line x="26" y="28"/>
  6092. <line x="6" y="28"/>
  6093. <close/>
  6094. </path>
  6095. <fillstroke/>
  6096. <ellipse h="2" w="2" x="8" y="24"/>
  6097. <fillstroke/>
  6098. <path>
  6099. <move x="26" y="2"/>
  6100. <line x="24.59" y="3.41"/>
  6101. <line x="27.17" y="6"/>
  6102. <line x="22.315" y="6"/>
  6103. <arc large-arc-flag="0" rx="6.984" ry="6.984" sweep-flag="0" x="9.08" x-axis-rotation="0" y="10"/>
  6104. <line x="4.83" y="10"/>
  6105. <line x="7.41" y="7.41"/>
  6106. <line x="6" y="6"/>
  6107. <line x="1" y="11"/>
  6108. <line x="6" y="16"/>
  6109. <line x="7.41" y="14.59"/>
  6110. <line x="4.83" y="12"/>
  6111. <line x="9.685" y="12"/>
  6112. <arc large-arc-flag="0" rx="6.984" ry="6.984" sweep-flag="0" x="22.92" x-axis-rotation="0" y="8"/>
  6113. <line x="27.17" y="8"/>
  6114. <line x="24.59" y="10.59"/>
  6115. <line x="26" y="12"/>
  6116. <line x="31" y="7"/>
  6117. <close/>
  6118. <move x="21" y="9"/>
  6119. <arc large-arc-flag="0" rx="4.983" ry="4.983" sweep-flag="1" x="12.026" x-axis-rotation="0" y="12"/>
  6120. <line x="16" y="12"/>
  6121. <line x="16" y="10"/>
  6122. <line x="11.101" y="10"/>
  6123. <arc large-arc-flag="0" rx="4.985" ry="4.985" sweep-flag="1" x="19.975" x-axis-rotation="0" y="6"/>
  6124. <line x="16" y="6"/>
  6125. <line x="16" y="8"/>
  6126. <line x="20.899" y="8"/>
  6127. <arc large-arc-flag="0" rx="5.002" ry="5.002" sweep-flag="1" x="21" x-axis-rotation="0" y="9"/>
  6128. </path>
  6129. <fillstroke/>
  6130. </foreground>
  6131. </shape>
  6132. <shape aspect="variable" h="32" name="subnet-acl-rules" strokewidth="inherit" w="32">
  6133. <connections/>
  6134. <foreground>
  6135. <save/>
  6136. <rect h="32" w="32" x="0" y="0"/>
  6137. <stroke/>
  6138. <restore/>
  6139. <rect/>
  6140. <stroke/>
  6141. <path>
  6142. <move x="18" y="14"/>
  6143. <line x="30" y="14"/>
  6144. <line x="30" y="16"/>
  6145. <line x="18" y="16"/>
  6146. <close/>
  6147. <move x="18" y="19"/>
  6148. <line x="26" y="19"/>
  6149. <line x="26" y="21"/>
  6150. <line x="18" y="21"/>
  6151. <close/>
  6152. <move x="18" y="9"/>
  6153. <line x="30" y="9"/>
  6154. <line x="30" y="11"/>
  6155. <line x="18" y="11"/>
  6156. <close/>
  6157. </path>
  6158. <fillstroke/>
  6159. <path>
  6160. <move x="22" y="24"/>
  6161. <line x="22" y="28"/>
  6162. <line x="6" y="28"/>
  6163. <line x="6" y="16"/>
  6164. <line x="14" y="16"/>
  6165. <line x="14" y="14"/>
  6166. <line x="10" y="14"/>
  6167. <line x="10" y="8"/>
  6168. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="17.668" x-axis-rotation="0" y="6.4"/>
  6169. <line x="19.5" y="5.6"/>
  6170. <arc large-arc-flag="0" rx="6.001" ry="6.001" sweep-flag="0" x="8" x-axis-rotation="0" y="8"/>
  6171. <line x="8" y="14"/>
  6172. <line x="6" y="14"/>
  6173. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="4" x-axis-rotation="0" y="16"/>
  6174. <line x="4" y="28"/>
  6175. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="6" x-axis-rotation="0" y="30"/>
  6176. <line x="22" y="30"/>
  6177. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="24" x-axis-rotation="0" y="28"/>
  6178. <line x="24" y="24"/>
  6179. <close/>
  6180. </path>
  6181. <fillstroke/>
  6182. </foreground>
  6183. </shape>
  6184. <shape aspect="variable" h="32" name="switch-layer-2" strokewidth="inherit" w="32">
  6185. <connections/>
  6186. <foreground>
  6187. <save/>
  6188. <rect h="32" w="32" x="0" y="0"/>
  6189. <stroke/>
  6190. <restore/>
  6191. <rect/>
  6192. <stroke/>
  6193. <path>
  6194. <move x="16" y="26"/>
  6195. <line x="16" y="24"/>
  6196. <line x="5.83" y="24"/>
  6197. <line x="8.41" y="21.41"/>
  6198. <line x="7" y="20"/>
  6199. <line x="2" y="25"/>
  6200. <line x="7" y="30"/>
  6201. <line x="8.41" y="28.59"/>
  6202. <line x="5.83" y="26"/>
  6203. <line x="16" y="26"/>
  6204. <close/>
  6205. <move x="16" y="14"/>
  6206. <line x="16" y="12"/>
  6207. <line x="5.83" y="12"/>
  6208. <line x="8.41" y="9.41"/>
  6209. <line x="7" y="8"/>
  6210. <line x="2" y="13"/>
  6211. <line x="7" y="18"/>
  6212. <line x="8.41" y="16.59"/>
  6213. <line x="5.83" y="14"/>
  6214. <line x="16" y="14"/>
  6215. <close/>
  6216. <move x="16" y="6"/>
  6217. <line x="16" y="8"/>
  6218. <line x="26.17" y="8"/>
  6219. <line x="23.59" y="10.59"/>
  6220. <line x="25" y="12"/>
  6221. <line x="30" y="7"/>
  6222. <line x="25" y="2"/>
  6223. <line x="23.59" y="3.41"/>
  6224. <line x="26.17" y="6"/>
  6225. <line x="16" y="6"/>
  6226. <close/>
  6227. <move x="16" y="18"/>
  6228. <line x="16" y="20"/>
  6229. <line x="26.17" y="20"/>
  6230. <line x="23.59" y="22.59"/>
  6231. <line x="25" y="24"/>
  6232. <line x="30" y="19"/>
  6233. <line x="25" y="14"/>
  6234. <line x="23.59" y="15.41"/>
  6235. <line x="26.17" y="18"/>
  6236. <line x="16" y="18"/>
  6237. <close/>
  6238. </path>
  6239. <fillstroke/>
  6240. </foreground>
  6241. </shape>
  6242. <shape aspect="variable" h="32" name="switch-layer-3" strokewidth="inherit" w="32">
  6243. <connections/>
  6244. <foreground>
  6245. <save/>
  6246. <rect h="32" w="32" x="0" y="0"/>
  6247. <stroke/>
  6248. <restore/>
  6249. <rect/>
  6250. <stroke/>
  6251. <path>
  6252. <move x="22" y="4"/>
  6253. <line x="22" y="6"/>
  6254. <line x="24.586" y="6"/>
  6255. <line x="19.586" y="11"/>
  6256. <line x="21" y="12.414"/>
  6257. <line x="26" y="7.414"/>
  6258. <line x="26" y="10"/>
  6259. <line x="28" y="10"/>
  6260. <line x="28" y="4"/>
  6261. <line x="22" y="4"/>
  6262. <close/>
  6263. <move x="10" y="4"/>
  6264. <line x="10" y="6"/>
  6265. <line x="7.414" y="6"/>
  6266. <line x="12.414" y="11"/>
  6267. <line x="11" y="12.414"/>
  6268. <line x="6" y="7.414"/>
  6269. <line x="6" y="10"/>
  6270. <line x="4" y="10"/>
  6271. <line x="4" y="4"/>
  6272. <line x="10" y="4"/>
  6273. <close/>
  6274. <move x="20" y="5"/>
  6275. <line x="16" y="1"/>
  6276. <line x="12" y="5"/>
  6277. <line x="13.414" y="6.414"/>
  6278. <line x="15" y="4.829"/>
  6279. <line x="15" y="11"/>
  6280. <line x="17" y="11"/>
  6281. <line x="17" y="4.829"/>
  6282. <line x="18.586" y="6.414"/>
  6283. <line x="20" y="5"/>
  6284. <close/>
  6285. <move x="22" y="28"/>
  6286. <line x="22" y="26"/>
  6287. <line x="24.586" y="26"/>
  6288. <line x="19.586" y="21"/>
  6289. <line x="21" y="19.586"/>
  6290. <line x="26" y="24.586"/>
  6291. <line x="26" y="22"/>
  6292. <line x="28" y="22"/>
  6293. <line x="28" y="28"/>
  6294. <line x="22" y="28"/>
  6295. <close/>
  6296. <move x="10" y="28"/>
  6297. <line x="10" y="26"/>
  6298. <line x="7.414" y="26"/>
  6299. <line x="12.414" y="21"/>
  6300. <line x="11" y="19.586"/>
  6301. <line x="6" y="24.586"/>
  6302. <line x="6" y="22"/>
  6303. <line x="4" y="22"/>
  6304. <line x="4" y="28"/>
  6305. <line x="10" y="28"/>
  6306. <close/>
  6307. <move x="20" y="27"/>
  6308. <line x="16" y="31"/>
  6309. <line x="12" y="27"/>
  6310. <line x="13.414" y="25.586"/>
  6311. <line x="15" y="27.171"/>
  6312. <line x="15" y="21"/>
  6313. <line x="17" y="21"/>
  6314. <line x="17" y="27.171"/>
  6315. <line x="18.586" y="25.586"/>
  6316. <line x="20" y="27"/>
  6317. <close/>
  6318. <move x="5" y="12"/>
  6319. <line x="1" y="16"/>
  6320. <line x="5" y="20"/>
  6321. <line x="6.414" y="18.586"/>
  6322. <line x="4.829" y="17"/>
  6323. <line x="11" y="17"/>
  6324. <line x="11" y="15"/>
  6325. <line x="4.829" y="15"/>
  6326. <line x="6.414" y="13.414"/>
  6327. <line x="5" y="12"/>
  6328. <close/>
  6329. <move x="27" y="12"/>
  6330. <line x="31" y="16"/>
  6331. <line x="27" y="20"/>
  6332. <line x="25.586" y="18.586"/>
  6333. <line x="27.171" y="17"/>
  6334. <line x="21" y="17"/>
  6335. <line x="21" y="15"/>
  6336. <line x="27.171" y="15"/>
  6337. <line x="25.586" y="13.414"/>
  6338. <line x="27" y="12"/>
  6339. <close/>
  6340. </path>
  6341. <fillstroke/>
  6342. </foreground>
  6343. </shape>
  6344. <shape aspect="variable" h="32" name="undefined" strokewidth="inherit" w="32">
  6345. <connections/>
  6346. <foreground>
  6347. <save/>
  6348. <rect h="32" w="32" x="0" y="0"/>
  6349. <stroke/>
  6350. <restore/>
  6351. <rect/>
  6352. <stroke/>
  6353. <path>
  6354. <move x="11" y="14"/>
  6355. <line x="21" y="14"/>
  6356. <line x="21" y="18"/>
  6357. <line x="11" y="18"/>
  6358. <close/>
  6359. </path>
  6360. <fillstroke/>
  6361. <path>
  6362. <move x="29.391" y="14.527"/>
  6363. <line x="17.473" y="2.609"/>
  6364. <arc large-arc-flag="0" rx="2.078" ry="2.078" sweep-flag="0" x="16" x-axis-rotation="0" y="2"/>
  6365. <curve x1="15.467" x2="14.933" x3="14.527" y1="2" y2="2.203" y3="2.609"/>
  6366. <line x="2.609" y="14.527"/>
  6367. <curve x1="2.203" x2="2" x3="2" y1="14.933" y2="15.466" y3="16"/>
  6368. <curve x1="2" x2="2.203" x3="2.609" y1="16.534" y2="17.067" y3="17.473"/>
  6369. <line x="14.526" y="29.39"/>
  6370. <curve x1="14.933" x2="15.467" x3="16" y1="29.797" y2="30" y3="30"/>
  6371. <curve x1="16.533" x2="17.067" x3="17.473" y1="30" y2="29.797" y3="29.391"/>
  6372. <line x="29.39" y="17.474"/>
  6373. <curve x1="29.797" x2="30" x3="30" y1="17.067" y2="16.534" y3="16"/>
  6374. <curve x1="30" x2="29.797" x3="29.391" y1="15.466" y2="14.933" y3="14.527"/>
  6375. <close/>
  6376. <move x="16" y="28.036"/>
  6377. <line x="3.965" y="16"/>
  6378. <line x="16" y="3.964"/>
  6379. <line x="28.036" y="16"/>
  6380. <line x="16" y="28.036"/>
  6381. <close/>
  6382. </path>
  6383. <fillstroke/>
  6384. </foreground>
  6385. </shape>
  6386. <shape aspect="variable" h="32" name="user" strokewidth="inherit" w="32">
  6387. <connections/>
  6388. <foreground>
  6389. <save/>
  6390. <rect h="32" w="32" x="0" y="0"/>
  6391. <stroke/>
  6392. <restore/>
  6393. <rect/>
  6394. <stroke/>
  6395. <path>
  6396. <move x="16" y="4"/>
  6397. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="1" x="11" x-axis-rotation="0" y="9"/>
  6398. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="16" x-axis-rotation="0" y="4"/>
  6399. <move x="16" y="2"/>
  6400. <arc large-arc-flag="1" rx="7" ry="7" sweep-flag="0" x="23" x-axis-rotation="0" y="9"/>
  6401. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="16" x-axis-rotation="0" y="2"/>
  6402. <close/>
  6403. <move x="26" y="30"/>
  6404. <line x="24" y="30"/>
  6405. <line x="24" y="25"/>
  6406. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="19" x-axis-rotation="0" y="20"/>
  6407. <line x="13" y="20"/>
  6408. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="8" x-axis-rotation="0" y="25"/>
  6409. <line x="8" y="30"/>
  6410. <line x="6" y="30"/>
  6411. <line x="6" y="25"/>
  6412. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="13" x-axis-rotation="0" y="18"/>
  6413. <line x="19" y="18"/>
  6414. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="26" x-axis-rotation="0" y="25"/>
  6415. <close/>
  6416. </path>
  6417. <fillstroke/>
  6418. </foreground>
  6419. </shape>
  6420. <shape aspect="variable" h="32" name="vlan--ibm" strokewidth="inherit" w="32">
  6421. <connections/>
  6422. <foreground>
  6423. <save/>
  6424. <rect h="32" w="32" x="0" y="0"/>
  6425. <stroke/>
  6426. <restore/>
  6427. <rect/>
  6428. <stroke/>
  6429. <path>
  6430. <move x="16" y="22"/>
  6431. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="20" x-axis-rotation="0" y="26"/>
  6432. <arc large-arc-flag="0" rx="4.005" ry="4.005" sweep-flag="0" x="16" x-axis-rotation="0" y="22"/>
  6433. <move x="16" y="28"/>
  6434. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="1" x="18" x-axis-rotation="0" y="26"/>
  6435. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="16" x-axis-rotation="0" y="28"/>
  6436. <move x="30" y="5"/>
  6437. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="26" x-axis-rotation="0" y="7.815"/>
  6438. <line x="26" y="15"/>
  6439. <line x="17" y="15"/>
  6440. <line x="17" y="9"/>
  6441. <line x="15" y="9"/>
  6442. <line x="15" y="15"/>
  6443. <line x="6" y="15"/>
  6444. <line x="6" y="7.816"/>
  6445. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="4" x-axis-rotation="0" y="7.816"/>
  6446. <line x="4" y="15"/>
  6447. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="17"/>
  6448. <line x="15" y="17"/>
  6449. <line x="15" y="20"/>
  6450. <line x="17" y="20"/>
  6451. <line x="17" y="17"/>
  6452. <line x="26" y="17"/>
  6453. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="28" x-axis-rotation="0" y="15"/>
  6454. <line x="28" y="7.816"/>
  6455. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="30" x-axis-rotation="0" y="5"/>
  6456. <move x="5" y="4"/>
  6457. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="4" x-axis-rotation="0" y="5"/>
  6458. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="5" x-axis-rotation="0" y="4"/>
  6459. <move x="27" y="6"/>
  6460. <arc large-arc-flag="1" rx="1" ry="1" sweep-flag="1" x="28" x-axis-rotation="0" y="5"/>
  6461. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="27" x-axis-rotation="0" y="6"/>
  6462. </path>
  6463. <fillstroke/>
  6464. <ellipse h="4" w="4" x="14" y="3"/>
  6465. <fillstroke/>
  6466. </foreground>
  6467. </shape>
  6468. <shape aspect="variable" h="32" name="vlan" strokewidth="inherit" w="32">
  6469. <connections/>
  6470. <foreground>
  6471. <save/>
  6472. <rect h="32" w="32" x="0" y="0"/>
  6473. <stroke/>
  6474. <restore/>
  6475. <rect/>
  6476. <stroke/>
  6477. <path>
  6478. <move x="30" y="17"/>
  6479. <line x="30" y="15"/>
  6480. <line x="17" y="15"/>
  6481. <line x="17" y="11"/>
  6482. <line x="19" y="11"/>
  6483. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="21" x-axis-rotation="0" y="9"/>
  6484. <line x="21" y="4"/>
  6485. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="19" x-axis-rotation="0" y="2"/>
  6486. <line x="13" y="2"/>
  6487. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="11" x-axis-rotation="0" y="4"/>
  6488. <line x="11" y="9"/>
  6489. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="13" x-axis-rotation="0" y="11"/>
  6490. <line x="15" y="11"/>
  6491. <line x="15" y="15"/>
  6492. <line x="2" y="15"/>
  6493. <line x="2" y="17"/>
  6494. <line x="8" y="17"/>
  6495. <line x="8" y="21"/>
  6496. <line x="6" y="21"/>
  6497. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="4" x-axis-rotation="0" y="23"/>
  6498. <line x="4" y="28"/>
  6499. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="6" x-axis-rotation="0" y="30"/>
  6500. <line x="12" y="30"/>
  6501. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="14" x-axis-rotation="0" y="28"/>
  6502. <line x="14" y="23"/>
  6503. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="12" x-axis-rotation="0" y="21"/>
  6504. <line x="10" y="21"/>
  6505. <line x="10" y="17"/>
  6506. <line x="22" y="17"/>
  6507. <line x="22" y="21"/>
  6508. <line x="20" y="21"/>
  6509. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="18" x-axis-rotation="0" y="23"/>
  6510. <line x="18" y="28"/>
  6511. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="20" x-axis-rotation="0" y="30"/>
  6512. <line x="26" y="30"/>
  6513. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="28" x-axis-rotation="0" y="28"/>
  6514. <line x="28" y="23"/>
  6515. <arc large-arc-flag="0" rx="2.002" ry="2.002" sweep-flag="0" x="26" x-axis-rotation="0" y="21"/>
  6516. <line x="24" y="21"/>
  6517. <line x="24" y="17"/>
  6518. <close/>
  6519. <move x="13" y="4"/>
  6520. <line x="19" y="4"/>
  6521. <line x="19" y="9"/>
  6522. <line x="13" y="9"/>
  6523. <close/>
  6524. <move x="12" y="28"/>
  6525. <line x="6" y="28"/>
  6526. <line x="6" y="23"/>
  6527. <line x="12" y="23"/>
  6528. <close/>
  6529. <move x="26" y="28"/>
  6530. <line x="20" y="28"/>
  6531. <line x="20" y="23"/>
  6532. <line x="26" y="23"/>
  6533. <close/>
  6534. </path>
  6535. <fillstroke/>
  6536. </foreground>
  6537. </shape>
  6538. <shape aspect="variable" h="32" name="vpn--connection" strokewidth="inherit" w="32">
  6539. <connections/>
  6540. <foreground>
  6541. <save/>
  6542. <rect h="32" w="32" x="0" y="0"/>
  6543. <stroke/>
  6544. <restore/>
  6545. <rect/>
  6546. <stroke/>
  6547. <path>
  6548. <move x="28" y="7"/>
  6549. <arc large-arc-flag="0" rx="1.99" ry="1.99" sweep-flag="0" x="26.277" x-axis-rotation="0" y="8"/>
  6550. <line x="22" y="8"/>
  6551. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="10" x-axis-rotation="0" y="8"/>
  6552. <line x="5.723" y="8"/>
  6553. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="5.723" x-axis-rotation="0" y="10"/>
  6554. <line x="10" y="10"/>
  6555. <line x="10" y="14"/>
  6556. <line x="8" y="14"/>
  6557. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="6" x-axis-rotation="0" y="16"/>
  6558. <line x="6" y="28"/>
  6559. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="30"/>
  6560. <line x="24" y="30"/>
  6561. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="28"/>
  6562. <line x="26" y="16"/>
  6563. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="14"/>
  6564. <line x="22" y="14"/>
  6565. <line x="22" y="10"/>
  6566. <line x="26.277" y="10"/>
  6567. <arc large-arc-flag="1" rx="1.997" ry="1.997" sweep-flag="0" x="28" x-axis-rotation="0" y="7"/>
  6568. <move x="12" y="8"/>
  6569. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="8"/>
  6570. <line x="20" y="14"/>
  6571. <line x="12" y="14"/>
  6572. <line x="12" y="10"/>
  6573. <line x="17" y="10"/>
  6574. <line x="17" y="8"/>
  6575. <close/>
  6576. <move x="24" y="16"/>
  6577. <line x="24" y="28"/>
  6578. <line x="8" y="28"/>
  6579. <line x="8" y="16"/>
  6580. <close/>
  6581. </path>
  6582. <fillstroke/>
  6583. </foreground>
  6584. </shape>
  6585. <shape aspect="variable" h="32" name="watsonx-ai" strokewidth="inherit" w="32">
  6586. <connections/>
  6587. <foreground>
  6588. <save/>
  6589. <rect h="32" w="32" x="0" y="0"/>
  6590. <stroke/>
  6591. <restore/>
  6592. <rect/>
  6593. <stroke/>
  6594. <path>
  6595. <move x="26" y="24"/>
  6596. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="26"/>
  6597. <curve x1="24" x2="24.014" x3="24.023" y1="26.076" y2="26.149" y3="26.223"/>
  6598. <arc large-arc-flag="0" rx="12.9" ry="12.9" sweep-flag="1" x="16" x-axis-rotation="0" y="29"/>
  6599. <curve x1="11.738" x2="8" x3="8" y1="29" y2="25.028" y3="20.5"/>
  6600. <curve x1="8" x2="11.813" x3="16.5" y1="15.813" y2="12" y3="12"/>
  6601. <line x="17" y="12"/>
  6602. <line x="17" y="10"/>
  6603. <line x="16.5" y="10"/>
  6604. <curve x1="10.71" x2="6" x3="6" y1="10" y2="14.71" y3="20.5"/>
  6605. <curve x1="6" x2="6.53" x3="7.437" y1="22.384" y2="24.19" y3="25.757"/>
  6606. <curve x1="4.724" x2="3" x3="3" y1="23.371" y2="19.886" y3="16"/>
  6607. <curve x1="3" x2="3.492" x3="4.462" y1="13.885" y2="11.867" y3="10.004"/>
  6608. <line x="2.688" y="9.081"/>
  6609. <arc large-arc-flag="0" rx="15.05" ry="15.05" sweep-flag="0" x="1" x-axis-rotation="0" y="16"/>
  6610. <curve x1="1" x2="7.729" x3="16" y1="24.271" y2="31" y3="31"/>
  6611. <curve x1="19.374" x2="22.582" x3="25.205" y1="31" y2="29.88" y3="27.834"/>
  6612. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="24"/>
  6613. </path>
  6614. <fillstroke/>
  6615. <path>
  6616. <move x="13" y="20"/>
  6617. <line x="13" y="22"/>
  6618. <line x="11" y="22"/>
  6619. <line x="11" y="20"/>
  6620. <close/>
  6621. <move x="21" y="10"/>
  6622. <line x="21" y="12"/>
  6623. <line x="19" y="12"/>
  6624. <line x="19" y="10"/>
  6625. <close/>
  6626. </path>
  6627. <fillstroke/>
  6628. <path>
  6629. <move x="16" y="1"/>
  6630. <curve x1="12.626" x2="9.418" x3="6.795" y1="1" y2="2.12" y3="4.166"/>
  6631. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="6"/>
  6632. <curve x1="8" x2="7.986" x3="7.977" y1="5.924" y2="5.851" y3="5.777"/>
  6633. <arc large-arc-flag="0" rx="12.9" ry="12.9" sweep-flag="1" x="16" x-axis-rotation="0" y="3"/>
  6634. <curve x1="20.262" x2="24" x3="24" y1="3" y2="6.972" y3="11.5"/>
  6635. <curve x1="24" x2="20.187" x3="15.5" y1="16.187" y2="20" y3="20"/>
  6636. <line x="15" y="20"/>
  6637. <line x="15" y="22"/>
  6638. <line x="15.5" y="22"/>
  6639. <curve x1="21.29" x2="26" x3="26" y1="22" y2="17.29" y3="11.5"/>
  6640. <curve x1="26" x2="25.468" x3="24.56" y1="9.615" y2="7.808" y3="6.24"/>
  6641. <curve x1="27.275" x2="29" x3="29" y1="8.626" y2="12.112" y3="16"/>
  6642. <curve x1="29" x2="28.508" x3="27.538" y1="18.115" y2="20.133" y3="21.996"/>
  6643. <line x="29.312" y="22.919"/>
  6644. <arc large-arc-flag="0" rx="15.05" ry="15.05" sweep-flag="0" x="31" x-axis-rotation="0" y="16"/>
  6645. <curve x1="31" x2="24.271" x3="16" y1="7.729" y2="1" y3="1"/>
  6646. </path>
  6647. <fillstroke/>
  6648. </foreground>
  6649. </shape>
  6650. <shape aspect="variable" h="32" name="watsonx-data" strokewidth="inherit" w="32">
  6651. <connections/>
  6652. <foreground>
  6653. <save/>
  6654. <rect h="32" w="32" x="0" y="0"/>
  6655. <stroke/>
  6656. <restore/>
  6657. <rect/>
  6658. <stroke/>
  6659. <path>
  6660. <move x="26" y="24"/>
  6661. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="26"/>
  6662. <curve x1="24" x2="24.014" x3="24.022" y1="26.076" y2="26.149" y3="26.223"/>
  6663. <arc large-arc-flag="0" rx="12.91" ry="12.91" sweep-flag="1" x="16" x-axis-rotation="0" y="29"/>
  6664. <curve x1="13.225" x2="10.657" x3="8.543" y1="29" y2="28.119" y3="26.632"/>
  6665. <curve x1="8.801" x2="9.06" x3="9.323" y1="26.658" y2="26.677" y3="26.677"/>
  6666. <curve x1="13.556" x2="17" x3="17" y1="26.677" y2="23.233" y3="19"/>
  6667. <line x="15" y="19"/>
  6668. <arc large-arc-flag="0" rx="5.683" ry="5.683" sweep-flag="1" x="9.323" x-axis-rotation="0" y="24.677"/>
  6669. <arc large-arc-flag="0" rx="5.664" ry="5.664" sweep-flag="1" x="4.191" x-axis-rotation="0" y="21.404"/>
  6670. <curve x1="4.055" x2="3.931" x3="3.818" y1="21.107" y2="20.804" y3="20.494"/>
  6671. <curve x1="4.478" x2="5.218" x3="6" y1="20.817" y2="21" y3="21"/>
  6672. <curve x1="8.757" x2="11" x3="11" y1="21" y2="18.757" y3="16"/>
  6673. <line x="11" y="14"/>
  6674. <line x="9" y="14"/>
  6675. <line x="9" y="16"/>
  6676. <curve x1="9" x2="7.654" x3="6" y1="17.654" y2="19" y3="19"/>
  6677. <curve x1="4.346" x2="3" x3="3" y1="19" y2="17.654" y3="16"/>
  6678. <curve x1="3" x2="3.492" x3="4.462" y1="13.885" y2="11.867" y3="10.004"/>
  6679. <line x="2.688" y="9.081"/>
  6680. <arc large-arc-flag="0" rx="15.046" ry="15.046" sweep-flag="0" x="1" x-axis-rotation="0" y="16"/>
  6681. <curve x1="1" x2="7.729" x3="16" y1="24.271" y2="31" y3="31"/>
  6682. <curve x1="19.374" x2="22.582" x3="25.205" y1="31" y2="29.88" y3="27.834"/>
  6683. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="24"/>
  6684. <close/>
  6685. </path>
  6686. <fillstroke/>
  6687. <path>
  6688. <move x="23" y="21"/>
  6689. <line x="23" y="23"/>
  6690. <line x="21" y="23"/>
  6691. <line x="21" y="21"/>
  6692. <close/>
  6693. <move x="17" y="15"/>
  6694. <line x="17" y="17"/>
  6695. <line x="15" y="17"/>
  6696. <line x="15" y="15"/>
  6697. <close/>
  6698. <move x="9" y="11"/>
  6699. <line x="9" y="9"/>
  6700. <line x="11" y="9"/>
  6701. <line x="11" y="11"/>
  6702. <close/>
  6703. </path>
  6704. <fillstroke/>
  6705. <path>
  6706. <move x="16" y="1"/>
  6707. <curve x1="12.626" x2="9.418" x3="6.795" y1="1" y2="2.12" y3="4.166"/>
  6708. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="6"/>
  6709. <curve x1="8" x2="7.986" x3="7.977" y1="5.924" y2="5.851" y3="5.777"/>
  6710. <arc large-arc-flag="0" rx="12.91" ry="12.91" sweep-flag="1" x="16" x-axis-rotation="0" y="3"/>
  6711. <curve x1="18.77" x2="21.336" x3="23.448" y1="3" y2="3.878" y3="5.361"/>
  6712. <arc large-arc-flag="0" rx="7.795" ry="7.795" sweep-flag="0" x="22.693" x-axis-rotation="0" y="5.323"/>
  6713. <curve x1="18.46" x2="15.017" x3="15.017" y1="5.323" y2="8.767" y3="13"/>
  6714. <line x="17.017" y="13"/>
  6715. <arc large-arc-flag="0" rx="5.683" ry="5.683" sweep-flag="1" x="22.693" x-axis-rotation="0" y="7.323"/>
  6716. <arc large-arc-flag="0" rx="5.642" ry="5.642" sweep-flag="1" x="27.612" x-axis-rotation="0" y="10.188"/>
  6717. <curve x1="27.827" x2="28.017" x3="28.185" y1="10.617" y2="11.058" y3="11.512"/>
  6718. <arc large-arc-flag="0" rx="4.959" ry="4.959" sweep-flag="0" x="26" x-axis-rotation="0" y="11"/>
  6719. <curve x1="23.243" x2="21" x3="21" y1="11" y2="13.243" y3="16"/>
  6720. <line x="21" y="18"/>
  6721. <line x="23" y="18"/>
  6722. <line x="23" y="16"/>
  6723. <curve x1="23" x2="24.346" x3="26" y1="14.346" y2="13" y3="13"/>
  6724. <curve x1="27.654" x2="29" x3="29" y1="13" y2="14.346" y3="16"/>
  6725. <curve x1="29" x2="28.508" x3="27.538" y1="18.115" y2="20.133" y3="21.996"/>
  6726. <line x="29.313" y="22.919"/>
  6727. <arc large-arc-flag="0" rx="15.046" ry="15.046" sweep-flag="0" x="31" x-axis-rotation="0" y="16"/>
  6728. <curve x1="31" x2="24.271" x3="16" y1="7.729" y2="1" y3="1"/>
  6729. <close/>
  6730. </path>
  6731. <fillstroke/>
  6732. </foreground>
  6733. </shape>
  6734. <shape aspect="variable" h="32" name="watsonx-governance" strokewidth="inherit" w="32">
  6735. <connections/>
  6736. <foreground>
  6737. <save/>
  6738. <rect h="32" w="32" x="0" y="0"/>
  6739. <stroke/>
  6740. <restore/>
  6741. <rect/>
  6742. <stroke/>
  6743. <path>
  6744. <move x="26" y="24"/>
  6745. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="26"/>
  6746. <curve x1="24" x2="24.014" x3="24.023" y1="26.076" y2="26.149" y3="26.223"/>
  6747. <arc large-arc-flag="0" rx="12.91" ry="12.91" sweep-flag="1" x="16" x-axis-rotation="0" y="29"/>
  6748. <curve x1="8.832" x2="3" x3="3" y1="29" y2="23.169" y3="16"/>
  6749. <curve x1="3" x2="3.492" x3="4.462" y1="13.885" y2="11.867" y3="10.004"/>
  6750. <line x="2.688" y="9.081"/>
  6751. <arc large-arc-flag="0" rx="15.046" ry="15.046" sweep-flag="0" x="1" x-axis-rotation="0" y="16"/>
  6752. <curve x1="1" x2="7.729" x3="16" y1="24.271" y2="31" y3="31"/>
  6753. <curve x1="19.374" x2="22.582" x3="25.205" y1="31" y2="29.88" y3="27.834"/>
  6754. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="26" x-axis-rotation="0" y="24"/>
  6755. </path>
  6756. <fillstroke/>
  6757. <path>
  6758. <move x="13" y="23"/>
  6759. <line x="13" y="25"/>
  6760. <line x="11" y="25"/>
  6761. <line x="11" y="23"/>
  6762. <close/>
  6763. <move x="13" y="9"/>
  6764. <line x="13" y="11"/>
  6765. <line x="11" y="11"/>
  6766. <line x="11" y="9"/>
  6767. <close/>
  6768. <move x="13" y="16"/>
  6769. <line x="13" y="18"/>
  6770. <line x="11" y="18"/>
  6771. <line x="11" y="16"/>
  6772. <close/>
  6773. </path>
  6774. <fillstroke/>
  6775. <path>
  6776. <move x="16" y="1"/>
  6777. <curve x1="12.626" x2="9.418" x3="6.795" y1="1" y2="2.12" y3="4.166"/>
  6778. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="6"/>
  6779. <curve x1="8" x2="7.986" x3="7.977" y1="5.924" y2="5.851" y3="5.777"/>
  6780. <arc large-arc-flag="0" rx="12.91" ry="12.91" sweep-flag="1" x="16" x-axis-rotation="0" y="3"/>
  6781. <curve x1="17.654" x2="19" x3="19" y1="3" y2="4.346" y3="6"/>
  6782. <curve x1="19" x2="17.654" x3="16" y1="7.654" y2="9" y3="9"/>
  6783. <line x="15" y="9"/>
  6784. <line x="15" y="11"/>
  6785. <line x="16" y="11"/>
  6786. <curve x1="18.757" x2="21" x3="21" y1="11" y2="8.757" y3="6"/>
  6787. <curve x1="21" x2="20.98" x3="20.947" y1="5.76" y2="5.525" y3="5.294"/>
  6788. <arc large-arc-flag="0" rx="6.467" ry="6.467" sweep-flag="1" x="22.5" x-axis-rotation="0" y="9.5"/>
  6789. <curve x1="22.5" x2="19.584" x3="16" y1="13.084" y2="16" y3="16"/>
  6790. <line x="15" y="16"/>
  6791. <line x="15" y="18"/>
  6792. <line x="16" y="18"/>
  6793. <curve x1="20.687" x2="24.5" x3="24.5" y1="18" y2="14.187" y3="9.5"/>
  6794. <curve x1="24.5" x2="24.389" x3="24.198" y1="8.735" y2="7.996" y3="7.29"/>
  6795. <arc large-arc-flag="0" rx="9.937" ry="9.937" sweep-flag="1" x="26" x-axis-rotation="0" y="13"/>
  6796. <curve x1="26" x2="21.514" x3="16" y1="18.514" y2="23" y3="23"/>
  6797. <line x="15" y="23"/>
  6798. <line x="15" y="25"/>
  6799. <line x="16" y="25"/>
  6800. <curve x1="22.617" x2="28" x3="28" y1="25" y2="19.617" y3="13"/>
  6801. <curve x1="28" x2="27.894" x3="27.706" y1="12.1" y2="11.226" y3="10.382"/>
  6802. <arc large-arc-flag="0" rx="12.9" ry="12.9" sweep-flag="1" x="29" x-axis-rotation="0" y="16"/>
  6803. <curve x1="29" x2="28.508" x3="27.538" y1="18.115" y2="20.133" y3="21.996"/>
  6804. <line x="29.312" y="22.919"/>
  6805. <arc large-arc-flag="0" rx="15.046" ry="15.046" sweep-flag="0" x="31" x-axis-rotation="0" y="16"/>
  6806. <curve x1="31" x2="24.271" x3="16" y1="7.729" y2="1" y3="1"/>
  6807. </path>
  6808. <fillstroke/>
  6809. </foreground>
  6810. </shape>
  6811. <shape aspect="variable" h="32" name="watsonx" strokewidth="inherit" w="32">
  6812. <connections/>
  6813. <foreground>
  6814. <save/>
  6815. <rect h="32" w="32" x="0" y="0"/>
  6816. <stroke/>
  6817. <restore/>
  6818. <rect/>
  6819. <stroke/>
  6820. <path>
  6821. <move x="29.312" y="22.919"/>
  6822. <arc large-arc-flag="0" rx="15.04" ry="15.04" sweep-flag="0" x="31" x-axis-rotation="0" y="16"/>
  6823. <curve x1="31" x2="24.271" x3="16" y1="7.729" y2="1" y3="1"/>
  6824. <arc large-arc-flag="0" rx="14.9" ry="14.9" sweep-flag="0" x="6.795" x-axis-rotation="0" y="4.167"/>
  6825. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="8" x-axis-rotation="0" y="6"/>
  6826. <curve x1="8" x2="7.986" x3="7.978" y1="5.923" y2="5.85" y3="5.776"/>
  6827. <arc large-arc-flag="0" rx="12.91" ry="12.91" sweep-flag="1" x="18.829" x-axis-rotation="0" y="3.32"/>
  6828. <curve x1="15.435" x2="12.929" x3="12.929" y1="4.246" y2="7.348" y3="11.031"/>
  6829. <curve x1="12.929" x2="13.047" x3="13.262" y1="11.821" y2="12.581" y3="13.301"/>
  6830. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="11.07" x-axis-rotation="0" y="12.971"/>
  6831. <curve x1="7.366" x2="4.25" x3="3.344" y1="12.971" y2="15.505" y3="18.928"/>
  6832. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="3" x-axis-rotation="0" y="16"/>
  6833. <curve x1="3" x2="3.492" x3="4.462" y1="13.884" y2="11.867" y3="10.005"/>
  6834. <line x="2.688" y="9.08"/>
  6835. <arc large-arc-flag="0" rx="15.04" ry="15.04" sweep-flag="0" x="1" x-axis-rotation="0" y="16"/>
  6836. <curve x1="1" x2="7.729" x3="16" y1="24.27" y2="31" y3="31"/>
  6837. <arc large-arc-flag="0" rx="14.9" ry="14.9" sweep-flag="0" x="25.205" x-axis-rotation="0" y="27.833"/>
  6838. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="24" x-axis-rotation="0" y="26"/>
  6839. <curve x1="24" x2="24.014" x3="24.022" y1="26.077" y2="26.15" y3="26.224"/>
  6840. <curve x1="22.942" x2="21.745" x3="20.473" y1="27.074" y2="27.734" y3="28.201"/>
  6841. <arc large-arc-flag="0" rx="4.9" ry="4.9" sweep-flag="0" x="21" x-axis-rotation="0" y="26"/>
  6842. <curve x1="21" x2="20.204" x3="18.993" y1="24.37" y2="22.933" y3="22.02"/>
  6843. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="19.07" x-axis-rotation="0" y="20.97"/>
  6844. <curve x1="19.07" x2="18.944" x3="18.732" y1="20.184" y2="19.43" y3="18.712"/>
  6845. <curve x1="19.432" x2="20.167" x3="20.93" y1="18.913" y2="19.03" y3="19.03"/>
  6846. <curve x1="24.634" x2="27.75" x3="28.656" y1="19.03" y2="16.496" y3="13.073"/>
  6847. <curve x1="28.874" x2="29" x3="29" y1="14.015" y2="14.992" y3="16"/>
  6848. <curve x1="29" x2="28.508" x3="27.538" y1="18.116" y2="20.133" y3="21.995"/>
  6849. <close/>
  6850. <move x="11.519" y="28.184"/>
  6851. <arc large-arc-flag="0" rx="13.06" ry="13.06" sweep-flag="1" x="6.686" x-axis-rotation="0" y="25.05"/>
  6852. <arc large-arc-flag="0" rx="5.96" ry="5.96" sweep-flag="1" x="5.07" x-axis-rotation="0" y="20.97"/>
  6853. <curve x1="5.07" x2="7.762" x3="11.07" y1="17.662" y2="14.97" y3="14.97"/>
  6854. <curve x1="14.378" x2="17.07" x3="17.07" y1="14.97" y2="17.661" y3="20.97"/>
  6855. <curve x1="17.07" x2="17.058" x3="17.057" y1="21.02" y2="21.067" y3="21.117"/>
  6856. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="16" x-axis-rotation="0" y="21"/>
  6857. <curve x1="13.243" x2="11" x3="11" y1="21" y2="23.243" y3="26"/>
  6858. <curve x1="11" x2="11.192" x3="11.519" y1="26.786" y2="27.523" y3="28.184"/>
  6859. <move x="18.999" y="26"/>
  6860. <curve x1="18.999" x2="17.654" x3="15.999" y1="27.654" y2="29" y3="29"/>
  6861. <curve x1="14.344" x2="12.999" x3="12.999" y1="29" y2="27.654" y3="26"/>
  6862. <curve x1="12.999" x2="14.346" x3="15.999" y1="24.346" y2="23" y3="23"/>
  6863. <curve x1="17.652" x2="18.999" x3="18.999" y1="23" y2="24.346" y3="26"/>
  6864. <move x="20.929" y="17.03"/>
  6865. <curve x1="17.622" x2="14.929" x3="14.929" y1="17.03" y2="14.338" y3="11.03"/>
  6866. <curve x1="14.929" x2="17.622" x3="20.929" y1="7.722" y2="5.03" y3="5.03"/>
  6867. <curve x1="22.359" x2="23.672" x3="24.704" y1="5.03" y2="5.534" y3="6.372"/>
  6868. <quad x1="25.158" x2="25.572" y1="6.782" y2="7.234"/>
  6869. <arc large-arc-flag="0" rx="5.97" ry="5.97" sweep-flag="1" x="26.93" x-axis-rotation="0" y="11.03"/>
  6870. <curve x1="26.93" x2="24.238" x3="20.93" y1="14.338" y2="17.03" y3="17.03"/>
  6871. </path>
  6872. <fillstroke/>
  6873. </foreground>
  6874. </shape>
  6875. <shape aspect="variable" h="32" name="wikis" strokewidth="inherit" w="32">
  6876. <connections/>
  6877. <foreground>
  6878. <save/>
  6879. <rect h="32" w="32" x="0" y="0"/>
  6880. <stroke/>
  6881. <restore/>
  6882. <rect/>
  6883. <stroke/>
  6884. <path>
  6885. <move x="16" y="2"/>
  6886. <arc large-arc-flag="1" rx="14" ry="14" sweep-flag="0" x="30" x-axis-rotation="0" y="16"/>
  6887. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="16" x-axis-rotation="0" y="2"/>
  6888. <close/>
  6889. <move x="28" y="15"/>
  6890. <line x="22" y="15"/>
  6891. <arc large-arc-flag="0" rx="24.26" ry="24.26" sweep-flag="0" x="19.21" x-axis-rotation="0" y="4.45"/>
  6892. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="28" x-axis-rotation="0" y="15"/>
  6893. <close/>
  6894. <move x="16" y="28"/>
  6895. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="15.33" x-axis-rotation="0" y="28"/>
  6896. <arc large-arc-flag="0" rx="21.85" ry="21.85" sweep-flag="1" x="12" x-axis-rotation="0" y="17"/>
  6897. <line x="20" y="17"/>
  6898. <arc large-arc-flag="0" rx="21.85" ry="21.85" sweep-flag="1" x="16.7" x-axis-rotation="0" y="28"/>
  6899. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="16" x-axis-rotation="0" y="28"/>
  6900. <close/>
  6901. <move x="12" y="15"/>
  6902. <arc large-arc-flag="0" rx="21.85" ry="21.85" sweep-flag="1" x="15.3" x-axis-rotation="0" y="4"/>
  6903. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="16.64" x-axis-rotation="0" y="4"/>
  6904. <arc large-arc-flag="0" rx="21.85" ry="21.85" sweep-flag="1" x="20" x-axis-rotation="0" y="15"/>
  6905. <close/>
  6906. <move x="12.76" y="4.45"/>
  6907. <arc large-arc-flag="0" rx="24.26" ry="24.26" sweep-flag="0" x="10" x-axis-rotation="0" y="15"/>
  6908. <line x="4" y="15"/>
  6909. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="12.79" x-axis-rotation="0" y="4.45"/>
  6910. <close/>
  6911. <move x="4.05" y="17"/>
  6912. <line x="10.05" y="17"/>
  6913. <arc large-arc-flag="0" rx="24.26" ry="24.26" sweep-flag="0" x="12.8" x-axis-rotation="0" y="27.55"/>
  6914. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="4.05" x-axis-rotation="0" y="17"/>
  6915. <close/>
  6916. <move x="19.21" y="27.55"/>
  6917. <arc large-arc-flag="0" rx="24.26" ry="24.26" sweep-flag="0" x="22" x-axis-rotation="0" y="17"/>
  6918. <line x="28" y="17"/>
  6919. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="19.21" x-axis-rotation="0" y="27.55"/>
  6920. <close/>
  6921. </path>
  6922. <fillstroke/>
  6923. </foreground>
  6924. </shape>
  6925. <shape aspect="variable" h="32" name="z--systems" strokewidth="inherit" w="32">
  6926. <connections/>
  6927. <foreground>
  6928. <save/>
  6929. <rect h="32" w="32" x="0" y="0"/>
  6930. <stroke/>
  6931. <restore/>
  6932. <rect/>
  6933. <stroke/>
  6934. <path>
  6935. <move x="27" y="3"/>
  6936. <line x="19" y="3"/>
  6937. <curve x1="17.897" x2="17" x3="17" y1="3" y2="3.898" y3="5"/>
  6938. <line x="17" y="27"/>
  6939. <curve x1="17" x2="17.897" x3="19" y1="28.103" y2="29" y3="29"/>
  6940. <line x="27" y="29"/>
  6941. <curve x1="28.103" x2="29" x3="29" y1="29" y2="28.103" y3="27"/>
  6942. <line x="29" y="5"/>
  6943. <curve x1="29" x2="28.103" x3="27" y1="3.898" y2="3" y3="3"/>
  6944. <move x="27" y="9.92"/>
  6945. <line x="20.85" y="5"/>
  6946. <line x="27" y="5"/>
  6947. <close/>
  6948. <move x="26.4" y="12"/>
  6949. <line x="19" y="17.92"/>
  6950. <line x="19" y="6.08"/>
  6951. <close/>
  6952. <move x="27" y="14.08"/>
  6953. <line x="27.001" y="25.92"/>
  6954. <line x="19.601" y="20"/>
  6955. <close/>
  6956. <move x="19" y="22.08"/>
  6957. <line x="25.15" y="27"/>
  6958. <line x="19" y="27"/>
  6959. <close/>
  6960. <move x="13" y="3"/>
  6961. <line x="5" y="3"/>
  6962. <curve x1="3.897" x2="3" x3="3" y1="3" y2="3.898" y3="5"/>
  6963. <line x="3" y="27"/>
  6964. <curve x1="3" x2="3.897" x3="5" y1="28.103" y2="29" y3="29"/>
  6965. <line x="13" y="29"/>
  6966. <curve x1="14.103" x2="15" x3="15" y1="29" y2="28.103" y3="27"/>
  6967. <line x="15" y="5"/>
  6968. <curve x1="15" x2="14.103" x3="13" y1="3.898" y2="3" y3="3"/>
  6969. <move x="13" y="9.92"/>
  6970. <line x="6.85" y="5"/>
  6971. <line x="13" y="5"/>
  6972. <close/>
  6973. <move x="12.4" y="12"/>
  6974. <line x="5" y="17.92"/>
  6975. <line x="5" y="6.08"/>
  6976. <close/>
  6977. <move x="13" y="14.08"/>
  6978. <line x="13.001" y="25.92"/>
  6979. <line x="5.601" y="20"/>
  6980. <close/>
  6981. <move x="5" y="22.08"/>
  6982. <line x="11.15" y="27"/>
  6983. <line x="5" y="27"/>
  6984. <close/>
  6985. </path>
  6986. <fillstroke/>
  6987. </foreground>
  6988. </shape>
  6989. </shapes>