���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC 1) { // Check over images and match the largest resolution available foreach (array($at4x_file => 3, $at3x_file => 2, $at2x_file => 1) as $retina_file => $min_dpr) { if ($cookie_value > $min_dpr && file_exists($retina_file)) { $source_file = $retina_file; $status = 'retina image'; break; } } } // Check if we can shrink a larger version of the image if (!file_exists($source_file) && DOWNSIZE_NOT_FOUND){ // Check over increasingly larger images and see if one is available foreach (array($at2x_file, $at3x_file, $at4x_file) as $retina_file) { if (file_exists($retina_file)) { $source_file = $retina_file; $status = 'downsized image'; break; } } } // Check if the image to send exists if (!file_exists($source_file)) { if (DEBUG) { fwrite($_debug_fh, "Image not found. Sending 404\n"); } if (!DISABLE_RI_HEADER) { header('X-Retina-Images: not found'); } header('HTTP/1.1 404 Not Found', true); exit(); } // Attach a Retina Images header for debugging if (!DISABLE_RI_HEADER) { header('X-Retina-Images: '.$status); } // Send cache headers if (SEND_CACHE_CONTROL) { header("Cache-Control: private, {$cache_directive}, max-age=".CACHE_TIME, true); } if (SEND_EXPIRES) { date_default_timezone_set('GMT'); header('Expires: '.gmdate('D, d M Y H:i:s', time()+CACHE_TIME).' GMT', true); } if (SEND_ETAG) { $etag = '"'.filemtime($source_file).fileinode($source_file).'"'; header("ETag: $etag", true); if (DEBUG) { fwrite($_debug_fh, "generated etag: {$etag}\n"); if (isset($_SERVER['HTTP_IF_NONE_MATCH'])) { fwrite($_debug_fh, "received etag: {$_SERVER['HTTP_IF_NONE_MATCH']}\n\n"); } } if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && ($_SERVER['HTTP_IF_NONE_MATCH']) === $etag) { // File in cache hasn't change header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($source_file)).' GMT', true, 304); exit(); } } if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && (strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) === filemtime($source_file))) { // File in cache hasn't change header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($source_file)).' GMT', true, 304); exit(); } // Send image headers if (in_array($source_ext, array('png', 'gif', 'jpeg', 'bmp'))) { header("Content-Type: image/".$source_ext, true); } else { header("Content-Type: image/jpeg", true); } header('Content-Length: '.filesize($source_file), true); // Close debug session if open if (DEBUG) { fwrite($_debug_fh, "sending file: {$source_file}\n\n"); fclose($_debug_fh); } // Send file if (USE_X_SENDFILE) { header('X-Sendfile: '.$source_file); } else { readfile($source_file); } exit(); } // DPR value was sent elseif(isset($_GET['devicePixelRatio'])) { $dpr = $_GET['devicePixelRatio']; // Validate value before setting cookie if (''.ceil(intval($dpr)) !== $dpr) { $dpr = '1'; } setcookie('devicePixelRatio', $dpr); exit(); } // Respond with an empty content header('HTTP/1.1 204 No Content', true); ?>