content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
(ns hu.test.object (:require [assert :refer [equal deep-equal]] [hu.lib.collection :as _])) (suite :each (fn [] (test :object (fn [] (let [called false] (.each _ {:a true} (fn [] (set! called true))) (equal called true)))) (test :array (fn [] (let [called false] (.each _ [true] (fn [] (set! called true))) (equal called true)))))) (suite :size (fn [] (test :invalid (fn [] (equal (.size _ :str) 0) (equal (.size _ nil) 0))) (test :array (fn [] (equal (.size _ [1 2]) 2))) (test :object (fn [] (equal (.size _ {:a 1 :b 2}) 2))))) (suite :compact (fn [] (test :array (fn [] (deep-equal (.compact _ [1 0 "" false nil undefined]) [1 0 false]))) (test :object (fn [] (deep-equal (.compact _ {:a 1 :b "" :c nil :d undefined }) {:a 1})))))
wisp
4
h2non/hu
test/collection.wisp
[ "MIT" ]
<cfscript> public string function ANOTHERMETHOD(){ var FO = "Bar"; local.TEST = "Foo"; LOCAL.test = "FooBar"; return LOCAL.FO; } </cfscript>
ColdFusion
1
tonym128/CFLint
src/test/resources/com/cflint/tests/Naming/Inconsistent_545_cfml.cfm
[ "BSD-3-Clause" ]
--TEST-- Bug #80959: infinite loop in building cfg during JIT compilation --EXTENSIONS-- opcache --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.jit_buffer_size=1M opcache.jit=tracing --FILE-- <?php function test($a, $b) { echo "Start\n"; $i = $j = 0; do { $i++; try { continue; } catch (Exception $e) { } do { $j++; } while ($j < $b); } while ($i < $a); echo "Done $i $j\n"; } test(5, 6); ?> --EXPECT-- Start Done 5 0
PHP
3
NathanFreeman/php-src
ext/opcache/tests/jit/bug80959.phpt
[ "PHP-3.01" ]
@let-def: this design document gathers requirements and ideas for the next version of merlin. The purpose is to consolidate features that were added lately and cleanup legacy crufts. == TL;DR == * simpler & stateless protocol * pure implementation for reference * performance added on top, memoization & asynchronicity * traceability, log all decisions and print internal structures * maintenability, minimize change to OCaml codebase See [[RATIONALE]]. == Implementation == Merlin is split in three main components: * [[Protocol]], communicates with outside world * [[Kernel]], wraps the OCaml frontend * [[Analysis]], answers specific questions on the codebase
MediaWiki
4
ZavierHenry/merlin
doc/next/merlin.wiki
[ "MIT" ]
Rebol [ title: "Needs module test 2" name: test-needs-file needs: %units/files/test-needs-file-value.reb ;- at this moment files imported from other file ;- does not use parent file's location! ] export test-needs-file-result: (42 = test-needs-file-value)
Rebol
3
0branch/r3
src/tests/units/files/test-needs-file.reb
[ "Apache-2.0" ]
<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="page"> <html> <head> <title> Test XSLT </title> <script src="../../resources/testharness.js"></script> <script src="../../resources/testharnessreport.js"></script> <script> test(() => { let feature_allowed; try { document.domain = document.domain; feature_allowed = true; } catch(e) { feature_allowed = false; } assert_false(feature_allowed, "Feature(Document Domain) should not be allowed by permissions policy."); }); </script> </head> <body bgcolor="#ffffff"> </body> </html> </xsl:template> </xsl:stylesheet>
XSLT
3
zealoussnow/chromium
third_party/blink/web_tests/http/tests/permissions-policy/resources/permissions-policy-in-xsl.xslt
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
do 25 times rotate FRAME / 25 push move 1 box 0.01,0.02,10 pop end
Cycript
1
Psykopear/cyril
bin/data/code/4.cy
[ "MIT" ]
import { imageDemoTest } from '../../../tests/shared/imageTest'; describe('PageHeader image', () => { imageDemoTest('page-header'); });
TypeScript
3
chnliquan/ant-design
components/page-header/__tests__/image.test.ts
[ "MIT" ]
;; Los germenes son tortugs ocultas en el centro de cada "flor" que generan ;; continuamente p�talos (que son los visibles) breed [germenes germen] breed [petalos petalo] globals [ primer-padre ;; El pimer padre, en caso de q la reproducci�n sea sexual ] germenes-own [ numero-colores ;; Cu�ntos colores tendr�n los p�talos inc-paso ;; C�mo de r�pido se mueven los p�talos hacia afuera (crecimiento de la flor) inc-giro ;; Cu�nto se gira un p�talo antes de ser movido hacia afuera inc-tamano ;; C�mo de r�pido crecen los p�talos al alejarse ] petalos-own [ inc-paso ;; Igual que con los g�rmenes inc-tamano ;; Igual que con los g�rmenes padre ;; germen origen del p�talo actual (la distancia entre ellos ;; permite calcula, por ejemplo, las variaciones de tama�o) ] to setup ca reset-ticks create-germenes filas * columnas [ set numero-colores random 14 + 1 set inc-paso random-float 0.5 set inc-giro random-float 4.0 set inc-tamano random-float 2.0 hide-turtle ;; los g�rmenes permanecen ocultos ] ordena-germenes set primer-padre nobody end to ordena-germenes ;; ordena los g�rmenes en el mundo en una malla let i 0 while [i < filas * columnas] [ ask turtle i [ let x-int world-width / columnas let y-int world-height / filas setxy (-1 * max-pxcor + x-int / 2 + (i mod columnas) * x-int) (max-pycor + min-pycor / filas - int (i / columnas) * y-int) ] set i i + 1 ] end to go ask germenes [ hatch-petalos 1 [ set padre myself set color 10 * (ticks mod ([numero-colores] of padre + 1)) + 15 rt ticks * [inc-giro] of padre * 360 set size 0 show-turtle ;; el p�talo hereda la invisibilidad del padre g�rmen, por lo ;; que hemos de hacerlo visible de nuevo ] ] ask petalos [ fd inc-paso set size inc-tamano * sqrt distance padre ;; mata los p�talos cuando comienzan a interferir a p�talos de otras flores if abs (xcor - [xcor] of padre) > max-pxcor / (columnas * 1.5) [ die ] if abs (ycor - [ycor] of padre) > max-pycor / (filas * 1.5) [ die ] ] tick if mouse-down? [ manejar-pulsacion-raton ] end to repoblar-a-partir-de-dos [padre1 padre2] ask petalos [ die ] ask germenes [ ;;Si mutacion-controlada? entonces la mutaci�n que experimenta una flor es relativa al valor de who de su germen if mutacion-controlada? [set mutacion who * 1 / (filas * columnas)] ;; selecciona un valor de uno de los padre para cada una de las cuatro variables (genes) set numero-colores ([numero-colores] of one-of list padre1 padre2) + int random-normal 0 (mutacion * 10) mod 15 + (1) set inc-paso ([inc-paso] of one-of list padre1 padre2) + random-normal 0 (mutacion / 5) set inc-giro ([inc-giro] of one-of list padre1 padre2) + random-normal 0 (mutacion / 20) set inc-tamano ([inc-tamano] of one-of list padre1 padre2) + random-normal 0 mutacion ;;Se acotan los valores de inc-tamano para que las flores no sean demasiado grandes if inc-tamano > 1.5 [set inc-tamano 1.5] ] end to repoblar-a-partir-de-uno [padre1] ; Equialente al anterior, pero tomando los caracteres del �nico padre que tiene ask petalos [ die ] ask germenes [ if mutacion-controlada? [ set mutacion who * 1 / (filas * columnas) ] set numero-colores ([numero-colores] of padre1 + int random-normal 0 (mutacion * 10)) mod 15 + 1 set inc-paso [inc-paso] of padre1 + random-normal 0 (mutacion / 5) set inc-giro [inc-giro] of padre1 + random-normal 0 (mutacion / 20) set inc-tamano [inc-tamano] of padre1 + random-normal 0 mutacion if inc-tamano > 1.5 [ set inc-tamano 1.5 ] ] end to manejar-pulsacion-raton ;; se queda con el germen m�s cercano al lugar en que se ha pulsado let new-padre min-one-of germenes [distancexy mouse-xcor mouse-ycor] ifelse asexual? [ repoblar-a-partir-de-uno new-padre ] [ ifelse primer-padre != nobody [ repoblar-a-partir-de-dos primer-padre new-padre set primer-padre nobody ask patches [ set pcolor black ] ] [ set primer-padre new-padre ask patches [ ;; Como algunos patches pueden estar equidistantes de m�s de un ;; germen, no podemos preguntar por el m�s cercano, sino que ;; tenemos que preguntar por todos los m�s cercanos y ver si ;; el germen sobre el que se ha pulsado est� entre ellos if member? new-padre germenes with-min [distance myself] [ set pcolor gray - 3 ] ] ] ] ;; hay que esperar a que el usuario suelte el bot�n del rat�n while [mouse-down?] [ ] end ; Copyright 2006 Uri Wilensky. All rights reserved. ; The full copyright notice is in the Information tab. @#$#@#$#@ GRAPHICS-WINDOW 198 10 750 563 -1 -1 15.543 1 10 1 1 1 0 0 0 1 -17 17 -17 17 1 1 1 ticks 30.0 BUTTON 11 107 94 140 NIL setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 102 107 182 140 NIL go T 1 T OBSERVER NIL NIL NIL NIL 1 SLIDER 10 33 182 66 filas filas 1.0 10.0 7.0 1.0 1 NIL HORIZONTAL SLIDER 10 67 182 100 columnas columnas 1.0 10.0 7.0 1.0 1 NIL HORIZONTAL SLIDER 10 145 182 178 mutacion mutacion 0.0 1.0 0.7346938775510204 0.02 1 NIL HORIZONTAL SWITCH 10 193 161 226 asexual? asexual? 1 1 -1000 SWITCH 10 227 161 260 mutacion-controlada? mutacion-controlada? 0 1 -1000 @#$#@#$#@ �QU� ES? Este proyecto presenta un modelo de evoluci�ndonde el usuario realiza el proceso selectivo por medio del rat�n. Para ello, debe pulsar sobre una o dos de los individuos (flores) de la malla que muestra la poblaci�n actual. Las flores seleccionadas se convierten en los "padres" de la siguiente generaci�n, de esta forma, puede ir dirigiendo las caracter�sticas que la poblaci�n resultante ir� teniendo. �C�MO FUNCIONA? Cada flor tiene 4 genes que determinan su forma. Por ejemplo, una flor puede tener los p�talos m�s grandes o ser m�s colorida que otra. Cuando el usuario selecciona el padre, o padres, la siguiente generaci�n que se forma a partir de ellos se muestra en el mundo. Si el usuario quiere, por ejemplo, que la poblaci�n sea muy colorida, puede ir seleccionando padres que tengan muchos colores. En el centro de cada "flor" hay un "g�rmen" invisible, que permanece siempre en el centro de la misma, produciendo p�talos que se mueven hacia el exterior de la flor. Cada g�rmen tiene 4 variables: numero-colores, inc-paso, inc-giro, inc-tama�o (algunas de estas variables se copian en los p�talos para que se puean ir moviendo). En cada turno, cada g�rmen crea un nuevo p�talo, y poteriormente todos los p�talos ajustan su posici�n y tama�o en funci�n de las propiedades de su g�rmen. Si un p�talo se mueve fuera de la zona que corresponde a su flor, se elimina (para que no interfiera a otra flor). El usuario puede escoger entre reproducci�n sexual (2 padres) o asexual (1 padre), y la siguiente generaci�n de g�rmenes se crear� por mutaci�n de los valores de los padres en los 4 genes. �C�MO SE USA? Antes de pulsar SETUP se deben seleccionar el n�mero de columnas y filas que se desee, que determinar�n cu�ntas flores hay en cada generaci�n. Posteriormente, se establece el valor de mutaci�n que se quiera, cuanto mayor sea, menos parecidas podr�n ser las descendientes a su/s padre/s. Si MUTACION-CONTROLADA? est� activo, el modelo controla la mutaci�n modific�ndolo en la poblaci�n, de manera que sea proporcional al valor que ocupe en la malla. As�, las flores que est�n m�s cerca de la esquina superior izquierda ser�n m�s similares a los padres. Si se ha seleccionado la reproducci�n asexual, entonces cada generaci�n har� uso de una �nica flor para definir sus caracteres, si no, habr� que pulsar sucesivamente sobre dos flores para definir la siguiente generaci�n. ## COSAS A INTENTAR Prefije cierto objetivo, e intenta conseguir flores que se ajusten a �l por medio del ensayo y error. ## EXTENDIENDO EL MODELO Podr�a ser interesante que la malla fuese modificable en tiempo de ejecuci�n, de forma que si estamos ejecutando un mundo 2x2 y el usuario cambia a 3x3, en la siguiente generaci�n aparezca ese n�mero de flores. Cambia o a�ade genes con otros comportamientos. As� como la forma en que los genes de los padres se expresan en los hijos. CARACTER�STICAS NETLOGO Este modelo usa g�rmenes invisibles para mantener la informaci�n de las flores. Hay algunos detalles interesantes acerca de la geometr�a necesaria para espaciar correctamente las flores en el mundo. ## RELATED MODELS Sunflower ## CREDITS AND REFERENCES This model is loosely based on the Biomorphs discussed at length in Richard Dawkins' "The Blind Watchmaker" (1986). In Dawkins' original model, the user was presented with a series of "insects" that were drawn based on nine separate values. For example, if insect A has a "leg-length" value of 2 and insect B has a "leg-length" value of 1, then insect A would be drawn with longer legs. These 9 variables were thus the genotype of each insect-like creature, and the drawing based on those numbers was the phenotype. If the user clicked on an insect (or "biomorph"), then all the insects would be erased and the chosen biomorph would be used as the basis for a new population of biomorphs. Each variable would be mutated slightly in the new generation (representing the inheriting of a slightly higher or lower value for the genotype), and these mutated values would be used in the new population of the biomorphs. In this manner, the new generation of biomorphs resembled the previously chosen biomorph, with some variation. For example, if you chose a biomorph with an exceptionally long abdomen, then, because they are all modified versions of the chosen biomorph, biomorphs in the next generation would tend to have longer abdomens than previously. In this model, "flowers" are used as the biomorphs instead of the insect-like creatures Dawkins used; furthermore, these biomorphs only vary among four variables--num-color, step-size, size-modifier, and turn-increment--and not nine. The idea is very similar, though. The user is presented with a number of flowers. By clicking on a flower, the user can choose the type of flower that will populate the next generation. If ASEXUAL? is false, the user picks two biomorphs instead of just one; the next generation will be produced by selecting one the values for each of the four genotype variables from either one of the parents. Thanks to Nate Nichols for his work on this model. ## HOW TO CITE If you mention this model in an academic publication, we ask that you include these citations for the model itself and for the NetLogo software: - Nichols, N. and Wilensky, U. (2006). NetLogo Sunflower Biomorphs model. http://ccl.northwestern.edu/netlogo/models/SunflowerBiomorphs. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL. - Wilensky, U. (1999). NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL. In other publications, please use: - Copyright 2006 Uri Wilensky. All rights reserved. See http://ccl.northwestern.edu/netlogo/models/SunflowerBiomorphs for terms of use. ## COPYRIGHT NOTICE Copyright 2006 Uri Wilensky. All rights reserved. Permission to use, modify or redistribute this model is hereby granted, provided that both of the following requirements are followed: a) this copyright notice is included. b) this model will not be redistributed for profit without permission from Uri Wilensky. Contact Uri Wilensky for appropriate licenses for redistribution for profit. @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 6.0.2 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@
NetLogo
5
fsancho/IA
08. Evolving Computing/Biomorphs Girasol.nlogo
[ "MIT" ]
# Copyright (c) 2022 Fyde Innovations Limited and the openFyde Authors. # Distributed under the license specified in the root directory of this project. EAPI="5" DESCRIPTION="bcm2835 chip related configuration files" HOMEPAGE="https://fydeos.io" LICENSE="BSD" SLOT="0" KEYWORDS="*" IUSE="" RDEPEND="" DEPEND="${RDEPEND}" S=$WORKDIR src_install() { #insinto /etc/modprobe.d #doins ${FILESDIR}/snd_bcm2835.conf insinto /etc/init doins "${FILESDIR}/force_audio_output_to_headphones.conf" }
Gentoo Ebuild
4
FydeOS/chromium_os_for_raspberry_pi
baseboard-rpi3/chromeos-base/snd_bcm2835-spec/snd_bcm2835-spec-0.0.1.ebuild
[ "BSD-2-Clause" ]
--# -path=.:../abstract:../common:prelude abstract AllPolAbs = Lang, ExtraPolAbs ** {} ;
Grammatical Framework
3
daherb/gf-rgl
src/polish/AllPolAbs.gf
[ "BSD-3-Clause" ]
# # Copyright (c) 2007 Lindquist Consulting, Inc. # All rights reserved. # # Written by Dr. Kent Lindquist, Lindquist Consulting, Inc. # # This software is licensed under the New BSD license: # # Redistribution and use in source and binary forms, # with or without modification, are permitted provided # that the following conditions are met: # # * Redistributions of source code must retain the above # copyright notice, this list of conditions and the # following disclaimer. # # * Redistributions in binary form must reproduce the # above copyright notice, this list of conditions and # the following disclaimer in the documentation and/or # other materials provided with the distribution. # # * Neither the name of Lindquist Consulting, Inc. nor # the names of its contributors may be used to endorse # or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL # THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # use Getopt::Std ; #Fake the trwfname call since it's not in the perldb interface sub trwfname { my( $pattern ) = pop( @_ ); my( @db ) = @_; my( $orid, $time ) = dbgetv( @db, "orid", "time" ); my( $path_from_db, $fullpath, $tabledir, $relpath, $dir ); $path_from_db = epoch2str( $time, $pattern ); $path_from_db =~ s/{orid}/$orid/; $path_from_db =~ s/{evid}/$evid/; if( $path_from_db !~ m@^/@ ) { $tabledir = dbquery( @db, dbTABLE_DIRNAME ); $path_from_here = concatpaths( $tabledir, $path_from_db ); } else { $path_from_here = $path_from_db; } ( $dir, $base, $suffix ) = parsepath( $path_from_db ); $dfile = $base; if( $suffix ne "" ) { $dfile .= "." . $suffix; } dbputv( @db, "dir", $dir, "dfile", $dfile ); ( $dir_from_here, $base, $suffix ) = parsepath( $path_from_here ); makedir( "$dir_from_here" ); return $path_from_here; } sub save_eids { my( $xml ) = pop( @_ ); my( $time ) = pop( @_ ); my( @db ) = @_; my( $orid ) = dbgetv( @db, "orid" ); @db = dblookup( @db, "", "eids", "", "" ); $db[3] = dbaddv( @db, "orid", $orid, "time", $time ); my( $filename ) = trwfname( @db, $eids_filename_template ); if( ! open( F, ">$filename" ) ) { elog_complain( "Failed to open '$filename'!\n" ); dbdelete( @db ); return; } print F $stylesheet->output_string( $xml ); close( F ); if( $opt_V ) { elog_notify( "Added row $db[3] to '$dbname.eids'\n" ); elog_notify( "Wrote EIDS XML file '$filename'\n" ); } return $filename; } sub postprocess { my( $filename ) = @_; if( ! defined( $filename ) || ! defined( $postprocess_command ) || $filename eq "" || $postprocess_command eq "" ) { return; } my( $cmd ) = $postprocess_command; $cmd =~ s/EIDSFILE/$filename/g; if( $opt_v ) { elog_notify( "Executing: $cmd\n" ); } system( "$cmd" ); } $Pfname = "db2eids"; $Program = $0 ; $Program =~ s".*/"" ; elog_init( $Program, @ARGV ); if ( ! getopts('1p:vV') || @ARGV != 1 ) { die ( "Usage: $pgm [-1] [-p pfname] [-vV] database\n" ) ; } else { $dbname = pop( @ARGV ); } if( $opt_V ) { $opt_v++; } if( $opt_p ) { $Pfname = $opt_p; } use XML::LibXML; use XML::LibXSLT; use Datascope; use Datascope::db2xml; $xslt_stylesheet = pfget( $Pfname, "xslt_stylesheet" ); $query_interval_sec = pfget( $Pfname, "query_interval_sec" ); $eqmessage_source = pfget( $Pfname, "eqmessage_source" ); $sent_time_format = pfget( $Pfname, "sent_time_format" ); $eids_filename_template = pfget( $Pfname, "eids_filename_template" ); $generic_rootnode = pfget( $Pfname, "generic_rootnode" ); $db2xml_rootnode = pfget( $Pfname, "db2xml_rootnode" ); $db2xml_rownode = pfget( $Pfname, "db2xml_rownode" ); $postprocess_command = pfget( $Pfname, "postprocess_command" ); @dbprocess_commands = @{pfget( $Pfname, "dbprocess_commands" )}; %generic_xml_elements = %{pfget( $Pfname, "generic_xml_elements" )}; @fields = keys( %generic_xml_elements ); foreach $field ( @fields ) { if( $generic_xml_elements{$field} eq "" ) { push( @expressions, $field ); } else { push( @expressions, $generic_xml_elements{$field} ); } } if( ! defined( $xslt_stylesheet ) || $xslt_stylesheet eq "" || ! -e $xslt_stylesheet ) { die( "Couldn't find XSLT sylesheet '$xslt_stylesheet'\n" ); } $parser = XML::LibXML->new(); $xslt = XML::LibXSLT->new(); $style_doc = $parser->parse_file( $xslt_stylesheet ); $stylesheet = $xslt->parse_stylesheet( $style_doc ); @db = dbopen( $dbname, "r+" ); if( $db[0] < 0 ) { die( "Failed to open database '$dbname'. Bye.\n" ); } $xml_generation_time = now(); $sent = epoch2str( $xml_generation_time, $sent_time_format ); $header_xml = "<$generic_rootnode>" . "\n<eqmessage_source>$eqmessage_source</eqmessage_source>" . "\n<sent>$sent</sent>"; $trailer_xml = "</$generic_rootnode>"; for( ;; ) { @dbp = dbprocess( @db, @dbprocess_commands ); $nrecs = dbquery( @dbp, dbRECORD_COUNT ); if( $opt_v ) { elog_notify( "Processing $nrecs hypocenters\n" ); } for( $dbp[3] = 0; $dbp[3] < $nrecs; $dbp[3]++ ) { $orid = dbgetv( @dbp, "orid" ); if( $opt_v ) { elog_notify( "Processing orid $orid\n" ); } $dbxml = db2xml( @dbp, $db2xml_rootnode, $db2xml_rownode, \@fields, \@expressions ); $xml = "$header_xml\n" . "$dbxml\n" . "$trailer_xml\n"; if( $opt_V ) { print "Converting generic XML:\n$xml\n\n"; } $source = $parser->parse_string( $xml ); $result = $stylesheet->transform( $source ); if( $opt_V ) { print "To resulting EIDS message:\n\n" . $stylesheet->output_string( $result ) . "\n\n"; } $filename = save_eids( @dbp, $xml_generation_time, $result ); postprocess( $filename ); } if( $opt_1 ) { exit( 0 ); } else { sleep( $query_interval_sec ); } }
XProc
4
jreyes1108/antelope_contrib
nobuild/bin/export/db2eids/db2eids.xpl
[ "BSD-2-Clause", "MIT" ]
fun main () = s <- source <xml><tr><td>A</td><td>A'</td></tr></xml>; return <xml><body> <button value="Click me!" onclick={set s <xml><tr><td>B</td><td>B'</td></tr><tr><td>C</td><td>C'</td></tr></xml>}/><br/> <table><tr><td>Pre</td><td>Pre'</td></tr><dyn signal={signal s}/><tr><td>Post</td><td>Post</td><td>Post'</td></tr></table> </body></xml>
UrWeb
3
apple314159/urweb
tests/dtable.ur
[ "BSD-3-Clause" ]
<style lang="uppercase-rocks"> hello, world! </style>
Vue
1
tumido/prettier
tests/format/vue/with-plugins/style-lang.vue
[ "MIT" ]
server { listen 80; ## SSL directives might go here ## see http://www.howtoforge.com/how_to_set_up_ssl_vhosts_under_nginx_plus_sni_support_ubuntu_11.04_debian_squeeze ## if you want to enable SSL for this vhost server_name www.example.com example.com; root /var/www/www.example.com/web; if ($http_host != "www.example.com") { rewrite ^ http://www.example.com$request_uri permanent; } index index.php index.html; if ($request_method ~ ^(TRACE|TRACK)$ ) { return 403; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location ~ (/\.|EXCEPTION_LOG\.txt|\.log$|\.tpl$|pkg.rev) { deny all; } location ~ /out/pictures/.*(\.jpg|\.gif|\.png)$ { try_files $uri /core/utils/getimg.php; } location ~ ^/(admin|setup)/?$ { } location ~ /(core|export|modules|out|tmp|views)/ { } location / { try_files $uri $uri/ /oxseo.php; } location = /oxseo.php { if ($args ~ "mod_rewrite_module_is=off") { rewrite /oxseo.php /oxseo.php?mod_rewrite_module_is=on? break; } try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS $fastcgi_https; } location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS $fastcgi_https; } }
ApacheConf
4
tsrivishnu/certbot
certbot-compatibility-test/nginx/nginx-roundtrip-testdata/oxid-eshop/sites-available/www.example.com.vhost
[ "Apache-2.0" ]
package com.thealgorithms.maths; /** * https://en.wikipedia.org/wiki/Lucas_number */ public class LucasSeries { public static void main(String[] args) { assert lucasSeries(1) == 2 && lucasSeriesIteration(1) == 2; assert lucasSeries(2) == 1 && lucasSeriesIteration(2) == 1; assert lucasSeries(3) == 3 && lucasSeriesIteration(3) == 3; assert lucasSeries(4) == 4 && lucasSeriesIteration(4) == 4; assert lucasSeries(5) == 7 && lucasSeriesIteration(5) == 7; assert lucasSeries(6) == 11 && lucasSeriesIteration(6) == 11; assert lucasSeries(11) == 123 && lucasSeriesIteration(11) == 123; } /** * Calculate nth number of lucas series(2, 1, 3, 4, 7, 11, 18, 29, 47, 76, * 123, ....) using recursion * * @param n nth * @return nth number of lucas series */ public static int lucasSeries(int n) { return n == 1 ? 2 : n == 2 ? 1 : lucasSeries(n - 1) + lucasSeries(n - 2); } /** * Calculate nth number of lucas series(2, 1, 3, 4, 7, 11, 18, 29, 47, 76, * 123, ....) using iteration * * @param n nth * @return nth number of lucas series */ public static int lucasSeriesIteration(int n) { int previous = 2; int current = 1; for (int i = 1; i < n; i++) { int next = previous + current; previous = current; current = next; } return previous; } }
Java
5
JohnTitor001/Java
src/main/java/com/thealgorithms/maths/LucasSeries.java
[ "MIT" ]
CREATE TABLE `tb_qhsljnukja` ( `col_fersnxhqir` numeric(42) NULL, `col_lzdbrgiewo` tinyblob, `col_xdshuwzznl` binary(156) NOT NULL, `col_wguqpgfoll` double NOT NULL DEFAULT '1', CONSTRAINT PRIMARY KEY (`col_xdshuwzznl`(19),`col_wguqpgfoll`) ) DEFAULT CHARSET=latin1; CREATE TABLE `tb_drxwrxamak` ( `col_ijririnvpk` varbinary(57), `col_pzzdnkysqx` int unsigned zerofill NOT NULL, `col_nsnfutrvvi` double(20,8) ) DEFAULT CHARSET=utf8; CREATE TABLE `tb_rexvlcurcc` LIKE `tb_drxwrxamak`; CREATE TABLE `tb_exsgxyoern` ( `col_cnvlgnafnx` date, `col_chjcwavubn` int(73) unsigned, `col_jihokqqpqw` enum('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 DEFAULT 'enum_or_set_0' ) DEFAULT CHARSET=utf8; CREATE TABLE `tb_kjyszidrak` ( `col_cbvwqvuuvo` varbinary(128) NOT NULL, `col_kvspyjtqjg` text CHARACTER SET utf8, CONSTRAINT UNIQUE `uk_rjyzqluaky` (`col_cbvwqvuuvo`(3)) ) DEFAULT CHARSET=utf8; RENAME TABLE `tb_exsgxyoern` TO `tb_jjevlzpizx`; RENAME TABLE `tb_jjevlzpizx` TO `tb_bckwmwbhxe`; RENAME TABLE `tb_rexvlcurcc` TO `tb_reoiwwcvxn`, `tb_drxwrxamak` TO `tb_yewsyhywwt`; RENAME TABLE `tb_kjyszidrak` TO `tb_jaaspokopu`, `tb_reoiwwcvxn` TO `tb_zcarrcfbqk`; RENAME TABLE `tb_yewsyhywwt` TO `tb_qfbjzrlhat`, `tb_qhsljnukja` TO `tb_olxipktwgn`; DROP TABLE tb_zcarrcfbqk; DROP TABLE tb_bckwmwbhxe; DROP TABLE tb_olxipktwgn; DROP TABLE tb_qfbjzrlhat;
SQL
2
yuanweikang2020/canal
parse/src/test/resources/ddl/table/test_12.sql
[ "Apache-2.0" ]
/** * This file is part of the Phalcon Framework. * * (c) Phalcon Team <team@phalcon.io> * * For the full copyright and license information, please view the LICENSE.txt * file that was distributed with this source code. */ namespace Phalcon\Helper; /** * Phalcon\Helper\Base64 * * This class offers quick string base64 functions */ class Base64 { /** * Encode a json string in Base64 Url format. * * @param string $input * * @return string */ final public static function encodeUrl(string! input) -> string { return str_replace("=", "", strtr(base64_encode($input), "+/", "-_")); } /** * Decode a Base64 Url string to a json string * * @param string $input * * @return string */ final public static function decodeUrl(string! input) -> string { var data, remainder; let remainder = strlen(input) % 4; if remainder { let input .= str_repeat("=", 4 - remainder); } let data = base64_decode(strtr(input, "-_", "+/")); if (false === data) { let data = ""; } return data; } }
Zephir
4
chipco/cphalcon
phalcon/Helper/Base64.zep
[ "BSD-3-Clause" ]
/*############################################################################## ## HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®. All rights reserved. ############################################################################## */ IMPORT Std.Str; EXPORT TestWordCount := MODULE EXPORT TestConst := MODULE EXPORT Test01 := ASSERT(Str.WordCount('') = 0, CONST); EXPORT Test02 := ASSERT(Str.WordCount('x') = 1); EXPORT Test03 := ASSERT(Str.WordCount(' x') = 1); EXPORT Test04 := ASSERT(Str.WordCount(' ') = 0); EXPORT Test05 := ASSERT(Str.WordCount(' ') = 0); EXPORT Test06 := ASSERT(Str.WordCount('x ') = 1); EXPORT Test07 := ASSERT(Str.WordCount(' x') = 1); EXPORT Test08 := ASSERT(Str.WordCount(' x ') = 1); EXPORT Test09 := ASSERT(Str.WordCount(' abc def ') = 2); EXPORT Test10 := ASSERT(Str.WordCount(' abc def ') = 2); EXPORT Test11 := ASSERT(Str.WordCount(' a b c def ') = 4); EXPORT Test12 := ASSERT(Str.WordCount(' abc def') = 2); EXPORT Test13 := ASSERT(Str.WordCount(' ,,,, ') = 1); END; END;
ECL
4
miguelvazq/HPCC-Platform
ecllibrary/teststd/str/TestWordCount.ecl
[ "Apache-2.0" ]
#!/bin/csh set runnumber=${1} set refnumber=${3} set runNevents=${4} set CALIB=${5} set ERA=${6} set RELEASE=CMSSW_10_4_0 set fullSrc0='/store/group/dpg_hcal/comm_hcal/USC' set fullSrc1='/store/group/dpg_hcal/comm_hcal/LS1' set fullSrc='NO' set HistoDir=`pwd` set WD=`pwd` echo ${runnumber} >> ${WD}/LOG/batchlog grep -q ${runnumber} ${WD}/${CALIB}_LIST/fullSrc0_list_${2} if( ${status} == "0" ) then set fullSrc=${fullSrc0} endif grep -q ${runnumber} ${WD}/${CALIB}_LIST/fullSrc1_list_${2} if( ${status} == "0" ) then set fullSrc=${fullSrc1} endif if( ${fullSrc} == "NO" ) then echo "No Batch submission" ${runnumber} >> ${WD}/batchlog exit endif echo "Batch submission" ${fullSrc} " " ${runnumber} >> ${WD}/batchlog ###exit ### We are at working node mkdir ${runnumber} setenv WORK `pwd`/${runnumber} cd .. cmsenv cp ${WD}/remoteMonitoring_${CALIB}_${ERA}_cfg.py ${WORK}/remoteMonitoring_cfg.py cp ${WD}/RemoteMonitoringMAP.cc ${WORK} cp ${WD}/compile.csh ${WORK} cp ${WD}/LogEleMapdb.h ${WORK} cp ${WD}/${CALIB}_LIST/runlist.tmp.${2} ${WORK}/runlist.tmp cd ${WORK} #### cmsRun Start ### Temporarily #rm LOG/log_${runnumber} #rm ${HistoDir}/${CALIB}_${runnumber}.root echo " Start CMS run ">${WD}/log_${runnumber} echo ${LD_LIBRARY_PATH} >>${WD}/log_${runnumber} cmsRun remoteMonitoring_cfg.py ${runnumber} ${fullSrc} ${HistoDir} >> & ${WD}/log_${runnumber} mv ${HistoDir}/LED_${runnumber}.root ${HistoDir}/${CALIB}_${runnumber}.root echo " After CMS run ">>${WD}/log_${runnumber} ./compile.csh RemoteMonitoringMAP.cc >> & ${WD}/log_${runnumber} ./RemoteMonitoringMAP.cc.exe "${HistoDir}/${CALIB}_${runnumber}.root" "${HistoDir}/${CALIB}_${refnumber}.root" ${CALIB} >> & ${WD}/log_${runnumber}
Tcsh
3
ckamtsikis/cmssw
DPGAnalysis/HcalTools/scripts/rmt/HcalRemoteMonitoringNewNew_now.csh
[ "Apache-2.0" ]
pub main coginit(0, @entry, 0) dat org 0 entry _fibo wrlong _fibo_ret, sp add sp, #4 wrlong local01, sp add sp, #4 wrlong local02, sp add sp, #4 wrlong fp, sp add sp, #4 mov fp, sp _fibo_enter mov local01, arg01 cmps local01, #2 wc,wz if_b mov result1, local01 if_b jmp #LR__0001 mov arg01, local01 sub arg01, #1 sub local01, #2 call #_fibo mov local02, result1 mov arg01, local01 call #_fibo add result1, local02 LR__0001 mov sp, fp sub sp, #4 rdlong fp, sp sub sp, #4 rdlong local02, sp sub sp, #4 rdlong local01, sp sub sp, #4 rdlong _fibo_ret, sp nop _fibo_ret ret fp long 0 result1 long 0 sp long @@@stackspace COG_BSS_START fit 496 stackspace long 0[1] org COG_BSS_START arg01 res 1 local01 res 1 local02 res 1 fit 496
Parrot Assembly
3
archivest/spin2cpp
Test/Expect/stest067.pasm
[ "MIT" ]
#!/usr/bin/env sh # This script converts the mnist data into leveldb format. set -e EXAMPLES=./build/examples/siamese DATA=./data/mnist echo "Creating leveldb..." rm -rf ./examples/siamese/mnist_siamese_train_leveldb rm -rf ./examples/siamese/mnist_siamese_test_leveldb $EXAMPLES/convert_mnist_siamese_data.bin \ $DATA/train-images-idx3-ubyte \ $DATA/train-labels-idx1-ubyte \ ./examples/siamese/mnist_siamese_train_leveldb $EXAMPLES/convert_mnist_siamese_data.bin \ $DATA/t10k-images-idx3-ubyte \ $DATA/t10k-labels-idx1-ubyte \ ./examples/siamese/mnist_siamese_test_leveldb echo "Done."
Shell
4
Jiawei-Gu/caffe_gu
examples/siamese/create_mnist_siamese.sh
[ "BSD-2-Clause" ]
it("should not be executed", function() { throw new Error("should not be executed"); });
JavaScript
2
1shenxi/webpack
test/configCases/issues/issue-3596/b.js
[ "MIT" ]
# Copyright 2015 gRPC authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require_relative '../grpc' # GRPC contains the General RPC module. module GRPC # RpcDesc is a Descriptor of an RPC method. class RpcDesc < Struct.new(:name, :input, :output, :marshal_method, :unmarshal_method) include Core::StatusCodes # Used to wrap a message class to indicate that it needs to be streamed. class Stream attr_accessor :type def initialize(type) @type = type end end # @return [Proc] { |instance| marshalled(instance) } def marshal_proc proc { |o| o.class.send(marshal_method, o).to_s } end # @param [:input, :output] target determines whether to produce the an # unmarshal Proc for the rpc input parameter or # its output parameter # # @return [Proc] An unmarshal proc { |marshalled(instance)| instance } def unmarshal_proc(target) fail ArgumentError unless [:input, :output].include?(target) unmarshal_class = send(target) unmarshal_class = unmarshal_class.type if unmarshal_class.is_a? Stream proc { |o| unmarshal_class.send(unmarshal_method, o) } end def handle_request_response(active_call, mth, inter_ctx) req = active_call.read_unary_request call = active_call.single_req_view inter_ctx.intercept!( :request_response, method: mth, call: call, request: req ) do resp = mth.call(req, call) active_call.server_unary_response( resp, trailing_metadata: active_call.output_metadata ) end end def handle_client_streamer(active_call, mth, inter_ctx) call = active_call.multi_req_view inter_ctx.intercept!( :client_streamer, method: mth, call: call ) do resp = mth.call(call) active_call.server_unary_response( resp, trailing_metadata: active_call.output_metadata ) end end def handle_server_streamer(active_call, mth, inter_ctx) req = active_call.read_unary_request call = active_call.single_req_view inter_ctx.intercept!( :server_streamer, method: mth, call: call, request: req ) do replies = mth.call(req, call) replies.each { |r| active_call.remote_send(r) } send_status(active_call, OK, 'OK', active_call.output_metadata) end end ## # @param [GRPC::ActiveCall] active_call # @param [Method] mth # @param [Array<GRPC::InterceptionContext>] inter_ctx # def handle_bidi_streamer(active_call, mth, inter_ctx) active_call.run_server_bidi(mth, inter_ctx) send_status(active_call, OK, 'OK', active_call.output_metadata) end ## # @param [GRPC::ActiveCall] active_call The current active call object # for the request # @param [Method] mth The current RPC method being called # @param [GRPC::InterceptionContext] inter_ctx The interception context # being executed # def run_server_method(active_call, mth, inter_ctx = InterceptionContext.new) # While a server method is running, it might be cancelled, its deadline # might be reached, the handler could throw an unknown error, or a # well-behaved handler could throw a StatusError. if request_response? handle_request_response(active_call, mth, inter_ctx) elsif client_streamer? handle_client_streamer(active_call, mth, inter_ctx) elsif server_streamer? handle_server_streamer(active_call, mth, inter_ctx) else # is a bidi_stream handle_bidi_streamer(active_call, mth, inter_ctx) end rescue BadStatus => e # this is raised by handlers that want GRPC to send an application error # code and detail message and some additional app-specific metadata. GRPC.logger.debug("app err:#{active_call}, status:#{e.code}:#{e.details}") send_status(active_call, e.code, e.details, e.metadata) rescue Core::CallError => e # This is raised by GRPC internals but should rarely, if ever happen. # Log it, but don't notify the other endpoint.. GRPC.logger.warn("failed call: #{active_call}\n#{e}") rescue Core::OutOfTime # This is raised when active_call#method.call exceeds the deadline # event. Send a status of deadline exceeded GRPC.logger.warn("late call: #{active_call}") send_status(active_call, DEADLINE_EXCEEDED, 'late') rescue StandardError, NotImplementedError => e # This will usuaally be an unhandled error in the handling code. # Send back a UNKNOWN status to the client # # Note: this intentionally does not map NotImplementedError to # UNIMPLEMENTED because NotImplementedError is intended for low-level # OS interaction (e.g. syscalls) not supported by the current OS. GRPC.logger.warn("failed handler: #{active_call}; sending status:UNKNOWN") GRPC.logger.warn(e) send_status(active_call, UNKNOWN, "#{e.class}: #{e.message}") end def assert_arity_matches(mth) # A bidi handler function can optionally be passed a second # call object parameter for access to metadata, cancelling, etc. if bidi_streamer? if mth.arity != 2 && mth.arity != 1 fail arity_error(mth, 2, "should be #{mth.name}(req, call) or " \ "#{mth.name}(req)") end elsif request_response? || server_streamer? if mth.arity != 2 fail arity_error(mth, 2, "should be #{mth.name}(req, call)") end else if mth.arity != 1 fail arity_error(mth, 1, "should be #{mth.name}(call)") end end end def request_response? !input.is_a?(Stream) && !output.is_a?(Stream) end def client_streamer? input.is_a?(Stream) && !output.is_a?(Stream) end def server_streamer? !input.is_a?(Stream) && output.is_a?(Stream) end def bidi_streamer? input.is_a?(Stream) && output.is_a?(Stream) end def arity_error(mth, want, msg) "##{mth.name}: bad arg count; got:#{mth.arity}, want:#{want}, #{msg}" end def send_status(active_client, code, details, metadata = {}) details = 'Not sure why' if details.nil? GRPC.logger.debug("Sending status #{code}:#{details}") active_client.send_status(code, details, code == OK, metadata: metadata) rescue StandardError => e GRPC.logger.warn("Could not send status #{code}:#{details}") GRPC.logger.warn(e) end end end
Ruby
5
samotarnik/grpc
src/ruby/lib/grpc/generic/rpc_desc.rb
[ "Apache-2.0" ]
1.00 -1.00 0.00 0.00 0.00 0.00 0.00 -100.00 -1.00 1.00 0.00 0.00 0.00 0.00 0.00 -43.00 1.00 -1.00 0.00 0.00 0.00 0.00 0.00 -137.00 -1.00 1.00 0.00 0.00 0.00 0.00 0.00 -35.00 1.00 -1.00 0.00 0.00 0.00 0.00 0.00 -74.00 -1.00 1.00 0.00 0.00 0.00 0.00 0.00 31.00 1.00 -1.00 0.00 0.00 0.00 0.00 0.00 -158.00 -1.00 1.00 0.00 0.00 0.00 0.00 0.00 -10.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -100.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 -67.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -113.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -96.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 2.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -129.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 -56.00 1.00 0.00 0.00 -1.00 0.00 0.00 0.00 -100.00 -1.00 0.00 0.00 1.00 0.00 0.00 0.00 -21.00 1.00 0.00 0.00 -1.00 0.00 0.00 0.00 -159.00 -1.00 0.00 0.00 1.00 0.00 0.00 0.00 10.00 1.00 0.00 0.00 -1.00 0.00 0.00 0.00 -119.00 -1.00 0.00 0.00 1.00 0.00 0.00 0.00 -5.00 1.00 0.00 0.00 -1.00 0.00 0.00 0.00 -122.00 -1.00 0.00 0.00 1.00 0.00 0.00 0.00 3.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -100.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 -40.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -140.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 46.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -155.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 105.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -232.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 81.00 1.00 0.00 0.00 0.00 0.00 -1.00 0.00 -100.00 -1.00 0.00 0.00 0.00 0.00 1.00 0.00 -91.00 1.00 0.00 0.00 0.00 0.00 -1.00 0.00 -89.00 -1.00 0.00 0.00 0.00 0.00 1.00 0.00 -31.00 1.00 0.00 0.00 0.00 0.00 -1.00 0.00 -78.00 -1.00 0.00 0.00 0.00 0.00 1.00 0.00 -40.00 1.00 0.00 0.00 0.00 0.00 -1.00 0.00 -87.00 -1.00 0.00 0.00 0.00 0.00 1.00 0.00 -53.00 0.00 1.00 -1.00 0.00 0.00 0.00 0.00 -43.00 0.00 -1.00 1.00 0.00 0.00 0.00 0.00 -67.00 0.00 1.00 -1.00 0.00 0.00 0.00 0.00 -68.00 0.00 -1.00 1.00 0.00 0.00 0.00 0.00 -70.00 0.00 1.00 -1.00 0.00 0.00 0.00 0.00 -36.00 0.00 -1.00 1.00 0.00 0.00 0.00 0.00 -43.00 0.00 1.00 -1.00 0.00 0.00 0.00 0.00 -41.00 0.00 -1.00 1.00 0.00 0.00 0.00 0.00 -116.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -43.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -21.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -114.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -47.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -59.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -50.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -34.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -57.00 0.00 1.00 0.00 0.00 -1.00 0.00 0.00 -43.00 0.00 -1.00 0.00 0.00 1.00 0.00 0.00 -40.00 0.00 1.00 0.00 0.00 -1.00 0.00 0.00 -95.00 0.00 -1.00 0.00 0.00 1.00 0.00 0.00 -11.00 0.00 1.00 0.00 0.00 -1.00 0.00 0.00 -95.00 0.00 -1.00 0.00 0.00 1.00 0.00 0.00 60.00 0.00 1.00 0.00 0.00 -1.00 0.00 0.00 -144.00 0.00 -1.00 0.00 0.00 1.00 0.00 0.00 21.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 -43.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -91.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 -44.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -88.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 -18.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -85.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -113.00 0.00 0.00 1.00 -1.00 0.00 0.00 0.00 -67.00 0.00 0.00 -1.00 1.00 0.00 0.00 0.00 -21.00 0.00 0.00 1.00 -1.00 0.00 0.00 0.00 -92.00 0.00 0.00 -1.00 1.00 0.00 0.00 0.00 -23.00 0.00 0.00 1.00 -1.00 0.00 0.00 0.00 -88.00 0.00 0.00 -1.00 1.00 0.00 0.00 0.00 -72.00 0.00 0.00 1.00 -1.00 0.00 0.00 0.00 -80.00 0.00 0.00 -1.00 1.00 0.00 0.00 0.00 -28.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -67.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 -40.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -73.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 13.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -124.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 38.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -190.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 50.00 0.00 0.00 1.00 0.00 0.00 -1.00 0.00 -67.00 0.00 0.00 -1.00 0.00 0.00 1.00 0.00 -91.00 0.00 0.00 1.00 0.00 0.00 -1.00 0.00 -22.00 0.00 0.00 -1.00 0.00 0.00 1.00 0.00 -64.00 0.00 0.00 1.00 0.00 0.00 -1.00 0.00 -47.00 0.00 0.00 -1.00 0.00 0.00 1.00 0.00 -107.00 0.00 0.00 1.00 0.00 0.00 -1.00 0.00 -45.00 0.00 0.00 -1.00 0.00 0.00 1.00 0.00 -84.00 0.00 0.00 0.00 1.00 -1.00 0.00 0.00 -21.00 0.00 0.00 0.00 -1.00 1.00 0.00 0.00 -40.00 0.00 0.00 0.00 1.00 -1.00 0.00 0.00 -50.00 0.00 0.00 0.00 -1.00 1.00 0.00 0.00 -33.00 0.00 0.00 0.00 1.00 -1.00 0.00 0.00 -131.00 0.00 0.00 0.00 -1.00 1.00 0.00 0.00 15.00 0.00 0.00 0.00 1.00 -1.00 0.00 0.00 -131.00 0.00 0.00 0.00 -1.00 1.00 0.00 0.00 57.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 -21.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -91.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -110.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 -54.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -130.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 14.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -77.00 0.00 0.00 0.00 0.00 1.00 -1.00 0.00 -40.00 0.00 0.00 0.00 0.00 -1.00 1.00 0.00 -91.00 0.00 0.00 0.00 0.00 1.00 -1.00 0.00 37.00 0.00 0.00 0.00 0.00 -1.00 1.00 0.00 -91.00 0.00 0.00 0.00 0.00 1.00 -1.00 0.00 56.00 0.00 0.00 0.00 0.00 -1.00 1.00 0.00 -166.00 0.00 0.00 0.00 0.00 1.00 -1.00 0.00 92.00 0.00 0.00 0.00 0.00 -1.00 1.00 0.00 -187.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 -307.00 0.00 1.00 0.00 0.00 0.00 0.00 -1.00 -219.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 -265.00 0.00 0.00 0.00 1.00 0.00 0.00 -1.00 -206.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 -128.00 0.00 0.00 0.00 0.00 0.00 1.00 -1.00 -262.00
Matlab
1
yinrun/LOPDC-Benchmarks
jobshop/matlab/js-6-4-36.matlab
[ "MIT" ]
#ifdef ECERE_STATIC public import static "ecere" #else public import "ecere" #endif class SearchBox : EditBox { searchLabelColor = gray; public: Color searchLabelColor; String label; private: Color originalFg; originalFg = foreground; foreground = searchLabelColor; void OnRedraw(Surface surface) { if(contents && contents[0]) EditBox::OnRedraw(surface); else { char * search = CopyString(label && label[0] ? label : caption); contents = search; EditBox::OnRedraw(surface); contents = ""; delete search; } } watch(modifiedDocument) { if(modifiedDocument) { if(contents && contents[0]) foreground = originalFg; else foreground = searchLabelColor; } }; }
eC
3
N-eil/ecere-sdk
extras/gui/controls/SearchBox.ec
[ "BSD-3-Clause" ]
export let error; try { require("remote/invalid"); } catch (err) { error = err; }
JavaScript
3
1shenxi/webpack
test/configCases/container/error-handling/invalid-module-cjs.js
[ "MIT" ]
defmodule FrameworkBenchmarks.CachedWorld do @moduledoc """ Cache for the CachedWorld table """ use GenServer def start_link(_) do GenServer.start_link(__MODULE__, :ok, name: {:via, Registry, {FrameworkBenchmarks.Registry, __MODULE__}} ) end def get(id) do GenServer.call({:via, Registry, {FrameworkBenchmarks.Registry, __MODULE__}}, {:get, id}) end @impl true def init(_) do Cachex.start_link(:cached_world, []) records = FrameworkBenchmarks.Repo.all(FrameworkBenchmarks.Models.World) |> Enum.map(fn record -> { Map.get(record, :id), record |> Map.from_struct() |> Map.drop([:__meta__]) } end) Cachex.put_many(:cached_world, records) end @impl true def handle_call({:get, id}, _from, state) do record = case Cachex.get(:cached_world, id) do {:ok, nil} -> FrameworkBenchmarks.Repo.get(FrameworkBenchmarks.Models.World, id) |> Map.from_struct() |> Map.drop([:__meta__]) {:ok, value} -> value end {:reply, record, state} end end
Elixir
4
xsoheilalizadeh/FrameworkBenchmarks
frameworks/Elixir/plug/lib/framework_benchmarks/cached_world.ex
[ "BSD-3-Clause" ]
package UnionTaggedTest; // ----------------------------- 定义 union tagged ----------------------------- typedef union tagged { void None; // 要么取无效 UInt#(16) Alpha; // 要么取黑白 16 bit struct { // 要么取彩色 RGB565 UInt#(8) r; UInt#(8) g; UInt#(8) b; } RGB; } Pixel deriving (Bits, Eq); module mkTb(); rule test; Pixel pixel1 = tagged None; Pixel pixel2 = tagged Alpha 100; Pixel pixel3 = tagged RGB {r:6, g:2, b:9}; Pixel pixel = pixel1; if ( pixel matches tagged Alpha .alpha ) $display("%d", alpha); else if( pixel matches tagged RGB .rgb ) $display("%d %d %d", rgb.r, rgb.g, rgb.b); else if( pixel matches tagged None ) $display("no pixel"); case (pixel) matches tagged Alpha .alpha : $display("%d", alpha); tagged RGB .rgb : $display("%d %d %d", rgb.r, rgb.g, rgb.b); tagged None : $display("no pixel"); endcase $finish; endrule endmodule endpackage
Bluespec
4
Xiefengshang/BSV_Tutorial_cn
src/19.UnionTaggedTest/UnionTaggedTest.bsv
[ "MIT" ]
- foo skjfgh sjdkhf sdlfjhsl lsjgflksjfg
SaltStack
0
byteskeptical/salt
tests/integration/files/file/base/failparse.sls
[ "Apache-2.0" ]
<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'> <qgis version="2.18.28-Las Palmas" minimumScale="inf" maximumScale="1e+08" hasScaleBasedVisibilityFlag="0"> <pipe> <rasterrenderer opacity="1" alphaBand="0" classificationMax="181" classificationMinMaxOrigin="CumulativeCutFullExtentEstimated" band="1" classificationMin="98" type="singlebandpseudocolor"> <rasterTransparency/> <rastershader> <colorrampshader colorRampType="INTERPOLATED" clip="0"> <item alpha="0" value="98" label="98" color="#79d2f2"/> <item alpha="128" value="112" label="112" color="#79bbf2"/> <item alpha="191" value="126" label="126" color="#86d7e3"/> <item alpha="255" value="141" label="141" color="#7bdad0"/> <item alpha="255" value="154" label="154" color="#7ee1ab"/> <item alpha="255" value="169" label="169" color="#f7ea85"/> <item alpha="255" value="174" label="174" color="#f9d72a"/> <item alpha="255" value="181" label="181" color="#f88519"/> </colorrampshader> </rastershader> </rasterrenderer> <brightnesscontrast brightness="0" contrast="0"/> <huesaturation colorizeGreen="128" colorizeOn="0" colorizeRed="255" colorizeBlue="128" grayscaleMode="0" saturation="0" colorizeStrength="100"/> <rasterresampler maxOversampling="2"/> </pipe> <blendMode>0</blendMode> </qgis>
QML
2
jpapadakis/gdal
autotest/gdrivers/data/ngw/96.qml
[ "MIT" ]
'* Copyright (c) 2017 Roku, Inc. All rights reserved. ' ' File: MainScene.brs ' function init() print "=================== UI STARTING ==================" print m.top.subType() + ".init()" m.top.findNode("sampleVideo").setFocus(true) end function
Brightscript
2
khangh/samples
certification/manifestData-sample-master/components/MainScene.brs
[ "MIT" ]
public final class SmartSet /* SmartSet*/<T> extends kotlin.collections.AbstractSet<T> implements java.util.Set<T>, kotlin.collections.MutableSet<T>, kotlin.jvm.internal.markers.KMutableSet { @org.jetbrains.annotations.NotNull() public static final SmartSet.Companion Companion; @org.jetbrains.annotations.Nullable() private java.lang.Object data; private int size; private static final int ARRAY_THRESHOLD; @kotlin.jvm.JvmStatic() @org.jetbrains.annotations.NotNull() public static final <T> SmartSet<T> create();// <T> create() @kotlin.jvm.JvmStatic() @org.jetbrains.annotations.NotNull() public static final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull() java.util.Collection<? extends T>);// <T> create(java.util.Collection<? extends T>) @org.jetbrains.annotations.NotNull() public java.util.Iterator<T> iterator();// iterator() private SmartSet();// .ctor() public boolean add(T);// add(T) public int getSize();// getSize() public void clear();// clear() public void setSize(int);// setSize(int) public static final class Companion /* SmartSet.Companion*/ { @kotlin.jvm.JvmStatic() @org.jetbrains.annotations.NotNull() public final <T> SmartSet<T> create();// <T> create() @kotlin.jvm.JvmStatic() @org.jetbrains.annotations.NotNull() public final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull() java.util.Collection<? extends T>);// <T> create(java.util.Collection<? extends T>) private Companion();// .ctor() }}
Java
4
Mu-L/kotlin
compiler/testData/asJava/lightClasses/ideRegression/ImplementingMutableSet.java
[ "ECL-2.0", "Apache-2.0" ]
import ../Thread import native/win32/[types, errors] version(windows) { include windows /* covers & extern functions */ CreateMutex: extern func (Pointer, Bool, Pointer) -> Handle ReleaseMutex: extern func (Handle) CloseHandle: extern func (Handle) WaitForSingleObject: extern func (...) -> Long // laziness INFINITE: extern Long /** * Win32 implementation of mutexes. */ MutexWin32: class extends Mutex { new: static func -> Mutex { mut := CreateMutex ( null, // default security attributes false, // initially not owned null) // unnamed mutex mut as Mutex } } ooc_mutex_lock: inline unmangled func (m: Mutex) { WaitForSingleObject( m as Handle, // handle to mutex INFINITE // no time-out interval ) } ooc_mutex_unlock: inline unmangled func (m: Mutex) { ReleaseMutex(m as Handle) } ooc_mutex_destroy: inline unmangled func (m: Mutex) { CloseHandle(m as Handle) } /** * Win32 implementation of recursive mutexes. * * Apparently, Win32 mutexes are recursive by default, so this is just a * copy of `MutexWin32`, which is by */ RecursiveMutexWin32: class extends Mutex { new: static func -> RecursiveMutex { mut := CreateMutex ( null, // default security attributes false, // initially not owned null) // unnamed recursive_mutex mut as RecursiveMutex } } ooc_recursive_mutex_lock: inline unmangled func (m: RecursiveMutex) { WaitForSingleObject( m as Handle, // handle to recursive_mutex INFINITE // no time-out interval ) } ooc_recursive_mutex_unlock: inline unmangled func (m: RecursiveMutex) { ReleaseMutex(m as Handle) } ooc_recursive_mutex_destroy: inline unmangled func (m: RecursiveMutex) { CloseHandle(m as Handle) } }
ooc
4
fredrikbryntesson/launchtest
sdk/threading/native/MutexWin32.ooc
[ "MIT" ]
;;; Unit testing functions (defun assert-exit (val) "If argument is nil, exit interpreter with error." (if (not val) (exit -1))) (provide 'test)
wisp
4
skeeto/wisp
wisplib/test.wisp
[ "Unlicense" ]
/* * Copyright (c) 2002, Vanderbilt University * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * - Neither the name of the copyright holders nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * * @author: Miklos Maroti, Brano Kusy (kusy@isis.vanderbilt.edu) * Ported to T2: 3/17/08 by Brano Kusy (branislav.kusy@gmail.com) * Ported for LPL: Thomas Schmid (thomas.schmid@ucla.edu) */ #include "TestFtsp.h" #include "RadioCountToLeds.h" module TestFtspC { uses { interface GlobalTime<T32khz>; interface TimeSyncInfo; interface Receive; interface AMSend; interface Packet; interface Leds; interface PacketTimeStamp<T32khz,uint32_t>; interface Boot; interface SplitControl as RadioControl; interface Timer<TMilli> as RandomTimer; interface Random; interface TimeSyncPacket<T32khz,uint32_t>; interface LowPowerListening; } } implementation { enum { ACT_TESTFTSP = 0x11, }; message_t msg; bool locked = FALSE; test_ftsp_msg_t* report; event void Boot.booted() { call RadioControl.start(); } event message_t* Receive.receive(message_t* msgPtr, void* payload, uint8_t len) { if (!(call PacketTimeStamp.isValid(msgPtr))){ call Leds.led1Toggle(); } if (!locked && call PacketTimeStamp.isValid(msgPtr)) { radio_count_msg_t* rcm = (radio_count_msg_t*)call Packet.getPayload(msgPtr, sizeof(radio_count_msg_t)); if(call TimeSyncPacket.isValid(msgPtr)) { uint32_t rxTimestamp = call TimeSyncPacket.eventTime(msgPtr); report = (test_ftsp_msg_t*)call Packet.getPayload(&msg, sizeof(test_ftsp_msg_t)); report->src_addr = TOS_NODE_ID; report->counter = rcm->counter; report->local_rx_timestamp = rxTimestamp; report->is_synced = call GlobalTime.local2Global(&rxTimestamp); report->global_rx_timestamp = rxTimestamp; report->skew_times_1000000 = (uint32_t)call TimeSyncInfo.getSkew()*1000000UL; report->skew = call TimeSyncInfo.getSkew(); report->ftsp_root_addr = call TimeSyncInfo.getRootID(); report->ftsp_seq = call TimeSyncInfo.getSeqNum(); report->ftsp_table_entries = call TimeSyncInfo.getNumEntries(); report->localAverage = call TimeSyncInfo.getSyncPoint(); report->offsetAverage = call TimeSyncInfo.getOffset(); locked = TRUE; call RandomTimer.startOneShot(call Random.rand16() % (64)); } } return msgPtr; } event void RandomTimer.fired() { #ifdef LOW_POWER_LISTENING call LowPowerListening.setRemoteWakeupInterval(&msg, LPL_INTERVAL); #endif if(locked && (call AMSend.send(4000, &msg, sizeof(test_ftsp_msg_t)) == SUCCESS)){ call Leds.led2On(); } else { locked = FALSE; } } event void AMSend.sendDone(message_t* ptr, error_t success) { locked = FALSE; call Leds.led2Off(); return; } event void RadioControl.startDone(error_t err) { call LowPowerListening.setLocalWakeupInterval(LPL_INTERVAL); } event void RadioControl.stopDone(error_t error){} }
nesC
4
mtaghiza/tinyos-main-1
apps/tests/TestFtsp/FtspLpl/TestFtspC.nc
[ "BSD-3-Clause" ]
<!-- #docplaster --> <!-- #docregion ngfor, interpolation --> <h2>Products</h2> <div *ngFor="let product of products"> <!-- #enddocregion ngfor --> <h3> <!-- #enddocregion interpolation --> <a [title]="product.name + ' details'"> <!-- #docregion interpolation --> {{ product.name }} <!-- #enddocregion interpolation --> </a> <!-- #docregion interpolation --> </h3> <!-- #docregion ngfor --> </div> <!-- #enddocregion ngfor, interpolation -->
HTML
4
coreyscherbing/angular
aio/content/examples/getting-started/src/app/product-list/product-list.component.2.html
[ "MIT" ]
# Pointwise V18.2 Journal file - Fri Jan 11 15:34:18 2019 package require PWI_Glyph 2.18.2 pw::Application setUndoMaximumLevels 5 pw::Application reset pw::Application markUndoLevel {Journal Reset} pw::Application clearModified # domain params set Ly 3.036 set span 4.50000 # 2d or 3d set nz 1 #set nz 100 # mesh parameters (original) #set dx_in 3.0e-2 set dy_ini 1.0e-3 set dy_top 2.0e-3 #set dy_interface 0.1 #set dh1_end 0.05 #set dh2_beg 0.1 #set nh1 100 #set nmid 30 #set nh2 50 #set ny 30 #set n_inner 50 # more fine with same sep. layer refinement #set nz 20 #set nz 40 #set nz 60 #set nz 80 #set nz 100 set dx_in 1.5e-2 ###set dy_interface 0.025 #set dh1_end 0.05 #set dh1_end 0.04 #set dh2_beg 0.05 ###set nh1 120 ###set nmid 70 ###set ny 60 ###set bl_growth_inner 1.1 ###set bl_growth_outer 1.0 ###set n_inner 37 ###set n_outer 15 # piggy back on above with attempt to work with extra zeta in v2f set dy_interface 0.015 set ny 70 set bl_growth_inner 1.1 set n_inner 32 set bl_growth_outer 1.0 set n_outer 20 # ultra crs #set ERUN 20 #set dh1_end 0.1 #set dh2_beg 0.1333 #set nz 30 #set nh1 45 #set nmid 27 # crs set ERUN 10 set dh1_end 0.08 set dh2_beg 0.1 set nz 40 set nh1 60 set nmid 35 # mid #set ERUN 5 #set dh1_end 0.06 #set dh2_beg 0.075 #set nz 60 #set nh1 90 #set nmid 53 # fne #set ERUN 5 #set dh1_end 0.04 #set dh2_beg 0.05 #set nz 80 #set nh1 120 #set nmid 70 ### CREATE DOMAIN ### set _TMP(mode_1) [pw::Application begin GridImport] $_TMP(mode_1) initialize -strict -type {Segment} {/Users/mhenryde/exawind/cases/periodicHill/meshes/periodicHill.dat} $_TMP(mode_1) read $_TMP(mode_1) convert $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Import Grid} set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] $_TMP(PW_1) addPoint {0.0000000 3.036 0.0000000} $_TMP(PW_1) addPoint {4.5000000 3.036 0.0000000} set _CN(1) [pw::Connector create] $_CN(1) addSegment $_TMP(PW_1) unset _TMP(PW_1) $_CN(1) calculateDimension $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Create 2 Point Connector} set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) abort unset _TMP(mode_1) set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] set _CN(2) [pw::GridEntity getByName con-1] $_TMP(PW_1) addPoint [$_CN(1) getPosition -arc 0] $_TMP(PW_1) addPoint [$_CN(2) getPosition -arc 0] set _CN(3) [pw::Connector create] $_CN(3) addSegment $_TMP(PW_1) $_CN(3) calculateDimension unset _TMP(PW_1) $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Create Connector} set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] $_TMP(PW_1) addPoint [$_CN(2) getPosition -arc 1] $_TMP(PW_1) addPoint [$_CN(1) getPosition -arc 1] set _CN(4) [pw::Connector create] $_CN(4) addSegment $_TMP(PW_1) unset _TMP(PW_1) $_CN(4) calculateDimension $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Create 2 Point Connector} ### PARTITION CONNECTORS ### set _TMP(split_params) [list] lappend _TMP(split_params) [$_CN(2) getParameter -closest [pw::Application getXYZ [$_CN(2) closestPoint {1.99147 0 0}]]] set _TMP(PW_1) [$_CN(2) split $_TMP(split_params)] unset _TMP(PW_1) unset _TMP(split_params) pw::Application markUndoLevel {Split} set _CN(5) [pw::GridEntity getByName con-1-split-1] set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(5)] $_TMP(PW_1) do setDimension -resetDistribution $nh1 $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] set _CN(6) [pw::GridEntity getByName con-1-split-2] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(6)] $_TMP(PW_1) do setDimension -resetDistribution $nmid $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(3)] $_TMP(PW_1) do setDimension -resetDistribution $ny $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(4)] $_TMP(PW_1) do setDimension -resetDistribution $ny $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(1)] $_TMP(PW_1) do setDimensionFromSubConnectors -resetDistribution [list [list $_CN(5) 1] [list $_CN(6) 1]] $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(3)]] [[$_CN(3) getDistribution 1] getEndSpacing] setValue $dy_ini $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(3)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(4)]] [[$_CN(4) getDistribution 1] getBeginSpacing] setValue $dy_ini $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(4)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(5)]] [[$_CN(5) getDistribution 1] getBeginSpacing] setValue $dx_in $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(5)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(3)]] [[$_CN(3) getDistribution 1] getBeginSpacing] setValue $dy_top $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(3)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(4)]] [[$_CN(4) getDistribution 1] getEndSpacing] setValue $dy_top $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(4)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(5)]] [[$_CN(5) getDistribution 1] getEndSpacing] setValue $dh1_end $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(5)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(6)]] [[$_CN(6) getDistribution 1] getBeginSpacing] setValue $dh1_end $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(6)]] [[$_CN(6) getDistribution 1] getEndSpacing] setValue $dh2_beg $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(6)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(1)]] set _TMP(dist_1) [pw::DistributionGeneral create [list [list $_CN(5) 1] [list $_CN(6) 1]]] # Clear spacings so the distribution will scale properly $_TMP(dist_1) setBeginSpacing 0 $_TMP(dist_1) setEndSpacing 0 $_TMP(dist_1) setVariable [[$_CN(1) getDistribution 1] getVariable] $_CN(1) setDistribution -lockEnds 1 $_TMP(dist_1) unset _TMP(dist_1) $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(1)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} ### GROW BL ### pw::Entity delete [list $_CN(3)] pw::Application markUndoLevel {Delete} pw::Entity delete [list $_CN(4)] pw::Application markUndoLevel {Delete} set _TMP(PW_1) [pw::Connector join -reject _TMP(ignored) -keepDistribution [list $_CN(6) $_CN(5)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _TMP(mode_1) [pw::Application begin Create] set _CN(8) [pw::GridEntity getByName con-1-split-1] set _TMP(PW_1) [pw::Edge createFromConnectors [list $_CN(8)]] set _TMP(edge_1) [lindex $_TMP(PW_1) 0] unset _TMP(PW_1) set _DM(1) [pw::DomainStructured create] $_DM(1) addEdge $_TMP(edge_1) $_TMP(mode_1) end unset _TMP(mode_1) set _TMP(mode_1) [pw::Application begin ExtrusionSolver [list $_DM(1)]] $_TMP(mode_1) setKeepFailingStep true $_DM(1) setExtrusionBoundaryCondition Begin ConstantX $_DM(1) setExtrusionBoundaryConditionStepSuppression Begin 0 $_DM(1) setExtrusionBoundaryCondition End ConstantX $_DM(1) setExtrusionBoundaryConditionStepSuppression End 0 $_DM(1) setExtrusionSolverAttribute SpacingGrowthFactor $bl_growth_inner $_DM(1) setExtrusionSolverAttribute NormalInitialStepSize $dy_ini $_DM(1) setExtrusionSolverAttribute NormalKinseyBarthSmoothing 0.5 $_DM(1) setExtrusionSolverAttribute NormalVolumeSmoothing 0.0 $_TMP(mode_1) run $n_inner $_DM(1) setExtrusionSolverAttribute SpacingGrowthFactor $bl_growth_outer $_TMP(mode_1) run $n_outer $_TMP(mode_1) end unset _TMP(mode_1) unset _TMP(edge_1) pw::Application markUndoLevel {Extrude, Normal} # copy distro again to top set _TMP(mode_1) [pw::Application begin Modify [list $_CN(1)]] set _CN(9) [pw::GridEntity getByName con-4] set _TMP(dist_1) [pw::DistributionGeneral create [list [list $_CN(9) 1]]] $_TMP(dist_1) reverse # Clear spacings so the distribution will scale properly $_TMP(dist_1) setBeginSpacing 0 $_TMP(dist_1) setEndSpacing 0 $_TMP(dist_1) setVariable [[$_CN(1) getDistribution 1] getVariable] $_CN(1) setDistribution -lockEnds 1 $_TMP(dist_1) unset _TMP(dist_1) $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(1)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} ### 2D MESH ### set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] set _CN(9) [pw::GridEntity getByName con-4] set _CN(10) [pw::GridEntity getByName con-5] $_TMP(PW_1) addPoint [$_CN(1) getPosition -arc 0] $_TMP(PW_1) addPoint [$_CN(9) getPosition -arc 1] set _CN(11) [pw::Connector create] $_CN(11) addSegment $_TMP(PW_1) unset _TMP(PW_1) $_CN(11) calculateDimension $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Create 2 Point Connector} set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] set _CN(12) [pw::GridEntity getByName con-3] $_TMP(PW_1) addPoint [$_CN(1) getPosition -arc 1] $_TMP(PW_1) addPoint [$_CN(12) getPosition -arc 1] set _CN(13) [pw::Connector create] $_CN(13) addSegment $_TMP(PW_1) unset _TMP(PW_1) $_CN(13) calculateDimension $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Create 2 Point Connector} set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::SegmentSpline create] $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) abort unset _TMP(mode_1) set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(11)] $_TMP(PW_1) do setDimension -resetDistribution $ny $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] set _TMP(PW_1) [pw::Collection create] $_TMP(PW_1) set [list $_CN(13)] $_TMP(PW_1) do setDimension -resetDistribution $ny $_TMP(PW_1) delete unset _TMP(PW_1) $_TMP(mode_1) balance -resetGeneralDistributions $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Dimension] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Dimension} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(11)]] [[$_CN(11) getDistribution 1] getEndSpacing] setValue $dy_interface $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(11)]] [[$_CN(11) getDistribution 1] getBeginSpacing] setValue $dy_top $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(11)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(13)]] [[$_CN(13) getDistribution 1] getEndSpacing] setValue $dy_interface $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(13)]] [[$_CN(13) getDistribution 1] getBeginSpacing] setValue $dy_top $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Modify [list $_CN(13)]] $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Distribute} set _TMP(mode_1) [pw::Application begin Create] set _TMP(edge_1) [pw::Edge create] $_TMP(edge_1) addConnector $_CN(9) set _TMP(edge_2) [pw::Edge create] $_TMP(edge_2) addConnector $_CN(11) set _TMP(edge_3) [pw::Edge create] $_TMP(edge_3) addConnector $_CN(1) set _TMP(edge_4) [pw::Edge create] $_TMP(edge_4) addConnector $_CN(13) set _DM(2) [pw::DomainStructured create] $_DM(2) addEdge $_TMP(edge_1) $_DM(2) addEdge $_TMP(edge_2) $_DM(2) addEdge $_TMP(edge_3) $_DM(2) addEdge $_TMP(edge_4) unset _TMP(edge_4) unset _TMP(edge_3) unset _TMP(edge_2) unset _TMP(edge_1) $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Assemble Domain} set _TMP(mode_1) [pw::Application begin Create] $_TMP(mode_1) abort unset _TMP(mode_1) ### SMOOTH INTERFACE ### set _TMP(face_1) [pw::FaceStructured create] $_TMP(face_1) delete unset _TMP(face_1) set _TMP(PW_1) [pw::DomainStructured join -reject _TMP(ignored) [list $_DM(2) $_DM(1)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _TMP(PW_1) [pw::Connector join -reject _TMP(ignored) -keepDistribution [list $_CN(11) $_CN(10)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _TMP(PW_1) [pw::Connector join -reject _TMP(ignored) -keepDistribution [list $_CN(12) $_CN(13)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _DM(3) [pw::GridEntity getByName dom-1] set _TMP(mode_1) [pw::Application begin EllipticSolver [list $_DM(3)]] set _TMP(SUB_1) [$_DM(3) getSubGrid 1] set _TMP(SUB_2) [$_DM(3) getSubGrid 2] set _TMP(ENTS) [pw::Collection create] $_TMP(ENTS) set [list $_DM(3)] $_DM(3) setEllipticSolverAttribute InteriorControl Fixed $_TMP(ENTS) delete unset _TMP(ENTS) $_TMP(mode_1) setActiveSubGrids $_DM(3) [list] $_TMP(mode_1) run $ERUN $_TMP(mode_1) end unset _TMP(mode_1) unset _TMP(SUB_2) unset _TMP(SUB_1) pw::Application markUndoLevel {Solve} ### MIRROR AND JOIN pw::Application clearClipboard pw::Application setClipboard [list $_DM(2)] pw::Application markUndoLevel {Copy} set _TMP(mode_1) [pw::Application begin Paste] set _TMP(PW_1) [$_TMP(mode_1) getEntities] set _TMP(mode_2) [pw::Application begin Modify $_TMP(PW_1)] pw::Entity transform [pwu::Transform mirroring {1 0 0} 4.5] [$_TMP(mode_2) getEntities] $_TMP(mode_2) end unset _TMP(mode_2) $_TMP(mode_1) end unset _TMP(mode_1) pw::Application markUndoLevel {Paste} set _DM(3) [pw::GridEntity getByName dom-1] set _DM(4) [pw::GridEntity getByName dom-2] set _TMP(face_1) [pw::FaceStructured create] $_TMP(face_1) delete unset _TMP(face_1) set _TMP(PW_1) [pw::DomainStructured join -reject _TMP(ignored) [list $_DM(3) $_DM(4)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _CN(12) [pw::GridEntity getByName con-7] set _TMP(PW_1) [pw::Connector join -reject _TMP(ignored) -keepDistribution [list $_CN(12) $_CN(1)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} set _CN(13) [pw::GridEntity getByName con-1-split-2] set _TMP(PW_1) [pw::Connector join -reject _TMP(ignored) -keepDistribution [list $_CN(13) $_CN(6)]] unset _TMP(ignored) unset _TMP(PW_1) pw::Application markUndoLevel {Join} ### EXTRUDE TO 3D ### set _TMP(mode_1) [pw::Application begin Create] set _TMP(PW_1) [pw::FaceStructured createFromDomains [list $_DM(2)]] set _TMP(face_1) [lindex $_TMP(PW_1) 0] unset _TMP(PW_1) set _BL(1) [pw::BlockStructured create] $_BL(1) addFace $_TMP(face_1) $_TMP(mode_1) end unset _TMP(mode_1) set _TMP(mode_1) [pw::Application begin ExtrusionSolver [list $_BL(1)]] $_TMP(mode_1) setKeepFailingStep true $_BL(1) setExtrusionSolverAttribute Mode Translate $_BL(1) setExtrusionSolverAttribute TranslateDirection {1 0 0} $_BL(1) setExtrusionSolverAttribute TranslateDirection {0 0 1} $_BL(1) setExtrusionSolverAttribute TranslateDistance $span $_TMP(mode_1) run $nz $_TMP(mode_1) end unset _TMP(mode_1) unset _TMP(face_1) pw::Application markUndoLevel {Extrude, Translate} pw::Application setCAESolver {EXODUS II} 3 pw::Application markUndoLevel {Set Dimension 3D} ### INTERIOR AND BOUNDARY CONDITIONS # Appended by Pointwise V18.2 - Wed Jan 29 07:40:21 2020 set _TMP(PW_1) [pw::VolumeCondition create] pw::Application markUndoLevel {Create VC} $_TMP(PW_1) setName "interior" pw::Application markUndoLevel {Name VC} $_TMP(PW_1) apply [list $_BL(1)] pw::Application markUndoLevel {Set VC} unset _TMP(PW_1) set _DM(3) [pw::GridEntity getByName dom-2] set _DM(4) [pw::GridEntity getByName dom-3] set _DM(5) [pw::GridEntity getByName dom-4] set _DM(6) [pw::GridEntity getByName dom-5] set _DM(7) [pw::GridEntity getByName dom-6] set _TMP(PW_1) [pw::BoundaryCondition getByName {Unspecified}] set _TMP(PW_2) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_3) [pw::BoundaryCondition getByName {bc-2}] unset _TMP(PW_2) $_TMP(PW_3) setName {inlet} pw::Application markUndoLevel {Name BC} $_TMP(PW_3) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} set _TMP(PW_4) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_5) [pw::BoundaryCondition getByName {bc-3}] unset _TMP(PW_4) $_TMP(PW_5) setName {outlet} pw::Application markUndoLevel {Name BC} $_TMP(PW_5) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} set _TMP(PW_6) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_7) [pw::BoundaryCondition getByName {bc-4}] unset _TMP(PW_6) $_TMP(PW_7) setName {front} pw::Application markUndoLevel {Name BC} set _TMP(PW_8) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_9) [pw::BoundaryCondition getByName {bc-5}] unset _TMP(PW_8) $_TMP(PW_9) setName {back} pw::Application markUndoLevel {Name BC} $_TMP(PW_7) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} $_TMP(PW_9) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} set _TMP(PW_10) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_11) [pw::BoundaryCondition getByName {bc-6}] unset _TMP(PW_10) $_TMP(PW_11) setName {top} pw::Application markUndoLevel {Name BC} $_TMP(PW_11) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} set _TMP(PW_12) [pw::BoundaryCondition create] pw::Application markUndoLevel {Create BC} set _TMP(PW_13) [pw::BoundaryCondition getByName {bc-7}] unset _TMP(PW_12) $_TMP(PW_13) setName {wall} pw::Application markUndoLevel {Name BC} $_TMP(PW_13) setPhysicalType -usage CAE {Side Set} pw::Application markUndoLevel {Change BC Type} $_TMP(PW_7) apply [list [list $_BL(1) $_DM(7)]] pw::Application markUndoLevel {Set BC} $_TMP(PW_9) apply [list [list $_BL(1) $_DM(2)]] pw::Application markUndoLevel {Set BC} $_TMP(PW_3) apply [list [list $_BL(1) $_DM(6)]] pw::Application markUndoLevel {Set BC} $_TMP(PW_5) apply [list [list $_BL(1) $_DM(4)]] pw::Application markUndoLevel {Set BC} $_TMP(PW_13) apply [list [list $_BL(1) $_DM(3)]] pw::Application markUndoLevel {Set BC} $_TMP(PW_11) apply [list [list $_BL(1) $_DM(5)]] pw::Application markUndoLevel {Set BC} unset _TMP(PW_1) unset _TMP(PW_3) unset _TMP(PW_5) unset _TMP(PW_7) unset _TMP(PW_9) unset _TMP(PW_11) unset _TMP(PW_13) ### SAVE set _TMP(mode_1) [pw::Application begin CaeExport [pw::Entity sort [list $_BL(1)]]] $_TMP(mode_1) initialize -strict -type CAE {/Users/mhenryde/exawind/cases/periodicHill/meshes/periodicHill.exo} $_TMP(mode_1) verify $_TMP(mode_1) write $_TMP(mode_1) end unset _TMP(mode_1)
Glyph
2
neilmatula/iddes
periodicHill/meshes/periodicHill.glf
[ "BSD-3-Clause" ]
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z"/></svg>
SVG
1
good-gym/material-ui
packages/material-ui-icons/material-icons/chrome_reader_mode_sharp_24px.svg
[ "MIT" ]
'' ****************************************************************************** '' * MD22 Object * '' * James Burrows May 2006 * '' * Version 1.1 * '' ****************************************************************************** '' '' Demo's the MD22 i2c Motor Controller '' '' www.robotelectronics.co.uk '' '' this object provides the PUBLIC functions: '' -> Init - sets up the address and inits sub-objects such '' -> geti2cError - get the i2c Error from the i2cObject '' -> start - restart '' -> stop - stop '' -> getSoftwareRev - read the device revision '' -> SetMode - set the command mode. - see the constants below '' -> readMode - read the command mode '' -> SetSpeed - set the motors to drive '' '' this object provides the PRIVATE functions: '' -> None '' '' this object uses the following sub OBJECTS: '' -> i2cObject '' '' Revision History: '' -> V1 - Release '' -> V1.1 - Updated to allow i2cSCL line driving pass-true to i2cObject '' '' Default i2c address %1011_0000 CON ' MD22 registers _MD22_Mode = 0 _MD22_LSpeed = 1 _MD22_RSpeed = 2 _MD22_Accel = 3 _MD22_SwRev = 7 ' MD22 Mode Constants _MD22_Mode0 = 0 ' Default. Motor Speed is Reverse (0) to stop (128) forward (255) _MD22_Mode1 = 1 ' Motor Speed is Reverse (-128) to stop (0) forward (127) _MD22_Mode2 = 2 ' speed control both motors speed. Speed2 then becomes the turn value (type 1). _MD22_Mode3 = 3 ' 3 is similar to Mode 2, except that the speed registers are interpreted as signed values. _MD22_Mode4 = 4 ' (New from version 9) Alternate method of turning (type 2), the turn value being able to introduce power to the system. _MD22_Mode5 = 5 ' (New from version 9) Alternate method of turning (type 2), the turn value being able to introduce power to the system. VAR long MD22_Address long started OBJ i2cObject : "i2cObject" PUB Init(_deviceAddress, _deviceMode, _i2cSDA, _i2cSCL,_driveSCLLine): okay ' initialize the object MD22_Address := _deviceAddress i2cObject.init(_i2cSDA,_i2cSCL,_driveSCLLine) ' start okay := start return okay PUB geti2cError : errorCode return i2cObject.getError PUB start : okay ' start the object if started == false if i2cObject.devicePresent(MD22_Address) ' init the MD22 Mode reg. if setMode(MD22_Address) == i2cObject#_i2cACK ' return true started := true else started := false return started PUB stop if started == true started := false PUB isStarted : result return started PUB getSoftwareRev : revision ' return the Software Revision if started == true revision := i2cObject.readLocation(MD22_Address,_MD22_SwRev,8,8) return revision PUB SetMode(md22Mode) : ackbit ' set the MD22 Mode Register ackbit := 0 if started == true i2cObject.i2cStart ackbit := (ackbit << 1) | i2cObject.i2cWrite(MD22_Address | 0,8) ackbit := (ackbit << 1) | i2cObject.i2cWrite(_MD22_Mode,8) ackbit := (ackbit << 1) | i2cObject.i2cWrite(md22Mode,8) i2cObject.i2cStop return ackbit PUB readMode : modeReg ' read the MD22 Mode Reg if started == true i2cObject.i2cStart i2cObject.i2cwrite(%1011_0000,8) i2cObject.i2cWrite(7,8) i2cObject.i2cStart i2cObject.i2cwrite(%1011_0001,8) modeReg := i2cObject.i2cRead(i2cObject#_i2cNAK) i2cObject.i2cStop return modeReg PUB SetSpeed(SpeedL, SpeedR) : ackbit ' set the MD22 Motor Speed (L & R) ackbit := 0 if started == true i2cObject.i2cStart ackbit := (ackbit << 1) | i2cObject.i2cWrite(MD22_Address | 0,8) ackbit := (ackbit << 1) | i2cObject.i2cWrite(_MD22_LSpeed,8) ackbit := (ackbit << 1) | i2cObject.i2cWrite(SpeedL,8) ackbit := (ackbit << 1) | i2cObject.i2cWrite(SpeedR,8) i2cObject.i2cStop return ackbit
Propeller Spin
5
deets/propeller
libraries/community/p1/All/i2cObject/MD22Object.spin
[ "MIT" ]
(defmodule clojang (export all)) (include-lib "clj/include/compose.lfe") (defun noop () 'noop)
LFE
3
clojusc/clojang
src/lfe/clojang.lfe
[ "Apache-2.0" ]
# JHBuild Aliases # Base alias jh='jhbuild' # Build alias jhb='jhbuild build' alias jhbo='jhbuild buildone' # Checks alias jhckb='jhbuild checkbranches' alias jhckm='jhbuild checkmodulesets' # Info & List alias jhi='jhbuild info' alias jhl='jhbuild list' # Clean alias jhc='jhbuild clean' alias jhco='jhbuild cleanone' # Make alias jhm='jhbuild make' # Run alias jhr='jhbuild run' # Depends alias jhrd='jhbuild rdepends' alias jhsd='jhbuild sysdeps' # Update alias jhu='jhbuild update' alias jhuo='jhbuild updateone' # Uninstall alias jhun='jhbuild uninstall' # Shell alias jhsh='jhbuild shell' # Tinderbox alias jht='jhbuild tinderbox'
Shell
3
chensanle/ohmyzsh
plugins/jhbuild/jhbuild.plugin.zsh
[ "MIT" ]
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/core/data/name_utils.h" #include "tensorflow/core/framework/dataset.h" #include "tensorflow/core/framework/tensor_util.h" #include "tensorflow/core/platform/stringprintf.h" namespace tensorflow { namespace data { namespace experimental { namespace { inline int64_t CeilDiv(int64_t dividend, int64_t divisor) { return (dividend - 1 + divisor) / divisor; } constexpr const char* const kDatasetTypeV1 = "Rebatch"; constexpr const char* const kDatasetTypeV2 = "RebatchV2"; class RebatchDatasetOp : public UnaryDatasetOpKernel { public: explicit RebatchDatasetOp(OpKernelConstruction* ctx) : UnaryDatasetOpKernel(ctx) { OP_REQUIRES_OK(ctx, ctx->GetAttr("output_types", &output_types_)); OP_REQUIRES_OK(ctx, ctx->GetAttr("output_shapes", &output_shapes_)); } protected: void MakeDataset(OpKernelContext* ctx, DatasetBase* input, DatasetBase** output) override { int64_t num_replicas; OP_REQUIRES_OK(ctx, ParseScalarArgument(ctx, "num_replicas", &num_replicas)); OP_REQUIRES( ctx, num_replicas > 0, errors::InvalidArgument("num_replicas must be greater than zero.")); *output = new Dataset(ctx, input, num_replicas, output_types_, output_shapes_); } private: class Dataset : public DatasetBase { public: Dataset(OpKernelContext* ctx, const DatasetBase* input, const int64_t num_replicas, const DataTypeVector& output_types, const std::vector<PartialTensorShape>& output_shapes) : DatasetBase(DatasetContext(ctx)), input_(input), num_replicas_(num_replicas), output_types_(output_types), output_shapes_(output_shapes), traceme_metadata_( {{"num_replicas", strings::Printf("%lld", static_cast<long long>( num_replicas))}}) { input_->Ref(); } ~Dataset() override { input_->Unref(); } std::unique_ptr<IteratorBase> MakeIteratorInternal( const string& prefix) const override { name_utils::IteratorPrefixParams params; return absl::make_unique<Iterator>(Iterator::Params{ this, name_utils::IteratorPrefix(kDatasetTypeV1, prefix, params)}); } const DataTypeVector& output_dtypes() const override { return output_types_; } const std::vector<PartialTensorShape>& output_shapes() const override { return output_shapes_; } string DebugString() const override { name_utils::DatasetDebugStringParams params; params.set_args(num_replicas_); return name_utils::DatasetDebugString(kDatasetTypeV1, params); } Status InputDatasets( std::vector<const DatasetBase*>* inputs) const override { inputs->push_back(input_); return Status::OK(); } Status CheckExternalState() const override { return input_->CheckExternalState(); } protected: Status AsGraphDefInternal(SerializationContext* ctx, DatasetGraphDefBuilder* b, Node** output) const override { Node* input_graph_node = nullptr; TF_RETURN_IF_ERROR(b->AddInputDataset(ctx, input_, &input_graph_node)); Node* num_replicas = nullptr; TF_RETURN_IF_ERROR(b->AddScalar(num_replicas_, &num_replicas)); TF_RETURN_IF_ERROR( b->AddDataset(this, {input_graph_node, num_replicas}, output)); return Status::OK(); } private: class Iterator : public DatasetIterator<Dataset> { public: explicit Iterator(const Params& params) : DatasetIterator<Dataset>(params) {} ~Iterator() override {} Status Initialize(IteratorContext* ctx) override { return dataset()->input_->MakeIterator(ctx, this, prefix(), &input_impl_); } Status GetNextInternal(IteratorContext* ctx, std::vector<Tensor>* out_tensors, bool* end_of_sequence) override { mutex_lock l(mu_); *end_of_sequence = false; if (slice_number_ % dataset()->num_replicas_ == 0) { input_descriptors_.clear(); std::vector<Tensor> input_tensors; TF_RETURN_IF_ERROR( input_impl_->GetNext(ctx, &input_tensors, end_of_sequence)); if (*end_of_sequence) { return Status::OK(); } input_descriptors_.reserve(input_tensors.size()); for (int i = 0; i < input_tensors.size(); ++i) { if (input_tensors[i].dims() == 0) { return errors::InvalidArgument( "Cannot rebatch dataset: All components must have at least " "one dimension. Perhaps your input dataset is not batched? " "Component ", i, " is scalar."); } int64_t original_batch_dim = input_tensors[i].dim_size(0); int64_t interval = CeilDiv(original_batch_dim, dataset()->num_replicas_); input_descriptors_.push_back( {std::move(input_tensors[i]), original_batch_dim, interval}); } } out_tensors->reserve(input_descriptors_.size()); // We slice each component independently because they may have // different batch dimensions. for (const auto& input_desc : input_descriptors_) { int64_t start = input_desc.interval * slice_number_; int64_t end = std::min(start + input_desc.interval, input_desc.original_batch_dim); if (start >= end) { // We can get here if ceil(original_batch_dim_ / new batch dim) < // num_replicas_, i.e. the batch isn't big enough to distribute // over num replicas. In this case, we return empty tensors for // the remaining iterations that correspond to this batch. start = end; } Tensor slice = input_desc.whole_tensor.Slice(start, end); if (slice.IsAligned()) { out_tensors->push_back(std::move(slice)); } else { out_tensors->push_back(tensor::DeepCopy(std::move(slice))); } } slice_number_ = (slice_number_ + 1) % dataset()->num_replicas_; return Status::OK(); } protected: Status SaveInternal(SerializationContext* ctx, IteratorStateWriter* writer) override { mutex_lock l(mu_); if (!input_impl_) { TF_RETURN_IF_ERROR( writer->WriteScalar(full_name("input_impl_empty"), "")); } else { TF_RETURN_IF_ERROR(SaveInput(ctx, writer, input_impl_)); } TF_RETURN_IF_ERROR( writer->WriteScalar(full_name("slice_number"), slice_number_)); if (slice_number_ % dataset()->num_replicas_ != 0) { // Save state of input tensors. for (int i = 0; i < input_descriptors_.size(); ++i) { TF_RETURN_IF_ERROR(writer->WriteTensor( full_name(strings::StrCat("tensors[", i, "]")), input_descriptors_[i].whole_tensor)); } } return Status::OK(); } Status RestoreInternal(IteratorContext* ctx, IteratorStateReader* reader) override { mutex_lock l(mu_); if (!reader->Contains(full_name("input_impl_empty"))) { TF_RETURN_IF_ERROR(RestoreInput(ctx, reader, input_impl_)); } else { input_impl_.reset(); } TF_RETURN_IF_ERROR( reader->ReadScalar(full_name("slice_number"), &slice_number_)); input_descriptors_.clear(); input_descriptors_.resize(dataset()->output_dtypes().size()); if (slice_number_ % dataset()->num_replicas_ != 0) { for (int i = 0; i < input_descriptors_.size(); ++i) { TF_RETURN_IF_ERROR(reader->ReadTensor( ctx->flr(), full_name(strings::StrCat("tensors[", i, "]")), &input_descriptors_[i].whole_tensor)); input_descriptors_[i].original_batch_dim = input_descriptors_[i].whole_tensor.dim_size(0); input_descriptors_[i].interval = CeilDiv(input_descriptors_[i].original_batch_dim, dataset()->num_replicas_); } } return Status::OK(); } TraceMeMetadata GetTraceMeMetadata() const override { return dataset()->traceme_metadata_; } private: // Describes one component of the input. struct InputDescriptor { InputDescriptor() {} InputDescriptor(Tensor&& whole_tensor, int64_t original_batch_dim, int64_t interval) : whole_tensor(std::move(whole_tensor)), original_batch_dim(original_batch_dim), interval(interval) {} Tensor whole_tensor; int64_t original_batch_dim; int64_t interval; }; mutex mu_; std::unique_ptr<IteratorBase> input_impl_; std::vector<InputDescriptor> input_descriptors_ TF_GUARDED_BY(mu_); int64_t slice_number_ TF_GUARDED_BY(mu_) = 0; }; const DatasetBase* const input_; const int64_t num_replicas_; const DataTypeVector output_types_; const std::vector<PartialTensorShape> output_shapes_; const TraceMeMetadata traceme_metadata_; }; DataTypeVector output_types_; std::vector<PartialTensorShape> output_shapes_; }; // This dataset rebatches its input batches into batches of different size(s). // // This differs from RebatchDatasetOp. Namely, RebatchDatasetV2 rebatches // incoming batches into batches whose new sizes are specified by the // `batch_sizes` argument, while RebatchDataset splits its batches based // on the (dynamic) input batch size and the given number of splits to make (its // `num_replicas` argument). When used in tf.distribute, this allows // RebatchDataset to split batches more correctly when the splits are // distributed across multiple workers and replicas. class RebatchDatasetV2Op : public UnaryDatasetOpKernel { public: explicit RebatchDatasetV2Op(OpKernelConstruction* ctx) : UnaryDatasetOpKernel(ctx) { OP_REQUIRES_OK(ctx, ctx->GetAttr("output_types", &output_types_)); OP_REQUIRES_OK(ctx, ctx->GetAttr("output_shapes", &output_shapes_)); } protected: void MakeDataset(OpKernelContext* ctx, DatasetBase* input, DatasetBase** output) override { const Tensor* batch_sizes_tensor; OP_REQUIRES_OK(ctx, ctx->input("batch_sizes", &batch_sizes_tensor)); OP_REQUIRES( ctx, batch_sizes_tensor->dims() <= 1, errors::InvalidArgument("`batch_sizes` must be a scalar or a vector.")); std::vector<int64_t> batch_sizes; batch_sizes.reserve(batch_sizes_tensor->NumElements()); for (int i = 0; i < batch_sizes_tensor->NumElements(); ++i) { batch_sizes.push_back(batch_sizes_tensor->flat<int64_t>()(i)); } bool drop_remainder; OP_REQUIRES_OK( ctx, ParseScalarArgument<bool>(ctx, "drop_remainder", &drop_remainder)); *output = new Dataset(ctx, input, std::move(batch_sizes), drop_remainder, output_types_, output_shapes_); } private: class Dataset : public DatasetBase { public: Dataset(OpKernelContext* ctx, const DatasetBase* input, std::vector<int64_t>&& batch_sizes, bool drop_remainder, const DataTypeVector& output_types, const std::vector<PartialTensorShape>& output_shapes) : DatasetBase(DatasetContext(ctx)), input_(input), batch_sizes_(std::move(batch_sizes)), drop_remainder_(drop_remainder), output_types_(output_types), output_shapes_(output_shapes), traceme_metadata_( {{"batch_sizes", absl::StrJoin(batch_sizes, ",")}}) { input_->Ref(); } ~Dataset() override { input_->Unref(); } std::unique_ptr<IteratorBase> MakeIteratorInternal( const string& prefix) const override { name_utils::IteratorPrefixParams params; return absl::make_unique<Iterator>(Iterator::Params{ this, name_utils::IteratorPrefix(kDatasetTypeV2, prefix, params)}); } const DataTypeVector& output_dtypes() const override { return output_types_; } const std::vector<PartialTensorShape>& output_shapes() const override { return output_shapes_; } string DebugString() const override { return name_utils::DatasetDebugString(kDatasetTypeV2); } Status InputDatasets( std::vector<const DatasetBase*>* inputs) const override { inputs->push_back(input_); return Status::OK(); } Status CheckExternalState() const override { return input_->CheckExternalState(); } protected: Status AsGraphDefInternal(SerializationContext* ctx, DatasetGraphDefBuilder* b, Node** output) const override { Node* input_graph_node = nullptr; TF_RETURN_IF_ERROR(b->AddInputDataset(ctx, input_, &input_graph_node)); Node* batch_sizes = nullptr; TF_RETURN_IF_ERROR(b->AddVector(batch_sizes_, &batch_sizes)); Node* drop_remainder = nullptr; TF_RETURN_IF_ERROR(b->AddScalar(drop_remainder_, &drop_remainder)); TF_RETURN_IF_ERROR(b->AddDataset( this, {input_graph_node, batch_sizes, drop_remainder}, output)); return Status::OK(); } private: class Iterator : public DatasetIterator<Dataset> { public: explicit Iterator(const Params& params) : DatasetIterator<Dataset>(params) {} ~Iterator() override {} Status Initialize(IteratorContext* ctx) override { return dataset()->input_->MakeIterator(ctx, this, prefix(), &input_impl_); } Status GetNextInternal(IteratorContext* ctx, std::vector<Tensor>* out_tensors, bool* end_of_sequence) override { mutex_lock l(mu_); if (end_of_sequence_) { *end_of_sequence = true; return Status::OK(); } *end_of_sequence = false; auto desired_batch_size = dataset()->batch_sizes_[batch_sizes_index_]; // Tracks the size of the current batch as it's built up, possibly from // different input tensors. int64_t batch_size = 0; std::vector<std::vector<Tensor>> slices_to_concatenate; // Get slices from input tensors until they make up the whole batch // size or we run out of input. while (batch_size < desired_batch_size) { if (offset_ == -1) { // Get new input tensors. tensors_.clear(); TF_RETURN_IF_ERROR( input_impl_->GetNext(ctx, &tensors_, &end_of_sequence_)); if (end_of_sequence_) { // Break and return partial batch, if any. break; } TF_RETURN_IF_ERROR(ValidateInputTensors()); offset_ = 0; } int64_t slice_end = std::min(offset_ + desired_batch_size - batch_size, tensors_[0].dim_size(0)); std::vector<Tensor> slices; slices.reserve(tensors_.size()); for (const auto& tensor : tensors_) { slices.push_back(tensor.Slice(offset_, slice_end)); } slices_to_concatenate.push_back(std::move(slices)); batch_size += (slice_end - offset_); offset_ = slice_end; if (offset_ == tensors_[0].dim_size(0)) { // Exhausted current input tensors, reset. offset_ = -1; } } batch_sizes_index_++; batch_sizes_index_ %= dataset()->batch_sizes_.size(); // Return end_of_sequence if GetNext is expected to produce a non-empty // batch and there are no more inputs, or if drop_remainder is true and // we can't make a full batch. if ((batch_size == 0 && desired_batch_size > 0) || (dataset()->drop_remainder_ && batch_size < desired_batch_size)) { DCHECK(end_of_sequence_); *end_of_sequence = true; return Status::OK(); } const size_t num_components = dataset()->output_dtypes().size(); out_tensors->reserve(num_components); // Special case: desired batch size == 0. This may be the case when, // with distribution strategies, one of replicas expects an empty batch // so that the global batch size adds up correctly. if (desired_batch_size == 0) { DCHECK_EQ(batch_size, 0); DCHECK_EQ(slices_to_concatenate.size(), 0); for (int i = 0; i < dataset()->output_dtypes().size(); ++i) { if (dataset()->output_shapes()[i].unknown_rank()) { // For unknown rank tensors, we just create a empty Tensor since // it doesn't matter what shape it is. out_tensors->push_back(Tensor(dataset()->output_dtypes()[i])); } else { auto dim_sizes = dataset()->output_shapes()[i].dim_sizes(); // The output batch size is always zero since the desired batch // size is zero. dim_sizes[0] = 0; // Handle unknown dimensions by setting any unknown dimensions to // zero since there isn't any data anyway. for (int j = 1; j < dim_sizes.size(); ++j) { if (dim_sizes[j] == -1) dim_sizes[j] = 0; } TensorShape tensor_shape(dim_sizes); out_tensors->push_back( Tensor(dataset()->output_dtypes()[i], tensor_shape)); } } return Status::OK(); } // Special case: when there's only one slice, we return the slice // directly where possible instead of copying the tensor data. if (slices_to_concatenate.size() == 1) { auto tensors = std::move(slices_to_concatenate[0]); for (size_t i = 0; i < num_components; ++i) { // If the slice is aligned, we return it directly. if (!tensors[i].IsAligned()) { tensors[i] = tensor::DeepCopy(std::move(tensors[i])); } } *out_tensors = std::move(tensors); return Status::OK(); } // For each component, concatenate slices into one tensor. for (size_t i = 0; i < num_components; ++i) { TensorShape component_shape({batch_size}); TensorShape remaining_shape = slices_to_concatenate[0][i].shape(); remaining_shape.RemoveDim(0); component_shape.AppendShape(remaining_shape); out_tensors->emplace_back(ctx->allocator({}), dataset()->output_dtypes()[i], component_shape); if (!out_tensors->back().IsInitialized()) { return errors::ResourceExhausted( "Failed to allocate memory for the batch of component ", i); } int64_t dst_offset = 0; for (size_t j = 0; j < slices_to_concatenate.size(); ++j) { auto num_slices = slices_to_concatenate[j][i].shape().dim_size(0); TF_RETURN_IF_ERROR(batch_util::CopyContiguousSlices( slices_to_concatenate[j][i], 0, dst_offset, num_slices, &(*out_tensors)[i])); dst_offset += num_slices; } } return Status::OK(); } protected: Status SaveInternal(SerializationContext* ctx, IteratorStateWriter* writer) override { mutex_lock l(mu_); if (!input_impl_) { TF_RETURN_IF_ERROR( writer->WriteScalar(full_name("input_impl_empty"), "")); } else { TF_RETURN_IF_ERROR(SaveInput(ctx, writer, input_impl_)); } TF_RETURN_IF_ERROR(writer->WriteScalar(full_name("batch_sizes_index"), batch_sizes_index_)); TF_RETURN_IF_ERROR(writer->WriteScalar(full_name("offset"), offset_)); if (offset_ != -1) { for (int i = 0; i < tensors_.size(); ++i) { TF_RETURN_IF_ERROR(writer->WriteTensor( full_name(strings::StrCat("tensors[", i, "]")), tensors_[i])); } } return Status::OK(); } Status RestoreInternal(IteratorContext* ctx, IteratorStateReader* reader) override { mutex_lock l(mu_); if (!reader->Contains(full_name("input_impl_empty"))) { TF_RETURN_IF_ERROR(RestoreInput(ctx, reader, input_impl_)); } else { input_impl_.reset(); } TF_RETURN_IF_ERROR(reader->ReadScalar(full_name("batch_sizes_index"), &batch_sizes_index_)); TF_RETURN_IF_ERROR(reader->ReadScalar(full_name("offset"), &offset_)); tensors_.clear(); if (offset_ != -1) { tensors_.resize(dataset()->output_dtypes().size()); for (int i = 0; i < tensors_.size(); ++i) { TF_RETURN_IF_ERROR(reader->ReadTensor( ctx->flr(), full_name(strings::StrCat("tensors[", i, "]")), &tensors_[i])); } } return Status::OK(); } TraceMeMetadata GetTraceMeMetadata() const override { return dataset()->traceme_metadata_; } private: Status ValidateInputTensors() TF_EXCLUSIVE_LOCKS_REQUIRED(mu_) { for (size_t i = 0; i < tensors_.size(); ++i) { if (tensors_[i].dims() == 0) { return errors::InvalidArgument( "Input element must have a non-scalar value in each " "component."); } if (tensors_[i].dim_size(0) != tensors_[0].dim_size(0)) { return errors::InvalidArgument( "Input element must have the same batch size in each " "component. Component 0 had size ", tensors_[0].dim_size(0), " but component ", i, " had size, ", tensors_[i].dim_size(0), "."); } } return Status::OK(); } mutex mu_; std::unique_ptr<IteratorBase> input_impl_; // Whether we have reached the end of the input. bool end_of_sequence_ TF_GUARDED_BY(mu_) = false; // Represents the current input tensor(s). std::vector<Tensor> tensors_ TF_GUARDED_BY(mu_); // Represents the offset into the current input tensor(s). // An offset of -1 indicates that there is no data left in the current // slice. int64_t offset_ TF_GUARDED_BY(mu_) = -1; // Represents the current index into the batch_sizes list. int64_t batch_sizes_index_ TF_GUARDED_BY(mu_) = 0; }; const DatasetBase* const input_; const std::vector<int64_t> batch_sizes_; const bool drop_remainder_; const DataTypeVector output_types_; const std::vector<PartialTensorShape> output_shapes_; const TraceMeMetadata traceme_metadata_; }; DataTypeVector output_types_; std::vector<PartialTensorShape> output_shapes_; }; REGISTER_KERNEL_BUILDER(Name("RebatchDataset").Device(DEVICE_CPU), RebatchDatasetOp); REGISTER_KERNEL_BUILDER(Name("ExperimentalRebatchDataset").Device(DEVICE_CPU), RebatchDatasetOp); REGISTER_KERNEL_BUILDER(Name("RebatchDatasetV2").Device(DEVICE_CPU), RebatchDatasetV2Op); } // anonymous namespace } // namespace experimental } // namespace data } // namespace tensorflow
C++
5
EricRemmerswaal/tensorflow
tensorflow/core/kernels/data/experimental/rebatch_dataset_op.cc
[ "Apache-2.0" ]
extends BaseButton var pattern = Global.patterns_popup.Pattern.new() func _on_PatternButton_pressed() -> void: Global.patterns_popup.select_pattern(pattern)
GDScript
3
triptych/Pixelorama
src/UI/PatternButton.gd
[ "MIT" ]
use jar = method(jarFile, use(if(#/\.jar$/ =~ jarFile, jarFile, "#{jarFile}.jar")))
Ioke
2
olabini/ioke
src/builtin/A30_system.ik
[ "ICU", "MIT" ]
package com.baeldung.cache2k; import static org.junit.Assert.assertTrue; import org.junit.Test; public class ProductHelperWithExpiryUnitTest { @Test public void whenInvokedGetDiscountAfterExpiration_thenDiscountCalculatedAgain() throws InterruptedException { ProductHelperWithExpiry productHelper = new ProductHelperWithExpiry(); assertTrue(productHelper.getCacheMissCount() == 0); assertTrue(productHelper.getDiscount("Sports") == 20); assertTrue(productHelper.getCacheMissCount() == 1); Thread.sleep(20); assertTrue(productHelper.getDiscount("Sports") == 20); assertTrue(productHelper.getCacheMissCount() == 2); } }
Java
4
DBatOWL/tutorials
libraries-3/src/test/java/com/baeldung/cache2k/ProductHelperWithExpiryUnitTest.java
[ "MIT" ]
staload "SATS/filetype.sats" staload "SATS/utils.sats" implement add_results (x, y) = let var next = @{ lines = x.lines + y.lines , blanks = x.blanks + y.blanks , comments = x.comments + y.comments , files = x.files + y.files } in next end implement eq_pl_type (x, y) = case- (x, y) of | (happy (_), happy (_)) => true | (yacc (_), yacc (_)) => true | (coq (_), coq (_)) => true | (verilog (_), verilog (_)) => true implement free_pl (pl) = case+ pl of | ~unknown _ => () | ~rust _ => () | ~haskell _ => () | ~perl _ => () | ~lucius _ => () | ~cassius _ => () | ~hamlet _ => () | ~julius _ => () | ~bash _ => () | ~dash _ => () | ~coq _ => () | ~justfile _ => () | ~makefile _ => () | ~yaml _ => () | ~toml _ => () | ~dhall _ => () | ~ipkg _ => () | ~ion _ => () | ~mercury _ => () | ~yacc _ => () | ~lex _ => () | ~r _ => () | ~c _ => () | ~cpp _ => () | ~lua _ => () | ~lalrpop _ => () | ~header _ => () | ~sixten _ => () | ~java _ => () | ~scala _ => () | ~elixir _ => () | ~erlang _ => () | ~happy _ => () | ~alex _ => () | ~go _ => () | ~html _ => () | ~css _ => () | ~scss _ => () | ~brainfuck _ => () | ~ruby _ => () | ~julia _ => () | ~elm _ => () | ~purescript _ => () | ~vimscript _ => () | ~ocaml _ => () | ~madlang _ => () | ~agda _ => () | ~idris _ => () | ~futhark _ => () | ~ats _ => () | ~tex _ => () | ~cabal _ => () | ~cobol _ => () | ~tcl _ => () | ~verilog _ => () | ~vhdl _ => () | ~markdown _ => () | ~python _ => () | ~pony _ => () | ~jupyter _ => () | ~clojure _ => () | ~cabal_project _ => () | ~assembly _ => () | ~nix _ => () | ~php _ => () | ~javascript _ => () | ~kotlin _ => () | ~fsharp _ => () | ~fortran _ => () | ~swift _ => () | ~csharp _ => () | ~nim _ => () | ~cpp_header _ => () | ~elisp _ => () | ~plaintext _ => () | ~rakefile _ => () | ~llvm _ => () | ~autoconf _ => () | ~batch _ => () | ~powershell _ => () | ~m4 _ => () | ~objective_c _ => () | ~automake _ => () | ~carp _ => () | ~shen _ => () | ~greencard _ => () | ~cmm _ => () | ~fluid _ => () | ~plutus _ => () | ~j _ => () | ~blodwen _ => () | ~crystal _ => () | ~racket _ => () | ~ada _ => () | ~sml _ => () | ~isabelle _ => () | ~fstar _ => () | ~d _ => () | ~factor _ => () | ~scheme _ => () | ~chapel _ => () | ~pascal _ => () | ~ragel _ => () | ~xml _ => () | ~awk _ => () | ~sed _ => () | ~k _ => () | ~typescript _ => () | ~coffeescript _ => () | ~red _ => () | ~fish _ => () | ~vb _ => () | ~frege _ => () | ~dart _ => () | ~solidity _ => () | ~egison _ => () | ~zig _ => () | ~sql _ => () | ~felix _ => () | ~qsharp _ => () | ~oz _ => () | ~jai _ => () | ~zimpl _ => () | ~volt _ => () | ~cogent _ => () | ~clean _ => () | ~thrift _ => () | ~vala _ => () | ~apex _ => () | ~sas _ => () | ~nu _ => () | ~haxe _ => () | ~eiffel _ => () | ~tla _ => () | ~lean _ => () | ~io _ => () | ~squirrel _ => () | ~agdalib _ => () | ~cedille _ => () | ~raml _ => () | ~scribble _ => () | ~bibtex _ => () | ~csv _ => () | ~terraform _ => () | ~org _ => () | ~vagrantfile _ => () | ~glsl _ => () | ~dickinson _ => () | ~mirth _ => ()
ATS
3
lambdaxymox/polyglot
DATS/utils.dats
[ "BSD-3-Clause" ]
/** * Multiply to unsigned numbers using bitwise operator. * * The main idea of bitwise multiplication is that every number may be split * to the sum of powers of two: * * I.e. 19 = 2^4 + 2^1 + 2^0 * * Then multiplying number x by 19 is equivalent of: * * x * 19 = x * 2^4 + x * 2^1 + x * 2^0 * * Now we need to remember that (x * 2^4) is equivalent of shifting x left by 4 bits (x << 4). * * @param {number} number1 * @param {number} number2 * @return {number} */ export default function multiplyUnsigned(number1, number2) { let result = 0; // Let's treat number2 as a multiplier for the number1. let multiplier = number2; // Multiplier current bit index. let bitIndex = 0; // Go through all bits of number2. while (multiplier !== 0) { // Check if current multiplier bit is set. if (multiplier & 1) { // In case if multiplier's bit at position bitIndex is set // it would mean that we need to multiply number1 by the power // of bit with index bitIndex and then add it to the result. result += (number1 << bitIndex); } bitIndex += 1; multiplier >>= 1; } return result; }
JavaScript
5
buledong/javascript-algorithms
src/algorithms/math/bits/multiplyUnsigned.js
[ "MIT" ]
dataSourceKey: defaultDS destination: example groupId: g1 outerAdapterKey: phoenix concurrent: true dbMapping: database: mytest table: user targetTable: mytest.user escapeUpper: true # 字段默认大写,并用双引号引起来 targetPk: id: ID mapAll: true # 映射所有字段(默认true,不包含排除的字段) alter: true # 允许修改表结构(默认true,mapAll=true时可以新增,drop=true时可以删除字段) drop: false # 允许删除字段(默认false) skipMissing: false # 是否跳过缺失的字段(默认false,允许新增字段时会自动同步缺失的字段;true时跳过缺失的字段) limit: false # 是否限与数据长度限制一致(默认false,不限制长度避免修改长度而无法修改) targetColumns: id: ID name: NAME excludeColumns: # 排除字段 - password
YAML
4
mclubing/canal
client-adapter/phoenix/src/main/resources/phoenix/phoenixtest_user.yml
[ "Apache-2.0" ]
-- @shouldWarnWith ShadowedTypeVar module Main where class Test a where f :: (forall a. a -> a) -> a -> a
PureScript
3
metaleap/purs-with-dump-coreimp
examples/warning/2140.purs
[ "BSD-3-Clause" ]
/** * @file grammar.y * @version 3.0 * @author John Wiegley * * @brief Canonical BNF grammar for Ledger data files * * Extensions are permitted if: they are not required, and they are * backwards-compatible with this grammar. */ /* * There are three special terminals in this grammar, which violate its * context free nature: * * TEXT -- consumes all characters until the next terminal * or EOL (end of line) * WHITESPACE -- any amount of whitespace, not including EOL * STRING -- characters up to the next WHITESPACE or EOL * * BIGINT -- a number of any width, matching [0-9]+ * INT4 -- a four digit wide number * INT2 -- a two digit wide number * INT1 -- a one digit wide number * * Except for 1) the 'spacer' production (see below), 2) EOL, and 3) the * WHITESPACE required to begin a posting, whitespace is otherwise * ignored. * * Yes, this grammar is confusing and not so happy for machine readers, * but it was designed for the human author and reader. Once parsed, * the contents must be unambiguous, which means they can be output to * more rigorous formats for other programs to consume. */ /* * Journals * * A journal is a file which primarily contains xacts, among other elements. */ journal: journal_item journal | /* epsilon */ ; journal_item: whitespace directive | xact | ; whitespace: EOL | WHITESPACE EOL | ';' TEXT EOL | /* these next four are all ignored */ '*' TEXT EOL | ; directive: '@' word_directive EOL | '!' word_directive EOL | word_directive EOL | char_directive EOL ; word_directive: "include" TEXT | "account" TEXT | "end" | "alias" STRING '=' TEXT | "def" TEXT | TEXT WHITESPACE TEXT /* looked up in session (aka maybe Python) */ ; char_directive: 'i' date time TEXT | /* a timeclock.el "check in" */ 'I' date time TEXT | 'o' date time TEXT | /* a timeclock.el "check out" */ 'O' date time TEXT | 'h' TEXT EOL | 'b' TEXT EOL | 'D' amount | /* sets display parameters for a commodity */ 'A' TEXT | /* sets the "default balancing account" */ 'C' commodity '=' amount | /* specifies a commodity conversion */ 'P' date time commodity amount | /* a pricing history xact */ 'N' commodity | /* commodity's price is never downloaded */ 'Y' INT4 | /* sets the default year for date parsing */ '-' '-' STRING TEXT | /* specify command-line options in the file */ ; date: INT4 date_sep INT2 date_sep INT2 ; date_opt: '=' date | /* epsilon */ ; date_sep: '/' | '-' | '.' ; time: INT2 ':' INT2 ':' INT2 ; commodity: '"' TEXT '"' | STRING ; /* * Xacts * * Xacts are the atomic units of accounting, which are composed of * multiple postings between accounts, so long as it all balances in * the end. */ xact: plain_xact | periodic_xact | automated_xact ; plain_xact: date date_opt status_opt code_opt FULLSTRING note_opt EOL postings ; status_opt: status | /* epsilon */ ; status: '*' | '!' | /* epsilon */ ; code_opt: code | /* epsilon */ ; code: '(' TEXT ')' ; spacer: ' ' ' ' | '\t' | ' ' '\t' ; note_opt: spacer note | /* epsilon */ ; note: ';' TEXT ; /* ---------------------------------------------------------------------- */ periodic_xact: '~' period_expr note_opt EOL posting postings ; /* * A period expression has its own sub-grammar, which I don't quite have * the time to exhaustively describe now. See datetime.cc. It allows * for lots and lots of things, and is probably horribly ambiguous. */ period_expr: FULLSTRING ; /* ---------------------------------------------------------------------- */ automated_xact: '=' value_expr note_opt EOL posting postings ; /* * Value expressions are a algebraic math expressions very similar to * XPath (minus the path traversal items). This grammar needs fleshing * out also, since it's allowed in many places. */ value_expr: FULLSTRING ; /* * There is a serious ambiguity here which the parser resolves as * follows: if an amount_expr can be parsed as an amount, it's an * amount; otherwise, it's a value expression. */ quantity: neg_opt BIGINT decimal_opt ; neg_opt: '-' | /* epsilon */ ; decimal_opt: '.' BIGINT | /* epsilon */ ; annotation: lot_price_opt lot_date_opt lot_note_opt ; lot_date_opt: date | /* epsilon */ ; lot_date: '[' date ']' ; lot_price_opt: price | /* epsilon */ ; lot_price: '{' amount '}' ; lot_note_opt: note | /* epsilon */ ; lot_note: '(' string ')' ; amount: neg_opt commodity quantity annotation | quantity commodity annotation ; amount_expr: amount | value_expr ; /* * Postings * * Postings are the fundamental unit of accounting, and represent * the movement of commodities to or from an account. Thus, paying off * your credit card consists of two balancing postings: one that * withdraws money from your checking account, and another which pays * money to your credit institution. */ postings: posting postings | /* epsilon */ ; posting: WHITESPACE status_opt account values_opt note_opt EOL; account_name: FULLSTRING ; values_opt: spacer amount_expr price_opt | /* epsilon */ ; price_opt: price | /* epsilon */ ; price: '@' amount_expr | '@@' amount_expr /* in this case, it's the whole price */ ; account: account_name | '(' account_name ')' | '[' account_name ']' ; /* grammar.y ends here */
Yacc
5
sanel/ledger
doc/grammar.y
[ "BSD-3-Clause" ]
LOOPMULT N A,B,C,D,% S A="a,b,c,d" S B="A,B,C,D" S C="1,2,3" S D="," F %=1:1:$L(A,",") W !,$P(A,D,%),$P(B,D,%),$P(C,D,%) K A,B,C,D,% Q
M
3
LaudateCorpus1/RosettaCodeData
Task/Loop-over-multiple-arrays-simultaneously/MUMPS/loop-over-multiple-arrays-simultaneously-1.mumps
[ "Info-ZIP" ]
// Subscriber import Publisher "canister:pub"; actor Subscriber { type Counter = { topic : Text; value : Nat; }; var count: Nat = 0; public func init(topic0 : Text) { Publisher.subscribe({ topic = topic0; callback = updateCount; }); }; public func updateCount(counter : Counter) { count += counter.value; }; public query func getCount() : async Nat { return count; }; };
Modelica
4
DaveSimplifire/examples
motoko/pub-sub/src/sub/Main.mo
[ "Apache-2.0" ]
<?xml version="1.0" encoding="UTF-8" ?> <p:pipeline type="calli:wrap-two-documents" version="1.0" name="wrap-two-documents" xmlns:p ="http://www.w3.org/ns/xproc" xmlns:c ="http://www.w3.org/ns/xproc-step" xmlns:calli ="http://callimachusproject.org/rdf/2009/framework#" xmlns:xhtml ="http://www.w3.org/1999/xhtml" xmlns:l ="http://xproc.org/library"> <p:input port="other" /> <!-- --> <p:viewport match="root"> <p:viewport-source> <p:inline> <root /> </p:inline> </p:viewport-source> <p:insert position="first-child"> <p:input port="insertion"> <p:pipe step="wrap-two-documents" port="source"/> </p:input> </p:insert> <p:insert position="first-child"> <p:input port="insertion"> <p:pipe step="wrap-two-documents" port="other"/> </p:input> </p:insert> </p:viewport> </p:pipeline>
XProc
3
Thellmann/callimachus
test/docbook/wrap-two-documents.xpl
[ "ECL-2.0", "Apache-2.0", "BSD-3-Clause" ]
--TEST-- Test fileperms() & chmod() functions: basic functionality --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') { die('skip Not on Windows'); } require __DIR__ . '/../skipif_root.inc'; ?> --FILE-- <?php $path = __DIR__; echo "*** Testing fileperms(), chmod() with files and dirs ***\n"; fopen($path."/perm.tmp", "w"); var_dump( chmod($path."/perm.tmp", 0755 ) ); printf("%o", fileperms($path."/perm.tmp") ); echo "\n"; clearstatcache(); mkdir($path."/perm"); var_dump( chmod( $path."/perm", 0777 ) ); printf("%o", fileperms($path."/perm") ); echo "\n"; clearstatcache(); echo "Done\n"; ?> --CLEAN-- <?php unlink(__DIR__."/perm.tmp"); rmdir(__DIR__."/perm"); ?> --EXPECT-- *** Testing fileperms(), chmod() with files and dirs *** bool(true) 100755 bool(true) 40777 Done
PHP
4
NathanFreeman/php-src
ext/standard/tests/file/006_basic.phpt
[ "PHP-3.01" ]
local function testAdds() { local count = 0; for (local i = 0; i < 10000000; ++i) count = ::AddOne(count); return count } loadfile("profile.nut")() print("native loop: " + profile_it(20, function() {testAdds()}) + "\n");
Squirrel
3
profelis/daScript
examples/profile/tests/squirrel/native.nut
[ "BSD-3-Clause" ]
// run-pass fn main() { let mut t = [1; 2]; t = [t[1] * 2, t[0] * 2]; assert_eq!(&t[..], &[2, 2]); }
Rust
4
Eric-Arellano/rust
src/test/ui/issues/issue-16602-1.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
import time import os import pyautogui from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument("nwapp=" + os.path.dirname(os.path.abspath(__file__))) def assert_dom(id, expect): elem = driver.find_element_by_id(id) print elem.get_attribute('innerHTML') assert(expect in elem.get_attribute('innerHTML')) def test_reg(keys, pykeys=None, expect="success"): key = '+'.join(keys) id = 'reg-' + '-'.join(keys) reg_script = 'reg("%s", "%s")' % (id, key) print reg_script driver.execute_script(reg_script) if pykeys is not None: pyautogui.hotkey(*pykeys) if expect is not None: assert_dom(id, expect) def test_unreg(keys, expect="success"): key = '+'.join(keys) id = 'unreg-' + '-'.join(keys) unreg_script = 'unreg("%s", "%s")' % (id, key) print unreg_script driver.execute_script(unreg_script) assert_dom(id, expect) def test_reg_unreg(keys, pykeys): test_reg(keys, pykeys) test_unreg(keys) driver = webdriver.Chrome(executable_path=os.environ['CHROMEDRIVER'], chrome_options=chrome_options) try: print driver.current_url time.sleep(1) driver.implicitly_wait(10) test_reg_unreg(['a'], ['a']) test_reg_unreg(['keyb'], ['b']) test_reg_unreg(['KeyC'], ['c']) test_reg_unreg(['ctrl', 'b'], ['ctrl', 'b']) test_reg_unreg(['ctrl','shift','b'], ['ctrl','shift','b']) test_reg_unreg(['ctrl','shift','alt','b'], ['ctrl','shift','alt','b']) test_reg_unreg(['ctrl','shift','alt','`'], ['ctrl','shift','alt','`']) test_reg_unreg(['ctrl','shift','alt','escape'], ['ctrl','shift','alt','escape']) finally: driver.quit()
Python
3
namaljayathunga/nw.js
test/remoting/shortcut-normal/test.py
[ "MIT" ]
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> <div> <h1>Synchronous messages</h1> <i>Supports: Win, macOS, Linux <span>|</span> Process: Both</i> <div> <div> <button id="sync-msg">Ping</button> <span id="sync-reply"></span> </div> <p>You can use the <code>ipc</code> module to send synchronous messages between processes as well, but note that the synchronous nature of this method means that it <b>will block</b> other operations while completing its task.</p> <p>This example sends a synchronous message, "ping", from this process (renderer) to the main process. The main process then replies with "pong".</p> </div> </div> </div> <script> // You can also require other files to run in this process require('./renderer.js') </script> </body> </html>
HTML
4
lingxiao-Zhu/electron
docs/fiddles/communication/two-processes/synchronous-messages/index.html
[ "MIT" ]
;----------------- Include Algorithms Library -------------------------------- __includes [ "A-star.nls"] ;----------------------------------------------------------------------------- breed [pieces piece] pieces-own [number] globals [Board] ;-------------------- Customizable Reports for A* ----------------------------- ; These reports must be customized in order to solve different problems using the ; same A* function. ; Rules are represented by using lists [ "representation" cost f], where: ; - f allows to transform states (it is the transition function), ; - cost is the cost of applying the transition on a state, ; - and "representation" is a string to identify the rule. ; We represent a state as a shuffle of ; [ 0 1 2 ] ; [ 3 4 5 ] ; [ 6 7 8 ] ; where 0 is the hole. And we will use lists [0 1 2 3 4 5 6 7 8] ; For a given position, h, (movements h) reports the list of possible swaps with ; the position h. For example: ; 0 can swap with 1 (right) and 3 (down) ; 1 can swap with 0 (left), 2 (right) and 4 (down) ; ... and so on to-report movements [h] let resp [[1 3] [0 2 4] [1 5] [0 4 6] [1 3 5 7] [2 4 8] [3 7] [6 4 8] [5 7]] report item h resp end ; For a given state s, (swap i j s) returns a new state where tiles in ; positions i and j have been swapped to-report swap [i j s] let old-i item i s let old-j item j s let s1 replace-item i s old-j let s2 replace-item j s1 old-i report s2 end ; children-states is a state report that returns the children for the current state. ; It will return a list of pairs [ns tran], where ns is the content of the children-state, ; and tran is the applicable transition to get it. ; It maps the applicable transitions on the current content, and then filters those ; states that are valid. to-report AI:children-states let i (position 0 content) let indexes (movements i) report (map [ x -> (list (swap i x content) (list (word "T-" x) 1 "regla")) ] indexes) end ; final-state? is a state report that identifies the final states for the problem. ; It usually will be a property on the content of the state (for example, if it is ; equal to the Final State). It allows the use of parameters because maybe the ; verification of reaching the goal depends on some extra information from the problem. to-report AI:final-state? [params] report ( content = params) end ; Searcher report to compute the heuristic for this searcher. ; We use the sum of manhattan distances between the current 2D positions of every ; tile and the goal position of the same tile. to-report AI:heuristic [#Goal] let pos [[0 0] [0 1] [0 2] [1 0] [1 1] [1 2] [2 0] [2 1] [2 2]] let c [content] of current-state ; One other option is to count the misplaced tiles ; report length filter [ x -> x = False] (map [[x y] -> x = y] c #Goal) report sum (map [ x -> manhattan-distance (item (position x c ) pos) (item (position x #Goal) pos) ] (range 9)) end to-report manhattan-distance [x y] report abs ((first x) - (first y)) + abs ((last x) - (last y)) end to-report equal? [a b] report a = b end ;-------------------------------------------------------------------------------- ; Auxiliary procedure to test the A* algorithm to New-Game ca create-board ; From a final position, we randomly move the hole some times set Board (range 9) repeat 60 [ let i position 0 Board let j one-of movements i set Board swap i j Board ] View-Board end to Solve let path (A* Board (range 9) False False) let plan [] ; if any, we highlight it if path != false [ set plan (map [ s -> first [rule] of s ] path) ] foreach (map [x -> read-from-string last x] plan) [ x -> move x wait .3 ] end ;----------------------------------------------------------------------------- ; Interface Procedures ;----------------------------------------------------------------------------- to create-board (foreach (bl sort patches) (range 1 9) [ [x y] -> ask x [ sprout-pieces 1 [ set shape word "numero-" y set color item y base-colors __set-line-thickness 0.07 set number y ]]]) end to View-Board (foreach (sort patches) Board [ [x y] -> if y != 0 [ask piece (y - 1) [move-to x]] ]) end to shift [f dirx diry] ask f [ repeat 100 [ setxy (xcor + dirx / 100) (ycor + diry / 100) wait .005] ] end to move [pos] let H one-of patches with [not any? pieces-here] let P one-of pieces-on (item pos (sort patches)) shift P ([pxcor] of H - [xcor] of P) ([pycor] of H - [ycor] of P) end @#$#@#$#@ GRAPHICS-WINDOW 210 11 692 494 -1 -1 158.0 1 10 1 1 1 0 0 0 1 -1 1 -1 1 0 0 1 ticks 30.0 BUTTON 14 10 106 43 NIL New-Game NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 35 62 98 95 NIL Solve NIL 1 T OBSERVER NIL NIL NIL NIL 1 @#$#@#$#@ ## QUÉ ES Un modelo base para el 8Puzzle sobre el que construir diversos resolvedores automáticos. @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 numero-0 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 Line -1 false 105 150 90 165 Line -1 false 90 165 90 240 numero-1 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 105 90 150 45 Line -1 false 150 45 150 240 Line -1 false 195 255 165 255 Line -1 false 165 255 150 240 Line -1 false 135 255 150 240 Line -1 false 105 255 135 255 numero-2 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 105 150 Line -1 false 105 150 90 165 Line -1 false 90 165 90 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 numero-3 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 numero-4 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 255 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 numero-5 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 numero-6 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 Line -1 false 105 150 90 165 Line -1 false 90 165 90 240 numero-7 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 210 255 210 240 numero-8 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 Line -1 false 105 150 90 165 Line -1 false 90 165 90 240 numero-9 false 0 Rectangle -7500403 true true 15 15 285 285 Line -1 false 90 60 105 45 Line -1 false 105 45 195 45 Line -1 false 195 45 210 60 Line -1 false 210 60 210 135 Line -1 false 210 135 195 150 Line -1 false 195 150 105 150 Line -1 false 195 150 210 165 Line -1 false 210 165 210 240 Line -1 false 90 240 105 255 Line -1 false 105 255 195 255 Line -1 false 195 255 210 240 Line -1 false 90 60 90 135 Line -1 false 90 135 105 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 sheep false 0 Rectangle -7500403 true true 151 225 180 285 Rectangle -7500403 true true 47 225 75 285 Rectangle -7500403 true true 15 75 210 225 Circle -7500403 true true 135 75 150 Circle -16777216 true false 165 76 116 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 wolf false 0 Polygon -7500403 true true 135 285 195 285 270 90 30 90 105 285 Polygon -7500403 true true 270 90 225 15 180 90 Polygon -7500403 true true 30 90 75 15 120 90 Circle -1 true false 183 138 24 Circle -1 true false 93 138 24 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 6.1.1 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@
NetLogo
5
fsancho/IA
utils/.8PuzleAstar.tmp.nlogo
[ "MIT" ]
SELECT * WHERE { <a><b>1 }
SPARQL
0
Hendrikto/jena
jena-arq/testing/DAWG-Final/syntax-sparql2/syntax-general-03.rq
[ "Apache-2.0" ]
<cfsetting enablecfoutputonly="true"> <cfprocessingdirective pageencoding="utf-8"> <cfif StructKeyExists(form,"fileID")> <!--- update file ---> <cfif not compare(form.description,'<br />')> <cfset form.description = ""> </cfif> <cfset application.file.update(form.fileID,form.projectid,form.title,form.category,form.description)> <cfset application.activity.add(createUUID(),form.projectid,session.user.userid,'File',form.fileID,form.title,'edited')> <cfset application.notify.fileUpdate(form.projectid,form.fileID)> <cflocation url="files.cfm?p=#form.projectID#" addtoken="false"> <cfelseif StructKeyExists(form,"projectID")> <!--- add/upload file ---> <cftry> <cfdirectory action="create" directory="#application.userFilesPath##form.projectID#"> <cfcatch></cfcatch> </cftry> <cffile action="upload" filefield="fileupload" destination = "#application.userFilesPath##form.projectID#" nameConflict = "MakeUnique"> <cfset newID = createUUID()> <cfif not compare(form.description,'<br />')> <cfset form.description = ""> </cfif> <cfset application.file.add(newID,form.projectID,form.title,form.category,form.description,cffile.ClientFile,cffile.ServerFile,cffile.ClientFileExt,cffile.FileSize,session.user.userid)> <cfset application.activity.add(createUUID(),form.projectid,session.user.userid,'File',newID,form.title,'added')> <cfset application.notify.fileNew(form.projectid,newID)> <cflocation url="files.cfm?p=#form.projectID#" addtoken="false"> </cfif> <cfif not StructKeyExists(url,'p')> <cfoutput><h2>No Project Selected!</h2></cfoutput><cfabort> </cfif> <cfif session.user.admin> <cfset project = application.project.get(projectID=url.p)> <cfelse> <cfset project = application.project.get(session.user.userid,url.p)> </cfif> <cfset categories = application.category.get(url.p,'file')> <cfif not session.user.admin and not project.file_edit eq 1> <cfoutput><h2>You do not have permission to <cfif StructKeyExists(url,"f")>edit<cfelse>add</cfif> files!!!</h2></cfoutput> <cfabort> </cfif> <cfparam name="fileupload" default=""> <cfparam name="title" default=""> <cfparam name="catID" default=""> <cfparam name="description" default=""> <cfparam name="title_action" default="Add"> <cfif StructKeyExists(url,"f")> <cfset thisFile = application.file.get(url.p,url.f)> <cfset title = thisFile.title> <cfset catID = thisFile.categoryID> <cfset description = thisFile.description> <cfset title_action = "Edit"> </cfif> <!--- Loads header/footer ---> <cfmodule template="#application.settings.mapping#/tags/layout.cfm" templatename="main" title="#project.name# &raquo; #title_action# File" project="#project.name#" projectid="#url.p#" svnurl="#project.svnurl#"> <cfhtmlhead text="<script type='text/javascript'> function newFileCat(val) { if (val == 'new') { var newcat = prompt('Enter the new category name:',''); var opt = new Option(newcat, newcat); var sel = document.edit.category; sel.options[sel.options.length] = opt; sel.selectedIndex = sel.options.length-1; } } function confirmSubmit() { var errors = ''; var oEditor = FCKeditorAPI.GetInstance('description'); if (document.edit.title.value == '') {errors = errors + ' ** You must enter a title.\n';} if (document.edit.category.value == '') {errors = errors + ' ** You must select a category.\n';} if (oEditor.GetHTML() == '') {errors = errors + ' ** You must enter a description.\n';} if (errors != '') { alert('Please correct the following errors:\n\n' + errors) return false; } else return true; } $(document).ready(function(){ $('##title').focus(); }); </script>"> <cfoutput> <div id="container"> <cfif project.recordCount> <!--- left column ---> <div class="left"> <div class="main"> <div class="header"> <span class="rightmenu"> <a href="javascript:history.back();" class="cancel">Cancel</a> </span> <h2 class="msg"><cfif StructKeyExists(url,"m")>Edit<cfelse>Upload new</cfif> file</h2> </div> <div class="content"> <form action="#cgi.script_name#?#cgi.query_string#" method="post" name="edit" id="edit" class="frm pb15" enctype="multipart/form-data" onsubmit="return confirmSubmit();"> <cfif not StructKeyExists(url,"f")> <p> <label for="fileupload" class="req">File:</label> <input type="file" name="fileupload" id="fileupload" value="#fileupload#" /> </p> </cfif> <p> <label for="title" class="req">Title:</label> <input type="text" name="title" id="title" value="#HTMLEditFormat(title)#" maxlength="120" /> </p> <p> <label for="category" class="req">Category:</label> <select name="category" id="category" onChange="newFileCat(this.value);"> <option value="">Select Category...</option> <cfloop query="categories"> <option value="#categoryID#"<cfif not compare(catID,categoryID)> selected="selected"</cfif>>#category#</option> </cfloop> <option value="new">--- add new category ---</option> </select> </p> <p> <label for="description" class="req">Description:</label> <cfif session.mobileBrowser> <textarea name="description" id="description">#description#</textarea> <cfelse> <cfscript> basePath = 'includes/fckeditor/'; fckEditor = createObject("component", "#basePath#fckeditor"); fckEditor.instanceName = "description"; fckEditor.value = '#description#'; fckEditor.basePath = basePath; fckEditor.width = 460; fckEditor.height = 150; fckEditor.ToolbarSet = "Basic"; fckEditor.create(); // create the editor. </cfscript>&nbsp; </cfif> </p> <label for="submit">&nbsp;</label> <cfif StructKeyExists(url,"f")> <input type="submit" class="button" name="submit" id="submit" value="Update File" onclick="return confirmSubmit();" /> <input type="hidden" name="fileID" value="#url.f#" /> <cfelse> <input type="submit" class="button" name="submit" id="submit" value="Upload File" /> </cfif> <input type="button" class="button" name="cancel" value="Cancel" onclick="history.back();" /> <input type="hidden" name="projectID" value="#url.p#" /> </form> </div> </div> <div class="bottom">&nbsp;</div> <div class="footer"> <cfinclude template="footer.cfm"> </div> </div> <!--- right column ---> <div class="right"> <!--- <div class="textheader"><h3>Categories</h3></div> <div class="content"> <ul> </ul> </div> ---> </div> <cfelse> <div class="alert">Project Not Found.</div> </cfif> </div> </cfoutput> </cfmodule> <cfsetting enablecfoutputonly="false">
ColdFusion
4
subethaedit/SubEthaEd
Documentation/ModeDevelopment/Reference Files/CFML/editFile.cfm
[ "MIT" ]
;;; lang/python/autoload/pyenv.el -*- lexical-binding: t; -*- ;;;###if (featurep! +pyenv) ;;;###autoload (defvar +pyenv--version nil) ;;;###autoload (defun +python-pyenv-mode-set-auto-h () "Set pyenv-mode version from buffer-local variable." (when (eq major-mode 'python-mode) (when (not (local-variable-p '+pyenv--version)) (make-local-variable '+pyenv--version) (setq +pyenv--version (+python-pyenv-read-version-from-file))) (if +pyenv--version (pyenv-mode-set +pyenv--version) (pyenv-mode-unset)))) ;;;###autoload (defun +python-pyenv-read-version-from-file () "Read pyenv version from .python-version file." (when-let (root-path (projectile-locate-dominating-file default-directory ".python-version")) (let* ((file-path (expand-file-name ".python-version" root-path)) (version (with-temp-buffer (insert-file-contents-literally file-path) (string-trim (buffer-string))))) (if (member version (pyenv-mode-versions)) version ;; return. (message "pyenv: version `%s' is not installed (set by `%s')." version file-path)))))
Emacs Lisp
5
leezu/doom-emacs
modules/lang/python/autoload/pyenv.el
[ "MIT" ]
"""Diagnostics support for RainMachine.""" from __future__ import annotations from typing import Any from regenmaschine.controller import Controller from homeassistant.components.diagnostics import async_redact_data from homeassistant.config_entries import ConfigEntry from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_PASSWORD from homeassistant.core import HomeAssistant from homeassistant.helpers.update_coordinator import DataUpdateCoordinator from .const import DATA_CONTROLLER, DATA_COORDINATOR, DOMAIN TO_REDACT = { CONF_LATITUDE, CONF_LONGITUDE, CONF_PASSWORD, } async def async_get_config_entry_diagnostics( hass: HomeAssistant, entry: ConfigEntry ) -> dict[str, Any]: """Return diagnostics for a config entry.""" data = hass.data[DOMAIN][entry.entry_id] coordinators: dict[str, DataUpdateCoordinator] = data[DATA_COORDINATOR] controller: Controller = data[DATA_CONTROLLER] return { "entry": { "title": entry.title, "data": async_redact_data(entry.data, TO_REDACT), "options": dict(entry.options), }, "data": { "coordinator": async_redact_data( { api_category: controller.data for api_category, controller in coordinators.items() }, TO_REDACT, ), "controller": { "api_version": controller.api_version, "hardware_version": controller.hardware_version, "name": controller.name, "software_version": controller.software_version, }, }, }
Python
4
MrDelik/core
homeassistant/components/rainmachine/diagnostics.py
[ "Apache-2.0" ]
"wt" 4096 "1 0.5 0.25" gen_sinesum 200 0.5 0 "wt" osc
SourcePawn
0
aleatoricforest/Sporth
examples/gen_sinesum.sp
[ "MIT" ]
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; /** @typedef {import("estree").Node} EsTreeNode */ /** @typedef {import("./JavascriptParser").VariableInfoInterface} VariableInfoInterface */ const TypeUnknown = 0; const TypeUndefined = 1; const TypeNull = 2; const TypeString = 3; const TypeNumber = 4; const TypeBoolean = 5; const TypeRegExp = 6; const TypeConditional = 7; const TypeArray = 8; const TypeConstArray = 9; const TypeIdentifier = 10; const TypeWrapped = 11; const TypeTemplateString = 12; const TypeBigInt = 13; class BasicEvaluatedExpression { constructor() { this.type = TypeUnknown; /** @type {[number, number]} */ this.range = undefined; /** @type {boolean} */ this.falsy = false; /** @type {boolean} */ this.truthy = false; /** @type {boolean | undefined} */ this.nullish = undefined; /** @type {boolean} */ this.sideEffects = true; /** @type {boolean | undefined} */ this.bool = undefined; /** @type {number | undefined} */ this.number = undefined; /** @type {bigint | undefined} */ this.bigint = undefined; /** @type {RegExp | undefined} */ this.regExp = undefined; /** @type {string | undefined} */ this.string = undefined; /** @type {BasicEvaluatedExpression[] | undefined} */ this.quasis = undefined; /** @type {BasicEvaluatedExpression[] | undefined} */ this.parts = undefined; /** @type {any[] | undefined} */ this.array = undefined; /** @type {BasicEvaluatedExpression[] | undefined} */ this.items = undefined; /** @type {BasicEvaluatedExpression[] | undefined} */ this.options = undefined; /** @type {BasicEvaluatedExpression | undefined} */ this.prefix = undefined; /** @type {BasicEvaluatedExpression | undefined} */ this.postfix = undefined; this.wrappedInnerExpressions = undefined; /** @type {string | undefined} */ this.identifier = undefined; /** @type {VariableInfoInterface} */ this.rootInfo = undefined; /** @type {() => string[]} */ this.getMembers = undefined; /** @type {EsTreeNode} */ this.expression = undefined; } isUnknown() { return this.type === TypeUnknown; } isNull() { return this.type === TypeNull; } isUndefined() { return this.type === TypeUndefined; } isString() { return this.type === TypeString; } isNumber() { return this.type === TypeNumber; } isBigInt() { return this.type === TypeBigInt; } isBoolean() { return this.type === TypeBoolean; } isRegExp() { return this.type === TypeRegExp; } isConditional() { return this.type === TypeConditional; } isArray() { return this.type === TypeArray; } isConstArray() { return this.type === TypeConstArray; } isIdentifier() { return this.type === TypeIdentifier; } isWrapped() { return this.type === TypeWrapped; } isTemplateString() { return this.type === TypeTemplateString; } /** * Is expression a primitive or an object type value? * @returns {boolean | undefined} true: primitive type, false: object type, undefined: unknown/runtime-defined */ isPrimitiveType() { switch (this.type) { case TypeUndefined: case TypeNull: case TypeString: case TypeNumber: case TypeBoolean: case TypeBigInt: case TypeWrapped: case TypeTemplateString: return true; case TypeRegExp: case TypeArray: case TypeConstArray: return false; default: return undefined; } } /** * Is expression a runtime or compile-time value? * @returns {boolean} true: compile time value, false: runtime value */ isCompileTimeValue() { switch (this.type) { case TypeUndefined: case TypeNull: case TypeString: case TypeNumber: case TypeBoolean: case TypeRegExp: case TypeConstArray: case TypeBigInt: return true; default: return false; } } /** * Gets the compile-time value of the expression * @returns {any} the javascript value */ asCompileTimeValue() { switch (this.type) { case TypeUndefined: return undefined; case TypeNull: return null; case TypeString: return this.string; case TypeNumber: return this.number; case TypeBoolean: return this.bool; case TypeRegExp: return this.regExp; case TypeConstArray: return this.array; case TypeBigInt: return this.bigint; default: throw new Error( "asCompileTimeValue must only be called for compile-time values" ); } } isTruthy() { return this.truthy; } isFalsy() { return this.falsy; } isNullish() { return this.nullish; } /** * Can this expression have side effects? * @returns {boolean} false: never has side effects */ couldHaveSideEffects() { return this.sideEffects; } asBool() { if (this.truthy) return true; if (this.falsy || this.nullish) return false; if (this.isBoolean()) return this.bool; if (this.isNull()) return false; if (this.isUndefined()) return false; if (this.isString()) return this.string !== ""; if (this.isNumber()) return this.number !== 0; if (this.isBigInt()) return this.bigint !== BigInt(0); if (this.isRegExp()) return true; if (this.isArray()) return true; if (this.isConstArray()) return true; if (this.isWrapped()) { return (this.prefix && this.prefix.asBool()) || (this.postfix && this.postfix.asBool()) ? true : undefined; } if (this.isTemplateString()) { const str = this.asString(); if (typeof str === "string") return str !== ""; } return undefined; } asNullish() { const nullish = this.isNullish(); if (nullish === true || this.isNull() || this.isUndefined()) return true; if (nullish === false) return false; if (this.isTruthy()) return false; if (this.isBoolean()) return false; if (this.isString()) return false; if (this.isNumber()) return false; if (this.isBigInt()) return false; if (this.isRegExp()) return false; if (this.isArray()) return false; if (this.isConstArray()) return false; if (this.isTemplateString()) return false; if (this.isRegExp()) return false; return undefined; } asString() { if (this.isBoolean()) return `${this.bool}`; if (this.isNull()) return "null"; if (this.isUndefined()) return "undefined"; if (this.isString()) return this.string; if (this.isNumber()) return `${this.number}`; if (this.isBigInt()) return `${this.bigint}`; if (this.isRegExp()) return `${this.regExp}`; if (this.isArray()) { let array = []; for (const item of this.items) { const itemStr = item.asString(); if (itemStr === undefined) return undefined; array.push(itemStr); } return `${array}`; } if (this.isConstArray()) return `${this.array}`; if (this.isTemplateString()) { let str = ""; for (const part of this.parts) { const partStr = part.asString(); if (partStr === undefined) return undefined; str += partStr; } return str; } return undefined; } setString(string) { this.type = TypeString; this.string = string; this.sideEffects = false; return this; } setUndefined() { this.type = TypeUndefined; this.sideEffects = false; return this; } setNull() { this.type = TypeNull; this.sideEffects = false; return this; } setNumber(number) { this.type = TypeNumber; this.number = number; this.sideEffects = false; return this; } setBigInt(bigint) { this.type = TypeBigInt; this.bigint = bigint; this.sideEffects = false; return this; } setBoolean(bool) { this.type = TypeBoolean; this.bool = bool; this.sideEffects = false; return this; } setRegExp(regExp) { this.type = TypeRegExp; this.regExp = regExp; this.sideEffects = false; return this; } setIdentifier(identifier, rootInfo, getMembers) { this.type = TypeIdentifier; this.identifier = identifier; this.rootInfo = rootInfo; this.getMembers = getMembers; this.sideEffects = true; return this; } setWrapped(prefix, postfix, innerExpressions) { this.type = TypeWrapped; this.prefix = prefix; this.postfix = postfix; this.wrappedInnerExpressions = innerExpressions; this.sideEffects = true; return this; } setOptions(options) { this.type = TypeConditional; this.options = options; this.sideEffects = true; return this; } addOptions(options) { if (!this.options) { this.type = TypeConditional; this.options = []; this.sideEffects = true; } for (const item of options) { this.options.push(item); } return this; } setItems(items) { this.type = TypeArray; this.items = items; this.sideEffects = items.some(i => i.couldHaveSideEffects()); return this; } setArray(array) { this.type = TypeConstArray; this.array = array; this.sideEffects = false; return this; } setTemplateString(quasis, parts, kind) { this.type = TypeTemplateString; this.quasis = quasis; this.parts = parts; this.templateStringKind = kind; this.sideEffects = parts.some(p => p.sideEffects); return this; } setTruthy() { this.falsy = false; this.truthy = true; this.nullish = false; return this; } setFalsy() { this.falsy = true; this.truthy = false; return this; } setNullish(value) { this.nullish = value; if (value) return this.setFalsy(); return this; } setRange(range) { this.range = range; return this; } setSideEffects(sideEffects = true) { this.sideEffects = sideEffects; return this; } setExpression(expression) { this.expression = expression; return this; } } /** * @param {string} flags regexp flags * @returns {boolean} is valid flags */ BasicEvaluatedExpression.isValidRegExpFlags = flags => { const len = flags.length; if (len === 0) return true; if (len > 4) return false; // cspell:word gimy let remaining = 0b0000; // bit per RegExp flag: gimy for (let i = 0; i < len; i++) switch (flags.charCodeAt(i)) { case 103 /* g */: if (remaining & 0b1000) return false; remaining |= 0b1000; break; case 105 /* i */: if (remaining & 0b0100) return false; remaining |= 0b0100; break; case 109 /* m */: if (remaining & 0b0010) return false; remaining |= 0b0010; break; case 121 /* y */: if (remaining & 0b0001) return false; remaining |= 0b0001; break; default: return false; } return true; }; module.exports = BasicEvaluatedExpression;
JavaScript
5
KruthikaShyamSundar/wildlife_park
node_modules/webpack/lib/javascript/BasicEvaluatedExpression.js
[ "MIT" ]
(pr "Hello World")
Shen
1
conorpreid/hello-world
s/Shen.shen
[ "MIT" ]
[package] name = "rustc_save_analysis" version = "0.0.0" edition = "2021" [dependencies] tracing = "0.1" rustc_middle = { path = "../rustc_middle" } rustc_ast = { path = "../rustc_ast" } rustc_ast_pretty = { path = "../rustc_ast_pretty" } rustc_data_structures = { path = "../rustc_data_structures" } rustc_hir = { path = "../rustc_hir" } rustc_hir_pretty = { path = "../rustc_hir_pretty" } rustc_lexer = { path = "../rustc_lexer" } serde_json = "1" rustc_session = { path = "../rustc_session" } rustc_span = { path = "../rustc_span" } rls-data = "0.19" rls-span = "0.5"
TOML
1
ohno418/rust
compiler/rustc_save_analysis/Cargo.toml
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
--TEST-- SPL: SplObjectStorage comapred with == --FILE-- <?php $a = new SplObjectStorage; $b = new SplObjectStorage; var_dump($a == $b); $b[$b] = 2; var_dump($a == $b); $a[$b] = 2; var_dump($a == $b); $a[$b] = 3; var_dump($a == $b); ?> --EXPECT-- bool(true) bool(false) bool(true) bool(false)
PHP
3
thiagooak/php-src
ext/spl/tests/observer_007.phpt
[ "PHP-3.01" ]
% % Formatted font dump. Assumes all fonts include valid FontBBox arrays. % /#copies 1 store /aspectratio 1 def /landscape false def /magnification 1 def /margin 10 def /orientation 0 def /rotation 1 def /xoffset 0 def /yoffset 0 def /axescount 0 def /charwidth false def /graynotdef 0.85 def /hireslinewidth 0.2 def /longnames false def /maxsize 6.0 def /minsize 4.5 def /numbercell true def /radix 16 def /labelfont /Helvetica def /labelspace 36 def /zerocell 0 def /roundpage true def /useclippath true def /pagebbox [0 0 612 792] def /inch {72 mul} def /min {2 copy gt {exch} if pop} def /max {2 copy lt {exch} if pop} def /LLx {0 get} bind def /LLy {1 get} bind def /URx {2 get} bind def /URy {3 get} bind def /BBoxHeight {dup URy exch LLy sub} bind def /BBoxWidth {dup URx exch LLx sub} bind def /setup { /graylevels [1 0 0] def /scratchstring 512 string def /Product statusdict begin /product where {pop product}{(Unknown)} ifelse end def /Resolution 0 72 dtransform dup mul exch dup mul add sqrt cvi def /Version /version where {pop version}{(???)} ifelse def landscape {/orientation 90 orientation add def} if pagedimensions xcenter ycenter translate orientation rotation mul rotate width 2 div neg height 2 div translate xoffset inch yoffset inch neg translate margin dup neg translate 0 labelspace .75 mul neg translate magnification dup aspectratio mul scale 0 0 transform round exch round exch itransform translate currentdict /linewidth known not { /linewidth Resolution 400 le {0}{hireslinewidth} ifelse def } if } def /pagedimensions { useclippath { /pagebbox [clippath pathbbox newpath] def roundpage currentdict /roundpagebbox known and {roundpagebbox} if } if pagebbox aload pop 4 -1 roll exch 4 1 roll 4 copy landscape {4 2 roll} if sub /width exch def sub /height exch def add 2 div /xcenter exch def add 2 div /ycenter exch def } def /CharSetup { /chcode exch def /chname Encoding chcode get def /chstring ( ) dup 0 chcode put def /chknown true def graylevels 0 1 put % initial cell fill graylevels 1 0 put % cell text graylevels 2 0 put % cell border FontDict /CharStrings known { FontDict /CharStrings get chname known not { /chknown false def graylevels 0 0 put graylevels 1 1 put } if } if chname /.notdef eq { /chknown false def graylevels 0 graynotdef put graylevels 1 graynotdef put } if /chwid chknown {FontDict 1 scalefont setfont chstring stringwidth pop} {0} ifelse def } bind def /CellSetup { /gridwidth width margin 2 mul sub def /gridheight height labelspace sub margin 2 mul sub def /cellwidth gridwidth radix div def /cellheight gridheight Entries radix div ceiling div def cellwidth cellheight dtransform truncate exch truncate exch idtransform /cellheight exch def /cellwidth exch def labelfont findfont 1 scalefont setfont /LabelBBox currentfont /FontBBox get TransformBBox def LabelBBox 2 0 Encoding { scratchstring cvs stringwidth pop 2 copy lt {exch} if pop } forall put /CellLabelSize cellheight .20 mul cellwidth .90 mul LabelBBox BestFit minsize max maxsize min def zerocell CellOrigin cellheight add neg exch neg exch translate } bind def /FontSetup { FontName findfont 1 scalefont setfont /BBox currentfont /FontBBox get TransformBBox def /PointSize cellheight .5 mul cellwidth .8 mul BBox BestFit def BBox {PointSize mul} forall BBox astore pop /xorigin cellwidth BBox BBoxWidth sub 2 div BBox LLx sub def /yorigin cellheight BBox BBoxHeight sub 2 div BBox LLy sub def } bind def /BestFit { /bbox exch def bbox BBoxWidth div exch bbox BBoxHeight div min } bind def /TransformBBox { % font bbox to user space aload pop currentfont /FontMatrix get dtransform 4 2 roll currentfont /FontMatrix get dtransform 4 2 roll 4 array astore % should build user space bbox if all zeros } bind def /CellOrigin { dup exch radix mod cellwidth mul exch radix idiv 1 add neg cellheight mul } bind def /CellOutline { newpath CellOrigin moveto cellwidth 0 rlineto 0 cellheight rlineto cellwidth neg 0 rlineto closepath } bind def /LabelCell { gsave chcode CellOrigin translate linewidth .5 mul setlinewidth labelfont findfont CellLabelSize scalefont setfont numbercell { cellwidth .025 mul cellheight .05 mul moveto chcode radix scratchstring cvrs show } if charwidth chknown and { /wid chwid 0.0005 add scratchstring cvs 0 5 getinterval def cellwidth wid stringwidth pop 1.10 mul sub cellheight .05 mul moveto wid show } if longnames chknown not or { cellwidth .025 mul cellheight LabelBBox URy CellLabelSize mul sub .05 sub moveto Encoding chcode get scratchstring cvs show } if axescount 1 ge chknown and { % gsave/grestore if not last newpath xorigin yorigin translate BBox LLx 0 moveto % baseline BBox URx 0 lineto stroke axescount 2 ge { % vertical through current origin 0 BBox LLy moveto 0 BBox URy lineto stroke } if axescount 3 ge { % vertical through next origin chwid PointSize mul BBox LLy dtransform round exch round exch idtransform moveto 0 BBox BBoxHeight rlineto stroke %chwid PointSize mul BBox URy lineto stroke } if } if grestore } bind def /PlaceChar { FontName findfont PointSize scalefont setfont chcode CellOrigin moveto xorigin yorigin rmoveto ( ) dup 0 chcode put show } bind def /LabelPage { labelfont findfont labelspace .75 mul .75 mul 18 min scalefont setfont 0 labelspace .75 mul .25 mul moveto FontName scratchstring cvs show labelfont findfont labelspace .25 mul .75 mul 9 min scalefont setfont 0 gridheight neg moveto 0 labelspace .25 mul .75 mul neg rmoveto Product show ( Version ) show Version show ( \() show Resolution scratchstring cvs show (dpi\)) show gridwidth gridheight neg moveto 0 labelspace .25 mul .75 mul neg rmoveto (size=, ) stringwidth pop neg 0 rmoveto PointSize cvi scratchstring cvs stringwidth pop neg 0 rmoveto (gray=, ) stringwidth pop neg 0 rmoveto graynotdef scratchstring cvs stringwidth pop neg 0 rmoveto (linewidth=) stringwidth pop neg 0 rmoveto linewidth scratchstring cvs stringwidth pop neg 0 rmoveto (size=) show PointSize cvi scratchstring cvs show (, ) show (gray=) show graynotdef scratchstring cvs show (, ) show (linewidth=) show linewidth scratchstring cvs show } bind def % % Formatted dump of the encoded characters in a single font. % /PrintFont { /saveobj save def /FontName exch def /FontDict FontName findfont def /Encoding FontDict /Encoding get def /Entries Encoding length def CellSetup FontSetup LabelPage zerocell 1 Entries 1 sub { CharSetup graylevels 0 get setgray chcode CellOutline fill graylevels 1 get setgray LabelCell PlaceChar graylevels 2 get setgray linewidth setlinewidth chcode CellOutline stroke } for showpage saveobj restore } bind def % % Dump of all ROM and disk fonts - in alphabetical order. % /AllFonts { /AllFontNames FontDirectory maxlength array def AllFontNames 0 0 put FontDirectory {pop AllFontNames Insert} forall /filenameforall where { pop (fonts/*) {(fonts/) search pop pop pop AllFontNames Insert} 200 string filenameforall } if 1 1 AllFontNames 0 get { AllFontNames exch get cvn PrintFont } for } bind def /Insert { % name in a sorted list /List exch def /Name exch 128 string cvs def /Slot 1 def List 0 get { Name List Slot get le {exit} if /Slot Slot 1 add def } repeat List 0 get -1 Slot { dup List exch get List 3 1 roll exch 1 add exch put } for List Slot Name put List 0 List 0 get 1 add put } bind def
PostScript
5
newluhux/plan9port
src/cmd/postscript/printfont/printfont.ps
[ "MIT" ]
.. _topics-deploy: ================= Deploying Spiders ================= This section describes the different options you have for deploying your Scrapy spiders to run them on a regular basis. Running Scrapy spiders in your local machine is very convenient for the (early) development stage, but not so much when you need to execute long-running spiders or move spiders to run in production continuously. This is where the solutions for deploying Scrapy spiders come in. Popular choices for deploying Scrapy spiders are: * :ref:`Scrapyd <deploy-scrapyd>` (open source) * :ref:`Zyte Scrapy Cloud <deploy-scrapy-cloud>` (cloud-based) .. _deploy-scrapyd: Deploying to a Scrapyd Server ============================= `Scrapyd`_ is an open source application to run Scrapy spiders. It provides a server with HTTP API, capable of running and monitoring Scrapy spiders. To deploy spiders to Scrapyd, you can use the scrapyd-deploy tool provided by the `scrapyd-client`_ package. Please refer to the `scrapyd-deploy documentation`_ for more information. Scrapyd is maintained by some of the Scrapy developers. .. _deploy-scrapy-cloud: Deploying to Zyte Scrapy Cloud ============================== `Zyte Scrapy Cloud`_ is a hosted, cloud-based service by Zyte_, the company behind Scrapy. Zyte Scrapy Cloud removes the need to setup and monitor servers and provides a nice UI to manage spiders and review scraped items, logs and stats. To deploy spiders to Zyte Scrapy Cloud you can use the `shub`_ command line tool. Please refer to the `Zyte Scrapy Cloud documentation`_ for more information. Zyte Scrapy Cloud is compatible with Scrapyd and one can switch between them as needed - the configuration is read from the ``scrapy.cfg`` file just like ``scrapyd-deploy``. .. _Deploying your project: https://scrapyd.readthedocs.io/en/latest/deploy.html .. _Scrapyd: https://github.com/scrapy/scrapyd .. _scrapyd-client: https://github.com/scrapy/scrapyd-client .. _scrapyd-deploy documentation: https://scrapyd.readthedocs.io/en/latest/deploy.html .. _shub: https://shub.readthedocs.io/en/latest/ .. _Zyte: https://zyte.com/ .. _Zyte Scrapy Cloud: https://www.zyte.com/scrapy-cloud/ .. _Zyte Scrapy Cloud documentation: https://docs.zyte.com/scrapy-cloud.html
reStructuredText
3
FingerCrunch/scrapy
docs/topics/deploy.rst
[ "BSD-3-Clause" ]
#require "HTS221.device.lib.nut:2.0.1" #require "LPS22HB.class.nut:1.0.0" // Define constants const sleepTime = 120; // Declare Global Variables tempSensor <- null; pressureSensor <- null; led <- null // Define functions function takeReading(){ local conditions = {}; local reading = tempSensor.read(); conditions.temp <- reading.temperature; conditions.humid <- reading.humidity; reading = pressureSensor.read(); conditions.press <- reading.pressure; // Send 'conditions' to the agent agent.send("reading.sent", conditions); // Set the imp to sleep when idle, ie. program complete imp.onidle(function() { server.sleepfor(sleepTime); }); } // Start of program // Configure I2C bus for sensors local i2c = hardware.i2c89; i2c.configure(CLOCK_SPEED_400_KHZ); tempSensor = HTS221(i2c); tempSensor.setMode(HTS221_MODE.ONE_SHOT); pressureSensor = LPS22HB(i2c); pressureSensor.softReset(); // Take a reading takeReading();
Squirrel
4
MongoCaleb/stitch-examples
IoTTemperatureTracking/temp.device.nut
[ "Apache-2.0" ]
.hydration { background: #2f1e2e; margin: 0; position: relative; height: calc(100vh - 40px); /* height of header */ overflow: auto; padding-top: 32px; } .hydration-options { background: #171717; border-top: 1px dashed rgba(215, 235, 255, 0.12); color: #def5ff; height: 32px; line-height: 28px; padding: 0 8px; width: 100%; position: absolute; top: 0; left: 0; } .hydration-options label { font-size: 13px; margin-right: 10px; } .hydration-options input[type=checkbox] { display: inline-block; margin-right: 4px; vertical-align: middle; } .hydration-options select { margin-left: 10px; max-width: 100px; } .hydration .CodeMirror { font-size: 13px; padding-top: 8px; padding-bottom: 68px; height: calc(100vh - 72px); width: 55%; } .hydration-sandbox { background: white; border-radius: 2px; border: 0; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.54); height: calc(100% - 34px); position: absolute; right: 16px; top: 16px; width: calc(45% - 24px); } .hydration-code-error { background: #df3f3f; border-radius: 2px; bottom: 18px; color: white; font-family: monospace; font-size: 13px; left: 16px; line-height: 1.25; overflow: auto; padding: 12px; position: fixed; white-space: pre; max-width: calc(55% - 26px); z-index: 10; }
CSS
3
vegYY/react
fixtures/dom/src/components/fixtures/hydration/hydration.css
[ "MIT" ]
%%{ machine Symbols; include CharacterClasses "charclasses_8.rl"; # # CODES_YANDEX symbols # EOF = cc_zero; accent = cc_accent; # required for multitoken.rl yc_lf = cc_linefeed; # [\n] yc_cr = cc_carriagereturn; # [\r] yc_sp = cc_whitespace; # [\t\n\v\f\r ] yspecialkey = cc_math_non_ascii | cc_currency_non_ascii | cc_special_non_ascii | cc_numerosign | cc_copyrightsign; yspecial = accent | cc_softhyphen | cc_nbsp | cc_sectionsign | cc_special | cc_special_non_ascii | cc_numerosign | cc_copyrightsign; ydigit = cc_digit; ycapital = cc_capitalalpha; ysmall = cc_smallalpha; yalpha = ycapital | ysmall | cc_unicasealpha; yalnum = ydigit | yalpha; ytitle = ydigit | ycapital | cc_unicasealpha; # may be at the beginning of sentence cjk_title = ytitle | cc_ideograph; ylower = ysmall; # the same as (yalnum - ytitle) termpunct = cc_termpunct; cjk_termpunct = cc_cjk_termpunct; # Multitoken composition: delimiters and suffixes tokdelim = cc_apostrophe | cc_minus; # [\'\-] TODO: add yc_underscore [_] tokprefix = cc_numbersign | cc_atsign | cc_dollarsign; # [#@$] # 1..31 | termpunct | [ \"#\$%&\'()*+,\-/;<=>@\[\\\]\^_\`{|}~] | 0x7F | yspecial # yc_07 and yc_1B do not exist miscnlp = (cc_nbsp | cc_misctext | yspecial) - yspecialkey; # fallback othermisc = any - yalnum - cc_zero - miscnlp - cc_ideograph - cc_surrogatelead - cc_surrogatetail - yspecialkey; }%%
Ragel in Ruby Host
5
ZhekehZ/catboost
library/tokenizer/symbols.rl
[ "Apache-2.0" ]
expect class Y { fun foo(): Any } expect fun useY(y: Y): Unit
Kotlin
3
punzki/kotlin
jps-plugin/testData/incremental/singleModule/common/touchExpect/commonY.kt
[ "ECL-2.0", "Apache-2.0" ]
from __future__ import unicode_literals import re from .common import InfoExtractor from ..compat import ( compat_urllib_parse_unquote, compat_urllib_parse_unquote_plus, ) from ..utils import ( clean_html, ExtractorError, ) class PlayvidIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?playvid\.com/watch(\?v=|/)(?P<id>.+?)(?:#|$)' _TESTS = [{ 'url': 'http://www.playvid.com/watch/RnmBNgtrrJu', 'md5': 'ffa2f6b2119af359f544388d8c01eb6c', 'info_dict': { 'id': 'RnmBNgtrrJu', 'ext': 'mp4', 'title': 'md5:9256d01c6317e3f703848b5906880dc8', 'duration': 82, 'age_limit': 18, }, 'skip': 'Video removed due to ToS', }, { 'url': 'http://www.playvid.com/watch/hwb0GpNkzgH', 'md5': '39d49df503ad7b8f23a4432cbf046477', 'info_dict': { 'id': 'hwb0GpNkzgH', 'ext': 'mp4', 'title': 'Ellen Euro Cutie Blond Takes a Sexy Survey Get Facial in The Park', 'age_limit': 18, 'thumbnail': r're:^https?://.*\.jpg$', }, }] def _real_extract(self, url): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) m_error = re.search( r'<div class="block-error">\s*<div class="heading">\s*<div>(?P<msg>.+?)</div>\s*</div>', webpage) if m_error: raise ExtractorError(clean_html(m_error.group('msg')), expected=True) video_title = None duration = None video_thumbnail = None formats = [] # most of the information is stored in the flashvars flashvars = self._html_search_regex( r'flashvars="(.+?)"', webpage, 'flashvars') infos = compat_urllib_parse_unquote(flashvars).split(r'&') for info in infos: videovars_match = re.match(r'^video_vars\[(.+?)\]=(.+?)$', info) if videovars_match: key = videovars_match.group(1) val = videovars_match.group(2) if key == 'title': video_title = compat_urllib_parse_unquote_plus(val) if key == 'duration': try: duration = int(val) except ValueError: pass if key == 'big_thumb': video_thumbnail = val videourl_match = re.match( r'^video_urls\]\[(?P<resolution>[0-9]+)p', key) if videourl_match: height = int(videourl_match.group('resolution')) formats.append({ 'height': height, 'url': val, }) self._sort_formats(formats) # Extract title - should be in the flashvars; if not, look elsewhere if video_title is None: video_title = self._html_search_regex( r'<title>(.*?)</title', webpage, 'title') return { 'id': video_id, 'formats': formats, 'title': video_title, 'thumbnail': video_thumbnail, 'duration': duration, 'description': None, 'age_limit': 18 }
Python
4
hackarada/youtube-dl
youtube_dl/extractor/playvid.py
[ "Unlicense" ]
package org.openapitools.model; import groovy.transform.Canonical import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @Canonical class User { Long id String username String firstName String lastName String email String password String phone /* User Status */ Integer userStatus }
Groovy
4
MalcolmScoffable/openapi-generator
samples/client/petstore/groovy/src/main/groovy/org/openapitools/model/User.groovy
[ "Apache-2.0" ]
%% %unicode 12.1 %public %class UnicodeScripts_12_1_extensions_3 %type int %standalone %include ../../resources/common-unicode-all-enumerated-property-defined-values-only-java %% <<EOF>> { printOutput(); return 1; } \p{Script_Extensions:Dogra} { setCurCharPropertyValue("Script_Extensions:Dogra"); } \p{Script_Extensions:Hangul} { setCurCharPropertyValue("Script_Extensions:Hangul"); } \p{Script_Extensions:Hanifi_Rohingya} { setCurCharPropertyValue("Script_Extensions:Hanifi_Rohingya"); } \p{Script_Extensions:Latin} { setCurCharPropertyValue("Script_Extensions:Latin"); } \p{Script_Extensions:Linear_B} { setCurCharPropertyValue("Script_Extensions:Linear_B"); } \p{Script_Extensions:Tagalog} { setCurCharPropertyValue("Script_Extensions:Tagalog"); } [^] { }
JFlex
3
Mivik/jflex
testsuite/testcases/src/test/cases/unicode-scripts/UnicodeScripts_12_1_extensions_3.flex
[ "BSD-3-Clause" ]
.global-header { background-color: white; box-shadow: 0 1px 15px 0 rgba(192,72,25,0.32); height: $header-height; position: fixed; top: 0; left: 0; right: 0; z-index: 100; .logo { width: 162px; height: 36px; background-image: url("/assets/images/logo.svg"); background-size: contain; background-repeat: no-repeat; background-position: center center; float: left; margin-top: 22px; margin-left: 15px; @media all and (max-width: $phablet-width) { float: none; height: 29px; display: block; margin: 0 auto; margin-top: 10px; } } nav { font-size: 17px; color: $main-color; float: right; margin-top: 29px; @media all and (max-width: $phablet-width) { float: none; text-align: center; font-size: 16px; margin-top: 10px; } a { position: relative; cursor: pointer; &::before { content: ""; background-color: $main-color; height: 3px; border-radius: 2px; position: absolute; left: 0; right: 0; bottom: -5px; display: none; } &:hover::before { display: block; } } .github-icon { width: 26px; height: 25px; background-image: url("/assets/images/github.svg"); display: inline-block; vertical-align: middle; position: relative; top: -3px; } } ul { white-space: nowrap; padding: 0; li { display: inline-block; margin: 0 15px; } } }
Stylus
4
ritzanaa97/tugas18
public/sweetalert-master/docs-src/assets/css/header.styl
[ "MIT" ]
SELECT if(CAST(NULL), '2.55', NULL) AS x; -- { serverError 42 }
SQL
2
pdv-ru/ClickHouse
tests/queries/0_stateless/01503_if_const_optimization.sql
[ "Apache-2.0" ]
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Deniz <dakdeniz@hotmail.com>, 2019 # José Luis <alagunajs@gmail.com>, 2015-2016 msgid "" msgstr "" "Project-Id-Version: Django REST framework\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-10-13 21:45+0200\n" "PO-Revision-Date: 2020-10-13 19:45+0000\n" "Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: authentication.py:70 msgid "Invalid basic header. No credentials provided." msgstr "Geçersiz yetkilendirme başlığı. Gerekli uygunluk kriterleri sağlanmamış." #: authentication.py:73 msgid "Invalid basic header. Credentials string should not contain spaces." msgstr "Geçersiz yetkilendirme başlığı. Uygunluk kriterine ait veri boşluk karakteri içermemeli." #: authentication.py:83 msgid "Invalid basic header. Credentials not correctly base64 encoded." msgstr "Geçersiz yetkilendirme başlığı. Uygunluk kriterleri base64 formatına uygun olarak kodlanmamış." #: authentication.py:101 msgid "Invalid username/password." msgstr "Geçersiz kullanıcı adı / şifre." #: authentication.py:104 authentication.py:206 msgid "User inactive or deleted." msgstr "Kullanıcı aktif değil ya da silinmiş" #: authentication.py:184 msgid "Invalid token header. No credentials provided." msgstr "Geçersiz token başlığı. Kimlik bilgileri eksik." #: authentication.py:187 msgid "Invalid token header. Token string should not contain spaces." msgstr "Geçersiz token başlığı. Token'da boşluk olmamalı." #: authentication.py:193 msgid "" "Invalid token header. Token string should not contain invalid characters." msgstr "Geçersiz token başlığı. Token geçersiz karakter içermemeli." #: authentication.py:203 msgid "Invalid token." msgstr "Geçersiz simge." #: authtoken/apps.py:7 msgid "Auth Token" msgstr "Kimlik doğrulama belirteci" #: authtoken/models.py:13 msgid "Key" msgstr "Anahtar" #: authtoken/models.py:16 msgid "User" msgstr "Kullanan" #: authtoken/models.py:18 msgid "Created" msgstr "Oluşturulan" #: authtoken/models.py:27 authtoken/serializers.py:19 msgid "Token" msgstr "İşaret" #: authtoken/models.py:28 msgid "Tokens" msgstr "İşaretler" #: authtoken/serializers.py:9 msgid "Username" msgstr "Kullanıcı adı" #: authtoken/serializers.py:13 msgid "Password" msgstr "Şifre" #: authtoken/serializers.py:35 msgid "Unable to log in with provided credentials." msgstr "Verilen bilgiler ile giriş sağlanamadı." #: authtoken/serializers.py:38 msgid "Must include \"username\" and \"password\"." msgstr "\"Kullanıcı Adı\" ve \"Parola\" eklenmeli." #: exceptions.py:102 msgid "A server error occurred." msgstr "Sunucu hatası oluştu." #: exceptions.py:142 msgid "Invalid input." msgstr "" #: exceptions.py:161 msgid "Malformed request." msgstr "Bozuk istek." #: exceptions.py:167 msgid "Incorrect authentication credentials." msgstr "Giriş bilgileri hatalı." #: exceptions.py:173 msgid "Authentication credentials were not provided." msgstr "Giriş bilgileri verilmedi." #: exceptions.py:179 msgid "You do not have permission to perform this action." msgstr "Bu işlemi yapmak için izniniz bulunmuyor." #: exceptions.py:185 msgid "Not found." msgstr "Bulunamadı." #: exceptions.py:191 #, python-brace-format msgid "Method \"{method}\" not allowed." msgstr "\"{method}\" metoduna izin verilmiyor." #: exceptions.py:202 msgid "Could not satisfy the request Accept header." msgstr "İsteğe ait Accept başlık bilgisi yanıt verilecek başlık bilgileri arasında değil." #: exceptions.py:212 #, python-brace-format msgid "Unsupported media type \"{media_type}\" in request." msgstr "İstekte desteklenmeyen medya tipi: \"{media_type}\"." #: exceptions.py:223 msgid "Request was throttled." msgstr "Üst üste çok fazla istek yapıldı." #: exceptions.py:224 #, python-brace-format msgid "Expected available in {wait} second." msgstr "" #: exceptions.py:225 #, python-brace-format msgid "Expected available in {wait} seconds." msgstr "" #: fields.py:316 relations.py:245 relations.py:279 validators.py:90 #: validators.py:183 msgid "This field is required." msgstr "Bu alan zorunlu." #: fields.py:317 msgid "This field may not be null." msgstr "Bu alan boş bırakılmamalı." #: fields.py:701 msgid "Must be a valid boolean." msgstr "" #: fields.py:766 msgid "Not a valid string." msgstr "" #: fields.py:767 msgid "This field may not be blank." msgstr "Bu alan boş bırakılmamalı." #: fields.py:768 fields.py:1881 #, python-brace-format msgid "Ensure this field has no more than {max_length} characters." msgstr "Bu alanın {max_length} karakterden fazla karakter barındırmadığından emin olun." #: fields.py:769 #, python-brace-format msgid "Ensure this field has at least {min_length} characters." msgstr "Bu alanın en az {min_length} karakter barındırdığından emin olun." #: fields.py:816 msgid "Enter a valid email address." msgstr "Geçerli bir e-posta adresi girin." #: fields.py:827 msgid "This value does not match the required pattern." msgstr "Bu değer gereken düzenli ifade deseni ile uyuşmuyor." #: fields.py:838 msgid "" "Enter a valid \"slug\" consisting of letters, numbers, underscores or " "hyphens." msgstr "Harf, rakam, altçizgi veya tireden oluşan geçerli bir \"slug\" giriniz." #: fields.py:839 msgid "" "Enter a valid \"slug\" consisting of Unicode letters, numbers, underscores, " "or hyphens." msgstr "" #: fields.py:854 msgid "Enter a valid URL." msgstr "Geçerli bir URL girin." #: fields.py:867 msgid "Must be a valid UUID." msgstr "" #: fields.py:903 msgid "Enter a valid IPv4 or IPv6 address." msgstr "Geçerli bir IPv4 ya da IPv6 adresi girin." #: fields.py:931 msgid "A valid integer is required." msgstr "Geçerli bir tam sayı girin." #: fields.py:932 fields.py:969 fields.py:1005 fields.py:1366 #, python-brace-format msgid "Ensure this value is less than or equal to {max_value}." msgstr "Değerin {max_value} değerinden küçük ya da eşit olduğundan emin olun." #: fields.py:933 fields.py:970 fields.py:1006 fields.py:1367 #, python-brace-format msgid "Ensure this value is greater than or equal to {min_value}." msgstr "Değerin {min_value} değerinden büyük ya da eşit olduğundan emin olun." #: fields.py:934 fields.py:971 fields.py:1010 msgid "String value too large." msgstr "String değeri çok uzun." #: fields.py:968 fields.py:1004 msgid "A valid number is required." msgstr "Geçerli bir numara gerekiyor." #: fields.py:1007 #, python-brace-format msgid "Ensure that there are no more than {max_digits} digits in total." msgstr "Toplamda {max_digits} haneden fazla hane olmadığından emin olun." #: fields.py:1008 #, python-brace-format msgid "" "Ensure that there are no more than {max_decimal_places} decimal places." msgstr "Ondalık basamak değerinin {max_decimal_places} haneden fazla olmadığından emin olun." #: fields.py:1009 #, python-brace-format msgid "" "Ensure that there are no more than {max_whole_digits} digits before the " "decimal point." msgstr "Ondalık ayracından önce {max_whole_digits} basamaktan fazla olmadığından emin olun." #: fields.py:1148 #, python-brace-format msgid "Datetime has wrong format. Use one of these formats instead: {format}." msgstr "Datetime alanı yanlış biçimde. {format} biçimlerinden birini kullanın." #: fields.py:1149 msgid "Expected a datetime but got a date." msgstr "Datetime değeri bekleniyor, ama date değeri geldi." #: fields.py:1150 #, python-brace-format msgid "Invalid datetime for the timezone \"{timezone}\"." msgstr "" #: fields.py:1151 msgid "Datetime value out of range." msgstr "" #: fields.py:1236 #, python-brace-format msgid "Date has wrong format. Use one of these formats instead: {format}." msgstr "Tarih biçimi yanlış. {format} biçimlerinden birini kullanın." #: fields.py:1237 msgid "Expected a date but got a datetime." msgstr "Date tipi beklenmekteydi, fakat datetime tipi geldi." #: fields.py:1303 #, python-brace-format msgid "Time has wrong format. Use one of these formats instead: {format}." msgstr "Time biçimi yanlış. {format} biçimlerinden birini kullanın." #: fields.py:1365 #, python-brace-format msgid "Duration has wrong format. Use one of these formats instead: {format}." msgstr "Duration biçimi yanlış. {format} biçimlerinden birini kullanın." #: fields.py:1399 fields.py:1456 #, python-brace-format msgid "\"{input}\" is not a valid choice." msgstr "\"{input}\" geçerli bir seçim değil." #: fields.py:1402 #, python-brace-format msgid "More than {count} items..." msgstr "{count} elemandan daha fazla..." #: fields.py:1457 fields.py:1603 relations.py:485 serializers.py:570 #, python-brace-format msgid "Expected a list of items but got type \"{input_type}\"." msgstr "Elemanların listesi beklenirken \"{input_type}\" alındı." #: fields.py:1458 msgid "This selection may not be empty." msgstr "Bu seçim boş bırakılmamalı." #: fields.py:1495 #, python-brace-format msgid "\"{input}\" is not a valid path choice." msgstr "\"{input}\" geçerli bir yol seçimi değil." #: fields.py:1514 msgid "No file was submitted." msgstr "Hiçbir dosya verilmedi." #: fields.py:1515 msgid "" "The submitted data was not a file. Check the encoding type on the form." msgstr "Gönderilen veri dosya değil. Formdaki kodlama tipini kontrol edin." #: fields.py:1516 msgid "No filename could be determined." msgstr "Hiçbir dosya adı belirlenemedi." #: fields.py:1517 msgid "The submitted file is empty." msgstr "Gönderilen dosya boş." #: fields.py:1518 #, python-brace-format msgid "" "Ensure this filename has at most {max_length} characters (it has {length})." msgstr "Bu dosya adının en fazla {max_length} karakter uzunluğunda olduğundan emin olun. (şu anda {length} karakter)." #: fields.py:1566 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." msgstr "Geçerli bir resim yükleyin. Yüklediğiniz dosya resim değil ya da bozuk." #: fields.py:1604 relations.py:486 serializers.py:571 msgid "This list may not be empty." msgstr "Bu liste boş olmamalı." #: fields.py:1605 #, python-brace-format msgid "Ensure this field has at least {min_length} elements." msgstr "" #: fields.py:1606 #, python-brace-format msgid "Ensure this field has no more than {max_length} elements." msgstr "" #: fields.py:1682 #, python-brace-format msgid "Expected a dictionary of items but got type \"{input_type}\"." msgstr "Sözlük tipi bir değişken beklenirken \"{input_type}\" tipi bir değişken alındı." #: fields.py:1683 msgid "This dictionary may not be empty." msgstr "" #: fields.py:1755 msgid "Value must be valid JSON." msgstr "Değer geçerli bir JSON olmalı." #: filters.py:49 templates/rest_framework/filters/search.html:2 msgid "Search" msgstr "Arama" #: filters.py:50 msgid "A search term." msgstr "" #: filters.py:180 templates/rest_framework/filters/ordering.html:3 msgid "Ordering" msgstr "Sıralama" #: filters.py:181 msgid "Which field to use when ordering the results." msgstr "" #: filters.py:287 msgid "ascending" msgstr "artan" #: filters.py:288 msgid "descending" msgstr "azalan" #: pagination.py:174 msgid "A page number within the paginated result set." msgstr "" #: pagination.py:179 pagination.py:372 pagination.py:590 msgid "Number of results to return per page." msgstr "" #: pagination.py:189 msgid "Invalid page." msgstr "Geçersiz sayfa." #: pagination.py:374 msgid "The initial index from which to return the results." msgstr "" #: pagination.py:581 msgid "The pagination cursor value." msgstr "" #: pagination.py:583 msgid "Invalid cursor" msgstr "Geçersiz imleç." #: relations.py:246 #, python-brace-format msgid "Invalid pk \"{pk_value}\" - object does not exist." msgstr "Geçersiz pk \"{pk_value}\" - obje bulunamadı." #: relations.py:247 #, python-brace-format msgid "Incorrect type. Expected pk value, received {data_type}." msgstr "Hatalı tip. Pk değeri beklenirken, alınan {data_type}." #: relations.py:280 msgid "Invalid hyperlink - No URL match." msgstr "Geçersiz hyper link - URL maçı yok." #: relations.py:281 msgid "Invalid hyperlink - Incorrect URL match." msgstr "Geçersiz hyper link - Yanlış URL maçı." #: relations.py:282 msgid "Invalid hyperlink - Object does not exist." msgstr "Geçersiz hyper link - Nesne yok.." #: relations.py:283 #, python-brace-format msgid "Incorrect type. Expected URL string, received {data_type}." msgstr "Hatalı tip. URL metni bekleniyor, {data_type} alındı." #: relations.py:448 #, python-brace-format msgid "Object with {slug_name}={value} does not exist." msgstr "{slug_name}={value} değerini taşıyan obje bulunamadı." #: relations.py:449 msgid "Invalid value." msgstr "Geçersiz değer." #: schemas/utils.py:32 msgid "unique integer value" msgstr "" #: schemas/utils.py:34 msgid "UUID string" msgstr "" #: schemas/utils.py:36 msgid "unique value" msgstr "" #: schemas/utils.py:38 #, python-brace-format msgid "A {value_type} identifying this {name}." msgstr "" #: serializers.py:337 #, python-brace-format msgid "Invalid data. Expected a dictionary, but got {datatype}." msgstr "Geçersiz veri. Bir sözlük bekleniyor, ama var {datatype}." #: templates/rest_framework/admin.html:116 #: templates/rest_framework/base.html:136 msgid "Extra Actions" msgstr "" #: templates/rest_framework/admin.html:130 #: templates/rest_framework/base.html:150 msgid "Filters" msgstr "Filtreler" #: templates/rest_framework/base.html:37 msgid "navbar" msgstr "" #: templates/rest_framework/base.html:75 msgid "content" msgstr "" #: templates/rest_framework/base.html:78 msgid "request form" msgstr "" #: templates/rest_framework/base.html:157 msgid "main content" msgstr "" #: templates/rest_framework/base.html:173 msgid "request info" msgstr "" #: templates/rest_framework/base.html:177 msgid "response info" msgstr "" #: templates/rest_framework/horizontal/radio.html:4 #: templates/rest_framework/inline/radio.html:3 #: templates/rest_framework/vertical/radio.html:3 msgid "None" msgstr "Hiç kimse" #: templates/rest_framework/horizontal/select_multiple.html:4 #: templates/rest_framework/inline/select_multiple.html:3 #: templates/rest_framework/vertical/select_multiple.html:3 msgid "No items to select." msgstr "Seçenek yok." #: validators.py:39 msgid "This field must be unique." msgstr "Bu alan benzersiz olmalıdır." #: validators.py:89 #, python-brace-format msgid "The fields {field_names} must make a unique set." msgstr "{field_names} alanları benzersiz bir set yapmak gerekir." #: validators.py:171 #, python-brace-format msgid "Surrogate characters are not allowed: U+{code_point:X}." msgstr "" #: validators.py:243 #, python-brace-format msgid "This field must be unique for the \"{date_field}\" date." msgstr "Bu alan \"{date_field}\" tarihine göre eşsiz olmalı." #: validators.py:258 #, python-brace-format msgid "This field must be unique for the \"{date_field}\" month." msgstr "Bu alan \"{date_field}\" ayına göre eşsiz olmalı." #: validators.py:271 #, python-brace-format msgid "This field must be unique for the \"{date_field}\" year." msgstr "Bu alan \"{date_field}\" yılına göre eşsiz olmalı." #: versioning.py:40 msgid "Invalid version in \"Accept\" header." msgstr "\"Kabul et\" başlığında geçersiz sürümü." #: versioning.py:71 msgid "Invalid version in URL path." msgstr "URL yolunda geçersiz sürüm." #: versioning.py:116 msgid "Invalid version in URL path. Does not match any version namespace." msgstr "URL yolunda geçersiz sürüm. Sürüm adlarında eşleşen bulunamadı." #: versioning.py:148 msgid "Invalid version in hostname." msgstr "Hostname geçersiz sürümü." #: versioning.py:170 msgid "Invalid version in query parameter." msgstr "Sorgu parametresi geçersiz sürümü."
Gettext Catalog
3
scratchmex/django-rest-framework
rest_framework/locale/tr_TR/LC_MESSAGES/django.po
[ "BSD-3-Clause" ]
<template> <v-card max-width="500" class="mx-auto" > <v-toolbar :color="selection.length ? 'grey darken-4' : 'deep-purple accent-4'" dark > <v-app-bar-nav-icon v-if="!selection.length"></v-app-bar-nav-icon> <v-btn v-else icon @click="selection = []" > <v-icon>mdi-close</v-icon> </v-btn> <v-toolbar-title> {{ selection.length ? `${selection.length} selected` : 'Photos' }} </v-toolbar-title> <v-spacer></v-spacer> <v-scale-transition> <v-btn v-if="selection.length" key="export" icon > <v-icon>mdi-export-variant</v-icon> </v-btn> </v-scale-transition> <v-scale-transition> <v-btn v-if="selection.length" key="delete" icon > <v-icon>mdi-delete</v-icon> </v-btn> </v-scale-transition> <v-btn icon> <v-icon>mdi-dots-vertical</v-icon> </v-btn> </v-toolbar> <v-card-text> <v-select v-model="selection" :items="items" multiple label="Select an option" ></v-select> </v-card-text> </v-card> </template> <script> export default { data: () => ({ selection: [], items: ['Foo', 'Bar', 'Fizz', 'Buzz'], }), } </script>
Vue
4
ahmadiqbal1/vuetify
packages/docs/src/examples/toolbars/intermediate/contextual-action-bar.vue
[ "MIT" ]
// POV 3.x input script : plot.pov // try povray +H834 +W669 -Iplot.pov -Oplot.pov.tga +P +X +A +FT +C #if (version < 3.5) #error "POV3DisplayDevice has been compiled for POV-Ray 3.5 or above.\nPlease upgrade POV-Ray or recompile VMD." #end #declare VMD_clip_on=array[3] {0, 0, 0}; #declare VMD_clip=array[3]; #declare VMD_scaledclip=array[3]; #declare VMD_line_width=0.0020; #macro VMDC ( C1 ) texture { pigment { rgbt C1 }} #end #macro VMD_point (P1, R1, C1) #local T = texture { finish { ambient 1.0 diffuse 0.0 phong 0.0 specular 0.0 } pigment { C1 } } #if(VMD_clip_on[2]) intersection { sphere {P1, R1 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} VMD_clip[2] } #else sphere {P1, R1 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #end #macro VMD_line (P1, P2, C1) #local T = texture { finish { ambient 1.0 diffuse 0.0 phong 0.0 specular 0.0 } pigment { C1 } } #if(VMD_clip_on[2]) intersection { cylinder {P1, P2, VMD_line_width texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} VMD_clip[2] } #else cylinder {P1, P2, VMD_line_width texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #end #macro VMD_sphere (P1, R1, C1) #local T = texture { pigment { C1 } } #if(VMD_clip_on[2]) intersection { sphere {P1, R1 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} VMD_clip[2] } #else sphere {P1, R1 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #end #macro VMD_cylinder (P1, P2, R1, C1, O1) #local T = texture { pigment { C1 } } #if(VMD_clip_on[2]) intersection { cylinder {P1, P2, R1 #if(O1) open #end texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} VMD_clip[2] } #else cylinder {P1, P2, R1 #if(O1) open #end texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #end #macro VMD_cone (P1, P2, R1, C1) #local T = texture { pigment { C1 } } #if(VMD_clip_on[2]) intersection { cone {P1, R1, P2, VMD_line_width texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} VMD_clip[2] } #else cone {P1, R1, P2, VMD_line_width texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #end #macro VMD_triangle (P1, P2, P3, N1, N2, N3, C1) #local T = texture { pigment { C1 } } smooth_triangle {P1, N1, P2, N2, P3, N3 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end #macro VMD_tricolor (P1, P2, P3, N1, N2, N3, C1, C2, C3) #local NX = P2-P1; #local NY = P3-P1; #local NZ = vcross(NX, NY); #local T = texture { pigment { average pigment_map { [1 gradient x color_map {[0 rgb 0] [1 C2*3]}] [1 gradient y color_map {[0 rgb 0] [1 C3*3]}] [1 gradient z color_map {[0 rgb 0] [1 C1*3]}] } matrix <1.01,0,1,0,1.01,1,0,0,1,-.002,-.002,-1> matrix <NX.x,NX.y,NX.z,NY.x,NY.y,NY.z,NZ.x,NZ.y,NZ.z,P1.x,P1.y,P1.z> } } smooth_triangle {P1, N1, P2, N2, P3, N3 texture {T} #if(VMD_clip_on[1]) clipped_by {VMD_clip[1]} #end no_shadow} #end camera { orthographic location <0.0000, 0.0000, -2.0000> look_at <-0.0000, -0.0000, 2.0000> up <0.0000, 3.0000, 0.0000> right <2.4065, 0.0000, 0.0000> } light_source { <-0.1000, 0.1000, -1.0000> color rgb<1.000, 1.000, 1.000> parallel point_at <0.0, 0.0, 0.0> } light_source { <1.0000, 2.0000, -0.5000> color rgb<1.000, 1.000, 1.000> parallel point_at <0.0, 0.0, 0.0> } background { color rgb<0.350, 0.350, 0.350> } #default { texture { finish { ambient 0.000 diffuse 0.650 phong 0.1 phong_size 40.000 specular 0.500 } } } #declare VMD_line_width=0.0020; VMD_sphere(<-1.1602,-1.1602,1.1602>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<1.1608,-1.1602,1.1602>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<-1.1602,1.1608,1.1602>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<1.1608,1.1608,1.1602>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<-1.1602,-1.1602,-1.1608>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<1.1608,-1.1602,-1.1608>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<-1.1602,1.1608,-1.1608>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_sphere(<1.1608,1.1608,-1.1608>,0.0241,rgbt<0.000,0.000,1.000,0.000>) VMD_cylinder(<-1.16020477,-1.16018343,1.16017652>,<1.16081965,-1.16018343,1.16017652>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,-1.16018343,1.16017652>,<-1.16020477,1.16084099,1.16017652>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,-1.16018343,1.16017652>,<-1.16020477,-1.16018343,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<1.16081965,-1.16018343,1.16017652>,<1.16081965,-1.16018343,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,1.16084099,1.16017652>,<1.16081965,1.16084099,1.16017652>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,-1.16018343,-1.16084790>,<-1.16020477,1.16084099,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<1.16081965,-1.16018343,1.16017652>,<1.16081965,1.16084099,1.16017652>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,1.16084099,1.16017652>,<-1.16020477,1.16084099,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<-1.16020477,-1.16018343,-1.16084790>,<1.16081965,-1.16018343,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<1.16081965,1.16084099,-1.16084790>,<1.16081965,1.16084099,1.16017652>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<1.16081965,1.16084099,-1.16084790>,<1.16081965,-1.16018343,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) VMD_cylinder(<1.16081965,1.16084099,-1.16084790>,<-1.16020477,1.16084099,-1.16084790>0.0239,rgbt<0.000,0.000,1.000,0.000>,1) // MoleculeID: 1 ReprID: 0 Beginning CPK // MoleculeID: 1 ReprID: 0 Beginning VDW VMD_sphere(<-0.6664,-0.4938,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5801,-0.5801,0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5211,0.3534,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.3075,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.1933,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,0.1237,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,0.4938,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5801,0.5801,0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5211,-0.3534,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.3076,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.1933,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,-0.1621,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,-0.0576,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,0.0162,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,-0.4938,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5801,-0.5801,-0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5211,0.3534,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.3075,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.1933,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,0.1237,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,0.4938,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5801,0.5801,-0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5211,-0.3534,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.3076,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.1933,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,-0.0576,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,0.0162,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,-0.6664,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,-0.5211,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.5801,-0.3075>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.5801,-0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,-0.5059,-0.1622>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,-0.4860,-0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,-0.5431,0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,0.6663,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,0.5211,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.5801,0.3076>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.5801,0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,0.5268,0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,0.6663,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,0.5211,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.5801,-0.3075>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.5801,-0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,0.5059,-0.1622>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,0.4860,-0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,0.5431,0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,-0.6664,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,-0.5211,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.5801,0.3076>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.5801,0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,-0.5268,0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,-0.6664,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,-0.5211,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3075,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1932,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1622,-0.5059,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0576,-0.4860,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0163,-0.5431,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,-0.6664,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,-0.5211,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3076,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1933,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1237,-0.5268,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,0.6663,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,0.5211,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3075,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1932,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1622,0.5059,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0576,0.4860,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0163,0.5431,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,0.6663,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,0.5211,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3076,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1933,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1237,0.5268,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,-0.6664,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5801,-0.5801,-0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3534,-0.5211,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3075,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1932,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1622,-0.5059,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0576,-0.4860,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0163,-0.5431,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,0.6663,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5801,0.5801,-0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3534,0.5211,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3076,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1933,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1237,0.5268,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,0.6663,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5801,0.5801,0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3534,0.5211,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.3075,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1932,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.1622,0.5059,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0576,0.4860,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0163,0.5431,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,-0.6664,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5801,-0.5801,0.5801>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3534,-0.5211,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.3076,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1933,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.1237,-0.5268,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,-0.6664,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,-0.5211,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.5801,0.3076>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.5801,0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,-0.5268,0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,-0.6664,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,-0.5211,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.5801,-0.3075>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.5801,-0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,-0.5059,-0.1622>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,-0.4860,-0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,-0.5431,0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,0.6663,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,0.5211,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.5801,0.3076>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.5801,0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,0.5268,0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,0.6663,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,0.5211,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.5801,-0.3075>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.5801,-0.1933>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,0.5059,-0.1622>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,0.4860,-0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,0.5431,0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,-0.4938,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,0.3534,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.3075,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.1933,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6664,0.4938,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.5211,-0.3534,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.3076,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.1933,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,-0.1621,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,-0.0576,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,0.0162,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,-0.4938,0.6664>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,0.3534,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.3075,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.1933,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,0.1237,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6663,0.4938,-0.6663>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.5211,-0.3534,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.3076,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.1933,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,-0.1621,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,-0.0576,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,0.0162,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,-0.8068,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.8526,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.9669,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,-1.0365,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,0.8067,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.8526,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.9669,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,0.9981,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,1.1025,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,-1.1439,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,-0.8068,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.8526,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.9669,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,-1.0365,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,0.8067,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.8526,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.9669,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,0.9981,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,1.1025,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,-1.1439,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,0.6390,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.5801,0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.5801,0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,0.6542,0.9980>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,0.6742,1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,0.6171,-1.1440>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,-0.6391,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.5801,-0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.5801,-0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,-0.6334,-1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,-0.6391,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.5801,0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.5801,0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,-0.6742,1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,-0.6171,-1.1440>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,0.6390,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.5801,-0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.5801,-0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,0.6334,-1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,0.4938,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,0.6390,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.1237,0.6334,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,0.4938,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,0.6390,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.1622,0.6542,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0576,0.6742,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0162,0.6171,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,-0.4938,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,-0.6391,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.1237,-0.6334,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,-0.4938,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,-0.6391,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.1622,-0.6543,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0576,-0.6742,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0162,-0.6171,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,0.4938,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,0.6390,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.1237,0.6334,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,-0.4938,0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,-0.6391,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.1622,-0.6543,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0576,-0.6742,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0162,-0.6171,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4938,-0.4938,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<0.3534,-0.6391,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.1237,-0.6334,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4938,0.4938,-0.4938>,0.0289,rgbt<0.600,0.600,0.600,0.000>) VMD_sphere(<-0.3534,0.6390,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.1622,0.6542,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.0576,0.6742,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.0162,0.6171,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,0.6390,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.5801,-0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.5801,-0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,0.6334,-1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,0.6390,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.5801,0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.5801,0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,0.6542,0.9980>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,0.6742,1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,0.6171,-1.1440>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,-0.6391,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.5801,-0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.5801,-0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,-0.6334,-1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,-0.6391,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.5801,0.8526>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.5801,0.9669>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,-0.6543,0.9980>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,-0.6742,1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,-0.6171,-1.1440>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,-0.8068,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,-0.8526,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,-0.9669,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5268,-1.0365,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5211,0.8067,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.5801,0.8526,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5801,0.9669,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5059,0.9981,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4860,1.1025,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.5431,-1.1439,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,-0.8068,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,-0.8526,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,-0.9669,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5267,-1.0365,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5211,0.8067,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.5801,0.8526,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5801,0.9669,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5059,0.9981,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4859,1.1025,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.5431,-1.1439,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.3534,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,0.1622,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,0.0576,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,-0.0162,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.3534,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,-0.1237,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.3534,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,0.1622,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,0.0576,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,-0.0162,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.3534,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,-0.1237,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.5211,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6390,0.5211,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,0.5059,-0.9981>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,0.4860,-1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,0.5431,1.1439>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.5211,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,0.5268,1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.5211,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,-0.5059,-0.9981>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,-0.4860,-1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,-0.5431,1.1439>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,-0.5211,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.8526,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9670,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9980,-0.5059,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1026,-0.4860,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1439,-0.5431,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,-0.5211,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.8526,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.9669,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.0364,-0.5268,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,0.5211,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.8526,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9670,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9980,0.5059,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1026,0.4860,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1439,0.5431,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,0.5211,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.8526,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.9669,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.0364,0.5268,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,-0.5211,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.8526,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9670,-0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9980,-0.5059,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1026,-0.4860,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1439,-0.5431,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,0.5211,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.8526,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.9669,0.5801,0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.0364,0.5268,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,0.5211,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.8526,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9670,0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.9980,0.5059,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1026,0.4860,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1439,0.5431,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,-0.5211,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.8526,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.9669,-0.5801,-0.5801>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.0364,-0.5268,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.5211,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,-0.5059,-0.9981>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,-0.4860,-1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,-0.5431,1.1439>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.5211,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,-0.5268,1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.5211,-0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,0.5059,-0.9981>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,0.4860,-1.1026>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,0.5431,1.1439>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.5211,0.8068>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,0.5268,1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.3534,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,0.1622,0.6543>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,0.0576,0.6741>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,-0.0162,0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.3534,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,-0.1237,-0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.3534,-0.6390>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,0.1622,-0.6542>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,0.0576,-0.6742>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,-0.0162,-0.6171>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.3534,0.6391>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,-0.1237,0.6334>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.8068,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,-0.9980,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,-1.1026,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,1.1440,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.8067,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,1.0365,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.8068,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,-0.9980,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,-1.1026,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,1.1440,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.8067,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,1.0365,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.6390,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,0.6334,-0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.6391,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6742,-0.6742,0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,-0.6171,-0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.6391,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,-0.6334,-0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.6390,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,0.6542,0.1621>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,0.6742,0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,0.6171,-0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,0.6390,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-1.0365,0.6334,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,0.6390,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.9980,0.6542,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1025,0.6742,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1439,0.6171,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,-0.6391,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-1.0365,-0.6334,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,-0.6391,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.9980,-0.6543,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1025,-0.6742,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1439,-0.6171,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,0.6390,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-1.0365,0.6334,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,-0.6391,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.9980,-0.6543,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1025,-0.6742,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1439,-0.6171,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.8068,-0.6391,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-1.0365,-0.6334,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.8067,0.6390,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.9980,0.6542,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<1.1025,0.6742,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-1.1439,0.6171,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.6390,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,0.6542,0.1621>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,0.6742,0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,0.6171,-0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.6390,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,0.6334,-0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.6391,0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,-0.6543,0.1621>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,-0.6742,0.0576>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,-0.6171,-0.0162>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.6391,-0.3534>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,-0.6334,-0.1237>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,-0.8068,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6542,-0.9980,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6742,-1.1026,-0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6170,1.1440,-0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6390,0.8067,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<0.6334,1.0365,0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,-0.8068,0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6543,-0.9980,0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6742,-1.1026,0.4860>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6171,1.1440,0.5431>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.6391,0.8067,-0.5211>,0.0251,rgbt<1.000,0.000,0.000,0.000>) VMD_sphere(<-0.6334,1.0365,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.2126,0.6919,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.0388,0.7242,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.1454,0.6828,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.2125,0.4683,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.0387,0.4359,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.1462,0.4775,-0.4775>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.1455,0.4773,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.2126,0.6919,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.0388,0.7242,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.1454,0.6828,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.2125,0.4683,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.0387,0.4359,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.9476,0.6919,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.0139,0.4775,0.6826>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.9476,0.6919,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.0147,0.4773,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.1462,-0.4775,0.4775>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.0387,-0.4360,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.2125,-0.4683,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.1454,-0.6829,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.0388,-0.7242,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.2126,-0.6918,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.0387,-0.4360,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.2125,-0.4683,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.1454,-0.6829,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.0388,-0.7242,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.2126,-0.6918,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.1455,-0.4774,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,0.2125,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,0.0387,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,-0.1455,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,-0.0388,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,-0.2126,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,-0.0388,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4774,0.1455,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,0.2125,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,0.0387,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,-0.1455,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,-0.0388,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,-0.2126,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4773,0.1455,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,0.2125,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,0.0387,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,-0.1455,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,-0.2126,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,-0.0388,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,-0.1455,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,0.0387,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,0.2125,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4775,0.1462,0.4775>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.0147,-0.4774,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.9476,-0.6918,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.0139,-0.4775,-0.6827>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.9476,-0.6918,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,-0.9477,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4773,-1.0148,0.6829>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,-0.9477,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4775,-1.0140,-0.6827>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4775,-1.0140,0.6826>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,-0.9477,0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4774,-1.0148,-0.6828>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,-0.9477,-0.4683>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.0148,-0.6829,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.9477,-0.4683,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.0148,-0.6829,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.9477,-0.4683,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.9477,0.4683,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.0148,0.6828,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.0148,0.6828,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,1.0147,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.9477,0.4683,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,0.9476,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,0.9476,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,1.0147,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,1.0147,0.4774>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,0.9476,0.6918>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,1.0147,-0.4773>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,0.9476,-0.6919>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,0.7242,0.0388>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,0.6919,0.2126>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,0.6828,-0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,0.4683,-0.2125>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,0.4359,-0.0387>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4774,0.4773,0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,0.7242,0.0388>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,0.6919,0.2126>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4775,0.4775,0.1462>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,0.6828,-0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,0.4683,-0.2125>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,0.4359,-0.0387>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4775,-0.4775,0.1462>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,-0.4360,-0.0387>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,-0.4683,-0.2125>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,-0.6829,-0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,-0.7242,0.0388>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,-0.6918,0.2126>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,-0.4360,-0.0387>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4773,-0.4774,0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,-0.4683,-0.2125>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,-0.6829,-0.1455>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,-0.7242,0.0388>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6828,0.4773,1.0147>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4683,0.6919,0.9477>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,-0.4774,1.0147>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,-0.6918,0.9477>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4684,0.6919,0.9477>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6829,0.4773,1.0147>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,-0.4683,-0.9476>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4775,-0.6826,-1.0140>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4773,0.6828,-1.0147>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6918,0.4683,-0.9476>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4775,0.6827,-1.0140>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,0.4683,-0.9476>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.6918,-0.4683,-0.9476>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4774,-0.6829,-1.0147>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.1214,0.4359,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.1214,0.4359,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.1214,-0.4360,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-1.1214,-0.4360,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,-1.1214,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,-1.1214,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,-1.1214,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,-1.1214,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.1214,-0.7242,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.1214,-0.7242,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.1214,0.7242,-0.4359>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<1.1214,0.7242,0.4360>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,1.1214,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,1.1214,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,1.1214,-0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,1.1214,0.7242>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,-0.7242,1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,-0.7242,1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.4359,0.7242,1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.4360,0.7242,1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,0.4359,-1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,0.4359,-1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.7242,-0.4360,-1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.7242,-0.4360,-1.1214>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.5268,0.1237,-0.5268>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4724,0.1533,-0.4723>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<-0.5059,-0.1621,-0.5059>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<-0.4638,-0.2192,-0.4638>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6542,-0.6543,0.1621>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6964,-0.6964,0.2192>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.5059,-0.6543,0.9980>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.4637,-0.6964,0.9410>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_sphere(<0.6334,-0.5268,1.0365>,0.0289,rgbt<0.250,0.750,0.750,0.000>) VMD_sphere(<0.6878,-0.4724,1.0069>,0.0193,rgbt<1.000,1.000,1.000,0.000>) VMD_cylinder(<-0.52111340,0.35341752,0.52108514>,<-0.55060816,0.33047724,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,0.58007467>,<-0.60959762,0.33047724,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,0.58007467>,<-0.58010292,0.25039792,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,0.58007467>,<-0.55060816,0.33047724,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,0.58007467>,<-0.61719304,0.17772138,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,0.58007467>,<-0.55346125,0.15848231,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,0.58007467>,<-0.58010292,0.25039792,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,0.52679133>,<-0.53495473,0.06995952,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,0.52679133>,<-0.55346125,0.15848231,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,0.52679133>,<-0.50210565,0.13457811,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.35337681,0.52108514>,<0.55060625,-0.33047497,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,0.58007467>,<0.60955715,-0.33047497,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,0.58007467>,<0.55060625,-0.33047497,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,0.58007467>,<0.58010089,-0.25043434,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,0.58007467>,<0.60674262,-0.15848017,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,0.58007467>,<0.58010089,-0.25043434,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,0.58007467>,<0.54301083,-0.17771930,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,0.50589442>,<0.48710561,-0.18735808,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,0.50589442>,<0.49593496,-0.10986197,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,0.50589442>,<0.54301083,-0.17771930,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,0.48599988>,<0.49593496,-0.10986197,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,0.48599988>,<0.46092665,-0.04817367,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,0.48599988>,<0.51451850,-0.02068377,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,0.54306161>,<0.58006239,-0.00001824,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,0.54306161>,<0.51451850,-0.02068377,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,0.54306161>,<0.53491437,0.06995952,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.35341752,-0.52113974>,<0.55060625,0.33047724,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,-0.58012915>,<0.55060625,0.33047724,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,-0.58012915>,<0.58010089,0.25039792,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,-0.58012915>,<0.60955715,0.33047724,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,-0.58012915>,<0.55342066,0.15848231,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,-0.58012915>,<0.61715245,0.17772138,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,-0.58012915>,<0.58010089,0.25039792,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,-0.52676880>,<0.50202656,0.13457811,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,-0.52676880>,<0.53491437,0.06995952,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,-0.52676880>,<0.55342066,0.15848231,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.35337681,-0.52113974>,<-0.55060816,-0.33047497,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,-0.58012915>,<-0.55060816,-0.33047497,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,-0.58012915>,<-0.60959762,-0.33047497,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,-0.58012915>,<-0.58010292,-0.25043434,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,-0.58012915>,<-0.54301280,-0.17771930,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,-0.58012915>,<-0.58010292,-0.25043434,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,-0.58012915>,<-0.60674453,-0.15848017,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,-0.48597729>,<-0.49597538,-0.10986197,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,-0.48597729>,<-0.46100581,-0.04817367,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,-0.48597729>,<-0.51455897,-0.02068377,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,-0.54311621>,<-0.51455897,-0.02068377,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,-0.54311621>,<-0.58010286,-0.00001824,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,-0.54311621>,<-0.53495473,0.06995952,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.52109206,-0.35342443>,<-0.55060816,-0.55058682,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.30754375>,<-0.58010292,-0.58008158,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.30754375>,<-0.60959762,-0.60957628,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.30754375>,<-0.55060816,-0.55058682,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.19326603>,<-0.60674453,-0.60672319,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.19326603>,<-0.54301280,-0.54299146,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.19326603>,<-0.58010292,-0.58008158,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.50590134,-0.16219056>,<-0.49597538,-0.49595404,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.50590134,-0.16219056>,<-0.54301280,-0.54299146,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.50590134,-0.16219056>,<-0.48714620,-0.48712486,-0.18736708>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.48600680,-0.05762875>,<-0.51455897,-0.51453763,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.48600680,-0.05762875>,<-0.49597538,-0.49595404,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.48600680,-0.05762875>,<-0.46100581,-0.46098447,-0.04818273>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-0.54306853,0.01624298>,<-0.53495473,-0.53493339,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-0.54306853,0.01624298>,<-0.58010286,-0.58008152,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-0.54306853,0.01624298>,<-0.51455897,-0.51453763,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.52113283,0.35336989>,<-0.55060816,0.55062759,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.30756629>,<-0.55060816,0.55062759,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.30756629>,<-0.60959762,0.60957849,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.30756629>,<-0.58010292,0.58012223,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.19328868>,<-0.58010292,0.58012223,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.19328868>,<-0.55346125,0.55344200,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.19328868>,<-0.61719304,0.61717379,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.52676189,0.12365782>,<-0.55346125,0.55344200,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.52676189,0.12365782>,<-0.50210565,0.50204790,0.13456893>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.52676189,0.12365782>,<-0.53495473,0.53493571,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.52113283,-0.35342443>,<0.55060625,0.55062759,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.30754375>,<0.58010089,0.58012223,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.30754375>,<0.55060625,0.55062759,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.30754375>,<0.60955715,0.60957849,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.19326603>,<0.54301083,0.54303217,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.19326603>,<0.60674262,0.60676396,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.19326603>,<0.58010089,0.58012223,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.50594199,-0.16219056>,<0.49593496,0.49595630,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.50594199,-0.16219056>,<0.48710561,0.48712695,-0.18736708>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.50594199,-0.16219056>,<0.54301083,0.54303217,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,0.48597038,-0.05762875>,<0.46092665,0.46094799,-0.04818273>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,0.48597038,-0.05762875>,<0.49593496,0.49595630,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,0.48597038,-0.05762875>,<0.51451850,0.51453984,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.54310930,0.01624298>,<0.53491437,0.53493571,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.54310930,0.01624298>,<0.51451850,0.51453984,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.54310930,0.01624298>,<0.58006239,0.58008373,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.52109206,0.35336989>,<0.55060625,-0.55058682,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.30756629>,<0.60955715,-0.60957628,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.30756629>,<0.55060625,-0.55058682,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.30756629>,<0.58010089,-0.58008158,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.19328868>,<0.58010089,-0.58008158,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.19328868>,<0.55342066,-0.55343992,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.19328868>,<0.61715245,-0.61717170,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.52679825,0.12365782>,<0.55342066,-0.55343992,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.52679825,0.12365782>,<0.50202656,-0.50208431,0.13456893>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.52679825,0.12365782>,<0.53491437,-0.53493339,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,-0.52109206,0.52108514>,<0.33045590,-0.55058682,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,0.58007467>,<0.33045590,-0.60957628,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,0.58007467>,<0.25037658,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,0.58007467>,<0.33045590,-0.55058682,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,0.58007467>,<0.15846097,-0.60672319,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,0.58007467>,<0.17770004,-0.54299146,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,0.58007467>,<0.25037658,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,0.50589442>,<0.10988140,-0.49595404,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,0.50589442>,<0.17770004,-0.54299146,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,0.50589442>,<0.18733883,-0.48712486,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,0.48599988>,<0.02066457,-0.51453763,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,0.48599988>,<0.10988140,-0.49595404,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,0.48599988>,<0.04815447,-0.46098447,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,0.54306161>,<-0.00003958,-0.58008152,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,0.54306161>,<-0.06997871,-0.53493339,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,0.54306161>,<0.02066457,-0.51453763,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,-0.52109206,-0.52113974>,<-0.33049631,-0.55058682,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,-0.58012915>,<-0.33049631,-0.55058682,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,-0.58012915>,<-0.33049631,-0.60957628,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,-0.58012915>,<-0.25045568,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,-0.58012915>,<-0.25045568,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,-0.58012915>,<-0.15850151,-0.55343992,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,-0.58012915>,<-0.17774063,-0.61717170,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,-0.52676880>,<-0.13459718,-0.50208431,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,-0.52676880>,<-0.15850151,-0.55343992,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,-0.52676880>,<-0.06997871,-0.53493339,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,0.52113283,-0.52113974>,<0.33045590,0.55062759,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,-0.58012915>,<0.33045590,0.55062759,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,-0.58012915>,<0.25037658,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,-0.58012915>,<0.33045590,0.60957849,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,-0.58012915>,<0.17770004,0.54303217,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,-0.58012915>,<0.15846097,0.60676396,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,-0.58012915>,<0.25037658,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,-0.50594890>,<0.10988140,0.49595630,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,-0.50594890>,<0.18733883,0.48712695,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,-0.50594890>,<0.17770004,0.54303217,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,-0.48597729>,<0.04815447,0.46094799,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,-0.48597729>,<0.10988140,0.49595630,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,-0.48597729>,<0.02066457,0.51453984,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,-0.54311621>,<0.02066457,0.51453984,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,-0.54311621>,<-0.06997871,0.53493571,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,-0.54311621>,<-0.00003958,0.58008373,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,0.52113283,0.52108514>,<-0.33049631,0.55062759,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,0.58007467>,<-0.33049631,0.60957849,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,0.58007467>,<-0.33049631,0.55062759,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,0.58007467>,<-0.25045568,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,0.58007467>,<-0.17774063,0.61717379,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,0.58007467>,<-0.25045568,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,0.58007467>,<-0.15850151,0.55344200,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,0.52679133>,<-0.13459718,0.50204790,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,0.52679133>,<-0.15850151,0.55344200,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,0.52679133>,<-0.06997871,0.53493571,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,-0.52109206,-0.52113974>,<0.33045590,-0.55058682,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,-0.58012915>,<0.33045590,-0.55058682,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,-0.58012915>,<0.33045590,-0.60957628,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,-0.58008158,-0.58012915>,<0.25037658,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,-0.58012915>,<0.17770004,-0.54299146,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,-0.58012915>,<0.15846097,-0.60672319,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,-0.58008158,-0.58012915>,<0.25037658,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,-0.50594890>,<0.10988140,-0.49595404,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,-0.50594890>,<0.18733883,-0.48712486,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,-0.50590134,-0.50594890>,<0.17770004,-0.54299146,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,-0.48597729>,<0.10988140,-0.49595404,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,-0.48597729>,<0.04815447,-0.46098447,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,-0.48600680,-0.48597729>,<0.02066457,-0.51453763,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,-0.54311621>,<0.02066457,-0.51453763,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,-0.54311621>,<-0.00003958,-0.58008152,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,-0.54306853,-0.54311621>,<-0.06997871,-0.53493339,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,0.52113283,-0.52113974>,<-0.33049631,0.55062759,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,-0.58012915>,<-0.33049631,0.55062759,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,-0.58012915>,<-0.33049631,0.60957849,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,0.58012223,-0.58012915>,<-0.25045568,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,-0.58012915>,<-0.25045568,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,-0.58012915>,<-0.15850151,0.55344200,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,0.58012223,-0.58012915>,<-0.17774063,0.61717379,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,-0.52676880>,<-0.13494432,0.50212514,-0.50213206>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,-0.52676880>,<-0.15850151,0.55344200,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,0.52676189,-0.52676880>,<-0.06997871,0.53493571,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,0.52113283,0.52108514>,<0.33045590,0.55062759,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,0.58007467>,<0.33045590,0.60957849,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,0.58007467>,<0.33045590,0.55062759,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.30751550,0.58012223,0.58007467>,<0.25037658,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,0.58007467>,<0.15846097,0.60676396,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,0.58007467>,<0.17770004,0.54303217,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.19323778,0.58012223,0.58007467>,<0.25037658,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,0.50589442>,<0.10988140,0.49595630,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,0.50589442>,<0.18733883,0.48712695,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.16216230,0.50594199,0.50589442>,<0.17770004,0.54303217,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,0.48599988>,<0.10988140,0.49595630,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,0.48599988>,<0.02066457,0.51453984,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.05760050,0.48597038,0.48599988>,<0.04815447,0.46094799,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,0.54306161>,<-0.00003958,0.58008373,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,0.54306161>,<0.02066457,0.51453984,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.01627123,0.54310930,0.54306161>,<-0.06997871,0.53493571,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,-0.52109206,0.52108514>,<-0.33049631,-0.55058682,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,0.58007467>,<-0.33049631,-0.60957628,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,0.58007467>,<-0.33049631,-0.55058682,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.30759454,-0.58008158,0.58007467>,<-0.25045568,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,0.58007467>,<-0.17774063,-0.61717170,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,0.58007467>,<-0.25045568,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.19331694,-0.58008158,0.58007467>,<-0.15850151,-0.55343992,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,0.52679133>,<-0.15850151,-0.55343992,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,0.52679133>,<-0.13494432,-0.50216144,0.50215453>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.12368608,-0.52679825,0.52679133>,<-0.06997871,-0.53493339,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.52109206,0.35336989>,<-0.55060816,-0.55058682,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.30756629>,<-0.60959762,-0.60957628,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.30756629>,<-0.55060816,-0.55058682,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.30756629>,<-0.58010292,-0.58008158,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.19328868>,<-0.58010292,-0.58008158,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.19328868>,<-0.55346125,-0.55343992,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.19328868>,<-0.61719304,-0.61717170,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.52679825,0.12365782>,<-0.55346125,-0.55343992,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.52679825,0.12365782>,<-0.50218278,-0.50216144,0.13491607>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.52679825,0.12365782>,<-0.53495473,-0.53493339,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.52109206,-0.35342443>,<0.55060625,-0.55058682,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.30754375>,<0.58010089,-0.58008158,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.30754375>,<0.60955715,-0.60957628,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.30754375>,<0.55060625,-0.55058682,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.19326603>,<0.60674262,-0.60672319,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.19326603>,<0.54301083,-0.54299146,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.19326603>,<0.58010089,-0.58008158,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.50590134,-0.16219056>,<0.49593496,-0.49595404,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.50590134,-0.16219056>,<0.48710561,-0.48712486,-0.18736708>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.50590134,-0.16219056>,<0.54301083,-0.54299146,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.48600680,-0.05762875>,<0.51451850,-0.51453763,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.48600680,-0.05762875>,<0.46092665,-0.46098447,-0.04818273>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.48600680,-0.05762875>,<0.49593496,-0.49595404,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-0.54306853,0.01624298>,<0.53491437,-0.53493339,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-0.54306853,0.01624298>,<0.58006239,-0.58008152,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-0.54306853,0.01624298>,<0.51451850,-0.51453763,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.52113283,0.35336989>,<0.55060625,0.55062759,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.30756629>,<0.55060625,0.55062759,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.30756629>,<0.60955715,0.60957849,0.33046806>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.30756629>,<0.58010089,0.58012223,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.19328868>,<0.58010089,0.58012223,0.25042742>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.19328868>,<0.55342066,0.55344200,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.19328868>,<0.61715245,0.61717379,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.52676189,0.12365782>,<0.55342066,0.55344200,0.15847325>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.52676189,0.12365782>,<0.50210381,0.50212514,0.13491607>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.52676189,0.12365782>,<0.53491437,0.53493571,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.52113283,-0.35342443>,<-0.55060816,0.55062759,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.30754375>,<-0.58010292,0.58012223,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.30754375>,<-0.55060816,0.55062759,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.30754375>,<-0.60959762,0.60957849,-0.33048415>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.19326603>,<-0.54301280,0.54303217,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.19326603>,<-0.60674453,0.60676396,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.19326603>,<-0.58010292,0.58012223,-0.25040483>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.50594199,-0.16219056>,<-0.49597538,0.49595630,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.50594199,-0.16219056>,<-0.48714620,0.48712695,-0.18736708>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.50594199,-0.16219056>,<-0.54301280,0.54303217,-0.17772830>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,0.48597038,-0.05762875>,<-0.46100581,0.46094799,-0.04818273>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,0.48597038,-0.05762875>,<-0.51455897,0.51453984,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,0.48597038,-0.05762875>,<-0.49597538,0.49595630,-0.10990965>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.54310930,0.01624298>,<-0.53495473,0.53493571,0.06995046>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.54310930,0.01624298>,<-0.51455897,0.51453984,-0.02069283>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.54310930,0.01624298>,<-0.58010286,0.58008373,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.35341752,-0.52113974>,<-0.55060816,0.33047724,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,-0.58012915>,<-0.55060816,0.33047724,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,-0.58012915>,<-0.58010292,0.25039792,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.30753684,-0.58012915>,<-0.60959762,0.33047724,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,-0.58012915>,<-0.61719304,0.17772138,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,-0.58012915>,<-0.55346125,0.15848231,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.19325912,-0.58012915>,<-0.58010292,0.25039792,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.35337681,0.52108514>,<-0.55060816,-0.33047497,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,0.58007467>,<-0.60959762,-0.33047497,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,0.58007467>,<-0.55060816,-0.33047497,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.30757320,0.58007467>,<-0.58010292,-0.25043434,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,0.58007467>,<-0.60674453,-0.15848017,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,0.58007467>,<-0.58010292,-0.25043434,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.19329560,0.58007467>,<-0.54301280,-0.17771930,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,0.50589442>,<-0.54301280,-0.17771930,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,0.50589442>,<-0.48714620,-0.18735808,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,0.50589442>,<-0.49597538,-0.10986197,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,0.48599988>,<-0.49597538,-0.10986197,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,0.48599988>,<-0.51455897,-0.02068377,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.05758119,0.48599988>,<-0.46100581,-0.04817367,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,0.54306161>,<-0.58010286,-0.00001824,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,0.54306161>,<-0.51455897,-0.02068377,0.51453072>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.01621354,0.54306161>,<-0.53495473,0.06995952,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.35341752,0.52108514>,<0.55060625,0.33047724,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,0.58007467>,<0.60955715,0.33047724,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,0.58007467>,<0.58010089,0.25039792,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.30753684,0.58007467>,<0.55060625,0.33047724,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,0.58007467>,<0.61715245,0.17772138,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,0.58007467>,<0.55342066,0.15848231,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.19325912,0.58007467>,<0.58010089,0.25039792,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,0.52679133>,<0.53491437,0.06995952,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,0.52679133>,<0.50210381,0.13496363,0.50215453>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.12370551,0.52679133>,<0.55342066,0.15848231,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.35337681,-0.52113974>,<0.55060625,-0.33047497,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,-0.58012915>,<0.55060625,-0.33047497,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,-0.58012915>,<0.60955715,-0.33047497,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.30757320,-0.58012915>,<0.58010089,-0.25043434,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,-0.58012915>,<0.54301083,-0.17771930,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,-0.58012915>,<0.58010089,-0.25043434,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.19329560,-0.58012915>,<0.60674262,-0.15848017,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,-0.50594890>,<0.48710561,-0.18735808,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,-0.50594890>,<0.49593496,-0.10986197,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.16214293,-0.50594890>,<0.54301083,-0.17771930,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,-0.48597729>,<0.49593496,-0.10986197,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,-0.48597729>,<0.46092665,-0.04817367,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.05758119,-0.48597729>,<0.51451850,-0.02068377,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,-0.54311621>,<0.51451850,-0.02068377,-0.51454675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,-0.54311621>,<0.58006239,-0.00001824,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.01621354,-0.54311621>,<0.53491437,0.06995952,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.80678624,-0.63904154>,<-0.55060816,-0.82968807,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,-0.58012915>,<-0.60959762,-0.82968807,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,-0.58012915>,<-0.58010292,-0.90976727,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,-0.58012915>,<-0.55060816,-0.82968807,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,-0.58012915>,<-0.61719304,-0.98248243,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,-0.58012915>,<-0.55346125,-1.00172150,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,-0.58012915>,<-0.58010292,-0.90976727,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,-0.63341248>,<-0.53495473,-1.09020567,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,-0.63341248>,<-0.55346125,-1.00172150,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,-0.63341248>,<-0.50210565,-1.02562571,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.80674982,-0.63904154>,<0.55060625,0.82969022,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,-0.58012915>,<0.60955715,0.82969022,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,-0.58012915>,<0.55060625,0.82969022,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,-0.58012915>,<0.58010089,0.90976930,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,-0.58012915>,<0.58010089,0.90976930,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,-0.58012915>,<0.54301083,0.98248458,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,-0.58012915>,<0.60674262,1.00168490,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,-0.65423238>,<0.54301083,0.98248458,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,-0.65423238>,<0.48710561,0.97284555,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,-0.65423238>,<0.49593496,1.05030322,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,1.10254550,-0.67420387>,<0.49593496,1.05030322,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,1.10254550,-0.67420387>,<0.46092665,1.11199141,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-1.14391315,-0.61706507>,<0.53491437,-1.09020567,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.80678624,0.63906413>,<0.55060625,-0.82968807,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,0.58007467>,<0.55060625,-0.82968807,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,0.58007467>,<0.58010089,-0.90976727,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,0.58007467>,<0.60955715,-0.82968807,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,0.58007467>,<0.55342066,-1.00172150,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,0.58007467>,<0.61715245,-0.98248243,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,0.58007467>,<0.58010089,-0.90976727,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,0.63335794>,<0.50202656,-1.02562571,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,0.63335794>,<0.53491437,-1.09020567,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,0.63335794>,<0.55342066,-1.00172150,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.80674982,0.63906413>,<-0.55060816,0.82969022,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,0.58007467>,<-0.55060816,0.82969022,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,0.58007467>,<-0.60959762,0.82969022,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,0.58007467>,<-0.58010292,0.90976930,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,0.58007467>,<-0.54301280,0.98248458,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,0.58007467>,<-0.58010292,0.90976930,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,0.58007467>,<-0.60674453,1.00168490,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,0.65425485>,<-0.48714620,0.97284555,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,0.65425485>,<-0.49597538,1.05030322,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,0.65425485>,<-0.54301280,0.98248458,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,1.10254550,0.67414939>,<-0.49597538,1.05030322,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,1.10254550,0.67414939>,<-0.46100581,1.11199141,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-1.14391315,0.61708760>,<-0.53495473,-1.09020567,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.63903463,0.80677933>,<-0.55060816,0.60957849,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.85258293>,<-0.58010292,0.58012223,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.85258293>,<-0.60959762,0.55062759,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.85258293>,<-0.55060816,0.60957849,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.96693772>,<-0.60674453,0.55344200,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.96693772>,<-0.54301280,0.61717379,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,0.96693772>,<-0.58010292,0.58012223,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.65422547,0.99801326>,<-0.49597538,0.66421115,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.65422547,0.99801326>,<-0.54301280,0.61717379,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.65422547,0.99801326>,<-0.48714620,0.67304039,0.97283667>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,0.67419696,1.10257506>,<-0.46100581,0.69921923,1.11198246>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,0.67419696,1.10257506>,<-0.49597538,0.66421115,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,0.61705816,-1.14396071>,<-0.53495473,0.62523186,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.63907105,-0.80675673>,<-0.55060816,-0.60957628,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.85263753>,<-0.55060816,-0.60957628,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.85263753>,<-0.60959762,-0.55058682,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.85263753>,<-0.58010292,-0.58008158,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.96691513>,<-0.58010292,-0.58008158,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.96691513>,<-0.55346125,-0.60672319,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,-0.96691513>,<-0.61719304,-0.54299146,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.63336486,-1.03646874>,<-0.50210565,-0.65811735,-1.02559638>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.63336486,-1.03646874>,<-0.55346125,-0.60672319,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-0.63336486,-1.03646874>,<-0.53495473,-0.62522972,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.63907105,0.80677933>,<0.55060625,-0.60957628,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.85258293>,<0.58010089,-0.58008158,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.85258293>,<0.55060625,-0.60957628,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.85258293>,<0.60955715,-0.55058682,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.96693772>,<0.60674262,-0.55343992,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.96693772>,<0.54301083,-0.61717170,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,0.96693772>,<0.58010089,-0.58008158,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.67415631,1.10257506>,<0.46092665,-0.69917864,1.11198246>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,-0.67415631,1.10257506>,<0.49593496,-0.66420901,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-0.61709452,-1.14396071>,<0.53491437,-0.62522972,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.63903463,-0.80675673>,<0.55060625,0.60957849,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.85263753>,<0.60955715,0.55062759,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.85263753>,<0.55060625,0.60957849,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.85263753>,<0.58010089,0.58012223,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.96691513>,<0.58010089,0.58012223,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.96691513>,<0.61715245,0.54303217,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,-0.96691513>,<0.55342066,0.60676396,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.63340557,-1.03646874>,<0.55342066,0.60676396,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.63340557,-1.03646874>,<0.53491437,0.62523186,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,0.63340557,-1.03646874>,<0.50202656,0.65811944,-1.02559638>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,0.63903463,-0.63904154>,<0.33045590,0.60957849,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,-0.63341248>,<0.06993818,0.62523186,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,-0.63341248>,<0.15846097,0.60676396,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,-0.63341248>,<0.13455677,0.65811944,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,0.63903463,0.63906413>,<-0.33049631,0.60957849,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,0.65425485>,<-0.10988331,0.66421115,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,0.65425485>,<-0.17774063,0.61717379,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,0.65425485>,<-0.18737942,0.67304039,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,0.67414939>,<-0.10988331,0.66421115,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,0.67414939>,<-0.04819500,0.69921923,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,0.67414939>,<-0.02070510,0.64562750,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,0.61708760>,<0.06993818,0.62523186,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,0.61708760>,<-0.00003958,0.58008373,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,0.61708760>,<-0.02070510,0.64562750,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,-0.63907105,0.63906413>,<0.33045590,-0.60957628,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,0.63335794>,<0.06993818,-0.62522972,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,0.63335794>,<0.13455677,-0.65811735,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,0.63335794>,<0.15846097,-0.60672319,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,-0.63907105,-0.63904154>,<-0.33049631,-0.60957628,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,-0.65423238>,<-0.10988331,-0.66420901,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,-0.65423238>,<-0.18737942,-0.67303818,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,-0.65423238>,<-0.17774063,-0.61717170,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,-0.67420387>,<-0.10988331,-0.66420901,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,-0.67420387>,<-0.02070510,-0.64562541,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,-0.67420387>,<-0.04819500,-0.69917864,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,-0.61706507>,<0.06993818,-0.62522972,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,-0.61706507>,<-0.00003958,-0.58008152,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,-0.61706507>,<-0.02070510,-0.64562541,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,0.63903463,0.63906413>,<0.33045590,0.60957849,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,0.63335794>,<0.06993818,0.62523186,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,0.63335794>,<0.13455677,0.65811944,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,0.63340557,0.63335794>,<0.15846097,0.60676396,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,-0.63907105,0.63906413>,<-0.33049631,-0.60957628,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,0.65425485>,<-0.18737942,-0.67303818,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,0.65425485>,<-0.10988331,-0.66420901,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,-0.65426177,0.65425485>,<-0.17774063,-0.61717170,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,0.67414939>,<-0.10988331,-0.66420901,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,0.67414939>,<-0.04819500,-0.69917864,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,-0.67415631,0.67414939>,<-0.02070510,-0.64562541,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,0.61708760>,<-0.02070510,-0.64562541,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,0.61708760>,<0.06993818,-0.62522972,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,-0.61709452,0.61708760>,<-0.00003958,-0.58008152,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.35339618,-0.63907105,-0.63904154>,<0.33045590,-0.60957628,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,-0.63341248>,<0.06993818,-0.62522972,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,-0.63341248>,<0.15846097,-0.60672319,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.12368417,-0.63336486,-0.63341248>,<0.13455677,-0.65811735,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.35339814,0.63903463,-0.63904154>,<-0.33049631,0.60957849,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,-0.65423238>,<-0.17774063,0.61717379,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,-0.65423238>,<-0.10988331,0.66421115,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.16216427,0.65422547,-0.65423238>,<-0.18737942,0.67304039,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,-0.67420387>,<-0.10988331,0.66421115,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,-0.67420387>,<-0.02070510,0.64562750,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.05760252,0.67419696,-0.67420387>,<-0.04819500,0.69921923,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,-0.61706507>,<-0.00003958,0.58008373,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,-0.61706507>,<0.06993818,0.62523186,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.01619220,0.61705816,-0.61706507>,<-0.02070510,0.64562750,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.63903463,-0.80675673>,<-0.55060816,0.60957849,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.85263753>,<-0.60959762,0.55062759,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.85263753>,<-0.55060816,0.60957849,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.85263753>,<-0.58010292,0.58012223,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.96691513>,<-0.58010292,0.58012223,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.96691513>,<-0.61719304,0.54303217,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.58012223,-0.96691513>,<-0.55346125,0.60676396,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.63340557,-1.03646874>,<-0.55346125,0.60676396,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.63340557,-1.03646874>,<-0.50218278,0.65804231,-1.02521062>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.63340557,-1.03646874>,<-0.53495473,0.62523186,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.63903463,0.80677933>,<0.55060625,0.60957849,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.85258293>,<0.58010089,0.58012223,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.85258293>,<0.60955715,0.55062759,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.85258293>,<0.55060625,0.60957849,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.96693772>,<0.60674262,0.55344200,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.96693772>,<0.54301083,0.61717379,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.58012223,0.96693772>,<0.58010089,0.58012223,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.65422547,0.99801326>,<0.49593496,0.66421115,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.65422547,0.99801326>,<0.54301083,0.61717379,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.65422547,0.99801326>,<0.48710561,0.67304039,0.97283667>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,0.67419696,1.10257506>,<0.46092665,0.69921923,1.11198246>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,0.67419696,1.10257506>,<0.49593496,0.66421115,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,0.61705816,-1.14396071>,<0.53491437,0.62523186,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.63907105,-0.80675673>,<0.55060625,-0.60957628,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.85263753>,<0.55060625,-0.60957628,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.85263753>,<0.60955715,-0.55058682,-0.82969713>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.85263753>,<0.58010089,-0.58008158,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.96691513>,<0.58010089,-0.58008158,-0.90977621>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.96691513>,<0.55342066,-0.60672319,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.58008158,-0.96691513>,<0.61715245,-0.54299146,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.63336486,-1.03646874>,<0.50210381,-0.65800166,-1.02521062>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.63336486,-1.03646874>,<0.55342066,-0.60672319,-1.00169182>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-0.63336486,-1.03646874>,<0.53491437,-0.62522972,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.63907105,0.80677933>,<-0.55060816,-0.60957628,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.85258293>,<-0.58010292,-0.58008158,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.85258293>,<-0.55060816,-0.60957628,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.85258293>,<-0.60959762,-0.55058682,0.82968116>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.96693772>,<-0.60674453,-0.55343992,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.96693772>,<-0.54301280,-0.61717170,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.58008158,0.96693772>,<-0.58010292,-0.58008158,0.90976036>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.65426177,0.99801326>,<-0.49597538,-0.66420901,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.65426177,0.99801326>,<-0.48714620,-0.67303818,0.97283667>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.65426177,0.99801326>,<-0.54301280,-0.61717170,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.67415631,1.10257506>,<-0.46100581,-0.69917864,1.11198246>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,-0.67415631,1.10257506>,<-0.49597538,-0.66420901,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-0.61709452,-1.14396071>,<-0.53495473,-0.62522972,-1.09021473>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,-0.80678624,0.63906413>,<-0.55060816,-0.82968807,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,0.58007467>,<-0.55060816,-0.82968807,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,0.58007467>,<-0.58010292,-0.90976727,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.85258985,0.58007467>,<-0.60959762,-0.82968807,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,0.58007467>,<-0.55346125,-1.00172150,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,0.58007467>,<-0.61719304,-0.98248243,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,-0.96694463,0.58007467>,<-0.58010292,-0.90976727,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,0.63335794>,<-0.53495473,-1.09020567,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,0.63335794>,<-0.50218278,-1.02524018,0.65799475>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,-1.03649831,0.63335794>,<-0.55346125,-1.00172150,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52111340,0.80674982,-0.63904154>,<-0.55060816,0.82969022,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,-0.58012915>,<-0.60959762,0.82969022,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,-0.58012915>,<-0.55060816,0.82969022,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.85263062,-0.58012915>,<-0.58010292,0.90976930,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,-0.58012915>,<-0.58010292,0.90976930,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,-0.58012915>,<-0.60674453,1.00168490,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.58010292,0.96690822,-0.58012915>,<-0.54301280,0.98248458,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,-0.65423238>,<-0.54301280,0.98248458,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,-0.65423238>,<-0.48714620,0.97284555,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,0.99806094,-0.65423238>,<-0.49597538,1.05030322,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,1.10254550,-0.67420387>,<-0.49597538,1.05030322,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.48602813,1.10254550,-0.67420387>,<-0.46100581,1.11199141,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.54308987,-1.14391315,-0.61706507>,<-0.53495473,-1.09020567,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,-0.80678624,-0.63904154>,<0.55060625,-0.82968807,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,-0.58012915>,<0.60955715,-0.82968807,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,-0.58012915>,<0.58010089,-0.90976727,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.85258985,-0.58012915>,<0.55060625,-0.82968807,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,-0.58012915>,<0.61715245,-0.98248243,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,-0.58012915>,<0.55342066,-1.00172150,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,-0.96694463,-0.58012915>,<0.58010089,-0.90976727,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,-0.63341248>,<0.53491437,-1.09020567,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,-0.63341248>,<0.55342066,-1.00172150,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52674055,-1.03649831,-0.63341248>,<0.50210381,-1.02524018,-0.65804923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.52111149,0.80674982,0.63906413>,<0.55060625,0.82969022,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,0.58007467>,<0.55060625,0.82969022,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,0.58007467>,<0.60955715,0.82969022,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.85263062,0.58007467>,<0.58010089,0.90976930,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,0.58007467>,<0.54301083,0.98248458,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,0.58007467>,<0.58010089,0.90976930,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.58010089,0.96690822,0.58007467>,<0.60674262,1.00168490,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,0.65425485>,<0.48710561,0.97284555,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,0.65425485>,<0.49593496,1.05030322,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,0.99806094,0.65425485>,<0.54301083,0.98248458,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,1.10254550,0.67414939>,<0.49593496,1.05030322,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.48594904,1.10254550,0.67414939>,<0.46092665,1.11199141,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.54308796,-1.14391315,0.61708760>,<0.53491437,-1.09020567,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.35341752,-0.63904154>,<0.60955715,0.33047724,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,-0.65423238>,<0.61715245,0.17772138,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,-0.65423238>,<0.67301905,0.18736017,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,-0.65423238>,<0.66418982,0.10990274,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,-0.67420387>,<0.64560616,0.02068591,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,-0.67420387>,<0.66418982,0.10990274,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,-0.67420387>,<0.69919789,0.04817581,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,-0.61706507>,<0.62521052,-0.06995738,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,-0.61706507>,<0.58006239,-0.00001824,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,-0.61706507>,<0.64560616,0.02068591,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.35337681,-0.63904154>,<-0.60959762,-0.33047497,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,-0.63341248>,<-0.62525105,-0.06995738,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,-0.63341248>,<-0.65813869,-0.13457584,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,-0.63341248>,<-0.60674453,-0.15848017,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.35341752,0.63906413>,<-0.60959762,0.33047724,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,0.65425485>,<-0.66423035,0.10990274,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,0.65425485>,<-0.67305952,0.18736017,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,0.65425485>,<-0.61719304,0.17772138,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,0.67414939>,<-0.64564675,0.02068591,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,0.67414939>,<-0.69919997,0.04817581,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,0.67414939>,<-0.66423035,0.10990274,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,0.61708760>,<-0.62525105,-0.06995738,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,0.61708760>,<-0.64564675,0.02068591,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,0.61708760>,<-0.58010286,-0.00001824,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.35337681,0.63906413>,<0.60955715,-0.33047497,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,0.63335794>,<0.65809810,-0.13457584,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,0.63335794>,<0.62521052,-0.06995738,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,0.63335794>,<0.60674262,-0.15848017,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.52109206,0.80677933>,<0.60955715,-0.55058682,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63901329,0.52113283,-0.80675673>,<0.60955715,0.55062759,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,0.50594199,-0.99806786>,<0.67301905,0.48712695,-0.97285247>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.50594199,-0.99806786>,<0.61715245,0.54303217,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.50594199,-0.99806786>,<0.66418982,0.49595630,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.48597038,-1.10255241>,<0.66418982,0.49595630,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.48597038,-1.10255241>,<0.69919789,0.46094799,-1.11199832>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,0.54310930,1.14390624>,<0.62521052,0.53493571,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.52113283,0.80677933>,<-0.60959762,0.55062759,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,0.52676189,1.03649139>,<-0.65813869,0.50204790,1.02561879>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,0.52676189,1.03649139>,<-0.62525105,0.53493571,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,0.52676189,1.03649139>,<-0.60674453,0.55344200,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.52109206,-0.80675673>,<-0.60959762,-0.55058682,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,-0.50590134,-0.99806786>,<-0.67305952,-0.48712486,-0.97285247>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.50590134,-0.99806786>,<-0.61719304,-0.54299146,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.50590134,-0.99806786>,<-0.66423035,-0.49595404,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-0.48600680,-1.10255241>,<-0.66423035,-0.49595404,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-0.48600680,-1.10255241>,<-0.69919997,-0.46098447,-1.11199832>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.54306853,1.14390624>,<-0.62525105,-0.53493339,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,-0.52109206,-0.63904154>,<-0.82970941,-0.55058682,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,-0.58012915>,<-0.82970941,-0.60957628,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,-0.58012915>,<-0.90978861,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,-0.58012915>,<-0.82970941,-0.55058682,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,-0.58012915>,<-1.00174284,-0.60672319,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,-0.58012915>,<-0.98250377,-0.54299146,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,-0.58012915>,<-0.90978861,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,-0.65423238>,<-0.98250377,-0.54299146,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,-0.65423238>,<-0.97286493,-0.48712486,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,-0.65423238>,<-1.05032241,-0.49595404,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,-0.48600680,-0.67420387>,<-1.05032241,-0.49595404,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,-0.48600680,-0.67420387>,<-1.11201072,-0.46098447,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.14393246,-0.54306853,-0.61706507>,<1.09018648,-0.53493339,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,-0.52109206,0.63906413>,<0.82966888,-0.55058682,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,0.58007467>,<0.82966888,-0.55058682,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,0.58007467>,<0.82966888,-0.60957628,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,0.58007467>,<0.90974796,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,0.58007467>,<1.00166357,-0.55343992,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,0.58007467>,<0.98246324,-0.61717170,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,0.58007467>,<0.90974796,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,0.63335794>,<1.02556813,-0.50208431,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,0.63335794>,<1.09018648,-0.53493339,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,0.63335794>,<1.00166357,-0.55343992,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,0.52113283,0.63906413>,<-0.82970941,0.55062759,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,0.58007467>,<-0.82970941,0.55062759,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,0.58007467>,<-0.90978861,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,0.58007467>,<-0.82970941,0.60957849,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,0.58007467>,<-0.98250377,0.54303217,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,0.58007467>,<-1.00174284,0.60676396,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,0.58007467>,<-0.90978861,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,0.65425485>,<-1.05032241,0.49595630,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,0.65425485>,<-0.97286493,0.48712695,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,0.65425485>,<-0.98250377,0.54303217,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,0.48597038,0.67414939>,<-1.11201072,0.46094799,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,0.48597038,0.67414939>,<-1.05032241,0.49595630,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.14393246,0.54310930,0.61708760>,<1.09018648,0.53493571,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,0.52113283,-0.63904154>,<0.82966888,0.55062759,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,-0.58012915>,<0.82966888,0.60957849,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,-0.58012915>,<0.82966888,0.55062759,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,-0.58012915>,<0.90974796,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,-0.58012915>,<0.98246324,0.61717379,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,-0.58012915>,<0.90974796,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,-0.58012915>,<1.00166357,0.55344200,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,-0.63341248>,<1.00166357,0.55344200,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,-0.63341248>,<1.09018648,0.53493571,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,-0.63341248>,<1.02556813,0.50204790,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,-0.52109206,0.63906413>,<-0.82970941,-0.55058682,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,0.58007467>,<-0.82970941,-0.55058682,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,0.58007467>,<-0.82970941,-0.60957628,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,-0.58008158,0.58007467>,<-0.90978861,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,0.58007467>,<-0.98250377,-0.54299146,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,0.58007467>,<-1.00174284,-0.60672319,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,-0.58008158,0.58007467>,<-0.90978861,-0.58008158,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,0.65425485>,<-1.05032241,-0.49595404,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,0.65425485>,<-0.97286493,-0.48712486,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,-0.50590134,0.65425485>,<-0.98250377,-0.54299146,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,-0.48600680,0.67414939>,<-1.05032241,-0.49595404,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,-0.48600680,0.67414939>,<-1.11201072,-0.46098447,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.14393246,-0.54306853,0.61708760>,<1.09018648,-0.53493339,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,0.52113283,0.63906413>,<0.82966888,0.55062759,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,0.58007467>,<0.82966888,0.55062759,0.60956937>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,0.58007467>,<0.82966888,0.60957849,0.55057991>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,0.58012223,0.58007467>,<0.90974796,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,0.58007467>,<1.00166357,0.55344200,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,0.58007467>,<0.90974796,0.58012223,0.58007467>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,0.58012223,0.58007467>,<0.98246324,0.61717379,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,0.63335794>,<1.02518237,0.50212514,0.65799475>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,0.63335794>,<1.09018648,0.53493571,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,0.52676189,0.63335794>,<1.00166357,0.55344200,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,0.52113283,-0.63904154>,<-0.82970941,0.55062759,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,-0.58012915>,<-0.82970941,0.60957849,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,-0.58012915>,<-0.82970941,0.55062759,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.85261118,0.58012223,-0.58012915>,<-0.90978861,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,-0.58012915>,<-0.98250377,0.54303217,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,-0.58012915>,<-1.00174284,0.60676396,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.96696597,0.58012223,-0.58012915>,<-0.90978861,0.58012223,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,-0.65423238>,<-0.98250377,0.54303217,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,-0.65423238>,<-0.97286493,0.48712695,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.99804151,0.50594199,-0.65423238>,<-1.05032241,0.49595630,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,0.48597038,-0.67420387>,<-1.05032241,0.49595630,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.10260332,0.48597038,-0.67420387>,<-1.11201072,0.46094799,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.14393246,0.54310930,-0.61706507>,<1.09018648,0.53493571,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,-0.52109206,-0.63904154>,<0.82966888,-0.55058682,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,-0.58012915>,<0.82966888,-0.60957628,-0.55063450>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,-0.58012915>,<0.82966888,-0.55058682,-0.60958540>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.85260928,-0.58008158,-0.58012915>,<0.90974796,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,-0.58012915>,<0.98246324,-0.61717170,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,-0.58012915>,<0.90974796,-0.58008158,-0.58012915>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.96688688,-0.58008158,-0.58012915>,<1.00166357,-0.55343992,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,-0.63341248>,<1.00166357,-0.55343992,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,-0.63341248>,<1.09018648,-0.53493339,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.03644049,-0.52679825,-0.63341248>,<1.02518237,-0.50216144,-0.65804923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.52109206,-0.80675673>,<0.60955715,-0.55058682,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,-0.50590134,-0.99806786>,<0.61715245,-0.54299146,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.50590134,-0.99806786>,<0.67301905,-0.48712486,-0.97285247>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.50590134,-0.99806786>,<0.66418982,-0.49595404,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-0.48600680,-1.10255241>,<0.66418982,-0.49595404,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-0.48600680,-1.10255241>,<0.69919789,-0.46098447,-1.11199832>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.54306853,1.14390624>,<0.62521052,-0.53493339,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.52109206,0.80677933>,<-0.60959762,-0.55058682,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,-0.52679825,1.03649139>,<-0.62525105,-0.53493339,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.52679825,1.03649139>,<-0.65813869,-0.50208431,1.02561879>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.52679825,1.03649139>,<-0.60674453,-0.55343992,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.52113283,-0.80675673>,<-0.60959762,0.55062759,-0.82969713>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,0.50594199,-0.99806786>,<-0.67305952,0.48712695,-0.97285247>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.50594199,-0.99806786>,<-0.66423035,0.49595630,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.50594199,-0.99806786>,<-0.61719304,0.54303217,-0.98249149>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.48597038,-1.10255241>,<-0.66423035,0.49595630,-1.05031013>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.48597038,-1.10255241>,<-0.69919997,0.46094799,-1.11199832>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,0.54310930,1.14390624>,<-0.62525105,0.53493571,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.52113283,0.80677933>,<0.60955715,0.55062759,0.82968116>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,0.52676189,1.03649139>,<0.62521052,0.53493571,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,0.52676189,1.03649139>,<0.60674262,0.55344200,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,0.52676189,1.03649139>,<0.65809810,0.50204790,1.02561879>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.35341752,0.63906413>,<0.60955715,0.33047724,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,0.65425485>,<0.67301905,0.18736017,0.67303127>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,0.65425485>,<0.61715245,0.17772138,0.61716479>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.16218364,0.65425485>,<0.66418982,0.10990274,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,0.67414939>,<0.64560616,0.02068591,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,0.67414939>,<0.69919789,0.04817581,0.69917172>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.05762184,0.67414939>,<0.66418982,0.10990274,0.66420209>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,0.61708760>,<0.62521052,-0.06995738,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,0.61708760>,<0.64560616,0.02068591,0.64561850>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.01624990,0.61708760>,<0.58006239,-0.00001824,0.58007461>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.35337681,-0.63904154>,<0.60955715,-0.33047497,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,-0.63341248>,<0.60674262,-0.15848017,-0.60677087>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,-0.63341248>,<0.62521052,-0.06995738,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.12366474,-0.63341248>,<0.65809810,-0.13457584,-0.65812635>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.35341752,-0.63904154>,<-0.60959762,0.33047724,-0.60958540>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,-0.65423238>,<-0.61719304,0.17772138,-0.61718071>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,-0.65423238>,<-0.67305952,0.18736017,-0.67304730>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.16218364,-0.65423238>,<-0.66423035,0.10990274,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,-0.67420387>,<-0.64564675,0.02068591,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,-0.67420387>,<-0.66423035,0.10990274,-0.66421807>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.05762184,-0.67420387>,<-0.69919997,0.04817581,-0.69922614>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,-0.61706507>,<-0.62525105,-0.06995738,-0.62523878>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,-0.61706507>,<-0.58010286,-0.00001824,-0.58009064>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.01624990,-0.61706507>,<-0.64564675,0.02068591,-0.64563441>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.35337681,0.63906413>,<-0.60959762,-0.33047497,0.60956937>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,0.63335794>,<-0.65813869,-0.13457584,0.65811044>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,0.63335794>,<-0.62525105,-0.06995738,0.62522280>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.12366474,0.63335794>,<-0.60674453,-0.15848017,0.60671628>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.80678624,0.52108514>,<0.60955715,-0.82968807,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,0.50589442>,<0.61715245,-0.98248243,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,0.50589442>,<0.67301905,-0.97284359,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,0.50589442>,<0.66418982,-1.05030107,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-1.10258198,0.48599988>,<0.69919789,-1.11198938,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-1.10258198,0.48599988>,<0.66418982,-1.05030107,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,1.14395380,0.54306161>,<0.62521052,1.09020782,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.80674982,0.52108514>,<-0.60959762,0.82969022,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,0.52679133>,<-0.65813869,1.02558947,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,0.52679133>,<-0.60674453,1.00168490,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,0.52679133>,<-0.62525105,1.09020782,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.80678624,-0.52113974>,<-0.60959762,-0.82968807,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,-0.50594890>,<-0.66423035,-1.05030107,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,-0.50594890>,<-0.67305952,-0.97284359,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,-0.50594890>,<-0.61719304,-0.98248243,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-1.10258198,-0.48597729>,<-0.69919997,-1.11198938,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-1.10258198,-0.48597729>,<-0.66423035,-1.05030107,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,1.14395380,-0.54311621>,<-0.62525105,1.09020782,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.80674982,-0.52113974>,<0.60955715,0.82969022,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,-0.52676880>,<0.65809810,1.02558947,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,-0.52676880>,<0.60674262,1.00168490,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,-0.52676880>,<0.62521052,1.09020782,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.63903463,-0.35342443>,<0.60955715,0.60957849,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,0.63340557,-0.12371242>,<0.62521052,0.62523186,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,0.63340557,-0.12371242>,<0.60674262,0.60676396,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,0.63340557,-0.12371242>,<0.65809810,0.65811944,-0.13458502>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.63907105,0.35336989>,<0.60955715,-0.60957628,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.67417562,-0.67415631,0.05757427>,<0.66418982,-0.66420901,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-0.67415631,0.05757427>,<0.69919789,-0.69917864,0.04816675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-0.67415631,0.05757427>,<0.64560616,-0.64562541,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.61709452,-0.01622045>,<0.64560616,-0.64562541,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.61709452,-0.01622045>,<0.58006239,-0.58008152,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,-0.61709452,-0.01622045>,<0.62521052,-0.62522972,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.63907105,-0.35342443>,<-0.60959762,-0.60957628,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,-0.63336486,-0.12371242>,<-0.62525105,-0.62522972,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.63336486,-0.12371242>,<-0.65813869,-0.65811735,-0.13458502>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,-0.63336486,-0.12371242>,<-0.60674453,-0.60672319,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.63903463,0.35336989>,<-0.60959762,0.60957849,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,0.65422547,0.16213602>,<-0.61719304,0.61717379,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.65422547,0.16213602>,<-0.67305952,0.67304039,0.18735117>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,0.65422547,0.16213602>,<-0.66423035,0.66421115,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.67419696,0.05757427>,<-0.66423035,0.66421115,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.67419696,0.05757427>,<-0.69919997,0.69921923,0.04816675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,0.67419696,0.05757427>,<-0.64564675,0.64562750,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,0.61705816,-0.01622045>,<-0.64564675,0.64562750,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,0.61705816,-0.01622045>,<-0.58010286,0.58008373,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,0.61705816,-0.01622045>,<-0.62525105,0.62523186,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,0.63903463,0.52108514>,<-0.82970941,0.60957849,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,0.52679133>,<-1.09022701,0.62523186,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,0.52679133>,<-1.00174284,0.60676396,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,0.52679133>,<-1.02564704,0.65811944,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,0.63903463,-0.52113974>,<0.82966888,0.60957849,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,-0.50594890>,<0.97282422,0.67304039,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,-0.50594890>,<0.98246324,0.61717379,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,-0.50594890>,<1.05028188,0.66421115,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,0.67419696,-0.48597729>,<1.05028188,0.66421115,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,0.67419696,-0.48597729>,<1.11197007,0.69921923,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.14393449,0.61705816,-0.54311621>,<-1.09022701,0.62523186,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,-0.63907105,-0.52113974>,<-0.82970941,-0.60957628,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,-0.52676880>,<-1.02564704,-0.65811735,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,-0.52676880>,<-1.09022701,-0.62522972,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,-0.52676880>,<-1.00174284,-0.60672319,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,-0.63907105,0.52108514>,<0.82966888,-0.60957628,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,0.50589442>,<0.97282422,-0.67303818,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,0.50589442>,<1.05028188,-0.66420901,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,0.50589442>,<0.98246324,-0.61717170,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,-0.67415631,0.48599988>,<1.05028188,-0.66420901,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,-0.67415631,0.48599988>,<1.11197007,-0.69917864,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.14393449,-0.61709452,0.54306161>,<-1.09022701,-0.62522972,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,0.63903463,-0.52113974>,<-0.82970941,0.60957849,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,-0.52676880>,<-1.02564704,0.65811944,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,-0.52676880>,<-1.09022701,0.62523186,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,0.63340557,-0.52676880>,<-1.00174284,0.60676396,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,-0.63907105,-0.52113974>,<0.82966888,-0.60957628,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,-0.50594890>,<0.97282422,-0.67303818,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,-0.50594890>,<1.05028188,-0.66420901,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,-0.65426177,-0.50594890>,<0.98246324,-0.61717170,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,-0.67415631,-0.48597729>,<1.05028188,-0.66420901,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,-0.67415631,-0.48597729>,<1.11197007,-0.69917864,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.14393449,-0.61709452,-0.54311621>,<-1.09022701,-0.62522972,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.80680758,-0.63907105,0.52108514>,<-0.82970941,-0.60957628,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,0.52679133>,<-1.09022701,-0.62522972,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,0.52679133>,<-1.02564704,-0.65811735,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.03651965,-0.63336486,0.52679133>,<-1.00174284,-0.60672319,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.80672848,0.63903463,0.52108514>,<0.82966888,0.60957849,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,0.50589442>,<0.98246324,0.61717379,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,0.50589442>,<0.97282422,0.67304039,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.99803960,0.65422547,0.50589442>,<1.05028188,0.66421115,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,0.67419696,0.48599988>,<1.05028188,0.66421115,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<1.10252416,0.67419696,0.48599988>,<1.11197007,0.69921923,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-1.14393449,0.61705816,0.54306161>,<-1.09022701,0.62523186,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.63903463,0.35336989>,<0.60955715,0.60957849,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,0.65422547,0.16213602>,<0.61715245,0.61717379,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.65422547,0.16213602>,<0.67301905,0.67304039,0.18735117>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,0.65422547,0.16213602>,<0.66418982,0.66421115,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.67419696,0.05757427>,<0.66418982,0.66421115,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.67419696,0.05757427>,<0.69919789,0.69921923,0.04816675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,0.67419696,0.05757427>,<0.64560616,0.64562750,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,0.61705816,-0.01622045>,<0.64560616,0.64562750,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,0.61705816,-0.01622045>,<0.58006239,0.58008373,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,0.61705816,-0.01622045>,<0.62521052,0.62523186,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.63903463,-0.35342443>,<-0.60959762,0.60957849,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,0.63340557,-0.12371242>,<-0.62525105,0.62523186,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,0.63340557,-0.12371242>,<-0.60674453,0.60676396,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,0.63340557,-0.12371242>,<-0.65813869,0.65811944,-0.13458502>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.63907105,0.35336989>,<-0.60959762,-0.60957628,0.33046806>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,-0.65426177,0.16213602>,<-0.67305952,-0.67303818,0.18735117>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.65426177,0.16213602>,<-0.61719304,-0.61717170,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.65426177,0.16213602>,<-0.66423035,-0.66420901,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-0.67415631,0.05757427>,<-0.66423035,-0.66420901,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-0.67415631,0.05757427>,<-0.69919997,-0.69917864,0.04816675>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-0.67415631,0.05757427>,<-0.64564675,-0.64562541,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.61709452,-0.01622045>,<-0.64564675,-0.64562541,0.02067685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.61709452,-0.01622045>,<-0.62525105,-0.62522972,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,-0.61709452,-0.01622045>,<-0.58010286,-0.58008152,0.00001132>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.63907105,-0.35342443>,<0.60955715,-0.60957628,-0.33048415>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,-0.63336486,-0.12371242>,<0.62521052,-0.62522972,-0.06996644>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.63336486,-0.12371242>,<0.65809810,-0.65811735,-0.13458502>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.63336486,-0.12371242>,<0.60674262,-0.60672319,-0.15848923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,-0.80678624,-0.52113974>,<0.60955715,-0.82968807,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,-0.50594890>,<0.67301905,-0.97284359,-0.48713386>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,-0.50594890>,<0.61715245,-0.98248243,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.99802017,-0.50594890>,<0.66418982,-1.05030107,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-1.10258198,-0.48597729>,<0.69919789,-1.11198938,-0.46095490>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.67417562,-1.10258198,-0.48597729>,<0.66418982,-1.05030107,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.61703682,1.14395380,-0.54311621>,<0.62521052,1.09020782,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63901329,0.80674982,0.52108514>,<0.60955715,0.82969022,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,0.52679133>,<0.60674262,1.00168490,0.55343300>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,0.52679133>,<0.65809810,1.02558947,0.50207740>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,1.03646183,0.52679133>,<0.62521052,1.09020782,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,-0.80678624,0.52108514>,<-0.60959762,-0.82968807,0.55057991>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,0.50589442>,<-0.66423035,-1.05030107,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,0.50589442>,<-0.67305952,-0.97284359,0.48711795>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.65428311,-0.99802017,0.50589442>,<-0.61719304,-0.98248243,0.54298455>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-1.10258198,0.48599988>,<-0.66423035,-1.05030107,0.49594712>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.67417765,-1.10258198,0.48599988>,<-0.69919997,-1.11198938,0.46097755>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.61711586,1.14395380,0.54306161>,<-0.62525105,1.09020782,0.53492647>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63909239,0.80674982,-0.52113974>,<-0.60959762,0.82969022,-0.55063450>0.0058,rgbt<1.000,0.000,0.000,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,-0.52676880>,<-0.65813869,1.02558947,-0.50205481>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,-0.52676880>,<-0.60674453,1.00168490,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.63338619,1.03646183,-0.52676880>,<-0.62525105,1.09020782,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.21259451,0.69185531,-0.69186223>,<-0.18737942,0.67304039,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.03878748,0.72424161,-0.72424853>,<-0.04819500,0.69921923,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.14542925,0.68283331,-0.68284023>,<0.13455677,0.65811944,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.21251535,0.46831203,-0.46831894>,<0.18733883,0.48712695,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.03870845,0.43592572,-0.43593264>,<0.04815447,0.46094799,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.14620245,0.47748828,-0.47749519>,<-0.13494432,0.50212514,-0.50213206>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.14550841,0.47733402,0.47736353>,<-0.13459718,0.50204790,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.21259451,0.69185531,0.69180763>,<-0.18737942,0.67304039,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.03878748,0.72424161,0.72419405>,<-0.04819500,0.69921923,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.14542925,0.68283331,0.68286288>,<0.13455677,0.65811944,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.21251535,0.46831203,0.46834159>,<0.18733883,0.48712695,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.03870845,0.43592572,0.43595517>,<0.04815447,0.46094799,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.94760931,0.69185531,0.46834159>,<0.97282422,0.67304039,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.01392424,0.47748828,0.68263149>,<1.02518237,0.50212514,0.65799475>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.94760931,0.69185531,-0.46831894>,<0.97282422,0.67304039,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.01469529,0.47733402,-0.68284023>,<1.02556813,0.50204790,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.14620245,-0.47752464,0.47751772>,<-0.13494432,-0.50216144,0.50215453>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.03870845,-0.43596208,0.43595517>,<0.04815447,-0.46098447,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.21251535,-0.46834850,0.46834159>,<0.18733883,-0.48712486,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.14542925,-0.68286979,0.68286288>,<0.13455677,-0.65811735,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.03878748,-0.72420096,0.72419405>,<-0.04819500,-0.69917864,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.21259451,-0.69181454,0.69180763>,<-0.18737942,-0.67303818,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.03870845,-0.43596208,-0.43593264>,<0.04815447,-0.46098447,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.21251535,-0.46834850,-0.46831894>,<0.18733883,-0.48712486,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.14542925,-0.68286979,-0.68284023>,<0.13455677,-0.65811735,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.03878748,-0.72420096,-0.72424853>,<-0.04819500,-0.69917864,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.21259451,-0.69181454,-0.69186223>,<-0.18737942,-0.67303818,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.14550841,-0.47737044,-0.47734094>,<-0.13459718,-0.50208431,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,0.21253669,-0.69186223>,<-0.67305952,0.18736017,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,0.03872979,-0.72424853>,<-0.69919997,0.04817581,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,-0.14548707,-0.68284023>,<-0.65813869,-0.13457584,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,-0.03876615,-0.43593264>,<-0.46100581,-0.04817367,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,-0.21257317,0.46834159>,<-0.48714620,-0.18735808,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,-0.03876615,0.43595517>,<-0.46100581,-0.04817367,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47739178,0.14545059,0.47736353>,<-0.50210565,0.13457811,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,0.21253669,0.69180763>,<-0.67305952,0.18736017,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,0.03872979,0.72419405>,<-0.69919997,0.04817581,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,-0.14548707,0.68286288>,<-0.65813869,-0.13457584,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,-0.03876615,-0.43593264>,<0.46092665,-0.04817367,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,-0.21257317,-0.46831894>,<0.48710561,-0.18735808,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47731268,0.14545059,-0.47734094>,<0.50202656,0.13457811,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,0.21253669,-0.69186223>,<0.67301905,0.18736017,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,0.03872979,-0.72424853>,<0.69919789,0.04817581,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,-0.14548707,-0.68284023>,<0.65809810,-0.13457584,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,-0.21257317,0.46834159>,<0.48710561,-0.18735808,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,-0.03876615,0.43595517>,<0.46092665,-0.04817367,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,-0.14548707,0.68286288>,<0.65809810,-0.13457584,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,0.03872979,0.72419405>,<0.69919789,0.04817581,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,0.21253669,0.69180763>,<0.67301905,0.18736017,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47746694,0.14622176,0.47751772>,<0.50210381,0.13496363,0.50215453>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.01469529,-0.47737044,0.68286288>,<1.02556813,-0.50208431,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.94760931,-0.69181454,0.46834159>,<0.97282422,-0.67303818,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.01392424,-0.47752464,-0.68268609>,<1.02518237,-0.50216144,-0.65804923>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.94760931,-0.69181454,-0.46831894>,<0.97282422,-0.67303818,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,-0.94766700,0.46834159>,<0.67301905,-0.97284359,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47731268,-1.01475310,0.68286288>,<0.50202656,-1.02562571,0.65811044>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,-0.94766700,-0.46831894>,<0.67301905,-0.97284359,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47746694,-1.01398206,-0.68268609>,<0.50210381,-1.02524018,-0.65804923>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47754598,-1.01398206,0.68263149>,<-0.50218278,-1.02524018,0.65799475>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,-0.94766700,0.46834159>,<-0.67305952,-0.97284359,0.48711795>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47739178,-1.01475310,-0.68284023>,<-0.50210565,-1.02562571,-0.65812635>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,-0.94766700,-0.46831894>,<-0.67305952,-0.97284359,-0.48713386>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.01477444,-0.68286979,-0.47734094>,<-1.02564704,-0.65811735,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.94768834,-0.46834850,-0.69186223>,<-0.97286493,-0.48712486,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.01477444,-0.68286979,0.47736353>,<-1.02564704,-0.65811735,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.94768834,-0.46834850,0.69180763>,<-0.97286493,-0.48712486,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.94768834,0.46831203,-0.69186223>,<-0.97286493,0.48712695,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.01477444,0.68283331,-0.47734094>,<-1.02564704,0.65811944,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.01477444,0.68283331,0.47736353>,<-1.02564704,0.65811944,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,1.01471663,-0.47734094>,<-0.65813869,1.02558947,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.94768834,0.46831203,0.69180763>,<-0.97286493,0.48712695,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,0.94763064,0.69180763>,<-0.48714620,0.97284555,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,0.94763064,-0.69186223>,<-0.48714620,0.97284555,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,1.01471663,0.47736353>,<-0.65813869,1.02558947,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,1.01471663,0.47736353>,<0.65809810,1.02558947,0.50207740>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,0.94763064,0.69180763>,<0.48710561,0.97284555,0.67303127>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,1.01471663,-0.47734094>,<0.65809810,1.02558947,-0.50205481>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,0.94763064,-0.69186223>,<0.48710561,0.97284555,-0.67304730>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,0.72424161,0.03875923>,<-0.69919997,0.69921923,0.04816675>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,0.69185531,0.21256626>,<-0.67305952,0.67304039,0.18735117>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,0.68283331,-0.14545751>,<-0.65813869,0.65811944,-0.13458502>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,0.46831203,-0.21254361>,<-0.48714620,0.48712695,-0.18736708>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,0.43592572,-0.03873670>,<-0.46100581,0.46094799,-0.04818273>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47739178,0.47733402,0.14548016>,<-0.50210565,0.50204790,0.13456893>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,0.72424161,0.03875923>,<0.69919789,0.69921923,0.04816675>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,0.69185531,0.21256626>,<0.67301905,0.67304039,0.18735117>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47746694,0.47748828,0.14617419>,<0.50210381,0.50212514,0.13491607>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,0.68283331,-0.14545751>,<0.65809810,0.65811944,-0.13458502>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,0.46831203,-0.21254361>,<0.48710561,0.48712695,-0.18736708>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,0.43592572,-0.03873670>,<0.46092665,0.46094799,-0.04818273>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47754598,-0.47752464,0.14617419>,<-0.50218278,-0.50216144,0.13491607>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,-0.43596208,-0.03873670>,<-0.46100581,-0.46098447,-0.04818273>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,-0.46834850,-0.21254361>,<-0.48714620,-0.48712486,-0.18736708>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,-0.68286979,-0.14545751>,<-0.65813869,-0.65811735,-0.13458502>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,-0.72420096,0.03875923>,<-0.69919997,-0.69917864,0.04816675>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,-0.69181454,0.21256626>,<-0.67305952,-0.67303818,0.18735117>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,-0.43596208,-0.03873670>,<0.46092665,-0.46098447,-0.04818273>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47731268,-0.47737044,0.14548016>,<0.50202656,-0.50208431,0.13456893>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,-0.46834850,-0.21254361>,<0.48710561,-0.48712486,-0.18736708>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,-0.68286979,-0.14545751>,<0.65809810,-0.65811735,-0.13458502>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,-0.72420096,0.03875923>,<0.69919789,-0.69917864,0.04816675>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.68281198,0.47733402,1.01474619>,<0.65809810,0.50204790,1.02561879>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.46829069,0.69185531,0.94766009>,<0.48710561,0.67304039,0.97283667>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,-0.47737044,1.01474619>,<-0.65813869,-0.50208431,1.02561879>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,-0.69181454,0.94766009>,<-0.48714620,-0.67303818,0.97283667>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.46836984,0.69185531,0.94766009>,<-0.48714620,0.67304039,0.97283667>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.68289113,0.47733402,1.01474619>,<-0.65813869,0.50204790,1.02561879>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,-0.46834850,-0.94763756>,<0.67301905,-0.48712486,-0.97285247>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47746694,-0.68263841,-1.01395249>,<0.50210381,-0.65800166,-1.02521062>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.47731268,0.68283331,-1.01472354>,<0.50202656,0.65811944,-1.02559638>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.69183397,0.46831203,-0.94763756>,<0.67301905,0.48712695,-0.97285247>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47754598,0.68267918,-1.01395249>,<-0.50218278,0.65804231,-1.02521062>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,0.46831203,-0.94763756>,<-0.67305952,0.48712695,-0.97285247>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.69183588,-0.46834850,-0.94763756>,<-0.67305952,-0.48712486,-0.97285247>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.47739178,-0.68286979,-1.01472354>,<-0.50210565,-0.65811735,-1.02559638>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.12141824,0.43592572,0.72419405>,<-1.11201072,0.46094799,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.12141824,0.43592572,-0.72424853>,<-1.11201072,0.46094799,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.12141824,-0.43596208,0.72419405>,<-1.11201072,-0.46098447,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-1.12141824,-0.43596208,-0.72424853>,<-1.11201072,-0.46098447,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,-1.12139690,0.43595517>,<-0.69919997,-1.11198938,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,-1.12139690,-0.43593264>,<-0.69919997,-1.11198938,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,-1.12139690,0.43595517>,<0.69919789,-1.11198938,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,-1.12139690,-0.43593264>,<0.69919789,-1.11198938,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.12141621,-0.72420096,0.43595517>,<1.11197007,-0.69917864,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.12141621,-0.72420096,-0.43593264>,<1.11197007,-0.69917864,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.12141621,0.72424161,-0.43593264>,<1.11197007,0.69921923,-0.46095490>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<1.12141621,0.72424161,0.43595517>,<1.11197007,0.69921923,0.46097755>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,1.12143755,-0.72424853>,<0.46092665,1.11199141,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,1.12143755,0.72419405>,<0.46092665,1.11199141,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,1.12143755,-0.72424853>,<-0.46100581,1.11199141,-0.69922614>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,1.12143755,0.72419405>,<-0.46100581,1.11199141,0.69917172>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,-0.72420096,1.12138999>,<0.46092665,-0.69917864,1.11198246>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,-0.72420096,1.12138999>,<-0.46100581,-0.69917864,1.11198246>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.43590438,0.72424161,1.12138999>,<0.46092665,0.69921923,1.11198246>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.43598342,0.72424161,1.12138999>,<-0.46100581,0.69921923,1.11198246>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,0.43592572,-1.12144446>,<0.69919789,0.46094799,-1.11199832>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,0.43592572,-1.12144446>,<-0.69919997,0.46094799,-1.11199832>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.72422230,-0.43596208,-1.12144446>,<-0.69919997,-0.46098447,-1.11199832>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.72422028,-0.43596208,-1.12144446>,<0.69919789,-0.46098447,-1.11199832>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,-0.52676880>,<-0.49959964,0.13851070,-0.49954879>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,-0.52676880>,<-0.53495473,0.06995952,-0.53494263>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.52681959,0.12370551,-0.52676880>,<-0.55346125,0.15848231,-0.55344892>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.47237957,0.15331590,-0.47232866>,<-0.49959964,0.13851070,-0.49954879>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,-0.50594890>,<-0.48487151,-0.19067377,-0.48485923>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,-0.50594890>,<-0.49597538,-0.10986197,-0.49596322>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.50592268,-0.16214293,-0.50594890>,<-0.54301280,-0.17771930,-0.54303908>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<-0.46382034,-0.21920466,-0.46376944>,<-0.48487151,-0.19067377,-0.48485923>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.65420413,-0.65426177,0.16213602>,<0.67529380,-0.67531294,0.19066685>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.65426177,0.16213602>,<0.61715245,-0.61717170,0.17771238>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.65420413,-0.65426177,0.16213602>,<0.66418982,-0.66420901,0.10985506>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.69638348,-0.69636410,0.21919775>,<0.67529380,-0.67531294,0.19066685>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.50592065,-0.65426177,0.99801326>,<0.49593496,-0.66420901,1.05029416>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.65426177,0.99801326>,<0.48483098,-0.67531294,0.96948236>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.50592065,-0.65426177,0.99801326>,<0.54301083,-0.61717170,0.98247552>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.46374118,-0.69636410,0.94095153>,<0.48483098,-0.67531294,0.96948236>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) VMD_cylinder(<0.63338423,-0.52679825,1.03649139>,<0.62521052,-0.53493339,1.09019876>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.52679825,1.03649139>,<0.66060412,-0.49957830,1.02168620>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.63338423,-0.52679825,1.03649139>,<0.60674262,-0.55343992,1.00171459>0.0058,rgbt<0.250,0.750,0.750,0.000>,1) VMD_cylinder(<0.68782413,-0.47235823,1.00688100>,<0.66060412,-0.49957830,1.02168620>0.0058,rgbt<1.000,1.000,1.000,0.000>,1) // End of POV-Ray 3.x generation
POV-Ray SDL
5
benjaminbolbrinker/RASPA2
Docs/InputFiles/Figures/IRMOF-8/plot.pov
[ "MIT" ]
# # External Addenda lexicon # # #Comment # Blank lines are ignored # "headword" [pos] : phone phone phone phone ... # # phone *must* be in the phoneset for the lexicon, thus vowels must be # appended with 0 or 1 stress values (if you have them in your language) # head word should be quoted if it contains non-ascii or whitespace # sleekit j : s l iy1 k ih0 t trochled : t r ao1 k ax0 l d voldemort n :
Lex
3
rathann/flite
tools/example.lex
[ "Apache-2.0" ]
BEGIN { FS = " " numlist = 0 nblines = 15 } { if ( numlist == 1 && $1 == "--------------------------------------------------------------------------------------------" ) { exit } if ( numlist == 0 && $1 == "--------------------------------------------------------------------------------------------" ) { numlist = 1 next } if ( numlist == 1 ) { if ( $0 ~ "=>" && nblines > 0 ) { SENDER = $2 STX = pfFormat($4) getline RECEIVER = $1 RTX = pfFormat($3) printf "%s;%s;%s\n", SENDER, RTX, STX printf "%s;%s;%s\n", RECEIVER, STX, RTX nblines-- if ( nblines < 1 ) { exit } } next } } END { } function pfFormat(str) { sub("b","",str) return str }
Awk
3
alaahseen/pfsense
src/usr/local/bin/iftop_parse.awk
[ "Apache-2.0" ]
% % This example is similar to example 8. We also calculate the jacobian, % but this time we want the jacobian at the steady state. % This is somewhat easier than calculating it manually in the model % because the steady state calculates it and we can get an annotated matrix which % tells us which coumn and which row represent what. % % So in this example, we learn how to work with annotated matrices. % COPASI MODEL_STRING = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <!-- Created by COPASI version 4.5.31 (Debug) on 2010-05-11 13:40 with libSBML version 4.1.0-b3. -->\n <sbml xmlns=\"http://www.sbml.org/sbml/level2/version4\" level=\"2\" version=\"4\">\n <model metaid=\"COPASI1\" id=\"Model_1\" name=\"New Model\">\n <listOfUnitDefinitions>\n <unitDefinition id=\"volume\" name=\"volume\">\n <listOfUnits>\n <unit kind=\"litre\" scale=\"-3\"/>\n </listOfUnits>\n </unitDefinition>\n <unitDefinition id=\"substance\" name=\"substance\">\n <listOfUnits>\n <unit kind=\"mole\" scale=\"-3\"/>\n </listOfUnits>\n </unitDefinition>\n <unitDefinition id=\"unit_0\">\n <listOfUnits>\n <unit kind=\"second\" exponent=\"-1\"/>\n </listOfUnits>\n </unitDefinition>\n </listOfUnitDefinitions>\n <listOfCompartments>\n <compartment id=\"compartment_1\" name=\"compartment\" size=\"1\"/>\n </listOfCompartments>\n <listOfSpecies>\n <species metaid=\"COPASI2\" id=\"species_1\" name=\"A\" compartment=\"compartment_1\" initialConcentration=\"1\"/>\n <species metaid=\"COPASI3\" id=\"species_2\" name=\"B\" compartment=\"compartment_1\" initialConcentration=\"0\"/>\n <species metaid=\"COPASI4\" id=\"species_3\" name=\"C\" compartment=\"compartment_1\" initialConcentration=\"0\"/>\n </listOfSpecies>\n <listOfReactions>\n <reaction metaid=\"COPASI5\" id=\"reaction_1\" name=\"reaction_1\" reversible=\"false\">\n <listOfReactants>\n <speciesReference species=\"species_1\"/>\n </listOfReactants>\n <listOfProducts>\n <speciesReference species=\"species_2\"/>\n </listOfProducts>\n <kineticLaw>\n <math xmlns=\"http://www.w3.org/1998/Math/MathML\">\n <apply>\n <times/>\n <ci> compartment_1 </ci>\n <ci> k1 </ci>\n <ci> species_1 </ci>\n </apply>\n </math>\n <listOfParameters>\n <parameter id=\"k1\" name=\"k1\" value=\"0.2\" units=\"unit_0\"/>\n </listOfParameters>\n </kineticLaw>\n </reaction>\n <reaction metaid=\"COPASI6\" id=\"reaction_2\" name=\"reaction_2\" reversible=\"false\">\n <listOfReactants>\n <speciesReference species=\"species_2\"/>\n </listOfReactants>\n <listOfProducts>\n <speciesReference species=\"species_3\"/>\n </listOfProducts>\n <kineticLaw>\n <math xmlns=\"http://www.w3.org/1998/Math/MathML\">\n <apply>\n <times/>\n <ci> compartment_1 </ci>\n <ci> k1 </ci>\n <ci> species_2 </ci>\n </apply>\n </math>\n <listOfParameters>\n <parameter id=\"k1\" name=\"k1\" value=\"0.1\" units=\"unit_0\"/>\n </listOfParameters>\n </kineticLaw>\n </reaction>\n </listOfReactions>\n </model>\n </sbml>\n"; % initialize the backend library % since we are not interested in the arguments % that are passed to main, we pass 0 and None to % init %!assert( swig_this(CRootContainer.getRoot()) != 0); % create a new datamodel dataModel = CRootContainer.addDatamodel(); %!assert( swig_this(dataModel) != 0); %!assert( CRootContainer.getDatamodelList().size() == 1); % next we import a simple SBML model from a string % clear the message queue so that we only have error messages from the import in the queue CCopasiMessage.clearDeque(); result=true; try result = dataModel.importSBMLFromString(MODEL_STRING); catch error("An exception has occured during the import of the SBML model.\n"); quit(1); end_try_catch % check if the import was successful mostSevere = CCopasiMessage.getHighestSeverity(); % if it was a filtered error, we convert it to an unfiltered type % the filtered error messages have the same value as the unfiltered, but they % have the 7th bit set which basically adds 128 to the value mostSevere = bitand(mostSevere, 127); % we assume that the import succeeded if the return value is true and % the most severe error message is not an error or an exception if ((result != true) && (mostSevere < CCopasiMessage_ERROR)) error("Sorry. Model could not be imported.\n"); quit(1) endif % get the trajectory task object task = dataModel.getTask("Steady-State"); % if there isn't one if swig_this(task) == 0 % create a new one task = CSteadyStateTask(); % add the new task to the task list dataModel.getTaskList().addAndOwn(task); endif CCopasiMessage.clearDeque(); try % now we run the actual trajectory task.process(true); catch error("Error. Running the scan failed.\n"); % check if there are additional error messages if (CCopasiMessage.size() > 0) % print the messages in chronological order error("%s\n",CCopasiMessage.getAllMessageText(true)); endif quit(1) end_try_catch % now we can get the result of the steady state calculation, e.g. the jacobian % matrix of the model at the steady state % here we can either get the jacobian as we did in example 8 as a matrix with % getJacobian, or we can use getJacobianAnnotated to get an annotated matrix % Corresponding methods for the reduced jacobian are getJacobianX and getJacobianXAnnotated aj = task.getJacobianAnnotated(); %!assert( swig_this(aj) != 0); if (swig_this(aj) != 0) % we do the output, but as in contrast to the jacobian in example 8, % we now have all the information for the output in one place % first the array annotation can tell us how many dimensions it has. % Since the matrix is a 2D array, it should have 2 dimensions %!assert( aj.dimensionality() == 2); % since the matrix has a dimensionality of 2, the inde for the underlaying abstract array % object is a vector with two unsigned int elements % First element is the index for the outer dimension and the second element is the index % for the inner dimension index=SizeTStdVector(2); % since the rows and columns have the same annotation for the jacobian, it doesn't matter % for which dimension we get the annotations annotations = aj.getAnnotationsString(1); printf("Jacobian Matrix: \n"); printf("\n"); printf("%7s", " "); for i = 0:annotations.size()-1 printf("%7s", annotations(i)); endfor printf("\n"); array=aj.array(); for i = 0:annotations.size()-1 printf("%7s", annotations(i)); index(0)=i; for j = 0:annotations.size()-1 index(1)=j; printf("%7.3f", array.get(index)); endfor printf("\n"); endfor endif
Octave
5
SzVarga/COPASI
copasi/bindings/octave/examples/example9.oct
[ "Artistic-2.0" ]
/* eslint-env jest */ import { join } from 'path' import { nextBuild } from 'next-test-utils' import fs from 'fs' const appDir = join(__dirname, '../') const profileEventsPath = join(appDir, '.next', 'profile-events.json') // TODO: Make profiling experimental flag work with webpack 5 describe.skip('Profiling Usage', () => { beforeAll(async () => { // Delete file if it already exists if (fs.existsSync(profileEventsPath)) fs.unlink(profileEventsPath, () => { console.log('Deleted Existing profile-events.json file') }) await nextBuild(appDir) }) describe('Profiling the build', () => { it('should emit files', async () => { expect(fs.existsSync(profileEventsPath)).toBe(true) }) }) })
JavaScript
4
blomqma/next.js
test/integration/profiling/test/index.test.js
[ "MIT" ]
HAI 1.2 I HAS A LAST ITZ 1 I HAS A LASTER ITZ 2 I HAS A LASTEST I HAS A EVENPOWA ITZ 2 IM IN YR CLASS LASTEST R SUM OF LAST AN LASTER BOTH SAEM LASTEST BIGGR OF LASTEST AN 4000000, O RLY? YA RLY, GTFO OIC BOTH SAEM MOD OF LASTEST AN 2 AN 0, O RLY? YA RLY, EVENPOWA R SUM OF EVENPOWA LASTEST OIC LAST R LASTER LASTER R LASTEST IM OUTTA YR CLASS VISIBLE EVENPOWA KTHXBYE
LOLCODE
3
LeartS/loleuler
002.lol
[ "MIT" ]
# Group Config ## api/v0.2/config [/config] ### Get config of network [GET] Returns the config of network + Response 200 (application/json) + Attributes + request (Request, required) + status: success (string, required) + result (Config, required{{isResultNullable}}) + error (Error, required, nullable)
API Blueprint
4
smishraIOV/ri-aggregation
infrastructure/api-docs/blueprint/groups/config.apib
[ "Apache-2.0", "MIT" ]
import structs/[Bag, HashBag] import Generator DSL: class { // TODO: make this a singleton. or so. init: func json: func (f: Func(This) -> HashBag) -> String { generateString(f(this)) } object: func (args: ...) -> HashBag { object := HashBag new() keyFollowing := true key: String = null args each(|arg| match(keyFollowing) { case true => { if(T != String) { Exception new(This, "Key is not a String, but %s." format(T name)) throw() } else { key = arg as String } keyFollowing = false } case false => { object put(key, arg) keyFollowing = true } } ) object } array: func (args: ...) -> Bag { bag := Bag new() args each(|arg| bag add(arg) ) bag } } make: func (f: Func(DSL) -> HashBag) -> String { DSL new() json(f) // TODO: not so nice }
ooc
4
fredrikbryntesson/launchtest
sdk/text/json/DSL.ooc
[ "MIT" ]
name: m0-decomp version: 1.0 description: M0 decompilation support author: HOL OpenTheory Packager <opentheory-packager@hol-theorem-prover.org> license: MIT requires: base requires: m0-prog show: "HOL4" show: "Data.Bool" show: "Data.Pair" main { article: "m0_decomp.ot.art" interpretation: "../../../../src/opentheory/hol4.int" }
Isabelle
2
dwRchyngqxs/HOL
examples/l3-machine-code/m0/decompiler/m0-decomp.thy
[ "BSD-3-Clause" ]
[Exposed=Window] interface Selection { readonly attribute Node? anchorNode; readonly attribute unsigned long anchorOffset; readonly attribute Node? focusNode; readonly attribute unsigned long focusOffset; readonly attribute boolean isCollapsed; readonly attribute unsigned long rangeCount; readonly attribute DOMString type; Range getRangeAt(unsigned long index); undefined addRange(Range range); undefined removeRange(Range range); undefined removeAllRanges(); undefined empty(); undefined collapse(Node? node, optional unsigned long offset = 0); undefined setPosition(Node? node, optional unsigned long offset = 0); undefined collapseToStart(); undefined collapseToEnd(); undefined extend(Node node, optional unsigned long offset = 0); undefined setBaseAndExtent(Node anchorNode, unsigned long anchorOffset, Node focusNode, unsigned long focusOffset); undefined selectAllChildren(Node node); [CEReactions] undefined deleteFromDocument(); boolean containsNode(Node node, optional boolean allowPartialContainment = false); stringifier DOMString (); };
WebIDL
4
Unique184/jsdom
lib/jsdom/living/selection/Selection.webidl
[ "MIT" ]
interface Iterator[A] """ Iterators generate a series of values, one value at a time on each call to `next()`. An Iterator is considered exhausted, once its `has_next()` method returns `false`. Thus every call to `next()` should be preceeded with a call to `has_next()` to check for exhaustiveness. ## Usage Given the rules for using Iterators mentioned above, basic usage of an iterator looks like this: ```pony while iterator.has_next() do let elem = iterator.next()? // do something with elem end ``` The `For`-loop provides a more concise way of iteration: ```pony for elem in iterator do // do something with elem end ``` Iteration using `While` is more flexible as it allows to continue iterating if a call to `next()` errors. The `For`-loop does not allow this. ## Implementing Iterators Iterator implementations need to adhere to the following rules to be considered well-behaved: * If the Iterator is exhausted, `has_next()` needs to return `false`. * Once `has_next()` returned `false` it is not allowed to switch back to `true` (Unless the Iterator supports rewinding) * `has_next()` does not change its returned value if `next()` has not been called. That means, that between two calls to `next()` any number of calls to `has_next()` need to return the same value. (Unless the Iterator supports rewinding) * A call to `next()` erroring does not necessarily denote exhaustiveness. ### Example ```pony // Generates values from `from` to 0 class ref Countdown is Iterator[USize] var _cur: USize var _has_next: Bool = true new ref create(from: USize) => _cur = from fun ref has_next(): Bool => _has_next fun ref next(): USize => let elem = _cur = _cur - 1 if elem == 0 then _has_next = false end elem ``` """ fun ref has_next(): Bool """ Returns `true` if this Iterator is not yet exhausted. That means that a value returned from a subsequent call to `next()` is a valid part of this iterator. Returns `false` if this Iterator is exhausted. The behavior of `next()` after this function returned `false` is undefined, it might throw an error or return values which are not part of this Iterator. """ fun ref next(): A ? """ Generate the next value. This might error, which does not necessarily mean that the Iterator is exhausted. """
Pony
5
presidentbeef/ponyc
packages/builtin/iterator.pony
[ "BSD-2-Clause" ]
# This is a small sample on how to use a Crystal::Transformer # to transform source code. # # Here we transform all number literals with their char # equivalent using `chr`. # Use `require "compiler/crystal/syntax"` in your programs require "../../src/compiler/crystal/syntax" class Charify < Crystal::Transformer def transform(node : Crystal::NumberLiteral) Crystal::CharLiteral.new(node.value.to_i.chr) end end nodes = Crystal::Parser.parse("hello(99, 114, 121, 115, 116, 97, 108)") puts nodes.transform(Charify.new)
Crystal
4
jessedoyle/crystal
samples/compiler/transformer_example.cr
[ "Apache-2.0" ]
FROM rustembedded/cross:x86_64-unknown-linux-musl COPY stage/ubuntu-install-packages / RUN /ubuntu-install-packages
Dockerfile
1
Svetlitski/ripgrep
ci/docker/x86_64-unknown-linux-musl/Dockerfile
[ "MIT", "Unlicense" ]
CC = clang .PHONY: all all: stage2.dylib stage2.dylib: payload.c $(CC) -shared -o stage2.dylib payload.c
Makefile
3
OsmanDere/metasploit-framework
external/source/exploits/CVE-2018-4404/stage2/Makefile
[ "BSD-2-Clause", "BSD-3-Clause" ]
<?php $this->layout('main', [ 'title' => __('Connected AzuraRelays'), 'manual' => true ]); /** @var \App\Assets $assets */ $assets ->load('luxon') ->addInlineJs($this->fetch('admin/relays/index.js')); ?> <div class="card"> <div class="card-header bg-primary-dark"> <h2 class="card-title"><?=__('Connected AzuraRelays') ?></h2> </div> <table class="table table-responsive-md table-striped mb-0"> <thead> <tr> <th style="width: 35%"><?=__('Relay') ?></th> <th style="width: 15%"><?=__('Is Public') ?></th> <th style="width: 25%"><?=__('First Connected') ?></th> <th style="width: 25%"><?=__('Latest Update') ?></th> </tr> </thead> <tbody> <?php foreach($relays as $row): ?> <tr class="align-middle"> <td class="text-center"> <big> <a href="<?=$this->e($row['base_url']) ?>" target="_blank"><?=$this->e($row['name']) ?></a> </big> </td> <td class="text-center"> <?=($row['is_visible_on_public_pages'] ? __('Yes') : __('No')) ?> </td> <td><time data-content="<?=$row['created_at'] ?>"></time></td> <td><time data-content="<?=$row['updated_at'] ?>"></time></td> </tr> <?php endforeach; ?> </tbody> </table> </div>
HTML+PHP
4
ikafridi/PlayCast
templates/admin/relays/index.phtml
[ "Apache-2.0" ]
use("fib_rec") use("benchmark") Benchmark report(fib(30))
Ioke
2
olabini/ioke
test/scripts/bench_fib_rec.ik
[ "ICU", "MIT" ]
local helpers = require('test.functional.helpers')(after_each) local assert_alive = helpers.assert_alive local clear, command, write_file = helpers.clear, helpers.command, helpers.write_file describe("modeline", function() local tempfile = helpers.tmpname() before_each(clear) after_each(function() os.remove(tempfile) end) it('does not crash with a large version number', function() write_file(tempfile, 'vim100000000000000000000000') command('e! ' .. tempfile) assert_alive() end) end)
Lua
5
uga-rosa/neovim
test/functional/vimscript/modeline_spec.lua
[ "Vim" ]
Import mojo Class Level Field points#[] Field bounds[] Field pegs#[] Method New(_points#[],_bounds[],_pegs#[]) points = _points bounds = _bounds pegs = _pegs End End Class Point Field x#,y# Method New(_x#,_y#) x=_x y=_y End Method Draw() SetColor 255,255,255 DrawCircle x,y,2.5 End End Class Bound Field s:Point,e:Point Field conflicts Method New(_s:Point,_e:Point) s=_s e=_e End Method Draw() If conflicts SetColor 255,0,0 Else SetColor 255,255,255 Endif conflicts = False If bapp.dragbound = Self DrawLine s.x,s.y,bapp.mx,bapp.my DrawLine bapp.mx,bapp.my,e.x,e.y Else DrawLine s.x,s.y,e.x,e.y End End Function contains(x#,y#) Local n=0 For Local b:Bound=Eachin bapp.bounds If linesintersect(b.s,b.e,-500,0,x,y)>=0 n+=1 Endif Next Return (n Mod 2)=1 End Function contains(pt:Point) Return contains(pt.x,pt.y) End End Class Peg Extends Point Field in Method New(_x#,_y#, _in) x=_x y=_y in=_in End Method Draw() If in SetColor 0,255,0 DrawCircle x,y,5 Else SetColor 255,0,0 DrawRect x-5,y-5,10,10 Endif If Bound.contains(Self) SetColor 0,0,0 DrawCircle x,y,1 Endif End End Class BoingApp Extends App Field screenMatrix#[] Field levels:List<Level> Field points:List<Point> Field bounds:List<Bound> Field pegs:List<Peg> Field state$="normal" Field moves Field ox#,oy#,mx#,my# Field dragdx#,dragdy#,dragox#,dragoy#,dragallowed Field dragpoint:Point Field dragbound:Bound Field level Method OnCreate() SetUpdateRate 60 levels = New List<Level> levels.AddLast (New Level( [-50.0,-50.0,-50.0,50.0,50.0,-50.0,50.0,50.0], [0,1,0,2,1,3,2,3], [-74.0,-99.0,1.0, -145.0,-69.0,1.0, -153.0,-6.0,1.0, -145.0,46.0,1.0, -87.0,84.0,1.0, -93.0,-53.0,0.0, -96.0,25.0,0.0])) levels.AddLast (New Level( [-180.0,-140.0,180.0,-140.0,0.0,140.0], [0,1,1,2,2,0], [-149.0,-122.0,1.0, 131.0,-117.0,1.0, 121.0,104.0,1.0, -146.0,122.0,1.0, -7.0,-8.0,0.0])) levels.AddLast (New Level( [-50.0,-50.0,-50.0,50.0,50.0,-50.0,50.0,50.0], [0,1,0,2,1,3,2,3], [-124.0,51.0,1.0, -99.0,-38.0,1.0, -47.0,-84.0,1.0, 54.0,-83.0,1.0, 108.0,-34.0,1.0, 130.0,45.0,1.0, 3.0,1.0,1.0, -42.0,28.0,0.0, 41.0,26.0,0.0])) changeLevel PushMatrix Scale DeviceWidth()/400.0,DeviceHeight()/300.0 Translate 200,150 screenMatrix = GetMatrix() PopMatrix End Method changeLevel() Local l:Level = levels.RemoveFirst() levels.AddLast l points=New List<Point> Local pointsarr:Point[l.points.Length/2] For Local i=0 To l.points.Length-1 Step 2 Local pt:Point = New Point(l.points[i],l.points[i+1]) points.AddLast pt pointsarr[i/2] = pt Next bounds = New List<Bound> For Local i=0 To l.bounds.Length-1 Step 2 Local b:Bound = New Bound( pointsarr[l.bounds[i]], pointsarr[l.bounds[i+1]] ) bounds.AddLast b Next pegs = New List<Peg> For Local i=0 To l.pegs.Length-1 Step 3 pegs.AddLast( New Peg(l.pegs[i],l.pegs[i+1], l.pegs[i+2]) ) Next moves = 0 setState "normal" End Method OnUpdate() PushMatrix Transform screenMatrix[0],screenMatrix[1],screenMatrix[2],screenMatrix[3],screenMatrix[4],screenMatrix[5] mx = realMouseX() my = realMouseY() PopMatrix Select state Case "normal" If TouchDown(0) setState "startdrag" Endif Case "startdrag" If TouchDown(0) getDragBound Else setState "normal" Endif Case "dragbound" checkDragBound If TouchDown(0) If Sgn((mx-ox)*dragdx + (my-oy)*dragdy)=-1 And linesintersect(dragbound.s,dragbound.e,ox,oy,mx,my)>=0 setState "startdrag" Endif Else If dragallowed bounds.RemoveEach dragbound Local mid:Point=New Point(mx,my) points.AddLast mid bounds.AddLast New Bound(dragbound.s,mid) bounds.AddLast New Bound(mid,dragbound.e) Endif setState "normal" Endif Case "dragpoint" checkDragPoint If TouchDown(0) dragpoint.x = mx + dragdx dragpoint.y = my + dragdy Else If Not dragallowed dragpoint.x = dragox dragpoint.y = dragoy Endif setState "normal" Endif End If TouchHit(0) ' Print Int(mx)+","+Int(my)+",0, " Endif ox = mx oy = my End Method checkDragBound() dragallowed=True For Local b:Bound=Eachin bounds If b<>dragbound Local l1#=linesintersect(b.s,b.e,dragbound.s.x,dragbound.s.y,mx,my) Local l2#=linesintersect(b.s,b.e,mx,my,dragbound.e.x,dragbound.e.y) If (l1>0.00001 And l1<0.99999) Or (l2>0.00001 And l2<0.99999) dragallowed=False b.conflicts=True dragbound.conflicts=True Endif Endif Next End Method checkDragPoint() dragallowed=True For Local b:Bound=Eachin bounds If b.s=dragpoint Or b.e=dragpoint For Local b2:Bound=Eachin bounds If b<>b2 Local lambda#=linesintersect(b.s,b.e,b2.s,b2.e) If lambda>0.00001 And lambda<0.99999 dragallowed=False b.conflicts=True b2.conflicts=True Endif Endif Next Endif Next End Method setState(_state$) Local ostate$=state state = _state Select state Case "normal" dragbound = Null dragpoint = Null If ostate="dragpoint" Or ostate="dragbound" moves+=1 Endif checkPegs Case "startdrag" dragbound = Null dragpoint = Null If ostate = "normal" getDragPoint Endif End End Method getDragPoint() For Local pt:Point=Eachin points Local dx#=pt.x-mx Local dy#=pt.y-my If dx*dx+dy*dy<50 dragpoint = pt dragdx=pt.x-mx dragdy=pt.y-my dragox=pt.x dragoy=pt.y setState "dragpoint" Exit Endif Next End Method getDragBound() For Local b:Bound=Eachin bounds If linesintersect(b.s,b.e,ox,oy,mx,my)>=0 dragbound=b dragdx = mx-ox dragdy = my-oy setState "dragbound" Return End Next End Method checkPegs() For Local p:Peg=Eachin pegs If Bound.contains(p)<>p.in Return Endif Next Print "OK!" If moves=1 Print "Did it in 1 move!!!" Else Print "Dit it in "+moves+" moves" Endif changeLevel End Method OnRender() Cls SetColor 255,255,255 PushMatrix Transform screenMatrix[0],screenMatrix[1],screenMatrix[2],screenMatrix[3],screenMatrix[4],screenMatrix[5] For Local p:Peg = Eachin pegs p.Draw Next For Local b:Bound=Eachin bounds b.Draw Next For Local pt:Point=Eachin points pt.Draw Next PopMatrix If moves=1 DrawText "1 move",0,0 Else DrawText moves+" moves",0,0 Endif End End Function realMouseX#() Local parts#[] = InvTransform([MouseX(),MouseY()]) Return parts[0] End Function realMouseY#() Local parts#[] = InvTransform([MouseX(),MouseY()]) Return parts[1] End 'simple version Function linesintersect#(ax#,ay#,bx#,by#,cx#,cy#,dx#,dy#,fit=0) 'fit, bitmask, set: ' 1: doesn't need to be on first segment ' 2: doesn't need to be on second segment bx-=ax by-=ay dx-=cx dy-=cy Local lambda#,mu# If dx<>0 lambda=(cy-ay+(ax-cx)*dy/dx)/(by-bx*dy/dx) Else lambda=(cx-ax+(ay-cy)*dx/dy)/(bx-by*dx/dy) Endif If bx<>0 mu=(ay-cy+(cx-ax)*by/bx)/(dy-dx*by/bx) Else mu=(ax-cx+(cy-ay)*bx/by)/(dx-dy*bx/by) Endif If (lambda>=0 And lambda<=1) Or (fit & 1) If (mu>=0 And mu<=1) Or (fit & 2) Return lambda Endif Endif Return -1 End Function Function linesintersect#(s:Point,e:Point,x1#,y1#,x2#,y2#) Return linesintersect(s.x,s.y,e.x,e.y,x1,y1,x2,y2) End Function linesintersect#(s1:Point,e1:Point,s2:Point,e2:Point) Return linesintersect(s1.x,s1.y,e1.x,e1.y,s2.x,s2.y,e2.x,e2.y) End Global bapp:BoingApp Function Main() bapp = New BoingApp End
Monkey
5
blitz-research/monkey
bananas/warpy/pegs/pegs.monkey
[ "Zlib" ]