Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

235 lines
16 KiB

  1. // Made with Amplify Shader Editor
  2. // Available at the Unity Asset Store - http://u3d.as/y3X
  3. Shader "ASESampleShaders/Water/WaterSample"
  4. {
  5. Properties
  6. {
  7. _WaterNormal("Water Normal", 2D) = "bump" {}
  8. _NormalScale("Normal Scale", Float) = 0
  9. _DeepColor("Deep Color", Color) = (0,0,0,0)
  10. _ShalowColor("Shalow Color", Color) = (1,1,1,0)
  11. _WaterDepth("Water Depth", Float) = 0
  12. _WaterFalloff("Water Falloff", Float) = 0
  13. _WaterSpecular("Water Specular", Float) = 0
  14. _WaterSmoothness("Water Smoothness", Float) = 0
  15. _Distortion("Distortion", Float) = 0.5
  16. _Foam("Foam", 2D) = "white" {}
  17. _FoamDepth("Foam Depth", Float) = 0
  18. _FoamFalloff("Foam Falloff", Float) = 0
  19. _FoamSpecular("Foam Specular", Float) = 0
  20. _FoamSmoothness("Foam Smoothness", Float) = 0
  21. [HideInInspector] _texcoord( "", 2D ) = "white" {}
  22. [HideInInspector] __dirty( "", Int ) = 1
  23. }
  24. SubShader
  25. {
  26. Tags{ "RenderType" = "Opaque" "Queue" = "Transparent+0" }
  27. Cull Back
  28. GrabPass{ }
  29. CGPROGRAM
  30. #include "UnityStandardUtils.cginc"
  31. #include "UnityShaderVariables.cginc"
  32. #include "UnityCG.cginc"
  33. #pragma target 3.0
  34. #pragma surface surf StandardSpecular keepalpha
  35. struct Input
  36. {
  37. float2 uv_texcoord;
  38. float4 screenPos;
  39. };
  40. uniform sampler2D _WaterNormal;
  41. uniform float _NormalScale;
  42. uniform float4 _WaterNormal_ST;
  43. uniform float4 _DeepColor;
  44. uniform float4 _ShalowColor;
  45. uniform sampler2D _CameraDepthTexture;
  46. uniform float4 _CameraDepthTexture_TexelSize;
  47. uniform float _WaterDepth;
  48. uniform float _WaterFalloff;
  49. uniform float _FoamDepth;
  50. uniform float _FoamFalloff;
  51. uniform sampler2D _Foam;
  52. uniform float4 _Foam_ST;
  53. uniform sampler2D _GrabTexture;
  54. uniform float _Distortion;
  55. uniform float _WaterSpecular;
  56. uniform float _FoamSpecular;
  57. uniform float _WaterSmoothness;
  58. uniform float _FoamSmoothness;
  59. inline float4 ASE_ComputeGrabScreenPos( float4 pos )
  60. {
  61. #if UNITY_UV_STARTS_AT_TOP
  62. float scale = -1.0;
  63. #else
  64. float scale = 1.0;
  65. #endif
  66. float4 o = pos;
  67. o.y = pos.w * 0.5f;
  68. o.y = ( pos.y - o.y ) * _ProjectionParams.x * scale + o.y;
  69. return o;
  70. }
  71. void surf( Input i , inout SurfaceOutputStandardSpecular o )
  72. {
  73. float2 uv0_WaterNormal = i.uv_texcoord * _WaterNormal_ST.xy + _WaterNormal_ST.zw;
  74. half2 panner22 = ( 1.0 * _Time.y * float2( -0.03,0 ) + uv0_WaterNormal);
  75. half2 panner19 = ( 1.0 * _Time.y * float2( 0.04,0.04 ) + uv0_WaterNormal);
  76. half3 temp_output_24_0 = BlendNormals( UnpackScaleNormal( tex2D( _WaterNormal, panner22 ), _NormalScale ) , UnpackScaleNormal( tex2D( _WaterNormal, panner19 ), _NormalScale ) );
  77. o.Normal = temp_output_24_0;
  78. float4 ase_screenPos = float4( i.screenPos.xyz , i.screenPos.w + 0.00000000001 );
  79. float4 ase_screenPosNorm = ase_screenPos / ase_screenPos.w;
  80. ase_screenPosNorm.z = ( UNITY_NEAR_CLIP_VALUE >= 0 ) ? ase_screenPosNorm.z : ase_screenPosNorm.z * 0.5 + 0.5;
  81. half eyeDepth1 = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE( _CameraDepthTexture, ase_screenPosNorm.xy ));
  82. half temp_output_89_0 = abs( ( eyeDepth1 - ase_screenPos.w ) );
  83. half temp_output_94_0 = saturate( pow( ( temp_output_89_0 + _WaterDepth ) , _WaterFalloff ) );
  84. half4 lerpResult13 = lerp( _DeepColor , _ShalowColor , temp_output_94_0);
  85. float2 uv0_Foam = i.uv_texcoord * _Foam_ST.xy + _Foam_ST.zw;
  86. half2 panner116 = ( 1.0 * _Time.y * float2( -0.01,0.01 ) + uv0_Foam);
  87. half temp_output_114_0 = ( saturate( pow( ( temp_output_89_0 + _FoamDepth ) , _FoamFalloff ) ) * tex2D( _Foam, panner116 ).r );
  88. half4 lerpResult117 = lerp( lerpResult13 , float4(1,1,1,0) , temp_output_114_0);
  89. float4 ase_grabScreenPos = ASE_ComputeGrabScreenPos( ase_screenPos );
  90. half4 ase_grabScreenPosNorm = ase_grabScreenPos / ase_grabScreenPos.w;
  91. float4 screenColor65 = tex2D( _GrabTexture, ( half3( (ase_grabScreenPosNorm).xy , 0.0 ) + ( temp_output_24_0 * _Distortion ) ).xy );
  92. half4 lerpResult93 = lerp( lerpResult117 , screenColor65 , temp_output_94_0);
  93. o.Albedo = lerpResult93.rgb;
  94. half lerpResult130 = lerp( _WaterSpecular , _FoamSpecular , temp_output_114_0);
  95. half3 temp_cast_3 = (lerpResult130).xxx;
  96. o.Specular = temp_cast_3;
  97. half lerpResult133 = lerp( _WaterSmoothness , _FoamSmoothness , temp_output_114_0);
  98. o.Smoothness = lerpResult133;
  99. o.Alpha = 1;
  100. }
  101. ENDCG
  102. }
  103. Fallback "Diffuse"
  104. CustomEditor "ASEMaterialInspector"
  105. }
  106. /*ASEBEGIN
  107. Version=17201
  108. 389;92;1089;471;2332.745;286.8604;1;True;False
  109. Node;AmplifyShaderEditor.CommentaryNode;152;-2053.601,-256.6997;Inherit;False;843.903;553.8391;Screen depth difference to get intersection and fading effect with terrain and objects;5;89;3;1;2;166;;1,1,1,1;0;0
  110. Node;AmplifyShaderEditor.ScreenPosInputsNode;166;-2010.745,-176.8604;Float;False;0;False;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  111. Node;AmplifyShaderEditor.ScreenPosInputsNode;2;-1993.601,-9.1996;Float;False;1;False;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  112. Node;AmplifyShaderEditor.ScreenDepthNode;1;-1781.601,-155.6997;Inherit;False;0;True;1;0;FLOAT4;0,0,0,0;False;1;FLOAT;0
  113. Node;AmplifyShaderEditor.SimpleSubtractOpNode;3;-1574.201,-110.3994;Inherit;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  114. Node;AmplifyShaderEditor.CommentaryNode;151;-935.9057,-1082.484;Inherit;False;1281.603;457.1994;Blend panning normals to fake noving ripples;7;19;23;24;21;22;17;48;;1,1,1,1;0;0
  115. Node;AmplifyShaderEditor.AbsOpNode;89;-1389.004,-112.5834;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  116. Node;AmplifyShaderEditor.TextureCoordinatesNode;21;-885.9058,-1005.185;Inherit;False;0;17;2;3;2;SAMPLER2D;;False;0;FLOAT2;1,1;False;1;FLOAT2;0,0;False;5;FLOAT2;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  117. Node;AmplifyShaderEditor.CommentaryNode;159;-863.7005,-467.5007;Inherit;False;1113.201;508.3005;Depths controls and colors;11;87;94;12;13;156;157;11;88;10;6;143;;1,1,1,1;0;0
  118. Node;AmplifyShaderEditor.WireNode;155;-1106.507,7.515848;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  119. Node;AmplifyShaderEditor.CommentaryNode;153;-843.9032,402.718;Inherit;False;1083.102;484.2006;Foam controls and texture;9;116;105;106;115;111;110;112;113;114;;1,1,1,1;0;0
  120. Node;AmplifyShaderEditor.WireNode;158;-1075.608,-163.0834;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  121. Node;AmplifyShaderEditor.RangedFloatNode;48;-557.3063,-795.3858;Float;False;Property;_NormalScale;Normal Scale;1;0;Create;True;0;0;False;0;0;0.3;0;0;0;1;FLOAT;0
  122. Node;AmplifyShaderEditor.PannerNode;22;-613.2062,-1032.484;Inherit;False;3;0;FLOAT2;0,0;False;2;FLOAT2;-0.03,0;False;1;FLOAT;1;False;1;FLOAT2;0
  123. Node;AmplifyShaderEditor.WireNode;154;-922.7065,390.316;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  124. Node;AmplifyShaderEditor.PannerNode;19;-610.9061,-919.9849;Inherit;False;3;0;FLOAT2;0,0;False;2;FLOAT2;0.04,0.04;False;1;FLOAT;1;False;1;FLOAT2;0
  125. Node;AmplifyShaderEditor.RangedFloatNode;6;-813.7005,-128.1996;Float;False;Property;_WaterDepth;Water Depth;4;0;Create;True;0;0;False;0;0;0.99;0;0;0;1;FLOAT;0
  126. Node;AmplifyShaderEditor.RangedFloatNode;111;-722.2024,526.6185;Float;False;Property;_FoamDepth;Foam Depth;10;0;Create;True;0;0;False;0;0;0.94;0;0;0;1;FLOAT;0
  127. Node;AmplifyShaderEditor.SimpleAddOpNode;115;-542.0016,452.718;Inherit;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  128. Node;AmplifyShaderEditor.TextureCoordinatesNode;106;-793.9032,700.119;Inherit;False;0;105;2;3;2;SAMPLER2D;;False;0;FLOAT2;1,1;False;1;FLOAT2;0,0;False;5;FLOAT2;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  129. Node;AmplifyShaderEditor.RangedFloatNode;112;-531.4025,588.5187;Float;False;Property;_FoamFalloff;Foam Falloff;11;0;Create;True;0;0;False;0;0;-60;0;0;0;1;FLOAT;0
  130. Node;AmplifyShaderEditor.RangedFloatNode;10;-636.2005,-79.20019;Float;False;Property;_WaterFalloff;Water Falloff;5;0;Create;True;0;0;False;0;0;-3.6;0;0;0;1;FLOAT;0
  131. Node;AmplifyShaderEditor.SamplerNode;17;-256.3054,-814.2847;Inherit;True;Property;_WaterNormal;Water Normal;0;0;Create;True;0;0;False;0;-1;None;dd2fd2df93418444c8e280f1d34deeb5;True;0;True;bump;Auto;True;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;0,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  132. Node;AmplifyShaderEditor.SimpleAddOpNode;88;-632.0056,-204.5827;Inherit;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  133. Node;AmplifyShaderEditor.SamplerNode;23;-269.2061,-1024.185;Inherit;True;Property;_Normal2;Normal2;0;0;Create;True;0;0;False;0;-1;None;None;True;0;True;bump;Auto;True;Instance;17;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;0,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  134. Node;AmplifyShaderEditor.ColorNode;12;-697.5002,-417.5007;Float;False;Property;_DeepColor;Deep Color;2;0;Create;True;0;0;False;0;0,0,0,0;0,0.04310164,0.2499982,0;False;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  135. Node;AmplifyShaderEditor.BlendNormalsNode;24;170.697,-879.6849;Inherit;False;0;3;0;FLOAT3;0,0,0;False;1;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;1;FLOAT3;0
  136. Node;AmplifyShaderEditor.PowerNode;87;-455.8059,-118.1832;Inherit;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  137. Node;AmplifyShaderEditor.ColorNode;11;-455.0999,-328.3;Float;False;Property;_ShalowColor;Shalow Color;3;0;Create;True;0;0;False;0;1,1,1,0;0,0.8088232,0.8088235,0;False;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  138. Node;AmplifyShaderEditor.CommentaryNode;150;467.1957,-1501.783;Inherit;False;985.6011;418.6005;Get screen color for refraction and disturbe it with normals;7;96;97;98;65;149;164;165;;1,1,1,1;0;0
  139. Node;AmplifyShaderEditor.PowerNode;110;-357.2024,461.6185;Inherit;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  140. Node;AmplifyShaderEditor.PannerNode;116;-573.2014,720.3181;Inherit;False;3;0;FLOAT2;0,0;False;2;FLOAT2;-0.01,0.01;False;1;FLOAT;1;False;1;FLOAT2;0
  141. Node;AmplifyShaderEditor.RangedFloatNode;97;710.096,-1203.183;Float;False;Property;_Distortion;Distortion;8;0;Create;True;0;0;False;0;0.5;0.2;0;0;0;1;FLOAT;0
  142. Node;AmplifyShaderEditor.SamplerNode;105;-304.4021,674.9185;Inherit;True;Property;_Foam;Foam;9;0;Create;True;0;0;False;0;-1;None;d01457b88b1c5174ea4235d140b5fab8;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;0,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  143. Node;AmplifyShaderEditor.GrabScreenPosition;164;511.3026,-1442.425;Inherit;False;0;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  144. Node;AmplifyShaderEditor.SaturateNode;94;-249.5044,-96.98394;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  145. Node;AmplifyShaderEditor.SaturateNode;113;-136.0011,509.618;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  146. Node;AmplifyShaderEditor.WireNode;156;-151.0076,-354.5834;Inherit;False;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  147. Node;AmplifyShaderEditor.WireNode;157;-149.1077,-261.9834;Inherit;False;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  148. Node;AmplifyShaderEditor.WireNode;149;487.4943,-1188.882;Inherit;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  149. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;114;80.19891,604.0181;Inherit;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  150. Node;AmplifyShaderEditor.ComponentMaskNode;165;814.6503,-1385.291;Inherit;False;True;True;False;False;1;0;FLOAT4;0,0,0,0;False;1;FLOAT2;0
  151. Node;AmplifyShaderEditor.LerpOp;13;60.50008,-220.6998;Inherit;False;3;0;COLOR;0,0,0,0;False;1;COLOR;0,0,0,0;False;2;FLOAT;0;False;1;COLOR;0
  152. Node;AmplifyShaderEditor.ColorNode;108;58.99682,146.0182;Float;False;Constant;_Color0;Color 0;-1;0;Create;True;0;0;False;0;1,1,1,0;0,0,0,0;False;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  153. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;98;888.1974,-1279.783;Inherit;False;2;2;0;FLOAT3;0,0,0;False;1;FLOAT;0;False;1;FLOAT3;0
  154. Node;AmplifyShaderEditor.WireNode;143;95.69542,-321.0839;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  155. Node;AmplifyShaderEditor.SimpleAddOpNode;96;1041.296,-1346.683;Inherit;False;2;2;0;FLOAT2;0,0;False;1;FLOAT3;0,0,0;False;1;FLOAT3;0
  156. Node;AmplifyShaderEditor.LerpOp;117;323.797,77.91843;Inherit;False;3;0;COLOR;0,0,0,0;False;1;COLOR;0,0,0,0;False;2;FLOAT;0;False;1;COLOR;0
  157. Node;AmplifyShaderEditor.RangedFloatNode;104;753.9969,-565.4819;Float;False;Property;_WaterSpecular;Water Specular;6;0;Create;True;0;0;False;0;0;0.05;0;0;0;1;FLOAT;0
  158. Node;AmplifyShaderEditor.WireNode;161;660.4934,-750.6837;Inherit;False;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  159. Node;AmplifyShaderEditor.RangedFloatNode;26;920.1959,-279.1855;Float;False;Property;_WaterSmoothness;Water Smoothness;7;0;Create;True;0;0;False;0;0;0.9;0;0;0;1;FLOAT;0
  160. Node;AmplifyShaderEditor.RangedFloatNode;131;756.1969,-467.1806;Float;False;Property;_FoamSpecular;Foam Specular;12;0;Create;True;0;0;False;0;0;0;0;0;0;1;FLOAT;0
  161. Node;AmplifyShaderEditor.WireNode;162;1312.293,-894.3823;Inherit;False;1;0;FLOAT;0;False;1;FLOAT;0
  162. Node;AmplifyShaderEditor.ScreenColorNode;65;1232.797,-1350.483;Float;False;Global;_WaterGrab;WaterGrab;-1;0;Create;True;0;0;False;0;Object;-1;False;False;1;0;FLOAT2;0,0;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  163. Node;AmplifyShaderEditor.RangedFloatNode;132;914.3978,-199.48;Float;False;Property;_FoamSmoothness;Foam Smoothness;13;0;Create;True;0;0;False;0;0;0.2;0;0;0;1;FLOAT;0
  164. Node;AmplifyShaderEditor.LerpOp;93;1559.196,-1006.285;Inherit;False;3;0;COLOR;0,0,0,0;False;1;COLOR;0,0,0,0;False;2;FLOAT;0;False;1;COLOR;0
  165. Node;AmplifyShaderEditor.LerpOp;133;1139.597,-182.68;Inherit;False;3;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;1;FLOAT;0
  166. Node;AmplifyShaderEditor.LerpOp;130;955.7971,-465.8806;Inherit;False;3;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;1;FLOAT;0
  167. Node;AmplifyShaderEditor.StandardSurfaceOutputNode;0;1838.601,-748.1998;Half;False;True;-1;2;ASEMaterialInspector;0;0;StandardSpecular;ASESampleShaders/Water/WaterSample;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;Back;0;False;-1;3;False;-1;False;0;False;-1;0;False;-1;False;0;Translucent;0.5;True;False;0;False;Opaque;;Transparent;All;14;all;True;True;True;True;0;False;-1;False;0;False;-1;255;False;-1;255;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;False;0;4;10;25;False;0.5;True;0;0;False;-1;0;False;-1;0;0;False;-1;0;False;-1;1;False;-1;1;False;-1;0;False;0;0,0,0,0;VertexOffset;True;False;Cylindrical;False;Relative;0;;-1;-1;-1;-1;0;False;0;0;False;-1;-1;0;False;-1;0;0;0;False;0.1;False;-1;0;False;-1;16;0;FLOAT3;0,0,0;False;1;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;3;FLOAT3;0,0,0;False;4;FLOAT;0;False;5;FLOAT;0;False;6;FLOAT3;0,0,0;False;7;FLOAT3;0,0,0;False;8;FLOAT;0;False;9;FLOAT;0;False;10;FLOAT;0;False;13;FLOAT3;0,0,0;False;11;FLOAT3;0,0,0;False;12;FLOAT3;0,0,0;False;14;FLOAT4;0,0,0,0;False;15;FLOAT3;0,0,0;False;0
  168. WireConnection;1;0;166;0
  169. WireConnection;3;0;1;0
  170. WireConnection;3;1;2;4
  171. WireConnection;89;0;3;0
  172. WireConnection;155;0;89;0
  173. WireConnection;158;0;89;0
  174. WireConnection;22;0;21;0
  175. WireConnection;154;0;155;0
  176. WireConnection;19;0;21;0
  177. WireConnection;115;0;154;0
  178. WireConnection;115;1;111;0
  179. WireConnection;17;1;19;0
  180. WireConnection;17;5;48;0
  181. WireConnection;88;0;158;0
  182. WireConnection;88;1;6;0
  183. WireConnection;23;1;22;0
  184. WireConnection;23;5;48;0
  185. WireConnection;24;0;23;0
  186. WireConnection;24;1;17;0
  187. WireConnection;87;0;88;0
  188. WireConnection;87;1;10;0
  189. WireConnection;110;0;115;0
  190. WireConnection;110;1;112;0
  191. WireConnection;116;0;106;0
  192. WireConnection;105;1;116;0
  193. WireConnection;94;0;87;0
  194. WireConnection;113;0;110;0
  195. WireConnection;156;0;12;0
  196. WireConnection;157;0;11;0
  197. WireConnection;149;0;24;0
  198. WireConnection;114;0;113;0
  199. WireConnection;114;1;105;1
  200. WireConnection;165;0;164;0
  201. WireConnection;13;0;156;0
  202. WireConnection;13;1;157;0
  203. WireConnection;13;2;94;0
  204. WireConnection;98;0;149;0
  205. WireConnection;98;1;97;0
  206. WireConnection;143;0;94;0
  207. WireConnection;96;0;165;0
  208. WireConnection;96;1;98;0
  209. WireConnection;117;0;13;0
  210. WireConnection;117;1;108;0
  211. WireConnection;117;2;114;0
  212. WireConnection;161;0;117;0
  213. WireConnection;162;0;143;0
  214. WireConnection;65;0;96;0
  215. WireConnection;93;0;161;0
  216. WireConnection;93;1;65;0
  217. WireConnection;93;2;162;0
  218. WireConnection;133;0;26;0
  219. WireConnection;133;1;132;0
  220. WireConnection;133;2;114;0
  221. WireConnection;130;0;104;0
  222. WireConnection;130;1;131;0
  223. WireConnection;130;2;114;0
  224. WireConnection;0;0;93;0
  225. WireConnection;0;1;24;0
  226. WireConnection;0;3;130;0
  227. WireConnection;0;4;133;0
  228. ASEEND*/
  229. //CHKSM=5F5DE6B29EE43617C45DB85CE6820BC9BE0F3A43