style.yaml 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. 320-FLW-2-8010:
  2. background_color: rgba(0, 0, 0, 0)
  3. condition: ''
  4. decimal: '2'
  5. formula: ''
  6. header:
  7. size: 25
  8. title: ' '
  9. weight: '400'
  10. height: 30
  11. larger: ''
  12. left: 690px
  13. lesser: '1'
  14. linkhtml: 'true'
  15. ref: 320-FLW-2-8010
  16. top: 170px
  17. trend: 'true'
  18. type: data
  19. unit:
  20. size: 25
  21. title: ' g/s'
  22. weight: '400'
  23. width: 126
  24. 320-FLW-2-9026:
  25. background_color: rgba(0, 0, 0, 0)
  26. decimal: '2'
  27. exponential: 'false'
  28. formula: ''
  29. header:
  30. size: 25
  31. title: ' '
  32. weight: '400'
  33. height: 34
  34. larger: ''
  35. left: 1353px
  36. lesser: '0.08'
  37. linkhtml: 'true'
  38. ref: 320-FLW-2-9026
  39. top: 508px
  40. trend: 'true'
  41. type: data
  42. unit:
  43. size: 25
  44. title: ' g/s'
  45. weight: '400'
  46. width: 126
  47. 320-HEE-5-0006:
  48. background_color: rgba(0, 0, 0, 0)
  49. decimal: '2'
  50. exponential: 'false'
  51. formula: ''
  52. header:
  53. size: 25
  54. title: ' '
  55. weight: '400'
  56. height: 37
  57. larger: ''
  58. left: 1566px
  59. lesser: '40'
  60. linkhtml: 'true'
  61. ref: 320-HEE-5-0006
  62. top: 307px
  63. trend: 'true'
  64. type: data
  65. unit:
  66. size: 25
  67. title: ' %'
  68. weight: '400'
  69. width: 126
  70. 320-MOD-0-0001:
  71. background_color: rgba(0, 0, 0, 0)
  72. cond: '{"1":"","2":"","3":"","4":"","5":"","6":"", "7": "","8": ""}'
  73. dict: '{"1":"Bake-Out","2":"Cool-Down","3":"Argon-Preparation","4":"Standby","5":"Standard
  74. Operation","6":" Regeneration", "7": "Warm-Up","8": "CKrS Calibration"}'
  75. header:
  76. size: 28px
  77. title: 'Operation Mode '
  78. weight: '400'
  79. height: 84
  80. left: 157px
  81. linkhtml: 'true'
  82. ref: 320-MOD-0-0001
  83. top: 128px
  84. trend: 'true'
  85. type: integer-to-string
  86. unit:
  87. size: 28px
  88. weight: '700'
  89. width: 446
  90. 320-PCO-9-1002:
  91. background_color: rgba(0, 0, 0, 0)
  92. decimal: '2'
  93. exponential: 'false'
  94. formula: ''
  95. header:
  96. size: 25
  97. title: ' '
  98. weight: '400'
  99. height: 37
  100. larger: ''
  101. left: 1488px
  102. lesser: ''
  103. linkhtml: 'true'
  104. ref: 320-PCO-9-1002
  105. top: 12px
  106. trend: 'true'
  107. type: data
  108. unit:
  109. size: 25
  110. title: ' Hz'
  111. weight: '400'
  112. width: 149
  113. 320-PCO-9-2002:
  114. background_color: rgba(0, 0, 0, 0)
  115. condition: ''
  116. decimal: '2'
  117. exponential: 'false'
  118. formula: ''
  119. header:
  120. size: 25
  121. title: ' '
  122. weight: '400'
  123. height: 37
  124. larger: ''
  125. left: 1490px
  126. lesser: ''
  127. linkhtml: 'true'
  128. ref: 320-PCO-9-2002
  129. top: 88px
  130. trend: 'true'
  131. type: data
  132. unit:
  133. size: 25
  134. title: ' Hz'
  135. weight: '400'
  136. width: 155
  137. 320-PDF-4-1006:
  138. background_color: rgba(0, 0, 0, 0)
  139. decimal: '2'
  140. exponential: 'false'
  141. formula: ''
  142. header:
  143. size: 28
  144. title: ' '
  145. weight: '400'
  146. height: 23
  147. larger: ''
  148. left: 154px
  149. lesser: '0.9'
  150. linkhtml: 'true'
  151. ref: 320-PDF-4-1006
  152. top: 1253px
  153. trend: 'true'
  154. type: data
  155. unit:
  156. size: 25
  157. title: ' '
  158. weight: '400'
  159. width: 50
  160. 320-PDF-4-2006:
  161. background_color: rgba(0, 0, 0, 0)
  162. decimal: '2'
  163. exponential: 'false'
  164. formula: ''
  165. header:
  166. size: 28
  167. title: ' '
  168. weight: '400'
  169. height: 37
  170. larger: ''
  171. left: 1686px
  172. lesser: '0.9'
  173. linkhtml: 'true'
  174. ref: 320-PDF-4-2006
  175. top: 1247px
  176. trend: 'true'
  177. type: data
  178. unit:
  179. size: 25
  180. title: ' '
  181. weight: '400'
  182. width: 50
  183. 320-PTM-4-1002:
  184. background_color: rgba(0, 0, 0, 0)
  185. decimal: '0'
  186. exponential: 'false'
  187. formula: ''
  188. header:
  189. size: 25
  190. title: ' '
  191. weight: '400'
  192. height: 38
  193. larger: ''
  194. left: 408px
  195. lesser: ''
  196. linkhtml: 'true'
  197. ref: 320-PTM-4-1002
  198. top: 1252px
  199. trend: 'true'
  200. type: data
  201. unit:
  202. size: 25
  203. title: ' Hz'
  204. weight: '400'
  205. width: 169
  206. 320-PTM-4-2002:
  207. background_color: rgba(0, 0, 0, 0)
  208. decimal: '0'
  209. exponential: 'false'
  210. formula: ''
  211. header:
  212. size: 25
  213. title: ' '
  214. weight: '400'
  215. height: 37
  216. larger: ''
  217. left: 1388px
  218. lesser: ''
  219. linkhtml: 'true'
  220. ref: 320-PTM-4-2002
  221. top: 1240px
  222. trend: 'true'
  223. type: data
  224. unit:
  225. size: 25
  226. title: ' Hz'
  227. weight: '400'
  228. width: 144
  229. 320-REI-1-5103:
  230. background_color: rgba(0, 0, 0, 0)
  231. decimal: '2'
  232. formula: ''
  233. header:
  234. size: 25
  235. title: 'Current: '
  236. weight: '400'
  237. height: 39
  238. larger: '200'
  239. left: 155px
  240. lesser: ''
  241. linkhtml: 'true'
  242. ref: 320-REI-1-5103
  243. top: 440px
  244. trend: 'true'
  245. type: data
  246. unit:
  247. size: 25
  248. title: ' A'
  249. weight: '400'
  250. width: 206
  251. 320-REU-8-1104:
  252. background_color: rgba(0, 0, 0, 0)
  253. decimal: '2'
  254. exponential: 'false'
  255. formula: ''
  256. header:
  257. size: 25
  258. title: '| '
  259. weight: '400'
  260. height: 36
  261. larger: '0.08'
  262. left: 352px
  263. lesser: ''
  264. linkhtml: 'true'
  265. ref: 320-REU-8-1104
  266. top: 376px
  267. trend: 'true'
  268. type: data
  269. unit:
  270. size: 25
  271. title: ' V'
  272. weight: '400'
  273. width: 138
  274. 320-REU-8-2102:
  275. background_color: rgba(0, 0, 0, 0)
  276. decimal: '2'
  277. exponential: 'False'
  278. formula: ''
  279. header:
  280. size: 25
  281. title: '| '
  282. weight: '400'
  283. height: 38
  284. larger: '0.08'
  285. left: 351px
  286. lesser: ''
  287. linkhtml: 'true'
  288. ref: 320-REU-8-2102
  289. top: 322px
  290. trend: 'true'
  291. type: data
  292. unit:
  293. size: 25
  294. title: ' V'
  295. weight: '400'
  296. width: 134
  297. 320-RFC-2-0103:
  298. background_color: rgba(0, 0, 0, 0)
  299. decimal: '2'
  300. exponential: 'False'
  301. formula: ''
  302. header:
  303. size: 25
  304. title: 'Cooling: '
  305. weight: '400'
  306. height: 30
  307. larger: ''
  308. left: 154px
  309. lesser: '9'
  310. linkhtml: 'true'
  311. ref: 320-RFC-2-0103
  312. top: 497px
  313. trend: 'true'
  314. type: data
  315. unit:
  316. size: 25
  317. title: ' L/h'
  318. weight: '400'
  319. width: 264
  320. 320-RFC-2-0104:
  321. background_color: rgba(0, 0, 0, 0)
  322. condition: ''
  323. decimal: '2'
  324. exponential: 'false'
  325. formula: ''
  326. header:
  327. size: 25
  328. title: '| '
  329. weight: '400'
  330. height: 30
  331. larger: ''
  332. left: 360px
  333. lesser: '9'
  334. linkhtml: 'true'
  335. ref: 320-RFC-2-0104
  336. top: 497px
  337. trend: 'true'
  338. type: data
  339. unit:
  340. size: 25
  341. title: ' L/h'
  342. weight: '400'
  343. width: 138
  344. 320-PCO-2-0031:
  345. background_color: rgba(0, 0, 0, 0)
  346. decimal: '0'
  347. exponential: 'False'
  348. formula: ''
  349. header:
  350. size: 25
  351. title: 'Pumping: '
  352. weight: '400'
  353. height: 30
  354. larger: '100'
  355. left: 154px
  356. lesser: ''
  357. linkhtml: 'true'
  358. ref: 320-PCO-2-0031
  359. top: 554px
  360. trend: 'true'
  361. type: data
  362. unit:
  363. size: 25
  364. title: ' 1/min'
  365. weight: '400'
  366. width: 264
  367. 320-PCO-2-0032:
  368. background_color: rgba(0, 0, 0, 0)
  369. decimal: '0'
  370. exponential: 'False'
  371. formula: ''
  372. header:
  373. size: 25
  374. title: ' '
  375. weight: '400'
  376. height: 30
  377. larger: '100'
  378. left: 271px
  379. lesser: ''
  380. linkhtml: 'true'
  381. ref: 320-PCO-2-0032
  382. top: 590px
  383. trend: 'true'
  384. type: data
  385. unit:
  386. size: 25
  387. title: ' 1/min'
  388. weight: '400'
  389. width: 264
  390. 320-RLI-2-8116:
  391. background_color: rgba(0, 0, 0, 0)
  392. condition: ''
  393. decimal: '2'
  394. header:
  395. size: 25
  396. title: ' '
  397. weight: '400'
  398. height: 33
  399. larger: '90'
  400. left: 966px
  401. lesser: '10'
  402. linkhtml: 'true'
  403. ref: 320-RLI-2-8116
  404. top: 206px
  405. trend: 'true'
  406. type: data
  407. unit:
  408. size: 25
  409. title: ' %'
  410. weight: '400'
  411. width: 113
  412. 320-RLI-2-9112:
  413. background_color: rgba(0, 0, 0, 0)
  414. decimal: '2'
  415. exponential: 'false'
  416. formula: ''
  417. header:
  418. size: 25
  419. title: ' '
  420. weight: '400'
  421. height: 31
  422. larger: '90'
  423. left: 1357.98px
  424. lesser: '10'
  425. linkhtml: 'true'
  426. ref: 320-RLI-2-9112
  427. top: 229.967px
  428. trend: 'true'
  429. type: data
  430. unit:
  431. size: 25
  432. title: ' %'
  433. weight: '400'
  434. width: 145
  435. 320-RLI-5-0103:
  436. background_color: rgba(0, 0, 0, 0)
  437. condition: ''
  438. decimal: '2'
  439. header:
  440. size: 25
  441. title: ' '
  442. weight: '400'
  443. height: 38
  444. larger: '90'
  445. left: 1566px
  446. lesser: '10'
  447. linkhtml: 'true'
  448. ref: 320-RLI-5-0103
  449. top: 234px
  450. trend: 'true'
  451. type: data
  452. unit:
  453. size: 25
  454. title: ' %'
  455. weight: '400'
  456. width: 122
  457. 320-RPI-2-0133:
  458. background_color: rgba(0, 0, 0, 0)
  459. decimal: '2'
  460. exponential: 'false'
  461. formula: ''
  462. header:
  463. size: 25
  464. title: '| '
  465. weight: '400'
  466. height: 37
  467. larger: ''
  468. left: 415px
  469. lesser: ''
  470. linkhtml: 'true'
  471. ref: 320-RPI-2-0133
  472. top: 554px
  473. trend: 'true'
  474. type: data
  475. unit:
  476. size: 25
  477. title: ' bar'
  478. weight: '400'
  479. width: 145
  480. 320-RPI-2-8110:
  481. background_color: rgba(0, 0, 0, 0)
  482. condition: ''
  483. decimal: '2'
  484. exponential: 'false'
  485. formula: ''
  486. header:
  487. size: 25
  488. title: ' '
  489. weight: '400'
  490. height: 30
  491. larger: ''
  492. left: 690px
  493. lesser: ''
  494. linkhtml: 'true'
  495. ref: 320-RPI-2-8110
  496. top: 210px
  497. trend: 'true'
  498. type: data
  499. unit:
  500. size: 25
  501. title: ' bar'
  502. weight: '400'
  503. width: 130
  504. 320-RPI-2-8125:
  505. background_color: rgba(0, 0, 0, 0)
  506. decimal: '2'
  507. formula: ''
  508. header:
  509. size: 25
  510. title: ' '
  511. weight: '400'
  512. height: 30
  513. larger: '2.5'
  514. left: 982px
  515. lesser: ''
  516. linkhtml: 'true'
  517. ref: 320-RPI-2-8125
  518. top: 41px
  519. trend: 'true'
  520. type: data
  521. unit:
  522. size: 25
  523. title: ' bar'
  524. weight: '400'
  525. width: 130
  526. 320-RPI-5-0105:
  527. background_color: rgba(0, 0, 0, 0)
  528. decimal: '2'
  529. exponential: 'false'
  530. formula: ''
  531. header:
  532. size: 25
  533. title: ' '
  534. weight: '400'
  535. height: 37
  536. larger: ''
  537. left: 1566px
  538. lesser: ''
  539. linkhtml: 'true'
  540. ref: 320-RPI-5-0105
  541. top: 344px
  542. trend: 'true'
  543. type: data
  544. unit:
  545. size: 25
  546. title: ' bar'
  547. weight: '400'
  548. width: 132
  549. 320-RPI-9-0121:
  550. background_color: rgba(0, 0, 0, 0)
  551. condition: ''
  552. decimal: '2'
  553. header:
  554. size: 25
  555. title: ' '
  556. weight: '400'
  557. height: 30
  558. larger: '2.5'
  559. left: 1360px
  560. lesser: ''
  561. linkhtml: 'true'
  562. ref: 320-RPI-9-0121
  563. top: 265px
  564. trend: 'true'
  565. type: data
  566. unit:
  567. size: 25
  568. title: ' bar'
  569. weight: '400'
  570. width: 140
  571. 320-RPI-9-0124:
  572. background_color: rgba(0, 0, 0, 0)
  573. decimal: '2'
  574. exponential: 'false'
  575. formula: ''
  576. header:
  577. size: 25
  578. title: ' '
  579. weight: '400'
  580. height: 37
  581. larger: ''
  582. left: 1600px
  583. lesser: ''
  584. linkhtml: 'true'
  585. ref: 320-RPI-9-0124
  586. top: 32px
  587. trend: 'true'
  588. type: data
  589. unit:
  590. size: 25
  591. title: ' bar'
  592. weight: '400'
  593. width: 155
  594. 320-RPV-4-0104:
  595. background_color: rgba(0, 0, 0, 0)
  596. decimal: '2'
  597. exponential: 'true'
  598. formula: ''
  599. header:
  600. size: 25
  601. title: ' '
  602. weight: '400'
  603. height: 42
  604. larger: ''
  605. left: 1564px
  606. lesser: ''
  607. linkhtml: 'true'
  608. ref: 320-RPV-4-0104
  609. top: 1108px
  610. trend: 'true'
  611. type: data
  612. unit:
  613. size: 25
  614. title: ' mbar'
  615. weight: '400'
  616. width: 170
  617. 320-RPV-4-1104:
  618. background_color: rgba(0, 0, 0, 0)
  619. decimal: '2'
  620. exponential: 'true'
  621. formula: ''
  622. header:
  623. size: 28
  624. title: ' '
  625. weight: '400'
  626. height: 37
  627. larger: ''
  628. left: 439px
  629. lesser: ''
  630. linkhtml: 'true'
  631. ref: 320-RPV-4-1104
  632. top: 1291px
  633. trend: 'true'
  634. type: data
  635. unit:
  636. size: 25
  637. title: ' mbar'
  638. weight: '400'
  639. width: 180
  640. 320-RPV-4-1105:
  641. background_color: rgba(0, 0, 0, 0)
  642. decimal: '2'
  643. exponential: 'true'
  644. formula: ''
  645. header:
  646. size: 28
  647. title: ' '
  648. weight: '400'
  649. height: 40
  650. larger: ''
  651. left: 180px
  652. lesser: ''
  653. linkhtml: 'true'
  654. ref: 320-RPV-4-1105
  655. top: 1193px
  656. trend: 'true'
  657. type: data
  658. unit:
  659. size: 25
  660. title: ' mbar'
  661. weight: '400'
  662. width: 186
  663. 320-RPV-4-2104:
  664. background_color: rgba(0, 0, 0, 0)
  665. decimal: '2'
  666. exponential: 'true'
  667. formula: ''
  668. header:
  669. size: 28
  670. title: ' '
  671. weight: '400'
  672. height: 37
  673. larger: ''
  674. left: 1298px
  675. lesser: ''
  676. linkhtml: 'true'
  677. ref: 320-RPV-4-2104
  678. top: 1281px
  679. trend: 'true'
  680. type: data
  681. unit:
  682. size: 25
  683. title: ' mbar'
  684. weight: '400'
  685. width: 168
  686. 320-RTP-3-1102:
  687. background_color: rgba(0, 0, 0, 0)
  688. decimal: '2'
  689. formula: ''
  690. header:
  691. size: 25
  692. title: ' '
  693. weight: '400'
  694. height: 30
  695. larger: '90'
  696. left: 188px
  697. lesser: ''
  698. linkhtml: 'true'
  699. ref: 320-RTP-3-1102
  700. top: 867px
  701. trend: 'true'
  702. type: data
  703. unit:
  704. size: 25
  705. title: ' K'
  706. weight: '400'
  707. width: 113
  708. 320-RTP-3-6101:
  709. background_color: rgba(0, 0, 0, 0)
  710. condition: ''
  711. decimal: '2'
  712. header:
  713. size: 25
  714. title: ' '
  715. weight: '400'
  716. height: 30
  717. larger: '77'
  718. left: 1322px
  719. lesser: ''
  720. linkhtml: 'true'
  721. ref: 320-RTP-3-6101
  722. top: 868px
  723. trend: 'true'
  724. type: data
  725. unit:
  726. size: 25
  727. title: ' K'
  728. weight: '400'
  729. width: 120
  730. 320-RTP-3-7101:
  731. background_color: rgba(0, 0, 0, 0)
  732. condition: ''
  733. decimal: '2'
  734. formula: ''
  735. header:
  736. size: 25
  737. title: ' '
  738. weight: '400'
  739. height: 30
  740. larger: '100'
  741. left: 1633px
  742. lesser: ''
  743. linkhtml: 'true'
  744. ref: 320-RTP-3-7101
  745. top: 871px
  746. trend: 'true'
  747. type: data
  748. unit:
  749. size: 25
  750. title: ' K'
  751. weight: '400'
  752. width: 108
  753. 320-RTP-5-0102:
  754. background_color: rgba(0, 0, 0, 0)
  755. condition: ''
  756. decimal: '2'
  757. formula: ''
  758. header:
  759. size: 25
  760. title: ' '
  761. weight: '400'
  762. height: 36
  763. larger: '100'
  764. left: 1566px
  765. lesser: ''
  766. linkhtml: 'true'
  767. ref: 320-RTP-5-0102
  768. top: 269px
  769. trend: 'true'
  770. type: data
  771. unit:
  772. size: 25
  773. title: ' K'
  774. weight: '400'
  775. width: 106
  776. 320-RTP-5-9107:
  777. background_color: rgba(0, 0, 0, 0)
  778. condition: ''
  779. decimal: '2'
  780. header:
  781. size: 25
  782. title: 'Rad. shield '
  783. weight: '400'
  784. height: 36
  785. larger: '100'
  786. left: 1638px
  787. lesser: ''
  788. linkhtml: 'true'
  789. ref: 320-RTP-5-9107
  790. top: 84px
  791. trend: 'true'
  792. type: data
  793. unit:
  794. size: 25
  795. title: ' K'
  796. weight: '400'
  797. width: 236
  798. 320-RTP-5-9111:
  799. background_color: rgba(0, 0, 0, 0)
  800. condition: ''
  801. decimal: '2'
  802. header:
  803. size: 25
  804. title: 'Rad. shield '
  805. weight: '400'
  806. height: 109
  807. larger: '100'
  808. left: 1803px
  809. lesser: ''
  810. linkhtml: 'true'
  811. ref: 320-RTP-5-9111
  812. top: 311px
  813. trend: 'true'
  814. type: data
  815. unit:
  816. size: 25
  817. title: ' K'
  818. weight: '400'
  819. width: 108
  820. 320-RTP-8-1103:
  821. background_color: rgba(0, 0, 0, 0)
  822. condition: ''
  823. decimal: '2'
  824. header:
  825. size: 25
  826. title: '- pole: '
  827. weight: '400'
  828. height: 38
  829. larger: '350'
  830. left: 155px
  831. lesser: ''
  832. linkhtml: 'true'
  833. ref: 320-RTP-8-1103
  834. top: 382px
  835. trend: 'true'
  836. type: data
  837. unit:
  838. size: 25
  839. title: ' K'
  840. weight: '400'
  841. width: 196
  842. 320-RTP-8-2103:
  843. background_color: rgba(0, 0, 0, 0)
  844. condition: ''
  845. decimal: '2'
  846. header:
  847. size: 25
  848. title: '+ pole: '
  849. weight: '400'
  850. height: 40
  851. larger: '350'
  852. left: 154px
  853. lesser: ''
  854. linkhtml: 'true'
  855. ref: 320-RTP-8-2103
  856. top: 323px
  857. trend: 'true'
  858. type: data
  859. unit:
  860. size: 25
  861. title: ' K'
  862. weight: '400'
  863. width: 191
  864. 320-RTP-9-0110:
  865. background_color: rgba(0, 0, 0, 0)
  866. decimal: '2'
  867. exponential: 'false'
  868. formula: ''
  869. header:
  870. size: 25
  871. title: ' '
  872. weight: '400'
  873. height: 37
  874. larger: ''
  875. left: 1333px
  876. lesser: ''
  877. linkhtml: 'true'
  878. ref: 320-RTP-9-0110
  879. top: 84px
  880. trend: 'true'
  881. type: data
  882. unit:
  883. size: 25
  884. title: ' K'
  885. weight: '400'
  886. width: 135
  887. 320-RTT-0-3107:
  888. background_color: rgba(0, 0, 0, 0)
  889. decimal: '2'
  890. exponential: 'false'
  891. formula: ''
  892. header:
  893. size: 28
  894. title: '| '
  895. weight: '400'
  896. height: 31
  897. larger: '15'
  898. left: 958px
  899. lesser: ''
  900. linkhtml: 'true'
  901. ref: 320-RTT-0-3107
  902. top: 658px
  903. trend: 'true'
  904. type: data
  905. unit:
  906. size: 25
  907. title: ' K'
  908. weight: '400'
  909. width: 140
  910. 320-RTT-0-3108:
  911. background_color: rgba(0, 0, 0, 0)
  912. condition: ''
  913. decimal: '2'
  914. exponential: 'false'
  915. formula: ''
  916. header:
  917. size: 25
  918. title: ' '
  919. weight: '400'
  920. height: 37
  921. larger: ''
  922. left: 859px
  923. lesser: ''
  924. linkhtml: 'true'
  925. ref: 320-RTT-0-3108
  926. top: 660px
  927. trend: 'true'
  928. type: data
  929. unit:
  930. size: 25
  931. title: ' K'
  932. weight: '400'
  933. width: 127
  934. 320-RTT-1-1107:
  935. background_color: rgba(0, 0, 0, 0)
  936. decimal: '2'
  937. exponential: 'False'
  938. formula: ''
  939. header:
  940. size: 25
  941. title: ' '
  942. weight: '400'
  943. height: 29
  944. larger: '6'
  945. left: 180px
  946. lesser: ''
  947. linkhtml: 'true'
  948. ref: 320-RTT-1-1107
  949. top: 718px
  950. trend: 'true'
  951. type: data
  952. unit:
  953. size: 25
  954. title: ' K'
  955. weight: '400'
  956. width: 110
  957. 320-RTT-1-2107:
  958. background_color: rgba(0, 0, 0, 0)
  959. condition: ''
  960. decimal: '2'
  961. header:
  962. size: 25
  963. title: ' '
  964. weight: '400'
  965. height: 30
  966. larger: '6'
  967. left: 453px
  968. lesser: ''
  969. linkhtml: 'true'
  970. ref: 320-RTT-1-2107
  971. top: 717px
  972. trend: 'true'
  973. type: data
  974. unit:
  975. size: 25
  976. title: ' K'
  977. weight: '400'
  978. width: 108
  979. 320-RTT-1-3107:
  980. background_color: rgba(0, 0, 0, 0)
  981. decimal: '2'
  982. formula: ''
  983. header:
  984. size: 25
  985. title: ' '
  986. weight: '400'
  987. height: 28
  988. larger: '6'
  989. left: 647px
  990. lesser: ''
  991. linkhtml: 'true'
  992. ref: 320-RTT-1-3107
  993. top: 718px
  994. trend: 'true'
  995. type: data
  996. unit:
  997. size: 25
  998. title: ' K'
  999. weight: '400'
  1000. width: 109
  1001. 320-RTT-1-4107:
  1002. background_color: rgba(0, 0, 0, 0)
  1003. condition: ''
  1004. decimal: '2'
  1005. header:
  1006. size: 25
  1007. title: ' '
  1008. weight: '400'
  1009. height: 28
  1010. larger: '6'
  1011. left: 838px
  1012. lesser: ''
  1013. linkhtml: 'true'
  1014. ref: 320-RTT-1-4107
  1015. top: 720px
  1016. trend: 'true'
  1017. type: data
  1018. unit:
  1019. size: 25
  1020. title: ' K'
  1021. weight: '400'
  1022. width: 110
  1023. 320-RTT-1-5107:
  1024. background_color: rgba(0, 0, 0, 0)
  1025. decimal: '2'
  1026. exponential: 'false'
  1027. formula: ''
  1028. header:
  1029. size: 25
  1030. title: ' '
  1031. weight: '400'
  1032. height: 33
  1033. larger: '6'
  1034. left: 1034px
  1035. lesser: ''
  1036. linkhtml: 'true'
  1037. ref: 320-RTT-1-5107
  1038. top: 720px
  1039. trend: 'true'
  1040. type: data
  1041. unit:
  1042. size: 25
  1043. title: ' K'
  1044. weight: '400'
  1045. width: 109
  1046. 320-RTT-1-6107:
  1047. background_color: rgba(0, 0, 0, 0)
  1048. decimal: '2'
  1049. formula: ''
  1050. header:
  1051. size: 25
  1052. title: ' '
  1053. weight: '400'
  1054. height: 30
  1055. larger: '6'
  1056. left: 1319px
  1057. lesser: ''
  1058. linkhtml: 'true'
  1059. ref: 320-RTT-1-6107
  1060. top: 718px
  1061. trend: 'true'
  1062. type: data
  1063. unit:
  1064. size: 25
  1065. title: ' K'
  1066. weight: '400'
  1067. width: 113
  1068. 320-RTT-1-7107:
  1069. background_color: rgba(0, 0, 0, 0)
  1070. condition: ''
  1071. decimal: '2'
  1072. header:
  1073. size: 25
  1074. title: ' '
  1075. weight: '400'
  1076. height: 31
  1077. larger: '6'
  1078. left: 1623px
  1079. lesser: ''
  1080. linkhtml: 'true'
  1081. ref: 320-RTT-1-7107
  1082. top: 717px
  1083. trend: 'true'
  1084. type: data
  1085. unit:
  1086. size: 25
  1087. title: ' K'
  1088. weight: '400'
  1089. width: 125
  1090. 320-RTT-2-8104:
  1091. background_color: rgba(0, 0, 0, 0)
  1092. decimal: '2'
  1093. exponential: 'false'
  1094. formula: ''
  1095. header:
  1096. size: 25
  1097. title: ' '
  1098. weight: '400'
  1099. height: 30
  1100. larger: ''
  1101. left: 788px
  1102. lesser: ''
  1103. linkhtml: 'true'
  1104. ref: 320-RTT-2-8104
  1105. top: 75px
  1106. trend: 'true'
  1107. type: data
  1108. unit:
  1109. size: 25
  1110. title: ' K'
  1111. weight: '400'
  1112. width: 111
  1113. 320-RTT-2-8109:
  1114. background_color: rgba(0, 0, 0, 0)
  1115. condition: ''
  1116. decimal: '2'
  1117. exponential: 'false'
  1118. formula: ''
  1119. header:
  1120. size: 25
  1121. title: ' '
  1122. weight: '400'
  1123. height: 40
  1124. larger: ''
  1125. left: 690px
  1126. lesser: ''
  1127. linkhtml: 'true'
  1128. ref: 320-RTT-2-8109
  1129. top: 130px
  1130. trend: 'true'
  1131. type: data
  1132. unit:
  1133. size: 25
  1134. title: ' K'
  1135. weight: '400'
  1136. width: 113
  1137. 320-RTT-2-8113:
  1138. background_color: rgba(0, 0, 0, 0)
  1139. decimal: '2'
  1140. exponential: 'false'
  1141. formula: ''
  1142. header:
  1143. size: 25
  1144. title: ' '
  1145. weight: '400'
  1146. height: 39
  1147. larger: ''
  1148. left: 1163px
  1149. lesser: ''
  1150. linkhtml: 'true'
  1151. ref: 320-RTT-2-8113
  1152. top: 84px
  1153. trend: 'true'
  1154. type: data
  1155. unit:
  1156. size: 25
  1157. title: ' K'
  1158. weight: '400'
  1159. width: 176
  1160. 320-RTT-2-8115:
  1161. background_color: rgba(0, 0, 0, 0)
  1162. condition: ''
  1163. decimal: '2'
  1164. header:
  1165. size: 25
  1166. title: ' '
  1167. weight: '400'
  1168. height: 29
  1169. larger: '6.5'
  1170. left: 964px
  1171. lesser: ''
  1172. linkhtml: 'true'
  1173. ref: 320-RTT-2-8115
  1174. top: 256px
  1175. trend: 'true'
  1176. type: data
  1177. unit:
  1178. size: 25
  1179. title: ' K'
  1180. weight: '400'
  1181. width: 109
  1182. 320-RTT-2-9125:
  1183. background_color: rgba(0, 0, 0, 0)
  1184. decimal: '2'
  1185. exponential: 'false'
  1186. formula: ''
  1187. header:
  1188. size: 25
  1189. title: ' '
  1190. weight: '400'
  1191. height: 37
  1192. larger: ''
  1193. left: 1360px
  1194. lesser: ''
  1195. linkhtml: 'true'
  1196. ref: 320-RTT-2-9125
  1197. top: 301px
  1198. trend: 'true'
  1199. type: data
  1200. unit:
  1201. size: 25
  1202. title: ' K'
  1203. weight: '400'
  1204. width: 115
  1205. 320-RTY-3-2102:
  1206. background_color: rgba(0, 0, 0, 0)
  1207. condition: ''
  1208. decimal: '2'
  1209. header:
  1210. size: 25
  1211. title: ' '
  1212. weight: '400'
  1213. height: 36
  1214. larger: '5.2'
  1215. left: 467px
  1216. lesser: ''
  1217. linkhtml: 'true'
  1218. ref: 320-RTY-3-2102
  1219. top: 866px
  1220. trend: 'true'
  1221. type: data
  1222. unit:
  1223. size: 25
  1224. title: ' K'
  1225. weight: '400'
  1226. width: 113
  1227. 320-RTY-3-3101:
  1228. background_color: rgba(0, 0, 0, 0)
  1229. condition: ''
  1230. decimal: '2'
  1231. header:
  1232. size: 25
  1233. title: ' '
  1234. weight: '400'
  1235. height: 33
  1236. larger: '5.1'
  1237. left: 661px
  1238. lesser: ''
  1239. linkhtml: 'true'
  1240. ref: 320-RTY-3-3101
  1241. top: 865px
  1242. trend: 'true'
  1243. type: data
  1244. unit:
  1245. size: 25
  1246. title: ' K'
  1247. weight: '400'
  1248. width: 111
  1249. 320-RTY-3-4101:
  1250. background_color: rgba(0, 0, 0, 0)
  1251. condition: ''
  1252. decimal: '2'
  1253. formula: ''
  1254. header:
  1255. size: 25
  1256. title: ' '
  1257. weight: '400'
  1258. height: 33
  1259. larger: '6.1'
  1260. left: 857px
  1261. lesser: '0'
  1262. linkhtml: 'true'
  1263. ref: 320-RTY-3-4101
  1264. top: 866px
  1265. trend: 'true'
  1266. type: data
  1267. unit:
  1268. size: 25
  1269. title: ' K'
  1270. weight: '400'
  1271. width: 110
  1272. 320-RTY-3-5102:
  1273. background_color: rgba(0, 0, 0, 0)
  1274. decimal: '2'
  1275. exponential: 'false'
  1276. formula: ''
  1277. header:
  1278. size: 25
  1279. title: ' '
  1280. weight: '400'
  1281. height: 38
  1282. larger: '10'
  1283. left: 1044px
  1284. lesser: '0'
  1285. linkhtml: 'true'
  1286. ref: 320-RTY-3-5102
  1287. top: 865px
  1288. trend: 'true'
  1289. type: data
  1290. unit:
  1291. size: 25
  1292. title: ' K'
  1293. weight: '400'
  1294. width: 106
  1295. 320-VAI-2-0030:
  1296. background_color: rgba(0, 0, 0, 0)
  1297. decimal: '2'
  1298. exponential: 'false'
  1299. formula: ''
  1300. header:
  1301. size: 25
  1302. title: '| '
  1303. weight: '400'
  1304. height: 37
  1305. larger: ''
  1306. left: 415px
  1307. lesser: ''
  1308. linkhtml: 'true'
  1309. ref: 320-VAI-2-0030
  1310. top: 590px
  1311. trend: 'true'
  1312. type: data
  1313. unit:
  1314. size: 25
  1315. title: ' %'
  1316. weight: '400'
  1317. width: 132
  1318. 320-VAI-2-8001:
  1319. background_color: rgba(0, 0, 0, 0)
  1320. condition: ''
  1321. decimal: '2'
  1322. exponential: 'false'
  1323. formula: ''
  1324. header:
  1325. size: 25
  1326. title: ' '
  1327. weight: '400'
  1328. height: 31
  1329. larger: ''
  1330. left: 789px
  1331. lesser: ''
  1332. linkhtml: 'true'
  1333. ref: 320-VAI-2-8001
  1334. top: 8px
  1335. trend: 'true'
  1336. type: data
  1337. unit:
  1338. size: 25
  1339. title: ' %'
  1340. weight: '400'
  1341. width: 119
  1342. 320-VAI-2-8002:
  1343. background_color: rgba(0, 0, 0, 0)
  1344. condition: ''
  1345. decimal: '2'
  1346. exponential: 'false'
  1347. formula: ''
  1348. header:
  1349. size: 25
  1350. title: ' '
  1351. weight: '400'
  1352. height: 33
  1353. larger: ''
  1354. left: 737px
  1355. lesser: ''
  1356. linkhtml: 'true'
  1357. ref: 320-VAI-2-8002
  1358. top: 299px
  1359. trend: 'true'
  1360. type: data
  1361. unit:
  1362. size: 25
  1363. title: ' %'
  1364. weight: '400'
  1365. width: 110
  1366. 320-VAI-2-8020:
  1367. background_color: rgba(0, 0, 0, 0)
  1368. condition: ''
  1369. decimal: '2'
  1370. exponential: 'false'
  1371. formula: ''
  1372. header:
  1373. size: 25
  1374. title: ' '
  1375. weight: '400'
  1376. height: 30
  1377. larger: ''
  1378. left: 1162px
  1379. lesser: ''
  1380. linkhtml: 'true'
  1381. ref: 320-VAI-2-8020
  1382. top: 20px
  1383. trend: 'true'
  1384. type: data
  1385. unit:
  1386. size: 25
  1387. title: ' %'
  1388. weight: '400'
  1389. width: 114
  1390. 320-VAI-2-9004:
  1391. background_color: rgba(0, 0, 0, 0)
  1392. condition: ''
  1393. decimal: '2'
  1394. exponential: 'false'
  1395. formula: ''
  1396. header:
  1397. size: 25
  1398. title: ' '
  1399. weight: '400'
  1400. height: 30
  1401. larger: ''
  1402. left: 1049px
  1403. lesser: ''
  1404. linkhtml: 'true'
  1405. ref: 320-VAI-2-9004
  1406. top: 476px
  1407. trend: 'true'
  1408. type: data
  1409. unit:
  1410. size: 25
  1411. title: ' %'
  1412. weight: '400'
  1413. width: 110
  1414. 320-VAI-2-9008:
  1415. background_color: rgba(0, 0, 0, 0)
  1416. decimal: '2'
  1417. exponential: 'false'
  1418. formula: ''
  1419. header:
  1420. size: 25
  1421. title: ' '
  1422. weight: '400'
  1423. height: 33
  1424. larger: ''
  1425. left: 1190px
  1426. lesser: ''
  1427. linkhtml: 'true'
  1428. ref: 320-VAI-2-9008
  1429. top: 185px
  1430. trend: 'true'
  1431. type: data
  1432. unit:
  1433. size: 25
  1434. title: ' %'
  1435. weight: '400'
  1436. width: 110
  1437. 320-VAI-2-9009:
  1438. background_color: rgba(0, 0, 0, 0)
  1439. condition: ''
  1440. decimal: '2'
  1441. exponential: 'false'
  1442. formula: ''
  1443. header:
  1444. size: 25
  1445. title: ' '
  1446. weight: '400'
  1447. height: 29
  1448. larger: ''
  1449. left: 1219px
  1450. lesser: ''
  1451. linkhtml: 'true'
  1452. ref: 320-VAI-2-9009
  1453. top: 328px
  1454. trend: 'true'
  1455. type: data
  1456. unit:
  1457. size: 25
  1458. title: ' %'
  1459. weight: '400'
  1460. width: 116
  1461. 320-VAO-3-0003:
  1462. background_color: rgba(0, 0, 0, 0)
  1463. height: 50
  1464. icon: valve
  1465. left: 1206px
  1466. linkhtml: 'true'
  1467. 'off': '255'
  1468. off_condition: offgreater
  1469. 'on': '256'
  1470. on_condition: onsmaller
  1471. ref: 320-VAO-3-0003
  1472. rotate: matrix(1, 0, 0, 1, 0, 0)
  1473. top: 822.983px
  1474. trend: 'true'
  1475. type: icon
  1476. width: 50
  1477. 320-VAO-3-0004:
  1478. background_color: rgba(0, 0, 0, 0)
  1479. height: 50
  1480. icon: valve
  1481. left: 1828.98px
  1482. linkhtml: 'true'
  1483. 'off': '255'
  1484. off_condition: offgreater
  1485. 'on': '256'
  1486. on_condition: onsmaller
  1487. ref: 320-VAO-3-0004
  1488. rotate: matrix(1, 0, 0, 1, 0, 0)
  1489. top: 824.983px
  1490. trend: 'true'
  1491. type: icon
  1492. width: 50
  1493. 320-VAO-4-1001:
  1494. background_color: rgba(0, 0, 0, 0)
  1495. height: 52
  1496. icon: valve
  1497. left: 354px
  1498. linkhtml: 'false'
  1499. 'off': '0.9'
  1500. off_condition: offsmaller
  1501. 'on': '0.9'
  1502. on_condition: ongreater
  1503. ref: 320-VAO-4-1001
  1504. rotate: matrix(0, 1, -1, 0, 0, 0)
  1505. top: 1123px
  1506. trend: 'false'
  1507. type: icon
  1508. width: 50
  1509. 320-VAO-4-1005:
  1510. background_color: rgba(0, 0, 0, 0)
  1511. height: 52
  1512. icon: valve
  1513. left: 264px
  1514. linkhtml: 'false'
  1515. 'off': '0.9'
  1516. off_condition: offsmaller
  1517. 'on': '0.9'
  1518. on_condition: ongreater
  1519. ref: 320-VAO-4-1005
  1520. rotate: none
  1521. top: 1285px
  1522. trend: 'false'
  1523. type: icon
  1524. width: 50
  1525. 320-VAO-4-2000:
  1526. background_color: rgba(0, 0, 0, 0)
  1527. height: 52
  1528. icon: valve
  1529. left: 1495px
  1530. linkhtml: 'false'
  1531. 'off': '0.9'
  1532. off_condition: offsmaller
  1533. 'on': '0.9'
  1534. on_condition: ongreater
  1535. ref: 320-VAO-4-2000
  1536. rotate: matrix(0, 1, -1, 0, 0, 0)
  1537. top: 1163px
  1538. trend: 'false'
  1539. type: icon
  1540. width: 50
  1541. 320-VAO-4-2005:
  1542. background_color: rgba(0, 0, 0, 0)
  1543. height: 52
  1544. icon: valve
  1545. left: 1584px
  1546. linkhtml: 'false'
  1547. 'off': '0.9'
  1548. off_condition: offsmaller
  1549. 'on': '0.9'
  1550. on_condition: ongreater
  1551. ref: 320-VAO-4-2005
  1552. rotate: none
  1553. top: 1284px
  1554. trend: 'false'
  1555. type: icon
  1556. width: 50
  1557. 320-VMI-2-8000:
  1558. background_color: rgba(0, 0, 0, 0)
  1559. decimal: '2'
  1560. exponential: 'false'
  1561. formula: ''
  1562. header:
  1563. size: 25
  1564. title: ' '
  1565. weight: '400'
  1566. height: 38
  1567. larger: ''
  1568. left: 563px
  1569. lesser: ''
  1570. linkhtml: 'true'
  1571. ref: 320-VMI-2-8000
  1572. top: 344px
  1573. trend: 'true'
  1574. type: data
  1575. unit:
  1576. size: 25
  1577. title: ' %'
  1578. weight: '400'
  1579. width: 115
  1580. 320-VMI-2-8006:
  1581. background_color: rgba(0, 0, 0, 0)
  1582. decimal: '2'
  1583. exponential: 'false'
  1584. formula: ''
  1585. header:
  1586. size: 25
  1587. title: ' '
  1588. weight: '400'
  1589. height: 38
  1590. larger: ''
  1591. left: 557px
  1592. lesser: ''
  1593. linkhtml: 'true'
  1594. ref: 320-VMI-2-8006
  1595. top: 436px
  1596. trend: 'true'
  1597. type: data
  1598. unit:
  1599. size: 25
  1600. title: ' %'
  1601. weight: '400'
  1602. width: 128
  1603. 320-VMI-2-8007:
  1604. background_color: rgba(0, 0, 0, 0)
  1605. decimal: '2'
  1606. exponential: 'False'
  1607. formula: ''
  1608. header:
  1609. size: 28
  1610. title: ' '
  1611. weight: '400'
  1612. height: 30
  1613. larger: ''
  1614. left: 704px
  1615. lesser: ''
  1616. linkhtml: 'true'
  1617. ref: 320-VMI-2-8007
  1618. top: 472px
  1619. trend: 'true'
  1620. type: data
  1621. unit:
  1622. size: 25
  1623. title: ' %'
  1624. weight: '400'
  1625. width: 124
  1626. 411-REI-1-1110:
  1627. background_color: rgba(0, 0, 0, 0)
  1628. decimal: '2'
  1629. exponential: 'false'
  1630. formula: ''
  1631. header:
  1632. size: 25
  1633. title: 'PS Magn. '
  1634. weight: '400'
  1635. height: 38
  1636. larger: ''
  1637. left: 1799px
  1638. lesser: ''
  1639. linkhtml: 'true'
  1640. ref: 411-REI-1-1110
  1641. top: 519px
  1642. trend: 'true'
  1643. type: data
  1644. unit:
  1645. size: 25
  1646. title: ' A'
  1647. weight: '400'
  1648. width: 173
  1649. 620-VAO-3-0002:
  1650. background_color: rgba(0, 0, 0, 0)
  1651. height: 50
  1652. icon: valve
  1653. left: 28.9833px
  1654. linkhtml: 'true'
  1655. 'off': '256'
  1656. off_condition: offgreater
  1657. 'on': '256'
  1658. on_condition: onsmaller
  1659. ref: 620-VAO-3-0002
  1660. rotate: matrix(1, 0, 0, 1, 0, 0)
  1661. top: 830px
  1662. trend: 'true'
  1663. type: icon
  1664. width: 50
  1665. 630-RPP-8-5030:
  1666. background_color: rgba(0, 0, 0, 0)
  1667. decimal: '2'
  1668. exponential: 'true'
  1669. formula: ''
  1670. header:
  1671. size: 25
  1672. title: 'PP1 '
  1673. weight: '400'
  1674. height: 30
  1675. larger: 1e-8
  1676. left: 210px
  1677. lesser: ''
  1678. linkhtml: 'true'
  1679. ref: 630-RPP-8-5030
  1680. top: 654px
  1681. trend: 'true'
  1682. type: data
  1683. unit:
  1684. size: 25
  1685. title: ' mbar'
  1686. weight: '400'
  1687. width: 254
  1688. 630-RPP-8-6030:
  1689. background_color: rgba(0, 0, 0, 0)
  1690. decimal: '2'
  1691. exponential: 'true'
  1692. formula: ''
  1693. header:
  1694. size: 25
  1695. title: 'PP2 '
  1696. weight: '400'
  1697. height: 31
  1698. larger: 1e-9
  1699. left: 1444px
  1700. lesser: ''
  1701. linkhtml: 'true'
  1702. ref: 630-RPP-8-6030
  1703. top: 650px
  1704. trend: 'true'
  1705. type: data
  1706. unit:
  1707. size: 25
  1708. title: ' mbar'
  1709. weight: '400'
  1710. width: 234
  1711. header_3-k-circuit:
  1712. background_color: rgba(0, 0, 0, 0)
  1713. header:
  1714. size: 20
  1715. title: '3 K circuit '
  1716. weight: '400'
  1717. height: 30
  1718. left: 1357px
  1719. top: 201px
  1720. type: header
  1721. width: 99
  1722. header_45-k-circuit:
  1723. background_color: rgba(0, 0, 0, 0)
  1724. header:
  1725. size: 20
  1726. title: '4.5 K circuit '
  1727. weight: '400'
  1728. height: 28
  1729. left: 966px
  1730. top: 160px
  1731. type: header
  1732. width: 120
  1733. header_cold-mass:
  1734. background_color: rgba(0, 0, 0, 0)
  1735. header:
  1736. size: 25
  1737. title: 'Cold mass: '
  1738. weight: '400'
  1739. height: 37
  1740. left: 710px
  1741. top: 658px
  1742. type: header
  1743. width: 169
  1744. header_hee:
  1745. background_color: rgba(0, 0, 0, 0)
  1746. header:
  1747. size: 25
  1748. title: '(HEE) '
  1749. weight: '400'
  1750. height: 37
  1751. left: 1679px
  1752. top: 301px
  1753. type: header
  1754. width: 50
  1755. header_ln-circuit:
  1756. background_color: rgba(0, 0, 0, 0)
  1757. header:
  1758. size: 20
  1759. title: 'LN circuit '
  1760. weight: '400'
  1761. height: 30
  1762. left: 1568px
  1763. top: 197px
  1764. type: header
  1765. width: 99
  1766. header_power-supply:
  1767. background_color: rgba(0, 0, 0, 0)
  1768. header:
  1769. size: 25
  1770. title: 'Power supply '
  1771. weight: '700'
  1772. height: 38
  1773. left: 155px
  1774. top: 272px
  1775. type: header
  1776. width: 176
  1777. header_v2:
  1778. background_color: rgba(0, 0, 0, 0)
  1779. header:
  1780. size: 36
  1781. title: 'V2 '
  1782. weight: '400'
  1783. height: 55
  1784. left: 31.9667px
  1785. top: 872.95px
  1786. type: header
  1787. width: 75
  1788. header_v3:
  1789. background_color: rgba(0, 0, 0, 0)
  1790. header:
  1791. size: 36
  1792. title: 'V3 '
  1793. weight: '400'
  1794. height: 49
  1795. left: 1213.97px
  1796. top: 865.967px
  1797. type: header
  1798. width: 50
  1799. header_v4:
  1800. background_color: rgba(0, 0, 0, 0)
  1801. header:
  1802. size: 36
  1803. title: 'V4 '
  1804. weight: '400'
  1805. height: 50
  1806. left: 1832.98px
  1807. top: 867.983px
  1808. type: header
  1809. width: 55
  1810. header_water-bath:
  1811. background_color: rgba(0, 0, 0, 0)
  1812. header:
  1813. size: 20
  1814. title: 'Water Bath '
  1815. weight: '400'
  1816. height: 21
  1817. left: 1280px
  1818. top: 30px
  1819. type: header
  1820. width: 110
  1821. virtual_320-REI-1-5103_Bfield:
  1822. background_color: rgba(0, 0, 0, 0)
  1823. decimal: '2'
  1824. formula: 0.0285*x
  1825. header:
  1826. size: 25
  1827. title: '| '
  1828. weight: 400
  1829. height: 31
  1830. larger: '200'
  1831. left: 372px
  1832. lesser: ''
  1833. linkhtml: 'false'
  1834. ref: 320-REI-1-5103
  1835. top: 438px
  1836. trend: 'false'
  1837. type: data
  1838. unit:
  1839. size: 25
  1840. title: ' T'
  1841. weight: 400
  1842. width: 130
  1843. header_dps:
  1844. background_color: rgba(0, 0, 0, 0)
  1845. header:
  1846. size: 36
  1847. title: 'DPS '
  1848. weight: '700'
  1849. height: 35.4
  1850. left: 28px
  1851. titlelink: http://katrin.kit.edu/bora-dps/
  1852. top: 730px
  1853. type: header
  1854. width: 64.4
  1855. header_sts:
  1856. background_color: rgba(0, 0, 0, 0)
  1857. header:
  1858. size: 36
  1859. title: 'SDS '
  1860. weight: '700'
  1861. height: 35.4
  1862. left: 1820px
  1863. titlelink: https://status-sds.kaas.kit.edu/
  1864. top: 730px
  1865. type: header
  1866. width: 64.4
  1867. header_mcs:
  1868. background_color: rgba(0, 0, 0, 0)
  1869. header:
  1870. size: 36
  1871. title: 'MCS '
  1872. weight: '700'
  1873. height: 35.4
  1874. left: 28px
  1875. titlelink: http://bora-mcs.kaas.kit.edu/
  1876. top: 272px
  1877. type: header
  1878. width: 64.4
  1879. header_cps_bt:
  1880. background_color: rgba(0, 0, 0, 0)
  1881. header:
  1882. size: 36
  1883. title: 'CPS-BT '
  1884. weight: '700'
  1885. height: 35.4
  1886. left: 800px
  1887. titlelink: http://katrin.kit.edu/bora-cps-bt/
  1888. top: 1100px
  1889. type: header
  1890. width: 300
  1891. header_transfer:
  1892. background_color: rgba(0, 0, 0, 0)
  1893. header:
  1894. size: 36
  1895. title: 'TL '
  1896. weight: '700'
  1897. height: 35.4
  1898. left: 585px
  1899. titlelink: http://katrin.kit.edu/bora-transfer/
  1900. top: 50px
  1901. type: header
  1902. width: 300