bplist00_editorViewerWindowYrootPatch_1249 588 580 562 0 0 1920 1178 UclassUstateWQCPatch XtimebaseUnodes[connectionsXuserInfoVparent:bs9SkeyZQCGradient 368_ivarInputPortStates_systemInputPortStates_clearDepthBuffer&(-2[inputColor3^inputDirection[inputColor1[inputColor2]inputBlendingUvalue !"#$$%UgreenTblueUalphaSred"?XoF"?">s') !"*+$,">^A">!d"==M. !"/0$1">8"?6B">.r'45W_enable6 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}ZGradient_1;<a[QCTextImage=>?@ABCD EFGHIJKLMN[\]^'_`XfontSizeXfontNameZanisotropy\wrappingMode_horizontalAlignment_customInputPortStates[borderColorVtarget]filteringMode\mipmapLevels_verticalAlignment\manualLayout"A_HelveticaNeue-Italic"[ClampToEdgeXOppositeOPQRSTUVWY[inputHeight\inputLeading\inputKerningZinputWidth^inputGlyphSizeKKKX#?݁1(GZ#?ܺ_R=0 G=0 B=0 A=0_GL_TEXTURE_RECTANGLE_EXTO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}wXBilinearVNormal[TextImage_1cdXQCSprite e~fghijklmnoqrstuwy{}ZinputColorWinputRX\inputCullingWinputRZVinputZVinputYWinputRYVinputX\inputZBufferp !"$$$$K'KKvx#?F>z#6|#?v3>'46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}/XSprite_1\QCJavaScript ZinputCountVscript[outputCount_/* Tetris. */ //read the state from my last outputs. init(); remove(); move(); scorerows(); add(); save(); function save() { //save state outputs[0] = inited; outputs[1] = blocks; outputs[2] = falling; outputs[3] = new Array(2); outputs[3][0] = shapeIndex; outputs[3][1] = shapeRotation; outputs[4] = shapeLibrary; slr = new Array(4); slr[0] = score; slr[1] = level; slr[2] = rows; slr[3] = dropCount; outputs[5] = slr; outputs[6] = effects; } function init() { inited = outputs[0]; height = 20; width = 10; if(inited != true) { blocks = new Array(width); for(i=0;i 0 && shapeIndex < 4) shapeRotation = shapeRotation % 2; } function move() { var fall = false; if(inputs[4]) { dropCount++; if(dropCount > 10-level) { fall = true; dropCount = 0; } } if(inputs[0] || fall) //fall { if(hit(falling[0], falling[1]-1, shape)) { add(); falling[0] = width/2-2; falling[1] = height-4; shapeIndex = Math.round(Math.random()*5); shape = shapeLibrary[shapeIndex]; fixrotation(); for(r=0;r= width || (i+x) < 0)) { return true; } if(hitshape[i][j] && ((j+y) >= height || (j+y) < 0)) { return true; } if(hitshape[i][j] && blocks[i+x][j+y] == 1) { return true; } } } return false; } function scorerows() { var i, j; var count = 0; var alleffects = new Array(4); //check for completed rows for(j=height-1;j>=0;j--) { var row = true; for(i=0;i= width || falling[0]+i < 0) { Log("Uhoh");Log(falling); continue; } if(falling[1]+j >= height || falling[1]+j < 0) { Log("Uhoh");Log(falling); continue; } blocks[falling[0]+i][falling[1]+j] = 1; } } } } function rotate(rot) { var temp = new Array(4); var i, j; for(i=0;i<4;i++) { temp[i] = new Array(4); for(j=0;j<4;j++) { var x = -(j-2)+2; var y = (i-2)+2; if(x>=0 && x<4 && y>=0 && y<4) temp[i][j] = rot[x][y]; else temp[i][j] = 0; } } return temp; } function createShapes() { var i; var o_block = new Array(4); for(i=0;i<4;i++) o_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) o_block[i][j] = 0; o_block[2][2] = 1; o_block[2][1] = 1; o_block[1][2] = 1; o_block[1][1] = 1; var t_block = new Array(4); for(i=0;i<4;i++) t_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) t_block[i][j] = 0; t_block[2][2] = 1; t_block[1][2] = 1; t_block[3][2] = 1; t_block[2][1] = 1; var j_block = new Array(4); for(i=0;i<4;i++) j_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) j_block[i][j] = 0; j_block[2][2] = 1; j_block[1][2] = 1; j_block[3][2] = 1; j_block[3][1] = 1; var z_block = new Array(4); for(i=0;i<4;i++) z_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) z_block[i][j] = 0; z_block[2][2] = 1; z_block[1][2] = 1; z_block[2][1] = 1; z_block[3][1] = 1; var s_block = new Array(4); for(i=0;i<4;i++) s_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) s_block[i][j] = 0; s_block[2][2] = 1; s_block[3][2] = 1; s_block[2][1] = 1; s_block[1][1] = 1; var i_block = new Array(4); for(i=0;i<4;i++) i_block[i] = new Array(4); for(i=0;i<4;i++) for(j=0;j<4;j++) i_block[i][j] = 0; i_block[2][3] = 1; i_block[2][2] = 1; i_block[2][1] = 1; i_block[2][0] = 1; var shapes = new Array(6); shapes[0] = o_block; shapes[1] = i_block; shapes[2] = s_block; shapes[3] = z_block; shapes[4] = j_block; shapes[5] = t_block; return shapes; } O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name Tetris LogicpositionNSValue* {_NSPoint=ff}v\JavaScript_1ZQCKeyboard TkeysHO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}qZKeyboard_1UQCLFO  ZrandomSeedYinputType[inputPeriod[inputOffset^inputAmplitude]inputPWMRatioZinputPhase#?Q#?#?K 0O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameFall LFOpositionNSValue* {_NSPoint=ff}円ULFO_2]QCConditional YinputTest[inputValue2^inputTolerance#?KO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}Ć]Conditional_1rZQCLighting B QT Y`ghv_publishedInputPorts]lightTwoSidesZlightCount46 EDXQCCamera 46 _inputTranslateX_inputTranslateY_inputTranslateZ\inputOriginZ\inputOriginX\inputRotateZ\inputRotateX\inputOriginY#!#$#4K#@KKKO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}n scrollingfTportTnodeTData Oo typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameDataZIterator_1Uinput Or typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameEffectsZSplitter_1WEffects\connection_1\connection_2\connection_3ZsourceNodeZsourcePort_destinationNode_destinationPortVoutputZIterator_2_StructureCount_1^inputStructure=@ZQCIterator   46  O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name X IteratorpositionNSValue* {_NSPoint=ff}T scrolling{ۆ   _IteratorVariables_1[outputIndexQX^outputPositionUX_Pos )\46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name Y iteratorpositionNSValue* {_NSPoint=ff}~ scrollingׁ"&  !Ol typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameX#% $Op typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameX PosZSplitter_2'( _StructureMember_index_2*+,-./012345678=?CGHJKMOPQSUWY[\connection_9]connection_14]connection_10]connection_15\connection_4]connection_11\connection_5]connection_16\connection_6]connection_12]connection_17\connection_7]connection_13\connection_89:;<_ColorFromComponents_hsl_1[outputColorVCube_1_inputColorFront9:;>]inputColorTop@ABZSplitter_3_StructureMember_index_1ZinputIndexDE9FVMath_1[outputValueVinput3@;k9:;I_inputColorBottom;m%DLZinputValueAN;4\outputMember@(NA9:;R_inputColorRightTZSplitter_4T9VVinput19:;X^inputColorBack9:;Z^inputColorLeft(B]agwz^__QCIteratorVariables `O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameYpositionNSValue* {_NSPoint=ff}bcdAfZidentifier_QCStructureMember eO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name Y indexerpositionNSValue* {_NSPoint=ff}GUindexhi;VQCCube jvOgRhijklnlmnopqrstuZinputDepth$K$vKK'$KvO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}bcx(f yO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name X indexerpositionNSValue* {_NSPoint=ff}{|ZQCSplitter} ~YportClass]QCVirtualPortO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameXpositionNSValue* {_NSPoint=ff}$b9_QCColorFromComponents ZinputAlphaVinput2$#?O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}EiShsl{%} ~O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name X PositionpositionNSValue* {_NSPoint=ff}݁DVQCMathB v^operationCount[operation_1Yoperand_1'#?əO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}q†{@} ~O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameYpositionNSValue* {_NSPoint=ff}ρΆ{T} ~O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+name Y PositionpositionNSValue* {_NSPoint=ff}݁u^ O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameXpositionNSValue* {_NSPoint=ff}h; ZhOgRkl<iRnXmj>kI !"$$$">H#@4K#@$#@#K !"$$$$K !"$$$v !"$$$#@vK !"$$$$ !"$$$46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}  46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameEffectspositionNSValue* {_NSPoint=ff} scrolling 2.0]connection_20B_StructureMember_index_3NAAN_ParticleSystem_1^inputPositionY]ImageLoader_1[outputImageZinputImageN(^inputPositionX*-27:_QCParticleSystem    \startUpDelay]particleCount46 f  _inputVelocityMinY^inputSizeDelta_inputVelocityMinX_inputAttraction^inputPositionZ\inputMaxSize_inputVelocityMaxZ\inputMinSize]inputLifeTime_inputOpacityDelta_inputVelocityMaxY\inputGravity_inputVelocityMaxX_inputVelocityMinZ# !"$$$$KK#?$#?$$$ #?vcwx K$O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}`#@%8"]QCImageLoader?@CD EFKL`[\^'[ignoreAlphaYimageDataO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}qO[8MM* <D(1L2`=)tI#i[ 7d:@HP6VZN*C ' 'Adobe Photoshop 7.02003:05:28 14:42:26 adobe:docid:photoshop:d8bf95d2-92ab-11d7-9756-dc0818599384 8BIM%8BIM com.apple.print.PageFormat.PMHorizontalRes com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMHorizontalRes 72 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PageFormat.PMOrientation com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMOrientation 1 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PageFormat.PMScaling com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMScaling 1 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PageFormat.PMVerticalRes com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMVerticalRes 72 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PageFormat.PMVerticalScaling com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMVerticalScaling 1 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.subTicket.paper_info_ticket com.apple.print.PageFormat.PMAdjustedPageRect com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMAdjustedPageRect 0.0 0.0 734 576 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PageFormat.PMAdjustedPaperRect com.apple.print.ticket.creator com.apple.printingmanager com.apple.print.ticket.itemArray com.apple.print.PageFormat.PMAdjustedPaperRect -18 -18 774 594 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PaperInfo.PMPaperName com.apple.print.ticket.creator com.apple.print.pm.PostScript com.apple.print.ticket.itemArray com.apple.print.PaperInfo.PMPaperName na-letter com.apple.print.ticket.client com.apple.print.pm.PostScript com.apple.print.ticket.modDate 2000-07-28T22:57:04Z com.apple.print.ticket.stateFlag 1 com.apple.print.PaperInfo.PMUnadjustedPageRect com.apple.print.ticket.creator com.apple.print.pm.PostScript com.apple.print.ticket.itemArray com.apple.print.PaperInfo.PMUnadjustedPageRect 0.0 0.0 734 576 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PaperInfo.PMUnadjustedPaperRect com.apple.print.ticket.creator com.apple.print.pm.PostScript com.apple.print.ticket.itemArray com.apple.print.PaperInfo.PMUnadjustedPaperRect -18 -18 774 594 com.apple.print.ticket.client com.apple.printingmanager com.apple.print.ticket.modDate 2003-05-28T21:36:06Z com.apple.print.ticket.stateFlag 0 com.apple.print.PaperInfo.ppd.PMPaperName com.apple.print.ticket.creator com.apple.print.pm.PostScript com.apple.print.ticket.itemArray com.apple.print.PaperInfo.ppd.PMPaperName Letter com.apple.print.ticket.client com.apple.print.pm.PostScript com.apple.print.ticket.modDate 2000-07-28T22:57:04Z com.apple.print.ticket.stateFlag 1 com.apple.print.ticket.APIVersion 00.20 com.apple.print.ticket.privateLock com.apple.print.ticket.type com.apple.print.PaperInfoTicket com.apple.print.ticket.APIVersion 00.20 com.apple.print.ticket.privateLock com.apple.print.ticket.type com.apple.print.PageFormatTicket 8BIMxHH@Rg(HH(dh 8BIMHH8BIM&?8BIM x8BIM8BIM 8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM@@8BIM8BIMI Untitled-2nullboundsObjcRct1Top longLeftlongBtomlongRghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlongRghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM8BIM8BIM!UAdobe PhotoshopAdobe Photoshop 7.0 P8$ BaPd6DbQ8V-FcQv=HdR9$M'JeQ /`rhM!i|{+PhT:%8M&0[>:\.u)R_Xb" USm8[-ymMM+7Jmttap/Yݭbep9vfbh}#!㠗eY2׬b vnwR6/)㶌졼%m7}>{A.`ZUgr!9OVΡP뺿>Ӌymmg{B5."8CN㽍J$8 S ;d9ntLVL'/*F?~&Ҵ{4.ʒ9 TI캚EQ-fBeP1ÕK(d6:*7D0;rDqtML8rNl;K1gQ2 CT+BOC$J8RuZY6<]98 F5OECE]u*V\6caQhTmw:ϧe充[B6HהŁ։}*[tm =0UBw)n'ic,5c֋<\M ܸVMy `mJeq7ޘ1xn67:E{ce4Θ=!\q~֭:YOصY;^=cƗuC2] Up&k`k[Q~X>U.ϛI-`l96eul P8$ BaP 6C`(FCqb)=ŀ1DFelM3}<Oߴ8??t7ړOjEESkUZT._XlV8L&M2l3mZ.L>F"6e {f6$1I`ᴙV@[>ejeo;h20lrɧjuP[g5i CI]{u_vrsZ8/AE24C&=\nsm_mv6VssHv[zg1)j*KH< 5㲛3.p6蹊 <=/\7 ?O4mRMb6oml3^030JbA~I ) C{2nԃK+8,iF ^K2ȤU0 0~O#ȪIpAPD.ˮrJKS1% LS\E̔xJ"J97R-!Li̝Gt b;v֐R֌8oSԖL #wVS͵p7tkR-u=*zQdwŋ|v H2C6 ,mvO\ջ5[9P˂>UfL\nuӝ4M*QYZBA_%׶.{NK31dq\x-u[.l$G @N=ufϧPeGйf%^nfO?U͏lO-f6bzovsTK7j;vKu{I4lY9sy~Bu#^;W,dhO7z. `;w$ZUuvT\dw?sv󜯖];G)-HYD,xXZ="T]p_g֌|$gLX "wZԊcrq̼ҌLz0$£}"#GM-;'_C[S4Wrêpϭ'29@C^4HzL̜"èZs=*WC.9;Wԫ!}0EiQv08!kSG.sٯ$#  f 7by0#"HqeEx=cirGn* ęĬaP۟m$b49|JB?)N$~ڷ&fDdqJBh%ǙI# +@* ?,*>rKlrsK_cǐ,2x*]ζI3bU4*P7_&–>!rt" ,EמCCx';~b:G#49XF$YL9:]&~D4ؿ?=@PHHfk1 (|P<7JңQTQi /wG̣RYI4`2RfuSPuB5>Jp7d#龯 P(KXk,~=((s<6 %LN!!JEʄF-|`ؾkBjtA=bxvXk/K.%$)Nۛ ge@@ P8$P (C!V-"0$vC8KaR d5&^6C'9l B<"C)6H_ڥJQ?`uV]T_v;egZ+{em?j6-vYU)tFPAX<FBLj}#0 )JsQY)8ƨ )lshp- |_uW.y]*-,{oz^+ cCcP1:p_Tf)3 xAy#ni*L,%}g Qg};v$pxAI! J(uM#|إcG¡./0.*Il :loY4>Rv] +ƿ[)éya^((lhLr@Y;cf8B<4jĨ&!+lŕ%Vpt?F[$>rZm TdTݘ^Ar gZO6%'m1+VuNVD_u2KV^ GWrgF&@r+5 JbݬZNˌiUkz*3ǗӪdV8ay[%ؚ[2ѣ Jbl *nfe%Ulާ>B RZG6t[ux_G|v;^;[)}~dD=4-CLi/p|lj m(hurYǨ5M P0  A`(d6DbQ8-FbXv!#Q~-Hid[Qy;5KӐ4j_B#7>T*SU:JV}S5R[|)Sd,&_-H]weF(& `pp AN)Il^!($,"kiTBu=N#uܻ*\s)V w y~Z5NV`^nW+GbBe?04 kRP+J>?d'^A/5PJ42@ K:'Ӱ|E {庑+nĊDqQښQ#=;(ϐȠR KMZAp$6%d7MjPvݧSxè˜OjJ-nzg[SѤG"cG\V9xCn >)h zS laJa^,$~I q,Ӏ+5HЫZ} ӽn!ro|u:c=Ź-ΓlY]K2']`|8 "(YȂGb DU=vBg_}†܊p8(ܳq"dp#ȹ z,-8QRo @h z/fh#7]o' TcVdq0B 7WʤKѵO 87_N^$J5*r;(ޢcswHIɎ`\x( IY0u@0ۚj<RdgQ9; 4܆Rj%f5DxC!$1''q/:8yH4_n5 XUɍ&Ȇt$iQu6,AS52&3 fIIPZ("5FuԳdRO198~Q{X4PaI]:s,JW9'!ą*E8-Ęs1S@7<~׵KY4=;I_Q}DV8jaXIn)F7TI եfqm(VEO)\SZ Vjhp`/$QtB*\ɰe*щdM*k`o}1 IG$~KvTh6BFesb)c&/O2h;xqH\1rjǬ#I cՒז)wFAY-(W5J`b DC#<c<8n8_"jF.T6j0e 8ˋl7*r|2~WҴ1X0iH5jeoL֪9xt\]= P8$aPp aN##QXE#pEE"Y8U/$py0@9zmhPRiT3O_:{S?)5Z>WUlOŎaVv5mWv嚫MSU:MFE_\& @pq6%3Tr3J%f@,VħX] t.Q׋"G\U]:um^?2Ys]ǹRhWkfЬf:#jZ-{syyF5|q|`&( Mjp) ~Pa7.GCK:KC7K J< 6 +|ɧ~2'SLtqE*870Įt8+JD6L0ļS(FK&^H[%"Bz#I∃ $; K AԴZM3,'7WNA0jOV NT҇')|@ BYKh%d(Jmr0Q]9gnB6VwUS_X+P-6J OU/}ay.S3lU7/"T616*~V@\tQ/!j0vFGj Ƅ*]QV[S}f\֮}:YS{~Ph-9P$?ۈ.6f)B|#[ l>GOd[s[_uMײ۶7xFA@#1勲 7qwzTHn\>ԭѠR ܡSMݷ_Tos֬)=/~K{Λ]M qldqagb[iA mdni.uޙU.DC&GjJcPI9ƴM*k(D%{\X.RS aS'vXX;+!jݙv}o9T3qØKxiEɇ&<K"X*D⛥ Q"Suuo?T_'f6JWV"f$){Kae5*\2H- T!. ?7-QIޣ#htmnjylQDܔN x$*ݚLd8OGEX^%ޢK %_)<F mFa1;PqiThja= qjlA=c=^%YFXVzLX{-0b)r"Z<0,?jY"RUcLBP : u3NHH#l6U1=% @WwP:mBeds͚\Uk6HHz^"IaSR,AV6OhlaV*e}Ùκih.jTC{N{Nj*^\E]CݺhB:WZTQ {'|e0&PVۣ2Ƥ&U+e<vUP1Lrȣz'gB4{|؄5S럀 P8$ B`d6Da(4Q2.EQ~&Gj.Dиd`sy:9TzcMN_:}ByS~Ҩ-v{ר%gZf 7HqmCWY-\s[!/MK<'揓@OjSJi uGv4jnw[UI.L+.'[80Y!v d_\_Uv _{ϧgp\?Kâ93˪;J|$ս l͵5Һ=NJ@,CiL%kQQ;n B6Bɬ8J+' JU-ˑS߰2 X"P CR-69 ò2ɏl9 C˓ScFq311KZ$#NH# \o*;y}ǗXw:Geoz*x.X CyCw?ܳr.Ak;^PmnXSzn[wC8 y-;g{p P8$ BaPd6DaFbxd] r%'JeRd]/LfS9m7M )_QCInterpolation B %( !"#$[inputValue1\inputTension]inputDuration[inputRepeat$KK$'&'_inputInterpolation'O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}_Interpolation_1^+ ,O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}_sbc.AfB /1B0vO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameYpositionNSValue* {_NSPoint=ff}ρNbc3(fB 46B5'O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameXpositionNSValue* {_NSPoint=ff} {8} ~9O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}bc;f } ~?O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}ņAB_QCStructureCount CO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}XCamera_1FP  GNOHIJKLM'KgyǎO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}dlULFO_1RPEDS\inputRotateYUWVD XD Z[\]^_`bcd[positionX_1Wcolor_1[positionY_1]attenuation_1[positionZ_1a !"$$$$$Ke#@(FO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff} scrolling憆ijkloq_inputAmbientColor_inputObjectShininess_inputObjectSpecularm !"nn$n"=p#@Wq$ZLighting_1;t=>?@ABCD EFGHIJKLuv[\|}^'_`XCenteredOPQRSwxyz{KKKKO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+nameQutrispositionNSValue* {_NSPoint=ff}~[inputStringVQutris[TextImage_2c fghijklmn !"$$$$K'KKv#? @z Fz#?B''46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}XSprite_2bcAfB B'O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}ց_;=>?@ABCD EFGHIJKLM[\^'_`OPQRSKKK#?":O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}T[TextImage_3c fghijklmn !"$$$$K'KKv#? ^cz#?lf9b͂'46 O typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff} XSprite_3bc(fB BvO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+positionNSValue* {_NSPoint=ff}ہ6*7-52+0.634/1,]connection_19]connection_18EO\outputHeightOrXoutput_6Xkey_F700Winput_3aOXkey_F703Winput_2aR[outputWidtha(Xoutput_5Xkey_F701Winput_0Xkey_F702Winput_1A(N~ANa~rXoutput_1RRO typedstream@NSMutableDictionary NSDictionaryNSObjectiNSString+ scrollingNSValue* {_NSPoint=ff}熆&0R[ago #6KWfr~"'/456$-6ANd|"/<GV[`ejsxCLST`mv#(-/4=BKPY^chi!2=DPR&&&&&&&&'''''''''((( (.(9(>(@(E(N(S(\(a(f(o(t(y)&),)9)G)P)])g)s))))))*1*?*L*W**************++0+B+T+a+n+{++++++++++++++,,,,,,,-.-9-J-P-U-----...".-.8.J.\.c.n............///////000%0'080G0M0R0_0x0}000001Z1a1r1w1112o2z222223 33(353C3P3^3k3y33333333444 414<4V4a4r4y4444444445 55.5?5Q5b5m5~555555556666666777777777888 8888 8%8889~99999:]:n::::::::;R;V;c;l<<(>>?K?X?e????????????@@ @@@$@5@:@?@P@U@^@c@h@m@~@@@@@@A9AFA_AdAiAjB2B5BFBKBhBvBBBBBBBCCCC,C=CNC]CnC{CCCCCCCDD(D7DKD]DlDyDDDDDDDEE EEE)E.E3E8E=EBEKEPEUEZEcEhEmErEwEEEFF(F-F0F=FKFpF|FFGXewĢТբڢߢVgpuz 1:?D@MV ̨Ʃ˩ܩ  ,:FKPafkpyz+8Lcy~ %*/ڬ߬GL]bglqv{