⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀         ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
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.

209 lines
43 KiB

  1. ��/**
  2. * Example Fragment Shader
  3. * Sets the color and alpha of the pixel by setting gl_FragColor
  4. */
  5. // Set the precision for data types used in this shader
  6. precision highp float;
  7. precision highp int;
  8. float O_IP_O_PI_O = 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593344612847564823378678316527120190914565;
  9. uniform float O_REILPITLUM_O_MULTIPLIER_O;
  10. // Default THREE.js uniforms available to both fragment and vertex shader
  11. uniform mat4 modelMatrix;
  12. uniform mat4 modelViewMatrix;
  13. uniform mat4 projectionMatrix;
  14. uniform mat4 viewMatrix;
  15. uniform mat3 normalMatrix;
  16. // Default uniforms provided by ShaderFrog.
  17. uniform vec3 cameraPosition;
  18. uniform float time;
  19. // A uniform unique to this shader. You can modify it to the using the form
  20. // below the shader preview. Any uniform you add is automatically given a form
  21. uniform vec3 color;
  22. vec3 lightPosition = cameraPosition;
  23. // Example varyings passed from the vertex shader
  24. varying vec3 vPosition;
  25. varying vec3 vNormal;
  26. varying vec2 vUv;
  27. varying vec2 vUv2;
  28. varying vec3 fPosition;
  29. varying vec3 fNormal;
  30. void main() {
  31. // Calculate the real position of this pixel in 3d space, taking into account
  32. // the rotation and scale of the model. It's a useful formula for some effects.
  33. // This could also be done in the vertex shader
  34. vec3 worldPosition = normalize( modelMatrix * vec4( vPosition, 0.0 )).xyz;
  35. // Calculate the normal including the model rotation and scale
  36. vec3 worldNormal = normalize( vec3( modelMatrix * vec4( vNormal, 0.0 ) ) );
  37. vec3 lightVector = normalize( lightPosition - worldPosition );
  38. // An example simple lighting effect, taking the dot product of the normal
  39. // (which way this pixel is pointing) and a user generated light position
  40. float brightness = dot( worldNormal, lightVector ) * O_REILPITLUM_O_MULTIPLIER_O + (1.-O_REILPITLUM_O_MULTIPLIER_O);
  41. // Fragment shaders set the gl_FragColor, which is a vector4 of
  42. // ( red, green, blue, alpha ).
  43. gl_FragColor = vec4( color * brightness, 1.0 );
  44. }
  45. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  46. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  47. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  48. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  49. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  50. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  51. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  52. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  53. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  54. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  55. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  56. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  57. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  58. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  59. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  60. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  61. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  62. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  63. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  64. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  65. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  66. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  67. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  68. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  69. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  70. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  71. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  72. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  73. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  74. //((((((((((((((((((((((((((((((((((((((((((((((((((((((������$'������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  75. //(((((((((((((((((((((((((((((((((((((((((((((((((((((((������������(((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  76. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  77. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  78. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  79. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  80. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������&������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  81. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  82. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  83. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  84. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  85. //(((((((((((((((((((((((((((((((((((((((((((((((((((((((������������(((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  86. //((((((((((((((((((((((((((((((((((((((((((((((((((((((������$'������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  87. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  88. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  89. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  90. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  91. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  92. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  93. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  94. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  95. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  96. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  97. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  98. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  99. //((((((((((((((((((((((((((((((((���������������������������������)��������������������������������((((((((((((((((((((((((((((((((\\
  100. //(((((((((((((((((((((((((((((((((((((((((((((((((��������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  101. //(((((((((((((((((((((��������������������������������������������|A'|��������������������������������������������(((((((((((((((((((((\\
  102. //(((((((((((((((((((((((((((((((((((((((((((�������������������l�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  103. //(((((((((((((((((((((((((((((((((((((((((((�������������������k�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  104. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  105. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  106. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  107. //((((((((((((((((((((((((((((((((((((((((((((((((�������������$'�������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  108. //((((((((((((((((((((((((((((((((((((((((((((((((((����������������������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  109. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  110. //(((((((((((((((((((((((((((((((((((((((((((��������������������&�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  111. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  112. //((((((((((((((((((((((((((((((((((((((((((((((((((����������������������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  113. //((((((((((((((((((((((((((((((((((((((((((((((((�������������$'�������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  114. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  115. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  116. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  117. //(((((((((((((((((((((((((((((((((((((((((((�������������������l�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  118. //(((((((((((((((((((((((((((((((((((((((((((�������������������k�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  119. //(((((((((((((((((((((��������������������������������������������|A'|��������������������������������������������(((((((((((((((((((((\\
  120. //(((((((((((((((((((((((((((((((((((((((((((((((((��������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  121. //(((((((((((((((((((((((((((((((((((((((((((�������������������Y-�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  122. //(((((((((((((((((((((((((((((((((((((((((((((((((��������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  123. //(((((((((((((((((((((��������������������������������������������|A'|��������������������������������������������(((((((((((((((((((((\\
  124. //(((((((((((((((((((((((((((((((((((((((((((�������������������l�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  125. //(((((((((((((((((((((((((((((((((((((((((((�������������������k�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  126. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  127. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  128. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  129. //((((((((((((((((((((((((((((((((((((((((((((((((�������������$'�������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  130. //((((((((((((((((((((((((((((((((((((((((((((((((((����������������������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  131. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  132. //(((((((((((((((((((((((((((((((((((((((((((��������������������&�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  133. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  134. //((((((((((((((((((((((((((((((((((((((((((((((((((����������������������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  135. //((((((((((((((((((((((((((((((((((((((((((((((((�������������$'�������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  136. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  137. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������"������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  138. //((((((((((((((((((((((((((((((((((((((((((((((((((�����������|�����������((((((((((((((((((((((((((((((((((((((((((((((((((\\
  139. //(((((((((((((((((((((((((((((((((((((((((((�������������������l�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  140. //(((((((((((((((((((((((((((((((((((((((((((�������������������k�������������������(((((((((((((((((((((((((((((((((((((((((((\\
  141. //(((((((((((((((((((((��������������������������������������������|A'|��������������������������������������������(((((((((((((((((((((\\
  142. //(((((((((((((((((((((((((((((((((((((((((((((((((��������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  143. //((((((((((((((((((((((((((((((((���������������������������������)��������������������������������((((((((((((((((((((((((((((((((\\
  144. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  145. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  146. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  147. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  148. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  149. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  150. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  151. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  152. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  153. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  154. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  155. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  156. //((((((((((((((((((((((((((((((((((((((((((((((((((((((������$'������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  157. //(((((((((((((((((((((((((((((((((((((((((((((((((((((((������������(((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  158. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  159. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  160. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  161. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  162. //((((((((((((((((((((((((((((((((((((((((((((((((((((((�������&������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  163. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  164. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  165. //((((((((((((((((((((((((((((((((((((((((((((((((���������������������������((((((((((((((((((((((((((((((((((((((((((((((((\\
  166. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  167. //(((((((((((((((((((((((((((((((((((((((((((((((((((((((������������(((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  168. //((((((((((((((((((((((((((((((((((((((((((((((((((((((������$'������((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  169. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  170. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  171. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  172. //(((((((((((((((((((((((((((((((((((((((((������������������������������������������(((((((((((((((((((((((((((((((((((((((((\\
  173. //((((((((((((((((((((((((((((((((((((((((�����������������������H�����������������������((((((((((((((((((((((((((((((((((((((((\\
  174. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  175. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  176. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  177. //(((((((((((((((((((((((((((((((((((((((((((((((((�������������������������(((((((((((((((((((((((((((((((((((((((((((((((((\\
  178. //(((((((((((((((((((((((((((((((((((((((((((((((((((((����������������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  179. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  180. //(((((((((((((((((((((((((((((((((((((((((((((((������������������������������(((((((((((((((((((((((((((((((((((((((((((((((\\
  181. //(((((((((((((((((((((((((((((((((((((((((((((((((((((��������%�������(((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  182. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  183. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  184. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  185. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  186. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  187. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  188. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  189. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  190. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  191. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  192. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  193. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  194. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  195. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  196. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\
  197. //((((((((((((((((((((((((((((((((((((((((((((((((((((((((((����((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\\