style.yaml 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. 311-E23-1-1100-MAG-I:
  2. background_color: rgba(0, 0, 0, 0)
  3. decimal: '2'
  4. exponential: 'false'
  5. formula: ''
  6. header:
  7. size: 16
  8. title: 'I_mag '
  9. weight: '400'
  10. height: 26.4
  11. larger: ''
  12. left: 149px
  13. lesser: ''
  14. linkhtml: 'true'
  15. ref: 311-E23-1-1100-MAG-I
  16. top: 834px
  17. trend: 'true'
  18. type: data
  19. unit:
  20. size: 16
  21. title: ' A'
  22. weight: '700'
  23. width: 123.4
  24. 311-E23-1-2100-MAG-I:
  25. background_color: rgba(0, 0, 0, 0)
  26. decimal: '2'
  27. exponential: 'false'
  28. formula: ''
  29. header:
  30. size: 16
  31. title: 'I_mag '
  32. weight: '400'
  33. height: 21.4
  34. larger: ''
  35. left: 523px
  36. lesser: ''
  37. linkhtml: 'true'
  38. ref: 311-E23-1-2100-MAG-I
  39. top: 739px
  40. trend: 'true'
  41. type: data
  42. unit:
  43. size: 16
  44. title: ' A'
  45. weight: '700'
  46. width: 126.4
  47. 311-E23-1-3100-MAG-I:
  48. background_color: rgba(0, 0, 0, 0)
  49. decimal: '2'
  50. exponential: 'false'
  51. formula: ''
  52. header:
  53. size: 16
  54. title: 'I_mag '
  55. weight: '400'
  56. height: 21.4
  57. larger: ''
  58. left: 850px
  59. lesser: ''
  60. linkhtml: 'true'
  61. ref: 311-E23-1-3100-MAG-I
  62. top: 617px
  63. trend: 'true'
  64. type: data
  65. unit:
  66. size: 16
  67. title: ' A'
  68. weight: '700'
  69. width: 131.4
  70. 311-E23-1-4100-MAG-I:
  71. background_color: rgba(0, 0, 0, 0)
  72. decimal: '2'
  73. exponential: 'false'
  74. formula: ''
  75. header:
  76. size: 16
  77. title: 'I_mag '
  78. weight: '400'
  79. height: 21.4
  80. larger: ''
  81. left: 1296px
  82. lesser: ''
  83. linkhtml: 'true'
  84. ref: 311-E23-1-4100-MAG-I
  85. top: 743px
  86. trend: 'true'
  87. type: data
  88. unit:
  89. size: 16
  90. title: ' A'
  91. weight: '700'
  92. width: 129.4
  93. 311-E23-1-5100-MAG-I:
  94. background_color: rgba(0, 0, 0, 0)
  95. decimal: '2'
  96. exponential: 'false'
  97. formula: ''
  98. header:
  99. size: 16
  100. title: 'I_mag '
  101. weight: '400'
  102. height: 21.4
  103. larger: ''
  104. left: 1639px
  105. lesser: ''
  106. linkhtml: 'true'
  107. ref: 311-E23-1-5100-MAG-I
  108. top: 852px
  109. trend: 'true'
  110. type: data
  111. unit:
  112. size: 16
  113. title: ' A'
  114. weight: '700'
  115. width: 141.4
  116. 311-HEE-1-1065:
  117. background_color: rgba(0, 0, 0, 0)
  118. decimal: '3'
  119. exponential: 'false'
  120. formula: ''
  121. header:
  122. size: 15
  123. title: 'HRC: '
  124. weight: '400'
  125. height: 23.4
  126. larger: ''
  127. left: 177px
  128. lesser: ''
  129. linkhtml: 'true'
  130. ref: 311-HEE-1-1065
  131. top: 476px
  132. trend: 'true'
  133. type: data
  134. unit:
  135. size: 15
  136. title: ' W'
  137. weight: '400'
  138. width: 110.4
  139. 311-HEE-1-2065:
  140. background_color: rgba(0, 0, 0, 0)
  141. decimal: '3'
  142. exponential: 'false'
  143. formula: ''
  144. header:
  145. size: 15
  146. title: 'HRC: '
  147. weight: '400'
  148. height: 23.4
  149. larger: ''
  150. left: 530px
  151. lesser: ''
  152. linkhtml: 'true'
  153. ref: 311-HEE-1-2065
  154. top: 361px
  155. trend: 'true'
  156. type: data
  157. unit:
  158. size: 15
  159. title: ' W'
  160. weight: '400'
  161. width: 114.4
  162. 311-HEE-1-3065:
  163. background_color: rgba(0, 0, 0, 0)
  164. decimal: '3'
  165. exponential: 'false'
  166. formula: ''
  167. header:
  168. size: 15
  169. title: 'HRC: '
  170. weight: '400'
  171. height: 23.4
  172. larger: ''
  173. left: 885px
  174. lesser: ''
  175. linkhtml: 'true'
  176. ref: 311-HEE-1-3065
  177. top: 256px
  178. trend: 'true'
  179. type: data
  180. unit:
  181. size: 15
  182. title: ' W'
  183. weight: '400'
  184. width: 115.4
  185. 311-HEE-1-4065:
  186. background_color: rgba(0, 0, 0, 0)
  187. decimal: '3'
  188. exponential: 'false'
  189. formula: ''
  190. header:
  191. size: 15
  192. title: 'HRC: '
  193. weight: '400'
  194. height: 23.4
  195. larger: ''
  196. left: 1235px
  197. lesser: ''
  198. linkhtml: 'true'
  199. ref: 311-HEE-1-4065
  200. top: 358px
  201. trend: 'true'
  202. type: data
  203. unit:
  204. size: 15
  205. title: ' W'
  206. weight: '400'
  207. width: 116.4
  208. 311-HEE-1-5065:
  209. background_color: rgba(0, 0, 0, 0)
  210. decimal: '3'
  211. exponential: 'false'
  212. formula: ''
  213. header:
  214. size: 15
  215. title: 'HRC: '
  216. weight: '400'
  217. height: 24.4
  218. larger: ''
  219. left: 1587px
  220. lesser: ''
  221. linkhtml: 'true'
  222. ref: 311-HEE-1-5065
  223. top: 469px
  224. trend: 'true'
  225. type: data
  226. unit:
  227. size: 15
  228. title: ' W'
  229. weight: '400'
  230. width: 114.4
  231. 311-RBY-1-1051:
  232. background_color: rgba(0, 0, 0, 0)
  233. decimal: '3'
  234. exponential: 'false'
  235. formula: ''
  236. header:
  237. size: 15
  238. title: 'B on A-Side: '
  239. weight: '400'
  240. height: 25.4
  241. larger: ''
  242. left: 78.95px
  243. lesser: ''
  244. linkhtml: 'true'
  245. ref: 311-RBY-1-1051
  246. top: 908.983px
  247. trend: 'true'
  248. type: data
  249. unit:
  250. size: 17
  251. title: ' T'
  252. weight: '700'
  253. width: 169.4
  254. 311-RBY-1-1052:
  255. background_color: rgba(0, 0, 0, 0)
  256. decimal: '3'
  257. exponential: 'false'
  258. formula: ''
  259. header:
  260. size: 15
  261. title: 'B on B-Side: '
  262. weight: '400'
  263. height: 25.4
  264. larger: ''
  265. left: 252px
  266. lesser: ''
  267. linkhtml: 'true'
  268. ref: 311-RBY-1-1052
  269. top: 908.983px
  270. trend: 'true'
  271. type: data
  272. unit:
  273. size: 17
  274. title: ' T'
  275. weight: '700'
  276. width: 167.4
  277. 311-RBY-1-2051:
  278. background_color: rgba(0, 0, 0, 0)
  279. decimal: '3'
  280. exponential: 'false'
  281. formula: ''
  282. header:
  283. size: 15
  284. title: 'B on A-Side: '
  285. weight: '400'
  286. height: 23.4
  287. larger: ''
  288. left: 435.983px
  289. lesser: ''
  290. linkhtml: 'true'
  291. ref: 311-RBY-1-2051
  292. top: 798px
  293. trend: 'true'
  294. type: data
  295. unit:
  296. size: 17
  297. title: ' T'
  298. weight: '700'
  299. width: 173.4
  300. 311-RBY-1-2052:
  301. background_color: rgba(0, 0, 0, 0)
  302. decimal: '3'
  303. exponential: 'false'
  304. formula: ''
  305. header:
  306. size: 15
  307. title: 'B on B-Side: '
  308. weight: '400'
  309. height: 26.4
  310. larger: ''
  311. left: 616.983px
  312. lesser: ''
  313. linkhtml: 'true'
  314. ref: 311-RBY-1-2052
  315. top: 794.983px
  316. trend: 'true'
  317. type: data
  318. unit:
  319. size: 17
  320. title: ' T'
  321. weight: '700'
  322. width: 172.4
  323. 311-RBY-1-3051:
  324. background_color: rgba(0, 0, 0, 0)
  325. decimal: '3'
  326. exponential: 'false'
  327. formula: ''
  328. header:
  329. size: 15
  330. title: 'B on A-Side: '
  331. weight: '400'
  332. height: 28.4
  333. larger: ''
  334. left: 791px
  335. lesser: ''
  336. linkhtml: 'true'
  337. ref: 311-RBY-1-3051
  338. top: 696px
  339. trend: 'true'
  340. type: data
  341. unit:
  342. size: 17
  343. title: ' T'
  344. weight: '700'
  345. width: 175.4
  346. 311-RBY-1-3052:
  347. background_color: rgba(0, 0, 0, 0)
  348. decimal: '3'
  349. exponential: 'false'
  350. formula: ''
  351. header:
  352. size: 15
  353. title: 'B on B-Side: '
  354. weight: '400'
  355. height: 28.4
  356. larger: ''
  357. left: 969.983px
  358. lesser: ''
  359. linkhtml: 'true'
  360. ref: 311-RBY-1-3052
  361. top: 695px
  362. trend: 'true'
  363. type: data
  364. unit:
  365. size: 17
  366. title: ' T'
  367. weight: '700'
  368. width: 174.4
  369. 311-RBY-1-4051:
  370. background_color: rgba(0, 0, 0, 0)
  371. decimal: '3'
  372. exponential: 'false'
  373. formula: ''
  374. header:
  375. size: 15
  376. title: 'B on A-Side: '
  377. weight: '400'
  378. height: 27.4
  379. larger: ''
  380. left: 1144.95px
  381. lesser: ''
  382. linkhtml: 'true'
  383. ref: 311-RBY-1-4051
  384. top: 795.967px
  385. trend: 'true'
  386. type: data
  387. unit:
  388. size: 17
  389. title: ' T'
  390. weight: '700'
  391. width: 169.4
  392. 311-RBY-1-4052:
  393. background_color: rgba(0, 0, 0, 0)
  394. decimal: '3'
  395. exponential: 'false'
  396. formula: ''
  397. header:
  398. size: 15
  399. title: 'B on B-Side: '
  400. weight: '400'
  401. height: 27.4
  402. larger: ''
  403. left: 1319.97px
  404. lesser: ''
  405. linkhtml: 'true'
  406. ref: 311-RBY-1-4052
  407. top: 795.983px
  408. trend: 'true'
  409. type: data
  410. unit:
  411. size: 17
  412. title: ' T'
  413. weight: '700'
  414. width: 173.4
  415. 311-RBY-1-5051:
  416. background_color: rgba(0, 0, 0, 0)
  417. decimal: '3'
  418. exponential: 'false'
  419. formula: ''
  420. header:
  421. size: 15
  422. title: 'B on A-Side: '
  423. weight: '400'
  424. height: 24.4
  425. larger: ''
  426. left: 1503.97px
  427. lesser: ''
  428. linkhtml: 'true'
  429. ref: 311-RBY-1-5051
  430. top: 910.95px
  431. trend: 'true'
  432. type: data
  433. unit:
  434. size: 17
  435. title: ' T'
  436. weight: '700'
  437. width: 175.4
  438. 311-RBY-1-5052:
  439. background_color: rgba(0, 0, 0, 0)
  440. decimal: '3'
  441. exponential: 'false'
  442. formula: ''
  443. header:
  444. size: 15
  445. title: 'B on B-side: '
  446. weight: '400'
  447. height: 23.4
  448. larger: ''
  449. left: 1683px
  450. lesser: ''
  451. linkhtml: 'true'
  452. ref: 311-RBY-1-5052
  453. top: 910px
  454. trend: 'true'
  455. type: data
  456. unit:
  457. size: 17
  458. title: ' T'
  459. weight: '700'
  460. width: 185.4
  461. 311-RLY-1-1041:
  462. background_color: rgba(0, 0, 0, 0)
  463. decimal: '2'
  464. exponential: 'false'
  465. formula: ''
  466. header:
  467. size: 15
  468. title: 'LHe-Level: '
  469. weight: '400'
  470. height: 20.4
  471. larger: ''
  472. left: 224.983px
  473. lesser: ''
  474. linkhtml: 'true'
  475. ref: 311-RLY-1-1041
  476. top: 667.95px
  477. trend: 'true'
  478. type: data
  479. unit:
  480. size: 17
  481. title: ' %'
  482. weight: '700'
  483. width: 164.4
  484. 311-RLY-1-2041:
  485. background_color: rgba(0, 0, 0, 0)
  486. decimal: '2'
  487. exponential: 'false'
  488. formula: ''
  489. header:
  490. size: 15
  491. title: 'LHe-Level: '
  492. weight: '400'
  493. height: 24.4
  494. larger: ''
  495. left: 576.967px
  496. lesser: ''
  497. linkhtml: 'true'
  498. ref: 311-RLY-1-2041
  499. top: 551.967px
  500. trend: 'true'
  501. type: data
  502. unit:
  503. size: 17
  504. title: ' %'
  505. weight: '700'
  506. width: 158.4
  507. 311-RLY-1-3041:
  508. background_color: rgba(0, 0, 0, 0)
  509. condition: ''
  510. decimal: '2'
  511. exponential: 'false'
  512. formula: ''
  513. header:
  514. size: 15
  515. title: 'Füllstand: '
  516. weight: '400'
  517. height: 24.4
  518. larger: ''
  519. left: 917.983px
  520. lesser: ''
  521. linkhtml: 'true'
  522. ref: 311-RLY-1-3041
  523. top: 450.983px
  524. trend: 'true'
  525. type: data
  526. unit:
  527. size: 17
  528. title: ' %'
  529. weight: '700'
  530. width: 160.4
  531. 311-RLY-1-4041:
  532. background_color: rgba(0, 0, 0, 0)
  533. decimal: '2'
  534. exponential: 'false'
  535. formula: ''
  536. header:
  537. size: 15
  538. title: 'LHe-Level: '
  539. weight: '400'
  540. height: 22.4
  541. larger: ''
  542. left: 1293.98px
  543. lesser: ''
  544. linkhtml: 'true'
  545. ref: 311-RLY-1-4041
  546. top: 556.983px
  547. trend: 'true'
  548. type: data
  549. unit:
  550. size: 17
  551. title: ' %'
  552. weight: '700'
  553. width: 151.4
  554. 311-RLY-1-5041:
  555. background_color: rgba(0, 0, 0, 0)
  556. decimal: '2'
  557. exponential: 'false'
  558. formula: ''
  559. header:
  560. size: 15
  561. title: 'LHe-Level: '
  562. weight: '400'
  563. height: 24.4
  564. larger: ''
  565. left: 1641.97px
  566. lesser: ''
  567. linkhtml: 'true'
  568. ref: 311-RLY-1-5041
  569. top: 667.967px
  570. trend: 'true'
  571. type: data
  572. unit:
  573. size: 17
  574. title: ' %'
  575. weight: '700'
  576. width: 158.4
  577. 311-RPY-1-1011:
  578. background_color: rgba(0, 0, 0, 0)
  579. decimal: '2'
  580. exponential: 'false'
  581. formula: ''
  582. header:
  583. size: 15
  584. title: 'P: '
  585. weight: '400'
  586. height: 26.4
  587. larger: '1.7'
  588. left: 177.983px
  589. lesser: '0.5'
  590. linkhtml: 'true'
  591. ref: 311-RPY-1-1011
  592. top: 445.983px
  593. trend: 'true'
  594. type: data
  595. unit:
  596. size: 17
  597. title: ' psi g'
  598. weight: '700'
  599. width: 136.4
  600. 311-RPY-1-2011:
  601. background_color: rgba(0, 0, 0, 0)
  602. decimal: '2'
  603. exponential: 'false'
  604. formula: ''
  605. header:
  606. size: 15
  607. title: 'P: '
  608. weight: '400'
  609. height: 22.4
  610. larger: '1.7'
  611. left: 528.983px
  612. lesser: '0.5'
  613. linkhtml: 'true'
  614. ref: 311-RPY-1-2011
  615. top: 334.983px
  616. trend: 'true'
  617. type: data
  618. unit:
  619. size: 17
  620. title: ' psi g'
  621. weight: '700'
  622. width: 132.4
  623. 311-RPY-1-3011:
  624. background_color: rgba(0, 0, 0, 0)
  625. decimal: '2'
  626. exponential: 'false'
  627. formula: ''
  628. header:
  629. size: 15
  630. title: 'P: '
  631. weight: '400'
  632. height: 28.4
  633. larger: '1.7'
  634. left: 885.983px
  635. lesser: '0.5'
  636. linkhtml: 'true'
  637. ref: 311-RPY-1-3011
  638. top: 223.983px
  639. trend: 'true'
  640. type: data
  641. unit:
  642. size: 17
  643. title: ' psi g'
  644. weight: '700'
  645. width: 145.4
  646. 311-RPY-1-4011:
  647. background_color: rgba(0, 0, 0, 0)
  648. decimal: '2'
  649. exponential: 'false'
  650. formula: ''
  651. header:
  652. size: 15
  653. title: 'P: '
  654. weight: '400'
  655. height: 19.4
  656. larger: '1.7'
  657. left: 1232.98px
  658. lesser: '0.5'
  659. linkhtml: 'true'
  660. ref: 311-RPY-1-4011
  661. top: 333.983px
  662. trend: 'true'
  663. type: data
  664. unit:
  665. size: 17
  666. title: ' psi g'
  667. weight: '700'
  668. width: 134.4
  669. 311-RPY-1-5011:
  670. background_color: rgba(0, 0, 0, 0)
  671. decimal: '2'
  672. exponential: 'false'
  673. formula: ''
  674. header:
  675. size: 15
  676. title: 'p: '
  677. weight: '400'
  678. height: 20.4
  679. larger: '1.7'
  680. left: 1590px
  681. lesser: '0.5'
  682. linkhtml: 'true'
  683. ref: 311-RPY-1-5011
  684. top: 446px
  685. trend: 'true'
  686. type: data
  687. unit:
  688. size: 17
  689. title: ' psi g'
  690. weight: '700'
  691. width: 126.4
  692. 311-RTP-1-1021:
  693. background_color: rgba(0, 0, 0, 0)
  694. decimal: '2'
  695. exponential: 'false'
  696. formula: ''
  697. header:
  698. size: 15
  699. title: ' '
  700. weight: '400'
  701. height: 20.4
  702. larger: ''
  703. left: 301px
  704. lesser: ''
  705. linkhtml: 'true'
  706. ref: 311-RTP-1-1021
  707. top: 513px
  708. trend: 'true'
  709. type: data
  710. unit:
  711. size: 15
  712. title: ' K'
  713. weight: '400'
  714. width: 79.4
  715. 311-RTP-1-1025:
  716. background_color: rgba(0, 0, 0, 0)
  717. decimal: '1'
  718. exponential: 'false'
  719. formula: ''
  720. header:
  721. size: 15
  722. title: ' '
  723. weight: '400'
  724. height: 23.4
  725. larger: ''
  726. left: 157px
  727. lesser: ''
  728. linkhtml: 'true'
  729. ref: 311-RTP-1-1025
  730. top: 540px
  731. trend: 'true'
  732. type: data
  733. unit:
  734. size: 15
  735. title: ' K'
  736. weight: '700'
  737. width: 81.4
  738. 311-RTP-1-2021:
  739. background_color: rgba(0, 0, 0, 0)
  740. decimal: '1'
  741. exponential: 'false'
  742. formula: ''
  743. header:
  744. size: 15
  745. title: ' '
  746. weight: '400'
  747. height: 23.4
  748. larger: ''
  749. left: 652px
  750. lesser: ''
  751. linkhtml: 'true'
  752. ref: 311-RTP-1-2021
  753. top: 396px
  754. trend: 'true'
  755. type: data
  756. unit:
  757. size: 15
  758. title: ' K'
  759. weight: '400'
  760. width: 76.4
  761. 311-RTP-1-2025:
  762. background_color: rgba(0, 0, 0, 0)
  763. decimal: '1'
  764. exponential: 'false'
  765. formula: ''
  766. header:
  767. size: 15
  768. title: ' '
  769. weight: '400'
  770. height: 21.4
  771. larger: ''
  772. left: 510px
  773. lesser: ''
  774. linkhtml: 'true'
  775. ref: 311-RTP-1-2025
  776. top: 425px
  777. trend: 'true'
  778. type: data
  779. unit:
  780. size: 15
  781. title: ' K'
  782. weight: '700'
  783. width: 75.4
  784. 311-RTP-1-3021:
  785. background_color: rgba(0, 0, 0, 0)
  786. decimal: '1'
  787. exponential: 'false'
  788. formula: ''
  789. header:
  790. size: 15
  791. title: ' '
  792. weight: '400'
  793. height: 23.4
  794. larger: ''
  795. left: 1005px
  796. lesser: ''
  797. linkhtml: 'true'
  798. ref: 311-RTP-1-3021
  799. top: 294px
  800. trend: 'true'
  801. type: data
  802. unit:
  803. size: 15
  804. title: ' K'
  805. weight: '400'
  806. width: 70.4
  807. 311-RTP-1-3025:
  808. background_color: rgba(0, 0, 0, 0)
  809. decimal: '1'
  810. exponential: 'false'
  811. formula: ''
  812. header:
  813. size: 15
  814. title: ' '
  815. weight: '400'
  816. height: 22.4
  817. larger: ''
  818. left: 858px
  819. lesser: ''
  820. linkhtml: 'true'
  821. ref: 311-RTP-1-3025
  822. top: 323px
  823. trend: 'true'
  824. type: data
  825. unit:
  826. size: 15
  827. title: ' K'
  828. weight: '700'
  829. width: 76.4
  830. 311-RTP-1-4021:
  831. background_color: rgba(0, 0, 0, 0)
  832. decimal: '1'
  833. exponential: 'false'
  834. formula: ''
  835. header:
  836. size: 15
  837. title: ' '
  838. weight: '400'
  839. height: 23.4
  840. larger: ''
  841. left: 1357px
  842. lesser: ''
  843. linkhtml: 'true'
  844. ref: 311-RTP-1-4021
  845. top: 397px
  846. trend: 'true'
  847. type: data
  848. unit:
  849. size: 15
  850. title: ' K'
  851. weight: '400'
  852. width: 69.4
  853. 311-RTP-1-4025:
  854. background_color: rgba(0,0,0,0)
  855. decimal: '2'
  856. exponential: 'false'
  857. formula: ''
  858. header:
  859. size: '15'
  860. title: ''
  861. weight: '400'
  862. height: 20.4
  863. larger: ''
  864. left: 1209px
  865. lesser: ''
  866. linkhtml: 'true'
  867. ref: 311-RTP-1-4025
  868. top: 421px
  869. trend: 'true'
  870. type: data
  871. unit:
  872. size: '15'
  873. title: K
  874. weight: '700'
  875. width: 78.4
  876. 311-RTP-1-5021:
  877. background_color: rgba(0, 0, 0, 0)
  878. decimal: '1'
  879. exponential: 'false'
  880. formula: ''
  881. header:
  882. size: 15
  883. title: ' '
  884. weight: '400'
  885. height: 23.4
  886. larger: ''
  887. left: 1711px
  888. lesser: ''
  889. linkhtml: 'true'
  890. ref: 311-RTP-1-5021
  891. top: 512px
  892. trend: 'true'
  893. type: data
  894. unit:
  895. size: 15
  896. title: ' K'
  897. weight: '400'
  898. width: 64.4
  899. 311-RTP-1-5025:
  900. background_color: rgba(0, 0, 0, 0)
  901. decimal: '1'
  902. exponential: 'false'
  903. formula: ''
  904. header:
  905. size: 15
  906. title: ' '
  907. weight: '400'
  908. height: 25.4
  909. larger: ''
  910. left: 1565px
  911. lesser: ''
  912. linkhtml: 'true'
  913. ref: 311-RTP-1-5025
  914. top: 536px
  915. trend: 'true'
  916. type: data
  917. unit:
  918. size: 15
  919. title: ' K'
  920. weight: '700'
  921. width: 75.4
  922. 311-RTY-1-1023:
  923. background_color: rgba(0, 0, 0, 0)
  924. decimal: '2'
  925. exponential: 'false'
  926. formula: ''
  927. header:
  928. size: 16
  929. title: ' '
  930. weight: '400'
  931. height: 29.4
  932. larger: ''
  933. left: 303px
  934. lesser: ''
  935. linkhtml: 'true'
  936. ref: 311-RTY-1-1023
  937. top: 599px
  938. trend: 'true'
  939. type: data
  940. unit:
  941. size: 16
  942. title: ' K'
  943. weight: '400'
  944. width: 69.4
  945. 311-RTY-1-1027:
  946. background_color: rgba(0, 0, 0, 0)
  947. decimal: '2'
  948. exponential: 'false'
  949. formula: ''
  950. header:
  951. size: 15
  952. title: ' '
  953. weight: '400'
  954. height: 23.4
  955. larger: ''
  956. left: 130px
  957. lesser: ''
  958. linkhtml: 'true'
  959. ref: 311-RTY-1-1027
  960. top: 693px
  961. trend: 'true'
  962. type: data
  963. unit:
  964. size: 15
  965. title: ' K'
  966. weight: '700'
  967. width: 81.4
  968. 311-RTY-1-1029:
  969. background_color: rgba(0, 0, 0, 0)
  970. decimal: '2'
  971. exponential: 'false'
  972. formula: ''
  973. header:
  974. size: 15
  975. title: 'T2_coil: '
  976. weight: '400'
  977. height: 19.4
  978. larger: ''
  979. left: 240.983px
  980. lesser: ''
  981. linkhtml: 'true'
  982. ref: 311-RTY-1-1029
  983. top: 731.967px
  984. trend: 'true'
  985. type: data
  986. unit:
  987. size: 17
  988. title: ' K'
  989. weight: '700'
  990. width: 142.4
  991. 311-RTY-1-2023:
  992. background_color: rgba(0, 0, 0, 0)
  993. decimal: '2'
  994. exponential: 'false'
  995. formula: ''
  996. header:
  997. size: 16
  998. title: ' '
  999. weight: '400'
  1000. height: 30.4
  1001. larger: ''
  1002. left: 652px
  1003. lesser: ''
  1004. linkhtml: 'true'
  1005. ref: 311-RTY-1-2023
  1006. top: 484px
  1007. trend: 'true'
  1008. type: data
  1009. unit:
  1010. size: 16
  1011. title: ' K'
  1012. weight: '400'
  1013. width: 79.4
  1014. 311-RTY-1-2027:
  1015. background_color: rgba(0, 0, 0, 0)
  1016. decimal: '2'
  1017. exponential: 'false'
  1018. formula: ''
  1019. header:
  1020. size: 15
  1021. title: ' '
  1022. weight: '400'
  1023. height: 23.4
  1024. larger: ''
  1025. left: 481px
  1026. lesser: ''
  1027. linkhtml: 'true'
  1028. ref: 311-RTY-1-2027
  1029. top: 576px
  1030. trend: 'true'
  1031. type: data
  1032. unit:
  1033. size: 15
  1034. title: ' K'
  1035. weight: '700'
  1036. width: 83.4
  1037. 311-RTY-1-2029:
  1038. background_color: rgba(0, 0, 0, 0)
  1039. decimal: '2'
  1040. exponential: 'false'
  1041. formula: ''
  1042. header:
  1043. size: 15
  1044. title: 'T2_coil: '
  1045. weight: '400'
  1046. height: 24.4
  1047. larger: ''
  1048. left: 579.983px
  1049. lesser: ''
  1050. linkhtml: 'true'
  1051. ref: 311-RTY-1-2029
  1052. top: 596px
  1053. trend: 'true'
  1054. type: data
  1055. unit:
  1056. size: 17
  1057. title: ' K'
  1058. weight: '700'
  1059. width: 142.4
  1060. 311-RTY-1-3023:
  1061. background_color: rgba(0, 0, 0, 0)
  1062. decimal: '2'
  1063. exponential: 'false'
  1064. formula: ''
  1065. header:
  1066. size: 16
  1067. title: ' '
  1068. weight: '400'
  1069. height: 23.4
  1070. larger: ''
  1071. left: 1007px
  1072. lesser: ''
  1073. linkhtml: 'true'
  1074. ref: 311-RTY-1-3023
  1075. top: 384px
  1076. trend: 'true'
  1077. type: data
  1078. unit:
  1079. size: 16
  1080. title: ' K'
  1081. weight: '400'
  1082. width: 76.4
  1083. 311-RTY-1-3027:
  1084. background_color: rgba(0, 0, 0, 0)
  1085. decimal: '2'
  1086. exponential: 'false'
  1087. formula: ''
  1088. header:
  1089. size: 15
  1090. title: ' '
  1091. weight: '400'
  1092. height: 23.4
  1093. larger: ''
  1094. left: 835px
  1095. lesser: ''
  1096. linkhtml: 'true'
  1097. ref: 311-RTY-1-3027
  1098. top: 476px
  1099. trend: 'true'
  1100. type: data
  1101. unit:
  1102. size: 15
  1103. title: ' K'
  1104. weight: '700'
  1105. width: 76.4
  1106. 311-RTY-1-3029:
  1107. background_color: rgba(0, 0, 0, 0)
  1108. decimal: '2'
  1109. exponential: 'false'
  1110. formula: ''
  1111. header:
  1112. size: 17
  1113. title: 'T2_coil: '
  1114. weight: '400'
  1115. height: 23.4
  1116. larger: ''
  1117. left: 935px
  1118. lesser: ''
  1119. linkhtml: 'true'
  1120. ref: 311-RTY-1-3029
  1121. top: 513px
  1122. trend: 'true'
  1123. type: data
  1124. unit:
  1125. size: 17
  1126. title: ' K'
  1127. weight: '700'
  1128. width: 152.4
  1129. 311-RTY-1-4023:
  1130. background_color: rgba(0, 0, 0, 0)
  1131. decimal: '2'
  1132. exponential: 'false'
  1133. formula: ''
  1134. header:
  1135. size: 16
  1136. title: ' '
  1137. weight: '400'
  1138. height: 28.4
  1139. larger: ''
  1140. left: 1359px
  1141. lesser: ''
  1142. linkhtml: 'true'
  1143. ref: 311-RTY-1-4023
  1144. top: 481px
  1145. trend: 'true'
  1146. type: data
  1147. unit:
  1148. size: 16
  1149. title: ' K'
  1150. weight: '400'
  1151. width: 76.4
  1152. 311-RTY-1-4027:
  1153. background_color: rgba(0, 0, 0, 0)
  1154. decimal: '2'
  1155. exponential: 'false'
  1156. formula: ''
  1157. header:
  1158. size: 15
  1159. title: ' '
  1160. weight: '400'
  1161. height: 23.4
  1162. larger: ''
  1163. left: 1184px
  1164. lesser: ''
  1165. linkhtml: 'true'
  1166. ref: 311-RTY-1-4027
  1167. top: 576px
  1168. trend: 'true'
  1169. type: data
  1170. unit:
  1171. size: 15
  1172. title: ' K'
  1173. weight: '700'
  1174. width: 82.4
  1175. 311-RTY-1-4029:
  1176. background_color: rgba(0, 0, 0, 0)
  1177. decimal: '2'
  1178. exponential: 'false'
  1179. formula: ''
  1180. header:
  1181. size: 15
  1182. title: 'T2_coil: '
  1183. weight: '400'
  1184. height: 28.4
  1185. larger: ''
  1186. left: 1318px
  1187. lesser: ''
  1188. linkhtml: 'true'
  1189. ref: 311-RTY-1-4029
  1190. top: 620.983px
  1191. trend: 'true'
  1192. type: data
  1193. unit:
  1194. size: 17
  1195. title: ' K'
  1196. weight: '700'
  1197. width: 130.4
  1198. 311-RTY-1-5023:
  1199. background_color: rgba(0, 0, 0, 0)
  1200. decimal: '2'
  1201. exponential: 'false'
  1202. formula: ''
  1203. header:
  1204. size: 16
  1205. title: ' '
  1206. weight: '400'
  1207. height: 30.4
  1208. larger: ''
  1209. left: 1709px
  1210. lesser: ''
  1211. linkhtml: 'true'
  1212. ref: 311-RTY-1-5023
  1213. top: 597px
  1214. trend: 'true'
  1215. type: data
  1216. unit:
  1217. size: 16
  1218. title: ' K'
  1219. weight: '400'
  1220. width: 74.4
  1221. 311-RTY-1-5027:
  1222. background_color: rgba(0, 0, 0, 0)
  1223. decimal: '2'
  1224. exponential: 'false'
  1225. formula: ''
  1226. header:
  1227. size: 15
  1228. title: ' '
  1229. weight: '400'
  1230. height: 23.4
  1231. larger: ''
  1232. left: 1537px
  1233. lesser: ''
  1234. linkhtml: 'true'
  1235. ref: 311-RTY-1-5027
  1236. top: 692px
  1237. trend: 'true'
  1238. type: data
  1239. unit:
  1240. size: 15
  1241. title: ' K'
  1242. weight: '700'
  1243. width: 77.4
  1244. 311-RTY-1-5029:
  1245. background_color: rgba(0, 0, 0, 0)
  1246. decimal: '2'
  1247. exponential: 'false'
  1248. formula: ''
  1249. header:
  1250. size: 15
  1251. title: 'T2_coil: '
  1252. weight: '400'
  1253. height: 25.4
  1254. larger: ''
  1255. left: 1647.98px
  1256. lesser: ''
  1257. linkhtml: 'true'
  1258. ref: 311-RTY-1-5029
  1259. top: 729.983px
  1260. trend: 'true'
  1261. type: data
  1262. unit:
  1263. size: 17
  1264. title: ' K'
  1265. weight: '700'
  1266. width: 149.4
  1267. 311PCO-1-1071-EIN:
  1268. background_color: rgba(0, 0, 0, 0)
  1269. decimal: '0'
  1270. exponential: 'false'
  1271. formula: ''
  1272. header:
  1273. size: 14
  1274. title: 'ON? '
  1275. weight: '400'
  1276. height: 19.4
  1277. larger: ''
  1278. left: 160px
  1279. lesser: '0.5'
  1280. linkhtml: 'true'
  1281. ref: 311PCO-1-1071-EIN
  1282. top: 407px
  1283. trend: 'true'
  1284. type: data
  1285. unit:
  1286. size: 14
  1287. title: ' '
  1288. weight: '400'
  1289. width: 50.4
  1290. 311PCO-1-2071-EIN:
  1291. background_color: rgba(0, 0, 0, 0)
  1292. decimal: '0'
  1293. exponential: 'false'
  1294. formula: ''
  1295. header:
  1296. size: 14
  1297. title: 'ON? '
  1298. weight: '400'
  1299. height: 31.4
  1300. larger: ''
  1301. left: 518px
  1302. lesser: '0.5'
  1303. linkhtml: 'true'
  1304. ref: 311PCO-1-2071-EIN
  1305. top: 292px
  1306. trend: 'true'
  1307. type: data
  1308. unit:
  1309. size: 14
  1310. title: ' '
  1311. weight: '400'
  1312. width: 58.4
  1313. 311PCO-1-3071-EIN:
  1314. background_color: rgba(0, 0, 0, 0)
  1315. decimal: '0'
  1316. exponential: 'false'
  1317. formula: ''
  1318. header:
  1319. size: 14
  1320. title: 'ON? '
  1321. weight: '400'
  1322. height: 38.4
  1323. larger: ''
  1324. left: 868px
  1325. lesser: '0.5'
  1326. linkhtml: 'true'
  1327. ref: 311PCO-1-3071-EIN
  1328. top: 189px
  1329. trend: 'true'
  1330. type: data
  1331. unit:
  1332. size: 14
  1333. title: ' '
  1334. weight: '400'
  1335. width: 54.4
  1336. 311PCO-1-4071-EIN:
  1337. background_color: rgba(0, 0, 0, 0)
  1338. decimal: '0'
  1339. exponential: 'false'
  1340. formula: ''
  1341. header:
  1342. size: 14
  1343. title: 'ON? '
  1344. weight: '400'
  1345. height: 38.4
  1346. larger: ''
  1347. left: 1220px
  1348. lesser: '0.5'
  1349. linkhtml: 'true'
  1350. ref: 311PCO-1-4071-EIN
  1351. top: 291px
  1352. trend: 'true'
  1353. type: data
  1354. unit:
  1355. size: 14
  1356. title: ' '
  1357. weight: '400'
  1358. width: 56.4
  1359. 311PCO-1-5071-EIN:
  1360. background_color: rgba(0, 0, 0, 0)
  1361. decimal: '0'
  1362. exponential: 'false'
  1363. formula: ''
  1364. header:
  1365. size: 14
  1366. title: 'ON? '
  1367. weight: '400'
  1368. height: 38.4
  1369. larger: ''
  1370. left: 1578px
  1371. lesser: '0.5'
  1372. linkhtml: 'true'
  1373. ref: 311PCO-1-5071-EIN
  1374. top: 402px
  1375. trend: 'true'
  1376. type: data
  1377. unit:
  1378. size: 14
  1379. title: ' '
  1380. weight: '400'
  1381. width: 57.4
  1382. 311RPM-1-1420:
  1383. background_color: rgba(0, 0, 0, 0)
  1384. decimal: '2'
  1385. exponential: 'true'
  1386. formula: ''
  1387. header:
  1388. size: 18
  1389. title: 'Iso. Vac. M1: '
  1390. weight: '700'
  1391. height: 32.4
  1392. larger: 7e-4
  1393. left: 138px
  1394. lesser: ''
  1395. linkhtml: 'true'
  1396. ref: 311RPM-1-1420
  1397. top: 965px
  1398. trend: 'true'
  1399. type: data
  1400. unit:
  1401. size: 18
  1402. title: ' mbar'
  1403. weight: '400'
  1404. width: 239.4
  1405. 311RPM-1-2420:
  1406. background_color: rgba(0, 0, 0, 0)
  1407. decimal: '2'
  1408. exponential: 'true'
  1409. formula: ''
  1410. header:
  1411. size: 18
  1412. title: 'Iso. Vac. M2: '
  1413. weight: '700'
  1414. height: 32.4
  1415. larger: 7e-4
  1416. left: 493px
  1417. lesser: ''
  1418. linkhtml: 'true'
  1419. ref: 311RPM-1-2420
  1420. top: 965px
  1421. trend: 'true'
  1422. type: data
  1423. unit:
  1424. size: 18
  1425. title: ' mbar'
  1426. weight: '400'
  1427. width: 239.4
  1428. 311RPM-1-3420:
  1429. background_color: rgba(0, 0, 0, 0)
  1430. decimal: '2'
  1431. exponential: 'true'
  1432. formula: ''
  1433. header:
  1434. size: 18
  1435. title: 'Iso. Vac. M3: '
  1436. weight: '700'
  1437. height: 29.4
  1438. larger: 7e-4
  1439. left: 849px
  1440. lesser: ''
  1441. linkhtml: 'true'
  1442. ref: 311RPM-1-3420
  1443. top: 965px
  1444. trend: 'true'
  1445. type: data
  1446. unit:
  1447. size: 18
  1448. title: ' mbar'
  1449. weight: '400'
  1450. width: 234.4
  1451. 311RPM-1-4420:
  1452. background_color: rgba(0, 0, 0, 0)
  1453. decimal: '2'
  1454. exponential: 'true'
  1455. formula: ''
  1456. header:
  1457. size: 18
  1458. title: 'Iso. Vac. M4: '
  1459. weight: '700'
  1460. height: 30.4
  1461. larger: 7e-4
  1462. left: 1204px
  1463. lesser: ''
  1464. linkhtml: 'true'
  1465. ref: 311RPM-1-4420
  1466. top: 965px
  1467. trend: 'true'
  1468. type: data
  1469. unit:
  1470. size: 18
  1471. title: ' mbar'
  1472. weight: '400'
  1473. width: 230.4
  1474. 311RPM-1-5420:
  1475. background_color: rgba(0, 0, 0, 0)
  1476. decimal: '2'
  1477. exponential: 'true'
  1478. formula: ''
  1479. header:
  1480. size: 18
  1481. title: 'Iso. Vac. M5: '
  1482. weight: '700'
  1483. height: 31.4
  1484. larger: 7e-4
  1485. left: 1557px
  1486. lesser: ''
  1487. linkhtml: 'true'
  1488. ref: 311RPM-1-5420
  1489. top: 965px
  1490. trend: 'true'
  1491. type: data
  1492. unit:
  1493. size: 18
  1494. title: ' mbar'
  1495. weight: '400'
  1496. width: 233.4
  1497. 311RPV-1-1460:
  1498. background_color: rgba(0, 0, 0, 0)
  1499. decimal: '2'
  1500. exponential: 'true'
  1501. formula: ''
  1502. header:
  1503. size: 18
  1504. title: 'Main Iso. Vacuum: '
  1505. weight: '700'
  1506. height: 27.4
  1507. larger: 7e-4
  1508. left: 817px
  1509. lesser: ''
  1510. linkhtml: 'true'
  1511. ref: 311RPV-1-1460
  1512. top: 1016px
  1513. trend: 'true'
  1514. type: data
  1515. unit:
  1516. size: 18
  1517. title: ' mbar'
  1518. weight: '400'
  1519. width: 295.4
  1520. 311-RFC-1-1510-F-X:
  1521. background_color: rgba(0, 0, 0, 0)
  1522. decimal: '1'
  1523. exponential: 'false'
  1524. formula: ''
  1525. header:
  1526. size: 14
  1527. title: 'gHe-filling: '
  1528. weight: '400'
  1529. height: 22.4
  1530. larger: '80'
  1531. left: 177px
  1532. lesser: ''
  1533. linkhtml: 'true'
  1534. ref: 311-RFC-1-1510-F-X
  1535. top: 360px
  1536. trend: 'true'
  1537. type: data
  1538. unit:
  1539. size: 14
  1540. title: ' L/min'
  1541. weight: '400'
  1542. width: 300
  1543. DPS1-Helium-Temp:
  1544. background_color: rgba(0, 0, 0, 0)
  1545. decimal: '1'
  1546. exponential: 'false'
  1547. formula: ''
  1548. header:
  1549. size: 14
  1550. title: 'T-He: '
  1551. weight: '400'
  1552. height: 22.4
  1553. larger: '80'
  1554. left: 218px
  1555. lesser: ''
  1556. linkhtml: 'true'
  1557. ref: DPS1-Helium-Temp
  1558. top: 389px
  1559. trend: 'true'
  1560. type: data
  1561. unit:
  1562. size: 14
  1563. title: ' °C'
  1564. weight: '400'
  1565. width: 123.4
  1566. DPS1-Oil-Temp:
  1567. background_color: rgba(0, 0, 0, 0)
  1568. decimal: '1'
  1569. exponential: 'false'
  1570. formula: ''
  1571. header:
  1572. size: 14
  1573. title: 'T-Oil: '
  1574. weight: '400'
  1575. height: 19.4
  1576. larger: '40'
  1577. left: 216px
  1578. lesser: '25'
  1579. linkhtml: 'true'
  1580. ref: DPS1-Oil-Temp
  1581. top: 408px
  1582. trend: 'true'
  1583. type: data
  1584. unit:
  1585. size: 14
  1586. title: ' °C'
  1587. weight: '400'
  1588. width: 122.4
  1589. 311-RFC-1-2510-F-X:
  1590. background_color: rgba(0, 0, 0, 0)
  1591. decimal: '1'
  1592. exponential: 'false'
  1593. formula: ''
  1594. header:
  1595. size: 14
  1596. title: 'gHe-filling: '
  1597. weight: '400'
  1598. height: 22.4
  1599. larger: '80'
  1600. left: 527px
  1601. lesser: ''
  1602. linkhtml: 'true'
  1603. ref: 311-RFC-1-2510-F-X
  1604. top: 245px
  1605. trend: 'true'
  1606. type: data
  1607. unit:
  1608. size: 14
  1609. title: ' L/min'
  1610. weight: '400'
  1611. width: 300
  1612. DPS2-Helium-Temp:
  1613. background_color: rgba(0, 0, 0, 0)
  1614. decimal: '1'
  1615. exponential: 'false'
  1616. formula: ''
  1617. header:
  1618. size: 14
  1619. title: 'T-He: '
  1620. weight: '400'
  1621. height: 19.4
  1622. larger: '80'
  1623. left: 577px
  1624. lesser: ''
  1625. linkhtml: 'true'
  1626. ref: DPS2-Helium-Temp
  1627. top: 275px
  1628. trend: 'true'
  1629. type: data
  1630. unit:
  1631. size: 14
  1632. title: ' °C'
  1633. weight: '400'
  1634. width: 114.4
  1635. DPS2-Oil-Temp:
  1636. background_color: rgba(0, 0, 0, 0)
  1637. decimal: '1'
  1638. exponential: 'false'
  1639. formula: ''
  1640. header:
  1641. size: 14
  1642. title: 'T-Oil: '
  1643. weight: '400'
  1644. height: 19.4
  1645. larger: '40'
  1646. left: 576px
  1647. lesser: '25'
  1648. linkhtml: 'true'
  1649. ref: DPS2-Oil-Temp
  1650. top: 293px
  1651. trend: 'true'
  1652. type: data
  1653. unit:
  1654. size: 14
  1655. title: ' °C'
  1656. weight: '400'
  1657. width: 114.4
  1658. 311-RFC-1-3510-F-X:
  1659. background_color: rgba(0, 0, 0, 0)
  1660. decimal: '1'
  1661. exponential: 'false'
  1662. formula: ''
  1663. header:
  1664. size: 14
  1665. title: 'gHe-filling: '
  1666. weight: '400'
  1667. height: 22.4
  1668. larger: '80'
  1669. left: 877px
  1670. lesser: ''
  1671. linkhtml: 'true'
  1672. ref: 311-RFC-1-3510-F-X
  1673. top: 144px
  1674. trend: 'true'
  1675. type: data
  1676. unit:
  1677. size: 14
  1678. title: ' L/min'
  1679. weight: '400'
  1680. width: 300
  1681. DPS3-Helium-Temp:
  1682. background_color: rgba(0, 0, 0, 0)
  1683. decimal: '1'
  1684. exponential: 'false'
  1685. formula: ''
  1686. header:
  1687. size: 14
  1688. title: 'T-He: '
  1689. weight: '400'
  1690. height: 19.4
  1691. larger: '80'
  1692. left: 927px
  1693. lesser: ''
  1694. linkhtml: 'true'
  1695. ref: DPS3-Helium-Temp
  1696. top: 174px
  1697. trend: 'true'
  1698. type: data
  1699. unit:
  1700. size: 14
  1701. title: ' °C'
  1702. weight: '400'
  1703. width: 121.4
  1704. DPS3-Oil-Temp:
  1705. background_color: rgba(0, 0, 0, 0)
  1706. decimal: '1'
  1707. exponential: 'false'
  1708. formula: ''
  1709. header:
  1710. size: 14
  1711. title: 'T-Oil: '
  1712. weight: '400'
  1713. height: 19.4
  1714. larger: '40'
  1715. left: 927px
  1716. lesser: '25'
  1717. linkhtml: 'true'
  1718. ref: DPS3-Oil-Temp
  1719. top: 194px
  1720. trend: 'true'
  1721. type: data
  1722. unit:
  1723. size: 14
  1724. title: ' °C'
  1725. weight: '400'
  1726. width: 123.4
  1727. 311-RFC-1-4510-F-X:
  1728. background_color: rgba(0, 0, 0, 0)
  1729. decimal: '1'
  1730. exponential: 'false'
  1731. formula: ''
  1732. header:
  1733. size: 14
  1734. title: 'gHe-filling: '
  1735. weight: '400'
  1736. height: 22.4
  1737. larger: '80'
  1738. left: 1228px
  1739. lesser: ''
  1740. linkhtml: 'true'
  1741. ref: 311-RFC-1-4510-F-X
  1742. top: 244px
  1743. trend: 'true'
  1744. type: data
  1745. unit:
  1746. size: 14
  1747. title: ' L/min'
  1748. weight: '400'
  1749. width: 300
  1750. DPS4-Helium-Temp:
  1751. background_color: rgba(0, 0, 0, 0)
  1752. decimal: '1'
  1753. exponential: 'false'
  1754. formula: ''
  1755. header:
  1756. size: 14
  1757. title: 'T-He: '
  1758. weight: '400'
  1759. height: 19.4
  1760. larger: '80'
  1761. left: 1278px
  1762. lesser: ''
  1763. linkhtml: 'true'
  1764. ref: DPS4-Helium-Temp
  1765. top: 274px
  1766. trend: 'true'
  1767. type: data
  1768. unit:
  1769. size: 14
  1770. title: ' °C'
  1771. weight: '400'
  1772. width: 127.4
  1773. DPS4-Oil-Temp:
  1774. background_color: rgba(0, 0, 0, 0)
  1775. decimal: '1'
  1776. exponential: 'false'
  1777. formula: ''
  1778. header:
  1779. size: 14
  1780. title: 'T-Oil: '
  1781. weight: '400'
  1782. height: 19.4
  1783. larger: '40'
  1784. left: 1279px
  1785. lesser: '25'
  1786. linkhtml: 'true'
  1787. ref: DPS4-Oil-Temp
  1788. top: 295px
  1789. trend: 'true'
  1790. type: data
  1791. unit:
  1792. size: 14
  1793. title: ' °C'
  1794. weight: '400'
  1795. width: 128.4
  1796. 311-RFC-1-5510-F-X:
  1797. background_color: rgba(0, 0, 0, 0)
  1798. decimal: '1'
  1799. exponential: 'false'
  1800. formula: ''
  1801. header:
  1802. size: 14
  1803. title: 'gHe-filling: '
  1804. weight: '400'
  1805. height: 22.4
  1806. larger: '80'
  1807. left: 1583px
  1808. lesser: ''
  1809. linkhtml: 'true'
  1810. ref: 311-RFC-1-5510-F-X
  1811. top: 360px
  1812. trend: 'true'
  1813. type: data
  1814. unit:
  1815. size: 14
  1816. title: ' L/min'
  1817. weight: '400'
  1818. width: 300
  1819. DPS5-Helium-Temp:
  1820. background_color: rgba(0, 0, 0, 0)
  1821. decimal: '1'
  1822. exponential: 'false'
  1823. formula: ''
  1824. header:
  1825. size: 14
  1826. title: 'T-He: '
  1827. weight: '400'
  1828. height: 19.4
  1829. larger: '80'
  1830. left: 1633px
  1831. lesser: ''
  1832. linkhtml: 'true'
  1833. ref: DPS5-Helium-Temp
  1834. top: 387px
  1835. trend: 'true'
  1836. type: data
  1837. unit:
  1838. size: 14
  1839. title: ' °C'
  1840. weight: '400'
  1841. width: 124.4
  1842. DPS5-Oil-Temp:
  1843. background_color: rgba(0, 0, 0, 0)
  1844. decimal: '1'
  1845. exponential: 'false'
  1846. formula: ''
  1847. header:
  1848. size: 14
  1849. title: 'T-Oil: '
  1850. weight: '400'
  1851. height: 19.4
  1852. larger: '40'
  1853. left: 1637px
  1854. lesser: '25'
  1855. linkhtml: 'true'
  1856. ref: DPS5-Oil-Temp
  1857. top: 410px
  1858. trend: 'true'
  1859. type: data
  1860. unit:
  1861. size: 14
  1862. title: ' °C'
  1863. weight: '400'
  1864. width: 124.4
  1865. header_compressor-he-pressures:
  1866. background_color: rgba(0, 0, 0, 0)
  1867. header:
  1868. size: 16
  1869. title: 'Compressor He pressures '
  1870. weight: '400'
  1871. height: 45.4
  1872. left: -2px
  1873. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__18,fbmd__FBMD__2__19,fbmd__FBMD__2__29,fbmd__FBMD__2__30,fbmd__FBMD__2__40,fbmd__FBMD__2__41,fbmd__FBMD__2__51,fbmd__FBMD__2__52,fbmd__FBMD__2__62,fbmd__FBMD__2__63&bar_axis_range=0:0&infomod=legend&history_id=1558686959804
  1874. top: 375px
  1875. type: header
  1876. width: 112.4
  1877. header_compressor-he-delta-P:
  1878. background_color: rgba(0, 0, 0, 0)
  1879. header:
  1880. size: 15
  1881. title: 'Compressor He delta P '
  1882. weight: '400'
  1883. height: 21.4
  1884. left: 0px
  1885. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__11,fbmd__FBMD__2__22,fbmd__FBMD__2__33,fbmd__FBMD__2__44,fbmd__FBMD__2__55,fbmd__FBMD__2__66&bar_axis_range=0%3A0&infomod=legend&history_id=1642407623411
  1886. top: 200px
  1887. type: header
  1888. width: 112.4
  1889. header_hegasflows:
  1890. background_color: rgba(0, 0, 0, 0)
  1891. header:
  1892. size: 15
  1893. title: 'He-gas-flows '
  1894. weight: '400'
  1895. height: 21.4
  1896. left: 0px
  1897. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Helium__3,cscryo__ControlSystem_DPS__310_MAG_Helium__18,cscryo__ControlSystem_DPS__310_MAG_Helium__33,cscryo__ControlSystem_DPS__310_MAG_Helium__48,cscryo__ControlSystem_DPS__310_MAG_Helium__63&infomod=legend&history_id=1582290751301
  1898. top: 245px
  1899. type: header
  1900. width: 105.4
  1901. header_link-to-loopsdps:
  1902. background_color: rgba(0, 0, 0, 0)
  1903. header:
  1904. size: 18
  1905. title: 'Link to Loops-DPS '
  1906. weight: '400'
  1907. height: 24.4
  1908. left: 5px
  1909. titlelink: http://bora-loops-dps.kaas.kit.edu/
  1910. top: 1052px
  1911. type: header
  1912. width: 170.4
  1913. header_magnet-8855:
  1914. background_color: rgba(0, 0, 0, 0)
  1915. header:
  1916. size: 20
  1917. title: 'Magnet 8855 '
  1918. weight: '700'
  1919. height: 30.4
  1920. left: 175.983px
  1921. top: 304.967px
  1922. type: header
  1923. width: 136.4
  1924. header_magnet-8856:
  1925. background_color: rgba(0, 0, 0, 0)
  1926. header:
  1927. size: 20
  1928. title: 'Magnet 8856 '
  1929. weight: '700'
  1930. height: 28.4
  1931. left: 1590.98px
  1932. top: 303.983px
  1933. type: header
  1934. width: 140.4
  1935. header_magnet-8857:
  1936. background_color: rgba(0, 0, 0, 0)
  1937. header:
  1938. size: 20
  1939. title: 'Magnet 8857 '
  1940. weight: '700'
  1941. height: 30.4
  1942. left: 882.983px
  1943. top: 100px
  1944. type: header
  1945. width: 132.4
  1946. header_magnet-8858r1:
  1947. background_color: rgba(0, 0, 0, 0)
  1948. header:
  1949. size: 20
  1950. title: 'Magnet 8858R1 '
  1951. weight: '700'
  1952. height: 28.4
  1953. left: 518px
  1954. titlelink: ''
  1955. top: 183px
  1956. type: header
  1957. width: 164.4
  1958. header_magnet-8903:
  1959. background_color: rgba(0, 0, 0, 0)
  1960. header:
  1961. size: 20
  1962. title: 'Magnet 8903 '
  1963. weight: '700'
  1964. height: 28.4
  1965. left: 1257.98px
  1966. top: 178.983px
  1967. type: header
  1968. width: 140.4
  1969. header_mcs:
  1970. background_color: rgba(0, 0, 0, 0)
  1971. header:
  1972. size: 18
  1973. title: 'MCS '
  1974. weight: '700'
  1975. height: 24.4
  1976. left: 0px
  1977. titlelink: http://bora-mcs.kaas.kit.edu/
  1978. top: 103px
  1979. type: header
  1980. width: 50.4
  1981. header_oil-temperatures:
  1982. background_color: rgba(0, 0, 0, 0)
  1983. header:
  1984. size: 16
  1985. title: 'Oil temperatures '
  1986. weight: '400'
  1987. height: 24.4
  1988. left: -4px
  1989. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__17,fbmd__FBMD__2__28,fbmd__FBMD__2__39,fbmd__FBMD__2__50,fbmd__FBMD__2__61&bar_axis_range=0:0&infomod=legend&history_id=1558687492138
  1990. top: 424px
  1991. type: header
  1992. width: 137.4
  1993. header_status-of-the-dps-magnets:
  1994. background_color: rgba(0, 0, 0, 0)
  1995. header:
  1996. size: 28
  1997. title: 'Status of the DPS magnets '
  1998. weight: '700'
  1999. height: 34.4
  2000. left: 761px
  2001. titlelink: http://bora-mcs.kaas.kit.edu/
  2002. top: 11px
  2003. type: header
  2004. width: 388.4
  2005. header_t-of-cooling-water:
  2006. background_color: rgba(0, 0, 0, 0)
  2007. header:
  2008. size: 18
  2009. title: 'T of Cooling Water '
  2010. weight: '400'
  2011. height: 25.4
  2012. left: -1px
  2013. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__30,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__33,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__36,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__39,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__42,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__45&infomod=legend&history_id=1536679137027
  2014. top: 344px
  2015. type: header
  2016. width: 168.4
  2017. header_t-on-cl:
  2018. background_color: rgba(0, 0, 0, 0)
  2019. header:
  2020. size: 18
  2021. title: 'T on CL '
  2022. weight: '400'
  2023. height: 25.4
  2024. left: 1px
  2025. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__0,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__3,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__6,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__9,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__12,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__15,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__18,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__21,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__24,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__27&infomod=legend&history_id=1536678857335
  2026. top: 281px
  2027. type: header
  2028. width: 80.4
  2029. 320-RPI-0-1105-Pressure:
  2030. background_color: rgba(0, 0, 0, 0)
  2031. decimal: '2'
  2032. exponential: 'false'
  2033. formula: ''
  2034. header:
  2035. size: 16
  2036. title: 'Hall-pressure: '
  2037. weight: '400'
  2038. height: 26.4
  2039. larger: ''
  2040. left: 1590px
  2041. lesser: '14'
  2042. linkhtml: 'true'
  2043. ref: 320-RPI-0-1105-Pressure
  2044. top: 14px
  2045. trend: 'true'
  2046. type: data
  2047. unit:
  2048. size: 16
  2049. title: ' mbar'
  2050. weight: '400'
  2051. width: 200
  2052. 320-RTP-0-1103-Temperature:
  2053. background_color: rgba(0, 0, 0, 0)
  2054. decimal: '1'
  2055. exponential: 'false'
  2056. formula: ''
  2057. header:
  2058. size: 16
  2059. title: 'Hall-temperature: '
  2060. weight: '400'
  2061. height: 23.4
  2062. larger: '25'
  2063. left: 1590px
  2064. lesser: '14'
  2065. linkhtml: 'true'
  2066. ref: 320-RTP-0-1103-Temperature
  2067. top: 44px
  2068. trend: 'true'
  2069. type: data
  2070. unit:
  2071. size: 16
  2072. title: ' °C'
  2073. weight: '400'
  2074. width: 200
  2075. 320-RMY-0-1104-Humidity:
  2076. background_color: rgba(0, 0, 0, 0)
  2077. decimal: '1'
  2078. exponential: 'false'
  2079. formula: ''
  2080. header:
  2081. size: 16
  2082. title: 'rel. humidity: '
  2083. weight: '400'
  2084. height: 23.4
  2085. larger: '65'
  2086. left: 1590px
  2087. lesser: '20'
  2088. linkhtml: 'true'
  2089. ref: 320-RMY-0-1104-Humidity
  2090. top: 74px
  2091. trend: 'true'
  2092. type: data
  2093. unit:
  2094. size: 16
  2095. title: ' %'
  2096. weight: '400'
  2097. width: 200