qs.vue 205 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050
  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.0"
  12. id="图层_1"
  13. x="0px"
  14. y="0px"
  15. width="1755.701px"
  16. height="853.164px"
  17. viewBox="0 0 1755.701 853.164"
  18. enable-background="new 0 0 1755.701 853.164"
  19. xml:space="preserve"
  20. >
  21. <g xmlns="http://www.w3.org/2000/svg" id="other">
  22. <g>
  23. <rect x="1075.391" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.488"/>
  24. <rect x="1075.391" y="20.497" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.488"/>
  25. <rect x="1075.391" y="40.992" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
  26. <g>
  27. <text transform="matrix(1 0 0 1 1094.1143 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
  28. <text transform="matrix(1 0 0 1 1103.4404 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
  29. <text transform="matrix(1 0 0 1 1116.6396 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  30. </g>
  31. <g>
  32. <text transform="matrix(1 0 0 1 1078.2119 32.3096)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
  33. </g>
  34. <g>
  35. <text transform="matrix(1 0 0 1 1078.1885 54.5947)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
  36. </g>
  37. <rect x="1075.391" y="61.482" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
  38. <g>
  39. <text transform="matrix(1 0 0 1 1084.6885 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ux </text>
  40. <text transform="matrix(1 0 0 1 1098.4658 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  41. <text transform="matrix(1 0 0 1 1116.6396 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  42. </g>
  43. <rect x="1075.391" y="82.089" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
  44. <g>
  45. <text transform="matrix(1 0 0 1 1089.4717 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> F </text>
  46. <text transform="matrix(1 0 0 1 1098.4658 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (Hz) </text>
  47. <text transform="matrix(1 0 0 1 1116.6396 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  48. </g>
  49. <rect x="1075.391" y="101.989" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
  50. <g>
  51. <text transform="matrix(1 0 0 1 1093.165 115.9297)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COSΦ: </text>
  52. </g>
  53. </g>
  54. <g>
  55. <rect x="223.104" y="273.91" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.488"/>
  56. <rect x="223.104" y="294.407" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.488"/>
  57. <rect x="223.104" y="314.902" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
  58. <g>
  59. <text transform="matrix(1 0 0 1 241.8281 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
  60. <text transform="matrix(1 0 0 1 251.1543 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
  61. <text transform="matrix(1 0 0 1 264.3535 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  62. </g>
  63. <g>
  64. <text transform="matrix(1 0 0 1 225.9258 306.2197)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
  65. </g>
  66. <g>
  67. <text transform="matrix(1 0 0 1 225.9023 328.5049)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
  68. </g>
  69. <rect x="223.104" y="335.393" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
  70. <g>
  71. <text transform="matrix(1 0 0 1 240.8789 349.333)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
  72. </g>
  73. </g>
  74. <g>
  75. <rect x="223.104" y="432.944" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.487"/>
  76. <rect x="223.104" y="453.441" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.487"/>
  77. <rect x="223.104" y="473.937" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
  78. <g>
  79. <text transform="matrix(1 0 0 1 241.8281 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
  80. <text transform="matrix(1 0 0 1 251.1543 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
  81. <text transform="matrix(1 0 0 1 264.3535 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  82. </g>
  83. <g>
  84. <text transform="matrix(1 0 0 1 225.9258 465.2539)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
  85. </g>
  86. <g>
  87. <text transform="matrix(1 0 0 1 225.9023 487.5391)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
  88. </g>
  89. <rect x="223.104" y="494.427" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
  90. <g>
  91. <text transform="matrix(1 0 0 1 240.8789 508.3672)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
  92. </g>
  93. </g>
  94. <g>
  95. <rect x="1282.632" y="273.91" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.488"/>
  96. <rect x="1282.632" y="294.407" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.488"/>
  97. <rect x="1282.632" y="314.902" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
  98. <g>
  99. <text transform="matrix(1 0 0 1 1301.3555 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
  100. <text transform="matrix(1 0 0 1 1310.6816 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
  101. <text transform="matrix(1 0 0 1 1323.8809 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  102. </g>
  103. <g>
  104. <text transform="matrix(1 0 0 1 1285.4531 306.2197)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
  105. </g>
  106. <g>
  107. <text transform="matrix(1 0 0 1 1285.4297 328.5049)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
  108. </g>
  109. <rect x="1282.632" y="335.393" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
  110. <g>
  111. <text transform="matrix(1 0 0 1 1300.4063 349.333)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
  112. </g>
  113. </g>
  114. <g>
  115. <rect x="1282.632" y="432.944" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.487"/>
  116. <rect x="1282.632" y="453.441" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.487"/>
  117. <rect x="1282.632" y="473.937" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
  118. <g>
  119. <text transform="matrix(1 0 0 1 1301.3555 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
  120. <text transform="matrix(1 0 0 1 1310.6816 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
  121. <text transform="matrix(1 0 0 1 1323.8809 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  122. </g>
  123. <g>
  124. <text transform="matrix(1 0 0 1 1285.4531 465.2539)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
  125. </g>
  126. <g>
  127. <text transform="matrix(1 0 0 1 1285.4297 487.5391)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
  128. </g>
  129. <rect x="1282.632" y="494.427" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
  130. <g>
  131. <text transform="matrix(1 0 0 1 1300.4063 508.3672)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
  132. </g>
  133. </g>
  134. <g>
  135. <rect x="881.479" y="122.963" fill="#971C55" width="3.048" height="66.809"/>
  136. <rect x="881.479" y="211.688" fill="#971C55" width="3.048" height="10.833"/>
  137. <text transform="matrix(1 0 0 1 953.1416 92.0361)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-0 </text>
  138. <text transform="matrix(1 0 0 1 899.7881 113.8691)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-3 </text>
  139. <text transform="matrix(1 0 0 1 899.7881 159.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111 </text>
  140. <text transform="matrix(1 0 0 1 899.7881 207.084)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-1 </text>
  141. <g>
  142. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="966.777" y1="71.52" x2="966.777" y2="59.219"/>
  143. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="958.314" y1="65.369" x2="966.777" y2="65.369"/>
  144. <line fill="none" stroke="#971C55" stroke-width="2.5" stroke-miterlimit="10" x1="953.664" y1="65.369" x2="958.473" y2="65.369"/>
  145. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="970.164" y1="68.98" x2="970.164" y2="61.758"/>
  146. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="973.549" y1="67.568" x2="973.549" y2="63.17"/>
  147. </g>
  148. <g>
  149. <text transform="matrix(1 0 0 1 774.665 135.5605)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-03 </text>
  150. <g>
  151. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="829.987" y1="127.071" x2="829.987" y2="139.37"/>
  152. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="838.448" y1="133.223" x2="829.987" y2="133.223"/>
  153. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="826.599" y1="129.61" x2="826.599" y2="136.831"/>
  154. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="823.215" y1="131.021" x2="823.215" y2="135.421"/>
  155. </g>
  156. </g>
  157. <rect x="882.495" y="29.457" fill="#971C55" width="3.047" height="70.394"/>
  158. <rect x="884.337" y="63.846" fill="#971C55" width="21.158" height="3.047"/>
  159. <rect x="903.972" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
  160. <rect x="911.438" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
  161. <rect x="912.961" y="63.846" fill="#971C55" width="32.713" height="3.047"/>
  162. <rect x="944.151" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
  163. <rect x="927.795" y="49.851" fill="#971C55" width="3.047" height="14.508"/>
  164. <rect x="951.618" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
  165. <rect x="884.019" y="86.871" fill="#971C55" width="21.158" height="3.047"/>
  166. <rect x="860.569" y="132.077" fill="#971C55" width="21.157" height="3.047"/>
  167. <polygon fill="#971C55" points="877.907,30.184 884.025,17.164 890.13,30.188 "/>
  168. <g>
  169. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="929.636" cy="41.047" r="8.804"/>
  170. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="921.907" cy="27.77" r="8.804"/>
  171. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="932.786,45.075 929.62,41.943 926.669,45.075 "/>
  172. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="929.554" y1="41.86" x2="929.554" y2="36.339"/>
  173. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="925.06,32.138 921.894,29.006 918.942,32.138 "/>
  174. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="921.827" y1="28.923" x2="921.827" y2="23.401"/>
  175. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="936.728" cy="27.769" r="8.803"/>
  176. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="939.88,32.138 936.714,29.006 933.763,32.138 "/>
  177. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="936.647" y1="28.923" x2="936.647" y2="23.401"/>
  178. </g>
  179. <g>
  180. <g>
  181. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="936.66" y1="95.883" x2="936.66" y2="83.584"/>
  182. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="928.197" y1="89.734" x2="936.66" y2="89.734"/>
  183. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="940.048" y1="93.345" x2="940.048" y2="86.123"/>
  184. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="943.433" y1="91.934" x2="943.433" y2="87.535"/>
  185. </g>
  186. </g>
  187. <text transform="matrix(1 0 0 1 953.1416 182.2773)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-01 </text>
  188. <rect x="884.019" y="177.112" fill="#971C55" width="21.158" height="3.047"/>
  189. <g>
  190. <g>
  191. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="936.66" y1="186.124" x2="936.66" y2="173.825"/>
  192. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="928.197" y1="179.976" x2="936.66" y2="179.976"/>
  193. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="940.048" y1="183.586" x2="940.048" y2="176.364"/>
  194. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="943.433" y1="182.175" x2="943.433" y2="177.776"/>
  195. </g>
  196. </g>
  197. </g>
  198. <g>
  199. <rect x="8.158" y="83.059" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.491"/>
  200. <rect x="8.158" y="103.556" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
  201. <rect x="8.158" y="124.052" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
  202. <g>
  203. <text transform="matrix(1 0 0 1 25.1016 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
  204. <text transform="matrix(1 0 0 1 39.9004 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  205. <text transform="matrix(1 0 0 1 58.0767 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  206. </g>
  207. <g>
  208. <text transform="matrix(1 0 0 1 24.1226 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
  209. <text transform="matrix(1 0 0 1 39.9004 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  210. <text transform="matrix(1 0 0 1 58.0757 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  211. </g>
  212. <g>
  213. <text transform="matrix(1 0 0 1 25.6855 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
  214. <text transform="matrix(1 0 0 1 39.9004 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  215. <text transform="matrix(1 0 0 1 58.0767 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  216. </g>
  217. <rect x="8.158" y="144.364" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
  218. <g>
  219. <text transform="matrix(1 0 0 1 23.2778 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
  220. <text transform="matrix(1 0 0 1 45.1396 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
  221. <text transform="matrix(1 0 0 1 58.0757 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  222. </g>
  223. </g>
  224. <g>
  225. <rect x="8.158" y="444.174" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.491"/>
  226. <rect x="8.158" y="464.671" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
  227. <g>
  228. <text transform="matrix(1 0 0 1 25.1016 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
  229. <text transform="matrix(1 0 0 1 39.9004 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  230. <text transform="matrix(1 0 0 1 58.0767 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  231. </g>
  232. <g>
  233. <text transform="matrix(1 0 0 1 24.1226 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
  234. <text transform="matrix(1 0 0 1 39.9004 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  235. <text transform="matrix(1 0 0 1 58.0757 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  236. </g>
  237. <rect x="8.158" y="485.209" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
  238. <g>
  239. <text transform="matrix(1 0 0 1 23.2778 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
  240. <text transform="matrix(1 0 0 1 45.1396 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
  241. <text transform="matrix(1 0 0 1 58.0757 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  242. </g>
  243. </g>
  244. <g>
  245. <rect x="228.825" y="110.965" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  246. <g>
  247. <text transform="matrix(1 0 0 1 238.4941 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
  248. <text transform="matrix(1 0 0 1 260.5679 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  249. <text transform="matrix(1 0 0 1 278.7432 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  250. </g>
  251. <rect x="228.825" y="131.465" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  252. <g>
  253. <text transform="matrix(1 0 0 1 239.0781 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
  254. <text transform="matrix(1 0 0 1 260.5679 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  255. <text transform="matrix(1 0 0 1 278.7432 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  256. </g>
  257. <rect x="228.825" y="151.965" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  258. <g>
  259. <text transform="matrix(1 0 0 1 240.0571 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uca </text>
  260. <text transform="matrix(1 0 0 1 260.5679 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  261. <text transform="matrix(1 0 0 1 278.7432 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  262. </g>
  263. </g>
  264. <g>
  265. <rect x="928.197" y="446.289" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  266. <g>
  267. <text transform="matrix(1 0 0 1 937.8662 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
  268. <text transform="matrix(1 0 0 1 959.9404 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  269. <text transform="matrix(1 0 0 1 978.1152 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  270. </g>
  271. <rect x="928.197" y="466.789" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  272. <g>
  273. <text transform="matrix(1 0 0 1 938.4502 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
  274. <text transform="matrix(1 0 0 1 959.9404 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
  275. <text transform="matrix(1 0 0 1 978.1152 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  276. </g>
  277. <rect x="928.197" y="487.289" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
  278. <g>
  279. <text transform="matrix(1 0 0 1 943.3174 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
  280. <text transform="matrix(1 0 0 1 965.1787 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
  281. <text transform="matrix(1 0 0 1 978.1143 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
  282. </g>
  283. </g>
  284. <text transform="matrix(0.9268 0 0 1 11.1357 211.6885)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 110kV Ⅰ母线 </text>
  285. <g>
  286. <rect x="635.38" y="435.406" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
  287. <rect x="635.38" y="454.575" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
  288. <rect x="635.38" y="473.743" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
  289. <g>
  290. <text transform="matrix(1 0 0 1 638.4219 447.6299)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 油面温度(℃): </text>
  291. </g>
  292. <g>
  293. <text transform="matrix(1 0 0 1 638.4229 466.6299)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 绕阻温度(℃): </text>
  294. </g>
  295. <g>
  296. <text transform="matrix(1 0 0 1 680.0576 486.8799)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 挡位 </text>
  297. </g>
  298. </g>
  299. <g>
  300. <rect x="1613.259" y="432.892" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
  301. <rect x="1613.259" y="452.061" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.294"/>
  302. <rect x="1613.259" y="471.229" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
  303. <g>
  304. <text transform="matrix(1 0 0 1 1616.3008 445.1152)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 油面温度(℃): </text>
  305. </g>
  306. <g>
  307. <text transform="matrix(1 0 0 1 1616.3027 464.1152)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 绕阻温度(℃): </text>
  308. </g>
  309. <g>
  310. <text transform="matrix(1 0 0 1 1657.9375 484.3652)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 挡位 </text>
  311. </g>
  312. </g>
  313. <g>
  314. <g>
  315. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="984.408" y1="276.369" x2="984.408" y2="288.67"/>
  316. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="992.871" y1="282.52" x2="984.408" y2="282.52"/>
  317. <line fill="none" stroke="#971C55" stroke-width="2.5" stroke-miterlimit="10" x1="1005.638" y1="282.52" x2="992.713" y2="282.52"/>
  318. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="981.021" y1="278.908" x2="981.021" y2="286.131"/>
  319. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="977.637" y1="280.32" x2="977.637" y2="284.719"/>
  320. </g>
  321. <rect x="1052.283" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
  322. <rect x="1044.817" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
  323. <rect x="1013.627" y="280.996" fill="#971C55" width="32.714" height="3.047"/>
  324. <rect x="1012.104" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
  325. <rect x="1004.637" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
  326. <text transform="matrix(1 0 0 1 1027.8916 262.0195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 11-9 </text>
  327. <text transform="matrix(1 0 0 1 1113.8916 305.0195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 11-09 </text>
  328. <g>
  329. <g>
  330. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1125.76" y1="289.798" x2="1125.76" y2="277.499"/>
  331. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1117.297" y1="283.649" x2="1125.76" y2="283.649"/>
  332. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1129.147" y1="287.26" x2="1129.147" y2="280.038"/>
  333. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1132.533" y1="285.849" x2="1132.533" y2="281.45"/>
  334. </g>
  335. </g>
  336. <rect x="485.419" y="270.247" fill="#971C55" width="3.047" height="66.809"/>
  337. <rect x="485.419" y="361.94" fill="#971C55" width="3.047" height="33.404"/>
  338. <text transform="matrix(1 0 0 1 557.0811 239.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-0 </text>
  339. <text transform="matrix(1 0 0 1 498.5371 263.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-1 </text>
  340. <text transform="matrix(1 0 0 1 503.7275 306.2197)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102 </text>
  341. <text transform="matrix(1 0 0 1 503.7275 354.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-3 </text>
  342. <g>
  343. <text transform="matrix(1 0 0 1 378.6045 283.5195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-01 </text>
  344. <g>
  345. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="433.927" y1="275.03" x2="433.927" y2="287.329"/>
  346. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="442.388" y1="281.182" x2="433.927" y2="281.182"/>
  347. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="430.538" y1="277.569" x2="430.538" y2="284.79"/>
  348. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="427.154" y1="278.979" x2="427.154" y2="283.38"/>
  349. </g>
  350. </g>
  351. <rect x="486.435" y="224.289" fill="#971C55" width="3.048" height="23.437"/>
  352. <rect x="487.958" y="234.61" fill="#971C55" width="21.158" height="3.047"/>
  353. <rect x="1074.376" y="270.247" fill="#971C55" width="3.047" height="11.313"/>
  354. <rect x="1075.391" y="224.289" fill="#971C55" width="3.048" height="23.437"/>
  355. <rect x="464.509" y="280.036" fill="#971C55" width="21.158" height="3.047"/>
  356. <g>
  357. <text transform="matrix(1 0 0 1 379.6045 374.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-03 </text>
  358. <g>
  359. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="434.927" y1="365.951" x2="434.927" y2="378.25"/>
  360. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="443.388" y1="372.103" x2="434.927" y2="372.103"/>
  361. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="431.538" y1="368.49" x2="431.538" y2="375.711"/>
  362. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="428.154" y1="369.9" x2="428.154" y2="374.301"/>
  363. </g>
  364. </g>
  365. <rect x="465.509" y="369.434" fill="#971C55" width="21.158" height="3.047"/>
  366. <g>
  367. <g>
  368. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="540.6" y1="243.622" x2="540.6" y2="231.323"/>
  369. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="532.137" y1="237.474" x2="540.6" y2="237.474"/>
  370. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="543.987" y1="241.084" x2="543.987" y2="233.862"/>
  371. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="547.372" y1="239.673" x2="547.372" y2="235.274"/>
  372. </g>
  373. </g>
  374. <text transform="matrix(1 0 0 1 557.0811 330.3184)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-02 </text>
  375. <rect x="487.958" y="325.153" fill="#971C55" width="21.158" height="3.047"/>
  376. <g>
  377. <g>
  378. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="540.6" y1="334.165" x2="540.6" y2="321.866"/>
  379. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="532.137" y1="328.017" x2="540.6" y2="328.017"/>
  380. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="543.987" y1="331.627" x2="543.987" y2="324.405"/>
  381. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="547.372" y1="330.216" x2="547.372" y2="325.817"/>
  382. </g>
  383. </g>
  384. <rect x="11.136" y="221.938" fill="#971C55" width="1744.565" height="2.25"/>
  385. <rect x="492.005" y="382.606" transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 275.8579 1017.3743)" fill="#A9165D" width="1.504" height="59.742"/>
  386. <rect x="511.086" y="405.997" transform="matrix(0.4801 -0.8772 0.8772 0.4801 -108.8342 671.481)" fill="#CAA51A" width="1.943" height="43.116"/>
  387. <polygon fill="#A9165D" points="518.153,396.753 532.623,397.198 523.033,408.043 "/>
  388. <rect x="528.912" y="437.227" fill="#CAA51A" width="2.604" height="18.126"/>
  389. <rect x="528.912" y="477.22" fill="#3EB9B0" width="2.604" height="4.478"/>
  390. <g>
  391. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="523.956" y1="482.688" x2="536.474" y2="482.688"/>
  392. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="526.127" y1="486.007" x2="534.303" y2="486.007"/>
  393. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="527.913" y1="489.511" x2="532.517" y2="489.511"/>
  394. </g>
  395. <polygon fill="#CAA51A" points="533.46,455.245 530.212,464.476 526.969,455.243 "/>
  396. <rect x="525.101" y="445.521" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
  397. <rect x="1074.087" y="283.52" fill="#971C55" width="2.605" height="21.609"/>
  398. <rect x="1074.087" y="326.996" fill="#3EB9B0" width="2.605" height="4.477"/>
  399. <g>
  400. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1069.132" y1="332.464" x2="1081.649" y2="332.464"/>
  401. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1071.302" y1="335.783" x2="1079.478" y2="335.783"/>
  402. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1073.089" y1="339.287" x2="1077.692" y2="339.287"/>
  403. </g>
  404. <polygon fill="#971C55" points="1078.636,305.021 1075.388,314.252 1072.144,305.02 "/>
  405. <rect x="1070.276" y="295.298" fill="none" stroke="#971C55" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.139"/>
  406. <g>
  407. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="488.429" cy="424.016" r="11.213"/>
  408. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="488.431" cy="405.558" r="11.213"/>
  409. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="484.416,429.147 488.449,425.159 492.207,429.147 "/>
  410. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="488.533" y1="425.053" x2="488.533" y2="418.021"/>
  411. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="484.416,411.121 488.449,407.132 492.207,411.121 "/>
  412. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="488.533" y1="407.027" x2="488.533" y2="399.994"/>
  413. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="503.889" cy="414.723" r="11.212"/>
  414. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="501.651,418.875 501.651,410.571 508.499,414.949 "/>
  415. </g>
  416. <rect x="484.961" y="516.904" fill="#CAA51A" width="2.25" height="29.32"/>
  417. <rect x="484.961" y="435.332" fill="#CAA51A" width="2.25" height="25.375"/>
  418. <g>
  419. <rect x="552.836" y="400.162" fill="#44426C" width="72.314" height="20.818"/>
  420. <text transform="matrix(1 0 0 1 568.7319 414.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #2主变 </text>
  421. </g>
  422. <g>
  423. <rect x="1044.349" y="356.452" fill="#44426C" width="72.314" height="20.818"/>
  424. <text transform="matrix(1 0 0 1 1049.4385 371.0049)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 110母线PT </text>
  425. </g>
  426. <g>
  427. <rect x="1617.388" y="398.718" fill="#44426C" width="72.314" height="20.818"/>
  428. <text transform="matrix(1 0 0 1 1633.2832 413.2705)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #1主变 </text>
  429. </g>
  430. <rect x="1053.808" y="280.997" fill="#971C55" width="41.374" height="3.047"/>
  431. <polyline fill="#971C55" points="1000.049,283.406 1000.049,313.686 998.065,313.686 998.065,283.406 "/>
  432. <polyline fill="#971C55" points="1033.881,284.406 1033.881,305.264 1031.897,305.264 1031.897,284.406 "/>
  433. <rect x="998.317" y="312.33" fill="#971C55" width="25.192" height="1.982"/>
  434. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1039.536" cy="326.589" r="8.804"/>
  435. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1024.259" cy="326.589" r="8.804"/>
  436. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1036.386,322.563 1039.552,325.693 1042.503,322.563 "/>
  437. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1039.618" y1="325.776" x2="1039.618" y2="331.298"/>
  438. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1039.536" cy="341.102" r="8.804"/>
  439. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1024.259" cy="341.102" r="8.804"/>
  440. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1036.386,337.075 1039.552,340.206 1042.503,337.075 "/>
  441. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1039.618" y1="340.289" x2="1039.618" y2="345.811"/>
  442. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1021.106,336.734 1024.272,339.867 1027.224,336.734 "/>
  443. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1024.34" y1="339.95" x2="1024.34" y2="345.471"/>
  444. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1031.455" cy="313.77" r="8.803"/>
  445. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1028.304,309.4 1031.47,312.533 1034.42,309.4 "/>
  446. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1031.535" y1="312.615" x2="1031.535" y2="318.138"/>
  447. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1025.34,330.646 1025.34,324.128 1019.965,327.563 "/>
  448. <rect x="406.2" y="404.569" fill="#971C55" width="69.888" height="3.049"/>
  449. <rect x="406.2" y="404.569" fill="#971C55" width="3.047" height="17.438"/>
  450. <text transform="matrix(1 0 0 1 448.0142 487.5391)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 302 </text>
  451. <text transform="matrix(1 0 0 1 360.5142 442.1885)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 021-0 </text>
  452. <g>
  453. <g>
  454. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="402.718" y1="453.743" x2="415.017" y2="453.743"/>
  455. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="408.868" y1="445.278" x2="408.868" y2="453.743"/>
  456. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="405.257" y1="457.127" x2="412.478" y2="457.127"/>
  457. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="406.667" y1="460.512" x2="411.068" y2="460.512"/>
  458. </g>
  459. </g>
  460. <rect x="433.24" y="404.362" fill="#971C55" width="2.604" height="21.637"/>
  461. <rect x="433.24" y="444.864" fill="#40B0A7" width="2.604" height="4.479"/>
  462. <g>
  463. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="428.283" y1="450.334" x2="440.801" y2="450.334"/>
  464. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="430.455" y1="453.651" x2="438.631" y2="453.651"/>
  465. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="432.24" y1="457.155" x2="436.844" y2="457.155"/>
  466. </g>
  467. <rect x="456.279" y="445.305" fill="#40B0A7" width="2.604" height="4.479"/>
  468. <g>
  469. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="451.323" y1="450.772" x2="463.84" y2="450.772"/>
  470. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="453.494" y1="454.092" x2="461.669" y2="454.092"/>
  471. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="455.28" y1="457.596" x2="459.883" y2="457.596"/>
  472. </g>
  473. <polygon fill="#971C55" points="437.787,425.889 434.539,435.122 431.296,425.887 "/>
  474. <polygon fill="#971C55" points="449.959,445.264 457.588,432.118 465.203,445.267 "/>
  475. <rect x="456.279" y="407.815" fill="#971C55" width="2.604" height="4.479"/>
  476. <polygon fill="#971C55" points="465.203,412.335 457.574,425.479 449.959,412.332 "/>
  477. <rect x="429.428" y="416.168" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.14"/>
  478. <rect x="1551.164" y="270.247" fill="#971C55" width="3.047" height="66.809"/>
  479. <rect x="1551.164" y="361.94" fill="#971C55" width="3.047" height="33.404"/>
  480. <text transform="matrix(1 0 0 1 1622.8262 239.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-0 </text>
  481. <text transform="matrix(1 0 0 1 1564.2813 263.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-1 </text>
  482. <text transform="matrix(1 0 0 1 1569.4727 306.2197)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101 </text>
  483. <text transform="matrix(1 0 0 1 1569.4727 354.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-3 </text>
  484. <g>
  485. <text transform="matrix(1 0 0 1 1444.3496 283.5195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-01 </text>
  486. <g>
  487. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1499.671" y1="275.03" x2="1499.671" y2="287.329"/>
  488. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1508.132" y1="281.182" x2="1499.671" y2="281.182"/>
  489. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1496.282" y1="277.569" x2="1496.282" y2="284.79"/>
  490. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1492.899" y1="278.979" x2="1492.899" y2="283.38"/>
  491. </g>
  492. </g>
  493. <rect x="1552.179" y="224.289" fill="#971C55" width="3.047" height="23.437"/>
  494. <rect x="1553.702" y="234.61" fill="#971C55" width="21.158" height="3.047"/>
  495. <rect x="1530.253" y="280.036" fill="#971C55" width="21.158" height="3.047"/>
  496. <g>
  497. <text transform="matrix(1 0 0 1 1445.3496 374.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-03 </text>
  498. <g>
  499. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1500.671" y1="365.951" x2="1500.671" y2="378.25"/>
  500. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1509.132" y1="372.103" x2="1500.671" y2="372.103"/>
  501. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1497.282" y1="368.49" x2="1497.282" y2="375.711"/>
  502. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1493.899" y1="369.9" x2="1493.899" y2="374.301"/>
  503. </g>
  504. </g>
  505. <rect x="1531.253" y="369.434" fill="#971C55" width="21.158" height="3.047"/>
  506. <g>
  507. <g>
  508. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1606.345" y1="243.622" x2="1606.345" y2="231.323"/>
  509. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1597.882" y1="237.474" x2="1606.345" y2="237.474"/>
  510. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1609.731" y1="241.084" x2="1609.731" y2="233.862"/>
  511. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1613.116" y1="239.673" x2="1613.116" y2="235.274"/>
  512. </g>
  513. </g>
  514. <text transform="matrix(1 0 0 1 1622.8262 330.3184)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-02 </text>
  515. <rect x="1553.702" y="325.153" fill="#971C55" width="21.158" height="3.047"/>
  516. <g>
  517. <g>
  518. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1606.345" y1="334.165" x2="1606.345" y2="321.866"/>
  519. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1597.882" y1="328.017" x2="1606.345" y2="328.017"/>
  520. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1609.731" y1="331.627" x2="1609.731" y2="324.405"/>
  521. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1613.116" y1="330.216" x2="1613.116" y2="325.817"/>
  522. </g>
  523. </g>
  524. <rect x="1557.76" y="382.591" transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 1709.7263 2017.5233)" fill="#A9165D" width="1.504" height="59.743"/>
  525. <rect x="1576.82" y="405.972" transform="matrix(0.4801 -0.8772 0.8772 0.4801 445.2793 1606.3535)" fill="#CAA51A" width="1.943" height="43.116"/>
  526. <polygon fill="#A9165D" points="1583.897,396.753 1598.367,397.198 1588.778,408.043 "/>
  527. <rect x="1594.657" y="437.227" fill="#CAA51A" width="2.604" height="18.126"/>
  528. <rect x="1594.657" y="477.22" fill="#3EB9B0" width="2.604" height="4.478"/>
  529. <g>
  530. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1589.7" y1="482.688" x2="1602.218" y2="482.688"/>
  531. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1591.872" y1="486.007" x2="1600.048" y2="486.007"/>
  532. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1593.657" y1="489.511" x2="1598.261" y2="489.511"/>
  533. </g>
  534. <polygon fill="#CAA51A" points="1599.205,455.245 1595.956,464.476 1592.714,455.243 "/>
  535. <rect x="1590.845" y="445.521" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
  536. <g>
  537. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1554.173" cy="424.016" r="11.213"/>
  538. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1554.176" cy="405.558" r="11.213"/>
  539. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1550.161,429.147 1554.193,425.159 1557.952,429.147 "/>
  540. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1554.277" y1="425.053" x2="1554.277" y2="418.021"/>
  541. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1550.161,411.121 1554.193,407.132 1557.952,411.121 "/>
  542. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1554.277" y1="407.027" x2="1554.277" y2="399.994"/>
  543. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1569.634" cy="414.723" r="11.212"/>
  544. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1567.396,418.875 1567.396,410.571 1574.243,414.949 "/>
  545. </g>
  546. <rect x="1550.706" y="516.904" fill="#CAA51A" width="2.25" height="29.32"/>
  547. <rect x="1550.706" y="435.332" fill="#CAA51A" width="2.25" height="25.375"/>
  548. <rect x="1471.944" y="404.569" fill="#971C55" width="69.889" height="3.049"/>
  549. <rect x="1471.944" y="404.569" fill="#971C55" width="3.047" height="17.438"/>
  550. <text transform="matrix(1 0 0 1 1512.7617 485.2793)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 301 </text>
  551. <text transform="matrix(1 0 0 1 1430.2617 440.6514)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 011-0 </text>
  552. <g>
  553. <g>
  554. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1468.463" y1="453.743" x2="1480.762" y2="453.743"/>
  555. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1474.612" y1="445.278" x2="1474.612" y2="453.743"/>
  556. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1471.001" y1="457.127" x2="1478.223" y2="457.127"/>
  557. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1472.411" y1="460.512" x2="1476.813" y2="460.512"/>
  558. </g>
  559. </g>
  560. <rect x="1498.984" y="404.362" fill="#971C55" width="2.604" height="21.637"/>
  561. <rect x="1498.984" y="444.864" fill="#40B0A7" width="2.604" height="4.479"/>
  562. <g>
  563. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1494.027" y1="450.334" x2="1506.546" y2="450.334"/>
  564. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1496.2" y1="453.651" x2="1504.376" y2="453.651"/>
  565. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1497.984" y1="457.155" x2="1502.589" y2="457.155"/>
  566. </g>
  567. <rect x="1522.022" y="445.305" fill="#40B0A7" width="2.605" height="4.479"/>
  568. <g>
  569. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1517.067" y1="450.772" x2="1529.585" y2="450.772"/>
  570. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1519.239" y1="454.092" x2="1527.413" y2="454.092"/>
  571. <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1521.024" y1="457.596" x2="1525.628" y2="457.596"/>
  572. </g>
  573. <polygon fill="#971C55" points="1503.532,425.889 1500.284,435.122 1497.04,425.887 "/>
  574. <polygon fill="#971C55" points="1515.704,445.264 1523.333,432.118 1530.948,445.267 "/>
  575. <rect x="1522.022" y="407.815" fill="#971C55" width="2.605" height="4.479"/>
  576. <polygon fill="#971C55" points="1530.948,412.335 1523.318,425.479 1515.704,412.332 "/>
  577. <rect x="1495.173" y="416.168" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.14"/>
  578. <text transform="matrix(0.9268 0 0 1 11.1357 535.3135)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 35kV Ⅱ母线 </text>
  579. <text transform="matrix(0.9268 0 0 1 932.5674 535.3135)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 35kV Ⅰ母线 </text>
  580. <rect x="424.19" y="634.959" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
  581. <rect x="1602.376" y="634.118" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
  582. </g>
  583. <g>
  584. <rect x="1606.354" y="549.24" fill="#CAA51A" width="2.25" height="12.485"/>
  585. <g>
  586. <rect x="576.662" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
  587. <text transform="matrix(1 0 0 1 584.001 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 2号滤波器 </text>
  588. </g>
  589. <g>
  590. <rect x="496.466" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  591. <text transform="matrix(1 0 0 1 503.8052 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 2号电抗器 </text>
  592. </g>
  593. <g>
  594. <rect x="393.636" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  595. <text transform="matrix(1 0 0 1 396.6357 731.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.5694"> 35KVⅡ母PT </text>
  596. </g>
  597. <g>
  598. <rect x="289.427" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  599. <text transform="matrix(1 0 0 1 300.4507 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场四线 </text>
  600. </g>
  601. <g>
  602. <rect x="206.423" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  603. <text transform="matrix(1 0 0 1 217.4468 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场五线 </text>
  604. </g>
  605. <g>
  606. <rect x="123.749" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  607. <text transform="matrix(1 0 0 1 134.7729 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场六线 </text>
  608. </g>
  609. <text transform="matrix(1 0 0 1 581.3286 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 321 </text>
  610. <text transform="matrix(1 0 0 1 498.5371 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 322 </text>
  611. <text transform="matrix(1 0 0 1 391.2036 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 32-9 </text>
  612. <rect x="11.136" y="546.226" fill="#C3A121" width="824.35" height="2.654"/>
  613. <text transform="matrix(1 0 0 1 589.5151 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  614. <rect x="594.025" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  615. <rect x="612.818" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  616. <rect x="612.818" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  617. <text transform="matrix(1 0 0 1 751.8286 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 300 </text>
  618. <text transform="matrix(1 0 0 1 938.8281 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 300-1 </text>
  619. <rect x="783.318" y="621.387" fill="#CAA51A" width="2.25" height="15.042"/>
  620. <rect x="783.424" y="634.183" fill="#CAA51A" width="200.411" height="2.25"/>
  621. <rect x="783.318" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  622. <rect x="982.318" y="621.387" fill="#CAA51A" width="2.25" height="15.042"/>
  623. <rect x="982.318" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  624. <polygon fill="#CAA51A" points="618.548,696.714 613.938,706.521 609.339,696.71 "/>
  625. <text transform="matrix(1 0 0 1 293.499 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 323 </text>
  626. <text transform="matrix(1 0 0 1 301.6855 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  627. <rect x="306.195" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  628. <rect x="324.989" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  629. <rect x="324.989" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  630. <polygon fill="#CAA51A" points="330.718,696.714 326.109,706.521 321.509,696.71 "/>
  631. <text transform="matrix(1 0 0 1 208.8081 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 324 </text>
  632. <text transform="matrix(1 0 0 1 216.9946 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  633. <rect x="221.504" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  634. <rect x="240.298" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  635. <rect x="240.298" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  636. <polygon fill="#CAA51A" points="246.027,696.714 241.418,706.521 236.818,696.71 "/>
  637. <text transform="matrix(1 0 0 1 127.1265 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 325 </text>
  638. <text transform="matrix(1 0 0 1 135.313 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  639. <rect x="139.823" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  640. <rect x="158.616" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  641. <rect x="158.616" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  642. <polygon fill="#CAA51A" points="164.346,696.714 159.736,706.521 155.137,696.71 "/>
  643. <text transform="matrix(1 0 0 1 506.229 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  644. <rect x="510.739" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  645. <rect x="529.532" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  646. <rect x="529.532" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  647. <polygon fill="#CAA51A" points="535.262,696.714 530.652,706.521 526.053,696.71 "/>
  648. <rect x="408.644" y="627.054" fill="#C3A121" width="2.25" height="22.135"/>
  649. <rect x="409.292" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  650. <g>
  651. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="402.89" y1="650.819" x2="416.611" y2="650.819"/>
  652. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="405.722" y1="654.597" x2="413.778" y2="654.597"/>
  653. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="407.295" y1="658.373" x2="412.205" y2="658.373"/>
  654. </g>
  655. <rect x="428.086" y="586.737" fill="#CAA51A" width="2.25" height="89.972"/>
  656. <rect x="428.086" y="549.24" fill="#CAA51A" width="2.25" height="20.375"/>
  657. <g>
  658. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="429.159" cy="700.099" r="8.804"/>
  659. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="429.16" cy="684.821" r="8.804"/>
  660. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="433.437,703.818 430.305,700.65 433.437,697.699 "/>
  661. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="430.222" y1="700.585" x2="424.701" y2="700.585"/>
  662. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="433.437,687.881 430.305,684.713 433.437,681.762 "/>
  663. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="430.222" y1="684.647" x2="424.701" y2="684.647"/>
  664. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="416.34" cy="692.017" r="8.803"/>
  665. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="419.617,695.076 416.485,691.91 419.617,688.959 "/>
  666. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="416.402" y1="691.844" x2="410.88" y2="691.844"/>
  667. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="442.082" cy="692.017" r="8.803"/>
  668. <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="440.325,695.277 440.325,688.758 445.701,692.195 "/>
  669. </g>
  670. <g>
  671. <rect x="1571.904" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
  672. <text transform="matrix(1 0 0 1 1571.8867 731.9414)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.6793"> 35KVⅠ母PT </text>
  673. </g>
  674. <g>
  675. <rect x="1207.66" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
  676. <text transform="matrix(1 0 0 1 1214.999 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号站用变 </text>
  677. </g>
  678. <g>
  679. <rect x="1113.892" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  680. <text transform="matrix(1 0 0 1 1121.2314 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号滤波器 </text>
  681. </g>
  682. <g>
  683. <rect x="1029.126" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  684. <text transform="matrix(1 0 0 1 1036.4658 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号电抗器 </text>
  685. </g>
  686. <text transform="matrix(1 0 0 1 1569.4727 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 31-9 </text>
  687. <rect x="932.567" y="546.226" fill="#C3A121" width="822.084" height="2.654"/>
  688. <text transform="matrix(1 0 0 1 1116.2764 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 315 </text>
  689. <text transform="matrix(1 0 0 1 1184.6104 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 314 </text>
  690. <text transform="matrix(1 0 0 1 1124.4639 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  691. <rect x="1128.325" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  692. <rect x="1128.974" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  693. <g>
  694. <g>
  695. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1123.569" y1="677.709" x2="1135.868" y2="677.709"/>
  696. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1129.722" y1="669.247" x2="1129.722" y2="677.709"/>
  697. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1126.108" y1="681.095" x2="1133.33" y2="681.095"/>
  698. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1127.519" y1="684.479" x2="1131.92" y2="684.479"/>
  699. </g>
  700. </g>
  701. <rect x="1044.95" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  702. <g>
  703. <g>
  704. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1040.194" y1="677.709" x2="1052.493" y2="677.709"/>
  705. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1046.347" y1="669.247" x2="1046.347" y2="677.709"/>
  706. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1042.733" y1="681.095" x2="1049.955" y2="681.095"/>
  707. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1044.144" y1="684.479" x2="1048.545" y2="684.479"/>
  708. </g>
  709. </g>
  710. <rect x="593.774" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  711. <g>
  712. <g>
  713. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="589.019" y1="677.709" x2="601.317" y2="677.709"/>
  714. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="595.171" y1="669.247" x2="595.171" y2="677.709"/>
  715. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="591.558" y1="681.095" x2="598.779" y2="681.095"/>
  716. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="592.968" y1="684.479" x2="597.369" y2="684.479"/>
  717. </g>
  718. </g>
  719. <rect x="510.488" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  720. <g>
  721. <g>
  722. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="505.732" y1="677.709" x2="518.031" y2="677.709"/>
  723. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="511.885" y1="669.247" x2="511.885" y2="677.709"/>
  724. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="508.271" y1="681.095" x2="515.493" y2="681.095"/>
  725. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="509.682" y1="684.479" x2="514.083" y2="684.479"/>
  726. </g>
  727. </g>
  728. <rect x="304.06" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  729. <g>
  730. <g>
  731. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="299.304" y1="677.709" x2="311.603" y2="677.709"/>
  732. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="305.456" y1="669.247" x2="305.456" y2="677.709"/>
  733. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="301.843" y1="681.095" x2="309.064" y2="681.095"/>
  734. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="303.253" y1="684.479" x2="307.654" y2="684.479"/>
  735. </g>
  736. </g>
  737. <rect x="221.254" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  738. <g>
  739. <g>
  740. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="216.498" y1="677.709" x2="228.797" y2="677.709"/>
  741. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="222.65" y1="669.247" x2="222.65" y2="677.709"/>
  742. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="219.037" y1="681.095" x2="226.259" y2="681.095"/>
  743. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="220.447" y1="684.479" x2="224.849" y2="684.479"/>
  744. </g>
  745. </g>
  746. <rect x="137.629" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  747. <g>
  748. <g>
  749. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="132.874" y1="677.709" x2="145.172" y2="677.709"/>
  750. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="139.026" y1="669.247" x2="139.026" y2="677.709"/>
  751. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="135.413" y1="681.095" x2="142.634" y2="681.095"/>
  752. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="136.823" y1="684.479" x2="141.224" y2="684.479"/>
  753. </g>
  754. </g>
  755. <rect x="1147.767" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  756. <rect x="1147.767" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  757. <polygon fill="#CAA51A" points="1153.496,696.714 1148.887,706.521 1144.287,696.71 "/>
  758. <g>
  759. <rect x="1298.712" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  760. <text transform="matrix(1 0 0 1 1309.7363 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场三线 </text>
  761. </g>
  762. <text transform="matrix(1 0 0 1 1301.0977 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 313 </text>
  763. <text transform="matrix(1 0 0 1 1309.2832 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  764. <rect x="1313.146" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  765. <rect x="1313.794" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  766. <g>
  767. <g>
  768. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1308.39" y1="677.709" x2="1320.688" y2="677.709"/>
  769. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1314.542" y1="669.247" x2="1314.542" y2="677.709"/>
  770. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1310.929" y1="681.095" x2="1318.15" y2="681.095"/>
  771. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1312.339" y1="684.479" x2="1316.74" y2="684.479"/>
  772. </g>
  773. </g>
  774. <rect x="1332.587" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  775. <rect x="1332.587" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  776. <polygon fill="#CAA51A" points="1338.316,696.714 1333.707,706.521 1329.107,696.71 "/>
  777. <g>
  778. <rect x="1382.712" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  779. <text transform="matrix(1 0 0 1 1393.7363 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场二线 </text>
  780. </g>
  781. <text transform="matrix(1 0 0 1 1385.0977 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 312 </text>
  782. <text transform="matrix(1 0 0 1 1393.2832 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  783. <rect x="1397.146" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  784. <rect x="1397.794" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  785. <g>
  786. <g>
  787. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1392.39" y1="677.709" x2="1404.688" y2="677.709"/>
  788. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1398.542" y1="669.247" x2="1398.542" y2="677.709"/>
  789. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1394.929" y1="681.095" x2="1402.15" y2="681.095"/>
  790. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1396.339" y1="684.479" x2="1400.74" y2="684.479"/>
  791. </g>
  792. </g>
  793. <rect x="1416.587" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  794. <rect x="1416.587" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  795. <polygon fill="#CAA51A" points="1422.316,696.714 1417.707,706.521 1413.107,696.71 "/>
  796. <g>
  797. <rect x="1465.433" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
  798. <text transform="matrix(1 0 0 1 1476.457 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场一线 </text>
  799. </g>
  800. <text transform="matrix(1 0 0 1 1467.8184 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 311 </text>
  801. <text transform="matrix(1 0 0 1 1476.0039 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  802. <rect x="1479.866" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  803. <rect x="1480.515" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  804. <g>
  805. <g>
  806. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1475.11" y1="677.709" x2="1487.409" y2="677.709"/>
  807. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1481.263" y1="669.247" x2="1481.263" y2="677.709"/>
  808. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1477.649" y1="681.095" x2="1484.871" y2="681.095"/>
  809. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1479.06" y1="684.479" x2="1483.461" y2="684.479"/>
  810. </g>
  811. </g>
  812. <rect x="1499.308" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  813. <rect x="1499.308" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  814. <polygon fill="#CAA51A" points="1505.037,696.714 1500.428,706.521 1495.828,696.71 "/>
  815. <rect x="1223.126" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
  816. <rect x="1223.774" y="627.054" fill="#C3A121" width="18.918" height="2.25"/>
  817. <g>
  818. <g>
  819. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1218.37" y1="673.709" x2="1230.669" y2="673.709"/>
  820. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1224.522" y1="669.247" x2="1224.522" y2="673.709"/>
  821. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1220.909" y1="677.095" x2="1228.131" y2="677.095"/>
  822. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1222.319" y1="680.479" x2="1226.721" y2="680.479"/>
  823. </g>
  824. <g>
  825. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1215.76" y1="696.893" x2="1228.059" y2="696.893"/>
  826. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1221.912" y1="692.431" x2="1221.912" y2="696.893"/>
  827. <line fill="none" stroke="#CAA51A" stroke-width="2.5" stroke-miterlimit="10" x1="1221.912" y1="684.893" x2="1221.912" y2="693.431"/>
  828. <line fill="none" stroke="#CAA51A" stroke-miterlimit="10" x1="1241.069" y1="684.893" x2="1220.911" y2="684.893"/>
  829. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1218.299" y1="700.278" x2="1225.521" y2="700.278"/>
  830. <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1219.709" y1="703.663" x2="1224.11" y2="703.663"/>
  831. </g>
  832. </g>
  833. <rect x="1241.567" y="621.387" fill="#CAA51A" width="2.25" height="40.341"/>
  834. <rect x="1241.567" y="693.878" fill="#CAA51A" width="2.25" height="3.387"/>
  835. <rect x="1241.567" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  836. <polygon fill="#CAA51A" points="1247.297,696.714 1242.688,706.521 1238.088,696.71 "/>
  837. <text transform="matrix(1 0 0 1 1032.5029 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 316 </text>
  838. <text transform="matrix(1 0 0 1 1040.6904 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  839. <text transform="matrix(1 0 0 1 1192.3564 654.5967)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
  840. <rect x="1045.2" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  841. <rect x="1063.993" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
  842. <rect x="1063.993" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
  843. <polygon fill="#CAA51A" points="1069.723,696.714 1065.113,706.521 1060.514,696.71 "/>
  844. <rect x="1586.912" y="627.054" fill="#C3A121" width="2.25" height="22.135"/>
  845. <rect x="1587.562" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
  846. <g>
  847. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1581.158" y1="650.819" x2="1594.879" y2="650.819"/>
  848. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1583.99" y1="654.597" x2="1592.047" y2="654.597"/>
  849. <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1585.563" y1="658.373" x2="1590.474" y2="658.373"/>
  850. </g>
  851. <rect x="1606.354" y="578.849" fill="#CAA51A" width="2.25" height="97.86"/>
  852. <g>
  853. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1607.428" cy="700.099" r="8.804"/>
  854. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1607.429" cy="684.821" r="8.804"/>
  855. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1611.705,703.818 1608.574,700.65 1611.705,697.699 "/>
  856. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1608.49" y1="700.585" x2="1602.969" y2="700.585"/>
  857. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1611.705,687.881 1608.574,684.713 1611.705,681.762 "/>
  858. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1608.49" y1="684.647" x2="1602.969" y2="684.647"/>
  859. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1594.608" cy="692.017" r="8.803"/>
  860. <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1597.885,695.076 1594.754,691.91 1597.885,688.959 "/>
  861. <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1594.67" y1="691.844" x2="1589.147" y2="691.844"/>
  862. <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1620.351" cy="692.017" r="8.803"/>
  863. <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1618.594,695.277 1618.594,688.758 1623.97,692.195 "/>
  864. </g>
  865. <g>
  866. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1242.181" cy="684.963" r="8.915"/>
  867. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1239.082,689.294 1242.29,686.123 1245.278,689.294 "/>
  868. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1242.181" y1="686.038" x2="1242.181" y2="680.446"/>
  869. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1242.181" cy="670.854" r="8.915"/>
  870. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1245.481,673.507 1238.88,673.507 1242.36,668.063 "/>
  871. </g>
  872. </g>
  873. <g>
  874. <g>
  875. <text transform="matrix(1 0 0 1 22.7139 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> la( </text>
  876. <text transform="matrix(1 0 0 1 35.124 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> A </text>
  877. <text transform="matrix(1 0 0 1 41.1826 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
  878. <text transform="matrix(1 0 0 1 10.5498 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> P( </text>
  879. <text transform="matrix(1 0 0 1 22.731 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> kVar </text>
  880. <text transform="matrix(1 0 0 1 41.1826 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
  881. <text transform="matrix(1 0 0 1 10.2549 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> Q( </text>
  882. <text transform="matrix(1 0 0 1 22.623 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> kVar </text>
  883. <text transform="matrix(1 0 0 1 41.1826 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
  884. </g>
  885. </g>
  886. </g>
  887. <g id="data">
  888. <text
  889. transform="matrix(1 0 0 1 70.8325 97.6743)"
  890. fill="#1A823B"
  891. font-family="'MicrosoftYaHei'"
  892. font-size="9.463"
  893. >
  894. {{ ajaxData.qsuakv }}
  895. </text>
  896. <text
  897. transform="matrix(1 0 0 1 70.832 115.3691)"
  898. fill="#1A823B"
  899. font-family="'MicrosoftYaHei'"
  900. font-size="9.463"
  901. >
  902. {{ ajaxData.qsubkv }}
  903. </text>
  904. <text
  905. transform="matrix(1 0 0 1 70.832 136.0361)"
  906. fill="#1A823B"
  907. font-family="'MicrosoftYaHei'"
  908. font-size="9.463"
  909. >
  910. {{ ajaxData.qsuckv }}
  911. </text>
  912. <text
  913. transform="matrix(1 0 0 1 70.832 156.3486)"
  914. fill="#1A823B"
  915. font-family="'MicrosoftYaHei'"
  916. font-size="9.463"
  917. >
  918. {{ ajaxData.qs3u0v }}
  919. </text>
  920. <text
  921. transform="matrix(1 0 0 1 291.499 122.957)"
  922. fill="#1A823B"
  923. font-family="'MicrosoftYaHei'"
  924. font-size="9.463"
  925. >
  926. {{ ajaxData.qsuabkv }}
  927. </text>
  928. <text
  929. transform="matrix(1 0 0 1 291.499 143.457)"
  930. fill="#1A823B"
  931. font-family="'MicrosoftYaHei'"
  932. font-size="9.463"
  933. >
  934. {{ ajaxData.qsubckv }}
  935. </text>
  936. <text
  937. transform="matrix(1 0 0 1 291.499 163.957)"
  938. fill="#1A823B"
  939. font-family="'MicrosoftYaHei'"
  940. font-size="9.463"
  941. >
  942. {{ ajaxData.qsuackv }}
  943. </text>
  944. <text
  945. transform="matrix(1 0 0 1 1129.3975 13.6143)"
  946. fill="#217E3A"
  947. font-family="'MicrosoftYaHei'"
  948. font-size="9.463"
  949. >
  950. {{ ajaxData.qslaakv }}
  951. </text>
  952. <text
  953. transform="matrix(1 0 0 1 1129.3955 32.3096)"
  954. fill="#217E3A"
  955. font-family="'MicrosoftYaHei'"
  956. font-size="9.463"
  957. >
  958. {{ ajaxData.qspmw }}
  959. </text>
  960. <text
  961. transform="matrix(1 0 0 1 1129.3955 52.9775)"
  962. fill="#217E3A"
  963. font-family="'MicrosoftYaHei'"
  964. font-size="9.463"
  965. >
  966. {{ ajaxData.qsqmvar }}
  967. </text>
  968. <text
  969. transform="matrix(1 0 0 1 1129.3955 73.2959)"
  970. fill="#217E3A"
  971. font-family="'MicrosoftYaHei'"
  972. font-size="9.463"
  973. >
  974. {{ ajaxData.qsuxkv }}
  975. </text>
  976. <text
  977. transform="matrix(1 0 0 1 1129.3955 93.9023)"
  978. fill="#217E3A"
  979. font-family="'MicrosoftYaHei'"
  980. font-size="9.463"
  981. >
  982. {{ ajaxData.qsfhz }}
  983. </text>
  984. <text
  985. transform="matrix(1 0 0 1 1129.3955 115.9824)"
  986. fill="#217E3A"
  987. font-family="'MicrosoftYaHei'"
  988. font-size="9.463"
  989. >
  990. {{ ajaxData.qscos }}
  991. </text>
  992. <text
  993. transform="matrix(1 0 0 1 277.1113 287.5244)"
  994. fill="#217E3A"
  995. font-family="'MicrosoftYaHei'"
  996. font-size="9.463"
  997. >
  998. {{ ajaxData.qslaazb2s }}
  999. </text>
  1000. <text
  1001. transform="matrix(1 0 0 1 277.1094 306.2197)"
  1002. fill="#217E3A"
  1003. font-family="'MicrosoftYaHei'"
  1004. font-size="9.463"
  1005. >
  1006. {{ ajaxData.qspmwzb2s }}
  1007. </text>
  1008. <text
  1009. transform="matrix(1 0 0 1 277.1094 326.8877)"
  1010. fill="#217E3A"
  1011. font-family="'MicrosoftYaHei'"
  1012. font-size="9.463"
  1013. >
  1014. {{ ajaxData.qsqmvarzb2s }}
  1015. </text>
  1016. <text
  1017. transform="matrix(1 0 0 1 277.1094 349.3857)"
  1018. fill="#217E3A"
  1019. font-family="'MicrosoftYaHei'"
  1020. font-size="9.463"
  1021. >
  1022. {{ ajaxData.qscoszb2s }}
  1023. </text>
  1024. <text
  1025. transform="matrix(1 0 0 1 1336.6387 287.5244)"
  1026. fill="#217E3A"
  1027. font-family="'MicrosoftYaHei'"
  1028. font-size="9.463"
  1029. >
  1030. {{ ajaxData.qslaazb1s }}
  1031. </text>
  1032. <text
  1033. transform="matrix(1 0 0 1 1336.6367 306.2197)"
  1034. fill="#217E3A"
  1035. font-family="'MicrosoftYaHei'"
  1036. font-size="9.463"
  1037. >
  1038. {{ ajaxData.qspmwzb1s }}
  1039. </text>
  1040. <text
  1041. transform="matrix(1 0 0 1 1336.6367 327.8877)"
  1042. fill="#217E3A"
  1043. font-family="'MicrosoftYaHei'"
  1044. font-size="9.463"
  1045. >
  1046. {{ ajaxData.qsqmvarzb1s }}
  1047. </text>
  1048. <text
  1049. transform="matrix(1 0 0 1 1336.6367 349.3857)"
  1050. fill="#217E3A"
  1051. font-family="'MicrosoftYaHei'"
  1052. font-size="9.463"
  1053. >
  1054. {{ ajaxData.qscoszb1s }}
  1055. </text>
  1056. <text
  1057. transform="matrix(1 0 0 1 70.8325 458.79)"
  1058. fill="#1A823B"
  1059. font-family="'MicrosoftYaHei'"
  1060. font-size="9.463"
  1061. >
  1062. {{ ajaxData.qsuakvzb2 }}
  1063. </text>
  1064. <text
  1065. transform="matrix(1 0 0 1 70.832 476.4844)"
  1066. fill="#1A823B"
  1067. font-family="'MicrosoftYaHei'"
  1068. font-size="9.463"
  1069. >
  1070. {{ ajaxData.qsuabkvzb2 }}
  1071. </text>
  1072. <text
  1073. transform="matrix(1 0 0 1 70.832 497.1934)"
  1074. fill="#1A823B"
  1075. font-family="'MicrosoftYaHei'"
  1076. font-size="9.463"
  1077. >
  1078. {{ ajaxData.qs3uozb2 }}
  1079. </text>
  1080. <text
  1081. transform="matrix(1 0 0 1 277.1113 446.5586)"
  1082. fill="#217E3A"
  1083. font-family="'MicrosoftYaHei'"
  1084. font-size="9.463"
  1085. >
  1086. {{ ajaxData.qslaazb2x }}
  1087. </text>
  1088. <text
  1089. transform="matrix(1 0 0 1 277.1094 465.2539)"
  1090. fill="#217E3A"
  1091. font-family="'MicrosoftYaHei'"
  1092. font-size="9.463"
  1093. >
  1094. {{ ajaxData.qspmwzb2x }}
  1095. </text>
  1096. <text
  1097. transform="matrix(1 0 0 1 277.1094 485.9219)"
  1098. fill="#217E3A"
  1099. font-family="'MicrosoftYaHei'"
  1100. font-size="9.463"
  1101. >
  1102. {{ ajaxData.qsqmvarzb2x }}
  1103. </text>
  1104. <text
  1105. transform="matrix(1 0 0 1 277.1094 508.4199)"
  1106. fill="#217E3A"
  1107. font-family="'MicrosoftYaHei'"
  1108. font-size="9.463"
  1109. >
  1110. {{ ajaxData.qscoszb2x }}
  1111. </text>
  1112. <text
  1113. transform="matrix(1 0 0 1 709.6748 448.9365)"
  1114. fill="#1A823B"
  1115. font-family="'MicrosoftYaHei'"
  1116. font-size="8.85"
  1117. >
  1118. {{ ajaxData.qsymwdzb2 }}
  1119. </text>
  1120. <text
  1121. transform="matrix(1 0 0 1 709.6748 466.29)"
  1122. fill="#1A823B"
  1123. font-family="'MicrosoftYaHei'"
  1124. font-size="8.85"
  1125. >
  1126. {{ ajaxData.qsrzwdzb2 }}
  1127. </text>
  1128. <text
  1129. transform="matrix(1 0 0 1 709.6748 485.6201)"
  1130. fill="#1A823B"
  1131. font-family="'MicrosoftYaHei'"
  1132. font-size="8.85"
  1133. >
  1134. {{ ajaxData.qsdwzb2 }}
  1135. </text>
  1136. <text
  1137. transform="matrix(1 0 0 1 990.8711 458.2813)"
  1138. fill="#1A823B"
  1139. font-family="'MicrosoftYaHei'"
  1140. font-size="9.463"
  1141. >
  1142. {{ ajaxData.qsuakvzb1 }}
  1143. </text>
  1144. <text
  1145. transform="matrix(1 0 0 1 990.8711 478.7813)"
  1146. fill="#1A823B"
  1147. font-family="'MicrosoftYaHei'"
  1148. font-size="9.463"
  1149. >
  1150. {{ ajaxData.qsuabkvzb1 }}
  1151. </text>
  1152. <text
  1153. transform="matrix(1 0 0 1 990.8711 501.2813)"
  1154. fill="#1A823B"
  1155. font-family="'MicrosoftYaHei'"
  1156. font-size="9.463"
  1157. >
  1158. {{ ajaxData.qs3u0vzb1 }}
  1159. </text>
  1160. <text
  1161. transform="matrix(1 0 0 1 1336.6387 446.5586)"
  1162. fill="#217E3A"
  1163. font-family="'MicrosoftYaHei'"
  1164. font-size="9.463"
  1165. >
  1166. {{ ajaxData.qslaazb1x }}
  1167. </text>
  1168. <text
  1169. transform="matrix(1 0 0 1 1336.6367 466.2539)"
  1170. fill="#217E3A"
  1171. font-family="'MicrosoftYaHei'"
  1172. font-size="9.463"
  1173. >
  1174. {{ ajaxData.qspmwzb1x }}
  1175. </text>
  1176. <text
  1177. transform="matrix(1 0 0 1 1336.6367 486.9219)"
  1178. fill="#217E3A"
  1179. font-family="'MicrosoftYaHei'"
  1180. font-size="9.463"
  1181. >
  1182. {{ ajaxData.qsqmvarzb1x }}
  1183. </text>
  1184. <text
  1185. transform="matrix(1 0 0 1 1336.6367 508.4199)"
  1186. fill="#217E3A"
  1187. font-family="'MicrosoftYaHei'"
  1188. font-size="9.463"
  1189. >
  1190. {{ ajaxData.qscoszb1x }}
  1191. </text>
  1192. <text
  1193. transform="matrix(1 0 0 1 1687.5547 446.4219)"
  1194. fill="#1A823B"
  1195. font-family="'MicrosoftYaHei'"
  1196. font-size="8.85"
  1197. >
  1198. {{ ajaxData.qsymwdzb1 }}
  1199. </text>
  1200. <text
  1201. transform="matrix(1 0 0 1 1687.5547 463.7754)"
  1202. fill="#1A823B"
  1203. font-family="'MicrosoftYaHei'"
  1204. font-size="8.85"
  1205. >
  1206. {{ ajaxData.qsrzwdzb1 }}
  1207. </text>
  1208. <text
  1209. transform="matrix(1 0 0 1 1687.5547 483.1055)"
  1210. fill="#1A823B"
  1211. font-family="'MicrosoftYaHei'"
  1212. font-size="8.85"
  1213. >
  1214. {{ ajaxData.qsdwzb1 }}
  1215. </text>
  1216. <g>
  1217. <text
  1218. transform="matrix(1 0 0 1 141.3398 790.7725)"
  1219. fill="#FFFFFF"
  1220. font-family="'MicrosoftYaHei'"
  1221. font-size="10.7648"
  1222. >
  1223. {{ ajaxData.qslaafc6 }}
  1224. </text>
  1225. <text
  1226. transform="matrix(1 0 0 1 141.3398 816.625)"
  1227. fill="#FFFFFF"
  1228. font-family="'MicrosoftYaHei'"
  1229. font-size="10.7648"
  1230. >
  1231. {{ ajaxData.qspkwfc6 }}
  1232. </text>
  1233. <text
  1234. transform="matrix(1 0 0 1 141.3398 842.4756)"
  1235. fill="#FFFFFF"
  1236. font-family="'MicrosoftYaHei'"
  1237. font-size="10.7648"
  1238. >
  1239. {{ ajaxData.qsqkvarfc6 }}
  1240. </text>
  1241. </g>
  1242. <g>
  1243. <text
  1244. transform="matrix(1 0 0 1 227.0698 790.7725)"
  1245. fill="#FFFFFF"
  1246. font-family="'MicrosoftYaHei'"
  1247. font-size="10.7648"
  1248. >
  1249. {{ ajaxData.qslaafc5 }}
  1250. </text>
  1251. <text
  1252. transform="matrix(1 0 0 1 227.0698 816.625)"
  1253. fill="#FFFFFF"
  1254. font-family="'MicrosoftYaHei'"
  1255. font-size="10.7648"
  1256. >
  1257. {{ ajaxData.qspkwfc5 }}
  1258. </text>
  1259. <text
  1260. transform="matrix(1 0 0 1 227.0698 842.4756)"
  1261. fill="#FFFFFF"
  1262. font-family="'MicrosoftYaHei'"
  1263. font-size="10.7648"
  1264. >
  1265. {{ ajaxData.qsqkvarfc5 }}
  1266. </text>
  1267. </g>
  1268. <g>
  1269. <text
  1270. transform="matrix(1 0 0 1 309.5898 790.7725)"
  1271. fill="#FFFFFF"
  1272. font-family="'MicrosoftYaHei'"
  1273. font-size="10.7648"
  1274. >
  1275. {{ ajaxData.qslaafc4 }}
  1276. </text>
  1277. <text
  1278. transform="matrix(1 0 0 1 309.5898 816.625)"
  1279. fill="#FFFFFF"
  1280. font-family="'MicrosoftYaHei'"
  1281. font-size="10.7648"
  1282. >
  1283. {{ ajaxData.qspkwfc4 }}
  1284. </text>
  1285. <text
  1286. transform="matrix(1 0 0 1 309.5898 842.4756)"
  1287. fill="#FFFFFF"
  1288. font-family="'MicrosoftYaHei'"
  1289. font-size="10.7648"
  1290. >
  1291. {{ ajaxData.qsqkvarfc4 }}
  1292. </text>
  1293. </g>
  1294. <g>
  1295. <text
  1296. transform="matrix(1 0 0 1 514.2163 790.7725)"
  1297. fill="#FFFFFF"
  1298. font-family="'MicrosoftYaHei'"
  1299. font-size="10.7648"
  1300. >
  1301. {{ ajaxData.qslaadk2 }}
  1302. </text>
  1303. <text
  1304. transform="matrix(1 0 0 1 514.2163 816.625)"
  1305. fill="#FFFFFF"
  1306. font-family="'MicrosoftYaHei'"
  1307. font-size="10.7648"
  1308. >
  1309. {{ ajaxData.qspkwdk2 }}
  1310. </text>
  1311. <text
  1312. transform="matrix(1 0 0 1 514.2163 842.4756)"
  1313. fill="#FFFFFF"
  1314. font-family="'MicrosoftYaHei'"
  1315. font-size="10.7648"
  1316. >
  1317. {{ ajaxData.qsqkvardk2 }}
  1318. </text>
  1319. </g>
  1320. <g>
  1321. <text
  1322. transform="matrix(1 0 0 1 599.9463 790.7725)"
  1323. fill="#FFFFFF"
  1324. font-family="'MicrosoftYaHei'"
  1325. font-size="10.7648"
  1326. >
  1327. {{ ajaxData.qslaalb2 }}
  1328. </text>
  1329. <text
  1330. transform="matrix(1 0 0 1 599.9463 816.625)"
  1331. fill="#FFFFFF"
  1332. font-family="'MicrosoftYaHei'"
  1333. font-size="10.7648"
  1334. >
  1335. {{ ajaxData.qspkwlb2 }}
  1336. </text>
  1337. <text
  1338. transform="matrix(1 0 0 1 599.9463 842.4756)"
  1339. fill="#FFFFFF"
  1340. font-family="'MicrosoftYaHei'"
  1341. font-size="10.7648"
  1342. >
  1343. {{ ajaxData.qsqkvarlb2 }}
  1344. </text>
  1345. </g>
  1346. <g>
  1347. <text
  1348. transform="matrix(1 0 0 1 1057.8447 790.7725)"
  1349. fill="#FFFFFF"
  1350. font-family="'MicrosoftYaHei'"
  1351. font-size="10.7648"
  1352. >
  1353. {{ ajaxData.qslaadk1 }}
  1354. </text>
  1355. <text
  1356. transform="matrix(1 0 0 1 1057.8447 816.625)"
  1357. fill="#FFFFFF"
  1358. font-family="'MicrosoftYaHei'"
  1359. font-size="10.7648"
  1360. >
  1361. {{ ajaxData.qspkwdk1 }}
  1362. </text>
  1363. <text
  1364. transform="matrix(1 0 0 1 1057.8447 842.4756)"
  1365. fill="#FFFFFF"
  1366. font-family="'MicrosoftYaHei'"
  1367. font-size="10.7648"
  1368. >
  1369. {{ ajaxData.qsqkvardk1 }}
  1370. </text>
  1371. </g>
  1372. <g>
  1373. <text
  1374. transform="matrix(1 0 0 1 1143.5747 790.7725)"
  1375. fill="#FFFFFF"
  1376. font-family="'MicrosoftYaHei'"
  1377. font-size="10.7648"
  1378. >
  1379. {{ ajaxData.qslaalb1 }}
  1380. </text>
  1381. <text
  1382. transform="matrix(1 0 0 1 1143.5747 816.625)"
  1383. fill="#FFFFFF"
  1384. font-family="'MicrosoftYaHei'"
  1385. font-size="10.7648"
  1386. >
  1387. {{ ajaxData.qspkwlb1 }}
  1388. </text>
  1389. <text
  1390. transform="matrix(1 0 0 1 1143.5747 842.4756)"
  1391. fill="#FFFFFF"
  1392. font-family="'MicrosoftYaHei'"
  1393. font-size="10.7648"
  1394. >
  1395. {{ ajaxData.qsqkvarlb1 }}
  1396. </text>
  1397. </g>
  1398. <g>
  1399. <text
  1400. transform="matrix(1 0 0 1 1242.1802 790.7725)"
  1401. fill="#FFFFFF"
  1402. font-family="'MicrosoftYaHei'"
  1403. font-size="10.7648"
  1404. >
  1405. {{ ajaxData.qslaazy }}
  1406. </text>
  1407. <text
  1408. transform="matrix(1 0 0 1 1242.1802 816.625)"
  1409. fill="#FFFFFF"
  1410. font-family="'MicrosoftYaHei'"
  1411. font-size="10.7648"
  1412. >
  1413. {{ ajaxData.qspkwzy }}
  1414. </text>
  1415. <text
  1416. transform="matrix(1 0 0 1 1242.1807 842.4756)"
  1417. fill="#FFFFFF"
  1418. font-family="'MicrosoftYaHei'"
  1419. font-size="10.7648"
  1420. >
  1421. {{ ajaxData.qsqkvarzy }}
  1422. </text>
  1423. </g>
  1424. <g>
  1425. <text
  1426. transform="matrix(1 0 0 1 1332.4658 790.7725)"
  1427. fill="#FFFFFF"
  1428. font-family="'MicrosoftYaHei'"
  1429. font-size="10.7648"
  1430. >
  1431. {{ ajaxData.qslaafc3 }}
  1432. </text>
  1433. <text
  1434. transform="matrix(1 0 0 1 1332.4658 816.625)"
  1435. fill="#FFFFFF"
  1436. font-family="'MicrosoftYaHei'"
  1437. font-size="10.7648"
  1438. >
  1439. {{ ajaxData.qspkwfc3 }}
  1440. </text>
  1441. <text
  1442. transform="matrix(1 0 0 1 1332.4658 842.4756)"
  1443. fill="#FFFFFF"
  1444. font-family="'MicrosoftYaHei'"
  1445. font-size="10.7648"
  1446. >
  1447. {{ ajaxData.qsqkvarfc3 }}
  1448. </text>
  1449. </g>
  1450. <g>
  1451. <text
  1452. transform="matrix(1 0 0 1 1413.1074 790.7725)"
  1453. fill="#FFFFFF"
  1454. font-family="'MicrosoftYaHei'"
  1455. font-size="10.7648"
  1456. >
  1457. {{ ajaxData.qslaafc2 }}
  1458. </text>
  1459. <text
  1460. transform="matrix(1 0 0 1 1413.1074 816.625)"
  1461. fill="#FFFFFF"
  1462. font-family="'MicrosoftYaHei'"
  1463. font-size="10.7648"
  1464. >
  1465. {{ ajaxData.qspkwfc2 }}
  1466. </text>
  1467. <text
  1468. transform="matrix(1 0 0 1 1413.1074 842.4756)"
  1469. fill="#FFFFFF"
  1470. font-family="'MicrosoftYaHei'"
  1471. font-size="10.7648"
  1472. >
  1473. {{ ajaxData.qsqkvarfc2 }}
  1474. </text>
  1475. </g>
  1476. <g>
  1477. <text
  1478. transform="matrix(1 0 0 1 1494.0273 790.7725)"
  1479. fill="#FFFFFF"
  1480. font-family="'MicrosoftYaHei'"
  1481. font-size="10.7648"
  1482. >
  1483. {{ ajaxData.qslaafc1 }}
  1484. </text>
  1485. <text
  1486. transform="matrix(1 0 0 1 1494.0273 816.625)"
  1487. fill="#FFFFFF"
  1488. font-family="'MicrosoftYaHei'"
  1489. font-size="10.7648"
  1490. >
  1491. {{ ajaxData.qspkwfc1 }}
  1492. </text>
  1493. <text
  1494. transform="matrix(1 0 0 1 1494.0273 842.4756)"
  1495. fill="#FFFFFF"
  1496. font-family="'MicrosoftYaHei'"
  1497. font-size="10.7648"
  1498. >
  1499. {{ ajaxData.qsqkvarfc1 }}
  1500. </text>
  1501. </g>
  1502. </g>
  1503. <g id="kg">
  1504. <g id="qskg1110" v-if="ajaxData.qskg1110">
  1505. <line
  1506. fill="none"
  1507. stroke="#9E2224"
  1508. stroke-width="2.5"
  1509. stroke-miterlimit="10"
  1510. x1="906.082"
  1511. y1="97.238"
  1512. x2="906.082"
  1513. y2="79.973"
  1514. />
  1515. <path
  1516. fill="#9E2224"
  1517. d="M922.671,90.672c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C925.242,89.516,924.089,90.672,922.671,90.672 M922.671,92.703c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S920.125,92.703,922.671,92.703L922.671,92.703z"
  1518. />
  1519. <line
  1520. fill="none"
  1521. stroke="#9E2224"
  1522. stroke-width="2"
  1523. stroke-miterlimit="10"
  1524. x1="906.306"
  1525. y1="88.098"
  1526. x2="919.056"
  1527. y2="88.098"
  1528. />
  1529. </g>
  1530. <g id="on_1_" v-else-if="ajaxData.qskg1110 == false">
  1531. <line
  1532. fill="none"
  1533. stroke="#27963A"
  1534. stroke-width="2.5"
  1535. stroke-miterlimit="10"
  1536. x1="906.082"
  1537. y1="97.238"
  1538. x2="906.082"
  1539. y2="79.973"
  1540. />
  1541. <path
  1542. fill="#27963A"
  1543. d="M922.671,90.672c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C925.242,89.516,924.089,90.672,922.671,90.672 M922.671,92.703 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S920.125,92.703,922.671,92.703 L922.671,92.703z"
  1544. />
  1545. <line
  1546. fill="none"
  1547. stroke="#27963A"
  1548. stroke-width="2"
  1549. stroke-miterlimit="10"
  1550. x1="908.24"
  1551. y1="81.639"
  1552. x2="919.056"
  1553. y2="88.605"
  1554. />
  1555. </g>
  1556. <g id="qskg11103" v-if="ajaxData.qskg11103">
  1557. <line
  1558. fill="none"
  1559. stroke="#9E2224"
  1560. stroke-width="2.5"
  1561. stroke-miterlimit="10"
  1562. x1="859.664"
  1563. y1="123.444"
  1564. x2="859.664"
  1565. y2="140.71"
  1566. />
  1567. <path
  1568. fill="#9E2224"
  1569. d="M843.075,130.015c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C840.504,131.165,841.657,130.015,843.075,130.015 M843.075,127.981c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C847.681,130.038,845.621,127.981,843.075,127.981L843.075,127.981z"
  1570. />
  1571. <line
  1572. fill="none"
  1573. stroke="#9E2224"
  1574. stroke-width="2"
  1575. stroke-miterlimit="10"
  1576. x1="859.44"
  1577. y1="132.585"
  1578. x2="846.69"
  1579. y2="132.585"
  1580. />
  1581. </g>
  1582. <g id="on_15_" v-else-if="ajaxData.qskg11103 == false">
  1583. <line
  1584. fill="none"
  1585. stroke="#27963A"
  1586. stroke-width="2.5"
  1587. stroke-miterlimit="10"
  1588. x1="859.664"
  1589. y1="123.444"
  1590. x2="859.664"
  1591. y2="140.71"
  1592. />
  1593. <path
  1594. fill="#27963A"
  1595. d="M843.075,130.015c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C840.504,131.165,841.657,130.015,843.075,130.015 M843.075,127.981 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C847.683,130.038,845.621,127.981,843.075,127.981L843.075,127.981z"
  1596. />
  1597. <line
  1598. fill="none"
  1599. stroke="#27963A"
  1600. stroke-width="2"
  1601. stroke-miterlimit="10"
  1602. x1="857.506"
  1603. y1="139.044"
  1604. x2="846.69"
  1605. y2="132.077"
  1606. />
  1607. </g>
  1608. <g id="qskg1113" v-if="ajaxData.qskg1113">
  1609. <line
  1610. fill="none"
  1611. stroke="#9E2224"
  1612. stroke-width="2.5"
  1613. stroke-miterlimit="10"
  1614. x1="873.862"
  1615. y1="101.884"
  1616. x2="891.128"
  1617. y2="101.884"
  1618. />
  1619. <path
  1620. fill="#9E2224"
  1621. d="M883.003,115.899c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C880.426,117.056,881.582,115.899,883.003,115.899 M883.003,113.869c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C887.608,115.93,885.547,113.869,883.003,113.869L883.003,113.869z"
  1622. />
  1623. <line
  1624. fill="none"
  1625. stroke="#9E2224"
  1626. stroke-width="2"
  1627. stroke-miterlimit="10"
  1628. x1="883.003"
  1629. y1="102.11"
  1630. x2="883.003"
  1631. y2="114.862"
  1632. />
  1633. </g>
  1634. <g id="on_19_" v-else-if="ajaxData.qskg1113 == false">
  1635. <line
  1636. fill="none"
  1637. stroke="#27963A"
  1638. stroke-width="2.5"
  1639. stroke-miterlimit="10"
  1640. x1="873.862"
  1641. y1="101.884"
  1642. x2="891.128"
  1643. y2="101.884"
  1644. />
  1645. <path
  1646. fill="#27963A"
  1647. d="M883.003,115.899c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C880.426,117.056,881.582,115.899,883.003,115.899 M883.003,113.869c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C887.608,115.93,885.547,113.869,883.003,113.869L883.003,113.869z"
  1648. />
  1649. <line
  1650. fill="none"
  1651. stroke="#27963A"
  1652. stroke-width="2"
  1653. stroke-miterlimit="10"
  1654. x1="889.458"
  1655. y1="104.045"
  1656. x2="882.496"
  1657. y2="114.862"
  1658. />
  1659. </g>
  1660. <g id="qskg1111" v-if="ajaxData.qskg1111">
  1661. <line
  1662. fill="none"
  1663. stroke="#9E2224"
  1664. stroke-width="2.5"
  1665. stroke-miterlimit="10"
  1666. x1="874.37"
  1667. y1="190.494"
  1668. x2="891.637"
  1669. y2="190.494"
  1670. />
  1671. <path
  1672. fill="#9E2224"
  1673. d="M883.512,204.51c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.154-2.574-2.57S882.09,204.51,883.512,204.51 M883.512,202.48c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C888.116,204.537,886.056,202.48,883.512,202.48L883.512,202.48 z"
  1674. />
  1675. <line
  1676. fill="none"
  1677. stroke="#9E2224"
  1678. stroke-width="2"
  1679. stroke-miterlimit="10"
  1680. x1="883.512"
  1681. y1="190.723"
  1682. x2="883.512"
  1683. y2="203.472"
  1684. />
  1685. </g>
  1686. <g id="on_18_" v-else-if="ajaxData.qskg1111 == false">
  1687. <line
  1688. fill="none"
  1689. stroke="#27963A"
  1690. stroke-width="2.5"
  1691. stroke-miterlimit="10"
  1692. x1="874.37"
  1693. y1="190.494"
  1694. x2="891.637"
  1695. y2="190.494"
  1696. />
  1697. <path
  1698. fill="#27963A"
  1699. d="M883.512,204.51c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.154-2.574-2.57C880.935,205.664,882.09,204.51,883.512,204.51 M883.512,202.48c-2.545,0-4.604,2.061-4.604,4.604 s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S886.056,202.48,883.512,202.48L883.512,202.48z"
  1700. />
  1701. <line
  1702. fill="none"
  1703. stroke="#27963A"
  1704. stroke-width="2"
  1705. stroke-miterlimit="10"
  1706. x1="889.967"
  1707. y1="192.658"
  1708. x2="883.004"
  1709. y2="203.472"
  1710. />
  1711. </g>
  1712. <g id="qskg11101" v-if="ajaxData.qskg11101">
  1713. <line
  1714. fill="none"
  1715. stroke="#9E2224"
  1716. stroke-width="2.5"
  1717. stroke-miterlimit="10"
  1718. x1="906.082"
  1719. y1="187.479"
  1720. x2="906.082"
  1721. y2="170.214"
  1722. />
  1723. <path
  1724. fill="#9E2224"
  1725. d="M922.671,180.913c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C925.242,179.757,924.089,180.913,922.671,180.913 M922.671,182.944c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S920.125,182.944,922.671,182.944L922.671,182.944z"
  1726. />
  1727. <line
  1728. fill="none"
  1729. stroke="#9E2224"
  1730. stroke-width="2"
  1731. stroke-miterlimit="10"
  1732. x1="906.306"
  1733. y1="178.339"
  1734. x2="919.056"
  1735. y2="178.339"
  1736. />
  1737. </g>
  1738. <g id="on_2_" v-else-if="ajaxData.qskg11101 == false">
  1739. <line
  1740. fill="none"
  1741. stroke="#27963A"
  1742. stroke-width="2.5"
  1743. stroke-miterlimit="10"
  1744. x1="906.082"
  1745. y1="187.479"
  1746. x2="906.082"
  1747. y2="170.214"
  1748. />
  1749. <path
  1750. fill="#27963A"
  1751. d="M922.671,180.913c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C925.242,179.757,924.089,180.913,922.671,180.913 M922.671,182.944 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S920.125,182.944,922.671,182.944 L922.671,182.944z"
  1752. />
  1753. <line
  1754. fill="none"
  1755. stroke="#27963A"
  1756. stroke-width="2"
  1757. stroke-miterlimit="10"
  1758. x1="908.24"
  1759. y1="171.88"
  1760. x2="919.056"
  1761. y2="178.847"
  1762. />
  1763. </g>
  1764. <g id="qskg1109" v-if="ajaxData.qskg1109">
  1765. <line
  1766. fill="none"
  1767. stroke="#9E2224"
  1768. stroke-width="2.5"
  1769. stroke-miterlimit="10"
  1770. x1="1095.182"
  1771. y1="291.153"
  1772. x2="1095.182"
  1773. y2="273.888"
  1774. />
  1775. <path
  1776. fill="#9E2224"
  1777. d="M1111.771,284.587c-1.422,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.57,1.155,2.57,2.573 C1114.342,283.431,1113.189,284.587,1111.771,284.587 M1111.771,286.618c2.545,0,4.604-2.061,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S1109.225,286.618,1111.771,286.618L1111.771,286.618z"
  1778. />
  1779. <line
  1780. fill="none"
  1781. stroke="#9E2224"
  1782. stroke-width="2"
  1783. stroke-miterlimit="10"
  1784. x1="1095.406"
  1785. y1="282.013"
  1786. x2="1108.156"
  1787. y2="282.013"
  1788. />
  1789. </g>
  1790. <g id="on_7_" v-else-if="ajaxData.qskg1109 == false">
  1791. <line
  1792. fill="none"
  1793. stroke="#27963A"
  1794. stroke-width="2.5"
  1795. stroke-miterlimit="10"
  1796. x1="1095.182"
  1797. y1="291.153"
  1798. x2="1095.182"
  1799. y2="273.888"
  1800. />
  1801. <path
  1802. fill="#27963A"
  1803. d="M1111.771,284.587c-1.422,0-2.576-1.155-2.576-2.571s1.154-2.573,2.576-2.573 c1.418,0,2.57,1.155,2.57,2.573C1114.342,283.431,1113.189,284.587,1111.771,284.587 M1111.771,286.618 c2.543,0,4.604-2.061,4.604-4.604s-2.061-4.604-4.604-4.604c-2.547,0-4.607,2.063-4.607,4.604S1109.225,286.618,1111.771,286.618 L1111.771,286.618z"
  1804. />
  1805. <line
  1806. fill="none"
  1807. stroke="#27963A"
  1808. stroke-width="2"
  1809. stroke-miterlimit="10"
  1810. x1="1097.34"
  1811. y1="275.554"
  1812. x2="1108.156"
  1813. y2="282.521"
  1814. />
  1815. </g>
  1816. <g id="qskg1021" v-if="ajaxData.qskg1021">
  1817. <line
  1818. fill="none"
  1819. stroke="#9E2224"
  1820. stroke-width="2.5"
  1821. stroke-miterlimit="10"
  1822. x1="477.801"
  1823. y1="250.21"
  1824. x2="495.068"
  1825. y2="250.21"
  1826. />
  1827. <path
  1828. fill="#9E2224"
  1829. d="M486.943,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,265.382,485.521,264.226,486.943,264.226 M486.943,262.195c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,264.256,489.487,262.195,486.943,262.195L486.943,262.195z"
  1830. />
  1831. <line
  1832. fill="none"
  1833. stroke="#9E2224"
  1834. stroke-width="2"
  1835. stroke-miterlimit="10"
  1836. x1="486.943"
  1837. y1="250.437"
  1838. x2="486.943"
  1839. y2="263.188"
  1840. />
  1841. </g>
  1842. <g id="on_8_" v-else-if="ajaxData.qskg1021 == false">
  1843. <line
  1844. fill="none"
  1845. stroke="#27963A"
  1846. stroke-width="2.5"
  1847. stroke-miterlimit="10"
  1848. x1="477.801"
  1849. y1="250.21"
  1850. x2="495.068"
  1851. y2="250.21"
  1852. />
  1853. <path
  1854. fill="#27963A"
  1855. d="M486.943,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,265.382,485.521,264.226,486.943,264.226 M486.943,262.195c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,264.256,489.487,262.195,486.943,262.195L486.943,262.195z"
  1856. />
  1857. <line
  1858. fill="none"
  1859. stroke="#27963A"
  1860. stroke-width="2"
  1861. stroke-miterlimit="10"
  1862. x1="493.398"
  1863. y1="252.371"
  1864. x2="486.435"
  1865. y2="263.188"
  1866. />
  1867. </g>
  1868. <g id="qskg1023" v-if="ajaxData.qskg1023">
  1869. <line
  1870. fill="none"
  1871. stroke="#9E2224"
  1872. stroke-width="2.5"
  1873. stroke-miterlimit="10"
  1874. x1="477.801"
  1875. y1="341.903"
  1876. x2="495.068"
  1877. y2="341.903"
  1878. />
  1879. <path
  1880. fill="#9E2224"
  1881. d="M486.943,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,357.075,485.521,355.919,486.943,355.919 M486.943,353.889c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,355.949,489.487,353.889,486.943,353.889L486.943,353.889z"
  1882. />
  1883. <line
  1884. fill="none"
  1885. stroke="#9E2224"
  1886. stroke-width="2"
  1887. stroke-miterlimit="10"
  1888. x1="486.943"
  1889. y1="342.13"
  1890. x2="486.943"
  1891. y2="354.882"
  1892. />
  1893. </g>
  1894. <g id="on_6_" v-else-if="ajaxData.qskg1023 == false">
  1895. <line
  1896. fill="none"
  1897. stroke="#27963A"
  1898. stroke-width="2.5"
  1899. stroke-miterlimit="10"
  1900. x1="477.801"
  1901. y1="341.903"
  1902. x2="495.068"
  1903. y2="341.903"
  1904. />
  1905. <path
  1906. fill="#27963A"
  1907. d="M486.943,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,357.075,485.521,355.919,486.943,355.919 M486.943,353.889c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,355.949,489.487,353.889,486.943,353.889L486.943,353.889z"
  1908. />
  1909. <line
  1910. fill="none"
  1911. stroke="#27963A"
  1912. stroke-width="2"
  1913. stroke-miterlimit="10"
  1914. x1="493.398"
  1915. y1="344.064"
  1916. x2="486.435"
  1917. y2="354.882"
  1918. />
  1919. </g>
  1920. <g id="qskg10201" v-if="ajaxData.qskg10201">
  1921. <line
  1922. fill="none"
  1923. stroke="#9E2224"
  1924. stroke-width="2.5"
  1925. stroke-miterlimit="10"
  1926. x1="463.604"
  1927. y1="271.403"
  1928. x2="463.604"
  1929. y2="288.669"
  1930. />
  1931. <path
  1932. fill="#9E2224"
  1933. d="M447.015,277.974c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C444.443,279.124,445.597,277.974,447.015,277.974 M447.015,275.94c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C451.62,277.997,449.561,275.94,447.015,275.94L447.015,275.94z"
  1934. />
  1935. <line
  1936. fill="none"
  1937. stroke="#9E2224"
  1938. stroke-width="2"
  1939. stroke-miterlimit="10"
  1940. x1="463.38"
  1941. y1="280.544"
  1942. x2="450.63"
  1943. y2="280.544"
  1944. />
  1945. </g>
  1946. <g id="on_5_" v-else-if="ajaxData.qskg10201 == false">
  1947. <line
  1948. fill="none"
  1949. stroke="#27963A"
  1950. stroke-width="2.5"
  1951. stroke-miterlimit="10"
  1952. x1="463.604"
  1953. y1="271.403"
  1954. x2="463.604"
  1955. y2="288.669"
  1956. />
  1957. <path
  1958. fill="#27963A"
  1959. d="M447.015,277.974c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C444.443,279.124,445.597,277.974,447.015,277.974 M447.015,275.94 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C451.622,277.997,449.561,275.94,447.015,275.94L447.015,275.94z"
  1960. />
  1961. <line
  1962. fill="none"
  1963. stroke="#27963A"
  1964. stroke-width="2"
  1965. stroke-miterlimit="10"
  1966. x1="461.445"
  1967. y1="287.003"
  1968. x2="450.63"
  1969. y2="280.036"
  1970. />
  1971. </g>
  1972. <g id="qskg119" v-if="ajaxData.qskg119">
  1973. <line
  1974. fill="none"
  1975. stroke="#9E2224"
  1976. stroke-width="2.5"
  1977. stroke-miterlimit="10"
  1978. x1="1066.757"
  1979. y1="250.21"
  1980. x2="1084.024"
  1981. y2="250.21"
  1982. />
  1983. <path
  1984. fill="#9E2224"
  1985. d="M1075.899,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1073.321,265.382,1074.478,264.226,1075.899,264.226 M1075.899,262.195 c-2.545,0-4.605,2.062-4.605,4.604s2.063,4.604,4.605,4.604c2.545,0,4.604-2.061,4.604-4.604 C1080.503,264.256,1078.442,262.195,1075.899,262.195L1075.899,262.195z"
  1986. />
  1987. <line
  1988. fill="none"
  1989. stroke="#9E2224"
  1990. stroke-width="2"
  1991. stroke-miterlimit="10"
  1992. x1="1075.899"
  1993. y1="250.437"
  1994. x2="1075.899"
  1995. y2="263.188"
  1996. />
  1997. </g>
  1998. <g id="on_3_" v-else-if="ajaxData.qskg119 == false">
  1999. <line
  2000. fill="none"
  2001. stroke="#27963A"
  2002. stroke-width="2.5"
  2003. stroke-miterlimit="10"
  2004. x1="1066.757"
  2005. y1="250.21"
  2006. x2="1084.024"
  2007. y2="250.21"
  2008. />
  2009. <path
  2010. fill="#27963A"
  2011. d="M1075.899,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1073.321,265.382,1074.478,264.226,1075.899,264.226 M1075.899,262.195 c-2.545,0-4.605,2.062-4.605,4.604s2.063,4.604,4.605,4.604c2.545,0,4.604-2.061,4.604-4.604 C1080.503,264.256,1078.442,262.195,1075.899,262.195L1075.899,262.195z"
  2012. />
  2013. <line
  2014. fill="none"
  2015. stroke="#27963A"
  2016. stroke-width="2"
  2017. stroke-miterlimit="10"
  2018. x1="1082.354"
  2019. y1="252.371"
  2020. x2="1075.392"
  2021. y2="263.188"
  2022. />
  2023. </g>
  2024. <g id="qskg10203" v-if="ajaxData.qskg10203">
  2025. <line
  2026. fill="none"
  2027. stroke="#9E2224"
  2028. stroke-width="2.5"
  2029. stroke-miterlimit="10"
  2030. x1="464.604"
  2031. y1="362.324"
  2032. x2="464.604"
  2033. y2="379.59"
  2034. />
  2035. <path
  2036. fill="#9E2224"
  2037. d="M448.015,368.895c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C445.443,370.045,446.597,368.895,448.015,368.895 M448.015,366.861c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C452.62,368.918,450.561,366.861,448.015,366.861L448.015,366.861z"
  2038. />
  2039. <line
  2040. fill="none"
  2041. stroke="#9E2224"
  2042. stroke-width="2"
  2043. stroke-miterlimit="10"
  2044. x1="464.38"
  2045. y1="371.465"
  2046. x2="451.63"
  2047. y2="371.465"
  2048. />
  2049. </g>
  2050. <g id="on_9_" v-else-if="ajaxData.qskg10203 == false">
  2051. <line
  2052. fill="none"
  2053. stroke="#27963A"
  2054. stroke-width="2.5"
  2055. stroke-miterlimit="10"
  2056. x1="464.604"
  2057. y1="362.324"
  2058. x2="464.604"
  2059. y2="379.59"
  2060. />
  2061. <path
  2062. fill="#27963A"
  2063. d="M448.015,368.895c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C445.443,370.045,446.597,368.895,448.015,368.895 M448.015,366.861 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C452.622,368.918,450.561,366.861,448.015,366.861L448.015,366.861z"
  2064. />
  2065. <line
  2066. fill="none"
  2067. stroke="#27963A"
  2068. stroke-width="2"
  2069. stroke-miterlimit="10"
  2070. x1="462.445"
  2071. y1="377.924"
  2072. x2="451.63"
  2073. y2="370.957"
  2074. />
  2075. </g>
  2076. <g id="qskg1020" v-if="ajaxData.qskg1020">
  2077. <line
  2078. fill="none"
  2079. stroke="#9E2224"
  2080. stroke-width="2.5"
  2081. stroke-miterlimit="10"
  2082. x1="510.021"
  2083. y1="244.978"
  2084. x2="510.021"
  2085. y2="227.712"
  2086. />
  2087. <path
  2088. fill="#9E2224"
  2089. d="M526.61,238.411c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C529.182,237.255,528.028,238.411,526.61,238.411 M526.61,240.442c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S524.064,240.442,526.61,240.442L526.61,240.442z"
  2090. />
  2091. <line
  2092. fill="none"
  2093. stroke="#9E2224"
  2094. stroke-width="2"
  2095. stroke-miterlimit="10"
  2096. x1="510.245"
  2097. y1="235.837"
  2098. x2="522.995"
  2099. y2="235.837"
  2100. />
  2101. </g>
  2102. <g id="on_4_" v-else-if="ajaxData.qskg1020 == false">
  2103. <line
  2104. fill="none"
  2105. stroke="#27963A"
  2106. stroke-width="2.5"
  2107. stroke-miterlimit="10"
  2108. x1="510.021"
  2109. y1="244.978"
  2110. x2="510.021"
  2111. y2="227.712"
  2112. />
  2113. <path
  2114. fill="#27963A"
  2115. d="M526.61,238.411c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C529.182,237.255,528.028,238.411,526.61,238.411 M526.61,240.442 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S524.064,240.442,526.61,240.442 L526.61,240.442z"
  2116. />
  2117. <line
  2118. fill="none"
  2119. stroke="#27963A"
  2120. stroke-width="2"
  2121. stroke-miterlimit="10"
  2122. x1="512.18"
  2123. y1="229.378"
  2124. x2="522.995"
  2125. y2="236.345"
  2126. />
  2127. </g>
  2128. <g id="qskg10202" v-if="ajaxData.qskg10202">
  2129. <line
  2130. fill="none"
  2131. stroke="#9E2224"
  2132. stroke-width="2.5"
  2133. stroke-miterlimit="10"
  2134. x1="510.021"
  2135. y1="335.521"
  2136. x2="510.021"
  2137. y2="318.255"
  2138. />
  2139. <path
  2140. fill="#9E2224"
  2141. d="M526.61,328.954c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C529.182,327.798,528.028,328.954,526.61,328.954 M526.61,330.985c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S524.064,330.985,526.61,330.985L526.61,330.985z"
  2142. />
  2143. <line
  2144. fill="none"
  2145. stroke="#9E2224"
  2146. stroke-width="2"
  2147. stroke-miterlimit="10"
  2148. x1="510.245"
  2149. y1="326.38"
  2150. x2="522.995"
  2151. y2="326.38"
  2152. />
  2153. </g>
  2154. <g id="on_10_" v-else-if="ajaxData.qskg10202 == false">
  2155. <line
  2156. fill="none"
  2157. stroke="#27963A"
  2158. stroke-width="2.5"
  2159. stroke-miterlimit="10"
  2160. x1="510.021"
  2161. y1="335.521"
  2162. x2="510.021"
  2163. y2="318.255"
  2164. />
  2165. <path
  2166. fill="#27963A"
  2167. d="M526.61,328.954c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C529.182,327.798,528.028,328.954,526.61,328.954 M526.61,330.985 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S524.064,330.985,526.61,330.985 L526.61,330.985z"
  2168. />
  2169. <line
  2170. fill="none"
  2171. stroke="#27963A"
  2172. stroke-width="2"
  2173. stroke-miterlimit="10"
  2174. x1="512.18"
  2175. y1="319.921"
  2176. x2="522.995"
  2177. y2="326.888"
  2178. />
  2179. </g>
  2180. <g id="qskg0210" v-if="ajaxData.qskg0210">
  2181. <line
  2182. fill="none"
  2183. stroke="#9E2224"
  2184. stroke-width="2.5"
  2185. stroke-miterlimit="10"
  2186. x1="399.091"
  2187. y1="424.063"
  2188. x2="416.357"
  2189. y2="424.063"
  2190. />
  2191. <path
  2192. fill="#9E2224"
  2193. d="M405.659,440.651c0-1.421,1.156-2.57,2.571-2.57c1.421,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.571-2.573,2.571C406.812,443.225,405.659,442.069,405.659,440.651 M403.627,440.651 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C405.685,436.047,403.627,438.107,403.627,440.651L403.627,440.651z"
  2194. />
  2195. <line
  2196. fill="none"
  2197. stroke="#9E2224"
  2198. stroke-width="2"
  2199. stroke-miterlimit="10"
  2200. x1="408.232"
  2201. y1="424.289"
  2202. x2="408.232"
  2203. y2="437.041"
  2204. />
  2205. </g>
  2206. <g id="on_28_" v-else-if="ajaxData.qskg0210 == false">
  2207. <line
  2208. fill="none"
  2209. stroke="#27963A"
  2210. stroke-width="2.5"
  2211. stroke-miterlimit="10"
  2212. x1="399.091"
  2213. y1="424.063"
  2214. x2="416.357"
  2215. y2="424.063"
  2216. />
  2217. <path
  2218. fill="#27963A"
  2219. d="M405.659,440.651c0-1.421,1.156-2.575,2.571-2.575c1.421,0,2.573,1.156,2.573,2.575 c0,1.42-1.157,2.571-2.573,2.571C406.812,443.225,405.659,442.069,405.659,440.651 M403.627,440.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C405.685,436.044,403.627,438.107,403.627,440.651L403.627,440.651z"
  2220. />
  2221. <line
  2222. fill="none"
  2223. stroke="#27963A"
  2224. stroke-width="2"
  2225. stroke-miterlimit="10"
  2226. x1="414.691"
  2227. y1="426.221"
  2228. x2="407.724"
  2229. y2="437.041"
  2230. />
  2231. </g>
  2232. <g id="qskg1011" v-if="ajaxData.qskg1011">
  2233. <line
  2234. fill="none"
  2235. stroke="#9E2224"
  2236. stroke-width="2.5"
  2237. stroke-miterlimit="10"
  2238. x1="1543.546"
  2239. y1="250.21"
  2240. x2="1560.813"
  2241. y2="250.21"
  2242. />
  2243. <path
  2244. fill="#9E2224"
  2245. d="M1552.688,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,265.382,1551.266,264.226,1552.688,264.226 M1552.688,262.195 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,264.256,1555.231,262.195,1552.688,262.195L1552.688,262.195z"
  2246. />
  2247. <line
  2248. fill="none"
  2249. stroke="#9E2224"
  2250. stroke-width="2"
  2251. stroke-miterlimit="10"
  2252. x1="1552.688"
  2253. y1="250.437"
  2254. x2="1552.688"
  2255. y2="263.188"
  2256. />
  2257. </g>
  2258. <g id="on_20_" v-else-if="ajaxData.qskg1011 == false">
  2259. <line
  2260. fill="none"
  2261. stroke="#27963A"
  2262. stroke-width="2.5"
  2263. stroke-miterlimit="10"
  2264. x1="1543.546"
  2265. y1="250.21"
  2266. x2="1560.813"
  2267. y2="250.21"
  2268. />
  2269. <path
  2270. fill="#27963A"
  2271. d="M1552.688,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,265.382,1551.266,264.226,1552.688,264.226 M1552.688,262.195 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,264.256,1555.231,262.195,1552.688,262.195L1552.688,262.195z"
  2272. />
  2273. <line
  2274. fill="none"
  2275. stroke="#27963A"
  2276. stroke-width="2"
  2277. stroke-miterlimit="10"
  2278. x1="1559.143"
  2279. y1="252.371"
  2280. x2="1552.18"
  2281. y2="263.188"
  2282. />
  2283. </g>
  2284. <g id="qskg1013" v-if="ajaxData.qskg1013">
  2285. <line
  2286. fill="none"
  2287. stroke="#9E2224"
  2288. stroke-width="2.5"
  2289. stroke-miterlimit="10"
  2290. x1="1543.546"
  2291. y1="341.903"
  2292. x2="1560.813"
  2293. y2="341.903"
  2294. />
  2295. <path
  2296. fill="#9E2224"
  2297. d="M1552.688,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,357.075,1551.266,355.919,1552.688,355.919 M1552.688,353.889 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,355.949,1555.231,353.889,1552.688,353.889L1552.688,353.889z"
  2298. />
  2299. <line
  2300. fill="none"
  2301. stroke="#9E2224"
  2302. stroke-width="2"
  2303. stroke-miterlimit="10"
  2304. x1="1552.688"
  2305. y1="342.13"
  2306. x2="1552.688"
  2307. y2="354.882"
  2308. />
  2309. </g>
  2310. <g id="on_17_" v-else-if="ajaxData.qskg1013 == false">
  2311. <line
  2312. fill="none"
  2313. stroke="#27963A"
  2314. stroke-width="2.5"
  2315. stroke-miterlimit="10"
  2316. x1="1543.546"
  2317. y1="341.903"
  2318. x2="1560.813"
  2319. y2="341.903"
  2320. />
  2321. <path
  2322. fill="#27963A"
  2323. d="M1552.688,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,357.075,1551.266,355.919,1552.688,355.919 M1552.688,353.889 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,355.949,1555.231,353.889,1552.688,353.889L1552.688,353.889z"
  2324. />
  2325. <line
  2326. fill="none"
  2327. stroke="#27963A"
  2328. stroke-width="2"
  2329. stroke-miterlimit="10"
  2330. x1="1559.143"
  2331. y1="344.064"
  2332. x2="1552.18"
  2333. y2="354.882"
  2334. />
  2335. </g>
  2336. <g id="qskg10101" v-if="ajaxData.qskg10101">
  2337. <line
  2338. fill="none"
  2339. stroke="#9E2224"
  2340. stroke-width="2.5"
  2341. stroke-miterlimit="10"
  2342. x1="1529.349"
  2343. y1="271.403"
  2344. x2="1529.349"
  2345. y2="288.669"
  2346. />
  2347. <path
  2348. fill="#9E2224"
  2349. d="M1512.759,277.974c1.422,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.57-1.157-2.57-2.573C1510.188,279.124,1511.341,277.974,1512.759,277.974 M1512.759,275.94c-2.545,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1517.364,277.997,1515.306,275.94,1512.759,275.94L1512.759,275.94z"
  2350. />
  2351. <line
  2352. fill="none"
  2353. stroke="#9E2224"
  2354. stroke-width="2"
  2355. stroke-miterlimit="10"
  2356. x1="1529.124"
  2357. y1="280.544"
  2358. x2="1516.374"
  2359. y2="280.544"
  2360. />
  2361. </g>
  2362. <g id="on_16_" v-else-if="ajaxData.qskg10101 == false">
  2363. <line
  2364. fill="none"
  2365. stroke="#27963A"
  2366. stroke-width="2.5"
  2367. stroke-miterlimit="10"
  2368. x1="1529.349"
  2369. y1="271.403"
  2370. x2="1529.349"
  2371. y2="288.669"
  2372. />
  2373. <path
  2374. fill="#27963A"
  2375. d="M1512.759,277.974c1.422,0,2.576,1.154,2.576,2.569c0,1.421-1.154,2.573-2.576,2.573 c-1.418,0-2.57-1.157-2.57-2.573C1510.188,279.124,1511.341,277.974,1512.759,277.974 M1512.759,275.94 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.547,0,4.607-2.063,4.607-4.604 C1517.366,277.997,1515.306,275.94,1512.759,275.94L1512.759,275.94z"
  2376. />
  2377. <line
  2378. fill="none"
  2379. stroke="#27963A"
  2380. stroke-width="2"
  2381. stroke-miterlimit="10"
  2382. x1="1527.19"
  2383. y1="287.003"
  2384. x2="1516.374"
  2385. y2="280.036"
  2386. />
  2387. </g>
  2388. <g id="qskg10103" v-if="ajaxData.qskg10103">
  2389. <line
  2390. fill="none"
  2391. stroke="#9E2224"
  2392. stroke-width="2.5"
  2393. stroke-miterlimit="10"
  2394. x1="1530.349"
  2395. y1="362.324"
  2396. x2="1530.349"
  2397. y2="379.59"
  2398. />
  2399. <path
  2400. fill="#9E2224"
  2401. d="M1513.759,368.895c1.422,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.57-1.157-2.57-2.573C1511.188,370.045,1512.341,368.895,1513.759,368.895 M1513.759,366.861 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1518.364,368.918,1516.306,366.861,1513.759,366.861L1513.759,366.861z"
  2402. />
  2403. <line
  2404. fill="none"
  2405. stroke="#9E2224"
  2406. stroke-width="2"
  2407. stroke-miterlimit="10"
  2408. x1="1530.124"
  2409. y1="371.465"
  2410. x2="1517.374"
  2411. y2="371.465"
  2412. />
  2413. </g>
  2414. <g id="on_14_" v-else-if="ajaxData.qskg10103 == false">
  2415. <line
  2416. fill="none"
  2417. stroke="#27963A"
  2418. stroke-width="2.5"
  2419. stroke-miterlimit="10"
  2420. x1="1530.349"
  2421. y1="362.324"
  2422. x2="1530.349"
  2423. y2="379.59"
  2424. />
  2425. <path
  2426. fill="#27963A"
  2427. d="M1513.759,368.895c1.422,0,2.576,1.154,2.576,2.569c0,1.421-1.154,2.573-2.576,2.573 c-1.418,0-2.57-1.157-2.57-2.573C1511.188,370.045,1512.341,368.895,1513.759,368.895 M1513.759,366.861 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.547,0,4.607-2.063,4.607-4.604 C1518.366,368.918,1516.306,366.861,1513.759,366.861L1513.759,366.861z"
  2428. />
  2429. <line
  2430. fill="none"
  2431. stroke="#27963A"
  2432. stroke-width="2"
  2433. stroke-miterlimit="10"
  2434. x1="1528.19"
  2435. y1="377.924"
  2436. x2="1517.374"
  2437. y2="370.957"
  2438. />
  2439. </g>
  2440. <g id="qskg1010" v-if="ajaxData.qskg1010">
  2441. <line
  2442. fill="none"
  2443. stroke="#9E2224"
  2444. stroke-width="2.5"
  2445. stroke-miterlimit="10"
  2446. x1="1575.767"
  2447. y1="244.978"
  2448. x2="1575.767"
  2449. y2="227.712"
  2450. />
  2451. <path
  2452. fill="#9E2224"
  2453. d="M1592.354,238.411c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.572,1.155,2.572,2.573 C1594.927,237.255,1593.772,238.411,1592.354,238.411 M1592.354,240.442c2.545,0,4.605-2.061,4.605-4.604 s-2.063-4.604-4.605-4.604s-4.604,2.063-4.604,4.604S1589.81,240.442,1592.354,240.442L1592.354,240.442z"
  2454. />
  2455. <line
  2456. fill="none"
  2457. stroke="#9E2224"
  2458. stroke-width="2"
  2459. stroke-miterlimit="10"
  2460. x1="1575.989"
  2461. y1="235.837"
  2462. x2="1588.739"
  2463. y2="235.837"
  2464. />
  2465. </g>
  2466. <g id="on_13_" v-else-if="ajaxData.qskg1010 == false">
  2467. <line
  2468. fill="none"
  2469. stroke="#27963A"
  2470. stroke-width="2.5"
  2471. stroke-miterlimit="10"
  2472. x1="1575.767"
  2473. y1="244.978"
  2474. x2="1575.767"
  2475. y2="227.712"
  2476. />
  2477. <path
  2478. fill="#27963A"
  2479. d="M1592.354,238.411c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.573,2.576-2.573 c1.418,0,2.572,1.155,2.572,2.573C1594.927,237.255,1593.772,238.411,1592.354,238.411 M1592.354,240.442 c2.543,0,4.605-2.061,4.605-4.604s-2.063-4.604-4.605-4.604c-2.545,0-4.605,2.063-4.605,4.604S1589.81,240.442,1592.354,240.442 L1592.354,240.442z"
  2480. />
  2481. <line
  2482. fill="none"
  2483. stroke="#27963A"
  2484. stroke-width="2"
  2485. stroke-miterlimit="10"
  2486. x1="1577.925"
  2487. y1="229.378"
  2488. x2="1588.739"
  2489. y2="236.345"
  2490. />
  2491. </g>
  2492. <g id="qskg10102" v-if="ajaxData.qskg10102">
  2493. <line
  2494. fill="none"
  2495. stroke="#9E2224"
  2496. stroke-width="2.5"
  2497. stroke-miterlimit="10"
  2498. x1="1575.767"
  2499. y1="335.521"
  2500. x2="1575.767"
  2501. y2="318.255"
  2502. />
  2503. <path
  2504. fill="#9E2224"
  2505. d="M1592.354,328.954c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.572,1.155,2.572,2.573 C1594.927,327.798,1593.772,328.954,1592.354,328.954 M1592.354,330.985c2.545,0,4.605-2.061,4.605-4.604 s-2.063-4.604-4.605-4.604s-4.604,2.063-4.604,4.604S1589.81,330.985,1592.354,330.985L1592.354,330.985z"
  2506. />
  2507. <line
  2508. fill="none"
  2509. stroke="#9E2224"
  2510. stroke-width="2"
  2511. stroke-miterlimit="10"
  2512. x1="1575.989"
  2513. y1="326.38"
  2514. x2="1588.739"
  2515. y2="326.38"
  2516. />
  2517. </g>
  2518. <g id="on_12_" v-else-if="ajaxData.qskg10102 == false">
  2519. <line
  2520. fill="none"
  2521. stroke="#27963A"
  2522. stroke-width="2.5"
  2523. stroke-miterlimit="10"
  2524. x1="1575.767"
  2525. y1="335.521"
  2526. x2="1575.767"
  2527. y2="318.255"
  2528. />
  2529. <path
  2530. fill="#27963A"
  2531. d="M1592.354,328.954c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.573,2.576-2.573 c1.418,0,2.572,1.155,2.572,2.573C1594.927,327.798,1593.772,328.954,1592.354,328.954 M1592.354,330.985 c2.543,0,4.605-2.061,4.605-4.604s-2.063-4.604-4.605-4.604c-2.545,0-4.605,2.063-4.605,4.604S1589.81,330.985,1592.354,330.985 L1592.354,330.985z"
  2532. />
  2533. <line
  2534. fill="none"
  2535. stroke="#27963A"
  2536. stroke-width="2"
  2537. stroke-miterlimit="10"
  2538. x1="1577.925"
  2539. y1="319.921"
  2540. x2="1588.739"
  2541. y2="326.888"
  2542. />
  2543. </g>
  2544. <g id="qskg0110" v-if="ajaxData.dwkkg3130">
  2545. <line
  2546. fill="none"
  2547. stroke="#9E2224"
  2548. stroke-width="2.5"
  2549. stroke-miterlimit="10"
  2550. x1="1464.835"
  2551. y1="424.063"
  2552. x2="1482.102"
  2553. y2="424.063"
  2554. />
  2555. <path
  2556. fill="#9E2224"
  2557. d="M1471.403,440.651c0-1.421,1.156-2.57,2.571-2.57c1.421,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.571-2.573,2.571C1472.557,443.225,1471.403,442.069,1471.403,440.651 M1469.372,440.651 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C1471.43,436.047,1469.372,438.107,1469.372,440.651L1469.372,440.651z"
  2558. />
  2559. <line
  2560. fill="none"
  2561. stroke="#9E2224"
  2562. stroke-width="2"
  2563. stroke-miterlimit="10"
  2564. x1="1473.977"
  2565. y1="424.289"
  2566. x2="1473.977"
  2567. y2="437.041"
  2568. />
  2569. </g>
  2570. <g id="on_11_" v-else-if="ajaxData.dwkkg3130 == false">
  2571. <line
  2572. fill="none"
  2573. stroke="#27963A"
  2574. stroke-width="2.5"
  2575. stroke-miterlimit="10"
  2576. x1="1464.835"
  2577. y1="424.063"
  2578. x2="1482.102"
  2579. y2="424.063"
  2580. />
  2581. <path
  2582. fill="#27963A"
  2583. d="M1471.403,440.651c0-1.421,1.156-2.575,2.571-2.575c1.421,0,2.573,1.156,2.573,2.575 c0,1.42-1.157,2.571-2.573,2.571C1472.557,443.225,1471.403,442.069,1471.403,440.651 M1469.372,440.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C1471.43,436.044,1469.372,438.107,1469.372,440.651L1469.372,440.651z"
  2584. />
  2585. <line
  2586. fill="none"
  2587. stroke="#27963A"
  2588. stroke-width="2"
  2589. stroke-miterlimit="10"
  2590. x1="1480.436"
  2591. y1="426.221"
  2592. x2="1473.469"
  2593. y2="437.041"
  2594. />
  2595. </g>
  2596. <g id="qskg3150" v-if="ajaxData.qskg3150">
  2597. <line
  2598. fill="none"
  2599. stroke="#9E2224"
  2600. stroke-width="2.5"
  2601. stroke-miterlimit="10"
  2602. x1="1119.942"
  2603. y1="648.029"
  2604. x2="1137.209"
  2605. y2="648.029"
  2606. />
  2607. <path
  2608. fill="#9E2224"
  2609. d="M1126.513,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1127.664,667.191,1126.513,666.039,1126.513,664.62 M1124.479,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1126.536,660.014,1124.479,662.074,1124.479,664.62L1124.479,664.62z"
  2610. />
  2611. <line
  2612. fill="none"
  2613. stroke="#9E2224"
  2614. stroke-width="2"
  2615. stroke-miterlimit="10"
  2616. x1="1129.084"
  2617. y1="648.254"
  2618. x2="1129.084"
  2619. y2="661.006"
  2620. />
  2621. </g>
  2622. <g id="on_27_" v-else-if="ajaxData.qskg3150 == false">
  2623. <line
  2624. fill="none"
  2625. stroke="#27963A"
  2626. stroke-width="2.5"
  2627. stroke-miterlimit="10"
  2628. x1="1119.942"
  2629. y1="648.029"
  2630. x2="1137.209"
  2631. y2="648.029"
  2632. />
  2633. <path
  2634. fill="#27963A"
  2635. d="M1126.513,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1127.664,667.191,1126.513,666.039,1126.513,664.62 M1124.479,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1126.536,660.011,1124.479,662.074,1124.479,664.62L1124.479,664.62z"
  2636. />
  2637. <line
  2638. fill="none"
  2639. stroke="#27963A"
  2640. stroke-width="2"
  2641. stroke-miterlimit="10"
  2642. x1="1135.543"
  2643. y1="650.188"
  2644. x2="1128.575"
  2645. y2="661.006"
  2646. />
  2647. </g>
  2648. <g id="qskg3160" v-if="ajaxData.qskg3160">
  2649. <line
  2650. fill="none"
  2651. stroke="#9E2224"
  2652. stroke-width="2.5"
  2653. stroke-miterlimit="10"
  2654. x1="1036.567"
  2655. y1="648.029"
  2656. x2="1053.834"
  2657. y2="648.029"
  2658. />
  2659. <path
  2660. fill="#9E2224"
  2661. d="M1043.138,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1044.289,667.191,1043.138,666.039,1043.138,664.62 M1041.104,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1043.161,660.014,1041.104,662.074,1041.104,664.62L1041.104,664.62z"
  2662. />
  2663. <line
  2664. fill="none"
  2665. stroke="#9E2224"
  2666. stroke-width="2"
  2667. stroke-miterlimit="10"
  2668. x1="1045.709"
  2669. y1="648.254"
  2670. x2="1045.709"
  2671. y2="661.006"
  2672. />
  2673. </g>
  2674. <g id="on_26_" v-else-if="ajaxData.qskg3160 == false">
  2675. <line
  2676. fill="none"
  2677. stroke="#27963A"
  2678. stroke-width="2.5"
  2679. stroke-miterlimit="10"
  2680. x1="1036.567"
  2681. y1="648.029"
  2682. x2="1053.834"
  2683. y2="648.029"
  2684. />
  2685. <path
  2686. fill="#27963A"
  2687. d="M1043.138,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1044.289,667.191,1043.138,666.039,1043.138,664.62 M1041.104,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1043.161,660.011,1041.104,662.074,1041.104,664.62L1041.104,664.62z"
  2688. />
  2689. <line
  2690. fill="none"
  2691. stroke="#27963A"
  2692. stroke-width="2"
  2693. stroke-miterlimit="10"
  2694. x1="1052.168"
  2695. y1="650.188"
  2696. x2="1045.2"
  2697. y2="661.006"
  2698. />
  2699. </g>
  2700. <g id="qskg3210" v-if="ajaxData.qskg3210">
  2701. <line
  2702. fill="none"
  2703. stroke="#9E2224"
  2704. stroke-width="2.5"
  2705. stroke-miterlimit="10"
  2706. x1="585.392"
  2707. y1="648.029"
  2708. x2="602.658"
  2709. y2="648.029"
  2710. />
  2711. <path
  2712. fill="#9E2224"
  2713. d="M591.962,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C593.113,667.191,591.962,666.039,591.962,664.62 M589.929,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C591.985,660.014,589.929,662.074,589.929,664.62L589.929,664.62z"
  2714. />
  2715. <line
  2716. fill="none"
  2717. stroke="#9E2224"
  2718. stroke-width="2"
  2719. stroke-miterlimit="10"
  2720. x1="594.533"
  2721. y1="648.254"
  2722. x2="594.533"
  2723. y2="661.006"
  2724. />
  2725. </g>
  2726. <g id="on_21_" v-else-if="ajaxData.qskg3210 == false">
  2727. <line
  2728. fill="none"
  2729. stroke="#27963A"
  2730. stroke-width="2.5"
  2731. stroke-miterlimit="10"
  2732. x1="585.392"
  2733. y1="648.029"
  2734. x2="602.658"
  2735. y2="648.029"
  2736. />
  2737. <path
  2738. fill="#27963A"
  2739. d="M591.962,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C593.113,667.191,591.962,666.039,591.962,664.62 M589.929,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C591.985,660.011,589.929,662.074,589.929,664.62L589.929,664.62z"
  2740. />
  2741. <line
  2742. fill="none"
  2743. stroke="#27963A"
  2744. stroke-width="2"
  2745. stroke-miterlimit="10"
  2746. x1="600.992"
  2747. y1="650.188"
  2748. x2="594.024"
  2749. y2="661.006"
  2750. />
  2751. </g>
  2752. <g id="qskg3220" v-if="ajaxData.qskg3220">
  2753. <line
  2754. fill="none"
  2755. stroke="#9E2224"
  2756. stroke-width="2.5"
  2757. stroke-miterlimit="10"
  2758. x1="502.105"
  2759. y1="648.029"
  2760. x2="519.372"
  2761. y2="648.029"
  2762. />
  2763. <path
  2764. fill="#9E2224"
  2765. d="M508.676,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C509.827,667.191,508.676,666.039,508.676,664.62 M506.643,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C508.699,660.014,506.643,662.074,506.643,664.62L506.643,664.62z"
  2766. />
  2767. <line
  2768. fill="none"
  2769. stroke="#9E2224"
  2770. stroke-width="2"
  2771. stroke-miterlimit="10"
  2772. x1="511.247"
  2773. y1="648.254"
  2774. x2="511.247"
  2775. y2="661.006"
  2776. />
  2777. </g>
  2778. <g id="on_22_" v-else-if="ajaxData.qskg3220 == false">
  2779. <line
  2780. fill="none"
  2781. stroke="#27963A"
  2782. stroke-width="2.5"
  2783. stroke-miterlimit="10"
  2784. x1="502.105"
  2785. y1="648.029"
  2786. x2="519.372"
  2787. y2="648.029"
  2788. />
  2789. <path
  2790. fill="#27963A"
  2791. d="M508.676,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C509.827,667.191,508.676,666.039,508.676,664.62 M506.643,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C508.699,660.011,506.643,662.074,506.643,664.62L506.643,664.62z"
  2792. />
  2793. <line
  2794. fill="none"
  2795. stroke="#27963A"
  2796. stroke-width="2"
  2797. stroke-miterlimit="10"
  2798. x1="517.706"
  2799. y1="650.188"
  2800. x2="510.738"
  2801. y2="661.006"
  2802. />
  2803. </g>
  2804. <g id="qskg3230" v-if="ajaxData.qskg3230">
  2805. <line
  2806. fill="none"
  2807. stroke="#9E2224"
  2808. stroke-width="2.5"
  2809. stroke-miterlimit="10"
  2810. x1="295.677"
  2811. y1="648.029"
  2812. x2="312.943"
  2813. y2="648.029"
  2814. />
  2815. <path
  2816. fill="#9E2224"
  2817. d="M302.247,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C303.398,667.191,302.247,666.039,302.247,664.62 M300.214,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C302.271,660.014,300.214,662.074,300.214,664.62L300.214,664.62z"
  2818. />
  2819. <line
  2820. fill="none"
  2821. stroke="#9E2224"
  2822. stroke-width="2"
  2823. stroke-miterlimit="10"
  2824. x1="304.818"
  2825. y1="648.254"
  2826. x2="304.818"
  2827. y2="661.006"
  2828. />
  2829. </g>
  2830. <g id="on_23_" v-else-if="ajaxData.qskg3230 == false">
  2831. <line
  2832. fill="none"
  2833. stroke="#27963A"
  2834. stroke-width="2.5"
  2835. stroke-miterlimit="10"
  2836. x1="295.677"
  2837. y1="648.029"
  2838. x2="312.943"
  2839. y2="648.029"
  2840. />
  2841. <path
  2842. fill="#27963A"
  2843. d="M302.247,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C303.398,667.191,302.247,666.039,302.247,664.62 M300.214,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C302.271,660.011,300.214,662.074,300.214,664.62L300.214,664.62z"
  2844. />
  2845. <line
  2846. fill="none"
  2847. stroke="#27963A"
  2848. stroke-width="2"
  2849. stroke-miterlimit="10"
  2850. x1="311.277"
  2851. y1="650.188"
  2852. x2="304.31"
  2853. y2="661.006"
  2854. />
  2855. </g>
  2856. <g id="qskg3240" v-if="ajaxData.qskg3240">
  2857. <line
  2858. fill="none"
  2859. stroke="#9E2224"
  2860. stroke-width="2.5"
  2861. stroke-miterlimit="10"
  2862. x1="212.871"
  2863. y1="648.029"
  2864. x2="230.138"
  2865. y2="648.029"
  2866. />
  2867. <path
  2868. fill="#9E2224"
  2869. d="M219.441,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C220.593,667.191,219.441,666.039,219.441,664.62 M217.408,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C219.465,660.014,217.408,662.074,217.408,664.62L217.408,664.62z"
  2870. />
  2871. <line
  2872. fill="none"
  2873. stroke="#9E2224"
  2874. stroke-width="2"
  2875. stroke-miterlimit="10"
  2876. x1="222.013"
  2877. y1="648.254"
  2878. x2="222.013"
  2879. y2="661.006"
  2880. />
  2881. </g>
  2882. <g id="on_24_" v-else-if="ajaxData.qskg3240 == false">
  2883. <line
  2884. fill="none"
  2885. stroke="#27963A"
  2886. stroke-width="2.5"
  2887. stroke-miterlimit="10"
  2888. x1="212.871"
  2889. y1="648.029"
  2890. x2="230.138"
  2891. y2="648.029"
  2892. />
  2893. <path
  2894. fill="#27963A"
  2895. d="M219.441,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C220.593,667.191,219.441,666.039,219.441,664.62 M217.408,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C219.465,660.011,217.408,662.074,217.408,664.62L217.408,664.62z"
  2896. />
  2897. <line
  2898. fill="none"
  2899. stroke="#27963A"
  2900. stroke-width="2"
  2901. stroke-miterlimit="10"
  2902. x1="228.472"
  2903. y1="650.188"
  2904. x2="221.504"
  2905. y2="661.006"
  2906. />
  2907. </g>
  2908. <g id="qskg3250" v-if="ajaxData.qskg3250">
  2909. <line
  2910. fill="none"
  2911. stroke="#9E2224"
  2912. stroke-width="2.5"
  2913. stroke-miterlimit="10"
  2914. x1="129.247"
  2915. y1="648.029"
  2916. x2="146.513"
  2917. y2="648.029"
  2918. />
  2919. <path
  2920. fill="#9E2224"
  2921. d="M135.817,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C136.968,667.191,135.817,666.039,135.817,664.62 M133.784,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C135.84,660.014,133.784,662.074,133.784,664.62L133.784,664.62z"
  2922. />
  2923. <line
  2924. fill="none"
  2925. stroke="#9E2224"
  2926. stroke-width="2"
  2927. stroke-miterlimit="10"
  2928. x1="138.388"
  2929. y1="648.254"
  2930. x2="138.388"
  2931. y2="661.006"
  2932. />
  2933. </g>
  2934. <g id="on_31_" v-else-if="ajaxData.qskg3250 == false">
  2935. <line
  2936. fill="none"
  2937. stroke="#27963A"
  2938. stroke-width="2.5"
  2939. stroke-miterlimit="10"
  2940. x1="129.247"
  2941. y1="648.029"
  2942. x2="146.513"
  2943. y2="648.029"
  2944. />
  2945. <path
  2946. fill="#27963A"
  2947. d="M135.817,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C136.968,667.191,135.817,666.039,135.817,664.62 M133.784,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C135.84,660.011,133.784,662.074,133.784,664.62L133.784,664.62z"
  2948. />
  2949. <line
  2950. fill="none"
  2951. stroke="#27963A"
  2952. stroke-width="2"
  2953. stroke-miterlimit="10"
  2954. x1="144.847"
  2955. y1="650.188"
  2956. x2="137.879"
  2957. y2="661.006"
  2958. />
  2959. </g>
  2960. <g id="qskg3130" v-if="ajaxData.qskg3130">
  2961. <line
  2962. fill="none"
  2963. stroke="#9E2224"
  2964. stroke-width="2.5"
  2965. stroke-miterlimit="10"
  2966. x1="1304.763"
  2967. y1="648.029"
  2968. x2="1322.029"
  2969. y2="648.029"
  2970. />
  2971. <path
  2972. fill="#9E2224"
  2973. d="M1311.333,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1312.484,667.191,1311.333,666.039,1311.333,664.62 M1309.3,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1311.356,660.014,1309.3,662.074,1309.3,664.62L1309.3,664.62z"
  2974. />
  2975. <line
  2976. fill="none"
  2977. stroke="#9E2224"
  2978. stroke-width="2"
  2979. stroke-miterlimit="10"
  2980. x1="1313.904"
  2981. y1="648.254"
  2982. x2="1313.904"
  2983. y2="661.006"
  2984. />
  2985. </g>
  2986. <g id="on_32_" v-else-if="ajaxData.qskg3130 == false">
  2987. <line
  2988. fill="none"
  2989. stroke="#27963A"
  2990. stroke-width="2.5"
  2991. stroke-miterlimit="10"
  2992. x1="1304.763"
  2993. y1="648.029"
  2994. x2="1322.029"
  2995. y2="648.029"
  2996. />
  2997. <path
  2998. fill="#27963A"
  2999. d="M1311.333,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1312.484,667.191,1311.333,666.039,1311.333,664.62 M1309.3,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1311.356,660.011,1309.3,662.074,1309.3,664.62L1309.3,664.62z"
  3000. />
  3001. <line
  3002. fill="none"
  3003. stroke="#27963A"
  3004. stroke-width="2"
  3005. stroke-miterlimit="10"
  3006. x1="1320.363"
  3007. y1="650.188"
  3008. x2="1313.396"
  3009. y2="661.006"
  3010. />
  3011. </g>
  3012. <g id="qskg3120" v-if="ajaxData.qskg3120">
  3013. <line
  3014. fill="none"
  3015. stroke="#9E2224"
  3016. stroke-width="2.5"
  3017. stroke-miterlimit="10"
  3018. x1="1388.763"
  3019. y1="648.029"
  3020. x2="1406.029"
  3021. y2="648.029"
  3022. />
  3023. <path
  3024. fill="#9E2224"
  3025. d="M1395.333,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1396.484,667.191,1395.333,666.039,1395.333,664.62 M1393.3,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1395.356,660.014,1393.3,662.074,1393.3,664.62L1393.3,664.62z"
  3026. />
  3027. <line
  3028. fill="none"
  3029. stroke="#9E2224"
  3030. stroke-width="2"
  3031. stroke-miterlimit="10"
  3032. x1="1397.904"
  3033. y1="648.254"
  3034. x2="1397.904"
  3035. y2="661.006"
  3036. />
  3037. </g>
  3038. <g id="on_33_" v-else-if="ajaxData.qskg3120 == false">
  3039. <line
  3040. fill="none"
  3041. stroke="#27963A"
  3042. stroke-width="2.5"
  3043. stroke-miterlimit="10"
  3044. x1="1388.763"
  3045. y1="648.029"
  3046. x2="1406.029"
  3047. y2="648.029"
  3048. />
  3049. <path
  3050. fill="#27963A"
  3051. d="M1395.333,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1396.484,667.191,1395.333,666.039,1395.333,664.62 M1393.3,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1395.356,660.011,1393.3,662.074,1393.3,664.62L1393.3,664.62z"
  3052. />
  3053. <line
  3054. fill="none"
  3055. stroke="#27963A"
  3056. stroke-width="2"
  3057. stroke-miterlimit="10"
  3058. x1="1404.363"
  3059. y1="650.188"
  3060. x2="1397.396"
  3061. y2="661.006"
  3062. />
  3063. </g>
  3064. <g id="qskg3110" v-if="ajaxData.qskg3110">
  3065. <line
  3066. fill="none"
  3067. stroke="#9E2224"
  3068. stroke-width="2.5"
  3069. stroke-miterlimit="10"
  3070. x1="1471.483"
  3071. y1="648.029"
  3072. x2="1488.75"
  3073. y2="648.029"
  3074. />
  3075. <path
  3076. fill="#9E2224"
  3077. d="M1478.054,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1479.205,667.191,1478.054,666.039,1478.054,664.62 M1476.021,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1478.077,660.014,1476.021,662.074,1476.021,664.62L1476.021,664.62z"
  3078. />
  3079. <line
  3080. fill="none"
  3081. stroke="#9E2224"
  3082. stroke-width="2"
  3083. stroke-miterlimit="10"
  3084. x1="1480.625"
  3085. y1="648.254"
  3086. x2="1480.625"
  3087. y2="661.006"
  3088. />
  3089. </g>
  3090. <g id="on_34_" v-else-if="ajaxData.qskg3110 == false">
  3091. <line
  3092. fill="none"
  3093. stroke="#27963A"
  3094. stroke-width="2.5"
  3095. stroke-miterlimit="10"
  3096. x1="1471.483"
  3097. y1="648.029"
  3098. x2="1488.75"
  3099. y2="648.029"
  3100. />
  3101. <path
  3102. fill="#27963A"
  3103. d="M1478.054,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1479.205,667.191,1478.054,666.039,1478.054,664.62 M1476.021,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1478.077,660.011,1476.021,662.074,1476.021,664.62L1476.021,664.62z"
  3104. />
  3105. <line
  3106. fill="none"
  3107. stroke="#27963A"
  3108. stroke-width="2"
  3109. stroke-miterlimit="10"
  3110. x1="1487.084"
  3111. y1="650.188"
  3112. x2="1480.116"
  3113. y2="661.006"
  3114. />
  3115. </g>
  3116. <g id="qskg3140" v-if="ajaxData.qskg3140">
  3117. <line
  3118. fill="none"
  3119. stroke="#9E2224"
  3120. stroke-width="2.5"
  3121. stroke-miterlimit="10"
  3122. x1="1214.743"
  3123. y1="648.029"
  3124. x2="1232.01"
  3125. y2="648.029"
  3126. />
  3127. <path
  3128. fill="#9E2224"
  3129. d="M1221.313,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1222.465,667.191,1221.313,666.039,1221.313,664.62 M1219.28,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1221.337,660.014,1219.28,662.074,1219.28,664.62L1219.28,664.62z"
  3130. />
  3131. <line
  3132. fill="none"
  3133. stroke="#9E2224"
  3134. stroke-width="2"
  3135. stroke-miterlimit="10"
  3136. x1="1223.885"
  3137. y1="648.254"
  3138. x2="1223.885"
  3139. y2="661.006"
  3140. />
  3141. </g>
  3142. <g id="on_29_" v-else-if="ajaxData.qskg3140 == false">
  3143. <line
  3144. fill="none"
  3145. stroke="#27963A"
  3146. stroke-width="2.5"
  3147. stroke-miterlimit="10"
  3148. x1="1214.743"
  3149. y1="648.029"
  3150. x2="1232.01"
  3151. y2="648.029"
  3152. />
  3153. <path
  3154. fill="#27963A"
  3155. d="M1221.313,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1222.465,667.191,1221.313,666.039,1221.313,664.62 M1219.28,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1221.337,660.011,1219.28,662.074,1219.28,664.62L1219.28,664.62z"
  3156. />
  3157. <line
  3158. fill="none"
  3159. stroke="#27963A"
  3160. stroke-width="2"
  3161. stroke-miterlimit="10"
  3162. x1="1230.344"
  3163. y1="650.188"
  3164. x2="1223.376"
  3165. y2="661.006"
  3166. />
  3167. </g>
  3168. </g>
  3169. <g id="dlq">
  3170. <rect
  3171. x="875.013"
  3172. y="144.824"
  3173. :fill="ajaxData.qsdlq111 ? red : green"
  3174. width="15.98"
  3175. height="24.202"
  3176. />
  3177. <rect
  3178. x="478.953"
  3179. y="292.108"
  3180. :fill="ajaxData.qsdlq102 ? red : green"
  3181. width="15.98"
  3182. height="24.202"
  3183. />
  3184. <rect
  3185. x="1544.697"
  3186. y="292.108"
  3187. :fill="ajaxData.qsdlq101 ? red : green"
  3188. width="15.98"
  3189. height="24.202"
  3190. />
  3191. <rect
  3192. x="478.355"
  3193. y="476.034"
  3194. :fill="ajaxData.qsdlq302 ? red : green"
  3195. width="15.462"
  3196. height="24.008"
  3197. />
  3198. <rect
  3199. x="1544.1"
  3200. y="476.034"
  3201. :fill="ajaxData.qsdlq301 ? red : green"
  3202. width="15.462"
  3203. height="24.008"
  3204. />
  3205. <rect
  3206. x="152.01"
  3207. y="580.707"
  3208. :fill="ajaxData.qsdlq325 ? red : green"
  3209. width="15.463"
  3210. height="24.008"
  3211. />
  3212. <rect
  3213. x="233.691"
  3214. y="580.707"
  3215. :fill="ajaxData.qsdlq324 ? red : green"
  3216. width="15.463"
  3217. height="24.008"
  3218. />
  3219. <rect
  3220. x="318.382"
  3221. y="580.707"
  3222. :fill="ajaxData.qsdlq323 ? red : green"
  3223. width="15.463"
  3224. height="24.008"
  3225. />
  3226. <rect
  3227. x="522.926"
  3228. y="580.707"
  3229. :fill="ajaxData.qsdlq322 ? red : green"
  3230. width="15.463"
  3231. height="24.008"
  3232. />
  3233. <rect
  3234. x="606.212"
  3235. y="580.707"
  3236. :fill="ajaxData.qsdlq321 ? red : green"
  3237. width="15.463"
  3238. height="24.008"
  3239. />
  3240. <rect
  3241. x="776.712"
  3242. y="580.707"
  3243. :fill="ajaxData.qsdlq300 ? red : green"
  3244. width="15.463"
  3245. height="24.008"
  3246. />
  3247. <rect
  3248. x="1057.387"
  3249. y="580.707"
  3250. :fill="ajaxData.qsdlq316 ? red : green"
  3251. width="15.463"
  3252. height="24.008"
  3253. />
  3254. <rect
  3255. x="1141.16"
  3256. y="580.707"
  3257. :fill="ajaxData.qsdlq315 ? red : green"
  3258. width="15.463"
  3259. height="24.008"
  3260. />
  3261. <rect
  3262. x="1234.961"
  3263. y="580.707"
  3264. :fill="ajaxData.qsdlq314 ? red : green"
  3265. width="15.463"
  3266. height="24.008"
  3267. />
  3268. <rect
  3269. x="1325.98"
  3270. y="580.707"
  3271. :fill="ajaxData.qsdlq313 ? red : green"
  3272. width="15.463"
  3273. height="24.008"
  3274. />
  3275. <rect
  3276. x="1409.98"
  3277. y="580.707"
  3278. :fill="ajaxData.qsdlq312 ? red : green"
  3279. width="15.463"
  3280. height="24.008"
  3281. />
  3282. <rect
  3283. x="1492.701"
  3284. y="580.707"
  3285. :fill="ajaxData.qsdlq311 ? red : green"
  3286. width="15.463"
  3287. height="24.008"
  3288. />
  3289. </g>
  3290. <g id="sc">
  3291. <g>
  3292. <polyline
  3293. fill="none"
  3294. :stroke="ajaxData.qssc302 ? red : green"
  3295. stroke-miterlimit="10"
  3296. points="478.802,467.081 485.625,459.361 492.645,467.081 "
  3297. />
  3298. <polyline
  3299. fill="none"
  3300. :stroke="ajaxData.qssc302 ? red : green"
  3301. stroke-miterlimit="10"
  3302. points="478.802,472.931 485.625,465.212 492.645,472.931 "
  3303. />
  3304. <polyline
  3305. fill="none"
  3306. :stroke="ajaxData.qssc302 ? red : green"
  3307. stroke-miterlimit="10"
  3308. points="492.645,509.374 485.822,517.096 478.802,509.374 "
  3309. />
  3310. <polyline
  3311. fill="none"
  3312. :stroke="ajaxData.qssc302 ? red : green"
  3313. stroke-miterlimit="10"
  3314. points="492.645,504.597 485.822,512.319 478.802,504.597 "
  3315. />
  3316. </g>
  3317. <g>
  3318. <polyline
  3319. fill="none"
  3320. :stroke="ajaxData.qssc301 ? red : green"
  3321. stroke-miterlimit="10"
  3322. points="1544.546,467.081 1551.37,459.361 1558.39,467.081 "
  3323. />
  3324. <polyline
  3325. fill="none"
  3326. :stroke="ajaxData.qssc301 ? red : green"
  3327. stroke-miterlimit="10"
  3328. points="1544.546,472.931 1551.37,465.212 1558.39,472.931 "
  3329. />
  3330. <polyline
  3331. fill="none"
  3332. :stroke="ajaxData.qssc301 ? red : green"
  3333. stroke-miterlimit="10"
  3334. points="1558.39,509.374 1551.566,517.096 1544.546,509.374 "
  3335. />
  3336. <polyline
  3337. fill="none"
  3338. :stroke="ajaxData.qssc301 ? red : green"
  3339. stroke-miterlimit="10"
  3340. points="1558.39,504.597 1551.566,512.319 1544.546,504.597 "
  3341. />
  3342. </g>
  3343. <g>
  3344. <polyline
  3345. fill="none"
  3346. :stroke="ajaxData.qssc325 ? red : green"
  3347. stroke-width="1.3"
  3348. stroke-miterlimit="10"
  3349. points="166.663,613.668 159.841,621.387 152.819,613.668 "
  3350. />
  3351. <polyline
  3352. fill="none"
  3353. :stroke="ajaxData.qssc325 ? red : green"
  3354. stroke-width="1.3"
  3355. stroke-miterlimit="10"
  3356. points="166.663,607.818 159.841,615.537 152.819,607.818 "
  3357. />
  3358. <polyline
  3359. fill="none"
  3360. :stroke="ajaxData.qssc325 ? red : green"
  3361. stroke-width="1.3"
  3362. stroke-miterlimit="10"
  3363. points="152.819,576.152 159.644,568.43 166.663,576.152 "
  3364. />
  3365. <polyline
  3366. fill="none"
  3367. :stroke="ajaxData.qssc325 ? red : green"
  3368. stroke-width="1.3"
  3369. stroke-miterlimit="10"
  3370. points="152.819,568.992 159.644,561.27 166.663,568.992 "
  3371. />
  3372. </g>
  3373. <g>
  3374. <polyline
  3375. fill="none"
  3376. :stroke="ajaxData.qssc324 ? red : green"
  3377. stroke-width="1.3"
  3378. stroke-miterlimit="10"
  3379. points="248.345,613.668 241.522,621.387 234.501,613.668 "
  3380. />
  3381. <polyline
  3382. fill="none"
  3383. :stroke="ajaxData.qssc324 ? red : green"
  3384. stroke-width="1.3"
  3385. stroke-miterlimit="10"
  3386. points="248.345,607.818 241.522,615.537 234.501,607.818 "
  3387. />
  3388. <polyline
  3389. fill="none"
  3390. :stroke="ajaxData.qssc324 ? red : green"
  3391. stroke-width="1.3"
  3392. stroke-miterlimit="10"
  3393. points="234.501,576.152 241.325,568.43 248.345,576.152 "
  3394. />
  3395. <polyline
  3396. fill="none"
  3397. :stroke="ajaxData.qssc324 ? red : green"
  3398. stroke-width="1.3"
  3399. stroke-miterlimit="10"
  3400. points="234.501,568.992 241.325,561.27 248.345,568.992 "
  3401. />
  3402. </g>
  3403. <g>
  3404. <polyline
  3405. fill="none"
  3406. :stroke="ajaxData.qssc323 ? red : green"
  3407. stroke-width="1.3"
  3408. stroke-miterlimit="10"
  3409. points="333.036,613.668 326.213,621.387 319.192,613.668 "
  3410. />
  3411. <polyline
  3412. fill="none"
  3413. :stroke="ajaxData.qssc323 ? red : green"
  3414. stroke-width="1.3"
  3415. stroke-miterlimit="10"
  3416. points="333.036,607.818 326.213,615.537 319.192,607.818 "
  3417. />
  3418. <polyline
  3419. fill="none"
  3420. :stroke="ajaxData.qssc323 ? red : green"
  3421. stroke-width="1.3"
  3422. stroke-miterlimit="10"
  3423. points="319.192,576.152 326.016,568.43 333.036,576.152 "
  3424. />
  3425. <polyline
  3426. fill="none"
  3427. :stroke="ajaxData.qssc323 ? red : green"
  3428. stroke-width="1.3"
  3429. stroke-miterlimit="10"
  3430. points="319.192,568.992 326.016,561.27 333.036,568.992 "
  3431. />
  3432. </g>
  3433. <g>
  3434. <polyline
  3435. fill="none"
  3436. :stroke="ajaxData.qssc329 ? red : green"
  3437. stroke-width="1.3"
  3438. stroke-miterlimit="10"
  3439. points="422.289,583.152 429.113,575.43 436.133,583.152 "
  3440. />
  3441. <polyline
  3442. fill="none"
  3443. :stroke="ajaxData.qssc329 ? red : green"
  3444. stroke-width="1.3"
  3445. stroke-miterlimit="10"
  3446. points="422.289,575.992 429.113,568.27 436.133,575.992 "
  3447. />
  3448. </g>
  3449. <g>
  3450. <polyline
  3451. fill="none"
  3452. :stroke="ajaxData.qssc322 ? red : green"
  3453. stroke-width="1.3"
  3454. stroke-miterlimit="10"
  3455. points="537.579,613.668 530.757,621.387 523.735,613.668 "
  3456. />
  3457. <polyline
  3458. fill="none"
  3459. :stroke="ajaxData.qssc322 ? red : green"
  3460. stroke-width="1.3"
  3461. stroke-miterlimit="10"
  3462. points="537.579,607.818 530.757,615.537 523.735,607.818 "
  3463. />
  3464. <polyline
  3465. fill="none"
  3466. :stroke="ajaxData.qssc322 ? red : green"
  3467. stroke-width="1.3"
  3468. stroke-miterlimit="10"
  3469. points="523.735,576.152 530.56,568.43 537.579,576.152 "
  3470. />
  3471. <polyline
  3472. fill="none"
  3473. :stroke="ajaxData.qssc322 ? red : green"
  3474. stroke-width="1.3"
  3475. stroke-miterlimit="10"
  3476. points="523.735,568.992 530.56,561.27 537.579,568.992 "
  3477. />
  3478. </g>
  3479. <g>
  3480. <polyline
  3481. fill="none"
  3482. :stroke="ajaxData.qssc321 ? red : green"
  3483. stroke-width="1.3"
  3484. stroke-miterlimit="10"
  3485. points="620.865,613.668 614.043,621.387 607.021,613.668 "
  3486. />
  3487. <polyline
  3488. fill="none"
  3489. :stroke="ajaxData.qssc321 ? red : green"
  3490. stroke-width="1.3"
  3491. stroke-miterlimit="10"
  3492. points="620.865,607.818 614.043,615.537 607.021,607.818 "
  3493. />
  3494. <polyline
  3495. fill="none"
  3496. :stroke="ajaxData.qssc321 ? red : green"
  3497. stroke-width="1.3"
  3498. stroke-miterlimit="10"
  3499. points="607.021,576.152 613.846,568.43 620.865,576.152 "
  3500. />
  3501. <polyline
  3502. fill="none"
  3503. :stroke="ajaxData.qssc321 ? red : green"
  3504. stroke-width="1.3"
  3505. stroke-miterlimit="10"
  3506. points="607.021,568.992 613.846,561.27 620.865,568.992 "
  3507. />
  3508. </g>
  3509. <g>
  3510. <polyline
  3511. fill="none"
  3512. :stroke="ajaxData.qssc300 ? red : green"
  3513. stroke-width="1.3"
  3514. stroke-miterlimit="10"
  3515. points="791.365,613.668 784.543,621.387 777.521,613.668 "
  3516. />
  3517. <polyline
  3518. fill="none"
  3519. :stroke="ajaxData.qssc300 ? red : green"
  3520. stroke-width="1.3"
  3521. stroke-miterlimit="10"
  3522. points="791.365,607.818 784.543,615.537 777.521,607.818 "
  3523. />
  3524. <polyline
  3525. fill="none"
  3526. :stroke="ajaxData.qssc300 ? red : green"
  3527. stroke-width="1.3"
  3528. stroke-miterlimit="10"
  3529. points="777.521,576.152 784.346,568.43 791.365,576.152 "
  3530. />
  3531. <polyline
  3532. fill="none"
  3533. :stroke="ajaxData.qssc300 ? red : green"
  3534. stroke-width="1.3"
  3535. stroke-miterlimit="10"
  3536. points="777.521,568.992 784.346,561.27 791.365,568.992 "
  3537. />
  3538. </g>
  3539. <g>
  3540. <polyline
  3541. fill="none"
  3542. :stroke="ajaxData.qssc3001 ? red : green"
  3543. stroke-width="1.3"
  3544. stroke-miterlimit="10"
  3545. points="990.365,613.668 983.543,621.387 976.521,613.668 "
  3546. />
  3547. <polyline
  3548. fill="none"
  3549. :stroke="ajaxData.qssc3001 ? red : green"
  3550. stroke-width="1.3"
  3551. stroke-miterlimit="10"
  3552. points="990.365,607.818 983.543,615.537 976.521,607.818 "
  3553. />
  3554. <polyline
  3555. fill="none"
  3556. :stroke="ajaxData.qssc3001 ? red : green"
  3557. stroke-width="1.3"
  3558. stroke-miterlimit="10"
  3559. points="976.521,576.152 983.346,568.43 990.365,576.152 "
  3560. />
  3561. <polyline
  3562. fill="none"
  3563. :stroke="ajaxData.qssc3001 ? red : green"
  3564. stroke-width="1.3"
  3565. stroke-miterlimit="10"
  3566. points="976.521,568.992 983.346,561.27 990.365,568.992 "
  3567. />
  3568. </g>
  3569. <g>
  3570. <polyline
  3571. fill="none"
  3572. :stroke="ajaxData.qssc316 ? red : green"
  3573. stroke-width="1.3"
  3574. stroke-miterlimit="10"
  3575. points="1072.04,613.668 1065.218,621.387 1058.196,613.668 "
  3576. />
  3577. <polyline
  3578. fill="none"
  3579. :stroke="ajaxData.qssc316 ? red : green"
  3580. stroke-width="1.3"
  3581. stroke-miterlimit="10"
  3582. points="1072.04,607.818 1065.218,615.537 1058.196,607.818 "
  3583. />
  3584. <polyline
  3585. fill="none"
  3586. :stroke="ajaxData.qssc316 ? red : green"
  3587. stroke-width="1.3"
  3588. stroke-miterlimit="10"
  3589. points="1058.196,576.152 1065.021,568.43 1072.04,576.152 "
  3590. />
  3591. <polyline
  3592. fill="none"
  3593. :stroke="ajaxData.qssc316 ? red : green"
  3594. stroke-width="1.3"
  3595. stroke-miterlimit="10"
  3596. points="1058.196,568.992 1065.021,561.27 1072.04,568.992 "
  3597. />
  3598. </g>
  3599. <g>
  3600. <polyline
  3601. fill="none"
  3602. :stroke="ajaxData.qssc315 ? red : green"
  3603. stroke-width="1.3"
  3604. stroke-miterlimit="10"
  3605. points="1155.813,613.668 1148.991,621.387 1141.97,613.668 "
  3606. />
  3607. <polyline
  3608. fill="none"
  3609. :stroke="ajaxData.qssc315 ? red : green"
  3610. stroke-width="1.3"
  3611. stroke-miterlimit="10"
  3612. points="1155.813,607.818 1148.991,615.537 1141.97,607.818 "
  3613. />
  3614. <polyline
  3615. fill="none"
  3616. :stroke="ajaxData.qssc315 ? red : green"
  3617. stroke-width="1.3"
  3618. stroke-miterlimit="10"
  3619. points="1141.97,576.152 1148.794,568.43 1155.813,576.152 "
  3620. />
  3621. <polyline
  3622. fill="none"
  3623. :stroke="ajaxData.qssc315 ? red : green"
  3624. stroke-width="1.3"
  3625. stroke-miterlimit="10"
  3626. points="1141.97,568.992 1148.794,561.27 1155.813,568.992 "
  3627. />
  3628. </g>
  3629. <g>
  3630. <polyline
  3631. fill="none"
  3632. :stroke="ajaxData.qssc314 ? red : green"
  3633. stroke-width="1.3"
  3634. stroke-miterlimit="10"
  3635. points="1249.614,613.668 1242.792,621.387 1235.771,613.668 "
  3636. />
  3637. <polyline
  3638. fill="none"
  3639. :stroke="ajaxData.qssc314 ? red : green"
  3640. stroke-width="1.3"
  3641. stroke-miterlimit="10"
  3642. points="1249.614,607.818 1242.792,615.537 1235.771,607.818 "
  3643. />
  3644. <polyline
  3645. fill="none"
  3646. :stroke="ajaxData.qssc314 ? red : green"
  3647. stroke-width="1.3"
  3648. stroke-miterlimit="10"
  3649. points="1235.771,576.152 1242.595,568.43 1249.614,576.152 "
  3650. />
  3651. <polyline
  3652. fill="none"
  3653. :stroke="ajaxData.qssc314 ? red : green"
  3654. stroke-width="1.3"
  3655. stroke-miterlimit="10"
  3656. points="1235.771,568.992 1242.595,561.27 1249.614,568.992 "
  3657. />
  3658. </g>
  3659. <g>
  3660. <polyline
  3661. fill="none"
  3662. :stroke="ajaxData.qssc313 ? red : green"
  3663. stroke-width="1.3"
  3664. stroke-miterlimit="10"
  3665. points="1340.634,613.668 1333.812,621.387 1326.79,613.668 "
  3666. />
  3667. <polyline
  3668. fill="none"
  3669. :stroke="ajaxData.qssc313 ? red : green"
  3670. stroke-width="1.3"
  3671. stroke-miterlimit="10"
  3672. points="1340.634,607.818 1333.812,615.537 1326.79,607.818 "
  3673. />
  3674. <polyline
  3675. fill="none"
  3676. :stroke="ajaxData.qssc313 ? red : green"
  3677. stroke-width="1.3"
  3678. stroke-miterlimit="10"
  3679. points="1326.79,576.152 1333.614,568.43 1340.634,576.152 "
  3680. />
  3681. <polyline
  3682. fill="none"
  3683. :stroke="ajaxData.qssc313 ? red : green"
  3684. stroke-width="1.3"
  3685. stroke-miterlimit="10"
  3686. points="1326.79,568.992 1333.614,561.27 1340.634,568.992 "
  3687. />
  3688. </g>
  3689. <g>
  3690. <polyline
  3691. fill="none"
  3692. :stroke="ajaxData.qssc312 ? red : green"
  3693. stroke-width="1.3"
  3694. stroke-miterlimit="10"
  3695. points="1424.634,613.668 1417.812,621.387 1410.79,613.668 "
  3696. />
  3697. <polyline
  3698. fill="none"
  3699. :stroke="ajaxData.qssc312 ? red : green"
  3700. stroke-width="1.3"
  3701. stroke-miterlimit="10"
  3702. points="1424.634,607.818 1417.812,615.537 1410.79,607.818 "
  3703. />
  3704. <polyline
  3705. fill="none"
  3706. :stroke="ajaxData.qssc312 ? red : green"
  3707. stroke-width="1.3"
  3708. stroke-miterlimit="10"
  3709. points="1410.79,576.152 1417.614,568.43 1424.634,576.152 "
  3710. />
  3711. <polyline
  3712. fill="none"
  3713. :stroke="ajaxData.qssc312 ? red : green"
  3714. stroke-width="1.3"
  3715. stroke-miterlimit="10"
  3716. points="1410.79,568.992 1417.614,561.27 1424.634,568.992 "
  3717. />
  3718. </g>
  3719. <g>
  3720. <polyline
  3721. fill="none"
  3722. :stroke="ajaxData.qssc311 ? red : green"
  3723. stroke-width="1.3"
  3724. stroke-miterlimit="10"
  3725. points="1507.354,613.668 1500.532,621.387 1493.511,613.668 "
  3726. />
  3727. <polyline
  3728. fill="none"
  3729. :stroke="ajaxData.qssc311 ? red : green"
  3730. stroke-width="1.3"
  3731. stroke-miterlimit="10"
  3732. points="1507.354,607.818 1500.532,615.537 1493.511,607.818 "
  3733. />
  3734. <polyline
  3735. fill="none"
  3736. :stroke="ajaxData.qssc311 ? red : green"
  3737. stroke-width="1.3"
  3738. stroke-miterlimit="10"
  3739. points="1493.511,576.152 1500.335,568.43 1507.354,576.152 "
  3740. />
  3741. <polyline
  3742. fill="none"
  3743. :stroke="ajaxData.qssc311 ? red : green"
  3744. stroke-width="1.3"
  3745. stroke-miterlimit="10"
  3746. points="1493.511,568.992 1500.335,561.27 1507.354,568.992 "
  3747. />
  3748. </g>
  3749. <g>
  3750. <polyline
  3751. fill="none"
  3752. :stroke="ajaxData.qssc319 ? red : green"
  3753. stroke-width="1.3"
  3754. stroke-miterlimit="10"
  3755. points="1600.558,575.264 1607.382,567.541 1614.401,575.264 "
  3756. />
  3757. <polyline
  3758. fill="none"
  3759. :stroke="ajaxData.qssc319 ? red : green"
  3760. stroke-width="1.3"
  3761. stroke-miterlimit="10"
  3762. points="1600.558,568.104 1607.382,560.381 1614.401,568.104 "
  3763. />
  3764. </g>
  3765. </g>
  3766. </svg>
  3767. </template>
  3768. </previewPicture>
  3769. </el-col>
  3770. </el-row>
  3771. </div>
  3772. </template>
  3773. <script>
  3774. import previewPicture from "../previewPicture.vue";
  3775. import { BoosterStation } from "./BoosterStation";
  3776. export default {
  3777. components: {
  3778. previewPicture,
  3779. },
  3780. data() {
  3781. return {
  3782. green: "#02A434",
  3783. red: "#FF0000",
  3784. ajaxData: {},
  3785. interval: "",
  3786. };
  3787. },
  3788. created() {
  3789. this.boosterStation = new BoosterStation();
  3790. this.refreshTPData();
  3791. this.interval = setInterval(this.refreshTPData, 1000);
  3792. },
  3793. methods: {
  3794. closed() {
  3795. clearInterval(this.interval);
  3796. },
  3797. refreshTPData() {
  3798. this.boosterStation.getDatas("QS_FDC", this.bindValue);
  3799. },
  3800. bindValue(msg) {
  3801. this.ajaxData = msg;
  3802. },
  3803. },
  3804. };
  3805. </script>
  3806. <style scoped>
  3807. .center-bar {
  3808. position: relative;
  3809. box-sizing: border-box;
  3810. height: 90vh;
  3811. background-color: #000000;
  3812. padding-top: 10px;
  3813. padding-left: 5px;
  3814. padding-right: 5px;
  3815. padding-bottom: 5px;
  3816. margin-top: 0;
  3817. margin-right: 0;
  3818. margin-bottom: 3px;
  3819. margin-left: 0;
  3820. display: flex;
  3821. flex-direction: column;
  3822. }
  3823. .svg {
  3824. margin-left:5%;
  3825. width: 90%;
  3826. height: 90%;
  3827. }
  3828. </style>