mhs.vue 333 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg
  8. class="svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. version="1.1"
  12. id="图层_1"
  13. x="0px"
  14. y="0px"
  15. width="1617.869px"
  16. height="1130.968px"
  17. viewBox="0 80 1617.869 1200.968"
  18. enable-background="new 0 0 1617.869 1130.968"
  19. xml:space="preserve"
  20. >
  21. <g id="other">
  22. <rect
  23. x="431.532"
  24. y="30.892"
  25. opacity="0.9"
  26. fill="#1B2522"
  27. enable-background="new "
  28. width="147.247"
  29. height="21.631"
  30. ></rect>
  31. <rect
  32. x="431.532"
  33. y="54.872"
  34. opacity="0.9"
  35. fill="#1B2522"
  36. enable-background="new "
  37. width="147.247"
  38. height="21.631"
  39. ></rect>
  40. <rect
  41. x="431.532"
  42. y="78.851"
  43. opacity="0.9"
  44. fill="#1B2522"
  45. enable-background="new "
  46. width="147.247"
  47. height="21.633"
  48. ></rect>
  49. <g>
  50. <text
  51. transform="matrix(1 0 0 1 453.4392 47.2153)"
  52. fill="#919CA0"
  53. font-family="'MicrosoftYaHei'"
  54. font-size="10.6069"
  55. >
  56. la
  57. </text>
  58. <text
  59. transform="matrix(1 0 0 1 464.3503 47.2153)"
  60. fill="#919CA0"
  61. font-family="'MicrosoftYaHei'"
  62. font-size="10.6069"
  63. >
  64. (A)
  65. </text>
  66. <text
  67. transform="matrix(1 0 0 1 479.7937 47.2153)"
  68. fill="#919CA0"
  69. font-family="'MicrosoftYaHei'"
  70. font-size="10.6069"
  71. >
  72. :
  73. </text>
  74. </g>
  75. <g>
  76. <text
  77. transform="matrix(1 0 0 1 443.5339 68.6948)"
  78. fill="#919CA0"
  79. font-family="'MicrosoftYaHei'"
  80. font-size="10.6069"
  81. >
  82. P(MW):
  83. </text>
  84. </g>
  85. <g>
  86. <text
  87. transform="matrix(1 0 0 1 437.1462 94.7671)"
  88. fill="#919CA0"
  89. font-family="'MicrosoftYaHei'"
  90. font-size="10.6069"
  91. >
  92. Q
  93. </text>
  94. <text
  95. transform="matrix(1 0 0 1 448.0085 94.7671)"
  96. fill="#919CA0"
  97. font-family="'MicrosoftYaHei'"
  98. font-size="10.6069"
  99. >
  100. (MVar)
  101. </text>
  102. <text
  103. transform="matrix(1 0 0 1 479.7937 94.7671)"
  104. fill="#919CA0"
  105. font-family="'MicrosoftYaHei'"
  106. font-size="10.6069"
  107. >
  108. :
  109. </text>
  110. </g>
  111. <rect
  112. x="431.532"
  113. y="102.824"
  114. opacity="0.9"
  115. fill="#1B2522"
  116. enable-background="new "
  117. width="147.247"
  118. height="21.633"
  119. ></rect>
  120. <g>
  121. <text
  122. transform="matrix(1 0 0 1 442.4128 116.647)"
  123. fill="#919CA0"
  124. font-family="'MicrosoftYaHei'"
  125. font-size="10.6069"
  126. >
  127. Ux
  128. </text>
  129. <text
  130. transform="matrix(1 0 0 1 458.53 116.647)"
  131. fill="#919CA0"
  132. font-family="'MicrosoftYaHei'"
  133. font-size="10.6069"
  134. >
  135. (kV)
  136. </text>
  137. <text
  138. transform="matrix(1 0 0 1 479.7937 116.647)"
  139. fill="#919CA0"
  140. font-family="'MicrosoftYaHei'"
  141. font-size="10.6069"
  142. >
  143. :
  144. </text>
  145. </g>
  146. <rect
  147. x="431.532"
  148. y="126.932"
  149. opacity="0.9"
  150. fill="#1B2522"
  151. enable-background="new "
  152. width="147.247"
  153. height="21.633"
  154. ></rect>
  155. <g>
  156. <text
  157. transform="matrix(1 0 0 1 448.0085 140.7544)"
  158. fill="#919CA0"
  159. font-family="'MicrosoftYaHei'"
  160. font-size="10.6069"
  161. >
  162. F
  163. </text>
  164. <text
  165. transform="matrix(1 0 0 1 458.53 140.7544)"
  166. fill="#919CA0"
  167. font-family="'MicrosoftYaHei'"
  168. font-size="10.6069"
  169. >
  170. (Hz)
  171. </text>
  172. <text
  173. transform="matrix(1 0 0 1 479.7937 140.7544)"
  174. fill="#919CA0"
  175. font-family="'MicrosoftYaHei'"
  176. font-size="10.6069"
  177. >
  178. :
  179. </text>
  180. </g>
  181. <rect
  182. x="431.532"
  183. y="150.215"
  184. opacity="0.9"
  185. fill="#1B2522"
  186. enable-background="new "
  187. width="147.247"
  188. height="21.642"
  189. ></rect>
  190. <g>
  191. <text
  192. transform="matrix(1 0 0 1 458.0837 166.5259)"
  193. fill="#919CA0"
  194. font-family="'MicrosoftYaHei'"
  195. font-size="10.6069"
  196. >
  197. COS:
  198. </text>
  199. </g>
  200. <rect
  201. x="916.76"
  202. y="105.258"
  203. opacity="0.9"
  204. fill="#1B2522"
  205. enable-background="new "
  206. width="154.674"
  207. height="21.643"
  208. ></rect>
  209. <rect
  210. x="916.76"
  211. y="129.239"
  212. opacity="0.9"
  213. fill="#1B2522"
  214. enable-background="new "
  215. width="154.674"
  216. height="21.633"
  217. ></rect>
  218. <rect
  219. x="916.76"
  220. y="153.219"
  221. opacity="0.9"
  222. fill="#1B2522"
  223. enable-background="new "
  224. width="154.674"
  225. height="21.633"
  226. ></rect>
  227. <g>
  228. <text
  229. transform="matrix(1 0 0 1 929.7029 119.5806)"
  230. fill="#929CA0"
  231. font-family="'MicrosoftYaHei'"
  232. font-size="10.6069"
  233. >
  234. Ua(kV):
  235. </text>
  236. </g>
  237. <g>
  238. <text
  239. transform="matrix(1 0 0 1 928.7917 144.061)"
  240. fill="#929CA0"
  241. font-family="'MicrosoftYaHei'"
  242. font-size="10.6069"
  243. >
  244. Ub(kV):
  245. </text>
  246. </g>
  247. <g>
  248. <text
  249. transform="matrix(1 0 0 1 930.2478 169.1333)"
  250. fill="#929CA0"
  251. font-family="'MicrosoftYaHei'"
  252. font-size="10.6069"
  253. >
  254. Uc(kV):
  255. </text>
  256. </g>
  257. <rect
  258. x="916.76"
  259. y="176.984"
  260. opacity="0.9"
  261. fill="#1B2522"
  262. enable-background="new "
  263. width="154.674"
  264. height="21.633"
  265. ></rect>
  266. <g>
  267. <text
  268. transform="matrix(1 0 0 1 935.1208 191.8989)"
  269. fill="#929CA0"
  270. font-family="'MicrosoftYaHei'"
  271. font-size="10.6069"
  272. >
  273. U0(V):
  274. </text>
  275. </g>
  276. <rect
  277. x="1423.638"
  278. y="462.191"
  279. opacity="0.9"
  280. fill="#1B2522"
  281. enable-background="new "
  282. width="154.674"
  283. height="21.638"
  284. ></rect>
  285. <rect
  286. x="1423.638"
  287. y="486.177"
  288. opacity="0.9"
  289. fill="#1B2522"
  290. enable-background="new "
  291. width="154.674"
  292. height="21.633"
  293. ></rect>
  294. <rect
  295. x="1423.638"
  296. y="510.153"
  297. opacity="0.9"
  298. fill="#1B2522"
  299. enable-background="new "
  300. width="154.674"
  301. height="21.633"
  302. ></rect>
  303. <g>
  304. <text
  305. transform="matrix(1 0 0 1 1436.5876 476.5142)"
  306. fill="#929CA0"
  307. font-family="'MicrosoftYaHei'"
  308. font-size="10.6069"
  309. >
  310. Uab(kV):
  311. </text>
  312. </g>
  313. <g>
  314. <text
  315. transform="matrix(1 0 0 1 1435.6765 500.9946)"
  316. fill="#929CA0"
  317. font-family="'MicrosoftYaHei'"
  318. font-size="10.6069"
  319. >
  320. Ubc(kV):
  321. </text>
  322. </g>
  323. <g>
  324. <text
  325. transform="matrix(1 0 0 1 1437.1326 526.0669)"
  326. fill="#929CA0"
  327. font-family="'MicrosoftYaHei'"
  328. font-size="10.6069"
  329. >
  330. Uca(kV):
  331. </text>
  332. </g>
  333. <text
  334. transform="matrix(0.9268 0 0 1 11.6907 217.8423)"
  335. fill="#FFFFFF"
  336. font-family="'MicrosoftYaHei'"
  337. font-size="11.1235"
  338. >
  339. 110kV 母线
  340. </text>
  341. <rect
  342. x="971.305"
  343. y="417.052"
  344. opacity="0.9"
  345. fill="#1B2522"
  346. enable-background="new "
  347. width="149.407"
  348. height="20.229"
  349. ></rect>
  350. <rect
  351. x="971.305"
  352. y="439.474"
  353. opacity="0.9"
  354. fill="#1B2522"
  355. enable-background="new "
  356. width="149.407"
  357. height="20.229"
  358. ></rect>
  359. <rect
  360. x="971.305"
  361. y="461.899"
  362. opacity="0.9"
  363. fill="#1B2522"
  364. enable-background="new "
  365. width="149.407"
  366. height="20.231"
  367. ></rect>
  368. <g>
  369. <text
  370. transform="matrix(1 0 0 1 976.571 431.3491)"
  371. fill="#929CA0"
  372. font-family="'MicrosoftYaHei'"
  373. font-size="10.6069"
  374. >
  375. 油面温度(℃):
  376. </text>
  377. </g>
  378. <g>
  379. <text
  380. transform="matrix(1 0 0 1 976.571 453.5796)"
  381. fill="#929CA0"
  382. font-family="'MicrosoftYaHei'"
  383. font-size="10.6069"
  384. >
  385. 绕阻温度(℃):
  386. </text>
  387. </g>
  388. <g>
  389. <text
  390. transform="matrix(1 0 0 1 1015.4763 477.271)"
  391. fill="#929CA0"
  392. font-family="'MicrosoftYaHei'"
  393. font-size="10.6069"
  394. >
  395. 挡位:
  396. </text>
  397. </g>
  398. <rect
  399. x="971.305"
  400. y="484.98"
  401. opacity="0.9"
  402. fill="#1B2522"
  403. enable-background="new "
  404. width="149.407"
  405. height="21.63"
  406. ></rect>
  407. <rect
  408. x="971.305"
  409. y="508.969"
  410. opacity="0.9"
  411. fill="#1B2522"
  412. enable-background="new "
  413. width="149.407"
  414. height="21.63"
  415. ></rect>
  416. <rect
  417. x="971.305"
  418. y="532.94"
  419. opacity="0.9"
  420. fill="#1B2522"
  421. enable-background="new "
  422. width="149.407"
  423. height="21.633"
  424. ></rect>
  425. <g>
  426. <text
  427. transform="matrix(1 0 0 1 1010.3357 501.3022)"
  428. fill="#919CA0"
  429. font-family="'MicrosoftYaHei'"
  430. font-size="10.6069"
  431. >
  432. la
  433. </text>
  434. <text
  435. transform="matrix(1 0 0 1 1021.2478 501.3022)"
  436. fill="#919CA0"
  437. font-family="'MicrosoftYaHei'"
  438. font-size="10.6069"
  439. >
  440. (A)
  441. </text>
  442. <text
  443. transform="matrix(1 0 0 1 1036.6912 501.3022)"
  444. fill="#919CA0"
  445. font-family="'MicrosoftYaHei'"
  446. font-size="10.6069"
  447. >
  448. :
  449. </text>
  450. </g>
  451. <g>
  452. <text
  453. transform="matrix(1 0 0 1 1000.4314 522.7817)"
  454. fill="#919CA0"
  455. font-family="'MicrosoftYaHei'"
  456. font-size="10.6069"
  457. >
  458. P(MW):
  459. </text>
  460. </g>
  461. <g>
  462. <text
  463. transform="matrix(1 0 0 1 993.0417 548.854)"
  464. fill="#919CA0"
  465. font-family="'MicrosoftYaHei'"
  466. font-size="10.6069"
  467. >
  468. Q
  469. </text>
  470. <text
  471. transform="matrix(1 0 0 1 1000.905 548.854)"
  472. fill="#919CA0"
  473. font-family="'MicrosoftYaHei'"
  474. font-size="10.6069"
  475. >
  476. (MVar)
  477. </text>
  478. <text
  479. transform="matrix(1 0 0 1 1035.6912 548.854)"
  480. fill="#919CA0"
  481. font-family="'MicrosoftYaHei'"
  482. font-size="10.6069"
  483. >
  484. :
  485. </text>
  486. </g>
  487. <rect
  488. x="262.244"
  489. y="417.052"
  490. opacity="0.9"
  491. fill="#1B2522"
  492. enable-background="new "
  493. width="149.407"
  494. height="20.229"
  495. ></rect>
  496. <rect
  497. x="262.244"
  498. y="439.474"
  499. opacity="0.9"
  500. fill="#1B2522"
  501. enable-background="new "
  502. width="149.407"
  503. height="20.229"
  504. ></rect>
  505. <rect
  506. x="262.244"
  507. y="461.899"
  508. opacity="0.9"
  509. fill="#1B2522"
  510. enable-background="new "
  511. width="149.407"
  512. height="20.231"
  513. ></rect>
  514. <g>
  515. <text
  516. transform="matrix(1 0 0 1 267.5105 431.3491)"
  517. fill="#929CA0"
  518. font-family="'MicrosoftYaHei'"
  519. font-size="10.6069"
  520. >
  521. 油面温度(℃):
  522. </text>
  523. </g>
  524. <g>
  525. <text
  526. transform="matrix(1 0 0 1 267.5105 453.5796)"
  527. fill="#929CA0"
  528. font-family="'MicrosoftYaHei'"
  529. font-size="10.6069"
  530. >
  531. 绕阻温度(℃):
  532. </text>
  533. </g>
  534. <g>
  535. <text
  536. transform="matrix(1 0 0 1 306.4167 477.271)"
  537. fill="#929CA0"
  538. font-family="'MicrosoftYaHei'"
  539. font-size="10.6069"
  540. >
  541. 挡位:
  542. </text>
  543. </g>
  544. <rect
  545. x="262.244"
  546. y="484.98"
  547. opacity="0.9"
  548. fill="#1B2522"
  549. enable-background="new "
  550. width="149.407"
  551. height="21.63"
  552. ></rect>
  553. <rect
  554. x="262.244"
  555. y="508.969"
  556. opacity="0.9"
  557. fill="#1B2522"
  558. enable-background="new "
  559. width="149.407"
  560. height="21.63"
  561. ></rect>
  562. <rect
  563. x="262.244"
  564. y="532.94"
  565. opacity="0.9"
  566. fill="#1B2522"
  567. enable-background="new "
  568. width="149.407"
  569. height="21.633"
  570. ></rect>
  571. <g>
  572. <text
  573. transform="matrix(1 0 0 1 301.2751 501.3022)"
  574. fill="#919CA0"
  575. font-family="'MicrosoftYaHei'"
  576. font-size="10.6069"
  577. >
  578. la
  579. </text>
  580. <text
  581. transform="matrix(1 0 0 1 312.1877 501.3022)"
  582. fill="#919CA0"
  583. font-family="'MicrosoftYaHei'"
  584. font-size="10.6069"
  585. >
  586. (A)
  587. </text>
  588. <text
  589. transform="matrix(1 0 0 1 327.6301 501.3022)"
  590. fill="#919CA0"
  591. font-family="'MicrosoftYaHei'"
  592. font-size="10.6069"
  593. >
  594. :
  595. </text>
  596. </g>
  597. <g>
  598. <text
  599. transform="matrix(1 0 0 1 291.3708 522.7817)"
  600. fill="#919CA0"
  601. font-family="'MicrosoftYaHei'"
  602. font-size="10.6069"
  603. >
  604. P(MW):
  605. </text>
  606. </g>
  607. <g>
  608. <text
  609. transform="matrix(1 0 0 1 283.9812 548.854)"
  610. fill="#919CA0"
  611. font-family="'MicrosoftYaHei'"
  612. font-size="10.6069"
  613. >
  614. Q
  615. </text>
  616. <text
  617. transform="matrix(1 0 0 1 291.8459 548.854)"
  618. fill="#919CA0"
  619. font-family="'MicrosoftYaHei'"
  620. font-size="10.6069"
  621. >
  622. (MVar)
  623. </text>
  624. <text
  625. transform="matrix(1 0 0 1 326.6301 548.854)"
  626. fill="#919CA0"
  627. font-family="'MicrosoftYaHei'"
  628. font-size="10.6069"
  629. >
  630. :
  631. </text>
  632. </g>
  633. <rect
  634. x="895.565"
  635. y="272.968"
  636. fill="#95295D"
  637. width="3.219"
  638. height="22.354"
  639. ></rect>
  640. <rect
  641. x="887.678"
  642. y="272.968"
  643. fill="#95295D"
  644. width="3.22"
  645. height="22.354"
  646. ></rect>
  647. <rect
  648. x="847.618"
  649. y="282.535"
  650. fill="#95295D"
  651. width="41.668"
  652. height="3.219"
  653. ></rect>
  654. <rect
  655. x="817.536"
  656. y="282.536"
  657. fill="#95295D"
  658. width="22.079"
  659. height="3.219"
  660. ></rect>
  661. <rect
  662. x="846.01"
  663. y="272.968"
  664. fill="#95295D"
  665. width="3.219"
  666. height="22.354"
  667. ></rect>
  668. <rect
  669. x="838.12"
  670. y="272.968"
  671. fill="#95295D"
  672. width="3.229"
  673. height="22.354"
  674. ></rect>
  675. <text
  676. transform="matrix(1 0 0 1 1000.905 288.0239)"
  677. fill="#FFFFFF"
  678. font-family="'MicrosoftYaHei'"
  679. font-size="12.6678"
  680. >
  681. 11-09
  682. </text>
  683. <text
  684. transform="matrix(1 0 0 1 876.2107 257.8052)"
  685. fill="#FFFFFF"
  686. font-family="'MicrosoftYaHei'"
  687. font-size="12.6678"
  688. >
  689. 11-9
  690. </text>
  691. <rect
  692. x="664.138"
  693. y="287.146"
  694. fill="#95295D"
  695. width="3.219"
  696. height="22.058"
  697. ></rect>
  698. <rect
  699. x="664.138"
  700. y="335.177"
  701. fill="#95295D"
  702. width="3.219"
  703. height="24.122"
  704. ></rect>
  705. <rect
  706. x="664.138"
  707. y="384.936"
  708. fill="#95295D"
  709. width="3.219"
  710. height="29.964"
  711. ></rect>
  712. <text
  713. transform="matrix(1 0 0 1 750.6599 254.6821)"
  714. fill="#FFFFFF"
  715. font-family="'MicrosoftYaHei'"
  716. font-size="12.6678"
  717. >
  718. 11-0
  719. </text>
  720. <text
  721. transform="matrix(1 0 0 1 677.9949 275.9028)"
  722. fill="#FFFFFF"
  723. font-family="'MicrosoftYaHei'"
  724. font-size="12.6678"
  725. >
  726. 101-1
  727. </text>
  728. <text
  729. transform="matrix(1 0 0 1 683.4783 320.7446)"
  730. fill="#FFFFFF"
  731. font-family="'MicrosoftYaHei'"
  732. font-size="12.6678"
  733. >
  734. 101
  735. </text>
  736. <text
  737. transform="matrix(1 0 0 1 682.4783 373.6987)"
  738. fill="#FFFFFF"
  739. font-family="'MicrosoftYaHei'"
  740. font-size="12.6678"
  741. >
  742. 101-3
  743. </text>
  744. <g>
  745. <text
  746. transform="matrix(1 0 0 1 539.2712 302.7065)"
  747. fill="#FFFFFF"
  748. font-family="'MicrosoftYaHei'"
  749. font-size="12.6678"
  750. >
  751. 101-01
  752. </text>
  753. </g>
  754. <rect
  755. x="665.21"
  756. y="234.186"
  757. fill="#95295D"
  758. width="3.227"
  759. height="27.328"
  760. ></rect>
  761. <rect
  762. x="918.427"
  763. y="273.583"
  764. fill="#95295D"
  765. width="3.219"
  766. height="9.157"
  767. ></rect>
  768. <rect
  769. x="919.494"
  770. y="234.703"
  771. fill="#95295D"
  772. width="3.229"
  773. height="11.863"
  774. ></rect>
  775. <text
  776. transform="matrix(1 0 0 1 546.699 401.9839)"
  777. fill="#FFFFFF"
  778. font-family="'MicrosoftYaHei'"
  779. font-size="12.6678"
  780. >
  781. 101-0
  782. </text>
  783. <rect
  784. x="644.176"
  785. y="394.594"
  786. fill="#95295D"
  787. width="21.438"
  788. height="3.087"
  789. ></rect>
  790. <g>
  791. <line
  792. fill="none"
  793. stroke="#47B2A9"
  794. stroke-width="3"
  795. stroke-miterlimit="10"
  796. x1="599.931"
  797. y1="405.219"
  798. x2="599.931"
  799. y2="385.635"
  800. ></line>
  801. <line
  802. fill="none"
  803. stroke="#47B2A9"
  804. stroke-width="3"
  805. stroke-miterlimit="10"
  806. x1="613.399"
  807. y1="395.427"
  808. x2="599.931"
  809. y2="395.427"
  810. ></line>
  811. <line
  812. fill="none"
  813. stroke="#47B2A9"
  814. stroke-width="3"
  815. stroke-miterlimit="10"
  816. x1="594.552"
  817. y1="401.177"
  818. x2="594.552"
  819. y2="389.677"
  820. ></line>
  821. <line
  822. fill="none"
  823. stroke="#47B2A9"
  824. stroke-width="3"
  825. stroke-miterlimit="10"
  826. x1="589.155"
  827. y1="398.927"
  828. x2="589.155"
  829. y2="391.927"
  830. ></line>
  831. </g>
  832. <rect
  833. x="644.176"
  834. y="297.197"
  835. fill="#95295D"
  836. width="21.438"
  837. height="3.087"
  838. ></rect>
  839. <g>
  840. <line
  841. fill="none"
  842. stroke="#47B2A9"
  843. stroke-width="3"
  844. stroke-miterlimit="10"
  845. x1="599.931"
  846. y1="307.816"
  847. x2="599.931"
  848. y2="288.24"
  849. ></line>
  850. <line
  851. fill="none"
  852. stroke="#47B2A9"
  853. stroke-width="3"
  854. stroke-miterlimit="10"
  855. x1="613.399"
  856. y1="298.029"
  857. x2="599.931"
  858. y2="298.029"
  859. ></line>
  860. <line
  861. fill="none"
  862. stroke="#47B2A9"
  863. stroke-width="3"
  864. stroke-miterlimit="10"
  865. x1="594.552"
  866. y1="303.775"
  867. x2="594.552"
  868. y2="292.281"
  869. ></line>
  870. <line
  871. fill="none"
  872. stroke="#47B2A9"
  873. stroke-width="3"
  874. stroke-miterlimit="10"
  875. x1="589.155"
  876. y1="301.527"
  877. x2="589.155"
  878. y2="294.528"
  879. ></line>
  880. </g>
  881. <g>
  882. <line
  883. fill="none"
  884. stroke="#47B2A9"
  885. stroke-width="3"
  886. stroke-miterlimit="10"
  887. x1="593.45"
  888. y1="496.739"
  889. x2="573.876"
  890. y2="496.739"
  891. ></line>
  892. <line
  893. fill="none"
  894. stroke="#47B2A9"
  895. stroke-width="3"
  896. stroke-miterlimit="10"
  897. x1="583.663"
  898. y1="483.27"
  899. x2="583.663"
  900. y2="496.739"
  901. ></line>
  902. <line
  903. fill="none"
  904. stroke="#47B2A9"
  905. stroke-width="3"
  906. stroke-miterlimit="10"
  907. x1="589.409"
  908. y1="502.135"
  909. x2="577.915"
  910. y2="502.135"
  911. ></line>
  912. <line
  913. fill="none"
  914. stroke="#47B2A9"
  915. stroke-width="3"
  916. stroke-miterlimit="10"
  917. x1="587.161"
  918. y1="507.514"
  919. x2="580.162"
  920. y2="507.514"
  921. ></line>
  922. </g>
  923. <text
  924. transform="matrix(1 0 0 1 754.5046 351.9771)"
  925. fill="#FFFFFF"
  926. font-family="'MicrosoftYaHei'"
  927. font-size="12.6678"
  928. >
  929. 101-03
  930. </text>
  931. <text
  932. transform="matrix(1 0 0 1 753.6711 472.9976)"
  933. fill="#FFFFFF"
  934. font-family="'MicrosoftYaHei'"
  935. font-size="12.6678"
  936. >
  937. 301-0
  938. </text>
  939. <rect
  940. x="9.87"
  941. y="231.748"
  942. fill="#95295D"
  943. width="1607.999"
  944. height="3.125"
  945. ></rect>
  946. <rect
  947. x="674.858"
  948. y="400.228"
  949. transform="matrix(0.5019 0.8649 -0.8649 0.5019 711.108 -368.7076)"
  950. fill="#A82866"
  951. width="1.652"
  952. height="65.675"
  953. ></rect>
  954. <polygon
  955. fill="#A82866"
  956. points="700.235,411.242 715.987,409.01 707.642,422.552 "
  957. ></polygon>
  958. <rect
  959. x="918.823"
  960. y="285.201"
  961. fill="#95295D"
  962. width="2.752"
  963. height="31.143"
  964. ></rect>
  965. <polygon
  966. fill="#95295D"
  967. points="926.179,315.265 920.196,332.265 914.221,315.262 "
  968. ></polygon>
  969. <rect
  970. x="912.152"
  971. y="299.969"
  972. fill="none"
  973. stroke="#95295D"
  974. stroke-width="2"
  975. stroke-miterlimit="10"
  976. width="16.095"
  977. height="42.938"
  978. ></rect>
  979. <g>
  980. <path
  981. fill="none"
  982. stroke="#A82866"
  983. stroke-width="2"
  984. stroke-miterlimit="10"
  985. d="M665.236,453.492 c6.007,0,10.875-4.869,10.875-10.874c0-6.006-4.868-10.874-10.875-10.874c-6.003,0-10.873,4.868-10.873,10.874 C654.363,448.623,659.233,453.492,665.236,453.492z"
  986. ></path>
  987. <circle
  988. fill="none"
  989. stroke="#A82866"
  990. stroke-width="2"
  991. stroke-miterlimit="10"
  992. cx="665.239"
  993. cy="424.719"
  994. r="10.874"
  995. ></circle>
  996. <polyline
  997. fill="none"
  998. stroke="#A82866"
  999. stroke-width="2"
  1000. stroke-miterlimit="10"
  1001. points="661.345,447.594 665.26,443.726 668.899,447.594 "
  1002. ></polyline>
  1003. <line
  1004. fill="none"
  1005. stroke="#A82866"
  1006. stroke-width="2"
  1007. stroke-miterlimit="10"
  1008. x1="665.344"
  1009. y1="443.623"
  1010. x2="665.344"
  1011. y2="436.803"
  1012. ></line>
  1013. <polyline
  1014. fill="none"
  1015. stroke="#A82866"
  1016. stroke-width="2"
  1017. stroke-miterlimit="10"
  1018. points="661.345,430.113 665.26,426.244 668.899,430.113 "
  1019. ></polyline>
  1020. <line
  1021. fill="none"
  1022. stroke="#A82866"
  1023. stroke-width="2"
  1024. stroke-miterlimit="10"
  1025. x1="665.344"
  1026. y1="426.142"
  1027. x2="665.344"
  1028. y2="419.323"
  1029. ></line>
  1030. <circle
  1031. fill="none"
  1032. stroke="#A82866"
  1033. stroke-width="2"
  1034. stroke-miterlimit="10"
  1035. cx="680.228"
  1036. cy="433.605"
  1037. r="10.873"
  1038. ></circle>
  1039. <polygon
  1040. fill="none"
  1041. stroke="#A82866"
  1042. stroke-width="2"
  1043. stroke-miterlimit="10"
  1044. points="678.058,437.635 678.058,429.58 684.698,433.825 "
  1045. ></polygon>
  1046. </g>
  1047. <g>
  1048. <rect
  1049. x="473.694"
  1050. y="426.635"
  1051. fill="#4D4A70"
  1052. width="76.397"
  1053. height="21.994"
  1054. ></rect>
  1055. <text
  1056. transform="matrix(1 0 0 1 490.4875 442.0103)"
  1057. fill="#FFFFFF"
  1058. font-family="'MicrosoftYaHei'"
  1059. font-size="13.2763"
  1060. >
  1061. #1主变
  1062. </text>
  1063. </g>
  1064. <g>
  1065. <rect
  1066. x="869.83"
  1067. y="378.68"
  1068. fill="#4D4A70"
  1069. width="76.396"
  1070. height="21.994"
  1071. ></rect>
  1072. <text
  1073. transform="matrix(1 0 0 1 875.2068 394.0552)"
  1074. fill="#FFFFFF"
  1075. font-family="'MicrosoftYaHei'"
  1076. font-size="13.2763"
  1077. >
  1078. 110母线PT
  1079. </text>
  1080. </g>
  1081. <g>
  1082. <rect
  1083. x="725.277"
  1084. y="-28.32"
  1085. fill="#4D4A70"
  1086. width="76.396"
  1087. height="21.994"
  1088. ></rect>
  1089. <text
  1090. transform="matrix(1 0 0 1 743.5603 -12.9448)"
  1091. fill="#FFFFFF"
  1092. font-family="'MicrosoftYaHei'"
  1093. font-size="13.2763"
  1094. >
  1095. 南风线
  1096. </text>
  1097. </g>
  1098. <rect
  1099. x="897.177"
  1100. y="282.536"
  1101. fill="#95295D"
  1102. width="43.71"
  1103. height="3.219"
  1104. ></rect>
  1105. <polyline
  1106. fill="#95295D"
  1107. points="829.274,285.082 829.274,317.07 827.179,317.07 827.179,285.082 "
  1108. ></polyline>
  1109. <polyline
  1110. fill="#95295D"
  1111. points="874.126,284.138 874.126,306.177 872.028,306.177 872.028,284.138 "
  1112. ></polyline>
  1113. <rect
  1114. x="827.445"
  1115. y="316.344"
  1116. fill="#95295D"
  1117. width="44.259"
  1118. height="1.396"
  1119. ></rect>
  1120. <g>
  1121. <circle
  1122. fill="none"
  1123. stroke="#9F2962"
  1124. stroke-width="1.6"
  1125. stroke-miterlimit="10"
  1126. cx="881.969"
  1127. cy="332.479"
  1128. r="10.432"
  1129. ></circle>
  1130. <circle
  1131. fill="none"
  1132. stroke="#9F2962"
  1133. stroke-width="1.6"
  1134. stroke-miterlimit="10"
  1135. cx="863.866"
  1136. cy="332.479"
  1137. r="10.432"
  1138. ></circle>
  1139. <polyline
  1140. fill="none"
  1141. stroke="#9F2962"
  1142. stroke-width="1.6"
  1143. stroke-miterlimit="10"
  1144. points="878.236,327.717 881.987,331.426 885.484,327.717 "
  1145. ></polyline>
  1146. <line
  1147. fill="none"
  1148. stroke="#9F2962"
  1149. stroke-width="1.6"
  1150. stroke-miterlimit="10"
  1151. x1="882.065"
  1152. y1="331.515"
  1153. x2="882.065"
  1154. y2="338.058"
  1155. ></line>
  1156. <circle
  1157. fill="none"
  1158. stroke="#9F2962"
  1159. stroke-width="1.6"
  1160. stroke-miterlimit="10"
  1161. cx="881.969"
  1162. cy="349.674"
  1163. r="10.432"
  1164. ></circle>
  1165. <circle
  1166. fill="none"
  1167. stroke="#9F2962"
  1168. stroke-width="1.6"
  1169. stroke-miterlimit="10"
  1170. cx="863.866"
  1171. cy="349.674"
  1172. r="10.432"
  1173. ></circle>
  1174. <polyline
  1175. fill="none"
  1176. stroke="#9F2962"
  1177. stroke-width="1.6"
  1178. stroke-miterlimit="10"
  1179. points="878.236,344.903 881.987,348.612 885.484,344.903 "
  1180. ></polyline>
  1181. <line
  1182. fill="none"
  1183. stroke="#9F2962"
  1184. stroke-width="1.2"
  1185. stroke-miterlimit="10"
  1186. x1="882.065"
  1187. y1="349.059"
  1188. x2="882.065"
  1189. y2="354.892"
  1190. ></line>
  1191. <polyline
  1192. fill="none"
  1193. stroke="#9F2962"
  1194. stroke-width="1.6"
  1195. stroke-miterlimit="10"
  1196. points="860.135,344.499 863.885,348.219 867.385,344.499 "
  1197. ></polyline>
  1198. <line
  1199. fill="none"
  1200. stroke="#9F2962"
  1201. stroke-width="1.2"
  1202. stroke-miterlimit="10"
  1203. x1="864.052"
  1204. y1="349.06"
  1205. x2="864.052"
  1206. y2="354.892"
  1207. ></line>
  1208. <circle
  1209. fill="none"
  1210. stroke="#9F2962"
  1211. stroke-width="1.6"
  1212. stroke-miterlimit="10"
  1213. cx="872.394"
  1214. cy="317.289"
  1215. r="10.43"
  1216. ></circle>
  1217. <polyline
  1218. fill="none"
  1219. stroke="#9F2962"
  1220. stroke-width="1.6"
  1221. stroke-miterlimit="10"
  1222. points="868.658,312.113 872.41,315.824 875.906,312.113 "
  1223. ></polyline>
  1224. <line
  1225. fill="none"
  1226. stroke="#9F2962"
  1227. stroke-width="1.6"
  1228. stroke-miterlimit="10"
  1229. x1="872.488"
  1230. y1="315.927"
  1231. x2="872.488"
  1232. y2="322.469"
  1233. ></line>
  1234. <polygon
  1235. fill="none"
  1236. stroke="#9F2962"
  1237. stroke-width="1.6"
  1238. stroke-miterlimit="10"
  1239. points="865.147,337.285 865.147,329.563 858.779,333.635 "
  1240. ></polygon>
  1241. </g>
  1242. <rect
  1243. x="580.444"
  1244. y="424.646"
  1245. fill="#95295D"
  1246. width="73.834"
  1247. height="3.222"
  1248. ></rect>
  1249. <rect
  1250. x="580.444"
  1251. y="424.646"
  1252. fill="#95295D"
  1253. width="3.219"
  1254. height="18.423"
  1255. ></rect>
  1256. <text
  1257. transform="matrix(1 0 0 1 627.3816 528.2544)"
  1258. fill="#FFFFFF"
  1259. font-family="'MicrosoftYaHei'"
  1260. font-size="12.6678"
  1261. >
  1262. 301
  1263. </text>
  1264. <text
  1265. transform="matrix(1 0 0 1 532.1794 467.3442)"
  1266. fill="#FFFFFF"
  1267. font-family="'MicrosoftYaHei'"
  1268. font-size="12.6678"
  1269. >
  1270. 011-0
  1271. </text>
  1272. <rect
  1273. x="609.778"
  1274. y="426.304"
  1275. fill="#95295D"
  1276. width="3.079"
  1277. height="31.789"
  1278. ></rect>
  1279. <rect
  1280. x="609.594"
  1281. y="485.812"
  1282. fill="#45B2A9"
  1283. width="3.83"
  1284. height="12.58"
  1285. ></rect>
  1286. <g>
  1287. <line
  1288. fill="none"
  1289. stroke="#47B2A9"
  1290. stroke-width="3"
  1291. stroke-miterlimit="10"
  1292. x1="602.31"
  1293. y1="498.847"
  1294. x2="620.7"
  1295. y2="498.847"
  1296. ></line>
  1297. <line
  1298. fill="none"
  1299. stroke="#47B2A9"
  1300. stroke-width="3"
  1301. stroke-miterlimit="10"
  1302. x1="605.51"
  1303. y1="503.722"
  1304. x2="617.513"
  1305. y2="503.722"
  1306. ></line>
  1307. <line
  1308. fill="none"
  1309. stroke="#47B2A9"
  1310. stroke-width="3"
  1311. stroke-miterlimit="10"
  1312. x1="608.121"
  1313. y1="508.871"
  1314. x2="614.888"
  1315. y2="508.871"
  1316. ></line>
  1317. </g>
  1318. <rect
  1319. x="636.952"
  1320. y="486.75"
  1321. fill="#45B2A9"
  1322. width="3.828"
  1323. height="12.58"
  1324. ></rect>
  1325. <g>
  1326. <line
  1327. fill="none"
  1328. stroke="#47B2A9"
  1329. stroke-width="3"
  1330. stroke-miterlimit="10"
  1331. x1="629.677"
  1332. y1="499.784"
  1333. x2="648.062"
  1334. y2="499.784"
  1335. ></line>
  1336. <line
  1337. fill="none"
  1338. stroke="#47B2A9"
  1339. stroke-width="3"
  1340. stroke-miterlimit="10"
  1341. x1="632.861"
  1342. y1="504.661"
  1343. x2="644.87"
  1344. y2="504.661"
  1345. ></line>
  1346. <line
  1347. fill="none"
  1348. stroke="#47B2A9"
  1349. stroke-width="3"
  1350. stroke-miterlimit="10"
  1351. x1="635.483"
  1352. y1="509.808"
  1353. x2="642.247"
  1354. y2="509.808"
  1355. ></line>
  1356. </g>
  1357. <polygon
  1358. fill="#95295D"
  1359. points="616.273,457.931 611.51,471.498 606.736,457.929 "
  1360. ></polygon>
  1361. <polygon
  1362. fill="#95295D"
  1363. points="632.138,490.287 638.659,475.738 645.177,490.29 "
  1364. ></polygon>
  1365. <rect
  1366. x="636.952"
  1367. y="426.304"
  1368. fill="#95295D"
  1369. width="3.828"
  1370. height="14.938"
  1371. ></rect>
  1372. <polygon
  1373. fill="#95295D"
  1374. points="645.177,440.641 638.647,455.187 632.138,440.638 "
  1375. ></polygon>
  1376. <rect
  1377. x="603.804"
  1378. y="443.649"
  1379. fill="none"
  1380. stroke="#9F2962"
  1381. stroke-width="2.3"
  1382. stroke-miterlimit="10"
  1383. width="15.021"
  1384. height="42.813"
  1385. ></rect>
  1386. <rect
  1387. x="667.831"
  1388. y="248.299"
  1389. fill="#95295D"
  1390. width="21.442"
  1391. height="3.096"
  1392. ></rect>
  1393. <g>
  1394. <line
  1395. fill="none"
  1396. stroke="#47B2A9"
  1397. stroke-width="3"
  1398. stroke-miterlimit="10"
  1399. x1="733.511"
  1400. y1="240.768"
  1401. x2="733.511"
  1402. y2="260.344"
  1403. ></line>
  1404. <line
  1405. fill="none"
  1406. stroke="#47B2A9"
  1407. stroke-width="3"
  1408. stroke-miterlimit="10"
  1409. x1="720.051"
  1410. y1="250.555"
  1411. x2="733.511"
  1412. y2="250.555"
  1413. ></line>
  1414. <line
  1415. fill="none"
  1416. stroke="#47B2A9"
  1417. stroke-width="3"
  1418. stroke-miterlimit="10"
  1419. x1="738.898"
  1420. y1="244.809"
  1421. x2="738.898"
  1422. y2="256.303"
  1423. ></line>
  1424. <line
  1425. fill="none"
  1426. stroke="#47B2A9"
  1427. stroke-width="3"
  1428. stroke-miterlimit="10"
  1429. x1="744.285"
  1430. y1="247.057"
  1431. x2="744.285"
  1432. y2="254.056"
  1433. ></line>
  1434. </g>
  1435. <rect
  1436. x="666.831"
  1437. y="346.037"
  1438. fill="#95295D"
  1439. width="21.442"
  1440. height="3.087"
  1441. ></rect>
  1442. <g>
  1443. <line
  1444. fill="none"
  1445. stroke="#47B2A9"
  1446. stroke-width="3"
  1447. stroke-miterlimit="10"
  1448. x1="733.511"
  1449. y1="338.51"
  1450. x2="733.511"
  1451. y2="358.082"
  1452. ></line>
  1453. <line
  1454. fill="none"
  1455. stroke="#47B2A9"
  1456. stroke-width="3"
  1457. stroke-miterlimit="10"
  1458. x1="720.051"
  1459. y1="348.302"
  1460. x2="733.511"
  1461. y2="348.302"
  1462. ></line>
  1463. <line
  1464. fill="none"
  1465. stroke="#47B2A9"
  1466. stroke-width="3"
  1467. stroke-miterlimit="10"
  1468. x1="738.898"
  1469. y1="342.552"
  1470. x2="738.898"
  1471. y2="354.041"
  1472. ></line>
  1473. <line
  1474. fill="none"
  1475. stroke="#47B2A9"
  1476. stroke-width="3"
  1477. stroke-miterlimit="10"
  1478. x1="744.285"
  1479. y1="344.802"
  1480. x2="744.285"
  1481. y2="351.802"
  1482. ></line>
  1483. </g>
  1484. <rect
  1485. x="666.831"
  1486. y="466.094"
  1487. fill="#C6A037"
  1488. width="21.442"
  1489. height="3.087"
  1490. ></rect>
  1491. <g>
  1492. <line
  1493. fill="none"
  1494. stroke="#47B2A9"
  1495. stroke-width="3"
  1496. stroke-miterlimit="10"
  1497. x1="733.511"
  1498. y1="458.556"
  1499. x2="733.511"
  1500. y2="478.135"
  1501. ></line>
  1502. <line
  1503. fill="none"
  1504. stroke="#47B2A9"
  1505. stroke-width="3"
  1506. stroke-miterlimit="10"
  1507. x1="720.051"
  1508. y1="468.344"
  1509. x2="733.511"
  1510. y2="468.344"
  1511. ></line>
  1512. <line
  1513. fill="none"
  1514. stroke="#47B2A9"
  1515. stroke-width="3"
  1516. stroke-miterlimit="10"
  1517. x1="738.898"
  1518. y1="462.596"
  1519. x2="738.898"
  1520. y2="474.094"
  1521. ></line>
  1522. <line
  1523. fill="none"
  1524. stroke="#47B2A9"
  1525. stroke-width="3"
  1526. stroke-miterlimit="10"
  1527. x1="744.285"
  1528. y1="464.844"
  1529. x2="744.285"
  1530. y2="471.844"
  1531. ></line>
  1532. </g>
  1533. <rect
  1534. x="1338.51"
  1535. y="287.146"
  1536. fill="#95295D"
  1537. width="3.219"
  1538. height="22.058"
  1539. ></rect>
  1540. <rect
  1541. x="1338.51"
  1542. y="335.177"
  1543. fill="#95295D"
  1544. width="3.219"
  1545. height="24.122"
  1546. ></rect>
  1547. <rect
  1548. x="1338.51"
  1549. y="384.936"
  1550. fill="#95295D"
  1551. width="3.219"
  1552. height="29.964"
  1553. ></rect>
  1554. <text
  1555. transform="matrix(1 0 0 1 1427.8767 252.0571)"
  1556. fill="#FFFFFF"
  1557. font-family="'MicrosoftYaHei'"
  1558. font-size="12.6678"
  1559. >
  1560. 12-0
  1561. </text>
  1562. <text
  1563. transform="matrix(1 0 0 1 1352.3611 275.9028)"
  1564. fill="#FFFFFF"
  1565. font-family="'MicrosoftYaHei'"
  1566. font-size="12.6678"
  1567. >
  1568. 102-1
  1569. </text>
  1570. <text
  1571. transform="matrix(1 0 0 1 1352.3611 325.8618)"
  1572. fill="#FFFFFF"
  1573. font-family="'MicrosoftYaHei'"
  1574. font-size="12.6678"
  1575. >
  1576. 102
  1577. </text>
  1578. <text
  1579. transform="matrix(1 0 0 1 1352.3611 373.6987)"
  1580. fill="#FFFFFF"
  1581. font-family="'MicrosoftYaHei'"
  1582. font-size="12.6678"
  1583. >
  1584. 102-3
  1585. </text>
  1586. <g>
  1587. <text
  1588. transform="matrix(1 0 0 1 1212.7869 303.6245)"
  1589. fill="#FFFFFF"
  1590. font-family="'MicrosoftYaHei'"
  1591. font-size="12.6678"
  1592. >
  1593. 102-01
  1594. </text>
  1595. </g>
  1596. <rect
  1597. x="1339.574"
  1598. y="234.186"
  1599. fill="#95295D"
  1600. width="3.222"
  1601. height="27.328"
  1602. ></rect>
  1603. <text
  1604. transform="matrix(1 0 0 1 1220.2156 399.9731)"
  1605. fill="#FFFFFF"
  1606. font-family="'MicrosoftYaHei'"
  1607. font-size="12.6678"
  1608. >
  1609. 102-0
  1610. </text>
  1611. <rect
  1612. x="1318.532"
  1613. y="394.594"
  1614. fill="#95295D"
  1615. width="21.442"
  1616. height="3.087"
  1617. ></rect>
  1618. <g>
  1619. <line
  1620. fill="none"
  1621. stroke="#47B2A9"
  1622. stroke-width="3"
  1623. stroke-miterlimit="10"
  1624. x1="1274.302"
  1625. y1="405.219"
  1626. x2="1274.302"
  1627. y2="385.635"
  1628. ></line>
  1629. <line
  1630. fill="none"
  1631. stroke="#47B2A9"
  1632. stroke-width="3"
  1633. stroke-miterlimit="10"
  1634. x1="1287.766"
  1635. y1="395.427"
  1636. x2="1274.302"
  1637. y2="395.427"
  1638. ></line>
  1639. <line
  1640. fill="none"
  1641. stroke="#47B2A9"
  1642. stroke-width="3"
  1643. stroke-miterlimit="10"
  1644. x1="1268.908"
  1645. y1="401.177"
  1646. x2="1268.908"
  1647. y2="389.677"
  1648. ></line>
  1649. <line
  1650. fill="none"
  1651. stroke="#47B2A9"
  1652. stroke-width="3"
  1653. stroke-miterlimit="10"
  1654. x1="1263.521"
  1655. y1="398.927"
  1656. x2="1263.521"
  1657. y2="391.927"
  1658. ></line>
  1659. </g>
  1660. <rect
  1661. x="1318.532"
  1662. y="297.197"
  1663. fill="#95295D"
  1664. width="21.442"
  1665. height="3.087"
  1666. ></rect>
  1667. <g>
  1668. <line
  1669. fill="none"
  1670. stroke="#47B2A9"
  1671. stroke-width="3"
  1672. stroke-miterlimit="10"
  1673. x1="1274.302"
  1674. y1="307.816"
  1675. x2="1274.302"
  1676. y2="288.24"
  1677. ></line>
  1678. <line
  1679. fill="none"
  1680. stroke="#47B2A9"
  1681. stroke-width="3"
  1682. stroke-miterlimit="10"
  1683. x1="1287.766"
  1684. y1="298.029"
  1685. x2="1274.302"
  1686. y2="298.029"
  1687. ></line>
  1688. <line
  1689. fill="none"
  1690. stroke="#47B2A9"
  1691. stroke-width="3"
  1692. stroke-miterlimit="10"
  1693. x1="1268.908"
  1694. y1="303.775"
  1695. x2="1268.908"
  1696. y2="292.281"
  1697. ></line>
  1698. <line
  1699. fill="none"
  1700. stroke="#47B2A9"
  1701. stroke-width="3"
  1702. stroke-miterlimit="10"
  1703. x1="1263.521"
  1704. y1="301.527"
  1705. x2="1263.521"
  1706. y2="294.528"
  1707. ></line>
  1708. </g>
  1709. <g>
  1710. <line
  1711. fill="none"
  1712. stroke="#47B2A9"
  1713. stroke-width="3"
  1714. stroke-miterlimit="10"
  1715. x1="1267.817"
  1716. y1="496.739"
  1717. x2="1248.24"
  1718. y2="496.739"
  1719. ></line>
  1720. <line
  1721. fill="none"
  1722. stroke="#47B2A9"
  1723. stroke-width="3"
  1724. stroke-miterlimit="10"
  1725. x1="1258.03"
  1726. y1="483.27"
  1727. x2="1258.03"
  1728. y2="496.739"
  1729. ></line>
  1730. <line
  1731. fill="none"
  1732. stroke="#47B2A9"
  1733. stroke-width="3"
  1734. stroke-miterlimit="10"
  1735. x1="1263.776"
  1736. y1="502.135"
  1737. x2="1252.281"
  1738. y2="502.135"
  1739. ></line>
  1740. <line
  1741. fill="none"
  1742. stroke="#47B2A9"
  1743. stroke-width="3"
  1744. stroke-miterlimit="10"
  1745. x1="1261.528"
  1746. y1="507.514"
  1747. x2="1254.529"
  1748. y2="507.514"
  1749. ></line>
  1750. </g>
  1751. <text
  1752. transform="matrix(1 0 0 1 1427.8767 351.9771)"
  1753. fill="#FFFFFF"
  1754. font-family="'MicrosoftYaHei'"
  1755. font-size="12.6678"
  1756. >
  1757. 102-03
  1758. </text>
  1759. <rect
  1760. x="1349.188"
  1761. y="400.133"
  1762. transform="matrix(0.5022 0.8648 -0.8648 0.5022 1046.4832 -951.901)"
  1763. fill="#A82866"
  1764. width="1.651"
  1765. height="65.676"
  1766. ></rect>
  1767. <polygon
  1768. fill="#A82866"
  1769. points="1374.602,411.242 1390.354,409.01 1382.01,422.552 "
  1770. ></polygon>
  1771. <g>
  1772. <path
  1773. fill="none"
  1774. stroke="#A82866"
  1775. stroke-width="2"
  1776. stroke-miterlimit="10"
  1777. d="M1339.603,453.492 c6.007,0,10.875-4.869,10.875-10.874c0-6.006-4.868-10.874-10.875-10.874c-6.003,0-10.873,4.868-10.873,10.874 C1328.729,448.623,1333.6,453.492,1339.603,453.492z"
  1778. ></path>
  1779. <circle
  1780. fill="none"
  1781. stroke="#A82866"
  1782. stroke-width="2"
  1783. stroke-miterlimit="10"
  1784. cx="1339.605"
  1785. cy="424.719"
  1786. r="10.874"
  1787. ></circle>
  1788. <polyline
  1789. fill="none"
  1790. stroke="#A82866"
  1791. stroke-width="2"
  1792. stroke-miterlimit="10"
  1793. points="1335.719,447.594 1339.621,443.726 1343.266,447.594 "
  1794. ></polyline>
  1795. <line
  1796. fill="none"
  1797. stroke="#A82866"
  1798. stroke-width="2"
  1799. stroke-miterlimit="10"
  1800. x1="1339.703"
  1801. y1="443.623"
  1802. x2="1339.703"
  1803. y2="436.803"
  1804. ></line>
  1805. <polyline
  1806. fill="none"
  1807. stroke="#A82866"
  1808. stroke-width="2"
  1809. stroke-miterlimit="10"
  1810. points="1335.719,430.113 1339.621,426.244 1343.266,430.113 "
  1811. ></polyline>
  1812. <line
  1813. fill="none"
  1814. stroke="#A82866"
  1815. stroke-width="2"
  1816. stroke-miterlimit="10"
  1817. x1="1339.703"
  1818. y1="426.142"
  1819. x2="1339.703"
  1820. y2="419.323"
  1821. ></line>
  1822. <circle
  1823. fill="none"
  1824. stroke="#A82866"
  1825. stroke-width="2"
  1826. stroke-miterlimit="10"
  1827. cx="1354.594"
  1828. cy="433.605"
  1829. r="10.873"
  1830. ></circle>
  1831. <polygon
  1832. fill="none"
  1833. stroke="#A82866"
  1834. stroke-width="2"
  1835. stroke-miterlimit="10"
  1836. points="1352.427,437.635 1352.427,429.58 1359.065,433.825 "
  1837. ></polygon>
  1838. </g>
  1839. <g>
  1840. <rect
  1841. x="1148.061"
  1842. y="426.635"
  1843. fill="#4D4A70"
  1844. width="76.396"
  1845. height="21.994"
  1846. ></rect>
  1847. <text
  1848. transform="matrix(1 0 0 1 1164.8533 442.0103)"
  1849. fill="#FFFFFF"
  1850. font-family="'MicrosoftYaHei'"
  1851. font-size="13.2763"
  1852. >
  1853. #2主变
  1854. </text>
  1855. </g>
  1856. <rect
  1857. x="1254.811"
  1858. y="424.646"
  1859. fill="#95295D"
  1860. width="73.834"
  1861. height="3.222"
  1862. ></rect>
  1863. <rect
  1864. x="1254.811"
  1865. y="424.646"
  1866. fill="#95295D"
  1867. width="3.219"
  1868. height="18.423"
  1869. ></rect>
  1870. <text
  1871. transform="matrix(1 0 0 1 1301.7498 528.2544)"
  1872. fill="#FFFFFF"
  1873. font-family="'MicrosoftYaHei'"
  1874. font-size="12.6678"
  1875. >
  1876. 302
  1877. </text>
  1878. <text
  1879. transform="matrix(1 0 0 1 1206.5447 467.3442)"
  1880. fill="#FFFFFF"
  1881. font-family="'MicrosoftYaHei'"
  1882. font-size="12.6678"
  1883. >
  1884. 012-0
  1885. </text>
  1886. <rect
  1887. x="1284.145"
  1888. y="426.304"
  1889. fill="#95295D"
  1890. width="3.079"
  1891. height="31.789"
  1892. ></rect>
  1893. <rect
  1894. x="1283.958"
  1895. y="485.812"
  1896. fill="#45B2A9"
  1897. width="3.828"
  1898. height="12.58"
  1899. ></rect>
  1900. <g>
  1901. <line
  1902. fill="none"
  1903. stroke="#47B2A9"
  1904. stroke-width="3"
  1905. stroke-miterlimit="10"
  1906. x1="1276.677"
  1907. y1="498.847"
  1908. x2="1295.067"
  1909. y2="498.847"
  1910. ></line>
  1911. <line
  1912. fill="none"
  1913. stroke="#47B2A9"
  1914. stroke-width="3"
  1915. stroke-miterlimit="10"
  1916. x1="1279.866"
  1917. y1="503.722"
  1918. x2="1291.885"
  1919. y2="503.722"
  1920. ></line>
  1921. <line
  1922. fill="none"
  1923. stroke="#47B2A9"
  1924. stroke-width="3"
  1925. stroke-miterlimit="10"
  1926. x1="1282.488"
  1927. y1="508.871"
  1928. x2="1289.26"
  1929. y2="508.871"
  1930. ></line>
  1931. </g>
  1932. <rect
  1933. x="1311.319"
  1934. y="487.75"
  1935. fill="#45B2A9"
  1936. width="3.828"
  1937. height="12.58"
  1938. ></rect>
  1939. <g>
  1940. <line
  1941. fill="none"
  1942. stroke="#47B2A9"
  1943. stroke-width="3"
  1944. stroke-miterlimit="10"
  1945. x1="1304.035"
  1946. y1="500.784"
  1947. x2="1322.428"
  1948. y2="500.784"
  1949. ></line>
  1950. <line
  1951. fill="none"
  1952. stroke="#47B2A9"
  1953. stroke-width="3"
  1954. stroke-miterlimit="10"
  1955. x1="1307.228"
  1956. y1="505.661"
  1957. x2="1319.237"
  1958. y2="505.661"
  1959. ></line>
  1960. <line
  1961. fill="none"
  1962. stroke="#47B2A9"
  1963. stroke-width="3"
  1964. stroke-miterlimit="10"
  1965. x1="1309.85"
  1966. y1="510.808"
  1967. x2="1316.614"
  1968. y2="510.808"
  1969. ></line>
  1970. </g>
  1971. <polygon
  1972. fill="#95295D"
  1973. points="1290.64,457.931 1285.867,471.498 1281.103,457.929 "
  1974. ></polygon>
  1975. <polygon
  1976. fill="#95295D"
  1977. points="1306.51,491.287 1313.026,476.738 1319.535,491.29 "
  1978. ></polygon>
  1979. <rect
  1980. x="1311.319"
  1981. y="426.304"
  1982. fill="#95295D"
  1983. width="3.828"
  1984. height="14.938"
  1985. ></rect>
  1986. <polygon
  1987. fill="#95295D"
  1988. points="1319.535,440.641 1313.014,455.187 1306.51,440.638 "
  1989. ></polygon>
  1990. <rect
  1991. x="1278.177"
  1992. y="443.649"
  1993. fill="none"
  1994. stroke="#9F2962"
  1995. stroke-width="2.3"
  1996. stroke-miterlimit="10"
  1997. width="15.021"
  1998. height="42.813"
  1999. ></rect>
  2000. <rect
  2001. x="1342.198"
  2002. y="248.299"
  2003. fill="#95295D"
  2004. width="21.442"
  2005. height="3.096"
  2006. ></rect>
  2007. <g>
  2008. <line
  2009. fill="none"
  2010. stroke="#47B2A9"
  2011. stroke-width="3"
  2012. stroke-miterlimit="10"
  2013. x1="1407.878"
  2014. y1="240.768"
  2015. x2="1407.878"
  2016. y2="260.344"
  2017. ></line>
  2018. <line
  2019. fill="none"
  2020. stroke="#47B2A9"
  2021. stroke-width="3"
  2022. stroke-miterlimit="10"
  2023. x1="1394.407"
  2024. y1="250.555"
  2025. x2="1407.878"
  2026. y2="250.555"
  2027. ></line>
  2028. <line
  2029. fill="none"
  2030. stroke="#47B2A9"
  2031. stroke-width="3"
  2032. stroke-miterlimit="10"
  2033. x1="1413.265"
  2034. y1="244.809"
  2035. x2="1413.265"
  2036. y2="256.303"
  2037. ></line>
  2038. <line
  2039. fill="none"
  2040. stroke="#47B2A9"
  2041. stroke-width="3"
  2042. stroke-miterlimit="10"
  2043. x1="1418.652"
  2044. y1="247.057"
  2045. x2="1418.652"
  2046. y2="254.056"
  2047. ></line>
  2048. </g>
  2049. <rect
  2050. x="1341.198"
  2051. y="346.037"
  2052. fill="#95295D"
  2053. width="21.442"
  2054. height="3.087"
  2055. ></rect>
  2056. <g>
  2057. <line
  2058. fill="none"
  2059. stroke="#47B2A9"
  2060. stroke-width="3"
  2061. stroke-miterlimit="10"
  2062. x1="1407.878"
  2063. y1="338.51"
  2064. x2="1407.878"
  2065. y2="358.082"
  2066. ></line>
  2067. <line
  2068. fill="none"
  2069. stroke="#47B2A9"
  2070. stroke-width="3"
  2071. stroke-miterlimit="10"
  2072. x1="1394.407"
  2073. y1="348.302"
  2074. x2="1407.878"
  2075. y2="348.302"
  2076. ></line>
  2077. <line
  2078. fill="none"
  2079. stroke="#47B2A9"
  2080. stroke-width="3"
  2081. stroke-miterlimit="10"
  2082. x1="1413.265"
  2083. y1="342.552"
  2084. x2="1413.265"
  2085. y2="354.041"
  2086. ></line>
  2087. <line
  2088. fill="none"
  2089. stroke="#47B2A9"
  2090. stroke-width="3"
  2091. stroke-miterlimit="10"
  2092. x1="1418.652"
  2093. y1="344.802"
  2094. x2="1418.652"
  2095. y2="351.802"
  2096. ></line>
  2097. </g>
  2098. <g>
  2099. <line
  2100. fill="none"
  2101. stroke="#47B2A9"
  2102. stroke-width="3"
  2103. stroke-miterlimit="10"
  2104. x1="984.773"
  2105. y1="273.583"
  2106. x2="984.773"
  2107. y2="293.158"
  2108. ></line>
  2109. <line
  2110. fill="none"
  2111. stroke="#47B2A9"
  2112. stroke-width="3"
  2113. stroke-miterlimit="10"
  2114. x1="971.305"
  2115. y1="283.37"
  2116. x2="984.773"
  2117. y2="283.37"
  2118. ></line>
  2119. <line
  2120. fill="none"
  2121. stroke="#47B2A9"
  2122. stroke-width="3"
  2123. stroke-miterlimit="10"
  2124. x1="990.16"
  2125. y1="277.623"
  2126. x2="990.16"
  2127. y2="289.117"
  2128. ></line>
  2129. <line
  2130. fill="none"
  2131. stroke="#47B2A9"
  2132. stroke-width="3"
  2133. stroke-miterlimit="10"
  2134. x1="995.552"
  2135. y1="279.871"
  2136. x2="995.552"
  2137. y2="286.87"
  2138. ></line>
  2139. </g>
  2140. <g>
  2141. <line
  2142. fill="none"
  2143. stroke="#47B2A9"
  2144. stroke-width="3"
  2145. stroke-miterlimit="10"
  2146. x1="930.274"
  2147. y1="356.915"
  2148. x2="910.698"
  2149. y2="356.915"
  2150. ></line>
  2151. <line
  2152. fill="none"
  2153. stroke="#47B2A9"
  2154. stroke-width="3"
  2155. stroke-miterlimit="10"
  2156. x1="920.487"
  2157. y1="343.446"
  2158. x2="920.487"
  2159. y2="356.915"
  2160. ></line>
  2161. <line
  2162. fill="none"
  2163. stroke="#47B2A9"
  2164. stroke-width="3"
  2165. stroke-miterlimit="10"
  2166. x1="926.234"
  2167. y1="362.302"
  2168. x2="914.74"
  2169. y2="362.302"
  2170. ></line>
  2171. <line
  2172. fill="none"
  2173. stroke="#47B2A9"
  2174. stroke-width="3"
  2175. stroke-miterlimit="10"
  2176. x1="923.986"
  2177. y1="367.69"
  2178. x2="916.986"
  2179. y2="367.69"
  2180. ></line>
  2181. </g>
  2182. <g>
  2183. <line
  2184. fill="none"
  2185. stroke="#47B2A9"
  2186. stroke-width="3"
  2187. stroke-miterlimit="10"
  2188. x1="804.08"
  2189. y1="293.933"
  2190. x2="804.08"
  2191. y2="274.357"
  2192. ></line>
  2193. <line
  2194. fill="none"
  2195. stroke="#47B2A9"
  2196. stroke-width="3"
  2197. stroke-miterlimit="10"
  2198. x1="817.552"
  2199. y1="284.146"
  2200. x2="804.08"
  2201. y2="284.146"
  2202. ></line>
  2203. <line
  2204. fill="none"
  2205. stroke="#47B2A9"
  2206. stroke-width="3"
  2207. stroke-miterlimit="10"
  2208. x1="798.693"
  2209. y1="289.892"
  2210. x2="798.693"
  2211. y2="278.398"
  2212. ></line>
  2213. <line
  2214. fill="none"
  2215. stroke="#47B2A9"
  2216. stroke-width="3"
  2217. stroke-miterlimit="10"
  2218. x1="793.306"
  2219. y1="287.644"
  2220. x2="793.306"
  2221. y2="280.645"
  2222. ></line>
  2223. </g>
  2224. <text
  2225. transform="matrix(1.0076 0 0 1 76.697 640.7173)"
  2226. fill="#FFFFFF"
  2227. font-family="'MicrosoftYaHei'"
  2228. font-size="13.0229"
  2229. >
  2230. 318
  2231. </text>
  2232. <rect
  2233. x="7.371"
  2234. y="590.433"
  2235. fill="#BF9C3A"
  2236. width="1018.499"
  2237. height="2.805"
  2238. ></rect>
  2239. <text
  2240. transform="matrix(1.0076 0 0 1 231.594 640.7173)"
  2241. fill="#FFFFFF"
  2242. font-family="'MicrosoftYaHei'"
  2243. font-size="13.0229"
  2244. >
  2245. 317
  2246. </text>
  2247. <text
  2248. transform="matrix(1.0076 0 0 1 243.553 749.8481)"
  2249. fill="#FFFFFF"
  2250. font-family="'MicrosoftYaHei'"
  2251. font-size="13.0229"
  2252. >
  2253. -0
  2254. </text>
  2255. <rect
  2256. x="248.487"
  2257. y="667.302"
  2258. fill="#BF9C3A"
  2259. width="20.029"
  2260. height="2.438"
  2261. ></rect>
  2262. <rect
  2263. x="266.054"
  2264. y="790.083"
  2265. fill="#C6A037"
  2266. width="2.463"
  2267. height="139.814"
  2268. ></rect>
  2269. <rect
  2270. x="266.054"
  2271. y="590.564"
  2272. fill="#C6A037"
  2273. width="2.463"
  2274. height="160.332"
  2275. ></rect>
  2276. <polygon
  2277. fill="#C6A037"
  2278. points="272.325,929.732 267.28,940.384 262.247,929.728 "
  2279. ></polygon>
  2280. <text
  2281. transform="matrix(1.0076 0 0 1 90.6477 759.1675)"
  2282. fill="#FFFFFF"
  2283. font-family="'MicrosoftYaHei'"
  2284. font-size="13.0229"
  2285. >
  2286. -0
  2287. </text>
  2288. <rect
  2289. x="97.897"
  2290. y="667.076"
  2291. fill="#BF9C3A"
  2292. width="22.437"
  2293. height="2.443"
  2294. ></rect>
  2295. <rect
  2296. x="118.466"
  2297. y="668.927"
  2298. fill="#C6A037"
  2299. width="2.471"
  2300. height="81.977"
  2301. ></rect>
  2302. <g>
  2303. <path
  2304. fill="none"
  2305. stroke="#C6A037"
  2306. stroke-width="1.4"
  2307. stroke-miterlimit="10"
  2308. d="M675.51,800.529 c0-5.57-4.482-10.088-10.021-10.088c-5.521,0-10.014,4.518-10.014,10.088c0,5.568,4.483,10.086,10.014,10.086 C671.024,810.615,675.51,806.097,675.51,800.529z"
  2309. ></path>
  2310. <path
  2311. fill="none"
  2312. stroke="#C6A037"
  2313. stroke-width="1.4"
  2314. stroke-miterlimit="10"
  2315. d="M655.481,783.154 c0,5.568,4.484,10.086,10.012,10.086c5.531,0,10.021-4.518,10.021-10.086c0-5.57-4.483-10.088-10.021-10.088 C659.969,773.066,655.481,777.583,655.481,783.154z"
  2316. ></path>
  2317. <polyline
  2318. fill="none"
  2319. stroke="#C6A037"
  2320. stroke-width="1.4"
  2321. stroke-miterlimit="10"
  2322. points="669.725,795.625 666.121,799.218 662.766,795.625 "
  2323. ></polyline>
  2324. <line
  2325. fill="none"
  2326. stroke="#C6A037"
  2327. stroke-width="1.4"
  2328. stroke-miterlimit="10"
  2329. x1="666.052"
  2330. y1="799.31"
  2331. x2="666.052"
  2332. y2="805.638"
  2333. ></line>
  2334. <polyline
  2335. fill="none"
  2336. stroke="#C6A037"
  2337. stroke-width="1.4"
  2338. stroke-miterlimit="10"
  2339. points="668.975,778.25 665.371,781.843 662.016,778.25 "
  2340. ></polyline>
  2341. <line
  2342. fill="none"
  2343. stroke="#C6A037"
  2344. stroke-width="1.4"
  2345. stroke-miterlimit="10"
  2346. x1="665.302"
  2347. y1="781.935"
  2348. x2="665.302"
  2349. y2="788.263"
  2350. ></line>
  2351. <ellipse
  2352. fill="none"
  2353. stroke="#C6A037"
  2354. stroke-width="1.4"
  2355. stroke-miterlimit="10"
  2356. cx="680.304"
  2357. cy="791.337"
  2358. rx="10.089"
  2359. ry="10.012"
  2360. ></ellipse>
  2361. <polygon
  2362. fill="none"
  2363. stroke="#C6A037"
  2364. stroke-width="1.4"
  2365. stroke-miterlimit="10"
  2366. points="685.077,794.425 677.661,794.425 681.572,788.259 "
  2367. ></polygon>
  2368. </g>
  2369. <rect
  2370. x="1082.93"
  2371. y="590.433"
  2372. fill="#BF9C3A"
  2373. width="534.939"
  2374. height="2.805"
  2375. ></rect>
  2376. <rect
  2377. x="97.624"
  2378. y="667.076"
  2379. fill="#BF9C3A"
  2380. width="2.463"
  2381. height="22.373"
  2382. ></rect>
  2383. <rect
  2384. x="246.087"
  2385. y="667.302"
  2386. fill="#BF9C3A"
  2387. width="2.463"
  2388. height="22.373"
  2389. ></rect>
  2390. <g>
  2391. <line
  2392. fill="none"
  2393. stroke="#47B2A9"
  2394. stroke-width="3"
  2395. stroke-miterlimit="10"
  2396. x1="107.685"
  2397. y1="722.765"
  2398. x2="88.108"
  2399. y2="722.765"
  2400. ></line>
  2401. <line
  2402. fill="none"
  2403. stroke="#47B2A9"
  2404. stroke-width="3"
  2405. stroke-miterlimit="10"
  2406. x1="97.897"
  2407. y1="716.875"
  2408. x2="97.897"
  2409. y2="722.765"
  2410. ></line>
  2411. <line
  2412. fill="none"
  2413. stroke="#47B2A9"
  2414. stroke-width="3"
  2415. stroke-miterlimit="10"
  2416. x1="103.644"
  2417. y1="728.152"
  2418. x2="92.149"
  2419. y2="728.152"
  2420. ></line>
  2421. <line
  2422. fill="none"
  2423. stroke="#47B2A9"
  2424. stroke-width="3"
  2425. stroke-miterlimit="10"
  2426. x1="101.396"
  2427. y1="733.541"
  2428. x2="94.397"
  2429. y2="733.541"
  2430. ></line>
  2431. </g>
  2432. <g>
  2433. <line
  2434. fill="none"
  2435. stroke="#47B2A9"
  2436. stroke-width="3"
  2437. stroke-miterlimit="10"
  2438. x1="255.874"
  2439. y1="722.765"
  2440. x2="236.298"
  2441. y2="722.765"
  2442. ></line>
  2443. <line
  2444. fill="none"
  2445. stroke="#47B2A9"
  2446. stroke-width="3"
  2447. stroke-miterlimit="10"
  2448. x1="246.087"
  2449. y1="716.875"
  2450. x2="246.087"
  2451. y2="722.765"
  2452. ></line>
  2453. <line
  2454. fill="none"
  2455. stroke="#47B2A9"
  2456. stroke-width="3"
  2457. stroke-miterlimit="10"
  2458. x1="251.833"
  2459. y1="728.152"
  2460. x2="240.339"
  2461. y2="728.152"
  2462. ></line>
  2463. <line
  2464. fill="none"
  2465. stroke="#47B2A9"
  2466. stroke-width="3"
  2467. stroke-miterlimit="10"
  2468. x1="249.585"
  2469. y1="733.541"
  2470. x2="242.587"
  2471. y2="733.541"
  2472. ></line>
  2473. </g>
  2474. <g>
  2475. <line
  2476. fill="none"
  2477. stroke="#47B2A9"
  2478. stroke-width="3"
  2479. stroke-miterlimit="10"
  2480. x1="357.436"
  2481. y1="722.765"
  2482. x2="337.859"
  2483. y2="722.765"
  2484. ></line>
  2485. <line
  2486. fill="none"
  2487. stroke="#47B2A9"
  2488. stroke-width="3"
  2489. stroke-miterlimit="10"
  2490. x1="347.648"
  2491. y1="716.875"
  2492. x2="347.648"
  2493. y2="722.765"
  2494. ></line>
  2495. <line
  2496. fill="none"
  2497. stroke="#47B2A9"
  2498. stroke-width="3"
  2499. stroke-miterlimit="10"
  2500. x1="353.395"
  2501. y1="728.152"
  2502. x2="341.9"
  2503. y2="728.152"
  2504. ></line>
  2505. <line
  2506. fill="none"
  2507. stroke="#47B2A9"
  2508. stroke-width="3"
  2509. stroke-miterlimit="10"
  2510. x1="351.146"
  2511. y1="733.541"
  2512. x2="344.147"
  2513. y2="733.541"
  2514. ></line>
  2515. </g>
  2516. <rect
  2517. x="97.897"
  2518. y="778.093"
  2519. fill="#BF9C3A"
  2520. width="22.437"
  2521. height="2.439"
  2522. ></rect>
  2523. <rect
  2524. x="97.146"
  2525. y="778.093"
  2526. fill="#BF9C3A"
  2527. width="2.462"
  2528. height="22.375"
  2529. ></rect>
  2530. <g>
  2531. <line
  2532. fill="none"
  2533. stroke="#47B2A9"
  2534. stroke-width="3"
  2535. stroke-miterlimit="10"
  2536. x1="108.164"
  2537. y1="809.927"
  2538. x2="88.588"
  2539. y2="809.927"
  2540. ></line>
  2541. <line
  2542. fill="none"
  2543. stroke="#47B2A9"
  2544. stroke-width="3"
  2545. stroke-miterlimit="10"
  2546. x1="98.377"
  2547. y1="799.029"
  2548. x2="98.377"
  2549. y2="809.927"
  2550. ></line>
  2551. <line
  2552. fill="none"
  2553. stroke="#47B2A9"
  2554. stroke-width="3"
  2555. stroke-miterlimit="10"
  2556. x1="104.123"
  2557. y1="815.306"
  2558. x2="92.629"
  2559. y2="815.306"
  2560. ></line>
  2561. <line
  2562. fill="none"
  2563. stroke="#47B2A9"
  2564. stroke-width="3"
  2565. stroke-miterlimit="10"
  2566. x1="101.875"
  2567. y1="820.695"
  2568. x2="94.876"
  2569. y2="820.695"
  2570. ></line>
  2571. </g>
  2572. <g>
  2573. <ellipse
  2574. fill="none"
  2575. stroke="#C6A037"
  2576. stroke-width="1.6"
  2577. stroke-miterlimit="10"
  2578. cx="120.009"
  2579. cy="779.099"
  2580. rx="11.07"
  2581. ry="10.984"
  2582. ></ellipse>
  2583. <polyline
  2584. fill="none"
  2585. stroke="#C6A037"
  2586. stroke-width="1.6"
  2587. stroke-miterlimit="10"
  2588. points="116.163,784.437 120.146,780.529 123.856,784.437 "
  2589. ></polyline>
  2590. <line
  2591. fill="none"
  2592. stroke="#C6A037"
  2593. stroke-width="1.6"
  2594. stroke-miterlimit="10"
  2595. x1="120.011"
  2596. y1="780.427"
  2597. x2="120.011"
  2598. y2="773.533"
  2599. ></line>
  2600. <path
  2601. fill="none"
  2602. stroke="#C6A037"
  2603. stroke-width="1.6"
  2604. stroke-miterlimit="10"
  2605. d="M131.079,761.718 c0-6.066-4.955-10.984-11.063-10.984c-6.116,0-11.07,4.918-11.07,10.984c0,6.064,4.954,10.98,11.07,10.98 C126.124,772.699,131.079,767.779,131.079,761.718z"
  2606. ></path>
  2607. <polygon
  2608. fill="none"
  2609. stroke="#C6A037"
  2610. stroke-width="1.6"
  2611. stroke-miterlimit="10"
  2612. points="124.109,764.984 115.911,764.984 120.233,758.273 "
  2613. ></polygon>
  2614. </g>
  2615. <rect
  2616. x="244.769"
  2617. y="778.093"
  2618. fill="#BF9C3A"
  2619. width="22.437"
  2620. height="2.439"
  2621. ></rect>
  2622. <rect
  2623. x="244.017"
  2624. y="778.093"
  2625. fill="#BF9C3A"
  2626. width="2.463"
  2627. height="22.375"
  2628. ></rect>
  2629. <g>
  2630. <line
  2631. fill="none"
  2632. stroke="#47B2A9"
  2633. stroke-width="3"
  2634. stroke-miterlimit="10"
  2635. x1="255.036"
  2636. y1="809.927"
  2637. x2="235.46"
  2638. y2="809.927"
  2639. ></line>
  2640. <line
  2641. fill="none"
  2642. stroke="#47B2A9"
  2643. stroke-width="3"
  2644. stroke-miterlimit="10"
  2645. x1="245.249"
  2646. y1="799.029"
  2647. x2="245.249"
  2648. y2="809.927"
  2649. ></line>
  2650. <line
  2651. fill="none"
  2652. stroke="#47B2A9"
  2653. stroke-width="3"
  2654. stroke-miterlimit="10"
  2655. x1="250.995"
  2656. y1="815.306"
  2657. x2="239.501"
  2658. y2="815.306"
  2659. ></line>
  2660. <line
  2661. fill="none"
  2662. stroke="#47B2A9"
  2663. stroke-width="3"
  2664. stroke-miterlimit="10"
  2665. x1="248.747"
  2666. y1="820.695"
  2667. x2="241.747"
  2668. y2="820.695"
  2669. ></line>
  2670. </g>
  2671. <g>
  2672. <path
  2673. fill="none"
  2674. stroke="#C6A037"
  2675. stroke-width="1.6"
  2676. stroke-miterlimit="10"
  2677. d="M277.951,779.099 c0-6.068-4.956-10.984-11.066-10.984c-6.107,0-11.064,4.916-11.064,10.984c0,6.063,4.957,10.984,11.064,10.984 C272.995,790.083,277.951,785.166,277.951,779.099z"
  2678. ></path>
  2679. <polyline
  2680. fill="none"
  2681. stroke="#C6A037"
  2682. stroke-width="1.6"
  2683. stroke-miterlimit="10"
  2684. points="263.034,784.437 267.017,780.529 270.728,784.437 "
  2685. ></polyline>
  2686. <line
  2687. fill="none"
  2688. stroke="#C6A037"
  2689. stroke-width="1.6"
  2690. stroke-miterlimit="10"
  2691. x1="266.883"
  2692. y1="780.427"
  2693. x2="266.883"
  2694. y2="773.533"
  2695. ></line>
  2696. <path
  2697. fill="none"
  2698. stroke="#C6A037"
  2699. stroke-width="1.6"
  2700. stroke-miterlimit="10"
  2701. d="M277.951,761.718 c0-6.066-4.956-10.984-11.066-10.984c-6.107,0-11.063,4.918-11.063,10.984c0,6.064,4.955,10.98,11.063,10.98 C272.995,772.699,277.951,767.779,277.951,761.718z"
  2702. ></path>
  2703. <polygon
  2704. fill="none"
  2705. stroke="#C6A037"
  2706. stroke-width="1.6"
  2707. stroke-miterlimit="10"
  2708. points="270.981,764.984 262.782,764.984 267.105,758.273 "
  2709. ></polygon>
  2710. </g>
  2711. <text
  2712. transform="matrix(1.0076 0 0 1 331.4724 640.7173)"
  2713. fill="#FFFFFF"
  2714. font-family="'MicrosoftYaHei'"
  2715. font-size="13.0229"
  2716. >
  2717. 316
  2718. </text>
  2719. <text
  2720. transform="matrix(1.0076 0 0 1 343.4314 749.8481)"
  2721. fill="#FFFFFF"
  2722. font-family="'MicrosoftYaHei'"
  2723. font-size="13.0229"
  2724. >
  2725. -0
  2726. </text>
  2727. <text
  2728. transform="matrix(1.0076 0 0 1 378.4099 714.3267)"
  2729. fill="#FFFFFF"
  2730. font-family="'MicrosoftYaHei'"
  2731. font-size="13.0229"
  2732. >
  2733. -3
  2734. </text>
  2735. <text
  2736. transform="matrix(1.0076 0 0 1 378.4099 837.5767)"
  2737. fill="#FFFFFF"
  2738. font-family="'MicrosoftYaHei'"
  2739. font-size="13.0229"
  2740. >
  2741. -03
  2742. </text>
  2743. <text
  2744. transform="matrix(1.0076 0 0 1 331.4724 902.3267)"
  2745. fill="#FFFFFF"
  2746. font-family="'MicrosoftYaHei'"
  2747. font-size="13.0229"
  2748. >
  2749. 2C-0
  2750. </text>
  2751. <rect
  2752. x="348.366"
  2753. y="667.302"
  2754. fill="#BF9C3A"
  2755. width="20.028"
  2756. height="2.438"
  2757. ></rect>
  2758. <rect
  2759. x="365.933"
  2760. y="774.765"
  2761. fill="#C6A037"
  2762. width="2.463"
  2763. height="155.131"
  2764. ></rect>
  2765. <rect
  2766. x="365.933"
  2767. y="590.564"
  2768. fill="#C6A037"
  2769. width="2.463"
  2770. height="109.635"
  2771. ></rect>
  2772. <rect
  2773. x="365.933"
  2774. y="725.152"
  2775. fill="#C6A037"
  2776. width="2.463"
  2777. height="39.574"
  2778. ></rect>
  2779. <rect
  2780. x="359.259"
  2781. y="764.416"
  2782. fill="#C6A037"
  2783. width="15.813"
  2784. height="2.473"
  2785. ></rect>
  2786. <rect
  2787. x="359.259"
  2788. y="772.302"
  2789. fill="#C6A037"
  2790. width="15.813"
  2791. height="2.463"
  2792. ></rect>
  2793. <polygon
  2794. fill="#C6A037"
  2795. points="372.203,929.732 367.159,940.384 362.126,929.728 "
  2796. ></polygon>
  2797. <rect
  2798. x="345.966"
  2799. y="667.302"
  2800. fill="#BF9C3A"
  2801. width="2.471"
  2802. height="22.373"
  2803. ></rect>
  2804. <g>
  2805. <line
  2806. fill="none"
  2807. stroke="#47B2A9"
  2808. stroke-width="3"
  2809. stroke-miterlimit="10"
  2810. x1="357.436"
  2811. y1="873.158"
  2812. x2="337.859"
  2813. y2="873.158"
  2814. ></line>
  2815. <line
  2816. fill="none"
  2817. stroke="#47B2A9"
  2818. stroke-width="3"
  2819. stroke-miterlimit="10"
  2820. x1="347.648"
  2821. y1="867.267"
  2822. x2="347.648"
  2823. y2="873.158"
  2824. ></line>
  2825. <line
  2826. fill="none"
  2827. stroke="#47B2A9"
  2828. stroke-width="3"
  2829. stroke-miterlimit="10"
  2830. x1="353.395"
  2831. y1="878.552"
  2832. x2="341.9"
  2833. y2="878.552"
  2834. ></line>
  2835. <line
  2836. fill="none"
  2837. stroke="#47B2A9"
  2838. stroke-width="3"
  2839. stroke-miterlimit="10"
  2840. x1="351.146"
  2841. y1="883.933"
  2842. x2="344.147"
  2843. y2="883.933"
  2844. ></line>
  2845. </g>
  2846. <rect
  2847. x="348.366"
  2848. y="817.695"
  2849. fill="#BF9C3A"
  2850. width="20.028"
  2851. height="2.443"
  2852. ></rect>
  2853. <rect
  2854. x="345.966"
  2855. y="817.695"
  2856. fill="#BF9C3A"
  2857. width="2.471"
  2858. height="22.373"
  2859. ></rect>
  2860. <g>
  2861. <line
  2862. fill="none"
  2863. stroke="#47B2A9"
  2864. stroke-width="3"
  2865. stroke-miterlimit="10"
  2866. x1="379.355"
  2867. y1="797.384"
  2868. x2="398.932"
  2869. y2="797.384"
  2870. ></line>
  2871. <line
  2872. fill="none"
  2873. stroke="#47B2A9"
  2874. stroke-width="3"
  2875. stroke-miterlimit="10"
  2876. x1="389.143"
  2877. y1="791.486"
  2878. x2="389.143"
  2879. y2="797.384"
  2880. ></line>
  2881. <line
  2882. fill="none"
  2883. stroke="#47B2A9"
  2884. stroke-width="3"
  2885. stroke-miterlimit="10"
  2886. x1="383.396"
  2887. y1="802.765"
  2888. x2="394.891"
  2889. y2="802.765"
  2890. ></line>
  2891. <line
  2892. fill="none"
  2893. stroke="#47B2A9"
  2894. stroke-width="3"
  2895. stroke-miterlimit="10"
  2896. x1="385.645"
  2897. y1="808.152"
  2898. x2="392.644"
  2899. y2="808.152"
  2900. ></line>
  2901. </g>
  2902. <rect
  2903. x="368.396"
  2904. y="741.914"
  2905. fill="#BF9C3A"
  2906. width="20.021"
  2907. height="2.445"
  2908. ></rect>
  2909. <rect
  2910. x="388.363"
  2911. y="741.914"
  2912. fill="#BF9C3A"
  2913. width="2.464"
  2914. height="22.375"
  2915. ></rect>
  2916. <text
  2917. transform="matrix(1.0076 0 0 1 1073.3083 640.7173)"
  2918. fill="#FFFFFF"
  2919. font-family="'MicrosoftYaHei'"
  2920. font-size="13.0229"
  2921. >
  2922. 323
  2923. </text>
  2924. <text
  2925. transform="matrix(1.0076 0 0 1 1087.2595 759.1675)"
  2926. fill="#FFFFFF"
  2927. font-family="'MicrosoftYaHei'"
  2928. font-size="13.0229"
  2929. >
  2930. -0
  2931. </text>
  2932. <rect
  2933. x="1094.51"
  2934. y="667.076"
  2935. fill="#BF9C3A"
  2936. width="22.437"
  2937. height="2.443"
  2938. ></rect>
  2939. <rect
  2940. x="1115.075"
  2941. y="668.927"
  2942. fill="#C6A037"
  2943. width="2.463"
  2944. height="81.977"
  2945. ></rect>
  2946. <rect
  2947. x="1115.075"
  2948. y="590.564"
  2949. fill="#C6A037"
  2950. width="2.463"
  2951. height="84.512"
  2952. ></rect>
  2953. <rect
  2954. x="1094.235"
  2955. y="667.076"
  2956. fill="#BF9C3A"
  2957. width="2.462"
  2958. height="22.373"
  2959. ></rect>
  2960. <g>
  2961. <line
  2962. fill="none"
  2963. stroke="#47B2A9"
  2964. stroke-width="3"
  2965. stroke-miterlimit="10"
  2966. x1="1104.302"
  2967. y1="722.765"
  2968. x2="1084.72"
  2969. y2="722.765"
  2970. ></line>
  2971. <line
  2972. fill="none"
  2973. stroke="#47B2A9"
  2974. stroke-width="3"
  2975. stroke-miterlimit="10"
  2976. x1="1094.51"
  2977. y1="716.875"
  2978. x2="1094.51"
  2979. y2="722.765"
  2980. ></line>
  2981. <line
  2982. fill="none"
  2983. stroke="#47B2A9"
  2984. stroke-width="3"
  2985. stroke-miterlimit="10"
  2986. x1="1100.26"
  2987. y1="728.152"
  2988. x2="1088.761"
  2989. y2="728.152"
  2990. ></line>
  2991. <line
  2992. fill="none"
  2993. stroke="#47B2A9"
  2994. stroke-width="3"
  2995. stroke-miterlimit="10"
  2996. x1="1098.01"
  2997. y1="733.541"
  2998. x2="1091.01"
  2999. y2="733.541"
  3000. ></line>
  3001. </g>
  3002. <rect
  3003. x="1094.51"
  3004. y="778.093"
  3005. fill="#BF9C3A"
  3006. width="22.437"
  3007. height="2.439"
  3008. ></rect>
  3009. <rect
  3010. x="1093.76"
  3011. y="778.093"
  3012. fill="#BF9C3A"
  3013. width="2.461"
  3014. height="22.375"
  3015. ></rect>
  3016. <g>
  3017. <line
  3018. fill="none"
  3019. stroke="#47B2A9"
  3020. stroke-width="3"
  3021. stroke-miterlimit="10"
  3022. x1="1104.774"
  3023. y1="809.927"
  3024. x2="1085.198"
  3025. y2="809.927"
  3026. ></line>
  3027. <line
  3028. fill="none"
  3029. stroke="#47B2A9"
  3030. stroke-width="3"
  3031. stroke-miterlimit="10"
  3032. x1="1094.987"
  3033. y1="799.029"
  3034. x2="1094.987"
  3035. y2="809.927"
  3036. ></line>
  3037. <line
  3038. fill="none"
  3039. stroke="#47B2A9"
  3040. stroke-width="3"
  3041. stroke-miterlimit="10"
  3042. x1="1100.733"
  3043. y1="815.306"
  3044. x2="1089.239"
  3045. y2="815.306"
  3046. ></line>
  3047. <line
  3048. fill="none"
  3049. stroke="#47B2A9"
  3050. stroke-width="3"
  3051. stroke-miterlimit="10"
  3052. x1="1098.485"
  3053. y1="820.695"
  3054. x2="1091.487"
  3055. y2="820.695"
  3056. ></line>
  3057. </g>
  3058. <g>
  3059. <path
  3060. fill="none"
  3061. stroke="#C6A037"
  3062. stroke-width="1.6"
  3063. stroke-miterlimit="10"
  3064. d="M1127.69,779.099 c0-6.068-4.956-10.984-11.066-10.984c-6.107,0-11.064,4.916-11.064,10.984c0,6.063,4.957,10.984,11.064,10.984 C1122.734,790.083,1127.69,785.166,1127.69,779.099z"
  3065. ></path>
  3066. <polyline
  3067. fill="none"
  3068. stroke="#C6A037"
  3069. stroke-width="1.6"
  3070. stroke-miterlimit="10"
  3071. points="1112.774,784.437 1116.76,780.529 1120.469,784.437 "
  3072. ></polyline>
  3073. <line
  3074. fill="none"
  3075. stroke="#C6A037"
  3076. stroke-width="1.6"
  3077. stroke-miterlimit="10"
  3078. x1="1116.621"
  3079. y1="780.427"
  3080. x2="1116.621"
  3081. y2="773.533"
  3082. ></line>
  3083. <path
  3084. fill="none"
  3085. stroke="#C6A037"
  3086. stroke-width="1.6"
  3087. stroke-miterlimit="10"
  3088. d="M1127.69,761.718 c0-6.066-4.956-10.984-11.066-10.984c-6.107,0-11.063,4.918-11.063,10.984c0,6.064,4.954,10.98,11.063,10.98 C1122.734,772.699,1127.69,767.779,1127.69,761.718z"
  3089. ></path>
  3090. <polygon
  3091. fill="none"
  3092. stroke="#C6A037"
  3093. stroke-width="1.6"
  3094. stroke-miterlimit="10"
  3095. points="1120.72,764.984 1112.521,764.984 1116.845,758.273 "
  3096. ></polygon>
  3097. </g>
  3098. <g>
  3099. <line
  3100. fill="none"
  3101. stroke="#47B2A9"
  3102. stroke-width="3"
  3103. stroke-miterlimit="10"
  3104. x1="1202.28"
  3105. y1="722.765"
  3106. x2="1182.703"
  3107. y2="722.765"
  3108. ></line>
  3109. <line
  3110. fill="none"
  3111. stroke="#47B2A9"
  3112. stroke-width="3"
  3113. stroke-miterlimit="10"
  3114. x1="1192.492"
  3115. y1="716.875"
  3116. x2="1192.492"
  3117. y2="722.765"
  3118. ></line>
  3119. <line
  3120. fill="none"
  3121. stroke="#47B2A9"
  3122. stroke-width="3"
  3123. stroke-miterlimit="10"
  3124. x1="1198.239"
  3125. y1="728.152"
  3126. x2="1186.744"
  3127. y2="728.152"
  3128. ></line>
  3129. <line
  3130. fill="none"
  3131. stroke="#47B2A9"
  3132. stroke-width="3"
  3133. stroke-miterlimit="10"
  3134. x1="1195.99"
  3135. y1="733.541"
  3136. x2="1188.991"
  3137. y2="733.541"
  3138. ></line>
  3139. </g>
  3140. <text
  3141. transform="matrix(1.0076 0 0 1 1176.3181 640.7173)"
  3142. fill="#FFFFFF"
  3143. font-family="'MicrosoftYaHei'"
  3144. font-size="13.0229"
  3145. >
  3146. 322
  3147. </text>
  3148. <text
  3149. transform="matrix(1.0076 0 0 1 1188.2771 749.8481)"
  3150. fill="#FFFFFF"
  3151. font-family="'MicrosoftYaHei'"
  3152. font-size="13.0229"
  3153. >
  3154. -0
  3155. </text>
  3156. <text
  3157. transform="matrix(1.0076 0 0 1 1223.2556 714.3267)"
  3158. fill="#FFFFFF"
  3159. font-family="'MicrosoftYaHei'"
  3160. font-size="13.0229"
  3161. >
  3162. -3
  3163. </text>
  3164. <text
  3165. transform="matrix(1.0076 0 0 1 1223.2556 837.5767)"
  3166. fill="#FFFFFF"
  3167. font-family="'MicrosoftYaHei'"
  3168. font-size="13.0229"
  3169. >
  3170. -03
  3171. </text>
  3172. <rect
  3173. x="1193.219"
  3174. y="667.302"
  3175. fill="#BF9C3A"
  3176. width="20.021"
  3177. height="2.438"
  3178. ></rect>
  3179. <rect
  3180. x="1210.777"
  3181. y="727.113"
  3182. fill="#C6A037"
  3183. width="2.463"
  3184. height="202.783"
  3185. ></rect>
  3186. <rect
  3187. x="1210.777"
  3188. y="590.564"
  3189. fill="#C6A037"
  3190. width="2.463"
  3191. height="109.635"
  3192. ></rect>
  3193. <polygon
  3194. fill="#C6A037"
  3195. points="1217.052,929.732 1212.01,940.384 1206.97,929.728 "
  3196. ></polygon>
  3197. <rect
  3198. x="1190.81"
  3199. y="667.302"
  3200. fill="#BF9C3A"
  3201. width="2.463"
  3202. height="22.373"
  3203. ></rect>
  3204. <g>
  3205. <line
  3206. fill="none"
  3207. stroke="#47B2A9"
  3208. stroke-width="3"
  3209. stroke-miterlimit="10"
  3210. x1="1224.199"
  3211. y1="797.384"
  3212. x2="1243.776"
  3213. y2="797.384"
  3214. ></line>
  3215. <line
  3216. fill="none"
  3217. stroke="#47B2A9"
  3218. stroke-width="3"
  3219. stroke-miterlimit="10"
  3220. x1="1233.987"
  3221. y1="791.486"
  3222. x2="1233.987"
  3223. y2="797.384"
  3224. ></line>
  3225. <line
  3226. fill="none"
  3227. stroke="#47B2A9"
  3228. stroke-width="3"
  3229. stroke-miterlimit="10"
  3230. x1="1228.24"
  3231. y1="802.765"
  3232. x2="1239.735"
  3233. y2="802.765"
  3234. ></line>
  3235. <line
  3236. fill="none"
  3237. stroke="#47B2A9"
  3238. stroke-width="3"
  3239. stroke-miterlimit="10"
  3240. x1="1230.489"
  3241. y1="808.152"
  3242. x2="1237.488"
  3243. y2="808.152"
  3244. ></line>
  3245. </g>
  3246. <rect
  3247. x="1213.24"
  3248. y="741.914"
  3249. fill="#BF9C3A"
  3250. width="20.029"
  3251. height="2.445"
  3252. ></rect>
  3253. <rect
  3254. x="1233.21"
  3255. y="741.914"
  3256. fill="#BF9C3A"
  3257. width="2.47"
  3258. height="22.375"
  3259. ></rect>
  3260. <g>
  3261. <line
  3262. fill="none"
  3263. stroke="#47B2A9"
  3264. stroke-width="3"
  3265. stroke-miterlimit="10"
  3266. x1="759.474"
  3267. y1="722.765"
  3268. x2="739.897"
  3269. y2="722.765"
  3270. ></line>
  3271. <line
  3272. fill="none"
  3273. stroke="#47B2A9"
  3274. stroke-width="3"
  3275. stroke-miterlimit="10"
  3276. x1="749.687"
  3277. y1="716.875"
  3278. x2="749.687"
  3279. y2="722.765"
  3280. ></line>
  3281. <line
  3282. fill="none"
  3283. stroke="#47B2A9"
  3284. stroke-width="3"
  3285. stroke-miterlimit="10"
  3286. x1="755.433"
  3287. y1="728.152"
  3288. x2="743.938"
  3289. y2="728.152"
  3290. ></line>
  3291. <line
  3292. fill="none"
  3293. stroke="#47B2A9"
  3294. stroke-width="3"
  3295. stroke-miterlimit="10"
  3296. x1="753.185"
  3297. y1="733.541"
  3298. x2="746.186"
  3299. y2="733.541"
  3300. ></line>
  3301. </g>
  3302. <text
  3303. transform="matrix(1.0076 0 0 1 733.5115 640.7173)"
  3304. fill="#FFFFFF"
  3305. font-family="'MicrosoftYaHei'"
  3306. font-size="13.0229"
  3307. >
  3308. 313
  3309. </text>
  3310. <text
  3311. transform="matrix(1.0076 0 0 1 745.4705 749.8481)"
  3312. fill="#FFFFFF"
  3313. font-family="'MicrosoftYaHei'"
  3314. font-size="13.0229"
  3315. >
  3316. -0
  3317. </text>
  3318. <rect
  3319. x="750.404"
  3320. y="667.302"
  3321. fill="#BF9C3A"
  3322. width="20.029"
  3323. height="2.438"
  3324. ></rect>
  3325. <rect
  3326. x="767.971"
  3327. y="774.765"
  3328. fill="#C6A037"
  3329. width="2.463"
  3330. height="155.131"
  3331. ></rect>
  3332. <rect
  3333. x="767.971"
  3334. y="590.564"
  3335. fill="#C6A037"
  3336. width="2.463"
  3337. height="236.021"
  3338. ></rect>
  3339. <polygon
  3340. fill="#C6A037"
  3341. points="774.24,929.732 769.197,940.384 764.162,929.728 "
  3342. ></polygon>
  3343. <rect
  3344. x="748.01"
  3345. y="667.302"
  3346. fill="#BF9C3A"
  3347. width="2.463"
  3348. height="22.373"
  3349. ></rect>
  3350. <g>
  3351. <line
  3352. fill="none"
  3353. stroke="#47B2A9"
  3354. stroke-width="3"
  3355. stroke-miterlimit="10"
  3356. x1="860.141"
  3357. y1="722.765"
  3358. x2="840.564"
  3359. y2="722.765"
  3360. ></line>
  3361. <line
  3362. fill="none"
  3363. stroke="#47B2A9"
  3364. stroke-width="3"
  3365. stroke-miterlimit="10"
  3366. x1="850.354"
  3367. y1="716.875"
  3368. x2="850.354"
  3369. y2="722.765"
  3370. ></line>
  3371. <line
  3372. fill="none"
  3373. stroke="#47B2A9"
  3374. stroke-width="3"
  3375. stroke-miterlimit="10"
  3376. x1="856.1"
  3377. y1="728.152"
  3378. x2="844.605"
  3379. y2="728.152"
  3380. ></line>
  3381. <line
  3382. fill="none"
  3383. stroke="#47B2A9"
  3384. stroke-width="3"
  3385. stroke-miterlimit="10"
  3386. x1="853.852"
  3387. y1="733.541"
  3388. x2="846.853"
  3389. y2="733.541"
  3390. ></line>
  3391. </g>
  3392. <text
  3393. transform="matrix(1.0076 0 0 1 834.1775 640.7173)"
  3394. fill="#FFFFFF"
  3395. font-family="'MicrosoftYaHei'"
  3396. font-size="13.0229"
  3397. >
  3398. 312
  3399. </text>
  3400. <text
  3401. transform="matrix(1.0076 0 0 1 846.1365 749.8481)"
  3402. fill="#FFFFFF"
  3403. font-family="'MicrosoftYaHei'"
  3404. font-size="13.0229"
  3405. >
  3406. -0
  3407. </text>
  3408. <rect
  3409. x="851.071"
  3410. y="667.302"
  3411. fill="#BF9C3A"
  3412. width="20.029"
  3413. height="2.438"
  3414. ></rect>
  3415. <rect
  3416. x="868.638"
  3417. y="774.765"
  3418. fill="#C6A037"
  3419. width="2.463"
  3420. height="155.131"
  3421. ></rect>
  3422. <rect
  3423. x="868.638"
  3424. y="590.564"
  3425. fill="#C6A037"
  3426. width="2.463"
  3427. height="236.021"
  3428. ></rect>
  3429. <polygon
  3430. fill="#C6A037"
  3431. points="874.907,929.732 869.864,940.384 864.829,929.728 "
  3432. ></polygon>
  3433. <rect
  3434. x="848.677"
  3435. y="667.302"
  3436. fill="#BF9C3A"
  3437. width="2.463"
  3438. height="22.373"
  3439. ></rect>
  3440. <g>
  3441. <line
  3442. fill="none"
  3443. stroke="#47B2A9"
  3444. stroke-width="3"
  3445. stroke-miterlimit="10"
  3446. x1="1378.488"
  3447. y1="722.765"
  3448. x2="1358.911"
  3449. y2="722.765"
  3450. ></line>
  3451. <line
  3452. fill="none"
  3453. stroke="#47B2A9"
  3454. stroke-width="3"
  3455. stroke-miterlimit="10"
  3456. x1="1368.7"
  3457. y1="716.875"
  3458. x2="1368.7"
  3459. y2="722.765"
  3460. ></line>
  3461. <line
  3462. fill="none"
  3463. stroke="#47B2A9"
  3464. stroke-width="3"
  3465. stroke-miterlimit="10"
  3466. x1="1374.447"
  3467. y1="728.152"
  3468. x2="1362.952"
  3469. y2="728.152"
  3470. ></line>
  3471. <line
  3472. fill="none"
  3473. stroke="#47B2A9"
  3474. stroke-width="3"
  3475. stroke-miterlimit="10"
  3476. x1="1372.198"
  3477. y1="733.541"
  3478. x2="1365.199"
  3479. y2="733.541"
  3480. ></line>
  3481. </g>
  3482. <text
  3483. transform="matrix(1.0076 0 0 1 1352.5251 640.7173)"
  3484. fill="#FFFFFF"
  3485. font-family="'MicrosoftYaHei'"
  3486. font-size="13.0229"
  3487. >
  3488. 321
  3489. </text>
  3490. <text
  3491. transform="matrix(1.0076 0 0 1 1364.4841 749.8481)"
  3492. fill="#FFFFFF"
  3493. font-family="'MicrosoftYaHei'"
  3494. font-size="13.0229"
  3495. >
  3496. -0
  3497. </text>
  3498. <rect
  3499. x="1369.427"
  3500. y="667.302"
  3501. fill="#BF9C3A"
  3502. width="20.021"
  3503. height="2.438"
  3504. ></rect>
  3505. <rect
  3506. x="1386.985"
  3507. y="774.765"
  3508. fill="#C6A037"
  3509. width="2.463"
  3510. height="155.131"
  3511. ></rect>
  3512. <rect
  3513. x="1386.985"
  3514. y="590.564"
  3515. fill="#C6A037"
  3516. width="2.463"
  3517. height="236.021"
  3518. ></rect>
  3519. <polygon
  3520. fill="#C6A037"
  3521. points="1393.26,929.732 1388.219,940.384 1383.178,929.728 "
  3522. ></polygon>
  3523. <rect
  3524. x="1367.018"
  3525. y="667.302"
  3526. fill="#BF9C3A"
  3527. width="2.463"
  3528. height="22.373"
  3529. ></rect>
  3530. <g>
  3531. <line
  3532. fill="none"
  3533. stroke="#47B2A9"
  3534. stroke-width="3"
  3535. stroke-miterlimit="10"
  3536. x1="962.243"
  3537. y1="722.765"
  3538. x2="942.677"
  3539. y2="722.765"
  3540. ></line>
  3541. <line
  3542. fill="none"
  3543. stroke="#47B2A9"
  3544. stroke-width="3"
  3545. stroke-miterlimit="10"
  3546. x1="952.456"
  3547. y1="716.875"
  3548. x2="952.456"
  3549. y2="722.765"
  3550. ></line>
  3551. <line
  3552. fill="none"
  3553. stroke="#47B2A9"
  3554. stroke-width="3"
  3555. stroke-miterlimit="10"
  3556. x1="958.202"
  3557. y1="728.152"
  3558. x2="946.71"
  3559. y2="728.152"
  3560. ></line>
  3561. <line
  3562. fill="none"
  3563. stroke="#47B2A9"
  3564. stroke-width="3"
  3565. stroke-miterlimit="10"
  3566. x1="955.954"
  3567. y1="733.541"
  3568. x2="948.955"
  3569. y2="733.541"
  3570. ></line>
  3571. </g>
  3572. <text
  3573. transform="matrix(1.0076 0 0 1 936.281 640.7173)"
  3574. fill="#FFFFFF"
  3575. font-family="'MicrosoftYaHei'"
  3576. font-size="13.0229"
  3577. >
  3578. 311
  3579. </text>
  3580. <text
  3581. transform="matrix(1.0076 0 0 1 948.24 749.8481)"
  3582. fill="#FFFFFF"
  3583. font-family="'MicrosoftYaHei'"
  3584. font-size="13.0229"
  3585. >
  3586. -0
  3587. </text>
  3588. <rect
  3589. x="953.177"
  3590. y="667.302"
  3591. fill="#BF9C3A"
  3592. width="20.021"
  3593. height="2.438"
  3594. ></rect>
  3595. <rect
  3596. x="970.74"
  3597. y="774.765"
  3598. fill="#C6A037"
  3599. width="2.463"
  3600. height="155.131"
  3601. ></rect>
  3602. <rect
  3603. x="970.74"
  3604. y="590.564"
  3605. fill="#C6A037"
  3606. width="2.463"
  3607. height="236.021"
  3608. ></rect>
  3609. <polygon
  3610. fill="#C6A037"
  3611. points="977.012,929.732 971.969,940.384 966.934,929.728 "
  3612. ></polygon>
  3613. <rect
  3614. x="950.773"
  3615. y="667.302"
  3616. fill="#BF9C3A"
  3617. width="2.463"
  3618. height="22.373"
  3619. ></rect>
  3620. <g>
  3621. <line
  3622. fill="none"
  3623. stroke="#47B2A9"
  3624. stroke-width="3"
  3625. stroke-miterlimit="10"
  3626. x1="463.109"
  3627. y1="722.765"
  3628. x2="443.532"
  3629. y2="722.765"
  3630. ></line>
  3631. <line
  3632. fill="none"
  3633. stroke="#47B2A9"
  3634. stroke-width="3"
  3635. stroke-miterlimit="10"
  3636. x1="453.322"
  3637. y1="716.875"
  3638. x2="453.322"
  3639. y2="722.765"
  3640. ></line>
  3641. <line
  3642. fill="none"
  3643. stroke="#47B2A9"
  3644. stroke-width="3"
  3645. stroke-miterlimit="10"
  3646. x1="459.068"
  3647. y1="728.152"
  3648. x2="447.573"
  3649. y2="728.152"
  3650. ></line>
  3651. <line
  3652. fill="none"
  3653. stroke="#47B2A9"
  3654. stroke-width="3"
  3655. stroke-miterlimit="10"
  3656. x1="456.82"
  3657. y1="733.541"
  3658. x2="449.821"
  3659. y2="733.541"
  3660. ></line>
  3661. </g>
  3662. <text
  3663. transform="matrix(1.0076 0 0 1 437.1462 640.7173)"
  3664. fill="#FFFFFF"
  3665. font-family="'MicrosoftYaHei'"
  3666. font-size="13.0229"
  3667. >
  3668. 315
  3669. </text>
  3670. <text
  3671. transform="matrix(1.0076 0 0 1 449.1052 749.8481)"
  3672. fill="#FFFFFF"
  3673. font-family="'MicrosoftYaHei'"
  3674. font-size="13.0229"
  3675. >
  3676. -0
  3677. </text>
  3678. <text
  3679. transform="matrix(1.0076 0 0 1 484.0837 714.3267)"
  3680. fill="#FFFFFF"
  3681. font-family="'MicrosoftYaHei'"
  3682. font-size="13.0229"
  3683. >
  3684. -3
  3685. </text>
  3686. <text
  3687. transform="matrix(1.0076 0 0 1 484.0837 837.5767)"
  3688. fill="#FFFFFF"
  3689. font-family="'MicrosoftYaHei'"
  3690. font-size="13.0229"
  3691. >
  3692. -03
  3693. </text>
  3694. <text
  3695. transform="matrix(1.0076 0 0 1 437.1462 902.3267)"
  3696. fill="#FFFFFF"
  3697. font-family="'MicrosoftYaHei'"
  3698. font-size="13.0229"
  3699. >
  3700. 1C-0
  3701. </text>
  3702. <rect
  3703. x="454.039"
  3704. y="667.302"
  3705. fill="#BF9C3A"
  3706. width="20.029"
  3707. height="2.438"
  3708. ></rect>
  3709. <rect
  3710. x="471.606"
  3711. y="774.765"
  3712. fill="#C6A037"
  3713. width="2.463"
  3714. height="155.131"
  3715. ></rect>
  3716. <rect
  3717. x="471.606"
  3718. y="590.564"
  3719. fill="#C6A037"
  3720. width="2.463"
  3721. height="109.635"
  3722. ></rect>
  3723. <rect
  3724. x="471.606"
  3725. y="725.152"
  3726. fill="#C6A037"
  3727. width="2.463"
  3728. height="39.574"
  3729. ></rect>
  3730. <rect
  3731. x="464.932"
  3732. y="764.416"
  3733. fill="#C6A037"
  3734. width="15.813"
  3735. height="2.473"
  3736. ></rect>
  3737. <rect
  3738. x="464.932"
  3739. y="772.302"
  3740. fill="#C6A037"
  3741. width="15.813"
  3742. height="2.463"
  3743. ></rect>
  3744. <polygon
  3745. fill="#C6A037"
  3746. points="477.885,929.732 472.842,940.384 467.802,929.728 "
  3747. ></polygon>
  3748. <rect
  3749. x="451.639"
  3750. y="667.302"
  3751. fill="#BF9C3A"
  3752. width="2.463"
  3753. height="22.373"
  3754. ></rect>
  3755. <g>
  3756. <line
  3757. fill="none"
  3758. stroke="#47B2A9"
  3759. stroke-width="3"
  3760. stroke-miterlimit="10"
  3761. x1="463.109"
  3762. y1="873.158"
  3763. x2="443.532"
  3764. y2="873.158"
  3765. ></line>
  3766. <line
  3767. fill="none"
  3768. stroke="#47B2A9"
  3769. stroke-width="3"
  3770. stroke-miterlimit="10"
  3771. x1="453.322"
  3772. y1="867.267"
  3773. x2="453.322"
  3774. y2="873.158"
  3775. ></line>
  3776. <line
  3777. fill="none"
  3778. stroke="#47B2A9"
  3779. stroke-width="3"
  3780. stroke-miterlimit="10"
  3781. x1="459.068"
  3782. y1="878.552"
  3783. x2="447.573"
  3784. y2="878.552"
  3785. ></line>
  3786. <line
  3787. fill="none"
  3788. stroke="#47B2A9"
  3789. stroke-width="3"
  3790. stroke-miterlimit="10"
  3791. x1="456.82"
  3792. y1="883.933"
  3793. x2="449.821"
  3794. y2="883.933"
  3795. ></line>
  3796. </g>
  3797. <rect
  3798. x="454.039"
  3799. y="817.695"
  3800. fill="#BF9C3A"
  3801. width="20.029"
  3802. height="2.443"
  3803. ></rect>
  3804. <rect
  3805. x="451.639"
  3806. y="817.695"
  3807. fill="#BF9C3A"
  3808. width="2.463"
  3809. height="22.373"
  3810. ></rect>
  3811. <g>
  3812. <line
  3813. fill="none"
  3814. stroke="#47B2A9"
  3815. stroke-width="3"
  3816. stroke-miterlimit="10"
  3817. x1="485.029"
  3818. y1="797.384"
  3819. x2="504.605"
  3820. y2="797.384"
  3821. ></line>
  3822. <line
  3823. fill="none"
  3824. stroke="#47B2A9"
  3825. stroke-width="3"
  3826. stroke-miterlimit="10"
  3827. x1="494.816"
  3828. y1="791.486"
  3829. x2="494.816"
  3830. y2="797.384"
  3831. ></line>
  3832. <line
  3833. fill="none"
  3834. stroke="#47B2A9"
  3835. stroke-width="3"
  3836. stroke-miterlimit="10"
  3837. x1="489.07"
  3838. y1="802.765"
  3839. x2="500.564"
  3840. y2="802.765"
  3841. ></line>
  3842. <line
  3843. fill="none"
  3844. stroke="#47B2A9"
  3845. stroke-width="3"
  3846. stroke-miterlimit="10"
  3847. x1="491.318"
  3848. y1="808.152"
  3849. x2="498.317"
  3850. y2="808.152"
  3851. ></line>
  3852. </g>
  3853. <rect
  3854. x="474.069"
  3855. y="741.914"
  3856. fill="#BF9C3A"
  3857. width="20.029"
  3858. height="2.445"
  3859. ></rect>
  3860. <rect
  3861. x="494.036"
  3862. y="741.914"
  3863. fill="#BF9C3A"
  3864. width="2.465"
  3865. height="22.375"
  3866. ></rect>
  3867. <g>
  3868. <line
  3869. fill="none"
  3870. stroke="#47B2A9"
  3871. stroke-width="3"
  3872. stroke-miterlimit="10"
  3873. x1="555.594"
  3874. y1="722.765"
  3875. x2="536.01"
  3876. y2="722.765"
  3877. ></line>
  3878. <line
  3879. fill="none"
  3880. stroke="#47B2A9"
  3881. stroke-width="3"
  3882. stroke-miterlimit="10"
  3883. x1="545.802"
  3884. y1="716.875"
  3885. x2="545.802"
  3886. y2="722.765"
  3887. ></line>
  3888. <line
  3889. fill="none"
  3890. stroke="#47B2A9"
  3891. stroke-width="3"
  3892. stroke-miterlimit="10"
  3893. x1="551.552"
  3894. y1="728.152"
  3895. x2="540.052"
  3896. y2="728.152"
  3897. ></line>
  3898. <line
  3899. fill="none"
  3900. stroke="#47B2A9"
  3901. stroke-width="3"
  3902. stroke-miterlimit="10"
  3903. x1="549.302"
  3904. y1="733.541"
  3905. x2="542.302"
  3906. y2="733.541"
  3907. ></line>
  3908. </g>
  3909. <text
  3910. transform="matrix(1.0076 0 0 1 529.6228 640.7173)"
  3911. fill="#FFFFFF"
  3912. font-family="'MicrosoftYaHei'"
  3913. font-size="13.0229"
  3914. >
  3915. 314
  3916. </text>
  3917. <text
  3918. transform="matrix(1.0076 0 0 1 620.7009 628.5737)"
  3919. fill="#FFFFFF"
  3920. font-family="'MicrosoftYaHei'"
  3921. font-size="13.0229"
  3922. >
  3923. 31-9
  3924. </text>
  3925. <text
  3926. transform="matrix(1.0076 0 0 1 541.5818 749.8481)"
  3927. fill="#FFFFFF"
  3928. font-family="'MicrosoftYaHei'"
  3929. font-size="13.0229"
  3930. >
  3931. -0
  3932. </text>
  3933. <text
  3934. transform="matrix(1.0076 0 0 1 576.5603 714.3267)"
  3935. fill="#FFFFFF"
  3936. font-family="'MicrosoftYaHei'"
  3937. font-size="13.0229"
  3938. >
  3939. -3
  3940. </text>
  3941. <text
  3942. transform="matrix(1.0076 0 0 1 576.5603 837.5767)"
  3943. fill="#FFFFFF"
  3944. font-family="'MicrosoftYaHei'"
  3945. font-size="13.0229"
  3946. >
  3947. -03
  3948. </text>
  3949. <rect
  3950. x="546.517"
  3951. y="667.302"
  3952. fill="#BF9C3A"
  3953. width="20.029"
  3954. height="2.438"
  3955. ></rect>
  3956. <rect
  3957. x="564.085"
  3958. y="774.765"
  3959. fill="#C6A037"
  3960. width="2.47"
  3961. height="24.264"
  3962. ></rect>
  3963. <rect
  3964. x="564.085"
  3965. y="824.259"
  3966. fill="#C6A037"
  3967. width="2.47"
  3968. height="107.957"
  3969. ></rect>
  3970. <rect
  3971. x="564.085"
  3972. y="590.564"
  3973. fill="#C6A037"
  3974. width="2.47"
  3975. height="109.635"
  3976. ></rect>
  3977. <rect
  3978. x="564.085"
  3979. y="725.152"
  3980. fill="#C6A037"
  3981. width="2.47"
  3982. height="39.574"
  3983. ></rect>
  3984. <rect
  3985. x="557.407"
  3986. y="764.416"
  3987. fill="#C6A037"
  3988. width="15.813"
  3989. height="2.473"
  3990. ></rect>
  3991. <rect
  3992. x="557.407"
  3993. y="772.302"
  3994. fill="#C6A037"
  3995. width="15.813"
  3996. height="2.463"
  3997. ></rect>
  3998. <polygon
  3999. fill="#C6A037"
  4000. points="570.354,929.732 565.31,940.384 560.275,929.728 "
  4001. ></polygon>
  4002. <rect
  4003. x="544.115"
  4004. y="667.302"
  4005. fill="#BF9C3A"
  4006. width="2.463"
  4007. height="22.373"
  4008. ></rect>
  4009. <g>
  4010. <line
  4011. fill="none"
  4012. stroke="#47B2A9"
  4013. stroke-width="3"
  4014. stroke-miterlimit="10"
  4015. x1="577.51"
  4016. y1="797.384"
  4017. x2="597.081"
  4018. y2="797.384"
  4019. ></line>
  4020. <line
  4021. fill="none"
  4022. stroke="#47B2A9"
  4023. stroke-width="3"
  4024. stroke-miterlimit="10"
  4025. x1="587.302"
  4026. y1="791.486"
  4027. x2="587.302"
  4028. y2="797.384"
  4029. ></line>
  4030. <line
  4031. fill="none"
  4032. stroke="#47B2A9"
  4033. stroke-width="3"
  4034. stroke-miterlimit="10"
  4035. x1="581.552"
  4036. y1="802.765"
  4037. x2="593.04"
  4038. y2="802.765"
  4039. ></line>
  4040. <line
  4041. fill="none"
  4042. stroke="#47B2A9"
  4043. stroke-width="3"
  4044. stroke-miterlimit="10"
  4045. x1="583.802"
  4046. y1="808.152"
  4047. x2="590.802"
  4048. y2="808.152"
  4049. ></line>
  4050. </g>
  4051. <rect
  4052. x="566.552"
  4053. y="741.914"
  4054. fill="#BF9C3A"
  4055. width="20.021"
  4056. height="2.445"
  4057. ></rect>
  4058. <rect
  4059. x="586.514"
  4060. y="741.914"
  4061. fill="#BF9C3A"
  4062. width="2.463"
  4063. height="22.375"
  4064. ></rect>
  4065. <path
  4066. fill="none"
  4067. stroke="#C6A037"
  4068. stroke-width="2.2"
  4069. stroke-miterlimit="10"
  4070. d="M577.822,811.4c0,7.1-5.755,12.854-12.854,12.854 c-7.104,0-12.854-5.754-12.854-12.854s5.755-12.854,12.854-12.854"
  4071. ></path>
  4072. <path
  4073. fill="none"
  4074. stroke="#C6A037"
  4075. stroke-width="2.2"
  4076. stroke-miterlimit="10"
  4077. d="M564.827,823.218 c0.276,0.018,0.561,0.041,0.833,0.041c7.104,0,12.854-5.756,12.854-12.854h-13.688L564.827,823.218L564.827,823.218z"
  4078. ></path>
  4079. <rect
  4080. x="655.482"
  4081. y="679.425"
  4082. fill="none"
  4083. stroke="#C6A037"
  4084. stroke-width="2"
  4085. stroke-miterlimit="10"
  4086. width="19.389"
  4087. height="43.35"
  4088. ></rect>
  4089. <g>
  4090. <path
  4091. fill="none"
  4092. stroke="#C6A037"
  4093. stroke-width="1.4"
  4094. stroke-miterlimit="10"
  4095. d="M1507.51,800.529 c0-5.57-4.482-10.088-10.02-10.088c-5.522,0-10.015,4.518-10.015,10.088c0,5.568,4.483,10.086,10.015,10.086 C1503.024,810.615,1507.51,806.097,1507.51,800.529z"
  4096. ></path>
  4097. <path
  4098. fill="none"
  4099. stroke="#C6A037"
  4100. stroke-width="1.4"
  4101. stroke-miterlimit="10"
  4102. d="M1487.481,783.154 c0,5.568,4.484,10.086,10.012,10.086c5.531,0,10.021-4.518,10.021-10.086c0-5.57-4.483-10.088-10.021-10.088 C1491.969,773.066,1487.481,777.583,1487.481,783.154z"
  4103. ></path>
  4104. <polyline
  4105. fill="none"
  4106. stroke="#C6A037"
  4107. stroke-width="1.4"
  4108. stroke-miterlimit="10"
  4109. points="1501.725,795.625 1498.121,799.218 1494.766,795.625 "
  4110. ></polyline>
  4111. <line
  4112. fill="none"
  4113. stroke="#C6A037"
  4114. stroke-width="1.4"
  4115. stroke-miterlimit="10"
  4116. x1="1498.052"
  4117. y1="799.31"
  4118. x2="1498.052"
  4119. y2="805.638"
  4120. ></line>
  4121. <polyline
  4122. fill="none"
  4123. stroke="#C6A037"
  4124. stroke-width="1.4"
  4125. stroke-miterlimit="10"
  4126. points="1500.975,778.25 1497.371,781.843 1494.016,778.25 "
  4127. ></polyline>
  4128. <line
  4129. fill="none"
  4130. stroke="#C6A037"
  4131. stroke-width="1.4"
  4132. stroke-miterlimit="10"
  4133. x1="1497.302"
  4134. y1="781.935"
  4135. x2="1497.302"
  4136. y2="788.263"
  4137. ></line>
  4138. <ellipse
  4139. fill="none"
  4140. stroke="#C6A037"
  4141. stroke-width="1.4"
  4142. stroke-miterlimit="10"
  4143. cx="1512.304"
  4144. cy="791.337"
  4145. rx="10.089"
  4146. ry="10.012"
  4147. ></ellipse>
  4148. <polygon
  4149. fill="none"
  4150. stroke="#C6A037"
  4151. stroke-width="1.4"
  4152. stroke-miterlimit="10"
  4153. points="1517.077,794.425 1509.661,794.425 1513.572,788.259 "
  4154. ></polygon>
  4155. </g>
  4156. <text
  4157. transform="matrix(1.0076 0 0 1 1452.7009 640.7173)"
  4158. fill="#FFFFFF"
  4159. font-family="'MicrosoftYaHei'"
  4160. font-size="13.0229"
  4161. >
  4162. 32-9
  4163. </text>
  4164. <rect
  4165. x="1487.482"
  4166. y="679.425"
  4167. fill="none"
  4168. stroke="#C6A037"
  4169. stroke-width="2"
  4170. stroke-miterlimit="10"
  4171. width="19.39"
  4172. height="43.35"
  4173. ></rect>
  4174. <rect
  4175. x="759.864"
  4176. y="133.444"
  4177. fill="#95295D"
  4178. width="3.087"
  4179. height="15.475"
  4180. ></rect>
  4181. <rect
  4182. x="759.812"
  4183. y="224.919"
  4184. fill="#95295D"
  4185. width="3.261"
  4186. height="7.4"
  4187. ></rect>
  4188. <text
  4189. transform="matrix(1 0 0 1 861.9128 91.6724)"
  4190. fill="#FFFFFF"
  4191. font-family="'MicrosoftYaHei'"
  4192. font-size="12.1513"
  4193. >
  4194. 111-0
  4195. </text>
  4196. <text
  4197. transform="matrix(1 0 0 1 778.4167 115.895)"
  4198. fill="#FFFFFF"
  4199. font-family="'MicrosoftYaHei'"
  4200. font-size="12.1513"
  4201. >
  4202. 111-3
  4203. </text>
  4204. <text
  4205. transform="matrix(1 0 0 1 778.4167 164.0366)"
  4206. fill="#FFFFFF"
  4207. font-family="'MicrosoftYaHei'"
  4208. font-size="12.1513"
  4209. >
  4210. 111
  4211. </text>
  4212. <text
  4213. transform="matrix(1 0 0 1 778.4167 212.3579)"
  4214. fill="#FFFFFF"
  4215. font-family="'MicrosoftYaHei'"
  4216. font-size="12.1513"
  4217. >
  4218. 111-1
  4219. </text>
  4220. <g>
  4221. <line
  4222. fill="none"
  4223. stroke="#47B2A9"
  4224. stroke-width="3"
  4225. stroke-miterlimit="10"
  4226. x1="648.313"
  4227. y1="80.428"
  4228. x2="648.313"
  4229. y2="60.853"
  4230. ></line>
  4231. <line
  4232. fill="none"
  4233. stroke="#47B2A9"
  4234. stroke-width="3"
  4235. stroke-miterlimit="10"
  4236. x1="661.781"
  4237. y1="70.641"
  4238. x2="648.313"
  4239. y2="70.641"
  4240. ></line>
  4241. <line
  4242. fill="none"
  4243. stroke="#95295D"
  4244. stroke-width="3"
  4245. stroke-miterlimit="10"
  4246. x1="678.599"
  4247. y1="70.641"
  4248. x2="661.531"
  4249. y2="70.641"
  4250. ></line>
  4251. <line
  4252. fill="none"
  4253. stroke="#47B2A9"
  4254. stroke-width="3"
  4255. stroke-miterlimit="10"
  4256. x1="642.927"
  4257. y1="76.388"
  4258. x2="642.927"
  4259. y2="64.894"
  4260. ></line>
  4261. <line
  4262. fill="none"
  4263. stroke="#47B2A9"
  4264. stroke-width="3"
  4265. stroke-miterlimit="10"
  4266. x1="637.537"
  4267. y1="74.14"
  4268. x2="637.537"
  4269. y2="67.141"
  4270. ></line>
  4271. </g>
  4272. <text
  4273. transform="matrix(1 0 0 1 626.6179 140.5435)"
  4274. fill="#FFFFFF"
  4275. font-family="'MicrosoftYaHei'"
  4276. font-size="12.1513"
  4277. >
  4278. 111-03
  4279. </text>
  4280. <rect
  4281. x="761.066"
  4282. y="12.458"
  4283. fill="#95295D"
  4284. width="2.739"
  4285. height="88.128"
  4286. ></rect>
  4287. <rect
  4288. x="740.135"
  4289. y="67.133"
  4290. fill="#95295D"
  4291. width="21.521"
  4292. height="3.104"
  4293. ></rect>
  4294. <rect
  4295. x="738.585"
  4296. y="57.92"
  4297. fill="#95295D"
  4298. width="3.104"
  4299. height="21.525"
  4300. ></rect>
  4301. <rect
  4302. x="730.988"
  4303. y="57.92"
  4304. fill="#95295D"
  4305. width="3.104"
  4306. height="21.525"
  4307. ></rect>
  4308. <rect
  4309. x="687.744"
  4310. y="67.133"
  4311. fill="#95295D"
  4312. width="44.793"
  4313. height="3.104"
  4314. ></rect>
  4315. <rect
  4316. x="686.195"
  4317. y="57.92"
  4318. fill="#95295D"
  4319. width="3.104"
  4320. height="21.525"
  4321. ></rect>
  4322. <rect
  4323. x="710.427"
  4324. y="46.197"
  4325. fill="#95295D"
  4326. width="3.1"
  4327. height="21.458"
  4328. ></rect>
  4329. <rect
  4330. x="678.599"
  4331. y="57.92"
  4332. fill="#95295D"
  4333. width="3.1"
  4334. height="21.525"
  4335. ></rect>
  4336. <rect
  4337. x="762.436"
  4338. y="83.977"
  4339. fill="#95295D"
  4340. width="21.442"
  4341. height="3.087"
  4342. ></rect>
  4343. <polygon
  4344. fill="#95295D"
  4345. points="756.242,13.194 762.443,0 768.635,13.199 "
  4346. ></polygon>
  4347. <g>
  4348. <circle
  4349. fill="none"
  4350. stroke="#A82866"
  4351. stroke-width="1.2"
  4352. stroke-miterlimit="10"
  4353. cx="712.594"
  4354. cy="35.632"
  4355. r="10.565"
  4356. ></circle>
  4357. <path
  4358. fill="none"
  4359. stroke="#A82866"
  4360. stroke-width="1.2"
  4361. stroke-miterlimit="10"
  4362. d="M721.862,9.133 c-5.838,0-10.563,4.73-10.563,10.564c0,5.835,4.728,10.566,10.563,10.566c5.834,0,10.563-4.731,10.563-10.566 C732.427,13.863,727.696,9.133,721.862,9.133z"
  4363. ></path>
  4364. <polyline
  4365. fill="none"
  4366. stroke="#A82866"
  4367. stroke-width="1.2"
  4368. stroke-miterlimit="10"
  4369. points="708.806,40.466 712.605,36.708 716.147,40.466 "
  4370. ></polyline>
  4371. <line
  4372. fill="none"
  4373. stroke="#A82866"
  4374. stroke-width="1.2"
  4375. stroke-miterlimit="10"
  4376. x1="712.686"
  4377. y1="36.608"
  4378. x2="712.686"
  4379. y2="29.982"
  4380. ></line>
  4381. <polyline
  4382. fill="none"
  4383. stroke="#A82866"
  4384. stroke-width="1.2"
  4385. stroke-miterlimit="10"
  4386. points="718.078,24.94 721.885,21.182 725.427,24.94 "
  4387. ></polyline>
  4388. <line
  4389. fill="none"
  4390. stroke="#A82866"
  4391. stroke-width="1.2"
  4392. stroke-miterlimit="10"
  4393. x1="721.956"
  4394. y1="21.082"
  4395. x2="721.956"
  4396. y2="14.456"
  4397. ></line>
  4398. <circle
  4399. fill="none"
  4400. stroke="#A82866"
  4401. stroke-width="1.2"
  4402. stroke-miterlimit="10"
  4403. cx="704.074"
  4404. cy="19.697"
  4405. r="10.564"
  4406. ></circle>
  4407. <polyline
  4408. fill="none"
  4409. stroke="#A82866"
  4410. stroke-width="1.2"
  4411. stroke-miterlimit="10"
  4412. points="700.302,24.94 704.094,21.182 707.635,24.94 "
  4413. ></polyline>
  4414. <line
  4415. fill="none"
  4416. stroke="#A82866"
  4417. stroke-width="1.2"
  4418. stroke-miterlimit="10"
  4419. x1="704.177"
  4420. y1="21.082"
  4421. x2="704.177"
  4422. y2="14.456"
  4423. ></line>
  4424. </g>
  4425. <rect
  4426. x="759.864"
  4427. y="177.586"
  4428. fill="#95295D"
  4429. width="3.087"
  4430. height="19.778"
  4431. ></rect>
  4432. <text
  4433. transform="matrix(1 0 0 1 626.6179 189.8638)"
  4434. fill="#FFFFFF"
  4435. font-family="'MicrosoftYaHei'"
  4436. font-size="12.1513"
  4437. >
  4438. 111-01
  4439. </text>
  4440. <g>
  4441. <line
  4442. fill="none"
  4443. stroke="#47B2A9"
  4444. stroke-width="3"
  4445. stroke-miterlimit="10"
  4446. x1="828.114"
  4447. y1="76.446"
  4448. x2="828.114"
  4449. y2="96.021"
  4450. ></line>
  4451. <line
  4452. fill="none"
  4453. stroke="#47B2A9"
  4454. stroke-width="3"
  4455. stroke-miterlimit="10"
  4456. x1="814.646"
  4457. y1="86.233"
  4458. x2="828.114"
  4459. y2="86.233"
  4460. ></line>
  4461. <line
  4462. fill="none"
  4463. stroke="#47B2A9"
  4464. stroke-width="3"
  4465. stroke-miterlimit="10"
  4466. x1="833.51"
  4467. y1="80.486"
  4468. x2="833.51"
  4469. y2="91.98"
  4470. ></line>
  4471. <line
  4472. fill="none"
  4473. stroke="#47B2A9"
  4474. stroke-width="3"
  4475. stroke-miterlimit="10"
  4476. x1="838.89"
  4477. y1="82.734"
  4478. x2="838.89"
  4479. y2="89.733"
  4480. ></line>
  4481. </g>
  4482. <rect
  4483. x="739.938"
  4484. y="134.787"
  4485. fill="#95295D"
  4486. width="21.442"
  4487. height="3.087"
  4488. ></rect>
  4489. <g>
  4490. <line
  4491. fill="none"
  4492. stroke="#47B2A9"
  4493. stroke-width="3"
  4494. stroke-miterlimit="10"
  4495. x1="695.7"
  4496. y1="127.256"
  4497. x2="695.7"
  4498. y2="146.832"
  4499. ></line>
  4500. <line
  4501. fill="none"
  4502. stroke="#47B2A9"
  4503. stroke-width="3"
  4504. stroke-miterlimit="10"
  4505. x1="709.177"
  4506. y1="137.043"
  4507. x2="695.7"
  4508. y2="137.043"
  4509. ></line>
  4510. <line
  4511. fill="none"
  4512. stroke="#47B2A9"
  4513. stroke-width="3"
  4514. stroke-miterlimit="10"
  4515. x1="690.313"
  4516. y1="131.296"
  4517. x2="690.313"
  4518. y2="142.791"
  4519. ></line>
  4520. <line
  4521. fill="none"
  4522. stroke="#47B2A9"
  4523. stroke-width="3"
  4524. stroke-miterlimit="10"
  4525. x1="684.927"
  4526. y1="133.544"
  4527. x2="684.927"
  4528. y2="140.543"
  4529. ></line>
  4530. </g>
  4531. <rect
  4532. x="739.938"
  4533. y="183.454"
  4534. fill="#95295D"
  4535. width="21.442"
  4536. height="3.087"
  4537. ></rect>
  4538. <g>
  4539. <line
  4540. fill="none"
  4541. stroke="#47B2A9"
  4542. stroke-width="3"
  4543. stroke-miterlimit="10"
  4544. x1="695.7"
  4545. y1="175.923"
  4546. x2="695.7"
  4547. y2="195.499"
  4548. ></line>
  4549. <line
  4550. fill="none"
  4551. stroke="#47B2A9"
  4552. stroke-width="3"
  4553. stroke-miterlimit="10"
  4554. x1="709.177"
  4555. y1="185.71"
  4556. x2="695.7"
  4557. y2="185.71"
  4558. ></line>
  4559. <line
  4560. fill="none"
  4561. stroke="#47B2A9"
  4562. stroke-width="3"
  4563. stroke-miterlimit="10"
  4564. x1="690.313"
  4565. y1="179.963"
  4566. x2="690.313"
  4567. y2="191.458"
  4568. ></line>
  4569. <line
  4570. fill="none"
  4571. stroke="#47B2A9"
  4572. stroke-width="3"
  4573. stroke-miterlimit="10"
  4574. x1="684.927"
  4575. y1="182.211"
  4576. x2="684.927"
  4577. y2="189.21"
  4578. ></line>
  4579. </g>
  4580. <text
  4581. transform="matrix(0.9268 0 0 1 14.9626 576.2729)"
  4582. fill="#FFFFFF"
  4583. font-family="'MicrosoftYaHei'"
  4584. font-size="11.7516"
  4585. >
  4586. 35kV Ⅰ母线
  4587. </text>
  4588. <text
  4589. transform="matrix(0.9268 0 0 1 1551.8718 576.2729)"
  4590. fill="#FFFFFF"
  4591. font-family="'MicrosoftYaHei'"
  4592. font-size="11.7516"
  4593. >
  4594. 35kV Ⅱ母线
  4595. </text>
  4596. <rect
  4597. x="76.782"
  4598. y="1013.746"
  4599. opacity="0.9"
  4600. fill="#1B2522"
  4601. enable-background="new "
  4602. width="79.533"
  4603. height="23.402"
  4604. ></rect>
  4605. <rect
  4606. x="76.782"
  4607. y="1046.246"
  4608. opacity="0.9"
  4609. fill="#1B2522"
  4610. enable-background="new "
  4611. width="79.533"
  4612. height="23.402"
  4613. ></rect>
  4614. <rect
  4615. x="76.782"
  4616. y="1079.246"
  4617. opacity="0.9"
  4618. fill="#1B2522"
  4619. enable-background="new "
  4620. width="79.533"
  4621. height="23.402"
  4622. ></rect>
  4623. <g>
  4624. <g>
  4625. <text
  4626. transform="matrix(1 0 0 1 18.8752 1030.8413)"
  4627. fill="#FFFFFF"
  4628. font-family="'MicrosoftYaHei'"
  4629. font-size="11.8189"
  4630. >
  4631. la(
  4632. </text>
  4633. <text
  4634. transform="matrix(1 0 0 1 32.5007 1030.8413)"
  4635. fill="#FFFFFF"
  4636. font-family="'MicrosoftYaHei'"
  4637. font-size="9.4551"
  4638. >
  4639. A
  4640. </text>
  4641. <text
  4642. transform="matrix(1 0 0 1 39.1521 1030.8413)"
  4643. fill="#FFFFFF"
  4644. font-family="'MicrosoftYaHei'"
  4645. font-size="11.8189"
  4646. >
  4647. ):
  4648. </text>
  4649. <text
  4650. transform="matrix(1 0 0 1 8.8752 1062.0347)"
  4651. fill="#FFFFFF"
  4652. font-family="'MicrosoftYaHei'"
  4653. font-size="11.8189"
  4654. >
  4655. P(
  4656. </text>
  4657. <text
  4658. transform="matrix(1 0 0 1 20.5754 1062.0347)"
  4659. fill="#FFFFFF"
  4660. font-family="'MicrosoftYaHei'"
  4661. font-size="9.4551"
  4662. >
  4663. MW
  4664. </text>
  4665. <text
  4666. transform="matrix(1 0 0 1 39.1521 1062.0347)"
  4667. fill="#FFFFFF"
  4668. font-family="'MicrosoftYaHei'"
  4669. font-size="11.8189"
  4670. >
  4671. ):
  4672. </text>
  4673. <text
  4674. transform="matrix(1 0 0 1 -2.441406e-004 1094.1343)"
  4675. fill="#FFFFFF"
  4676. font-family="'MicrosoftYaHei'"
  4677. font-size="11.8189"
  4678. >
  4679. Q(
  4680. </text>
  4681. <text
  4682. transform="matrix(1 0 0 1 13.5793 1094.1343)"
  4683. fill="#FFFFFF"
  4684. font-family="'MicrosoftYaHei'"
  4685. font-size="9.4551"
  4686. >
  4687. MVar
  4688. </text>
  4689. <text
  4690. transform="matrix(1 0 0 1 39.1521 1094.1343)"
  4691. fill="#FFFFFF"
  4692. font-family="'MicrosoftYaHei'"
  4693. font-size="11.8189"
  4694. >
  4695. ):
  4696. </text>
  4697. </g>
  4698. </g>
  4699. <rect
  4700. x="226.287"
  4701. y="1013.746"
  4702. opacity="0.9"
  4703. fill="#1B2522"
  4704. enable-background="new "
  4705. width="79.533"
  4706. height="23.402"
  4707. ></rect>
  4708. <rect
  4709. x="226.287"
  4710. y="1046.246"
  4711. opacity="0.9"
  4712. fill="#1B2522"
  4713. enable-background="new "
  4714. width="79.533"
  4715. height="23.402"
  4716. ></rect>
  4717. <rect
  4718. x="226.287"
  4719. y="1079.246"
  4720. opacity="0.9"
  4721. fill="#1B2522"
  4722. enable-background="new "
  4723. width="79.533"
  4724. height="23.402"
  4725. ></rect>
  4726. <rect
  4727. x="326.01"
  4728. y="1013.746"
  4729. opacity="0.9"
  4730. fill="#1B2522"
  4731. enable-background="new "
  4732. width="79.525"
  4733. height="23.402"
  4734. ></rect>
  4735. <rect
  4736. x="326.01"
  4737. y="1046.246"
  4738. opacity="0.9"
  4739. fill="#1B2522"
  4740. enable-background="new "
  4741. width="79.525"
  4742. height="23.402"
  4743. ></rect>
  4744. <rect
  4745. x="326.01"
  4746. y="1079.246"
  4747. opacity="0.9"
  4748. fill="#1B2522"
  4749. enable-background="new "
  4750. width="79.525"
  4751. height="23.402"
  4752. ></rect>
  4753. <rect
  4754. x="431.844"
  4755. y="1013.746"
  4756. opacity="0.9"
  4757. fill="#1B2522"
  4758. enable-background="new "
  4759. width="79.524"
  4760. height="23.402"
  4761. ></rect>
  4762. <rect
  4763. x="431.844"
  4764. y="1046.246"
  4765. opacity="0.9"
  4766. fill="#1B2522"
  4767. enable-background="new "
  4768. width="79.524"
  4769. height="23.402"
  4770. ></rect>
  4771. <rect
  4772. x="431.844"
  4773. y="1079.246"
  4774. opacity="0.9"
  4775. fill="#1B2522"
  4776. enable-background="new "
  4777. width="79.524"
  4778. height="23.402"
  4779. ></rect>
  4780. <rect
  4781. x="527.69"
  4782. y="1013.746"
  4783. opacity="0.9"
  4784. fill="#1B2522"
  4785. enable-background="new "
  4786. width="79.534"
  4787. height="23.402"
  4788. ></rect>
  4789. <rect
  4790. x="527.69"
  4791. y="1046.246"
  4792. opacity="0.9"
  4793. fill="#1B2522"
  4794. enable-background="new "
  4795. width="79.534"
  4796. height="23.402"
  4797. ></rect>
  4798. <rect
  4799. x="527.69"
  4800. y="1079.246"
  4801. opacity="0.9"
  4802. fill="#1B2522"
  4803. enable-background="new "
  4804. width="79.534"
  4805. height="23.402"
  4806. ></rect>
  4807. <rect
  4808. x="622.997"
  4809. y="1013.746"
  4810. opacity="0.9"
  4811. fill="#1B2522"
  4812. enable-background="new "
  4813. width="79.534"
  4814. height="23.402"
  4815. ></rect>
  4816. <rect
  4817. x="622.997"
  4818. y="1046.246"
  4819. opacity="0.9"
  4820. fill="#1B2522"
  4821. enable-background="new "
  4822. width="79.534"
  4823. height="23.402"
  4824. ></rect>
  4825. <rect
  4826. x="622.997"
  4827. y="1079.246"
  4828. opacity="0.9"
  4829. fill="#1B2522"
  4830. enable-background="new "
  4831. width="79.534"
  4832. height="23.402"
  4833. ></rect>
  4834. <rect
  4835. x="728.203"
  4836. y="1013.746"
  4837. opacity="0.9"
  4838. fill="#1B2522"
  4839. enable-background="new "
  4840. width="79.534"
  4841. height="23.402"
  4842. ></rect>
  4843. <rect
  4844. x="728.203"
  4845. y="1046.246"
  4846. opacity="0.9"
  4847. fill="#1B2522"
  4848. enable-background="new "
  4849. width="79.534"
  4850. height="23.402"
  4851. ></rect>
  4852. <rect
  4853. x="728.203"
  4854. y="1079.246"
  4855. opacity="0.9"
  4856. fill="#1B2522"
  4857. enable-background="new "
  4858. width="79.534"
  4859. height="23.402"
  4860. ></rect>
  4861. <rect
  4862. x="828.687"
  4863. y="1013.746"
  4864. opacity="0.9"
  4865. fill="#1B2522"
  4866. enable-background="new "
  4867. width="79.534"
  4868. height="23.402"
  4869. ></rect>
  4870. <rect
  4871. x="828.687"
  4872. y="1046.246"
  4873. opacity="0.9"
  4874. fill="#1B2522"
  4875. enable-background="new "
  4876. width="79.534"
  4877. height="23.402"
  4878. ></rect>
  4879. <rect
  4880. x="828.687"
  4881. y="1079.246"
  4882. opacity="0.9"
  4883. fill="#1B2522"
  4884. enable-background="new "
  4885. width="79.534"
  4886. height="23.402"
  4887. ></rect>
  4888. <rect
  4889. x="930.974"
  4890. y="1013.746"
  4891. opacity="0.9"
  4892. fill="#1B2522"
  4893. enable-background="new "
  4894. width="79.534"
  4895. height="23.402"
  4896. ></rect>
  4897. <rect
  4898. x="930.974"
  4899. y="1046.246"
  4900. opacity="0.9"
  4901. fill="#1B2522"
  4902. enable-background="new "
  4903. width="79.534"
  4904. height="23.402"
  4905. ></rect>
  4906. <rect
  4907. x="930.974"
  4908. y="1079.246"
  4909. opacity="0.9"
  4910. fill="#1B2522"
  4911. enable-background="new "
  4912. width="79.534"
  4913. height="23.402"
  4914. ></rect>
  4915. <rect
  4916. x="1075.427"
  4917. y="1013.746"
  4918. opacity="0.9"
  4919. fill="#1B2522"
  4920. enable-background="new "
  4921. width="79.524"
  4922. height="23.402"
  4923. ></rect>
  4924. <rect
  4925. x="1075.427"
  4926. y="1046.246"
  4927. opacity="0.9"
  4928. fill="#1B2522"
  4929. enable-background="new "
  4930. width="79.524"
  4931. height="23.402"
  4932. ></rect>
  4933. <rect
  4934. x="1075.427"
  4935. y="1079.246"
  4936. opacity="0.9"
  4937. fill="#1B2522"
  4938. enable-background="new "
  4939. width="79.524"
  4940. height="23.402"
  4941. ></rect>
  4942. <rect
  4943. x="1172.241"
  4944. y="1013.746"
  4945. opacity="0.9"
  4946. fill="#1B2522"
  4947. enable-background="new "
  4948. width="79.534"
  4949. height="23.402"
  4950. ></rect>
  4951. <rect
  4952. x="1172.241"
  4953. y="1046.246"
  4954. opacity="0.9"
  4955. fill="#1B2522"
  4956. enable-background="new "
  4957. width="79.534"
  4958. height="23.402"
  4959. ></rect>
  4960. <rect
  4961. x="1172.241"
  4962. y="1079.246"
  4963. opacity="0.9"
  4964. fill="#1B2522"
  4965. enable-background="new "
  4966. width="79.534"
  4967. height="23.402"
  4968. ></rect>
  4969. <rect
  4970. x="1348.094"
  4971. y="1013.746"
  4972. opacity="0.9"
  4973. fill="#1B2522"
  4974. enable-background="new "
  4975. width="79.526"
  4976. height="23.402"
  4977. ></rect>
  4978. <rect
  4979. x="1348.094"
  4980. y="1046.246"
  4981. opacity="0.9"
  4982. fill="#1B2522"
  4983. enable-background="new "
  4984. width="79.526"
  4985. height="23.402"
  4986. ></rect>
  4987. <rect
  4988. x="1348.094"
  4989. y="1079.246"
  4990. opacity="0.9"
  4991. fill="#1B2522"
  4992. enable-background="new "
  4993. width="79.526"
  4994. height="23.402"
  4995. ></rect>
  4996. <rect
  4997. x="1454.251"
  4998. y="1013.746"
  4999. opacity="0.9"
  5000. fill="#1B2522"
  5001. enable-background="new "
  5002. width="79.531"
  5003. height="23.402"
  5004. ></rect>
  5005. <rect
  5006. x="1454.251"
  5007. y="1046.246"
  5008. opacity="0.9"
  5009. fill="#1B2522"
  5010. enable-background="new "
  5011. width="79.531"
  5012. height="23.402"
  5013. ></rect>
  5014. <rect
  5015. x="1454.251"
  5016. y="1079.246"
  5017. opacity="0.9"
  5018. fill="#1B2522"
  5019. enable-background="new "
  5020. width="79.531"
  5021. height="23.402"
  5022. ></rect>
  5023. <g>
  5024. <g>
  5025. <rect
  5026. x="623.194"
  5027. y="970.974"
  5028. fill="#5A5784"
  5029. width="79.143"
  5030. height="22.611"
  5031. ></rect>
  5032. <text
  5033. transform="matrix(1.0076 0 0 1 629.9001 986.7817)"
  5034. fill="#FFFFFF"
  5035. font-family="'MicrosoftYaHei'"
  5036. font-size="13.6485"
  5037. >
  5038. 35KV Ⅰ母
  5039. </text>
  5040. </g>
  5041. <g>
  5042. <rect
  5043. x="76.979"
  5044. y="972.974"
  5045. fill="#5A5784"
  5046. width="79.143"
  5047. height="22.611"
  5048. ></rect>
  5049. <text
  5050. transform="matrix(1 0 0 1 87.7209 988.7817)"
  5051. fill="#FFFFFF"
  5052. font-family="'MicrosoftYaHei'"
  5053. font-size="13.6485"
  5054. >
  5055. #1接地变
  5056. </text>
  5057. </g>
  5058. <g>
  5059. <rect
  5060. x="226.483"
  5061. y="972.974"
  5062. fill="#5A5784"
  5063. width="79.144"
  5064. height="22.611"
  5065. ></rect>
  5066. <text
  5067. transform="matrix(1 0 0 1 237.2253 988.7817)"
  5068. fill="#FFFFFF"
  5069. font-family="'MicrosoftYaHei'"
  5070. font-size="13.6485"
  5071. >
  5072. #2站用变
  5073. </text>
  5074. </g>
  5075. <g>
  5076. <rect
  5077. x="326.206"
  5078. y="972.974"
  5079. fill="#5A5784"
  5080. width="79.146"
  5081. height="22.611"
  5082. ></rect>
  5083. <text
  5084. transform="matrix(1 0 0 1 336.948 988.7817)"
  5085. fill="#FFFFFF"
  5086. font-family="'MicrosoftYaHei'"
  5087. font-size="13.6485"
  5088. >
  5089. #2电容器
  5090. </text>
  5091. </g>
  5092. <g>
  5093. <rect
  5094. x="432.035"
  5095. y="972.974"
  5096. fill="#5A5784"
  5097. width="79.146"
  5098. height="22.611"
  5099. ></rect>
  5100. <text
  5101. transform="matrix(1 0 0 1 442.7795 988.7817)"
  5102. fill="#FFFFFF"
  5103. font-family="'MicrosoftYaHei'"
  5104. font-size="13.6485"
  5105. >
  5106. #1电容器
  5107. </text>
  5108. </g>
  5109. <g>
  5110. <rect
  5111. x="728.4"
  5112. y="970.974"
  5113. fill="#5A5784"
  5114. width="79.146"
  5115. height="22.611"
  5116. ></rect>
  5117. <text
  5118. transform="matrix(1.0076 0 0 1 740.4666 986.7817)"
  5119. fill="#FFFFFF"
  5120. font-family="'MicrosoftYaHei'"
  5121. font-size="13.6485"
  5122. >
  5123. 风场三线
  5124. </text>
  5125. </g>
  5126. <g>
  5127. <rect
  5128. x="828.885"
  5129. y="970.974"
  5130. fill="#5A5784"
  5131. width="79.142"
  5132. height="22.611"
  5133. ></rect>
  5134. <text
  5135. transform="matrix(1.0076 0 0 1 840.949 986.7817)"
  5136. fill="#FFFFFF"
  5137. font-family="'MicrosoftYaHei'"
  5138. font-size="13.6485"
  5139. >
  5140. 风场二线
  5141. </text>
  5142. </g>
  5143. <g>
  5144. <rect
  5145. x="931.177"
  5146. y="970.974"
  5147. fill="#5A5784"
  5148. width="79.142"
  5149. height="22.611"
  5150. ></rect>
  5151. <text
  5152. transform="matrix(1.0076 0 0 1 943.2361 986.7817)"
  5153. fill="#FFFFFF"
  5154. font-family="'MicrosoftYaHei'"
  5155. font-size="13.6485"
  5156. >
  5157. 风场一线
  5158. </text>
  5159. </g>
  5160. <g>
  5161. <rect
  5162. x="1075.615"
  5163. y="970.974"
  5164. fill="#5A5784"
  5165. width="79.146"
  5166. height="22.611"
  5167. ></rect>
  5168. <text
  5169. transform="matrix(1.0076 0 0 1 1086.1384 986.7817)"
  5170. fill="#FFFFFF"
  5171. font-family="'MicrosoftYaHei'"
  5172. font-size="13.6485"
  5173. >
  5174. #2接地变
  5175. </text>
  5176. </g>
  5177. <g>
  5178. <rect
  5179. x="1172.438"
  5180. y="970.974"
  5181. fill="#5A5784"
  5182. width="79.142"
  5183. height="22.611"
  5184. ></rect>
  5185. <text
  5186. transform="matrix(1.0076 0 0 1 1187.822 986.7817)"
  5187. fill="#FFFFFF"
  5188. font-family="'MicrosoftYaHei'"
  5189. font-size="13.6485"
  5190. >
  5191. #1 SVG
  5192. </text>
  5193. </g>
  5194. <g>
  5195. <rect
  5196. x="1348.281"
  5197. y="970.974"
  5198. fill="#5A5784"
  5199. width="79.146"
  5200. height="22.611"
  5201. ></rect>
  5202. <text
  5203. transform="matrix(1.0076 0 0 1 1360.3494 986.7817)"
  5204. fill="#FFFFFF"
  5205. font-family="'MicrosoftYaHei'"
  5206. font-size="13.6485"
  5207. >
  5208. 风场四线
  5209. </text>
  5210. </g>
  5211. <g>
  5212. <rect
  5213. x="1454.445"
  5214. y="970.974"
  5215. fill="#5A5784"
  5216. width="79.144"
  5217. height="22.611"
  5218. ></rect>
  5219. <text
  5220. transform="matrix(1.0076 0 0 1 1461.1501 986.7817)"
  5221. fill="#FFFFFF"
  5222. font-family="'MicrosoftYaHei'"
  5223. font-size="13.6485"
  5224. >
  5225. 35KV Ⅰ母
  5226. </text>
  5227. </g>
  5228. <g>
  5229. <rect
  5230. x="527.887"
  5231. y="972.974"
  5232. fill="#5A5784"
  5233. width="79.142"
  5234. height="22.611"
  5235. ></rect>
  5236. <text
  5237. transform="matrix(1 0 0 1 542.9841 988.7817)"
  5238. fill="#FFFFFF"
  5239. font-family="'MicrosoftYaHei'"
  5240. font-size="13.6485"
  5241. >
  5242. 1电抗器
  5243. </text>
  5244. </g>
  5245. </g>
  5246. <g>
  5247. <rect
  5248. x="1496.516"
  5249. y="628.574"
  5250. fill="#C6A037"
  5251. width="2.463"
  5252. height="144.492"
  5253. ></rect>
  5254. <rect
  5255. x="1496.516"
  5256. y="590.564"
  5257. fill="#C6A037"
  5258. width="2.463"
  5259. height="8.059"
  5260. ></rect>
  5261. </g>
  5262. <g>
  5263. <rect
  5264. x="118.466"
  5265. y="590.564"
  5266. fill="#C6A037"
  5267. width="2.471"
  5268. height="8.059"
  5269. ></rect>
  5270. <rect
  5271. x="118.466"
  5272. y="628.574"
  5273. fill="#C6A037"
  5274. width="2.471"
  5275. height="46.502"
  5276. ></rect>
  5277. </g>
  5278. <g>
  5279. <rect
  5280. x="664.516"
  5281. y="590.564"
  5282. fill="#C6A037"
  5283. width="2.463"
  5284. height="8.059"
  5285. ></rect>
  5286. <rect
  5287. x="664.516"
  5288. y="628.574"
  5289. fill="#C6A037"
  5290. width="2.463"
  5291. height="144.492"
  5292. ></rect>
  5293. </g>
  5294. <g>
  5295. <rect
  5296. x="1338.51"
  5297. y="454.193"
  5298. fill="#C6A037"
  5299. width="3.219"
  5300. height="49.263"
  5301. ></rect>
  5302. <rect
  5303. x="1338.51"
  5304. y="569.81"
  5305. fill="#C6A037"
  5306. width="3.219"
  5307. height="20.623"
  5308. ></rect>
  5309. </g>
  5310. <g>
  5311. <rect
  5312. x="664.138"
  5313. y="569.81"
  5314. fill="#C6A037"
  5315. width="3.219"
  5316. height="20.623"
  5317. ></rect>
  5318. <rect
  5319. x="664.138"
  5320. y="454.193"
  5321. fill="#C6A037"
  5322. width="3.219"
  5323. height="49.915"
  5324. ></rect>
  5325. </g>
  5326. </g>
  5327. <g id="arrow">
  5328. <rect
  5329. x="753.612"
  5330. y="143.791"
  5331. :fill="ajaxData.mhsdlq111 ? red : green"
  5332. width="16.923"
  5333. height="32.062"
  5334. ></rect>
  5335. <rect
  5336. x="658.361"
  5337. y="305.407"
  5338. :fill="ajaxData.mhsdlq101 ? red : green"
  5339. width="16.923"
  5340. height="32.062"
  5341. ></rect>
  5342. <rect
  5343. x="1331.051"
  5344. y="305.407"
  5345. :fill="ajaxData.mhsdlq102 ? red : green"
  5346. width="16.922"
  5347. height="32.062"
  5348. ></rect>
  5349. <rect
  5350. x="658.361"
  5351. y="524.947"
  5352. :fill="ajaxData.mhsdlq301 ? red : green"
  5353. width="16.923"
  5354. height="28.062"
  5355. ></rect>
  5356. <rect
  5357. x="1331.03"
  5358. y="524.947"
  5359. :fill="ajaxData.mhsdlq302 ? red : green"
  5360. width="16.924"
  5361. height="28.062"
  5362. ></rect>
  5363. <rect
  5364. x="1107.847"
  5365. y="621.738"
  5366. :fill="ajaxData.mhsdlq323 ? red : green"
  5367. width="16.922"
  5368. height="26.076"
  5369. ></rect>
  5370. <rect
  5371. x="258.824"
  5372. y="622.738"
  5373. :fill="ajaxData.mhsdlq317 ? red : green"
  5374. width="16.923"
  5375. height="26.076"
  5376. ></rect>
  5377. <rect
  5378. x="358.703"
  5379. y="622.738"
  5380. :fill="ajaxData.mhsdlq316 ? red : green"
  5381. width="16.923"
  5382. height="26.076"
  5383. ></rect>
  5384. <rect
  5385. x="464.385"
  5386. y="622.738"
  5387. :fill="ajaxData.mhsdlq315 ? red : green"
  5388. width="16.922"
  5389. height="26.076"
  5390. ></rect>
  5391. <rect
  5392. x="556.854"
  5393. y="622.738"
  5394. :fill="ajaxData.mhsdlq314 ? red : green"
  5395. width="16.922"
  5396. height="26.076"
  5397. ></rect>
  5398. <rect
  5399. x="760.74"
  5400. y="622.738"
  5401. :fill="ajaxData.mhsdlq313 ? red : green"
  5402. width="16.922"
  5403. height="26.076"
  5404. ></rect>
  5405. <rect
  5406. x="861.407"
  5407. y="622.738"
  5408. :fill="ajaxData.mhsdlq312 ? red : green"
  5409. width="16.922"
  5410. height="26.076"
  5411. ></rect>
  5412. <rect
  5413. x="963.512"
  5414. y="622.738"
  5415. :fill="ajaxData.mhsdlq311 ? red : green"
  5416. width="16.922"
  5417. height="26.076"
  5418. ></rect>
  5419. <rect
  5420. x="1203.552"
  5421. y="622.738"
  5422. :fill="ajaxData.mhsdlq322 ? red : green"
  5423. width="16.922"
  5424. height="26.076"
  5425. ></rect>
  5426. <rect
  5427. x="1379.76"
  5428. y="622.738"
  5429. :fill="ajaxData.mhsdlq321 ? red : green"
  5430. width="16.922"
  5431. height="26.076"
  5432. ></rect>
  5433. </g>
  5434. <g id="kgGray">
  5435. <g id="mhskg">
  5436. <g id="_x31_21-0off_41_" v-if="false">
  5437. <line
  5438. fill="none"
  5439. stroke="#9A2B2D"
  5440. stroke-width="2.5"
  5441. stroke-miterlimit="10"
  5442. x1="446.072"
  5443. y1="841.24"
  5444. x2="459.569"
  5445. y2="841.24"
  5446. ></line>
  5447. <path
  5448. fill="#9A2B2D"
  5449. d="M450.727,863.052c0-1.441,1.171-2.609,2.604-2.609c1.438,0,2.607,1.172,2.607,2.609 c0,1.436-1.171,2.604-2.607,2.604C451.898,865.658,450.727,864.488,450.727,863.052 M448.677,863.052 c0,2.578,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.578-2.091-4.666-4.656-4.666 C450.76,858.386,448.677,860.472,448.677,863.052L448.677,863.052z"
  5450. ></path>
  5451. <line
  5452. fill="none"
  5453. stroke="#9A2B2D"
  5454. stroke-width="2"
  5455. stroke-miterlimit="10"
  5456. x1="453.344"
  5457. y1="841.468"
  5458. x2="453.344"
  5459. y2="859.388"
  5460. ></line>
  5461. </g>
  5462. <g id="_x31_21-0on_41_">
  5463. <line
  5464. fill="none"
  5465. stroke="#A9A9A9"
  5466. stroke-width="2.5"
  5467. stroke-miterlimit="10"
  5468. x1="446.072"
  5469. y1="841.24"
  5470. x2="459.569"
  5471. y2="841.24"
  5472. ></line>
  5473. <path
  5474. fill="#A9A9A9"
  5475. d="M450.727,863.052c0-1.441,1.171-2.611,2.604-2.611c1.438,0,2.607,1.17,2.607,2.611 c0,1.436-1.171,2.604-2.607,2.604C451.898,865.658,450.727,864.488,450.727,863.052 M448.677,863.052 c0,2.576,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.58-2.091-4.67-4.656-4.67 C450.76,858.384,448.677,860.472,448.677,863.052L448.677,863.052z"
  5476. ></path>
  5477. <line
  5478. fill="none"
  5479. stroke="#A9A9A9"
  5480. stroke-width="2"
  5481. stroke-miterlimit="10"
  5482. x1="459.885"
  5483. y1="844.427"
  5484. x2="452.821"
  5485. y2="859.388"
  5486. ></line>
  5487. </g>
  5488. </g>
  5489. <g id="mhskg">
  5490. <g id="_x31_21-0off_40_" v-if="false">
  5491. <line
  5492. fill="none"
  5493. stroke="#9A2B2D"
  5494. stroke-width="2.5"
  5495. stroke-miterlimit="10"
  5496. x1="502.066"
  5497. y1="765.468"
  5498. x2="488.569"
  5499. y2="765.468"
  5500. ></line>
  5501. <path
  5502. fill="#9A2B2D"
  5503. d="M497.411,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 s1.173-2.609,2.607-2.609C496.24,784.662,497.411,785.832,497.411,787.271 M499.471,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.574,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C497.385,791.937,499.471,789.849,499.471,787.271L499.471,787.271z"
  5504. ></path>
  5505. <line
  5506. fill="none"
  5507. stroke="#9A2B2D"
  5508. stroke-width="2"
  5509. stroke-miterlimit="10"
  5510. x1="494.803"
  5511. y1="765.687"
  5512. x2="494.803"
  5513. y2="783.607"
  5514. ></line>
  5515. </g>
  5516. <g id="_x31_21-0on_40_">
  5517. <line
  5518. fill="none"
  5519. stroke="#A9A9A9"
  5520. stroke-width="2.5"
  5521. stroke-miterlimit="10"
  5522. x1="502.066"
  5523. y1="765.468"
  5524. x2="488.569"
  5525. y2="765.468"
  5526. ></line>
  5527. <path
  5528. fill="#A9A9A9"
  5529. d="M497.411,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 c0-1.439,1.173-2.611,2.607-2.611C496.24,784.66,497.411,785.832,497.411,787.271 M499.471,787.271 c0-2.58-2.091-4.668-4.666-4.668c-2.574,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666 C497.385,791.937,499.471,789.847,499.471,787.271L499.471,787.271z"
  5530. ></path>
  5531. <line
  5532. fill="none"
  5533. stroke="#A9A9A9"
  5534. stroke-width="2"
  5535. stroke-miterlimit="10"
  5536. x1="488.26"
  5537. y1="768.648"
  5538. x2="495.317"
  5539. y2="783.607"
  5540. ></line>
  5541. </g>
  5542. </g>
  5543. <g id="mhskg">
  5544. <g id="_x31_21-0off_44_" v-if="false">
  5545. <line
  5546. fill="none"
  5547. stroke="#9A2B2D"
  5548. stroke-width="2.5"
  5549. stroke-miterlimit="10"
  5550. x1="594.552"
  5551. y1="765.468"
  5552. x2="581.052"
  5553. y2="765.468"
  5554. ></line>
  5555. <path
  5556. fill="#9A2B2D"
  5557. d="M589.889,787.271c0,1.438-1.172,2.605-2.606,2.605c-1.437,0-2.604-1.178-2.604-2.605 s1.173-2.609,2.604-2.609C588.719,784.662,589.889,785.832,589.889,787.271 M591.947,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.573,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C589.858,791.937,591.947,789.849,591.947,787.271L591.947,787.271z"
  5558. ></path>
  5559. <line
  5560. fill="none"
  5561. stroke="#9A2B2D"
  5562. stroke-width="2"
  5563. stroke-miterlimit="10"
  5564. x1="587.279"
  5565. y1="765.687"
  5566. x2="587.279"
  5567. y2="783.607"
  5568. ></line>
  5569. </g>
  5570. <g id="_x31_21-0on_44_">
  5571. <line
  5572. fill="none"
  5573. stroke="#A9A9A9"
  5574. stroke-width="2.5"
  5575. stroke-miterlimit="10"
  5576. x1="594.552"
  5577. y1="765.468"
  5578. x2="581.052"
  5579. y2="765.468"
  5580. ></line>
  5581. <path
  5582. fill="#A9A9A9"
  5583. d="M589.889,787.271c0,1.438-1.172,2.605-2.606,2.605c-1.437,0-2.604-1.178-2.604-2.605 c0-1.439,1.173-2.611,2.604-2.611C588.719,784.66,589.889,785.832,589.889,787.271 M591.947,787.271 c0-2.58-2.091-4.668-4.666-4.668c-2.573,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666 C589.858,791.937,591.947,789.847,591.947,787.271L591.947,787.271z"
  5584. ></path>
  5585. <line
  5586. fill="none"
  5587. stroke="#A9A9A9"
  5588. stroke-width="2"
  5589. stroke-miterlimit="10"
  5590. x1="580.734"
  5591. y1="768.648"
  5592. x2="587.802"
  5593. y2="783.607"
  5594. ></line>
  5595. </g>
  5596. </g>
  5597. <g id="mhskg">
  5598. <g id="_x31_21-0off_43_" v-if="false">
  5599. <line
  5600. fill="none"
  5601. stroke="#9A2B2D"
  5602. stroke-width="2.5"
  5603. stroke-miterlimit="10"
  5604. x1="557.179"
  5605. y1="700.634"
  5606. x2="570.677"
  5607. y2="700.634"
  5608. ></line>
  5609. <path
  5610. fill="#9A2B2D"
  5611. d="M561.835,722.447c0-1.438,1.178-2.604,2.604-2.604c1.436,0,2.607,1.172,2.607,2.604 c0,1.438-1.181,2.605-2.607,2.605S561.835,723.884,561.835,722.447 M559.774,722.447c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C561.865,717.781,559.774,719.867,559.774,722.447 L559.774,722.447z"
  5612. ></path>
  5613. <line
  5614. fill="none"
  5615. stroke="#9A2B2D"
  5616. stroke-width="2"
  5617. stroke-miterlimit="10"
  5618. x1="564.442"
  5619. y1="700.861"
  5620. x2="564.442"
  5621. y2="718.783"
  5622. ></line>
  5623. </g>
  5624. <g id="_x31_21-0on_43_">
  5625. <line
  5626. fill="none"
  5627. stroke="#A9A9A9"
  5628. stroke-width="2.5"
  5629. stroke-miterlimit="10"
  5630. x1="557.179"
  5631. y1="700.634"
  5632. x2="570.677"
  5633. y2="700.634"
  5634. ></line>
  5635. <path
  5636. fill="#A9A9A9"
  5637. d="M561.835,722.447c0-1.438,1.178-2.604,2.604-2.604c1.436,0,2.607,1.17,2.607,2.604 c0,1.438-1.181,2.605-2.607,2.605S561.835,723.884,561.835,722.447 M559.774,722.447c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C561.865,717.777,559.774,719.867,559.774,722.447L559.774,722.447 z"
  5638. ></path>
  5639. <line
  5640. fill="none"
  5641. stroke="#A9A9A9"
  5642. stroke-width="2"
  5643. stroke-miterlimit="10"
  5644. x1="570.987"
  5645. y1="703.822"
  5646. x2="563.928"
  5647. y2="718.783"
  5648. ></line>
  5649. </g>
  5650. </g>
  5651. <g id="mhskg">
  5652. <g id="_x31_11-0off" v-if="false">
  5653. <line
  5654. fill="none"
  5655. stroke="#9A2B2D"
  5656. stroke-width="2.5"
  5657. stroke-miterlimit="10"
  5658. x1="787.28"
  5659. y1="93.482"
  5660. x2="787.28"
  5661. y2="79.986"
  5662. ></line>
  5663. <path
  5664. fill="#9A2B2D"
  5665. d="M809.094,88.828c-1.44,0-2.609-1.171-2.609-2.604c0-1.438,1.172-2.607,2.609-2.607 c1.437,0,2.604,1.171,2.604,2.607C811.697,87.656,810.528,88.828,809.094,88.828 M809.094,90.887 c2.578,0,4.666-2.097,4.666-4.666c0-2.577-2.091-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C804.427,88.796,806.512,90.887,809.094,90.887L809.094,90.887z"
  5666. ></path>
  5667. <line
  5668. fill="none"
  5669. stroke="#9A2B2D"
  5670. stroke-width="2"
  5671. stroke-miterlimit="10"
  5672. x1="787.51"
  5673. y1="86.219"
  5674. x2="805.428"
  5675. y2="86.219"
  5676. ></line>
  5677. </g>
  5678. <g id="_x31_11-0on">
  5679. <line
  5680. fill="none"
  5681. stroke="#A9A9A9"
  5682. stroke-width="2.5"
  5683. stroke-miterlimit="10"
  5684. x1="787.28"
  5685. y1="93.482"
  5686. x2="787.28"
  5687. y2="79.986"
  5688. ></line>
  5689. <path
  5690. fill="#A9A9A9"
  5691. d="M809.094,88.828c-1.44,0-2.611-1.171-2.611-2.604c0-1.438,1.171-2.607,2.611-2.607 c1.437,0,2.604,1.171,2.604,2.607C811.697,87.656,810.528,88.828,809.094,88.828 M809.094,90.887 c2.575,0,4.666-2.097,4.666-4.666c0-2.577-2.091-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C804.427,88.796,806.512,90.887,809.094,90.887L809.094,90.887z"
  5692. ></path>
  5693. <line
  5694. fill="none"
  5695. stroke="#A9A9A9"
  5696. stroke-width="2"
  5697. stroke-miterlimit="10"
  5698. x1="790.469"
  5699. y1="79.674"
  5700. x2="805.428"
  5701. y2="86.734"
  5702. ></line>
  5703. </g>
  5704. </g>
  5705. <g id="mhskg">
  5706. <g id="_x31_11-3off" v-if="false">
  5707. <line
  5708. fill="none"
  5709. stroke="#9A2B2D"
  5710. stroke-width="2.5"
  5711. stroke-miterlimit="10"
  5712. x1="755.351"
  5713. y1="101.37"
  5714. x2="768.848"
  5715. y2="101.37"
  5716. ></line>
  5717. <path
  5718. fill="#9A2B2D"
  5719. d="M760.01,123.182c0-1.44,1.171-2.609,2.604-2.609c1.438,0,2.607,1.172,2.607,2.609 s-1.171,2.604-2.607,2.604C761.177,125.787,760.01,124.618,760.01,123.182 M757.946,123.182c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C760.036,118.516,757.946,120.602,757.946,123.182 L757.946,123.182z"
  5720. ></path>
  5721. <line
  5722. fill="none"
  5723. stroke="#9A2B2D"
  5724. stroke-width="2"
  5725. stroke-miterlimit="10"
  5726. x1="762.614"
  5727. y1="101.597"
  5728. x2="762.614"
  5729. y2="119.518"
  5730. ></line>
  5731. </g>
  5732. <g id="_x31_11-3on">
  5733. <line
  5734. fill="none"
  5735. stroke="#A9A9A9"
  5736. stroke-width="2.5"
  5737. stroke-miterlimit="10"
  5738. x1="755.351"
  5739. y1="101.37"
  5740. x2="768.848"
  5741. y2="101.37"
  5742. ></line>
  5743. <path
  5744. fill="#A9A9A9"
  5745. d="M760.01,123.182c0-1.44,1.171-2.611,2.604-2.611c1.438,0,2.607,1.171,2.607,2.611 c0,1.437-1.171,2.604-2.607,2.604C761.177,125.787,760.01,124.618,760.01,123.182 M757.946,123.182 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C760.036,118.513,757.946,120.602,757.946,123.182L757.946,123.182z"
  5746. ></path>
  5747. <line
  5748. fill="none"
  5749. stroke="#A9A9A9"
  5750. stroke-width="2"
  5751. stroke-miterlimit="10"
  5752. x1="769.158"
  5753. y1="104.558"
  5754. x2="762.1"
  5755. y2="119.518"
  5756. ></line>
  5757. </g>
  5758. </g>
  5759. <g id="mhskg">
  5760. <g id="_x31_11-1off" v-if="false">
  5761. <line
  5762. fill="none"
  5763. stroke="#9A2B2D"
  5764. stroke-width="2.5"
  5765. stroke-miterlimit="10"
  5766. x1="755.351"
  5767. y1="197.364"
  5768. x2="768.848"
  5769. y2="197.364"
  5770. ></line>
  5771. <path
  5772. fill="#9A2B2D"
  5773. d="M760.01,219.176c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C761.178,221.781,760.01,220.612,760.01,219.176 M757.946,219.176 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.568-2.091-4.657-4.665-4.657 C760.036,214.51,757.946,216.596,757.946,219.176L757.946,219.176z"
  5774. ></path>
  5775. <line
  5776. fill="none"
  5777. stroke="#9A2B2D"
  5778. stroke-width="2"
  5779. stroke-miterlimit="10"
  5780. x1="762.614"
  5781. y1="197.591"
  5782. x2="762.614"
  5783. y2="215.512"
  5784. ></line>
  5785. </g>
  5786. <g id="_x31_11-1on">
  5787. <line
  5788. fill="none"
  5789. stroke="#A9A9A9"
  5790. stroke-width="2.5"
  5791. stroke-miterlimit="10"
  5792. x1="755.351"
  5793. y1="197.364"
  5794. x2="768.848"
  5795. y2="197.364"
  5796. ></line>
  5797. <path
  5798. fill="#A9A9A9"
  5799. d="M760.01,219.176c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.171,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C761.178,221.781,760.01,220.612,760.01,219.176 M757.946,219.176 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.571-2.091-4.669-4.665-4.669 C760.036,214.507,757.946,216.596,757.946,219.176L757.946,219.176z"
  5800. ></path>
  5801. <line
  5802. fill="none"
  5803. stroke="#A9A9A9"
  5804. stroke-width="2"
  5805. stroke-miterlimit="10"
  5806. x1="769.158"
  5807. y1="200.552"
  5808. x2="762.1"
  5809. y2="215.512"
  5810. ></line>
  5811. </g>
  5812. </g>
  5813. <g id="mhskg">
  5814. <g id="_x31_11-03off" v-if="false">
  5815. <line
  5816. fill="none"
  5817. stroke="#9A2B2D"
  5818. stroke-width="2.5"
  5819. stroke-miterlimit="10"
  5820. x1="736.534"
  5821. y1="144.292"
  5822. x2="736.534"
  5823. y2="130.796"
  5824. ></line>
  5825. <path
  5826. fill="#9A2B2D"
  5827. d="M714.724,139.638c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.608,1.182,2.608,2.607C717.335,138.467,716.163,139.638,714.724,139.638 M714.724,141.697 c2.58,0,4.666-2.09,4.666-4.666c0-2.575-2.089-4.665-4.666-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,139.608,712.146,141.697,714.724,141.697L714.724,141.697z"
  5828. ></path>
  5829. <line
  5830. fill="none"
  5831. stroke="#9A2B2D"
  5832. stroke-width="2"
  5833. stroke-miterlimit="10"
  5834. x1="736.309"
  5835. y1="137.029"
  5836. x2="718.388"
  5837. y2="137.029"
  5838. ></line>
  5839. </g>
  5840. <g id="_x31_11-03on">
  5841. <line
  5842. fill="none"
  5843. stroke="#A9A9A9"
  5844. stroke-width="2.5"
  5845. stroke-miterlimit="10"
  5846. x1="736.534"
  5847. y1="144.292"
  5848. x2="736.534"
  5849. y2="130.796"
  5850. ></line>
  5851. <path
  5852. fill="#A9A9A9"
  5853. d="M714.724,139.638c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.611,1.182,2.611,2.607C717.344,138.467,716.163,139.638,714.724,139.638 M714.724,141.697 c2.58,0,4.669-2.09,4.669-4.666c0-2.575-2.089-4.665-4.669-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,139.608,712.147,141.697,714.724,141.697L714.724,141.697z"
  5854. ></path>
  5855. <line
  5856. fill="none"
  5857. stroke="#A9A9A9"
  5858. stroke-width="2"
  5859. stroke-miterlimit="10"
  5860. x1="733.348"
  5861. y1="130.484"
  5862. x2="718.388"
  5863. y2="137.544"
  5864. ></line>
  5865. </g>
  5866. </g>
  5867. <g id="mhskg">
  5868. <g id="_x31_11-01off" v-if="false">
  5869. <line
  5870. fill="none"
  5871. stroke="#9A2B2D"
  5872. stroke-width="2.5"
  5873. stroke-miterlimit="10"
  5874. x1="736.534"
  5875. y1="192.959"
  5876. x2="736.534"
  5877. y2="179.463"
  5878. ></line>
  5879. <path
  5880. fill="#9A2B2D"
  5881. d="M714.724,188.305c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.608,1.182,2.608,2.607C717.335,187.134,716.163,188.305,714.724,188.305 M714.724,190.364 c2.58,0,4.666-2.09,4.666-4.666c0-2.575-2.089-4.665-4.666-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,188.275,712.146,190.364,714.724,190.364L714.724,190.364z"
  5882. ></path>
  5883. <line
  5884. fill="none"
  5885. stroke="#9A2B2D"
  5886. stroke-width="2"
  5887. stroke-miterlimit="10"
  5888. x1="736.309"
  5889. y1="185.696"
  5890. x2="718.388"
  5891. y2="185.696"
  5892. ></line>
  5893. </g>
  5894. <g id="_x31_11-01on">
  5895. <line
  5896. fill="none"
  5897. stroke="#A9A9A9"
  5898. stroke-width="2.5"
  5899. stroke-miterlimit="10"
  5900. x1="736.534"
  5901. y1="192.959"
  5902. x2="736.534"
  5903. y2="179.463"
  5904. ></line>
  5905. <path
  5906. fill="#A9A9A9"
  5907. d="M714.724,188.305c-1.438,0-2.605-1.181-2.605-2.606c0-1.438,1.169-2.607,2.605-2.607 c1.438,0,2.611,1.182,2.611,2.607C717.344,187.134,716.163,188.305,714.724,188.305 M714.724,190.364 c2.58,0,4.669-2.09,4.669-4.666c0-2.575-2.089-4.665-4.669-4.665c-2.576,0-4.666,2.088-4.666,4.665 C710.058,188.275,712.147,190.364,714.724,190.364L714.724,190.364z"
  5908. ></path>
  5909. <line
  5910. fill="none"
  5911. stroke="#A9A9A9"
  5912. stroke-width="2"
  5913. stroke-miterlimit="10"
  5914. x1="733.348"
  5915. y1="179.151"
  5916. x2="718.388"
  5917. y2="186.211"
  5918. ></line>
  5919. </g>
  5920. </g>
  5921. <g id="mhskg">
  5922. <g id="_x31_21-0off_29_" v-if="false">
  5923. <line
  5924. fill="none"
  5925. stroke="#9A2B2D"
  5926. stroke-width="2.5"
  5927. stroke-miterlimit="10"
  5928. x1="1241.237"
  5929. y1="765.468"
  5930. x2="1227.74"
  5931. y2="765.468"
  5932. ></line>
  5933. <path
  5934. fill="#9A2B2D"
  5935. d="M1236.585,787.271c0,1.438-1.175,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 s1.181-2.609,2.607-2.609S1236.585,785.832,1236.585,787.271 M1238.642,787.271c0-2.58-2.091-4.666-4.666-4.666 c-2.574,0-4.665,2.09-4.665,4.666s2.089,4.666,4.665,4.666C1236.553,791.937,1238.642,789.849,1238.642,787.271L1238.642,787.271 z"
  5936. ></path>
  5937. <line
  5938. fill="none"
  5939. stroke="#9A2B2D"
  5940. stroke-width="2"
  5941. stroke-miterlimit="10"
  5942. x1="1233.974"
  5943. y1="765.687"
  5944. x2="1233.974"
  5945. y2="783.607"
  5946. ></line>
  5947. </g>
  5948. <g id="_x31_21-0on_29_">
  5949. <line
  5950. fill="none"
  5951. stroke="#A9A9A9"
  5952. stroke-width="2.5"
  5953. stroke-miterlimit="10"
  5954. x1="1241.237"
  5955. y1="765.468"
  5956. x2="1227.74"
  5957. y2="765.468"
  5958. ></line>
  5959. <path
  5960. fill="#A9A9A9"
  5961. d="M1236.585,787.271c0,1.438-1.175,2.605-2.604,2.605c-1.438,0-2.607-1.178-2.607-2.605 c0-1.439,1.181-2.611,2.607-2.611S1236.585,785.832,1236.585,787.271 M1238.642,787.271c0-2.58-2.091-4.668-4.666-4.668 c-2.574,0-4.665,2.088-4.665,4.668c0,2.576,2.089,4.666,4.665,4.666C1236.553,791.937,1238.642,789.847,1238.642,787.271 L1238.642,787.271z"
  5962. ></path>
  5963. <line
  5964. fill="none"
  5965. stroke="#A9A9A9"
  5966. stroke-width="2"
  5967. stroke-miterlimit="10"
  5968. x1="1227.429"
  5969. y1="768.648"
  5970. x2="1234.488"
  5971. y2="783.607"
  5972. ></line>
  5973. </g>
  5974. </g>
  5975. <g id="mhskg">
  5976. <g id="_x31_21-0off_27_" v-if="false">
  5977. <line
  5978. fill="none"
  5979. stroke="#9A2B2D"
  5980. stroke-width="2.5"
  5981. stroke-miterlimit="10"
  5982. x1="1203.872"
  5983. y1="700.634"
  5984. x2="1217.369"
  5985. y2="700.634"
  5986. ></line>
  5987. <path
  5988. fill="#9A2B2D"
  5989. d="M1208.527,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1209.698,725.052,1208.527,723.884,1208.527,722.447 M1206.469,722.447 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C1208.56,717.781,1206.469,719.867,1206.469,722.447L1206.469,722.447z"
  5990. ></path>
  5991. <line
  5992. fill="none"
  5993. stroke="#9A2B2D"
  5994. stroke-width="2"
  5995. stroke-miterlimit="10"
  5996. x1="1211.137"
  5997. y1="700.861"
  5998. x2="1211.137"
  5999. y2="718.783"
  6000. ></line>
  6001. </g>
  6002. <g id="_x31_21-0on_27_">
  6003. <line
  6004. fill="none"
  6005. stroke="#A9A9A9"
  6006. stroke-width="2.5"
  6007. stroke-miterlimit="10"
  6008. x1="1203.872"
  6009. y1="700.634"
  6010. x2="1217.369"
  6011. y2="700.634"
  6012. ></line>
  6013. <path
  6014. fill="#A9A9A9"
  6015. d="M1208.527,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1209.698,725.052,1208.527,723.884,1208.527,722.447 M1206.469,722.447 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C1208.56,717.777,1206.469,719.867,1206.469,722.447L1206.469,722.447z"
  6016. ></path>
  6017. <line
  6018. fill="none"
  6019. stroke="#A9A9A9"
  6020. stroke-width="2"
  6021. stroke-miterlimit="10"
  6022. x1="1217.682"
  6023. y1="703.822"
  6024. x2="1210.621"
  6025. y2="718.783"
  6026. ></line>
  6027. </g>
  6028. </g>
  6029. <g id="mhskg">
  6030. <g id="_x31_21-0off_38_" v-if="false">
  6031. <line
  6032. fill="none"
  6033. stroke="#9A2B2D"
  6034. stroke-width="2.5"
  6035. stroke-miterlimit="10"
  6036. x1="340.398"
  6037. y1="841.24"
  6038. x2="353.896"
  6039. y2="841.24"
  6040. ></line>
  6041. <path
  6042. fill="#9A2B2D"
  6043. d="M345.053,863.052c0-1.441,1.171-2.609,2.604-2.609c1.438,0,2.606,1.172,2.606,2.609 c0,1.436-1.177,2.604-2.606,2.604C346.225,865.658,345.053,864.488,345.053,863.052 M342.994,863.052 c0,2.578,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C345.086,858.386,342.994,860.472,342.994,863.052L342.994,863.052z"
  6044. ></path>
  6045. <line
  6046. fill="none"
  6047. stroke="#9A2B2D"
  6048. stroke-width="2"
  6049. stroke-miterlimit="10"
  6050. x1="347.662"
  6051. y1="841.468"
  6052. x2="347.662"
  6053. y2="859.388"
  6054. ></line>
  6055. </g>
  6056. <g id="_x31_21-0on_38_">
  6057. <line
  6058. fill="none"
  6059. stroke="#A9A9A9"
  6060. stroke-width="2.5"
  6061. stroke-miterlimit="10"
  6062. x1="340.398"
  6063. y1="841.24"
  6064. x2="353.896"
  6065. y2="841.24"
  6066. ></line>
  6067. <path
  6068. fill="#A9A9A9"
  6069. d="M345.053,863.052c0-1.441,1.171-2.611,2.604-2.611c1.438,0,2.606,1.17,2.606,2.611 c0,1.436-1.177,2.604-2.606,2.604C346.225,865.658,345.053,864.488,345.053,863.052 M342.994,863.052 c0,2.576,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C345.086,858.384,342.994,860.472,342.994,863.052L342.994,863.052z"
  6070. ></path>
  6071. <line
  6072. fill="none"
  6073. stroke="#A9A9A9"
  6074. stroke-width="2"
  6075. stroke-miterlimit="10"
  6076. x1="354.207"
  6077. y1="844.427"
  6078. x2="347.147"
  6079. y2="859.388"
  6080. ></line>
  6081. </g>
  6082. </g>
  6083. <g id="mhskg">
  6084. <g id="_x31_21-0off_24_" v-if="false">
  6085. <line
  6086. fill="none"
  6087. stroke="#9A2B2D"
  6088. stroke-width="2.5"
  6089. stroke-miterlimit="10"
  6090. x1="396.393"
  6091. y1="765.468"
  6092. x2="382.896"
  6093. y2="765.468"
  6094. ></line>
  6095. <path
  6096. fill="#9A2B2D"
  6097. d="M391.738,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.604-1.178-2.604-2.605 s1.174-2.609,2.604-2.609C390.567,784.662,391.738,785.832,391.738,787.271 M393.798,787.271c0-2.58-2.092-4.666-4.666-4.666 c-2.566,0-4.665,2.09-4.665,4.666s2.097,4.666,4.665,4.666C391.708,791.937,393.798,789.849,393.798,787.271L393.798,787.271z"
  6098. ></path>
  6099. <line
  6100. fill="none"
  6101. stroke="#9A2B2D"
  6102. stroke-width="2"
  6103. stroke-miterlimit="10"
  6104. x1="389.13"
  6105. y1="765.687"
  6106. x2="389.13"
  6107. y2="783.607"
  6108. ></line>
  6109. </g>
  6110. <g id="_x31_21-0on_24_">
  6111. <line
  6112. fill="none"
  6113. stroke="#A9A9A9"
  6114. stroke-width="2.5"
  6115. stroke-miterlimit="10"
  6116. x1="396.393"
  6117. y1="765.468"
  6118. x2="382.896"
  6119. y2="765.468"
  6120. ></line>
  6121. <path
  6122. fill="#A9A9A9"
  6123. d="M391.738,787.271c0,1.438-1.172,2.605-2.604,2.605c-1.438,0-2.604-1.178-2.604-2.605 c0-1.439,1.174-2.611,2.604-2.611C390.567,784.66,391.738,785.832,391.738,787.271 M393.798,787.271 c0-2.58-2.092-4.668-4.666-4.668c-2.566,0-4.665,2.088-4.665,4.668c0,2.576,2.097,4.666,4.665,4.666 C391.708,791.937,393.798,789.847,393.798,787.271L393.798,787.271z"
  6124. ></path>
  6125. <line
  6126. fill="none"
  6127. stroke="#A9A9A9"
  6128. stroke-width="2"
  6129. stroke-miterlimit="10"
  6130. x1="382.585"
  6131. y1="768.648"
  6132. x2="389.644"
  6133. y2="783.607"
  6134. ></line>
  6135. </g>
  6136. </g>
  6137. <g id="mhskg">
  6138. <g id="_x31_21-0off_26_" v-if="false">
  6139. <line
  6140. fill="none"
  6141. stroke="#9A2B2D"
  6142. stroke-width="2.5"
  6143. stroke-miterlimit="10"
  6144. x1="1087.26"
  6145. y1="690.847"
  6146. x2="1100.76"
  6147. y2="690.847"
  6148. ></line>
  6149. <path
  6150. fill="#9A2B2D"
  6151. d="M1091.912,712.66c0-1.438,1.173-2.604,2.606-2.604s2.604,1.172,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C1093.094,715.265,1091.912,714.095,1091.912,712.66 M1089.854,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C1091.945,707.994,1089.854,710.08,1089.854,712.66L1089.854,712.66z"
  6152. ></path>
  6153. <line
  6154. fill="none"
  6155. stroke="#9A2B2D"
  6156. stroke-width="2"
  6157. stroke-miterlimit="10"
  6158. x1="1094.522"
  6159. y1="691.074"
  6160. x2="1094.522"
  6161. y2="708.996"
  6162. ></line>
  6163. </g>
  6164. <g id="_x31_21-0on_26_">
  6165. <line
  6166. fill="none"
  6167. stroke="#A9A9A9"
  6168. stroke-width="2.5"
  6169. stroke-miterlimit="10"
  6170. x1="1087.26"
  6171. y1="690.847"
  6172. x2="1100.76"
  6173. y2="690.847"
  6174. ></line>
  6175. <path
  6176. fill="#A9A9A9"
  6177. d="M1091.912,712.66c0-1.438,1.173-2.604,2.606-2.604s2.604,1.17,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C1093.094,715.265,1091.912,714.095,1091.912,712.66 M1089.854,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C1091.945,707.99,1089.854,710.08,1089.854,712.66L1089.854,712.66z"
  6178. ></path>
  6179. <line
  6180. fill="none"
  6181. stroke="#A9A9A9"
  6182. stroke-width="2"
  6183. stroke-miterlimit="10"
  6184. x1="1101.067"
  6185. y1="694.035"
  6186. x2="1094.01"
  6187. y2="708.996"
  6188. ></line>
  6189. </g>
  6190. </g>
  6191. <g id="mhskg">
  6192. <g id="_x31_21-0off_31_" v-if="false">
  6193. <line
  6194. fill="none"
  6195. stroke="#9A2B2D"
  6196. stroke-width="2.5"
  6197. stroke-miterlimit="10"
  6198. x1="359.028"
  6199. y1="700.634"
  6200. x2="372.525"
  6201. y2="700.634"
  6202. ></line>
  6203. <path
  6204. fill="#9A2B2D"
  6205. d="M363.683,722.447c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.172,2.606,2.604 c0,1.438-1.171,2.605-2.606,2.605C364.854,725.052,363.683,723.884,363.683,722.447 M361.624,722.447 c0,2.578,2.09,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C363.716,717.781,361.624,719.867,361.624,722.447L361.624,722.447z"
  6206. ></path>
  6207. <line
  6208. fill="none"
  6209. stroke="#9A2B2D"
  6210. stroke-width="2"
  6211. stroke-miterlimit="10"
  6212. x1="366.292"
  6213. y1="700.861"
  6214. x2="366.292"
  6215. y2="718.783"
  6216. ></line>
  6217. </g>
  6218. <g id="_x31_21-0on_31_">
  6219. <line
  6220. fill="none"
  6221. stroke="#A9A9A9"
  6222. stroke-width="2.5"
  6223. stroke-miterlimit="10"
  6224. x1="359.028"
  6225. y1="700.634"
  6226. x2="372.525"
  6227. y2="700.634"
  6228. ></line>
  6229. <path
  6230. fill="#A9A9A9"
  6231. d="M363.683,722.447c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.17,2.606,2.604 c0,1.438-1.171,2.605-2.606,2.605C364.854,725.052,363.683,723.884,363.683,722.447 M361.624,722.447 c0,2.576,2.09,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C363.716,717.777,361.624,719.867,361.624,722.447L361.624,722.447z"
  6232. ></path>
  6233. <line
  6234. fill="none"
  6235. stroke="#A9A9A9"
  6236. stroke-width="2"
  6237. stroke-miterlimit="10"
  6238. x1="372.838"
  6239. y1="703.822"
  6240. x2="365.777"
  6241. y2="718.783"
  6242. ></line>
  6243. </g>
  6244. </g>
  6245. </g>
  6246. <g id="kg">
  6247. <g id="mhskg3153">
  6248. <g v-if="ajaxData.mhskg3153" id="_x31_21-0off_39_">
  6249. <line
  6250. fill="none"
  6251. stroke="#9A2B2D"
  6252. stroke-width="2.5"
  6253. stroke-miterlimit="10"
  6254. x1="464.701"
  6255. y1="700.634"
  6256. x2="478.198"
  6257. y2="700.634"
  6258. ></line>
  6259. <path
  6260. fill="#9A2B2D"
  6261. d="M469.356,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C470.528,725.052,469.356,723.884,469.356,722.447 M467.302,722.447 c0,2.578,2.089,4.666,4.666,4.666c2.566,0,4.665-2.09,4.665-4.666c0-2.578-2.101-4.666-4.665-4.666 C469.389,717.781,467.302,719.867,467.302,722.447L467.302,722.447z"
  6262. ></path>
  6263. <line
  6264. fill="none"
  6265. stroke="#9A2B2D"
  6266. stroke-width="2"
  6267. stroke-miterlimit="10"
  6268. x1="471.969"
  6269. y1="700.861"
  6270. x2="471.969"
  6271. y2="718.783"
  6272. ></line>
  6273. </g>
  6274. <g v-else-if="ajaxData.mhskg3153 == false" id="31_21-0on_39_">
  6275. <line
  6276. fill="none"
  6277. stroke="#419B48"
  6278. stroke-width="2.5"
  6279. stroke-miterlimit="10"
  6280. x1="464.701"
  6281. y1="700.634"
  6282. x2="478.198"
  6283. y2="700.634"
  6284. ></line>
  6285. <path
  6286. fill="#419B48"
  6287. d="M469.356,722.447c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C470.528,725.052,469.356,723.884,469.356,722.447 M467.302,722.447 c0,2.576,2.089,4.666,4.666,4.666c2.566,0,4.665-2.09,4.665-4.666c0-2.58-2.101-4.67-4.665-4.67 C469.389,717.777,467.302,719.867,467.302,722.447L467.302,722.447z"
  6288. ></path>
  6289. <line
  6290. fill="none"
  6291. stroke="#419B48"
  6292. stroke-width="2"
  6293. stroke-miterlimit="10"
  6294. x1="478.511"
  6295. y1="703.822"
  6296. x2="471.45"
  6297. y2="718.783"
  6298. ></line>
  6299. </g>
  6300. </g>
  6301. <g id="mhskg1010">
  6302. <g v-if="ajaxData.mhskg1010" id="31_01-0off">
  6303. <line
  6304. fill="none"
  6305. stroke="#9A2B2D"
  6306. stroke-width="2.5"
  6307. stroke-miterlimit="10"
  6308. x1="640.765"
  6309. y1="388.177"
  6310. x2="640.765"
  6311. y2="401.677"
  6312. ></line>
  6313. <path
  6314. fill="#9A2B2D"
  6315. d="M618.952,392.829c1.44,0,2.609,1.171,2.609,2.606c0,1.434-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.181-2.604-2.607C616.348,394,617.517,392.829,618.952,392.829 M618.952,390.77 c-2.576,0-4.666,2.089-4.666,4.665c0,2.577,2.1,4.666,4.666,4.666c2.577,0,4.666-2.091,4.666-4.666 C623.618,392.861,621.532,390.77,618.952,390.77L618.952,390.77z"
  6316. ></path>
  6317. <line
  6318. fill="none"
  6319. stroke="#9A2B2D"
  6320. stroke-width="2"
  6321. stroke-miterlimit="10"
  6322. x1="640.537"
  6323. y1="395.437"
  6324. x2="622.616"
  6325. y2="395.437"
  6326. ></line>
  6327. </g>
  6328. <g v-else-if="ajaxData.mhskg1010 == false" id="31_01-0on">
  6329. <line
  6330. fill="none"
  6331. stroke="#419B48"
  6332. stroke-width="2.5"
  6333. stroke-miterlimit="10"
  6334. x1="640.765"
  6335. y1="388.177"
  6336. x2="640.765"
  6337. y2="401.677"
  6338. ></line>
  6339. <path
  6340. fill="#419B48"
  6341. d="M618.952,392.829c1.44,0,2.611,1.171,2.611,2.606c0,1.434-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.181-2.604-2.607C616.348,394,617.517,392.829,618.952,392.829 M618.952,390.77 c-2.566,0-4.666,2.089-4.666,4.665c0,2.577,2.1,4.666,4.666,4.666c2.58,0,4.669-2.091,4.669-4.666 C623.621,392.861,621.532,390.77,618.952,390.77L618.952,390.77z"
  6342. ></path>
  6343. <line
  6344. fill="none"
  6345. stroke="#419B48"
  6346. stroke-width="2"
  6347. stroke-miterlimit="10"
  6348. x1="637.576"
  6349. y1="401.983"
  6350. x2="622.616"
  6351. y2="394.927"
  6352. ></line>
  6353. </g>
  6354. </g>
  6355. <g id="mhskg10101">
  6356. <g v-if="ajaxData.mhskg10101" id="31_01-01off">
  6357. <line
  6358. fill="none"
  6359. stroke="#9A2B2D"
  6360. stroke-width="2.5"
  6361. stroke-miterlimit="10"
  6362. x1="640.765"
  6363. y1="290.779"
  6364. x2="640.765"
  6365. y2="304.276"
  6366. ></line>
  6367. <path
  6368. fill="#9A2B2D"
  6369. d="M618.952,295.434c1.44,0,2.609,1.171,2.609,2.604c0,1.438-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.171-2.604-2.607C616.348,296.605,617.517,295.434,618.952,295.434 M618.952,293.375 c-2.576,0-4.666,2.088-4.666,4.666c0,2.577,2.1,4.665,4.666,4.665c2.577,0,4.666-2.09,4.666-4.665 C623.618,295.465,621.532,293.375,618.952,293.375L618.952,293.375z"
  6370. ></path>
  6371. <line
  6372. fill="none"
  6373. stroke="#9A2B2D"
  6374. stroke-width="2"
  6375. stroke-miterlimit="10"
  6376. x1="640.537"
  6377. y1="298.042"
  6378. x2="622.616"
  6379. y2="298.042"
  6380. ></line>
  6381. </g>
  6382. <g v-else-if="ajaxData.mhskg10101 == false" id="31_01-01on">
  6383. <line
  6384. fill="none"
  6385. stroke="#419B48"
  6386. stroke-width="2.5"
  6387. stroke-miterlimit="10"
  6388. x1="640.765"
  6389. y1="290.779"
  6390. x2="640.765"
  6391. y2="304.276"
  6392. ></line>
  6393. <path
  6394. fill="#419B48"
  6395. d="M618.952,295.434c1.44,0,2.611,1.171,2.611,2.604c0,1.438-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.171-2.604-2.607C616.348,296.605,617.517,295.434,618.952,295.434 M618.952,293.375 c-2.566,0-4.666,2.088-4.666,4.666c0,2.577,2.1,4.665,4.666,4.665c2.58,0,4.669-2.09,4.669-4.665 C623.621,295.465,621.532,293.375,618.952,293.375L618.952,293.375z"
  6396. ></path>
  6397. <line
  6398. fill="none"
  6399. stroke="#419B48"
  6400. stroke-width="2"
  6401. stroke-miterlimit="10"
  6402. x1="637.576"
  6403. y1="304.594"
  6404. x2="622.616"
  6405. y2="297.528"
  6406. ></line>
  6407. </g>
  6408. </g>
  6409. <g id="mhskg0110">
  6410. <g v-if="ajaxData.mhskg0110" id="30_11-0off">
  6411. <line
  6412. fill="none"
  6413. stroke="#9A2B2D"
  6414. stroke-width="2.5"
  6415. stroke-miterlimit="10"
  6416. x1="576.413"
  6417. y1="450.201"
  6418. x2="589.91"
  6419. y2="450.201"
  6420. ></line>
  6421. <path
  6422. fill="#9A2B2D"
  6423. d="M581.068,472.012c0-1.439,1.171-2.608,2.606-2.608c1.435,0,2.604,1.172,2.604,2.608 c0,1.438-1.171,2.604-2.604,2.604C582.24,474.618,581.068,473.449,581.068,472.012 M579.01,472.012 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.093-4.666-4.665-4.666 C581.101,467.346,579.01,469.432,579.01,472.012L579.01,472.012z"
  6424. ></path>
  6425. <line
  6426. fill="none"
  6427. stroke="#9A2B2D"
  6428. stroke-width="2"
  6429. stroke-miterlimit="10"
  6430. x1="583.678"
  6431. y1="450.427"
  6432. x2="583.678"
  6433. y2="468.348"
  6434. ></line>
  6435. </g>
  6436. <g v-else-if="ajaxData.mhskg0110 == false" id="30_11-0on">
  6437. <line
  6438. fill="none"
  6439. stroke="#419B48"
  6440. stroke-width="2.5"
  6441. stroke-miterlimit="10"
  6442. x1="576.413"
  6443. y1="450.201"
  6444. x2="589.91"
  6445. y2="450.201"
  6446. ></line>
  6447. <path
  6448. fill="#419B48"
  6449. d="M581.068,472.012c0-1.439,1.171-2.61,2.606-2.61c1.435,0,2.604,1.171,2.604,2.61 c0,1.438-1.171,2.604-2.604,2.604C582.24,474.618,581.068,473.449,581.068,472.012 M579.01,472.012 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.093-4.669-4.665-4.669 C581.101,467.344,579.01,469.432,579.01,472.012L579.01,472.012z"
  6450. ></path>
  6451. <line
  6452. fill="none"
  6453. stroke="#419B48"
  6454. stroke-width="2"
  6455. stroke-miterlimit="10"
  6456. x1="590.223"
  6457. y1="453.388"
  6458. x2="583.162"
  6459. y2="468.348"
  6460. ></line>
  6461. </g>
  6462. </g>
  6463. <g id="mhskg110">
  6464. <g v-if="ajaxData.mhskg110" id="31_1-0off">
  6465. <line
  6466. fill="none"
  6467. stroke="#9A2B2D"
  6468. stroke-width="2.5"
  6469. stroke-miterlimit="10"
  6470. x1="692.677"
  6471. y1="257.805"
  6472. x2="692.677"
  6473. y2="244.308"
  6474. ></line>
  6475. <path
  6476. fill="#9A2B2D"
  6477. d="M714.488,253.15c-1.438,0-2.604-1.171-2.604-2.606s1.172-2.604,2.604-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,251.979,715.927,253.15,714.488,253.15 M714.488,255.209 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.099-4.666,4.665 C709.822,253.119,711.907,255.209,714.488,255.209L714.488,255.209z"
  6478. ></path>
  6479. <line
  6480. fill="none"
  6481. stroke="#9A2B2D"
  6482. stroke-width="2"
  6483. stroke-miterlimit="10"
  6484. x1="692.903"
  6485. y1="250.542"
  6486. x2="710.823"
  6487. y2="250.542"
  6488. ></line>
  6489. </g>
  6490. <g v-else-if="ajaxData.mhskg110 == false" id="31_1-0on">
  6491. <line
  6492. fill="none"
  6493. stroke="#419B48"
  6494. stroke-width="2.5"
  6495. stroke-miterlimit="10"
  6496. x1="692.677"
  6497. y1="257.805"
  6498. x2="692.677"
  6499. y2="244.308"
  6500. ></line>
  6501. <path
  6502. fill="#419B48"
  6503. d="M714.488,253.15c-1.438,0-2.61-1.171-2.61-2.606s1.18-2.604,2.61-2.604c1.438,0,2.605,1.171,2.605,2.604 C717.094,251.979,715.927,253.15,714.488,253.15 M714.488,255.209c2.576,0,4.666-2.088,4.666-4.666 c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.099-4.669,4.665C709.819,253.119,711.907,255.209,714.488,255.209 L714.488,255.209z"
  6504. ></path>
  6505. <line
  6506. fill="none"
  6507. stroke="#419B48"
  6508. stroke-width="2"
  6509. stroke-miterlimit="10"
  6510. x1="695.864"
  6511. y1="243.996"
  6512. x2="710.823"
  6513. y2="251.056"
  6514. ></line>
  6515. </g>
  6516. </g>
  6517. <g id="mhskg1011">
  6518. <g v-if="ajaxData.mhskg1011" id="31_01-1off">
  6519. <line
  6520. fill="none"
  6521. stroke="#9A2B2D"
  6522. stroke-width="2.5"
  6523. stroke-miterlimit="10"
  6524. x1="658.552"
  6525. y1="261.288"
  6526. x2="672.052"
  6527. y2="261.288"
  6528. ></line>
  6529. <path
  6530. fill="#9A2B2D"
  6531. d="M663.204,283.099c0-1.44,1.174-2.609,2.606-2.609s2.606,1.172,2.606,2.609s-1.18,2.604-2.606,2.604 C664.385,285.705,663.204,284.536,663.204,283.099 M661.146,283.099c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C663.237,278.433,661.146,280.519,661.146,283.099 L661.146,283.099z"
  6532. ></path>
  6533. <line
  6534. fill="none"
  6535. stroke="#9A2B2D"
  6536. stroke-width="2"
  6537. stroke-miterlimit="10"
  6538. x1="665.814"
  6539. y1="261.514"
  6540. x2="665.814"
  6541. y2="279.435"
  6542. ></line>
  6543. </g>
  6544. <g v-else-if="ajaxData.mhskg1011 == false" id="31_01-1on">
  6545. <line
  6546. fill="none"
  6547. stroke="#419B48"
  6548. stroke-width="2.5"
  6549. stroke-miterlimit="10"
  6550. x1="658.552"
  6551. y1="261.288"
  6552. x2="672.052"
  6553. y2="261.288"
  6554. ></line>
  6555. <path
  6556. fill="#419B48"
  6557. d="M663.204,283.099c0-1.44,1.174-2.611,2.606-2.611s2.606,1.171,2.606,2.611 c0,1.437-1.18,2.604-2.606,2.604C664.385,285.705,663.204,284.536,663.204,283.099 M661.146,283.099 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C663.237,278.43,661.146,280.519,661.146,283.099L661.146,283.099z"
  6558. ></path>
  6559. <line
  6560. fill="none"
  6561. stroke="#419B48"
  6562. stroke-width="2"
  6563. stroke-miterlimit="10"
  6564. x1="672.359"
  6565. y1="264.475"
  6566. x2="665.302"
  6567. y2="279.435"
  6568. ></line>
  6569. </g>
  6570. </g>
  6571. <g id="mhskg1013">
  6572. <g v-if="ajaxData.mhskg1013" id="31_01-3off">
  6573. <line
  6574. fill="none"
  6575. stroke="#9A2B2D"
  6576. stroke-width="2.5"
  6577. stroke-miterlimit="10"
  6578. x1="658.552"
  6579. y1="358.467"
  6580. x2="672.052"
  6581. y2="358.467"
  6582. ></line>
  6583. <path
  6584. fill="#9A2B2D"
  6585. d="M663.204,380.27c0-1.44,1.174-2.609,2.606-2.609s2.606,1.172,2.606,2.609s-1.18,2.604-2.606,2.604 C664.385,382.875,663.204,381.707,663.204,380.27 M661.146,380.27c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C663.237,375.604,661.146,377.69,661.146,380.27L661.146,380.27 z"
  6586. ></path>
  6587. <line
  6588. fill="none"
  6589. stroke="#9A2B2D"
  6590. stroke-width="2"
  6591. stroke-miterlimit="10"
  6592. x1="665.814"
  6593. y1="358.685"
  6594. x2="665.814"
  6595. y2="376.606"
  6596. ></line>
  6597. </g>
  6598. <g v-else-if="ajaxData.mhskg1013 == false" id="31_01-3on">
  6599. <line
  6600. fill="none"
  6601. stroke="#419B48"
  6602. stroke-width="2.5"
  6603. stroke-miterlimit="10"
  6604. x1="658.552"
  6605. y1="358.467"
  6606. x2="672.052"
  6607. y2="358.467"
  6608. ></line>
  6609. <path
  6610. fill="#419B48"
  6611. d="M663.204,380.27c0-1.44,1.174-2.611,2.606-2.611s2.606,1.171,2.606,2.611c0,1.437-1.18,2.604-2.606,2.604 C664.385,382.875,663.204,381.707,663.204,380.27 M661.146,380.27c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669C663.237,375.601,661.146,377.69,661.146,380.27L661.146,380.27z "
  6612. ></path>
  6613. <line
  6614. fill="none"
  6615. stroke="#419B48"
  6616. stroke-width="2"
  6617. stroke-miterlimit="10"
  6618. x1="672.359"
  6619. y1="361.646"
  6620. x2="665.302"
  6621. y2="376.606"
  6622. ></line>
  6623. </g>
  6624. </g>
  6625. <g id="mhskg10103">
  6626. <g v-if="ajaxData.mhskg10103" id="31_01-03off">
  6627. <line
  6628. fill="none"
  6629. stroke="#9A2B2D"
  6630. stroke-width="2.5"
  6631. stroke-miterlimit="10"
  6632. x1="692.677"
  6633. y1="355.551"
  6634. x2="692.677"
  6635. y2="342.052"
  6636. ></line>
  6637. <path
  6638. fill="#9A2B2D"
  6639. d="M714.488,350.888c-1.438,0-2.604-1.171-2.604-2.606c0-1.435,1.172-2.604,2.604-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,349.719,715.927,350.888,714.488,350.888 M714.488,352.947 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C709.822,350.856,711.907,352.947,714.488,352.947L714.488,352.947z"
  6640. ></path>
  6641. <line
  6642. fill="none"
  6643. stroke="#9A2B2D"
  6644. stroke-width="2"
  6645. stroke-miterlimit="10"
  6646. x1="692.903"
  6647. y1="348.279"
  6648. x2="710.823"
  6649. y2="348.279"
  6650. ></line>
  6651. </g>
  6652. <g v-else-if="ajaxData.mhskg10103 == false" id="31_01-03on">
  6653. <line
  6654. fill="none"
  6655. stroke="#419B48"
  6656. stroke-width="2.5"
  6657. stroke-miterlimit="10"
  6658. x1="692.677"
  6659. y1="355.551"
  6660. x2="692.677"
  6661. y2="342.052"
  6662. ></line>
  6663. <path
  6664. fill="#419B48"
  6665. d="M714.488,350.888c-1.438,0-2.61-1.171-2.61-2.606c0-1.435,1.18-2.604,2.61-2.604 c1.438,0,2.605,1.171,2.605,2.604C717.094,349.719,715.927,350.888,714.488,350.888 M714.488,352.947 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C709.819,350.856,711.907,352.947,714.488,352.947L714.488,352.947z"
  6666. ></path>
  6667. <line
  6668. fill="none"
  6669. stroke="#419B48"
  6670. stroke-width="2"
  6671. stroke-miterlimit="10"
  6672. x1="695.864"
  6673. y1="341.734"
  6674. x2="710.823"
  6675. y2="348.802"
  6676. ></line>
  6677. </g>
  6678. </g>
  6679. <g id="mhskg3010">
  6680. <g v-if="ajaxData.mhskg3010" id="33_01-0off">
  6681. <line
  6682. fill="none"
  6683. stroke="#9A2B2D"
  6684. stroke-width="2.5"
  6685. stroke-miterlimit="10"
  6686. x1="692.677"
  6687. y1="475.594"
  6688. x2="692.677"
  6689. y2="462.095"
  6690. ></line>
  6691. <path
  6692. fill="#9A2B2D"
  6693. d="M714.488,470.938c-1.438,0-2.604-1.172-2.604-2.606c0-1.434,1.172-2.604,2.604-2.604 c1.438,0,2.605,1.173,2.605,2.604C717.094,469.766,715.927,470.938,714.488,470.938 M714.488,472.997 c2.578,0,4.666-2.089,4.666-4.665c0-2.568-2.09-4.666-4.666-4.666c-2.577,0-4.666,2.1-4.666,4.666 C709.822,470.906,711.907,472.997,714.488,472.997L714.488,472.997z"
  6694. ></path>
  6695. <line
  6696. fill="none"
  6697. stroke="#9A2B2D"
  6698. stroke-width="2"
  6699. stroke-miterlimit="10"
  6700. x1="692.903"
  6701. y1="468.33"
  6702. x2="710.823"
  6703. y2="468.33"
  6704. ></line>
  6705. </g>
  6706. <g v-else-if="ajaxData.mhskg3010 == false" id="33_01-0on">
  6707. <line
  6708. fill="none"
  6709. stroke="#419B48"
  6710. stroke-width="2.5"
  6711. stroke-miterlimit="10"
  6712. x1="692.677"
  6713. y1="475.594"
  6714. x2="692.677"
  6715. y2="462.095"
  6716. ></line>
  6717. <path
  6718. fill="#419B48"
  6719. d="M714.488,470.938c-1.438,0-2.61-1.172-2.61-2.606c0-1.434,1.18-2.604,2.61-2.604 c1.438,0,2.605,1.173,2.605,2.604C717.094,469.766,715.927,470.938,714.488,470.938 M714.488,472.997 c2.576,0,4.666-2.089,4.666-4.665c0-2.568-2.09-4.666-4.666-4.666c-2.58,0-4.669,2.1-4.669,4.666 C709.819,470.906,711.907,472.997,714.488,472.997L714.488,472.997z"
  6720. ></path>
  6721. <line
  6722. fill="none"
  6723. stroke="#419B48"
  6724. stroke-width="2"
  6725. stroke-miterlimit="10"
  6726. x1="695.864"
  6727. y1="461.784"
  6728. x2="710.823"
  6729. y2="468.844"
  6730. ></line>
  6731. </g>
  6732. </g>
  6733. <g id="mhskg1020">
  6734. <g v-if="ajaxData.mhskg1020" id="31_02-0off">
  6735. <line
  6736. fill="none"
  6737. stroke="#9A2B2D"
  6738. stroke-width="2.5"
  6739. stroke-miterlimit="10"
  6740. x1="1315.135"
  6741. y1="388.177"
  6742. x2="1315.135"
  6743. y2="401.677"
  6744. ></line>
  6745. <path
  6746. fill="#9A2B2D"
  6747. d="M1293.319,392.829c1.44,0,2.609,1.171,2.609,2.606c0,1.434-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.181-2.604-2.607C1290.719,394,1291.885,392.829,1293.319,392.829 M1293.319,390.77 c-2.578,0-4.666,2.089-4.666,4.665c0,2.577,2.09,4.666,4.666,4.666c2.577,0,4.666-2.091,4.666-4.666 C1297.985,392.861,1295.899,390.77,1293.319,390.77L1293.319,390.77z"
  6748. ></path>
  6749. <line
  6750. fill="none"
  6751. stroke="#9A2B2D"
  6752. stroke-width="2"
  6753. stroke-miterlimit="10"
  6754. x1="1314.904"
  6755. y1="395.437"
  6756. x2="1296.983"
  6757. y2="395.437"
  6758. ></line>
  6759. </g>
  6760. <g v-else-if="ajaxData.mhskg1020 == false" id="31_02-0on">
  6761. <line
  6762. fill="none"
  6763. stroke="#419B48"
  6764. stroke-width="2.5"
  6765. stroke-miterlimit="10"
  6766. x1="1315.135"
  6767. y1="388.177"
  6768. x2="1315.135"
  6769. y2="401.677"
  6770. ></line>
  6771. <path
  6772. fill="#419B48"
  6773. d="M1293.319,392.829c1.44,0,2.611,1.171,2.611,2.606c0,1.434-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.181-2.604-2.607C1290.719,394,1291.885,392.829,1293.319,392.829 M1293.319,390.77 c-2.576,0-4.666,2.089-4.666,4.665c0,2.577,2.09,4.666,4.666,4.666c2.58,0,4.669-2.091,4.669-4.666 C1297.988,392.861,1295.899,390.77,1293.319,390.77L1293.319,390.77z"
  6774. ></path>
  6775. <line
  6776. fill="none"
  6777. stroke="#419B48"
  6778. stroke-width="2"
  6779. stroke-miterlimit="10"
  6780. x1="1311.943"
  6781. y1="401.983"
  6782. x2="1296.983"
  6783. y2="394.927"
  6784. ></line>
  6785. </g>
  6786. </g>
  6787. <g id="mhskg10201">
  6788. <g v-if="ajaxData.mhskg10201" id="31_02-01off">
  6789. <line
  6790. fill="none"
  6791. stroke="#9A2B2D"
  6792. stroke-width="2.5"
  6793. stroke-miterlimit="10"
  6794. x1="1315.135"
  6795. y1="290.779"
  6796. x2="1315.135"
  6797. y2="304.276"
  6798. ></line>
  6799. <path
  6800. fill="#9A2B2D"
  6801. d="M1293.319,295.434c1.44,0,2.609,1.171,2.609,2.604c0,1.438-1.172,2.607-2.609,2.607 c-1.437,0-2.604-1.171-2.604-2.607C1290.719,296.605,1291.885,295.434,1293.319,295.434 M1293.319,293.375 c-2.578,0-4.666,2.088-4.666,4.666c0,2.577,2.09,4.665,4.666,4.665c2.577,0,4.666-2.09,4.666-4.665 C1297.985,295.465,1295.899,293.375,1293.319,293.375L1293.319,293.375z"
  6802. ></path>
  6803. <line
  6804. fill="none"
  6805. stroke="#9A2B2D"
  6806. stroke-width="2"
  6807. stroke-miterlimit="10"
  6808. x1="1314.904"
  6809. y1="298.042"
  6810. x2="1296.983"
  6811. y2="298.042"
  6812. ></line>
  6813. </g>
  6814. <g v-else-if="ajaxData.mhskg10201 == false" id="31_02-01on">
  6815. <line
  6816. fill="none"
  6817. stroke="#419B48"
  6818. stroke-width="2.5"
  6819. stroke-miterlimit="10"
  6820. x1="1315.135"
  6821. y1="290.779"
  6822. x2="1315.135"
  6823. y2="304.276"
  6824. ></line>
  6825. <path
  6826. fill="#419B48"
  6827. d="M1293.319,295.434c1.44,0,2.611,1.171,2.611,2.604c0,1.438-1.171,2.607-2.611,2.607 c-1.437,0-2.604-1.171-2.604-2.607C1290.719,296.605,1291.885,295.434,1293.319,295.434 M1293.319,293.375 c-2.576,0-4.666,2.088-4.666,4.666c0,2.577,2.09,4.665,4.666,4.665c2.58,0,4.669-2.09,4.669-4.665 C1297.988,295.465,1295.899,293.375,1293.319,293.375L1293.319,293.375z"
  6828. ></path>
  6829. <line
  6830. fill="none"
  6831. stroke="#419B48"
  6832. stroke-width="2"
  6833. stroke-miterlimit="10"
  6834. x1="1311.943"
  6835. y1="304.594"
  6836. x2="1296.983"
  6837. y2="297.528"
  6838. ></line>
  6839. </g>
  6840. </g>
  6841. <g id="mhskg0120">
  6842. <g v-if="ajaxData.mhskg0120" id="30_12-0off">
  6843. <line
  6844. fill="none"
  6845. stroke="#9A2B2D"
  6846. stroke-width="2.5"
  6847. stroke-miterlimit="10"
  6848. x1="1250.78"
  6849. y1="450.201"
  6850. x2="1264.277"
  6851. y2="450.201"
  6852. ></line>
  6853. <path
  6854. fill="#9A2B2D"
  6855. d="M1255.435,472.012c0-1.439,1.171-2.608,2.604-2.608c1.437,0,2.604,1.172,2.604,2.608 c0,1.438-1.171,2.604-2.604,2.604C1256.606,474.618,1255.435,473.449,1255.435,472.012 M1253.378,472.012 c0,2.578,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.577-2.091-4.666-4.662-4.666 C1255.469,467.346,1253.378,469.432,1253.378,472.012L1253.378,472.012z"
  6856. ></path>
  6857. <line
  6858. fill="none"
  6859. stroke="#9A2B2D"
  6860. stroke-width="2"
  6861. stroke-miterlimit="10"
  6862. x1="1258.052"
  6863. y1="450.427"
  6864. x2="1258.052"
  6865. y2="468.348"
  6866. ></line>
  6867. </g>
  6868. <g v-else-if="ajaxData.mhskg0120 == false" id="30_12-0on">
  6869. <line
  6870. fill="none"
  6871. stroke="#419B48"
  6872. stroke-width="2.5"
  6873. stroke-miterlimit="10"
  6874. x1="1250.78"
  6875. y1="450.201"
  6876. x2="1264.277"
  6877. y2="450.201"
  6878. ></line>
  6879. <path
  6880. fill="#419B48"
  6881. d="M1255.435,472.012c0-1.439,1.171-2.61,2.604-2.61c1.437,0,2.604,1.171,2.604,2.61 c0,1.438-1.171,2.604-2.604,2.604C1256.606,474.618,1255.435,473.449,1255.435,472.012 M1253.378,472.012 c0,2.576,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.58-2.091-4.669-4.662-4.669 C1255.469,467.344,1253.378,469.432,1253.378,472.012L1253.378,472.012z"
  6882. ></path>
  6883. <line
  6884. fill="none"
  6885. stroke="#419B48"
  6886. stroke-width="2"
  6887. stroke-miterlimit="10"
  6888. x1="1264.594"
  6889. y1="453.388"
  6890. x2="1257.529"
  6891. y2="468.348"
  6892. ></line>
  6893. </g>
  6894. </g>
  6895. <g id="mhskg120">
  6896. <g v-if="ajaxData.mhskg120" id="31_2-0off">
  6897. <line
  6898. fill="none"
  6899. stroke="#9A2B2D"
  6900. stroke-width="2.5"
  6901. stroke-miterlimit="10"
  6902. x1="1367.044"
  6903. y1="257.805"
  6904. x2="1367.044"
  6905. y2="244.308"
  6906. ></line>
  6907. <path
  6908. fill="#9A2B2D"
  6909. d="M1388.854,253.15c-1.439,0-2.609-1.171-2.609-2.606s1.174-2.604,2.609-2.604s2.604,1.171,2.604,2.604 C1391.469,251.979,1390.292,253.15,1388.854,253.15 M1388.854,255.209c2.578,0,4.666-2.088,4.666-4.666 c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.099-4.666,4.665C1384.188,253.119,1386.274,255.209,1388.854,255.209 L1388.854,255.209z"
  6910. ></path>
  6911. <line
  6912. fill="none"
  6913. stroke="#9A2B2D"
  6914. stroke-width="2"
  6915. stroke-miterlimit="10"
  6916. x1="1367.27"
  6917. y1="250.542"
  6918. x2="1385.19"
  6919. y2="250.542"
  6920. ></line>
  6921. </g>
  6922. <g v-else-if="ajaxData.mhskg120 == false" id="31_2-0on_1_">
  6923. <line
  6924. fill="none"
  6925. stroke="#419B48"
  6926. stroke-width="2.5"
  6927. stroke-miterlimit="10"
  6928. x1="1367.044"
  6929. y1="257.805"
  6930. x2="1367.044"
  6931. y2="244.308"
  6932. ></line>
  6933. <path
  6934. fill="#419B48"
  6935. d="M1388.854,253.15c-1.439,0-2.611-1.171-2.611-2.606s1.172-2.604,2.611-2.604 c1.438,0,2.604,1.171,2.604,2.604C1391.469,251.979,1390.292,253.15,1388.854,253.15 M1388.854,255.209 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.099-4.669,4.665 C1384.186,253.119,1386.274,255.209,1388.854,255.209L1388.854,255.209z"
  6936. ></path>
  6937. <line
  6938. fill="none"
  6939. stroke="#419B48"
  6940. stroke-width="2"
  6941. stroke-miterlimit="10"
  6942. x1="1370.23"
  6943. y1="243.996"
  6944. x2="1385.19"
  6945. y2="251.056"
  6946. ></line>
  6947. </g>
  6948. </g>
  6949. <g id="mhskg1021">
  6950. <g v-if="ajaxData.mhskg1021" id="31_02-1off">
  6951. <line
  6952. fill="none"
  6953. stroke="#9A2B2D"
  6954. stroke-width="2.5"
  6955. stroke-miterlimit="10"
  6956. x1="1332.919"
  6957. y1="261.288"
  6958. x2="1346.413"
  6959. y2="261.288"
  6960. ></line>
  6961. <path
  6962. fill="#9A2B2D"
  6963. d="M1337.571,283.099c0-1.44,1.171-2.609,2.606-2.609c1.435,0,2.604,1.172,2.604,2.609 s-1.171,2.604-2.604,2.604C1338.742,285.705,1337.571,284.536,1337.571,283.099 M1335.513,283.099 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666 C1337.604,278.433,1335.513,280.519,1335.513,283.099L1335.513,283.099z"
  6964. ></path>
  6965. <line
  6966. fill="none"
  6967. stroke="#9A2B2D"
  6968. stroke-width="2"
  6969. stroke-miterlimit="10"
  6970. x1="1340.181"
  6971. y1="261.514"
  6972. x2="1340.181"
  6973. y2="279.435"
  6974. ></line>
  6975. </g>
  6976. <g v-else-if="ajaxData.mhskg1021 == false" id="31_02-1on">
  6977. <line
  6978. fill="none"
  6979. stroke="#419B48"
  6980. stroke-width="2.5"
  6981. stroke-miterlimit="10"
  6982. x1="1332.919"
  6983. y1="261.288"
  6984. x2="1346.413"
  6985. y2="261.288"
  6986. ></line>
  6987. <path
  6988. fill="#419B48"
  6989. d="M1337.571,283.099c0-1.44,1.171-2.611,2.606-2.611c1.435,0,2.604,1.171,2.604,2.611 c0,1.437-1.171,2.604-2.604,2.604C1338.742,285.705,1337.571,284.536,1337.571,283.099 M1335.513,283.099 c0,2.567,2.089,4.666,4.666,4.666c2.576,0,4.665-2.099,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C1337.604,278.43,1335.513,280.519,1335.513,283.099L1335.513,283.099z"
  6990. ></path>
  6991. <line
  6992. fill="none"
  6993. stroke="#419B48"
  6994. stroke-width="2"
  6995. stroke-miterlimit="10"
  6996. x1="1346.726"
  6997. y1="264.475"
  6998. x2="1339.667"
  6999. y2="279.435"
  7000. ></line>
  7001. </g>
  7002. </g>
  7003. <g id="mhskg1023">
  7004. <g v-if="ajaxData.mhskg1023" id="31_02-3off">
  7005. <line
  7006. fill="none"
  7007. stroke="#9A2B2D"
  7008. stroke-width="2.5"
  7009. stroke-miterlimit="10"
  7010. x1="1332.919"
  7011. y1="358.467"
  7012. x2="1346.413"
  7013. y2="358.467"
  7014. ></line>
  7015. <path
  7016. fill="#9A2B2D"
  7017. d="M1337.571,380.27c0-1.44,1.171-2.609,2.606-2.609c1.435,0,2.604,1.172,2.604,2.609 s-1.171,2.604-2.604,2.604C1338.742,382.875,1337.571,381.707,1337.571,380.27 M1335.513,380.27c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.577-2.091-4.666-4.665-4.666C1337.604,375.604,1335.513,377.69,1335.513,380.27 L1335.513,380.27z"
  7018. ></path>
  7019. <line
  7020. fill="none"
  7021. stroke="#9A2B2D"
  7022. stroke-width="2"
  7023. stroke-miterlimit="10"
  7024. x1="1340.181"
  7025. y1="358.685"
  7026. x2="1340.181"
  7027. y2="376.606"
  7028. ></line>
  7029. </g>
  7030. <g v-else-if="ajaxData.mhskg1023 == false" id="31_02-3on">
  7031. <line
  7032. fill="none"
  7033. stroke="#419B48"
  7034. stroke-width="2.5"
  7035. stroke-miterlimit="10"
  7036. x1="1332.919"
  7037. y1="358.467"
  7038. x2="1346.413"
  7039. y2="358.467"
  7040. ></line>
  7041. <path
  7042. fill="#419B48"
  7043. d="M1337.571,380.27c0-1.44,1.171-2.611,2.606-2.611c1.435,0,2.604,1.171,2.604,2.611 c0,1.437-1.171,2.604-2.604,2.604C1338.742,382.875,1337.571,381.707,1337.571,380.27 M1335.513,380.27 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.669-4.665-4.669 C1337.604,375.601,1335.513,377.69,1335.513,380.27L1335.513,380.27z"
  7044. ></path>
  7045. <line
  7046. fill="none"
  7047. stroke="#419B48"
  7048. stroke-width="2"
  7049. stroke-miterlimit="10"
  7050. x1="1346.726"
  7051. y1="361.646"
  7052. x2="1339.667"
  7053. y2="376.606"
  7054. ></line>
  7055. </g>
  7056. </g>
  7057. <g id="mhskg10203">
  7058. <g v-if="ajaxData.mhskg10203" id="31_02-03off">
  7059. <line
  7060. fill="none"
  7061. stroke="#9A2B2D"
  7062. stroke-width="2.5"
  7063. stroke-miterlimit="10"
  7064. x1="1367.044"
  7065. y1="355.551"
  7066. x2="1367.044"
  7067. y2="342.052"
  7068. ></line>
  7069. <path
  7070. fill="#9A2B2D"
  7071. d="M1388.854,350.888c-1.439,0-2.609-1.171-2.609-2.606c0-1.435,1.174-2.604,2.609-2.604 s2.604,1.171,2.604,2.604C1391.469,349.719,1390.292,350.888,1388.854,350.888 M1388.854,352.947 c2.578,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C1384.188,350.856,1386.274,352.947,1388.854,352.947L1388.854,352.947z"
  7072. ></path>
  7073. <line
  7074. fill="none"
  7075. stroke="#9A2B2D"
  7076. stroke-width="2"
  7077. stroke-miterlimit="10"
  7078. x1="1367.27"
  7079. y1="348.279"
  7080. x2="1385.19"
  7081. y2="348.279"
  7082. ></line>
  7083. </g>
  7084. <g v-else-if="ajaxData.mhskg10203 == false" id="31_02-03on">
  7085. <line
  7086. fill="none"
  7087. stroke="#419B48"
  7088. stroke-width="2.5"
  7089. stroke-miterlimit="10"
  7090. x1="1367.044"
  7091. y1="355.551"
  7092. x2="1367.044"
  7093. y2="342.052"
  7094. ></line>
  7095. <path
  7096. fill="#419B48"
  7097. d="M1388.854,350.888c-1.439,0-2.611-1.171-2.611-2.606c0-1.435,1.172-2.604,2.611-2.604 c1.438,0,2.604,1.171,2.604,2.604C1391.469,349.719,1390.292,350.888,1388.854,350.888 M1388.854,352.947 c2.576,0,4.666-2.088,4.666-4.666c0-2.577-2.09-4.665-4.666-4.665c-2.58,0-4.669,2.09-4.669,4.665 C1384.186,350.856,1386.274,352.947,1388.854,352.947L1388.854,352.947z"
  7098. ></path>
  7099. <line
  7100. fill="none"
  7101. stroke="#419B48"
  7102. stroke-width="2"
  7103. stroke-miterlimit="10"
  7104. x1="1370.23"
  7105. y1="341.734"
  7106. x2="1385.19"
  7107. y2="348.802"
  7108. ></line>
  7109. </g>
  7110. </g>
  7111. <g id="mhskg1109">
  7112. <g v-if="ajaxData.mhskg1109" id="31_1-09off">
  7113. <line
  7114. fill="none"
  7115. stroke="#9A2B2D"
  7116. stroke-width="2.5"
  7117. stroke-miterlimit="10"
  7118. x1="943.939"
  7119. y1="290.619"
  7120. x2="943.939"
  7121. y2="277.123"
  7122. ></line>
  7123. <path
  7124. fill="#9A2B2D"
  7125. d="M965.76,285.965c-1.44,0-2.609-1.171-2.609-2.604c0-1.438,1.172-2.607,2.609-2.607 c1.437,0,2.604,1.171,2.604,2.607C968.356,284.793,967.188,285.965,965.76,285.965 M965.76,288.023 c2.568,0,4.666-2.088,4.666-4.666c0-2.577-2.1-4.665-4.666-4.665c-2.577,0-4.666,2.09-4.666,4.665 C961.094,285.933,963.177,288.023,965.76,288.023L965.76,288.023z"
  7126. ></path>
  7127. <line
  7128. fill="none"
  7129. stroke="#9A2B2D"
  7130. stroke-width="2"
  7131. stroke-miterlimit="10"
  7132. x1="944.165"
  7133. y1="283.356"
  7134. x2="962.094"
  7135. y2="283.356"
  7136. ></line>
  7137. </g>
  7138. <g v-else-if="ajaxData.mhskg1109 == false" id="31_1-09on">
  7139. <line
  7140. fill="none"
  7141. stroke="#419B48"
  7142. stroke-width="2.5"
  7143. stroke-miterlimit="10"
  7144. x1="943.939"
  7145. y1="290.619"
  7146. x2="943.939"
  7147. y2="277.123"
  7148. ></line>
  7149. <path
  7150. fill="#419B48"
  7151. d="M965.76,285.965c-1.44,0-2.611-1.171-2.611-2.604c0-1.438,1.171-2.607,2.611-2.607 c1.437,0,2.604,1.171,2.604,2.607C968.356,284.793,967.188,285.965,965.76,285.965 M965.76,288.023 c2.566,0,4.666-2.088,4.666-4.666c0-2.577-2.1-4.665-4.666-4.665c-2.58,0-4.678,2.09-4.678,4.665 C961.081,285.933,963.177,288.023,965.76,288.023L965.76,288.023z"
  7152. ></path>
  7153. <line
  7154. fill="none"
  7155. stroke="#419B48"
  7156. stroke-width="2"
  7157. stroke-miterlimit="10"
  7158. x1="947.135"
  7159. y1="276.811"
  7160. x2="962.094"
  7161. y2="283.871"
  7162. ></line>
  7163. </g>
  7164. </g>
  7165. <g id="mhskg119">
  7166. <g v-if="ajaxData.mhskg119" id="31_1-9off">
  7167. <line
  7168. fill="none"
  7169. stroke="#9A2B2D"
  7170. stroke-width="2.5"
  7171. stroke-miterlimit="10"
  7172. x1="913.737"
  7173. y1="247.105"
  7174. x2="927.234"
  7175. y2="247.105"
  7176. ></line>
  7177. <path
  7178. fill="#9A2B2D"
  7179. d="M918.392,268.917c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C919.563,271.522,918.392,270.353,918.392,268.917 M916.335,268.917 c0,2.578,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.577-2.091-4.666-4.662-4.666 C918.427,264.25,916.335,266.336,916.335,268.917L916.335,268.917z"
  7180. ></path>
  7181. <line
  7182. fill="none"
  7183. stroke="#9A2B2D"
  7184. stroke-width="2"
  7185. stroke-miterlimit="10"
  7186. x1="921.01"
  7187. y1="247.332"
  7188. x2="921.01"
  7189. y2="265.252"
  7190. ></line>
  7191. </g>
  7192. <g v-else-if="ajaxData.mhskg119 == false" id="31_1-9on">
  7193. <line
  7194. fill="none"
  7195. stroke="#419B48"
  7196. stroke-width="2.5"
  7197. stroke-miterlimit="10"
  7198. x1="913.737"
  7199. y1="247.105"
  7200. x2="927.234"
  7201. y2="247.105"
  7202. ></line>
  7203. <path
  7204. fill="#419B48"
  7205. d="M918.392,268.917c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.171,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C919.563,271.522,918.392,270.353,918.392,268.917 M916.335,268.917 c0,2.576,2.096,4.666,4.666,4.666c2.573,0,4.662-2.09,4.662-4.666c0-2.58-2.091-4.669-4.662-4.669 C918.428,264.248,916.335,266.336,916.335,268.917L916.335,268.917z"
  7206. ></path>
  7207. <line
  7208. fill="none"
  7209. stroke="#419B48"
  7210. stroke-width="2"
  7211. stroke-miterlimit="10"
  7212. x1="927.552"
  7213. y1="250.292"
  7214. x2="920.486"
  7215. y2="265.252"
  7216. ></line>
  7217. </g>
  7218. </g>
  7219. <g id="mhskg3180">
  7220. <g v-if="ajaxData.mhskg3180" id="31_21-0off_7_">
  7221. <line
  7222. fill="none"
  7223. stroke="#9A2B2D"
  7224. stroke-width="2.5"
  7225. stroke-miterlimit="10"
  7226. x1="90.647"
  7227. y1="690.847"
  7228. x2="104.146"
  7229. y2="690.847"
  7230. ></line>
  7231. <path
  7232. fill="#9A2B2D"
  7233. d="M95.302,712.66c0-1.438,1.172-2.604,2.604-2.604s2.606,1.172,2.606,2.604 c0,1.438-1.181,2.605-2.606,2.605C96.474,715.265,95.302,714.095,95.302,712.66 M93.243,712.66c0,2.578,2.09,4.666,4.666,4.666 c2.575,0,4.666-2.09,4.666-4.666c0-2.578-2.093-4.666-4.666-4.666C95.335,707.994,93.243,710.08,93.243,712.66L93.243,712.66z"
  7234. ></path>
  7235. <line
  7236. fill="none"
  7237. stroke="#9A2B2D"
  7238. stroke-width="2"
  7239. stroke-miterlimit="10"
  7240. x1="97.911"
  7241. y1="691.074"
  7242. x2="97.911"
  7243. y2="708.996"
  7244. ></line>
  7245. </g>
  7246. <g v-else-if="ajaxData.mhskg3180 == false" id="31_21-0on_7_">
  7247. <line
  7248. fill="none"
  7249. stroke="#419B48"
  7250. stroke-width="2.5"
  7251. stroke-miterlimit="10"
  7252. x1="90.647"
  7253. y1="690.847"
  7254. x2="104.146"
  7255. y2="690.847"
  7256. ></line>
  7257. <path
  7258. fill="#419B48"
  7259. d="M95.302,712.66c0-1.438,1.172-2.604,2.604-2.604s2.606,1.17,2.606,2.604c0,1.438-1.181,2.605-2.606,2.605 C96.474,715.265,95.302,714.095,95.302,712.66 M93.243,712.66c0,2.576,2.09,4.666,4.666,4.666c2.575,0,4.666-2.09,4.666-4.666 c0-2.58-2.093-4.67-4.666-4.67C95.335,707.99,93.243,710.08,93.243,712.66L93.243,712.66z"
  7260. ></path>
  7261. <line
  7262. fill="none"
  7263. stroke="#419B48"
  7264. stroke-width="2"
  7265. stroke-miterlimit="10"
  7266. x1="104.456"
  7267. y1="694.035"
  7268. x2="97.397"
  7269. y2="708.996"
  7270. ></line>
  7271. </g>
  7272. </g>
  7273. <g id="mhskg3170">
  7274. <g v-if="ajaxData.mhskg3170" id="31_21-0off_22_">
  7275. <line
  7276. fill="none"
  7277. stroke="#9A2B2D"
  7278. stroke-width="2.5"
  7279. stroke-miterlimit="10"
  7280. x1="238.837"
  7281. y1="690.847"
  7282. x2="252.335"
  7283. y2="690.847"
  7284. ></line>
  7285. <path
  7286. fill="#9A2B2D"
  7287. d="M243.491,712.66c0-1.438,1.172-2.604,2.606-2.604c1.434,0,2.604,1.172,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C244.663,715.265,243.491,714.095,243.491,712.66 M241.433,712.66 c0,2.578,2.09,4.666,4.666,4.666c2.567,0,4.666-2.09,4.666-4.666c0-2.578-2.101-4.666-4.666-4.666 C243.525,707.994,241.433,710.08,241.433,712.66L241.433,712.66z"
  7288. ></path>
  7289. <line
  7290. fill="none"
  7291. stroke="#9A2B2D"
  7292. stroke-width="2"
  7293. stroke-miterlimit="10"
  7294. x1="246.101"
  7295. y1="691.074"
  7296. x2="246.101"
  7297. y2="708.996"
  7298. ></line>
  7299. </g>
  7300. <g v-else-if="ajaxData.mhskg3170 == false" id="31_21-0on_22_">
  7301. <line
  7302. fill="none"
  7303. stroke="#419B48"
  7304. stroke-width="2.5"
  7305. stroke-miterlimit="10"
  7306. x1="238.837"
  7307. y1="690.847"
  7308. x2="252.335"
  7309. y2="690.847"
  7310. ></line>
  7311. <path
  7312. fill="#419B48"
  7313. d="M243.491,712.66c0-1.438,1.172-2.604,2.606-2.604c1.434,0,2.604,1.17,2.604,2.604 c0,1.438-1.172,2.605-2.604,2.605C244.663,715.265,243.491,714.095,243.491,712.66 M241.433,712.66 c0,2.576,2.09,4.666,4.666,4.666c2.567,0,4.666-2.09,4.666-4.666c0-2.58-2.101-4.67-4.666-4.67 C243.525,707.99,241.433,710.08,241.433,712.66L241.433,712.66z"
  7314. ></path>
  7315. <line
  7316. fill="none"
  7317. stroke="#419B48"
  7318. stroke-width="2"
  7319. stroke-miterlimit="10"
  7320. x1="252.646"
  7321. y1="694.035"
  7322. x2="245.587"
  7323. y2="708.996"
  7324. ></line>
  7325. </g>
  7326. </g>
  7327. <g id="mhskg3160">
  7328. <g v-if="ajaxData.mhskg3160" id="31_21-0off_23_">
  7329. <line
  7330. fill="none"
  7331. stroke="#9A2B2D"
  7332. stroke-width="2.5"
  7333. stroke-miterlimit="10"
  7334. x1="340.398"
  7335. y1="690.847"
  7336. x2="353.896"
  7337. y2="690.847"
  7338. ></line>
  7339. <path
  7340. fill="#9A2B2D"
  7341. d="M345.053,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.172,2.606,2.604 c0,1.438-1.177,2.605-2.606,2.605C346.228,715.265,345.053,714.095,345.053,712.66 M342.994,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.578-2.092-4.666-4.665-4.666 C345.086,707.994,342.994,710.08,342.994,712.66L342.994,712.66z"
  7342. ></path>
  7343. <line
  7344. fill="none"
  7345. stroke="#9A2B2D"
  7346. stroke-width="2"
  7347. stroke-miterlimit="10"
  7348. x1="347.662"
  7349. y1="691.074"
  7350. x2="347.662"
  7351. y2="708.996"
  7352. ></line>
  7353. </g>
  7354. <g v-else-if="ajaxData.mhskg3160 == false" id="31_21-0on_23_">
  7355. <line
  7356. fill="none"
  7357. stroke="#419B48"
  7358. stroke-width="2.5"
  7359. stroke-miterlimit="10"
  7360. x1="340.398"
  7361. y1="690.847"
  7362. x2="353.896"
  7363. y2="690.847"
  7364. ></line>
  7365. <path
  7366. fill="#419B48"
  7367. d="M345.053,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.606,1.17,2.606,2.604 c0,1.438-1.177,2.605-2.606,2.605C346.228,715.265,345.053,714.095,345.053,712.66 M342.994,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.575,0,4.665-2.09,4.665-4.666c0-2.58-2.092-4.67-4.665-4.67 C345.086,707.99,342.994,710.08,342.994,712.66L342.994,712.66z"
  7368. ></path>
  7369. <line
  7370. fill="none"
  7371. stroke="#419B48"
  7372. stroke-width="2"
  7373. stroke-miterlimit="10"
  7374. x1="354.207"
  7375. y1="694.035"
  7376. x2="347.147"
  7377. y2="708.996"
  7378. ></line>
  7379. </g>
  7380. </g>
  7381. <g id="mhskg3220">
  7382. <g v-if="ajaxData.mhskg3220" id="31_21-0off_33_">
  7383. <line
  7384. fill="none"
  7385. stroke="#9A2B2D"
  7386. stroke-width="2.5"
  7387. stroke-miterlimit="10"
  7388. x1="1185.242"
  7389. y1="690.847"
  7390. x2="1198.74"
  7391. y2="690.847"
  7392. ></line>
  7393. <path
  7394. fill="#9A2B2D"
  7395. d="M1189.897,712.66c0-1.438,1.171-2.604,2.605-2.604c1.436,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S1189.897,714.095,1189.897,712.66 M1187.844,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.57,0,4.665-2.09,4.665-4.666c0-2.578-2.097-4.666-4.665-4.666C1189.93,707.994,1187.844,710.08,1187.844,712.66 L1187.844,712.66z"
  7396. ></path>
  7397. <line
  7398. fill="none"
  7399. stroke="#9A2B2D"
  7400. stroke-width="2"
  7401. stroke-miterlimit="10"
  7402. x1="1192.51"
  7403. y1="691.074"
  7404. x2="1192.51"
  7405. y2="708.996"
  7406. ></line>
  7407. </g>
  7408. <g v-else-if="ajaxData.mhskg3220 == false" id="31_21-0on_33_">
  7409. <path
  7410. fill="#419B48"
  7411. d="M1189.897,712.66c0-1.438,1.171-2.604,2.605-2.604c1.436,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S1189.897,714.095,1189.897,712.66 M1187.844,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.57,0,4.665-2.09,4.665-4.666c0-2.58-2.097-4.67-4.665-4.67C1189.93,707.99,1187.844,710.08,1187.844,712.66L1187.844,712.66z"
  7412. ></path>
  7413. <line
  7414. fill="none"
  7415. stroke="#419B48"
  7416. stroke-width="2"
  7417. stroke-miterlimit="10"
  7418. x1="1199.052"
  7419. y1="694.035"
  7420. x2="1191.991"
  7421. y2="708.996"
  7422. ></line>
  7423. </g>
  7424. </g>
  7425. <g id="mhskg3130">
  7426. <g v-if="ajaxData.mhskg3130" id="31_21-0off_48_">
  7427. <line
  7428. fill="none"
  7429. stroke="#9A2B2D"
  7430. stroke-width="2.5"
  7431. stroke-miterlimit="10"
  7432. x1="742.437"
  7433. y1="690.847"
  7434. x2="755.934"
  7435. y2="690.847"
  7436. ></line>
  7437. <path
  7438. fill="#9A2B2D"
  7439. d="M747.094,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C748.263,715.265,747.094,714.095,747.094,712.66 M745.031,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666 C747.122,707.994,745.031,710.08,745.031,712.66L745.031,712.66z"
  7440. ></path>
  7441. <line
  7442. fill="none"
  7443. stroke="#9A2B2D"
  7444. stroke-width="2"
  7445. stroke-miterlimit="10"
  7446. x1="749.699"
  7447. y1="691.074"
  7448. x2="749.699"
  7449. y2="708.996"
  7450. ></line>
  7451. </g>
  7452. <g v-else-if="ajaxData.mhskg3130 == false" id="31_21-0on_48_">
  7453. <line
  7454. fill="none"
  7455. stroke="#419B48"
  7456. stroke-width="2.5"
  7457. stroke-miterlimit="10"
  7458. x1="742.437"
  7459. y1="690.847"
  7460. x2="755.934"
  7461. y2="690.847"
  7462. ></line>
  7463. <path
  7464. fill="#419B48"
  7465. d="M747.094,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C748.263,715.265,747.094,714.095,747.094,712.66 M745.031,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67 C747.122,707.99,745.031,710.08,745.031,712.66L745.031,712.66z"
  7466. ></path>
  7467. <line
  7468. fill="none"
  7469. stroke="#419B48"
  7470. stroke-width="2"
  7471. stroke-miterlimit="10"
  7472. x1="756.244"
  7473. y1="694.035"
  7474. x2="749.186"
  7475. y2="708.996"
  7476. ></line>
  7477. </g>
  7478. </g>
  7479. <g id="mhskg3120">
  7480. <g v-if="ajaxData.mhskg3120" id="31_21-0off_21_">
  7481. <line
  7482. fill="none"
  7483. stroke="#9A2B2D"
  7484. stroke-width="2.5"
  7485. stroke-miterlimit="10"
  7486. x1="843.104"
  7487. y1="690.847"
  7488. x2="856.601"
  7489. y2="690.847"
  7490. ></line>
  7491. <path
  7492. fill="#9A2B2D"
  7493. d="M847.76,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C848.93,715.265,847.76,714.095,847.76,712.66 M845.698,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C847.789,707.994,845.698,710.08,845.698,712.66L845.698,712.66 z"
  7494. ></path>
  7495. <line
  7496. fill="none"
  7497. stroke="#9A2B2D"
  7498. stroke-width="2"
  7499. stroke-miterlimit="10"
  7500. x1="850.366"
  7501. y1="691.074"
  7502. x2="850.366"
  7503. y2="708.996"
  7504. ></line>
  7505. </g>
  7506. <g v-else-if="ajaxData.mhskg3120 == false" id="31_21-0on_21_">
  7507. <line
  7508. fill="none"
  7509. stroke="#419B48"
  7510. stroke-width="2.5"
  7511. stroke-miterlimit="10"
  7512. x1="843.104"
  7513. y1="690.847"
  7514. x2="856.601"
  7515. y2="690.847"
  7516. ></line>
  7517. <path
  7518. fill="#419B48"
  7519. d="M847.76,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C848.93,715.265,847.76,714.095,847.76,712.66 M845.698,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C847.789,707.99,845.698,710.08,845.698,712.66L845.698,712.66z"
  7520. ></path>
  7521. <line
  7522. fill="none"
  7523. stroke="#419B48"
  7524. stroke-width="2"
  7525. stroke-miterlimit="10"
  7526. x1="856.911"
  7527. y1="694.035"
  7528. x2="849.853"
  7529. y2="708.996"
  7530. ></line>
  7531. </g>
  7532. </g>
  7533. <g id="mhskg3210">
  7534. <g v-if="ajaxData.mhskg3210" id="31_21-0off_32_">
  7535. <line
  7536. fill="none"
  7537. stroke="#9A2B2D"
  7538. stroke-width="2.5"
  7539. stroke-miterlimit="10"
  7540. x1="1361.45"
  7541. y1="690.847"
  7542. x2="1374.948"
  7543. y2="690.847"
  7544. ></line>
  7545. <path
  7546. fill="#9A2B2D"
  7547. d="M1366.105,712.66c0-1.438,1.171-2.604,2.604-2.604c1.437,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1367.277,715.265,1366.105,714.095,1366.105,712.66 M1364.052,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.567,0,4.665-2.09,4.665-4.666c0-2.578-2.1-4.666-4.665-4.666 C1366.138,707.994,1364.052,710.08,1364.052,712.66L1364.052,712.66z"
  7548. ></path>
  7549. <line
  7550. fill="none"
  7551. stroke="#9A2B2D"
  7552. stroke-width="2"
  7553. stroke-miterlimit="10"
  7554. x1="1368.719"
  7555. y1="691.074"
  7556. x2="1368.719"
  7557. y2="708.996"
  7558. ></line>
  7559. </g>
  7560. <g v-else-if="ajaxData.mhskg3210 == false" id="31_21-0on_32_">
  7561. <line
  7562. fill="none"
  7563. stroke="#419B48"
  7564. stroke-width="2.5"
  7565. stroke-miterlimit="10"
  7566. x1="1361.45"
  7567. y1="690.847"
  7568. x2="1374.948"
  7569. y2="690.847"
  7570. ></line>
  7571. <path
  7572. fill="#419B48"
  7573. d="M1366.105,712.66c0-1.438,1.171-2.604,2.604-2.604c1.437,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C1367.277,715.265,1366.105,714.095,1366.105,712.66 M1364.052,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.567,0,4.665-2.09,4.665-4.666c0-2.58-2.1-4.67-4.665-4.67 C1366.138,707.99,1364.052,710.08,1364.052,712.66L1364.052,712.66z"
  7574. ></path>
  7575. <line
  7576. fill="none"
  7577. stroke="#419B48"
  7578. stroke-width="2"
  7579. stroke-miterlimit="10"
  7580. x1="1375.26"
  7581. y1="694.035"
  7582. x2="1368.199"
  7583. y2="708.996"
  7584. ></line>
  7585. </g>
  7586. </g>
  7587. <g id="mhskg3110">
  7588. <g v-if="ajaxData.mhskg3110" id="31_21-0off_45_">
  7589. <line
  7590. fill="none"
  7591. stroke="#9A2B2D"
  7592. stroke-width="2.5"
  7593. stroke-miterlimit="10"
  7594. x1="945.206"
  7595. y1="690.847"
  7596. x2="958.703"
  7597. y2="690.847"
  7598. ></line>
  7599. <path
  7600. fill="#9A2B2D"
  7601. d="M949.861,712.66c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C951.032,715.265,949.861,714.095,949.861,712.66 M947.803,712.66 c0,2.578,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.093-4.666-4.665-4.666 C949.894,707.994,947.803,710.08,947.803,712.66L947.803,712.66z"
  7602. ></path>
  7603. <line
  7604. fill="none"
  7605. stroke="#9A2B2D"
  7606. stroke-width="2"
  7607. stroke-miterlimit="10"
  7608. x1="952.471"
  7609. y1="691.074"
  7610. x2="952.471"
  7611. y2="708.996"
  7612. ></line>
  7613. </g>
  7614. <g v-else-if="ajaxData.mhskg3110 == false" id="31_21-0on_45_">
  7615. <line
  7616. fill="none"
  7617. stroke="#419B48"
  7618. stroke-width="2.5"
  7619. stroke-miterlimit="10"
  7620. x1="945.206"
  7621. y1="690.847"
  7622. x2="958.703"
  7623. y2="690.847"
  7624. ></line>
  7625. <path
  7626. fill="#419B48"
  7627. d="M949.861,712.66c0-1.438,1.171-2.604,2.606-2.604c1.435,0,2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605C951.032,715.265,949.861,714.095,949.861,712.66 M947.803,712.66 c0,2.576,2.089,4.666,4.666,4.666c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.093-4.67-4.665-4.67 C949.894,707.99,947.803,710.08,947.803,712.66L947.803,712.66z"
  7628. ></path>
  7629. <line
  7630. fill="none"
  7631. stroke="#419B48"
  7632. stroke-width="2"
  7633. stroke-miterlimit="10"
  7634. x1="959.016"
  7635. y1="694.035"
  7636. x2="951.955"
  7637. y2="708.996"
  7638. ></line>
  7639. </g>
  7640. </g>
  7641. <g id="mhskg3150">
  7642. <g v-if="ajaxData.mhskg3150" id="31_21-0off_42_">
  7643. <line
  7644. fill="none"
  7645. stroke="#9A2B2D"
  7646. stroke-width="2.5"
  7647. stroke-miterlimit="10"
  7648. x1="446.072"
  7649. y1="690.847"
  7650. x2="459.569"
  7651. y2="690.847"
  7652. ></line>
  7653. <path
  7654. fill="#9A2B2D"
  7655. d="M450.727,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.172,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C451.898,715.265,450.727,714.095,450.727,712.66 M448.677,712.66 c0,2.578,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.578-2.091-4.666-4.656-4.666 C450.76,707.994,448.677,710.08,448.677,712.66L448.677,712.66z"
  7656. ></path>
  7657. <line
  7658. fill="none"
  7659. stroke="#9A2B2D"
  7660. stroke-width="2"
  7661. stroke-miterlimit="10"
  7662. x1="453.344"
  7663. y1="691.074"
  7664. x2="453.344"
  7665. y2="708.996"
  7666. ></line>
  7667. </g>
  7668. <g v-else-if="ajaxData.mhskg3150 == false" id="31_21-0on_42_">
  7669. <line
  7670. fill="none"
  7671. stroke="#419B48"
  7672. stroke-width="2.5"
  7673. stroke-miterlimit="10"
  7674. x1="446.072"
  7675. y1="690.847"
  7676. x2="459.569"
  7677. y2="690.847"
  7678. ></line>
  7679. <path
  7680. fill="#419B48"
  7681. d="M450.727,712.66c0-1.438,1.171-2.604,2.604-2.604c1.438,0,2.607,1.17,2.607,2.604 c0,1.438-1.171,2.605-2.607,2.605C451.898,715.265,450.727,714.095,450.727,712.66 M448.677,712.66 c0,2.576,2.089,4.666,4.665,4.666c2.567,0,4.656-2.09,4.656-4.666c0-2.58-2.091-4.67-4.656-4.67 C450.76,707.99,448.677,710.08,448.677,712.66L448.677,712.66z"
  7682. ></path>
  7683. <line
  7684. fill="none"
  7685. stroke="#419B48"
  7686. stroke-width="2"
  7687. stroke-miterlimit="10"
  7688. x1="459.885"
  7689. y1="694.035"
  7690. x2="452.821"
  7691. y2="708.996"
  7692. ></line>
  7693. </g>
  7694. </g>
  7695. <g id="mhskg3140">
  7696. <g v-if="ajaxData.mhskg3140" id="31_21-0off_46_">
  7697. <line
  7698. fill="none"
  7699. stroke="#9A2B2D"
  7700. stroke-width="2.5"
  7701. stroke-miterlimit="10"
  7702. x1="538.552"
  7703. y1="690.847"
  7704. x2="552.052"
  7705. y2="690.847"
  7706. ></line>
  7707. <path
  7708. fill="#9A2B2D"
  7709. d="M543.202,712.66c0-1.438,1.174-2.604,2.606-2.604s2.604,1.172,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S543.202,714.095,543.202,712.66 M541.145,712.66c0,2.578,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.578-2.091-4.666-4.665-4.666C543.235,707.994,541.145,710.08,541.145,712.66L541.145,712.66 z"
  7710. ></path>
  7711. <line
  7712. fill="none"
  7713. stroke="#9A2B2D"
  7714. stroke-width="2"
  7715. stroke-miterlimit="10"
  7716. x1="545.813"
  7717. y1="691.074"
  7718. x2="545.813"
  7719. y2="708.996"
  7720. ></line>
  7721. </g>
  7722. <g v-else-if="ajaxData.mhskg3140 == false" id="31_21-0on_46_">
  7723. <line
  7724. fill="none"
  7725. stroke="#419B48"
  7726. stroke-width="2.5"
  7727. stroke-miterlimit="10"
  7728. x1="538.552"
  7729. y1="690.847"
  7730. x2="552.052"
  7731. y2="690.847"
  7732. ></line>
  7733. <path
  7734. fill="#419B48"
  7735. d="M543.202,712.66c0-1.438,1.174-2.604,2.606-2.604s2.604,1.17,2.604,2.604 c0,1.438-1.171,2.605-2.604,2.605S543.202,714.095,543.202,712.66 M541.145,712.66c0,2.576,2.089,4.666,4.666,4.666 c2.576,0,4.665-2.09,4.665-4.666c0-2.58-2.091-4.67-4.665-4.67C543.235,707.99,541.145,710.08,541.145,712.66L541.145,712.66z"
  7736. ></path>
  7737. <line
  7738. fill="none"
  7739. stroke="#419B48"
  7740. stroke-width="2"
  7741. stroke-miterlimit="10"
  7742. x1="552.357"
  7743. y1="694.035"
  7744. x2="545.302"
  7745. y2="708.996"
  7746. ></line>
  7747. </g>
  7748. </g>
  7749. </g>
  7750. <g id="data">
  7751. <g id="_x31__x5F_">
  7752. <text
  7753. transform="matrix(1 0 0 1 490.4875 46.8218)"
  7754. fill="#3D8144"
  7755. font-family="'MicrosoftYaHei'"
  7756. font-size="10.6069"
  7757. >
  7758. {{ ajaxData.mhsIaa }}
  7759. </text>
  7760. <text
  7761. transform="matrix(1 0 0 1 490.4875 68.6948)"
  7762. fill="#3D8144"
  7763. font-family="'MicrosoftYaHei'"
  7764. font-size="10.6069"
  7765. >
  7766. {{ ajaxData.mhspmw }}
  7767. </text>
  7768. <text
  7769. transform="matrix(1 0 0 1 490.4875 116.6479)"
  7770. fill="#3D8144"
  7771. font-family="'MicrosoftYaHei'"
  7772. font-size="10.6069"
  7773. >
  7774. {{ ajaxData.mhsuxkv }}
  7775. </text>
  7776. <text
  7777. transform="matrix(1 0 0 1 490.4875 140.7554)"
  7778. fill="#3D8144"
  7779. font-family="'MicrosoftYaHei'"
  7780. font-size="10.6069"
  7781. >
  7782. {{ ajaxData.mhsfhz }}
  7783. </text>
  7784. <text
  7785. transform="matrix(1 0 0 1 490.4875 92.8745)"
  7786. fill="#3D8144"
  7787. font-family="'MicrosoftYaHei'"
  7788. font-size="10.6069"
  7789. >
  7790. {{ ajaxData.mhsqmvar }}
  7791. </text>
  7792. <text
  7793. transform="matrix(1 0 0 1 490.4875 166.5874)"
  7794. fill="#3D8144"
  7795. font-family="'MicrosoftYaHei'"
  7796. font-size="10.6069"
  7797. >
  7798. {{ ajaxData.mhscos }}
  7799. </text>
  7800. </g>
  7801. <g id="_x32__x5F_">
  7802. <text
  7803. transform="matrix(1 0 0 1 971.3054 120.3589)"
  7804. fill="#3B8646"
  7805. font-family="'MicrosoftYaHei'"
  7806. font-size="10.6069"
  7807. >
  7808. {{ ajaxData.mhsuakv }}
  7809. </text>
  7810. <text
  7811. transform="matrix(1 0 0 1 971.3054 145.062)"
  7812. fill="#3B8646"
  7813. font-family="'MicrosoftYaHei'"
  7814. font-size="10.6069"
  7815. >
  7816. {{ ajaxData.mhsubkv }}
  7817. </text>
  7818. <text
  7819. transform="matrix(1 0 0 1 971.3054 169.2417)"
  7820. fill="#3B8646"
  7821. font-family="'MicrosoftYaHei'"
  7822. font-size="10.6069"
  7823. >
  7824. {{ ajaxData.mhsuckv }}
  7825. </text>
  7826. <text
  7827. transform="matrix(1 0 0 1 971.3054 193.0054)"
  7828. fill="#3B8646"
  7829. font-family="'MicrosoftYaHei'"
  7830. font-size="10.6069"
  7831. >
  7832. {{ ajaxData.mhsu0kv }}
  7833. </text>
  7834. </g>
  7835. <g id="_x34__x5F_">
  7836. <text
  7837. transform="matrix(1 0 0 1 334.3875 431.1304)"
  7838. fill="#3B8646"
  7839. font-family="'MicrosoftYaHei'"
  7840. font-size="10.6069"
  7841. >
  7842. {{ ajaxData.mhsymwdzb1 }}
  7843. </text>
  7844. <text
  7845. transform="matrix(1 0 0 1 334.3875 451.4321)"
  7846. fill="#3B8646"
  7847. font-family="'MicrosoftYaHei'"
  7848. font-size="10.6069"
  7849. >
  7850. {{ ajaxData.mhsrzwdzb1 }}
  7851. </text>
  7852. <text
  7853. transform="matrix(1 0 0 1 334.3875 475.0483)"
  7854. fill="#3B8646"
  7855. font-family="'MicrosoftYaHei'"
  7856. font-size="10.6069"
  7857. >
  7858. {{ ajaxData.mhsdwzb1 }}
  7859. </text>
  7860. <text
  7861. transform="matrix(1 0 0 1 334.3875 499.8979)"
  7862. fill="#3B8646"
  7863. font-family="'MicrosoftYaHei'"
  7864. font-size="10.6069"
  7865. >
  7866. {{ ajaxData.mhsIaazb1 }}
  7867. </text>
  7868. <text
  7869. transform="matrix(1 0 0 1 334.3875 521.1987)"
  7870. fill="#3B8646"
  7871. font-family="'MicrosoftYaHei'"
  7872. font-size="10.6069"
  7873. >
  7874. {{ ajaxData.mhsPmwzb1 }}
  7875. </text>
  7876. <text
  7877. transform="matrix(1 0 0 1 334.3875 546.8149)"
  7878. fill="#3B8646"
  7879. font-family="'MicrosoftYaHei'"
  7880. font-size="10.6069"
  7881. >
  7882. {{ ajaxData.mhsqmvarzb1 }}
  7883. </text>
  7884. </g>
  7885. <g id="_x35__x5F_">
  7886. <text
  7887. transform="matrix(1 0 0 1 1045.0095 431.9077)"
  7888. fill="#3B8646"
  7889. font-family="'MicrosoftYaHei'"
  7890. font-size="10.6069"
  7891. >
  7892. {{ ajaxData.mhsymwdzb2 }}
  7893. </text>
  7894. <text
  7895. transform="matrix(1 0 0 1 1045.0095 452.2095)"
  7896. fill="#3B8646"
  7897. font-family="'MicrosoftYaHei'"
  7898. font-size="10.6069"
  7899. >
  7900. {{ ajaxData.mhsrzwdzb2 }}
  7901. </text>
  7902. <text
  7903. transform="matrix(1 0 0 1 1045.0095 475.8257)"
  7904. fill="#3B8646"
  7905. font-family="'MicrosoftYaHei'"
  7906. font-size="10.6069"
  7907. >
  7908. {{ ajaxData.mhsdwzb2 }}
  7909. </text>
  7910. <text
  7911. transform="matrix(1 0 0 1 1045.0095 500.6753)"
  7912. fill="#3B8646"
  7913. font-family="'MicrosoftYaHei'"
  7914. font-size="10.6069"
  7915. >
  7916. {{ ajaxData.mhslaazb2 }}
  7917. </text>
  7918. <text
  7919. transform="matrix(1 0 0 1 1045.0095 521.9761)"
  7920. fill="#3B8646"
  7921. font-family="'MicrosoftYaHei'"
  7922. font-size="10.6069"
  7923. >
  7924. {{ ajaxData.mhspmwzb2 }}
  7925. </text>
  7926. <text
  7927. transform="matrix(1 0 0 1 1045.0095 547.5923)"
  7928. fill="#3B8646"
  7929. font-family="'MicrosoftYaHei'"
  7930. font-size="10.6069"
  7931. >
  7932. {{ ajaxData.mhsqmvarzb2 }}
  7933. </text>
  7934. </g>
  7935. <g id="_x36__x5F_">
  7936. <text
  7937. transform="matrix(1 0 0 1 1478.1902 477.2935)"
  7938. fill="#3B8646"
  7939. font-family="'MicrosoftYaHei'"
  7940. font-size="10.6069"
  7941. >
  7942. {{ ajaxData.mhsuabkvzb2 }}
  7943. </text>
  7944. <text
  7945. transform="matrix(1 0 0 1 1478.1902 501.9946)"
  7946. fill="#3B8646"
  7947. font-family="'MicrosoftYaHei'"
  7948. font-size="10.6069"
  7949. >
  7950. {{ ajaxData.mhsubckvzb2 }}
  7951. </text>
  7952. <text
  7953. transform="matrix(1 0 0 1 1478.1902 526.1753)"
  7954. fill="#3B8646"
  7955. font-family="'MicrosoftYaHei'"
  7956. font-size="10.6069"
  7957. >
  7958. {{ ajaxData.mhsucakvzb2 }}
  7959. </text>
  7960. </g>
  7961. <g id="_x37__x5F_">
  7962. <text
  7963. transform="matrix(1 0 0 1 104.1086 1028.6421)"
  7964. fill="#3B8646"
  7965. font-family="'MicrosoftYaHei'"
  7966. font-size="10.6069"
  7967. >
  7968. {{ ajaxData.mhslaajd1 }}
  7969. </text>
  7970. <text
  7971. transform="matrix(1 0 0 1 104.1086 1061.1421)"
  7972. fill="#3B8646"
  7973. font-family="'MicrosoftYaHei'"
  7974. font-size="10.6069"
  7975. >
  7976. {{ ajaxData.mhspmwjd1 }}
  7977. </text>
  7978. <text
  7979. transform="matrix(1 0 0 1 104.1086 1094.1421)"
  7980. fill="#3B8646"
  7981. font-family="'MicrosoftYaHei'"
  7982. font-size="10.6069"
  7983. >
  7984. {{ ajaxData.mhsqmvarjd1 }}
  7985. </text>
  7986. </g>
  7987. <g id="_x38__x5F_">
  7988. <text
  7989. transform="matrix(1 0 0 1 253.6135 1028.6421)"
  7990. fill="#3B8646"
  7991. font-family="'MicrosoftYaHei'"
  7992. font-size="10.6069"
  7993. >
  7994. {{ ajaxData.mhslaazy }}
  7995. </text>
  7996. <text
  7997. transform="matrix(1 0 0 1 253.6135 1061.1421)"
  7998. fill="#3B8646"
  7999. font-family="'MicrosoftYaHei'"
  8000. font-size="10.6069"
  8001. >
  8002. {{ ajaxData.mhspmwzy }}
  8003. </text>
  8004. <text
  8005. transform="matrix(1 0 0 1 253.6135 1094.1421)"
  8006. fill="#3B8646"
  8007. font-family="'MicrosoftYaHei'"
  8008. font-size="10.6069"
  8009. >
  8010. {{ ajaxData.mhsqmvarzy }}
  8011. </text>
  8012. </g>
  8013. <g id="_x39__x5F_">
  8014. <text
  8015. transform="matrix(1 0 0 1 353.3376 1028.6421)"
  8016. fill="#3B8646"
  8017. font-family="'MicrosoftYaHei'"
  8018. font-size="10.6069"
  8019. >
  8020. {{ ajaxData.mhslaadr2 }}
  8021. </text>
  8022. <text
  8023. transform="matrix(1 0 0 1 353.3376 1061.1421)"
  8024. fill="#3B8646"
  8025. font-family="'MicrosoftYaHei'"
  8026. font-size="10.6069"
  8027. >
  8028. {{ ajaxData.mhspmwdr2 }}
  8029. </text>
  8030. <text
  8031. transform="matrix(1 0 0 1 353.3376 1094.1421)"
  8032. fill="#3B8646"
  8033. font-family="'MicrosoftYaHei'"
  8034. font-size="10.6069"
  8035. >
  8036. {{ ajaxData.mhsqmvardr2 }}
  8037. </text>
  8038. </g>
  8039. <g id="_x31__x5F_0">
  8040. <text
  8041. transform="matrix(1 0 0 1 459.1667 1028.6421)"
  8042. fill="#3B8646"
  8043. font-family="'MicrosoftYaHei'"
  8044. font-size="10.6069"
  8045. >
  8046. {{ ajaxData.mhslaadr1 }}
  8047. </text>
  8048. <text
  8049. transform="matrix(1 0 0 1 459.1667 1061.1421)"
  8050. fill="#3B8646"
  8051. font-family="'MicrosoftYaHei'"
  8052. font-size="10.6069"
  8053. >
  8054. {{ ajaxData.mhspmwdr1 }}
  8055. </text>
  8056. <text
  8057. transform="matrix(1 0 0 1 459.1667 1094.1421)"
  8058. fill="#3B8646"
  8059. font-family="'MicrosoftYaHei'"
  8060. font-size="10.6069"
  8061. >
  8062. {{ ajaxData.mhsqmvardr1 }}
  8063. </text>
  8064. </g>
  8065. <g id="_x31__x5F_1">
  8066. <text
  8067. transform="matrix(1 0 0 1 555.0168 1028.6421)"
  8068. fill="#3B8646"
  8069. font-family="'MicrosoftYaHei'"
  8070. font-size="10.6069"
  8071. >
  8072. {{ ajaxData.mhslaadk }}
  8073. </text>
  8074. <text
  8075. transform="matrix(1 0 0 1 555.0168 1061.1421)"
  8076. fill="#3B8646"
  8077. font-family="'MicrosoftYaHei'"
  8078. font-size="10.6069"
  8079. >
  8080. {{ ajaxData.mhspmwdk }}
  8081. </text>
  8082. <text
  8083. transform="matrix(1 0 0 1 555.0168 1094.1421)"
  8084. fill="#3B8646"
  8085. font-family="'MicrosoftYaHei'"
  8086. font-size="10.6069"
  8087. >
  8088. {{ ajaxData.mhsqmvardk }}
  8089. </text>
  8090. </g>
  8091. <g id="_x31__x5F_2">
  8092. <text
  8093. transform="matrix(1 0 0 1 650.3254 1028.6421)"
  8094. fill="#3B8646"
  8095. font-family="'MicrosoftYaHei'"
  8096. font-size="10.6069"
  8097. >
  8098. -.--
  8099. </text>
  8100. <text
  8101. transform="matrix(1 0 0 1 650.3254 1061.1421)"
  8102. fill="#3B8646"
  8103. font-family="'MicrosoftYaHei'"
  8104. font-size="10.6069"
  8105. >
  8106. -.--
  8107. </text>
  8108. <text
  8109. transform="matrix(1 0 0 1 650.3254 1094.1421)"
  8110. fill="#3B8646"
  8111. font-family="'MicrosoftYaHei'"
  8112. font-size="10.6069"
  8113. >
  8114. -.--
  8115. </text>
  8116. </g>
  8117. <g id="_x31__x5F_3">
  8118. <text
  8119. transform="matrix(1 0 0 1 755.53 1028.6421)"
  8120. fill="#3B8646"
  8121. font-family="'MicrosoftYaHei'"
  8122. font-size="10.6069"
  8123. >
  8124. {{ ajaxData.mhslaafc3 }}
  8125. </text>
  8126. <text
  8127. transform="matrix(1 0 0 1 755.53 1061.1421)"
  8128. fill="#3B8646"
  8129. font-family="'MicrosoftYaHei'"
  8130. font-size="10.6069"
  8131. >
  8132. {{ ajaxData.mhspmwfc3 }}
  8133. </text>
  8134. <text
  8135. transform="matrix(1 0 0 1 755.53 1094.1421)"
  8136. fill="#3B8646"
  8137. font-family="'MicrosoftYaHei'"
  8138. font-size="10.6069"
  8139. >
  8140. {{ ajaxData.mhsqmvarfc3 }}
  8141. </text>
  8142. </g>
  8143. <g>
  8144. <text
  8145. transform="matrix(1 0 0 1 856.0125 1028.6421)"
  8146. fill="#3B8646"
  8147. font-family="'MicrosoftYaHei'"
  8148. font-size="10.6069"
  8149. >
  8150. {{ ajaxData.mhslaafc2 }}
  8151. </text>
  8152. <text
  8153. transform="matrix(1 0 0 1 856.0125 1061.1421)"
  8154. fill="#3B8646"
  8155. font-family="'MicrosoftYaHei'"
  8156. font-size="10.6069"
  8157. >
  8158. {{ ajaxData.mhspmwfc2 }}
  8159. </text>
  8160. <text
  8161. transform="matrix(1 0 0 1 856.0125 1094.1421)"
  8162. fill="#3B8646"
  8163. font-family="'MicrosoftYaHei'"
  8164. font-size="10.6069"
  8165. >
  8166. {{ ajaxData.mhsqmvarfc2 }}
  8167. </text>
  8168. </g>
  8169. <g>
  8170. <text
  8171. transform="matrix(1 0 0 1 958.2996 1028.6421)"
  8172. fill="#3B8646"
  8173. font-family="'MicrosoftYaHei'"
  8174. font-size="10.6069"
  8175. >
  8176. {{ ajaxData.mhslaafc1 }}
  8177. </text>
  8178. <text
  8179. transform="matrix(1 0 0 1 958.2996 1061.1421)"
  8180. fill="#3B8646"
  8181. font-family="'MicrosoftYaHei'"
  8182. font-size="10.6069"
  8183. >
  8184. {{ ajaxData.mhspmwfc1 }}
  8185. </text>
  8186. <text
  8187. transform="matrix(1 0 0 1 958.2996 1094.1421)"
  8188. fill="#3B8646"
  8189. font-family="'MicrosoftYaHei'"
  8190. font-size="10.6069"
  8191. >
  8192. {{ ajaxData.mhsqmvargc1 }}
  8193. </text>
  8194. </g>
  8195. <g>
  8196. <text
  8197. transform="matrix(1 0 0 1 1102.7458 1028.6421)"
  8198. fill="#3B8646"
  8199. font-family="'MicrosoftYaHei'"
  8200. font-size="10.6069"
  8201. >
  8202. -.--
  8203. </text>
  8204. <text
  8205. transform="matrix(1 0 0 1 1102.7458 1061.1421)"
  8206. fill="#3B8646"
  8207. font-family="'MicrosoftYaHei'"
  8208. font-size="10.6069"
  8209. >
  8210. -.--
  8211. </text>
  8212. <text
  8213. transform="matrix(1 0 0 1 1102.7458 1094.1421)"
  8214. fill="#3B8646"
  8215. font-family="'MicrosoftYaHei'"
  8216. font-size="10.6069"
  8217. >
  8218. -.--
  8219. </text>
  8220. </g>
  8221. <g>
  8222. <text
  8223. transform="matrix(1 0 0 1 1199.5701 1028.6421)"
  8224. fill="#3B8646"
  8225. font-family="'MicrosoftYaHei'"
  8226. font-size="10.6069"
  8227. >
  8228. -.--
  8229. </text>
  8230. <text
  8231. transform="matrix(1 0 0 1 1199.5701 1061.1421)"
  8232. fill="#3B8646"
  8233. font-family="'MicrosoftYaHei'"
  8234. font-size="10.6069"
  8235. >
  8236. -.--
  8237. </text>
  8238. <text
  8239. transform="matrix(1 0 0 1 1199.5701 1094.1421)"
  8240. fill="#3B8646"
  8241. font-family="'MicrosoftYaHei'"
  8242. font-size="10.6069"
  8243. >
  8244. -.--
  8245. </text>
  8246. </g>
  8247. <g>
  8248. <text
  8249. transform="matrix(1 0 0 1 1375.4138 1028.6421)"
  8250. fill="#3B8646"
  8251. font-family="'MicrosoftYaHei'"
  8252. font-size="10.6069"
  8253. >
  8254. {{ ajaxData.mhslaafc4 }}
  8255. </text>
  8256. <text
  8257. transform="matrix(1 0 0 1 1375.4138 1061.1421)"
  8258. fill="#3B8646"
  8259. font-family="'MicrosoftYaHei'"
  8260. font-size="10.6069"
  8261. >
  8262. {{ ajaxData.mhspmwfc4 }}
  8263. </text>
  8264. <text
  8265. transform="matrix(1 0 0 1 1375.4138 1094.1421)"
  8266. fill="#3B8646"
  8267. font-family="'MicrosoftYaHei'"
  8268. font-size="10.6069"
  8269. >
  8270. {{ ajaxData.mhsqmvarfc4 }}
  8271. </text>
  8272. </g>
  8273. <g>
  8274. <text
  8275. transform="matrix(1 0 0 1 1481.5759 1028.6421)"
  8276. fill="#3B8646"
  8277. font-family="'MicrosoftYaHei'"
  8278. font-size="10.6069"
  8279. >
  8280. -.--
  8281. </text>
  8282. <text
  8283. transform="matrix(1 0 0 1 1481.5759 1061.1421)"
  8284. fill="#3B8646"
  8285. font-family="'MicrosoftYaHei'"
  8286. font-size="10.6069"
  8287. >
  8288. -.--
  8289. </text>
  8290. <text
  8291. transform="matrix(1 0 0 1 1481.5759 1094.1421)"
  8292. fill="#3B8646"
  8293. font-family="'MicrosoftYaHei'"
  8294. font-size="10.6069"
  8295. >
  8296. -.--
  8297. </text>
  8298. </g>
  8299. </g>
  8300. <g id="block">
  8301. <g>
  8302. <polyline
  8303. fill="none"
  8304. :stroke="ajaxData.mhssc301 ? red : green"
  8305. stroke-width="1.6"
  8306. stroke-miterlimit="10"
  8307. points="673.698,561.42 666.231,569.81 658.547,561.42 "
  8308. ></polyline>
  8309. <polyline
  8310. fill="none"
  8311. :stroke="ajaxData.mhssc301 ? red : green"
  8312. stroke-width="1.6"
  8313. stroke-miterlimit="10"
  8314. points="673.698,555.066 666.231,563.449 658.547,555.066 "
  8315. ></polyline>
  8316. <polyline
  8317. fill="none"
  8318. :stroke="ajaxData.mhssc301 ? red : green"
  8319. stroke-width="1.6"
  8320. stroke-miterlimit="10"
  8321. points="658.547,520.674 666.013,512.287 673.698,520.674 "
  8322. ></polyline>
  8323. <polyline
  8324. fill="none"
  8325. :stroke="ajaxData.mhssc301 ? red : green"
  8326. stroke-width="1.6"
  8327. stroke-miterlimit="10"
  8328. points="658.547,512.898 666.013,504.518 673.698,512.898 "
  8329. ></polyline>
  8330. </g>
  8331. <g>
  8332. <polyline
  8333. fill="none"
  8334. :stroke="ajaxData.mhssc302 ? red : green"
  8335. stroke-width="1.6"
  8336. stroke-miterlimit="10"
  8337. points="1347.552,561.42 1340.083,569.81 1332.398,561.42 "
  8338. ></polyline>
  8339. <polyline
  8340. fill="none"
  8341. :stroke="ajaxData.mhssc302 ? red : green"
  8342. stroke-width="1.6"
  8343. stroke-miterlimit="10"
  8344. points="1347.552,555.066 1340.083,563.449 1332.398,555.066 "
  8345. ></polyline>
  8346. <polyline
  8347. fill="none"
  8348. :stroke="ajaxData.mhssc302 ? red : green"
  8349. stroke-width="1.6"
  8350. stroke-miterlimit="10"
  8351. points="1332.398,520.674 1339.865,512.287 1347.552,520.674 "
  8352. ></polyline>
  8353. <polyline
  8354. fill="none"
  8355. :stroke="ajaxData.mhssc302 ? red : green"
  8356. stroke-width="1.6"
  8357. stroke-miterlimit="10"
  8358. points="1332.398,512.898 1339.865,504.518 1347.552,512.898 "
  8359. ></polyline>
  8360. </g>
  8361. <g>
  8362. <polyline
  8363. fill="none"
  8364. :stroke="ajaxData.mhssc318 ? red : green"
  8365. stroke-width="1.6"
  8366. stroke-miterlimit="10"
  8367. points="112.122,616.791 119.591,608.404 127.271,616.791 "
  8368. ></polyline>
  8369. <polyline
  8370. fill="none"
  8371. :stroke="ajaxData.mhssc318 ? red : green"
  8372. stroke-width="1.6"
  8373. stroke-miterlimit="10"
  8374. points="112.122,609.015 119.591,600.634 127.271,609.015 "
  8375. ></polyline>
  8376. </g>
  8377. <g>
  8378. <polyline
  8379. fill="none"
  8380. :stroke="ajaxData.mhssc317 ? red : green"
  8381. stroke-width="1.6"
  8382. stroke-miterlimit="10"
  8383. points="274.861,658.537 267.396,666.927 259.711,658.537 "
  8384. ></polyline>
  8385. <polyline
  8386. fill="none"
  8387. :stroke="ajaxData.mhssc317 ? red : green"
  8388. stroke-width="1.6"
  8389. stroke-miterlimit="10"
  8390. points="274.861,652.183 267.396,660.566 259.711,652.183 "
  8391. ></polyline>
  8392. <polyline
  8393. fill="none"
  8394. :stroke="ajaxData.mhssc317 ? red : green"
  8395. stroke-width="1.6"
  8396. stroke-miterlimit="10"
  8397. points="259.711,617.791 267.179,609.404 274.861,617.791 "
  8398. ></polyline>
  8399. <polyline
  8400. fill="none"
  8401. :stroke="ajaxData.mhssc317 ? red : green"
  8402. stroke-width="1.6"
  8403. stroke-miterlimit="10"
  8404. points="259.711,610.015 267.179,601.634 274.861,610.015 "
  8405. ></polyline>
  8406. </g>
  8407. <g>
  8408. <polyline
  8409. fill="none"
  8410. :stroke="ajaxData.mhssc316 ? red : green"
  8411. stroke-width="1.6"
  8412. stroke-miterlimit="10"
  8413. points="374.74,658.537 367.273,666.927 359.591,658.537 "
  8414. ></polyline>
  8415. <polyline
  8416. fill="none"
  8417. :stroke="ajaxData.mhssc316 ? red : green"
  8418. stroke-width="1.6"
  8419. stroke-miterlimit="10"
  8420. points="374.74,652.183 367.273,660.566 359.591,652.183 "
  8421. ></polyline>
  8422. <polyline
  8423. fill="none"
  8424. :stroke="ajaxData.mhssc316 ? red : green"
  8425. stroke-width="1.6"
  8426. stroke-miterlimit="10"
  8427. points="359.591,617.791 367.058,609.404 374.74,617.791 "
  8428. ></polyline>
  8429. <polyline
  8430. fill="none"
  8431. :stroke="ajaxData.mhssc316 ? red : green"
  8432. stroke-width="1.6"
  8433. stroke-miterlimit="10"
  8434. points="359.591,610.015 367.058,601.634 374.74,610.015 "
  8435. ></polyline>
  8436. </g>
  8437. <g>
  8438. <polyline
  8439. fill="none"
  8440. :stroke="ajaxData.mhssc315 ? red : green"
  8441. stroke-width="1.6"
  8442. stroke-miterlimit="10"
  8443. points="480.413,658.537 472.947,666.927 465.264,658.537 "
  8444. ></polyline>
  8445. <polyline
  8446. fill="none"
  8447. :stroke="ajaxData.mhssc315 ? red : green"
  8448. stroke-width="1.6"
  8449. stroke-miterlimit="10"
  8450. points="480.413,652.183 472.947,660.566 465.264,652.183 "
  8451. ></polyline>
  8452. <polyline
  8453. fill="none"
  8454. :stroke="ajaxData.mhssc315 ? red : green"
  8455. stroke-width="1.6"
  8456. stroke-miterlimit="10"
  8457. points="465.264,617.791 472.731,609.404 480.413,617.791 "
  8458. ></polyline>
  8459. <polyline
  8460. fill="none"
  8461. :stroke="ajaxData.mhssc315 ? red : green"
  8462. stroke-width="1.6"
  8463. stroke-miterlimit="10"
  8464. points="465.264,610.015 472.731,601.634 480.413,610.015 "
  8465. ></polyline>
  8466. </g>
  8467. <g>
  8468. <polyline
  8469. fill="none"
  8470. :stroke="ajaxData.mhssc314 ? red : green"
  8471. stroke-width="1.6"
  8472. stroke-miterlimit="10"
  8473. points="572.891,658.537 565.427,666.927 557.74,658.537 "
  8474. ></polyline>
  8475. <polyline
  8476. fill="none"
  8477. :stroke="ajaxData.mhssc314 ? red : green"
  8478. stroke-width="1.6"
  8479. stroke-miterlimit="10"
  8480. points="572.891,652.183 565.427,660.566 557.74,652.183 "
  8481. ></polyline>
  8482. <polyline
  8483. fill="none"
  8484. :stroke="ajaxData.mhssc314 ? red : green"
  8485. stroke-width="1.6"
  8486. stroke-miterlimit="10"
  8487. points="557.74,617.791 565.21,609.404 572.891,617.791 "
  8488. ></polyline>
  8489. <polyline
  8490. fill="none"
  8491. :stroke="ajaxData.mhssc314 ? red : green"
  8492. stroke-width="1.6"
  8493. stroke-miterlimit="10"
  8494. points="557.74,610.015 565.21,601.634 572.891,610.015 "
  8495. ></polyline>
  8496. </g>
  8497. <g>
  8498. <polyline
  8499. fill="none"
  8500. :stroke="ajaxData.mhssc319 ? red : green"
  8501. stroke-width="1.6"
  8502. stroke-miterlimit="10"
  8503. points="658.177,617.791 665.641,609.404 673.323,617.791 "
  8504. ></polyline>
  8505. <polyline
  8506. fill="none"
  8507. :stroke="ajaxData.mhssc319 ? red : green"
  8508. stroke-width="1.6"
  8509. stroke-miterlimit="10"
  8510. points="658.177,610.015 665.641,601.634 673.323,610.015 "
  8511. ></polyline>
  8512. </g>
  8513. <g>
  8514. <polyline
  8515. fill="none"
  8516. :stroke="ajaxData.mhssc313 ? red : green"
  8517. stroke-width="1.6"
  8518. stroke-miterlimit="10"
  8519. points="776.778,658.537 769.312,666.927 761.635,658.537 "
  8520. ></polyline>
  8521. <polyline
  8522. fill="none"
  8523. :stroke="ajaxData.mhssc313 ? red : green"
  8524. stroke-width="1.6"
  8525. stroke-miterlimit="10"
  8526. points="776.778,652.183 769.312,660.566 761.635,652.183 "
  8527. ></polyline>
  8528. <polyline
  8529. fill="none"
  8530. :stroke="ajaxData.mhssc313 ? red : green"
  8531. stroke-width="1.6"
  8532. stroke-miterlimit="10"
  8533. points="761.635,617.791 769.096,609.404 776.778,617.791 "
  8534. ></polyline>
  8535. <polyline
  8536. fill="none"
  8537. :stroke="ajaxData.mhssc313 ? red : green"
  8538. stroke-width="1.6"
  8539. stroke-miterlimit="10"
  8540. points="761.635,610.015 769.096,601.634 776.778,610.015 "
  8541. ></polyline>
  8542. </g>
  8543. <g>
  8544. <polyline
  8545. fill="none"
  8546. :stroke="ajaxData.mhssc312 ? red : green"
  8547. stroke-width="1.6"
  8548. stroke-miterlimit="10"
  8549. points="877.445,658.537 869.979,666.927 862.302,658.537 "
  8550. ></polyline>
  8551. <polyline
  8552. fill="none"
  8553. :stroke="ajaxData.mhssc312 ? red : green"
  8554. stroke-width="1.6"
  8555. stroke-miterlimit="10"
  8556. points="877.445,652.183 869.979,660.566 862.302,652.183 "
  8557. ></polyline>
  8558. <polyline
  8559. fill="none"
  8560. :stroke="ajaxData.mhssc312 ? red : green"
  8561. stroke-width="1.6"
  8562. stroke-miterlimit="10"
  8563. points="862.302,617.791 869.763,609.404 877.445,617.791 "
  8564. ></polyline>
  8565. <polyline
  8566. fill="none"
  8567. :stroke="ajaxData.mhssc312 ? red : green"
  8568. stroke-width="1.6"
  8569. stroke-miterlimit="10"
  8570. points="862.302,610.015 869.763,601.634 877.445,610.015 "
  8571. ></polyline>
  8572. </g>
  8573. <g>
  8574. <polyline
  8575. fill="none"
  8576. :stroke="ajaxData.mhssc311 ? red : green"
  8577. stroke-width="1.6"
  8578. stroke-miterlimit="10"
  8579. points="979.552,658.537 972.081,666.927 964.398,658.537 "
  8580. ></polyline>
  8581. <polyline
  8582. fill="none"
  8583. :stroke="ajaxData.mhssc311 ? red : green"
  8584. stroke-width="1.6"
  8585. stroke-miterlimit="10"
  8586. points="979.552,652.183 972.081,660.566 964.398,652.183 "
  8587. ></polyline>
  8588. <polyline
  8589. fill="none"
  8590. :stroke="ajaxData.mhssc311 ? red : green"
  8591. stroke-width="1.6"
  8592. stroke-miterlimit="10"
  8593. points="964.398,617.791 971.865,609.404 979.552,617.791 "
  8594. ></polyline>
  8595. <polyline
  8596. fill="none"
  8597. :stroke="ajaxData.mhssc311 ? red : green"
  8598. stroke-width="1.6"
  8599. stroke-miterlimit="10"
  8600. points="964.398,610.015 971.865,601.634 979.552,610.015 "
  8601. ></polyline>
  8602. </g>
  8603. <g>
  8604. <polyline
  8605. fill="none"
  8606. :stroke="ajaxData.mhssc322 ? red : green"
  8607. stroke-width="1.6"
  8608. stroke-miterlimit="10"
  8609. points="1219.594,658.537 1212.117,666.927 1204.435,658.537 "
  8610. ></polyline>
  8611. <polyline
  8612. fill="none"
  8613. :stroke="ajaxData.mhssc322 ? red : green"
  8614. stroke-width="1.6"
  8615. stroke-miterlimit="10"
  8616. points="1219.594,652.183 1212.117,660.566 1204.435,652.183 "
  8617. ></polyline>
  8618. <polyline
  8619. fill="none"
  8620. :stroke="ajaxData.mhssc322 ? red : green"
  8621. stroke-width="1.6"
  8622. stroke-miterlimit="10"
  8623. points="1204.435,617.791 1211.902,609.404 1219.594,617.791 "
  8624. ></polyline>
  8625. <polyline
  8626. fill="none"
  8627. :stroke="ajaxData.mhssc322 ? red : green"
  8628. stroke-width="1.6"
  8629. stroke-miterlimit="10"
  8630. points="1204.435,610.015 1211.902,601.634 1219.594,610.015 "
  8631. ></polyline>
  8632. </g>
  8633. <g>
  8634. <polyline
  8635. fill="none"
  8636. :stroke="ajaxData.mhssc321 ? red : green"
  8637. stroke-width="1.6"
  8638. stroke-miterlimit="10"
  8639. points="1395.794,658.537 1388.325,666.927 1380.643,658.537 "
  8640. ></polyline>
  8641. <polyline
  8642. fill="none"
  8643. :stroke="ajaxData.mhssc321 ? red : green"
  8644. stroke-width="1.6"
  8645. stroke-miterlimit="10"
  8646. points="1395.794,652.183 1388.325,660.566 1380.643,652.183 "
  8647. ></polyline>
  8648. <polyline
  8649. fill="none"
  8650. :stroke="ajaxData.mhssc321 ? red : green"
  8651. stroke-width="1.6"
  8652. stroke-miterlimit="10"
  8653. points="1380.643,617.791 1388.11,609.404 1395.794,617.791 "
  8654. ></polyline>
  8655. <polyline
  8656. fill="none"
  8657. :stroke="ajaxData.mhssc321 ? red : green"
  8658. stroke-width="1.6"
  8659. stroke-miterlimit="10"
  8660. points="1380.643,610.015 1388.11,601.634 1395.794,610.015 "
  8661. ></polyline>
  8662. </g>
  8663. </g>
  8664. <g id="scGary">
  8665. <g>
  8666. <polyline
  8667. fill="none"
  8668. stroke="#A9A9A9"
  8669. stroke-width="1.6"
  8670. stroke-miterlimit="10"
  8671. points="1123.885,657.537 1116.419,665.927 1108.733,657.537 "
  8672. ></polyline>
  8673. <polyline
  8674. fill="none"
  8675. stroke="#A9A9A9"
  8676. stroke-width="1.6"
  8677. stroke-miterlimit="10"
  8678. points="1123.885,651.183 1116.419,659.566 1108.733,651.183 "
  8679. ></polyline>
  8680. <polyline
  8681. fill="none"
  8682. stroke="#A9A9A9"
  8683. stroke-width="1.6"
  8684. stroke-miterlimit="10"
  8685. points="1108.733,616.791 1116.2,608.404 1123.885,616.791 "
  8686. ></polyline>
  8687. <polyline
  8688. fill="none"
  8689. stroke="#A9A9A9"
  8690. stroke-width="1.6"
  8691. stroke-miterlimit="10"
  8692. points="1108.733,609.015 1116.2,600.634 1123.885,609.015 "
  8693. ></polyline>
  8694. </g>
  8695. <g>
  8696. <polyline
  8697. fill="none"
  8698. stroke="#A9A9A9"
  8699. stroke-width="1.6"
  8700. stroke-miterlimit="10"
  8701. points="1490.177,617.791 1497.641,609.404 1505.323,617.791 "
  8702. ></polyline>
  8703. <polyline
  8704. fill="none"
  8705. stroke="#A9A9A9"
  8706. stroke-width="1.6"
  8707. stroke-miterlimit="10"
  8708. points="1490.177,610.015 1497.641,601.634 1505.323,610.015 "
  8709. ></polyline>
  8710. </g>
  8711. <rect
  8712. x="262.244"
  8713. y="344.98"
  8714. opacity="0.9"
  8715. fill="#1B2522"
  8716. enable-background="new "
  8717. width="149.407"
  8718. height="21.63"
  8719. ></rect>
  8720. <rect
  8721. x="262.244"
  8722. y="368.969"
  8723. opacity="0.9"
  8724. fill="#1B2522"
  8725. enable-background="new "
  8726. width="149.407"
  8727. height="21.63"
  8728. ></rect>
  8729. <rect
  8730. x="262.244"
  8731. y="392.94"
  8732. opacity="0.9"
  8733. fill="#1B2522"
  8734. enable-background="new "
  8735. width="149.407"
  8736. height="21.633"
  8737. ></rect>
  8738. <g>
  8739. <text
  8740. transform="matrix(1 0 0 1 301.2751 361.3022)"
  8741. fill="#919CA0"
  8742. font-family="'MicrosoftYaHei'"
  8743. font-size="10.6069"
  8744. >
  8745. la
  8746. </text>
  8747. <text
  8748. transform="matrix(1 0 0 1 312.1877 361.3022)"
  8749. fill="#919CA0"
  8750. font-family="'MicrosoftYaHei'"
  8751. font-size="10.6069"
  8752. >
  8753. (A)
  8754. </text>
  8755. <text
  8756. transform="matrix(1 0 0 1 327.6301 361.3022)"
  8757. fill="#919CA0"
  8758. font-family="'MicrosoftYaHei'"
  8759. font-size="10.6069"
  8760. >
  8761. :
  8762. </text>
  8763. </g>
  8764. <g>
  8765. <text
  8766. transform="matrix(1 0 0 1 291.3708 382.7817)"
  8767. fill="#919CA0"
  8768. font-family="'MicrosoftYaHei'"
  8769. font-size="10.6069"
  8770. >
  8771. P(MW):
  8772. </text>
  8773. </g>
  8774. <g>
  8775. <text
  8776. transform="matrix(1 0 0 1 283.9812 408.854)"
  8777. fill="#919CA0"
  8778. font-family="'MicrosoftYaHei'"
  8779. font-size="10.6069"
  8780. >
  8781. Q
  8782. </text>
  8783. <text
  8784. transform="matrix(1 0 0 1 291.8459 408.854)"
  8785. fill="#919CA0"
  8786. font-family="'MicrosoftYaHei'"
  8787. font-size="10.6069"
  8788. >
  8789. (MVar)
  8790. </text>
  8791. <text
  8792. transform="matrix(1 0 0 1 326.6301 408.854)"
  8793. fill="#919CA0"
  8794. font-family="'MicrosoftYaHei'"
  8795. font-size="10.6069"
  8796. >
  8797. :
  8798. </text>
  8799. </g>
  8800. <rect
  8801. x="971.305"
  8802. y="344.98"
  8803. opacity="0.9"
  8804. fill="#1B2522"
  8805. enable-background="new "
  8806. width="149.407"
  8807. height="21.63"
  8808. ></rect>
  8809. <rect
  8810. x="971.305"
  8811. y="368.969"
  8812. opacity="0.9"
  8813. fill="#1B2522"
  8814. enable-background="new "
  8815. width="149.407"
  8816. height="21.63"
  8817. ></rect>
  8818. <rect
  8819. x="971.305"
  8820. y="392.94"
  8821. opacity="0.9"
  8822. fill="#1B2522"
  8823. enable-background="new "
  8824. width="149.407"
  8825. height="21.633"
  8826. ></rect>
  8827. <g>
  8828. <text
  8829. transform="matrix(1 0 0 1 1010.3357 361.3022)"
  8830. fill="#919CA0"
  8831. font-family="'MicrosoftYaHei'"
  8832. font-size="10.6069"
  8833. >
  8834. la
  8835. </text>
  8836. <text
  8837. transform="matrix(1 0 0 1 1021.2478 361.3022)"
  8838. fill="#919CA0"
  8839. font-family="'MicrosoftYaHei'"
  8840. font-size="10.6069"
  8841. >
  8842. (A)
  8843. </text>
  8844. <text
  8845. transform="matrix(1 0 0 1 1036.6912 361.3022)"
  8846. fill="#919CA0"
  8847. font-family="'MicrosoftYaHei'"
  8848. font-size="10.6069"
  8849. >
  8850. :
  8851. </text>
  8852. </g>
  8853. <g>
  8854. <text
  8855. transform="matrix(1 0 0 1 1000.4314 382.7817)"
  8856. fill="#919CA0"
  8857. font-family="'MicrosoftYaHei'"
  8858. font-size="10.6069"
  8859. >
  8860. P(MW):
  8861. </text>
  8862. </g>
  8863. <g>
  8864. <text
  8865. transform="matrix(1 0 0 1 993.0417 408.854)"
  8866. fill="#919CA0"
  8867. font-family="'MicrosoftYaHei'"
  8868. font-size="10.6069"
  8869. >
  8870. Q
  8871. </text>
  8872. <text
  8873. transform="matrix(1 0 0 1 1000.905 408.854)"
  8874. fill="#919CA0"
  8875. font-family="'MicrosoftYaHei'"
  8876. font-size="10.6069"
  8877. >
  8878. (MVar)
  8879. </text>
  8880. <text
  8881. transform="matrix(1 0 0 1 1035.6912 408.854)"
  8882. fill="#919CA0"
  8883. font-family="'MicrosoftYaHei'"
  8884. font-size="10.6069"
  8885. >
  8886. :
  8887. </text>
  8888. </g>
  8889. <g id="_x34__x5F_">
  8890. <text
  8891. transform="matrix(1 0 0 1 334.3875 359.8979)"
  8892. fill="#3B8646"
  8893. font-family="'MicrosoftYaHei'"
  8894. font-size="10.6069"
  8895. >
  8896. {{ ajaxData.mhsIaazb1s }}
  8897. </text>
  8898. <text
  8899. transform="matrix(1 0 0 1 334.3875 381.1987)"
  8900. fill="#3B8646"
  8901. font-family="'MicrosoftYaHei'"
  8902. font-size="10.6069"
  8903. >
  8904. {{ ajaxData.mhsPmwzb1s }}
  8905. </text>
  8906. <text
  8907. transform="matrix(1 0 0 1 334.3875 406.8149)"
  8908. fill="#3B8646"
  8909. font-family="'MicrosoftYaHei'"
  8910. font-size="10.6069"
  8911. >
  8912. {{ ajaxData.mhsqmvarzb1s }}
  8913. </text>
  8914. </g>
  8915. <g id="_x34__x5F_">
  8916. <text
  8917. transform="matrix(1 0 0 1 1045.0095 359.8979)"
  8918. fill="#3B8646"
  8919. font-family="'MicrosoftYaHei'"
  8920. font-size="10.6069"
  8921. >
  8922. {{ ajaxData.mhslaazb2s }}
  8923. </text>
  8924. <text
  8925. transform="matrix(1 0 0 1 1045.0095 381.1987)"
  8926. fill="#3B8646"
  8927. font-family="'MicrosoftYaHei'"
  8928. font-size="10.6069"
  8929. >
  8930. {{ ajaxData.mhspmwzb2s }}
  8931. </text>
  8932. <text
  8933. transform="matrix(1 0 0 1 1045.0095 406.8149)"
  8934. fill="#3B8646"
  8935. font-family="'MicrosoftYaHei'"
  8936. font-size="10.6069"
  8937. >
  8938. {{ ajaxData.mhsqmvarzb2s }}
  8939. </text>
  8940. </g>
  8941. <rect
  8942. x="23.638"
  8943. y="462.191"
  8944. opacity="0.9"
  8945. fill="#1B2522"
  8946. enable-background="new "
  8947. width="154.674"
  8948. height="21.638"
  8949. ></rect>
  8950. <rect
  8951. x="23.638"
  8952. y="486.177"
  8953. opacity="0.9"
  8954. fill="#1B2522"
  8955. enable-background="new "
  8956. width="154.674"
  8957. height="21.633"
  8958. ></rect>
  8959. <rect
  8960. x="23.638"
  8961. y="510.153"
  8962. opacity="0.9"
  8963. fill="#1B2522"
  8964. enable-background="new "
  8965. width="154.674"
  8966. height="21.633"
  8967. ></rect>
  8968. <g>
  8969. <text
  8970. transform="matrix(1 0 0 1 36.5876 476.5142)"
  8971. fill="#929CA0"
  8972. font-family="'MicrosoftYaHei'"
  8973. font-size="10.6069"
  8974. >
  8975. Uab(kV):
  8976. </text>
  8977. </g>
  8978. <g>
  8979. <text
  8980. transform="matrix(1 0 0 1 35.6765 500.9946)"
  8981. fill="#929CA0"
  8982. font-family="'MicrosoftYaHei'"
  8983. font-size="10.6069"
  8984. >
  8985. Ubc(kV):
  8986. </text>
  8987. </g>
  8988. <g>
  8989. <text
  8990. transform="matrix(1 0 0 1 37.1326 526.0669)"
  8991. fill="#929CA0"
  8992. font-family="'MicrosoftYaHei'"
  8993. font-size="10.6069"
  8994. >
  8995. Uca(kV):
  8996. </text>
  8997. </g>
  8998. <g id="_x36__x5F_">
  8999. <text
  9000. transform="matrix(1 0 0 1 83.1902 477.2935)"
  9001. fill="#3B8646"
  9002. font-family="'MicrosoftYaHei'"
  9003. font-size="10.6069"
  9004. >
  9005. {{ ajaxData.mhsuabkvzb1 }}
  9006. </text>
  9007. <text
  9008. transform="matrix(1 0 0 1 83.1902 501.9946)"
  9009. fill="#3B8646"
  9010. font-family="'MicrosoftYaHei'"
  9011. font-size="10.6069"
  9012. >
  9013. {{ ajaxData.mhsubckvzb1 }}
  9014. </text>
  9015. <text
  9016. transform="matrix(1 0 0 1 83.1902 526.1753)"
  9017. fill="#3B8646"
  9018. font-family="'MicrosoftYaHei'"
  9019. font-size="10.6069"
  9020. >
  9021. {{ ajaxData.mhsucakvzb1 }}
  9022. </text>
  9023. </g>
  9024. </g>
  9025. </svg>
  9026. </template>
  9027. </previewPicture>
  9028. </el-col>
  9029. </el-row>
  9030. </div>
  9031. </template>
  9032. <script>
  9033. import previewPicture from "../previewPicture.vue";
  9034. import { BoosterStation } from "./BoosterStation";
  9035. export default {
  9036. components: {
  9037. previewPicture,
  9038. },
  9039. data() {
  9040. return {
  9041. green: "#02A434",
  9042. red: "#FF0000",
  9043. ajaxData: {},
  9044. interval: "",
  9045. };
  9046. },
  9047. created() {
  9048. this.boosterStation = new BoosterStation();
  9049. this.refreshTPData();
  9050. this.interval = setInterval(this.refreshTPData, 1000);
  9051. },
  9052. methods: {
  9053. closed() {
  9054. clearInterval(this.interval);
  9055. },
  9056. refreshTPData() {
  9057. this.boosterStation.getDatas("MHS_FDC", this.bindValue);
  9058. },
  9059. bindValue(msg) {
  9060. this.ajaxData = msg;
  9061. },
  9062. },
  9063. };
  9064. </script>
  9065. <style scoped>
  9066. .center-bar {
  9067. position: relative;
  9068. box-sizing: border-box;
  9069. height: 90vh;
  9070. background-color: #000000;
  9071. padding-top: 10px;
  9072. padding-left: 5px;
  9073. padding-right: 5px;
  9074. padding-bottom: 5px;
  9075. margin-top: 0;
  9076. margin-right: 0;
  9077. margin-bottom: 3px;
  9078. margin-left: 0;
  9079. display: flex;
  9080. flex-direction: column;
  9081. }
  9082. .svg {
  9083. width: 100%;
  9084. height: 100%;
  9085. }
  9086. </style>