Mercurial > code > home > repos > light9
changeset 1195:19e8a57b060e
checkpoint show data
Ignore-this: 35532ca55f44d495a30d808ac106db73
line wrap: on
line diff
--- a/show/dance2014/effectClass.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/effectClass.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -5,6 +5,8 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +@prefix ch: <http://light9.bigasterisk.com/theater/piedmont/channel/> . +@prefix chase: <http://light9.bigasterisk.com/chase/> . # when these are inserted, a curve called 'env' will be added to this # code, so multiply by that. Also if you mention 'music' anywhere, an @@ -13,7 +15,7 @@ effect:cycFlash a :EffectClass; rdfs:label "cycFlash"; - :code "out = <http://light9.bigasterisk.com/show/dance2013/sub/cyc> * nsin(t*2)" . + :code "out = <http://light9.bigasterisk.com/show/dance2013/sub/cyc> * nsin(t*2) * env" . # Notes for quneo pads: # 48 49 50 51 @@ -38,7 +40,7 @@ :quneoNote 37; :code "out = [env * p1, env * p2, env * p4]", - "p1 = env * <http://light9.bigasterisk.com/show/dance2013/sub/blue> * .3", + "p1 = <http://light9.bigasterisk.com/show/dance2013/sub/blue> * .3", "p2 = Strip.solid('LR', (0,0,1))", "p4 = Blacklight(1)" . @@ -46,7 +48,7 @@ effect:whiteLed a :EffectClass; rdfs:label "whiteLed"; - :code "out = Strip.solid('LR', (1,1,1))" . + :code "out = Strip.solid('LR', (1,1,1)) * env" . effect:slowColor a :EffectClass; @@ -60,4 +62,21 @@ "out = [r*env,y*env,b*env]" . - \ No newline at end of file +chase:backchase a :Chase; :channels ( +<http://light9.bigasterisk.com/theater/piedmont/channel/b14-yel> +<http://light9.bigasterisk.com/theater/piedmont/channel/b15-red> +<http://light9.bigasterisk.com/theater/piedmont/channel/b21-edge> +<http://light9.bigasterisk.com/theater/piedmont/channel/b22-c> +<http://light9.bigasterisk.com/theater/piedmont/channel/b26-edge> +<http://light9.bigasterisk.com/theater/piedmont/channel/b32-red> +<http://light9.bigasterisk.com/theater/piedmont/channel/b34-yel> +) . + + +effect:backChase a :EffectClass; + rdfs:label "back chase"; + :code "out = chase(t, names=backchase, ontime=.3, offset=-.11) * env" . + +effect:backChaseSlower a :EffectClass; + rdfs:label "back chase slower"; + :code "out = chase(t, names=backchase, ontime=.7, offset=-.11) * env" .
--- a/show/dance2014/song10.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song10.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,11 +4,11 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song10> ns1:curve <http://light9.bigasterisk.com/show/dance2014/song10/curve-1> ; - ns1:effect <http://light9.bigasterisk.com/show/dance2014/song10/effect-1> . - -<http://light9.bigasterisk.com/show/dance2014/song10/curve-1> a ns1:Curve ; - rdfs:label "black" . +<http://light9.bigasterisk.com/show/dance2014/song10> ns1:curve <http://light9.bigasterisk.com/show/dance2014/song10/curve-1>, + <http://light9.bigasterisk.com/show/dance2014/song10/curve-2>, + <http://light9.bigasterisk.com/show/dance2014/song10/curve-3> ; + ns1:effect <http://light9.bigasterisk.com/show/dance2014/song10/effect-2>, + <http://light9.bigasterisk.com/show/dance2014/song10/effect-3> . <http://light9.bigasterisk.com/show/dance2014/song10/effect-1> a ns1:Effect, <http://light9.bigasterisk.com/effect/blacklight> ; @@ -20,3 +20,22 @@ "p3 = Strip.solid('L', (0,0,1))", "p4 = Blacklight(1)" . +<http://light9.bigasterisk.com/show/dance2014/song10/curve-1> a ns1:Curve ; + rdfs:label "black" . + +<http://light9.bigasterisk.com/show/dance2014/song10/curve-2> a ns1:Curve ; + rdfs:label "song10" . + +<http://light9.bigasterisk.com/show/dance2014/song10/curve-3> a ns1:Curve ; + rdfs:label "full" . + +<http://light9.bigasterisk.com/show/dance2014/song10/effect-2> a ns1:Effect ; + rdfs:label "song10" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song10/curve-2>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/song10> * env" . + +<http://light9.bigasterisk.com/show/dance2014/song10/effect-3> a ns1:Effect ; + rdfs:label "full" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song10/curve-3>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/full> * env" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song10/curve-2.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song10/curve-2> ns1:points "0 0 2.824 0 4.824 1 176 1 178.4 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song10/curve-3.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song10/curve-3> ns1:points "0 0 168 0 170.4 0.8041 176.2 0.8194 178.3 0 181.4 0" . +
--- a/show/dance2014/song12/curve-3.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song12/curve-3.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song12/curve-3> ns1:points "0 0 0.1 0 2.1 1 20.64 1 22.64 0" . +<http://light9.bigasterisk.com/show/dance2014/song12/curve-3> ns1:points "" .
--- a/show/dance2014/song12/curve-4.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song12/curve-4.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song12/curve-4> ns1:points "0 0 0.1 0 2.1 1 20.64 1 22.64 0" . +<http://light9.bigasterisk.com/show/dance2014/song12/curve-4> ns1:points "" .
--- a/show/dance2014/song12/curve-5.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song12/curve-5.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song12/curve-5> ns1:points "0 0 0.1 0 2.1 1 20.64 1 22.64 0" . +<http://light9.bigasterisk.com/show/dance2014/song12/curve-5> ns1:points "" .
--- a/show/dance2014/song6/curve-1.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song6/curve-1.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song6/curve-1> ns1:points "0 0 58.59 0 82.92 0 131.7 1 133.7 0 182.5 0 184.3 0.4427 211.1 0.4427 214.6 0.2604 229 0.2604 231.4 0" . +<http://light9.bigasterisk.com/show/dance2014/song6/curve-1> ns1:points "0 0 58.59 0 76.44 0 95.06 0.6526 106.3 0.7588 107.9 0.5851 108.2 0.117 108.3 0.06383 108.6 0 108.9 0 110.6 0 110.9 0 111.7 1 112.7 0.9375 113.8 0.5471 118.3 0.4393 129.2 0.8758 129.9 0.01053 148.1 0 150.1 0.9043 164.7 0.9362 168.6 0.9655 171.4 0.5515 176.5 0.4947 180.8 0.4468 184.3 0.7056 211.1 0.7056 214.6 0.2604 229 0.2604 231.4 0" .
--- a/show/dance2014/song6/curve-2.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song6/curve-2.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song6/curve-2> ns1:points "0 0 64.14 0 64.21 1 73.6 0.9896 73.82 0 107.3 0 184 0 184.6 1 211.8 0.9792 212.5 0 216.9 0" . +<http://light9.bigasterisk.com/show/dance2014/song6/curve-2> ns1:points "0 0 130.1 0 130.1 1 149.5 0.9896 149.7 0 183.4 0 184 1 211.8 0.9792 212.5 0 216.9 0" .
--- a/show/dance2014/song6/curve-3.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song6/curve-3.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,5 +4,5 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -<http://light9.bigasterisk.com/show/dance2014/song6/curve-3> ns1:points "0 0 3.004 0 6.096 0 8.063 0.1475 9.256 0.4009 44.19 0.4838 45.88 0.7756 63.7 0.7713 64.15 0 72.96 0 73.77 0.7501 183 0.7768 184.8 0 195.4 0 212.1 0.2813 215.6 0.2196 227.9 0.2865 230 1 236.4 1 239 0 242.1 0" . +<http://light9.bigasterisk.com/show/dance2014/song6/curve-3> ns1:points "0 0 3.004 0 6.096 0 8.063 0.1475 9.256 0.4009 45.48 0.4838 45.88 0.7756 86.43 0.7735 94.66 0.6565 111.1 0.6441 129.8 0.6451 130.1 0 143.4 0 149.2 0.6903 155.1 0.4628 164.2 0.5435 170.5 0.6355 170.8 0.5888 171.1 0.5607 171.4 0.5327 171.6 0.514 172 0.4766 172.3 0.4486 172.6 0.4486 172.8 0.4486 173 0.4486 173.2 0.4486 173.6 0.4393 174.1 0.4393 174.6 0.4393 174.9 0.4393 175.1 0.4393 175.3 0.4486 175.5 0.4673 175.8 0.5047 176 0.5421 176.2 0.5888 176.4 0.6262 176.6 0.6636 183 0.7768 184.8 0 195.4 0 212.1 0.2813 215.9 0.5445 223.7 0.8785 227.9 0.5561 230 1 235.9 1 236.4 1 239 0 242.1 0" .
--- a/show/dance2014/song8.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/song8.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -4,8 +4,50 @@ @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +<http://light9.bigasterisk.com/show/dance2014/song8> ns1:curve <http://light9.bigasterisk.com/show/dance2014/song8/curve-1>, + <http://light9.bigasterisk.com/show/dance2014/song8/curve-2>, + <http://light9.bigasterisk.com/show/dance2014/song8/curve-3>, + <http://light9.bigasterisk.com/show/dance2014/song8/curve-4> ; + ns1:effect <http://light9.bigasterisk.com/show/dance2014/song8/effect-4>, + <http://light9.bigasterisk.com/show/dance2014/song8/effect-5> . + <http://light9.bigasterisk.com/show/dance2014/song8/effect-1> a ns1:Effect, <http://light9.bigasterisk.com/effect/whiteLed> ; rdfs:label "whiteLed" ; ns1:code "out = Strip.solid('LR', (1,1,1))" . +<http://light9.bigasterisk.com/show/dance2014/song8/effect-2> a ns1:Effect, + <http://light9.bigasterisk.com/effect/backChase> ; + rdfs:label "back chase" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song8/curve-1>", + "out = chase(t, names=backchase, ontime=.7, offset=-.11)" . + +<http://light9.bigasterisk.com/show/dance2014/song8/effect-3> a ns1:Effect, + <http://light9.bigasterisk.com/effect/cycToMusic> ; + rdfs:label "cyc to music" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song8/curve-2>", + "music = <http://light9.bigasterisk.com/show/dance2014/song8music>", + "out = <http://light9.bigasterisk.com/show/dance2013/sub/cyc> * music * env * 2" . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-1> a ns1:Curve ; + rdfs:label "back chase" . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-2> a ns1:Curve ; + rdfs:label "cyc to music" . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-3> a ns1:Curve ; + rdfs:label "song8" . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-4> a ns1:Curve ; + rdfs:label "full" . + +<http://light9.bigasterisk.com/show/dance2014/song8/effect-4> a ns1:Effect ; + rdfs:label "song8" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song8/curve-3>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/song8> * env" . + +<http://light9.bigasterisk.com/show/dance2014/song8/effect-5> a ns1:Effect ; + rdfs:label "full" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song8/curve-4>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/full> * env" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song8/curve-1.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-1> ns1:points "0 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song8/curve-2.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-2> ns1:points "0 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song8/curve-3.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-3> ns1:points "0 0 4.332 0 5.27 1 207.7 1 209.7 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song8/curve-4.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song8/curve-4> ns1:points "0 0 199.9 0 203.8 1 207.6 1 209.6 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song9.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,51 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song9> ns1:curve <http://light9.bigasterisk.com/show/dance2014/song9/curve-1>, + <http://light9.bigasterisk.com/show/dance2014/song9/curve-2>, + <http://light9.bigasterisk.com/show/dance2014/song9/curve-3>, + <http://light9.bigasterisk.com/show/dance2014/song9/curve-4> ; + ns1:effect <http://light9.bigasterisk.com/show/dance2014/song9/effect-1>, + <http://light9.bigasterisk.com/show/dance2014/song9/effect-2>, + <http://light9.bigasterisk.com/show/dance2014/song9/effect-3>, + <http://light9.bigasterisk.com/show/dance2014/song9/effect-4> . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-1> a ns1:Curve ; + rdfs:label "blacklight" . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-2> a ns1:Curve ; + rdfs:label "song9" . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-3> a ns1:Curve ; + rdfs:label "full" . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-4> a ns1:Curve ; + rdfs:label "blue" . + +<http://light9.bigasterisk.com/show/dance2014/song9/effect-1> a ns1:Effect, + <http://light9.bigasterisk.com/effect/blacklight> ; + rdfs:label "blacklight" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song9/curve-1>", + "out = [env * p1, env * p2, env * p4]", + "p1 = <http://light9.bigasterisk.com/show/dance2013/sub/blue> * .3", + "p2 = Strip.solid('LR', (0,0,1))", + "p4 = Blacklight(1)" . + +<http://light9.bigasterisk.com/show/dance2014/song9/effect-2> a ns1:Effect ; + rdfs:label "song9" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song9/curve-2>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/song9> * env" . + +<http://light9.bigasterisk.com/show/dance2014/song9/effect-3> a ns1:Effect ; + rdfs:label "full" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song9/curve-3>", + "out = <http://light9.bigasterisk.com/show/dance2014/sub/full> * env" . + +<http://light9.bigasterisk.com/show/dance2014/song9/effect-4> a ns1:Effect ; + rdfs:label "blue" ; + ns1:code "env = <http://light9.bigasterisk.com/show/dance2014/song9/curve-4>", + "out = <http://light9.bigasterisk.com/show/dance2013/sub/blue> * env" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song9/curve-1.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-1> ns1:points "0 0 77.03 0 79.03 1 107.3 1 109.2 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song9/curve-2.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-2> ns1:points "0 0 3.08 0 4.387 1 75.94 1 81.4 0 102.5 0 111 1 202.4 1 204.4 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song9/curve-3.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-3> ns1:points "0 0 196.1 0 201.1 1 202.4 1 204.8 0 208.2 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/song9/curve-4.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,8 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/song9/curve-4> ns1:points "0 0 77.02 0 79.02 1 109.3 1 111.3 0" . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/sub/song10.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,184 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10> a ns1:Submaster ; + rdfs:label "song10" ; + ns1:lightLevel <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/111713625>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/12560274>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/166389660>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/168179440>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/210127398>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/236499215>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/292922842>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/33932228>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/377030643>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/39872466>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/417583956>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/422942679>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/434283510>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/46323172>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/495113978>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/501967960>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/51581943>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/539912523>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/542824664>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/619851417>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/62549572>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/695655685>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/722642980>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/722889580>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/740694472>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/802010621>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/812815004>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/816451435>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/844536675>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/860167763>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/896823878>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/903043828>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/904126215>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/929736348>, + <http://light9.bigasterisk.com/show/dance2014/sub/song10/map/945517481> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/111713625> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/sharlyn> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/12560274> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f4-pool-l> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/166389660> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f5-fill> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/168179440> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b23-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/210127398> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/236499215> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/upright> ; + ns1:level 9.92e-02 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/292922842> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb3-g> ; + ns1:level 2.84e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/33932228> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b24-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/377030643> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f11-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/39872466> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b22-c> ; + ns1:level 6.5e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/417583956> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red4> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/422942679> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/oran2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/434283510> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree1> ; + ns1:level 7.1e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/46323172> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/495113978> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/oran4> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/501967960> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b14-yel> ; + ns1:level 6.4255e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/51581943> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b15-red> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/539912523> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb3-r> ; + ns1:level 5.25e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/542824664> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/oran3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/619851417> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f9-pool-r> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/62549572> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red1> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/695655685> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/722642980> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b34-yel> ; + ns1:level 5.751e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/722889580> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f8-fill> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/740694472> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b32-red> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/802010621> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/upleft> ; + ns1:level 3.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/812815004> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f1-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/816451435> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree2> ; + ns1:level 7.1e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/844536675> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree4> ; + ns1:level 7.1e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/860167763> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/oran1> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/896823878> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f7> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/903043828> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/904126215> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f12-purp> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/929736348> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree3> ; + ns1:level 7.1e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song10/map/945517481> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f10> ; + ns1:level 1e+00 . +
--- a/show/dance2014/sub/song12.n3 Sun Jun 15 20:14:07 2014 +0000 +++ b/show/dance2014/sub/song12.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -9,8 +9,7 @@ ns1:lightLevel <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/213322922>, <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/287963901>, <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/423319808>, - <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/634638197>, - <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/729447962>, + <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/476823974>, <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/735547441>, <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/86791898>, <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/900160309>, @@ -39,13 +38,10 @@ ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red4> ; ns1:level 8.6e-01 . -<http://light9.bigasterisk.com/show/dance2014/sub/song12/map/634638197> a ns1:ChannelSetting ; - ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb2-r> ; - ns1:level 6.192e-01 . +<http://light9.bigasterisk.com/show/dance2014/sub/song12/map/476823974> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/upright> ; + ns1:level 3.55e-01 . -<http://light9.bigasterisk.com/show/dance2014/sub/song12/map/729447962> a ns1:ChannelSetting ; - ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb1-r> ; - ns1:level 5.977e-01 . <http://light9.bigasterisk.com/show/dance2014/sub/song12/map/735547441> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red1> ; @@ -73,7 +69,7 @@ <http://light9.bigasterisk.com/sub/local/1402805688.08/map/354693780> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b22-c> ; - ns1:level 5.75e-01 . + ns1:level 6.55e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/505685357> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f7> ; @@ -85,23 +81,23 @@ <http://light9.bigasterisk.com/sub/local/1402805688.08/map/713223011> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b24-up> ; - ns1:level 5.2e-01 . + ns1:level 7.55e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/720004824> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/cyc-mid> ; - ns1:level 5.05e-01 . + ns1:level 4.85e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/799700581> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b23-up> ; - ns1:level 6.75e-01 . + ns1:level 8.7e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/824264591> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b34-yel> ; - ns1:level 4.7e-01 . + ns1:level 9.4e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/868010757> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b14-yel> ; - ns1:level 4.3e-01 . + ns1:level 9.15e-01 . <http://light9.bigasterisk.com/sub/local/1402805688.08/map/902277702> a ns1:ChannelSetting ; ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/down-c-P> ;
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/sub/song8.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,159 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8> a ns1:Submaster ; + rdfs:label "song8" ; + ns1:lightLevel <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/128274323>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/180768553>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/206183537>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/209885902>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/223965027>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/225978580>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/233136385>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/242993465>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/273260717>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/305773107>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/372099726>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/375387941>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/407656106>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/413105747>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/418571256>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/424005354>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/502556332>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/522103982>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/527975029>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/544446832>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/554828964>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/561514510>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/621292497>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/66827038>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/746865563>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/747601419>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/832320324>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/946009587>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/971468583>, + <http://light9.bigasterisk.com/show/dance2014/sub/song8/map/976920091> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/128274323> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b34-yel> ; + ns1:level 8.1e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/180768553> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b26-edge> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/206183537> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f10> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/209885902> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f8-fill> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/223965027> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f11-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/225978580> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red4> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/233136385> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f9-pool-r> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/242993465> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b21-edge> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/273260717> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f4-pool-l> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/305773107> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/372099726> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree4> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/375387941> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree1> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/407656106> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/upleft> ; + ns1:level 5.5e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/413105747> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/upright> ; + ns1:level 1.705e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/418571256> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f5-fill> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/424005354> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb3-g> ; + ns1:level 4e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/502556332> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b14-yel> ; + ns1:level 9.05e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/522103982> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/527975029> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f12-purp> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/544446832> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b24-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/554828964> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/561514510> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f1-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/621292497> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f7> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/66827038> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b23-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/746865563> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb3-r> ; + ns1:level 5.4e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/747601419> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red1> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/832320324> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/gree2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/946009587> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/sharlyn> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/971468583> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song8/map/976920091> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red2> ; + ns1:level 1e+00 . +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2014/sub/song9.n3 Sun Jun 15 20:14:35 2014 +0000 @@ -0,0 +1,119 @@ +@prefix ns1: <http://light9.bigasterisk.com/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9> a ns1:Submaster ; + rdfs:label "song9" ; + ns1:lightLevel <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/106187695>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/141989413>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/152649245>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/172095200>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/199888573>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/259031161>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/314486340>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/318405963>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/367450729>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/39505021>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/516145210>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/523834620>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/54881197>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/646931464>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/718087135>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/766940992>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/767369520>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/776178203>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/823303511>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/836969778>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/843505540>, + <http://light9.bigasterisk.com/show/dance2014/sub/song9/map/861857089> . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/106187695> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b15-red> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/141989413> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red4> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/152649245> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f10> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/172095200> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f9-pool-r> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/199888573> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b32-red> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/259031161> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b23-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/314486340> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/sharlyn> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/318405963> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f12-purp> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/367450729> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f8-fill> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/39505021> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f11-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/516145210> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f5-fill> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/523834620> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f7> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/54881197> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f1-blue> ; + ns1:level 0e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/646931464> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red3> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/718087135> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f4-pool-l> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/766940992> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f2> ; + ns1:level 5.2e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/767369520> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b22-c> ; + ns1:level 6.5e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/776178203> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red2> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/823303511> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/b24-up> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/836969778> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/red1> ; + ns1:level 1e+00 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/843505540> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/rgb3-r> ; + ns1:level 5.25e-01 . + +<http://light9.bigasterisk.com/show/dance2014/sub/song9/map/861857089> a ns1:ChannelSetting ; + ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/f3> ; + ns1:level 5.2e-01 . +