#include #include #include #include Global Const $iFrames = 29 Global $aAnim[$iFrames + 1], $i, $j, $aTmp, $iDelay, $iMin = 0xFFFF For $i = 0 To $iFrames $aAnim[$i] = Call("_PixelCoordinates" & $i) ;create an array with arrays as values $aTmp = $aAnim[$i] $j = Int(StringRegExpReplace($aTmp[0], "(\d+),.*", "$1")) If $j < $iMin Then $iMin = $j ;minimum frame delay value Next $iDelay = Max($iMin - 4,3) Global $aFrame0 = $aAnim[0] ;content of $aFrame0[0] is ,x Global Const $iAnimWidth = StringRegExpReplace($aFrame0[0], "\d+,(\d+)x\d+", "$1") ;extract width Global Const $iAnimHeight = StringRegExpReplace($aFrame0[0], "\d+,\d+x(\d+)", "$1") ;extract height Global $hGUI = GUICreate("GIF Anim with different delays", @DesktopWidth, @DesktopHeight) GUISetBkColor(0xFFFFFF) Global Const $iDeltaX = _WinAPI_GetSystemMetrics($SM_CXDLGFRAME) Global Const $iDeltaY = _WinAPI_GetSystemMetrics(8) + _WinAPI_GetSystemMetrics($SM_CYSIZE) + 1 Global Const $size = WinGetPos(HWnd($hGUI)) Global Const $iHwndWidth = 0, $iHwndHeight = 0 Global Const $hDll = DllOpen("gdi32.dll") Global Const $hDll2 = DllOpen("user32.dll") GUIRegisterMsg($WM_TIMER, "PlayAnim") ;$WM_TIMER = 0x0113 DllCall("User32.dll", "int", "SetTimer", "hwnd", $hGUI, "int", 0, "int", $iDelay, "int", 0) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE GUIRegisterMsg($WM_TIMER, "") GUIDelete() DllClose($hDLL) DllClose($hDLL2) Exit EndSwitch Until False Func Max($a, $b) If $a > $b Then Return $a Return $b EndFunc Func PlayAnim() Local Static $f = 0, $iX = 0, $iY = 0 Local $aDelay = $aAnim[$f] Local $iDelay = StringRegExpReplace($aDelay[0], "(\d+),.*", "$1") Local Static $iTimer = TimerInit() DllCall($hDll, "bool", "DeleteObject", "handle", _WinAPI_GuiImageHole($hGUI, $aDelay, $iX, $iY, 100, 100)) GUISetState() $iX += 2 $iY += 1 If $iX > (@DesktopWidth +100)- $iAnimWidth Or $iY > @DesktopHeight - $iAnimHeight Then ;$iX = 0 ;$iY = 0 exit EndIf If TimerDiff($iTimer) > $iDelay Then $f += 1 $iTimer = TimerInit() EndIf If $f > $iFrames Then $f = 0 EndFunc Func _WinAPI_GuiImageHole($hWnd, $aPixelArray, $iX, $iY, $iWidth, $iHeight, $fScale = 1, $bCorrection = True) If $bCorrection Then $iX += $iDeltaX $iY += $iDeltaY EndIf Local $aRegion, $aRegionMask $aRegion = DllCall($hDll, "int", "CreateRectRgn", "int", 0, "int", 0, "int", 0, "int", 0) $aRegionMask = DllCall($hDll, "int", "CreateRectRgn", "int", 0, "int", 0, "int", $iX, "int", $iHwndHeight) DllCall($hDll, "int", "CombineRgn", "handle", $aRegion[0], "handle", $aRegionMask[0], "handle", $aRegion[0], "int", 2) $aRegionMask = DllCall($hDll, "int", "CreateRectRgn", "int", 0, "int", 0, "int", $iHwndWidth, "int", $iY) DllCall($hDll, "int", "CombineRgn", "handle", $aRegion[0], "handle", $aRegionMask[0], "handle", $aRegion[0], "int", 2) $aRegionMask = DllCall($hDll, "int", "CreateRectRgn", "int", $iX + $iWidth * $fScale, "int", 0, "int", $iHwndWidth, "int", $iHwndHeight) DllCall($hDll, "int", "CombineRgn", "handle", $aRegion[0], "handle", $aRegionMask[0], "handle", $aRegion[0], "int", 2) $aRegionMask = DllCall($hDll, "int", "CreateRectRgn", "int", 0, "int", $iY + $iHeight * $fScale, "int", $iHwndWidth, "int", $iHwndHeight) DllCall($hDll, "int", "CombineRgn", "handle", $aRegion[0], "handle", $aRegionMask[0], "handle", $aRegion[0], "int", 2) Local $i, $aBlock, $aRet For $i = 1 To UBound($aPixelArray) - 1 $aBlock = StringSplit($aPixelArray[$i], ",", 2) $aRegionMask = DllCall($hDll, "int", "CreateRectRgn", "int", $iX + $aBlock[0] * $fScale, "int", $iY + $aBlock[1] * $fScale, "int", $iX + $aBlock[2] * $fScale, "int", $iY + $aBlock[3] * $fScale) DllCall($hDll, "int", "CombineRgn", "handle", $aRegion[0], "handle", $aRegionMask[0], "handle", $aRegion[0], "int", 2) DllCall("gdi32.dll", "bool", "DeleteObject", "handle", $aRegionMask[0]) Next DllCall($hDll2, "int", "SetWindowRgn", "hwnd", $hWnd, "handle", $aRegion[0], "bool", 1) Return $aRegion[0] EndFunc ;==>_WinAPI_GuiImageHole Func _PixelCoordinates0() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;17,1,20,4;17,0,19,1;19,5,25,8;20,2,21,5;21,3,23,5;18,4,19,6;13,7,17,11;13,6,15,7;21,8,29,10;25,6,26,8;26,7,27,8;10,8,12,11;16,11,20,18;17,8,19,10;20,8,21,9;9,9,10,10;12,9,13,12;18,10,25,11;19,9,20,10;22,15,32,22;27,10,30,14;26,10,27,12;13,11,15,13;21,11,25,15;20,11,21,12;30,11,31,13;32,11,34,13;13,14,16,17;15,12,16,14;25,12,26,15;31,12,32,15;32,16,39,29;34,12,36,16;12,13,14,14;20,13,21,21;32,13,33,15;12,14,13,15;26,14,27,15;28,14,31,15;33,14,34,15;36,14,37,16;21,15,22,16;37,15,38,16;15,17,16,18;21,17,22,21;17,18,20,19;39,21,42,32;39,18,40,21;19,19,20,21;40,19,41,21;25,22,26,24;24,22,25,23;28,22,32,26;26,23,28,25;27,22,28,23;43,23,46,33;42,22,44,23;109,25,116,32;111,22,114,25;116,23,121,29;117,22,119,23;42,23,43,27;46,24,49,29;46,23,47,24;110,23,111,25;114,23,116,25;121,23,122,25;49,26,53,31;49,25,51,26;30,26,32,28;52,31,62,34;53,28,58,31;53,27,55,28;98,32,112,37;105,28,109,32;108,27,109,28;31,28,32,29;42,28,43,35;34,29,37,31;37,31,39,33;38,29,39,31;48,29,49,31;47,29,48,30;58,29,60,31;103,30,105,32;104,29,105,30;116,29,118,31;118,29,119,30;46,30,47,31;60,30,61,31;36,31,37,32;50,32,52,33;51,31,52,32;100,31,103,32;40,32,41,34;39,32,40,33;59,36,71,41;62,33,65,35;62,32,64,33;112,32,114,34;114,32,115,33;41,33,42,34;46,33,48,35;45,33,46,34;48,33,49,34;92,37,102,45;96,34,98,37;97,33,98,34;43,34,44,36;48,36,54,40;50,34,51,36;55,34,59,38;53,34,55,36;59,34,62,36;65,34,67,36;94,34,96,35;112,34,113,35;44,35,46,37;47,35,48,36;51,35,52,36;63,35,65,36;67,35,69,36;92,35,95,37;45,37,48,38;46,36,47,37;54,36,55,37;95,36,96,37;69,44,80,60;71,38,74,44;71,37,73,38;90,37,92,38;102,37,109,40;109,37,110,39;47,38,48,39;55,38,56,41;54,38,55,39;57,38,59,40;89,38,91,39;83,46,94,61;87,40,92,44;88,39,90,40;49,40,52,41;52,41,55,43;53,40,54,41;74,41,76,44;74,40,75,41;102,40,105,42;105,40,107,41;51,41,52,42;57,41,58,42;60,41,61,42;63,41,69,47;61,42,63,44;62,41,63,42;69,41,71,44;86,41,87,46;54,43,59,44;55,42,56,43;76,42,77,44;84,42,86,43;102,42,104,44;77,43,78,44;82,44,85,46;" $sPixelRect &= "84,43,85,44;56,44,58,46;61,44,62,45;88,44,92,46;58,45,59,48;80,47,83,63;80,45,82,47;87,45,88,46;94,45,98,48;92,45,94,46;98,45,100,47;100,45,101,46;62,46,63,47;59,47,62,49;67,47,69,51;65,47,67,49;63,48,64,49;94,48,97,49;56,53,68,64;62,49,63,53;61,49,62,50;63,51,67,53;65,50,66,51;94,52,102,58;94,51,100,52;68,52,69,62;67,52,68,53;49,54,56,59;55,53,56,54;102,54,104,58;102,53,103,54;45,55,49,59;104,55,105,57;44,57,45,58;94,58,98,60;98,58,100,59;47,59,48,60;55,59,56,61;72,60,80,62;70,60,72,61;94,60,95,61;83,61,88,63;88,61,91,62;53,64,59,70;53,62,56,64;70,62,73,64;73,62,75,63;77,62,80,63;68,63,70,64;60,64,65,68;59,64,60,65;65,64,67,65;65,65,66,66;50,66,53,71;59,66,60,71;49,67,50,68;60,68,63,70;63,68,64,69;53,70,56,71;57,70,59,71;60,70,62,71;51,71,53,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates0() Func _PixelCoordinates1() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;21,1,23,4;20,2,21,5;22,6,27,9;23,3,25,6;23,2,24,3;21,4,22,7;25,5,26,6;27,5,28,8;12,9,18,11;16,6,18,9;23,9,31,13;28,6,29,9;18,7,20,9;29,7,30,9;13,8,14,9;20,9,22,12;20,8,21,9;30,8,31,9;19,9,20,10;17,11,20,15;18,10,19,11;22,10,23,13;29,13,34,16;31,10,32,13;14,11,16,13;13,11,14,12;32,11,33,13;16,12,17,14;18,17,30,21;20,14,23,17;20,13,22,14;23,13,27,14;26,14,29,15;28,13,29,14;25,21,41,26;32,16,35,20;34,14,35,16;35,15,38,16;36,14,37,15;19,15,20,16;23,15,24,17;25,15,28,17;14,16,18,19;18,16,19,17;24,16,25,17;30,16,32,18;35,16,36,17;36,17,39,21;37,16,39,17;35,18,36,21;39,18,40,21;16,19,18,20;30,19,32,21;33,20,35,21;40,20,41,21;21,21,25,23;20,21,21,22;31,29,54,31;41,24,44,29;41,22,42,24;22,23,25,24;24,24,25,25;113,27,122,34;115,24,117,27;44,26,48,29;44,25,46,26;114,25,115,27;117,25,126,27;29,26,32,28;27,26,29,27;33,26,40,29;40,26,41,28;126,26,127,27;30,28,33,29;32,27,33,28;48,27,50,29;122,27,125,29;125,27,126,28;50,28,51,29;108,31,113,39;112,28,113,31;122,30,124,33;122,29,123,30;53,31,59,37;54,30,56,31;111,30,112,31;124,30,126,32;34,31,36,33;37,33,39,35;38,31,39,33;37,31,38,32;40,31,53,32;36,32,37,34;41,32,46,34;40,32,41,33;49,32,53,36;48,32,49,34;56,37,68,40;59,33,61,37;59,32,60,33;103,33,108,42;106,32,108,33;46,33,47,37;40,34,42,36;39,34,40,35;43,34,45,35;61,34,63,37;96,36,103,46;100,34,103,36;113,34,117,36;117,34,120,35;63,35,64,37;99,35,100,36;42,36,44,38;41,36,42,37;47,36,49,37;64,36,66,37;113,36,116,37;44,37,45,39;47,37,48,38;50,37,51,38;55,37,56,39;54,37,55,38;94,37,96,38;113,37,114,38;45,38,47,40;51,38,53,39;67,43,77,61;68,38,72,43;87,42,96,50;93,39,95,42;94,38,95,39;46,40,54,41;47,39,48,40;49,39,50,40;51,39,52,40;72,40,74,43;72,39,73,40;91,39,93,40;108,39,111,41;111,39,112,40;55,40,56,41;61,40,67,46;58,40,61,42;67,40,68,43;90,40,92,41;95,40,96,42;49,41,51,43;48,41,49,42;57,41,58,42;74,41,75,43;88,41,91,42;92,41,93,42;108,41,109,42;51,42,53,44;75,42,76,43;85,43,87,45;86,42,87,43;103,42,106,44;106,42,107,43;54,43,55,45;53,43,54,44;55,44,56,46;" $sPixelRect &= "77,47,87,63;77,44,78,47;82,45,86,46;84,44,85,45;103,44,104,45;56,45,57,47;60,45,61,46;78,45,80,47;57,46,58,48;63,46,67,48;62,46,63,47;80,46,83,47;84,46,87,47;96,46,102,47;58,47,59,49;96,47,98,49;98,47,99,48;59,48,61,50;65,48,67,50;64,48,65,49;61,49,62,51;62,50,63,52;66,50,67,51;87,51,97,60;87,50,95,51;57,53,67,65;63,51,65,53;65,52,67,53;97,52,102,58;102,54,104,58;102,53,103,54;50,54,57,59;46,55,50,59;104,55,105,57;45,56,46,59;97,58,99,60;99,58,100,59;48,59,50,60;54,62,57,70;55,59,57,61;87,60,96,61;56,61,57,62;67,61,69,62;71,61,77,63;87,61,91,62;53,62,54,65;67,62,68,65;87,62,89,63;68,63,73,64;84,63,85,64;57,66,62,71;57,65,59,66;62,65,65,69;60,65,62,66;65,65,66,66;50,66,54,71;49,67,50,69;62,69,63,70;54,70,56,71;51,71,54,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates1() Func _PixelCoordinates2() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;25,4,27,7;24,5,25,7;26,10,31,14;27,6,29,10;27,5,28,6;25,7,26,11;19,8,22,14;26,8,27,9;29,8,33,10;22,9,23,11;29,18,38,22;32,11,35,18;33,9,34,11;16,10,18,13;15,10,16,11;18,10,19,12;21,14,29,16;24,10,25,14;23,10,24,12;31,10,32,11;34,10,35,11;22,12,23,14;25,12,26,14;18,13,19,15;17,13,18,14;30,14,32,17;31,13,32,14;35,14,37,18;35,13,36,14;19,14,20,16;20,15,21,16;29,15,30,16;22,16,25,18;21,16,22,17;26,16,29,17;37,16,38,18;25,17,26,18;28,17,31,18;24,18,25,20;23,18,24,19;24,22,30,27;25,19,28,21;26,18,29,19;38,18,39,20;17,19,21,22;16,19,17,21;28,19,29,20;35,22,43,32;39,19,41,21;21,21,24,25;21,20,23,21;40,21,42,22;41,20,42,21;24,21,25,22;27,21,29,22;18,22,21,23;30,23,35,26;31,22,35,23;20,23,21,24;22,25,24,26;30,29,33,31;30,26,34,28;43,28,46,35;43,26,44,28;27,27,30,29;25,27,27,28;33,30,35,34;32,28,35,29;34,27,35,28;116,30,125,38;119,27,122,30;125,29,128,33;124,27,126,29;118,28,119,30;122,28,124,30;128,28,131,31;127,28,128,29;131,28,132,30;29,29,30,30;34,29,35,30;46,30,50,35;46,29,48,30;124,29,125,30;32,31,33,33;31,31,32,32;50,32,54,37;50,31,52,32;128,31,129,32;36,32,42,34;35,32,36,33;40,34,43,35;42,33,43,34;54,34,59,41;54,33,57,34;111,35,116,41;114,34,116,35;115,33,116,34;125,33,127,34;34,34,37,35;127,34,131,36;37,35,38,37;36,35,37,36;38,36,40,37;39,35,40,36;43,35,45,37;49,35,50,36;59,36,62,44;59,35,60,36;125,35,127,37;42,36,43,37;105,37,111,44;109,36,111,37;127,36,130,37;39,37,42,38;47,38,51,42;48,37,50,38;52,37,54,39;62,39,67,49;62,37,63,39;125,37,126,38;42,38,44,40;41,38,42,39;44,39,47,40;46,38,47,39;51,38,52,39;63,38,66,39;98,39,105,46;102,38,105,39;116,38,119,40;119,38,121,39;51,40,53,43;52,39,53,40;43,40,46,41;53,40,54,41;68,44,77,61;67,40,71,44;93,41,98,49;96,40,98,41;116,40,117,41;46,41,47,43;45,41,46,42;57,41,59,44;56,41,57,42;71,41,73,44;111,41,113,43;113,41,114,42;48,42,49,44;47,42,48,43;49,43,51,44;50,42,51,43;53,42,55,44;73,42,74,44;77,49,95,61;89,43,93,49;91,42,93,43;51,44,53,45;52,43,53,44;52,45,57,46;55,43,56,45;74,43,75,44;56,44,58,45;60,44,62,47;" $sPixelRect &= "67,44,68,50;85,45,89,49;86,44,89,45;105,44,108,45;77,46,80,49;77,45,78,46;105,45,106,46;55,46,56,48;58,46,60,50;82,46,85,47;98,46,102,48;102,46,104,47;56,47,58,49;80,47,83,49;83,48,85,49;84,47,85,48;60,48,62,51;98,48,100,49;65,49,67,51;95,49,97,50;56,54,68,65;62,51,64,54;62,50,63,51;61,51,62,52;95,52,99,60;95,51,96,52;64,52,66,54;99,53,103,58;99,52,102,53;58,53,62,54;66,53,68,54;48,55,56,60;51,54,56,55;103,55,105,58;103,54,104,55;45,56,48,59;99,58,100,59;47,59,48,60;55,60,56,61;95,60,97,61;68,61,69,62;80,61,86,64;71,61,80,62;86,61,89,63;89,61,91,62;52,66,64,70;53,62,56,65;71,62,74,64;74,62,75,63;76,62,80,63;68,63,71,64;54,65,59,66;60,65,66,66;64,66,65,69;50,67,52,71;52,70,55,72;55,70,56,71;57,70,62,71;51,71,52,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates2() Func _PixelCoordinates3() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;29,8,31,11;31,9,32,12;32,10,33,15;23,15,25,17;23,12,27,14;24,11,25,12;28,14,31,18;29,11,30,14;30,12,31,14;33,14,36,19;33,12,34,14;19,13,22,16;36,13,38,15;35,13,36,14;22,14,23,16;24,14,28,15;31,24,41,33;36,17,40,24;37,15,40,17;38,14,39,15;27,15,28,16;21,16,22,18;20,16,21,17;25,16,27,19;30,18,32,24;31,16,32,18;22,17,23,20;23,18,25,20;24,17,25,18;26,20,28,23;27,18,28,20;29,18,30,20;40,18,41,24;24,20,26,21;25,19,26,20;32,19,33,20;33,20,36,22;34,19,36,20;25,21,26,22;27,23,30,24;28,21,29,23;32,21,33,24;29,22,30,23;33,22,34,24;35,22,36,23;18,23,19,26;34,23,35,24;41,23,42,28;20,24,23,28;19,24,20,27;29,24,31,26;28,24,29,25;23,26,28,30;23,25,25,26;41,29,46,35;43,26,45,29;42,25,44,26;30,26,31,27;42,26,43,27;28,28,31,33;28,27,30,28;22,28,23,29;42,28,43,29;45,28,46,29;24,30,28,31;122,32,129,37;124,30,127,32;128,30,131,32;27,31,28,32;123,31,124,32;127,31,128,32;132,31,136,33;136,31,137,32;44,35,53,38;46,32,47,35;130,32,132,35;31,33,36,36;29,33,31,34;37,33,41,37;47,33,49,35;117,37,125,42;120,34,122,37;121,33,122,34;129,33,130,37;132,33,134,35;134,33,135,34;34,36,37,38;36,34,37,36;49,34,51,35;42,36,44,40;41,35,43,36;118,36,120,37;119,35,120,36;130,35,131,36;33,36,34,37;40,37,42,38;41,36,42,37;52,38,61,43;53,36,55,38;38,37,39,38;55,37,59,38;125,37,128,38;37,38,38,40;36,38,37,39;44,38,45,40;50,38,52,40;48,38,50,39;125,38,126,39;132,38,135,40;39,39,41,41;38,39,39,40;45,39,46,40;59,43,73,49;61,40,65,43;61,39,62,40;111,40,117,44;115,39,117,40;127,39,132,41;135,39,136,40;42,40,43,42;41,40,42,41;46,40,47,42;50,40,51,41;125,40,127,42;132,40,134,41;43,41,44,43;47,41,48,42;51,41,52,44;65,41,67,43;104,41,111,47;127,41,128,42;45,42,46,44;44,42,45,43;48,43,50,46;49,42,50,43;67,42,71,43;97,43,104,49;100,42,103,43;117,42,124,43;46,43,47,45;50,43,51,44;51,45,55,47;52,43,53,45;56,45,58,49;57,43,59,45;56,43,57,44;117,43,119,44;47,44,48,45;53,44,56,45;68,49,96,61;73,45,77,49;73,44,75,45;91,45,97,49;94,44,97,45;111,44,115,46;115,44,116,45;50,45,51,46;55,45,56,46;58,46,59,51;77,46,78,49;" $sPixelRect &= "86,46,91,49;55,47,56,49;54,47,55,48;78,47,81,49;82,47,86,49;104,47,106,48;81,48,82,49;57,49,58,50;59,49,61,51;65,49,68,51;62,49,65,50;96,49,100,50;61,50,62,52;56,54,68,65;62,51,64,54;96,52,101,59;96,51,97,52;64,52,68,54;101,53,103,58;101,52,102,53;58,53,62,54;48,55,56,59;51,54,56,55;103,54,105,58;45,56,48,59;47,59,54,60;55,59,56,61;96,59,99,60;96,60,97,61;68,61,69,62;81,61,84,64;76,61,81,63;72,61,75,63;75,61,76,62;84,61,90,63;90,61,92,62;52,66,64,70;54,62,56,66;53,62,54,64;68,63,74,64;71,62,72,63;68,64,69,65;56,65,59,66;60,65,66,66;64,66,65,69;50,67,52,70;51,70,57,71;58,70,63,71;51,71,54,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates3() Func _PixelCoordinates4() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;33,16,37,18;34,15,35,16;28,17,30,20;30,18,31,21;32,25,37,27;31,20,34,23;33,18,34,20;36,18,38,21;34,19,36,20;35,18,36,19;23,19,25,22;25,19,26,21;31,19,32,20;40,19,43,21;25,23,31,25;26,20,27,23;27,21,30,23;28,20,29,21;35,27,45,34;37,22,44,24;38,20,40,22;34,21,35,24;36,21,37,22;40,21,41,22;42,21,44,22;24,22,25,24;35,22,36,24;33,23,34,25;32,23,33,24;31,24,32,25;36,24,37,25;39,24,44,27;27,25,29,27;26,25,27,26;29,27,34,29;30,25,31,27;29,25,30,26;38,25,39,26;31,26,32,27;37,26,38,27;28,27,29,28;30,34,35,39;33,29,35,33;34,28,35,29;31,29,33,31;30,29,31,30;21,31,24,34;32,31,33,32;20,32,21,33;25,32,28,36;24,32,25,35;45,32,46,35;28,33,30,38;30,33,31,34;34,33,35,34;40,36,49,40;46,33,49,36;140,33,142,35;23,34,24,35;36,34,45,36;128,34,134,40;134,34,135,35;138,34,140,37;33,39,39,41;35,36,40,39;35,35,36,36;124,37,128,43;126,35,128,37;136,35,138,38;26,36,28,37;125,36,126,37;134,36,136,38;48,40,57,43;49,38,51,40;121,40,124,46;122,39,124,40;123,38,124,39;134,38,135,39;32,39,33,40;51,39,52,40;40,40,44,43;39,40,40,42;45,40,48,42;128,40,132,41;35,41,38,43;34,41,35,42;43,43,46,46;44,41,45,43;57,42,64,47;57,41,61,42;118,43,121,47;119,42,121,43;120,41,121,42;128,41,130,42;37,43,42,44;38,42,39,43;45,42,47,43;47,43,48,44;53,43,57,45;50,43,53,44;62,52,97,61;64,44,72,51;64,43,69,44;124,43,127,46;130,43,137,45;137,43,140,44;41,44,43,45;111,44,117,48;117,44,118,47;127,44,130,46;46,45,50,47;55,45,57,46;72,46,77,52;72,45,74,46;106,45,111,49;130,45,131,46;45,46,46,47;50,46,53,48;55,46,56,47;93,46,106,50;121,46,122,47;49,47,50,48;53,47,55,49;60,47,64,49;58,47,60,48;77,47,80,52;88,47,93,52;52,48,53,49;56,48,58,50;55,48,56,49;80,48,88,52;111,48,115,49;63,49,64,52;62,49,63,50;58,50,62,52;57,50,58,51;93,50,98,52;98,50,99,51;101,50,102,51;62,51,63,52;66,51,72,52;97,52,102,58;57,53,62,55;102,54,105,58;102,53,104,54;50,54,57,59;46,55,50,59;56,59,62,65;57,56,62,59;57,55,59,56;60,55,62,56;45,56,46,59;97,58,99,60;99,58,100,59;48,59,54,60;55,59,56,60;62,61,68,65;68,61,69,64;78,61,89,63;72,61,78,62;" $sPixelRect &= "89,61,91,62;53,62,56,64;69,62,74,64;74,62,75,63;52,66,64,70;54,65,60,66;55,64,56,65;61,65,66,66;64,66,65,69;51,67,52,72;50,67,51,68;52,70,57,71;58,70,63,71;52,71,54,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates4() Func _PixelCoordinates5() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;30,28,42,31;37,25,41,28;38,24,41,25;33,25,35,27;27,27,30,30;27,26,29,27;32,26,33,28;41,26,42,28;43,34,49,47;45,27,48,34;45,26,47,27;26,27,27,29;34,27,36,28;43,28,45,29;44,27,45,28;42,30,45,33;42,29,44,30;28,30,29,32;29,31,38,32;37,32,42,37;39,31,42,32;48,31,49,34;30,32,33,34;29,32,30,33;33,33,37,37;35,32,36,33;42,33,43,36;44,33,45,34;32,34,33,36;31,34,32,35;35,37,39,39;34,37,35,38;39,40,43,49;40,37,43,39;37,39,40,40;39,38,40,39;133,39,139,43;137,38,138,39;142,38,145,40;41,39,43,40;140,39,142,42;24,40,27,43;37,40,39,41;128,41,133,46;130,40,133,41;139,40,140,43;142,40,144,41;28,41,34,45;27,41,28,44;142,41,143,42;34,42,37,47;50,44,56,50;51,42,53,44;125,44,128,50;126,43,128,44;127,42,128,43;140,42,141,43;26,43,27,44;37,43,39,48;49,43,51,44;133,43,138,44;49,44,50,47;56,45,71,49;56,44,61,45;133,44,135,45;31,45,34,46;121,46,125,50;123,45,125,46;133,45,134,46;65,49,77,60;71,46,75,49;128,46,131,47;36,47,37,48;43,47,47,49;47,48,50,49;48,47,49,48;77,47,80,52;75,47,77,49;91,47,103,57;103,47,111,52;111,48,121,51;120,47,121,48;128,47,129,50;130,47,142,49;142,47,143,48;80,48,83,53;83,49,91,62;87,48,91,49;129,48,130,50;48,49,50,50;56,53,65,65;58,49,64,52;64,49,65,51;130,49,134,50;55,50,58,51;57,51,58,52;61,52,65,53;77,54,83,62;78,52,79,54;77,52,78,53;49,54,56,59;55,53,56,54;103,54,106,57;103,53,105,54;46,55,49,59;91,57,98,60;98,57,102,58;103,57,105,58;98,58,100,59;48,59,54,60;55,59,56,60;66,60,68,65;65,60,66,63;69,60,70,64;68,60,69,62;72,60,77,62;91,60,95,61;54,65,60,70;53,62,56,64;54,61,56,62;70,62,74,64;74,62,75,63;79,62,88,63;68,63,69,65;55,64,56,65;61,65,66,68;65,64,66,65;51,66,54,71;50,66,51,68;60,66,61,71;61,68,64,70;64,68,65,69;54,70,57,71;59,70,60,71;61,70,63,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates5() Func _PixelCoordinates6() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;38,32,41,34;35,36,38,43;37,33,38,36;38,39,43,43;38,35,43,38;40,34,42,35;41,33,42,34;33,34,35,36;38,34,39,35;44,39,49,45;45,34,48,39;27,35,31,37;32,36,34,42;32,35,33,36;35,35,36,36;43,36,45,37;44,35,45,36;30,37,32,38;31,36,32,37;48,36,49,39;28,37,29,39;43,37,44,41;29,38,31,40;34,38,35,44;39,38,42,39;30,40,32,41;31,39,32,40;31,41,32,42;33,42,34,43;41,43,44,44;43,42,44,43;36,43,37,45;35,43,36,44;39,43,40,44;45,45,50,52;49,43,50,45;37,44,39,46;41,47,44,52;40,44,42,47;42,44,43,45;140,45,148,48;146,44,149,45;39,45,40,47;148,45,149,46;44,46,45,47;60,46,72,60;72,47,81,53;72,46,75,47;136,46,140,50;40,47,41,48;50,47,60,52;85,48,103,57;97,47,100,48;131,48,136,51;133,47,136,48;44,48,45,52;81,48,85,53;140,48,145,49;28,49,41,52;27,49,28,51;103,49,108,55;108,50,117,53;108,49,109,50;126,50,131,56;128,49,131,50;140,49,141,50;131,52,145,53;136,50,137,52;117,51,122,55;122,52,126,55;123,51,126,52;131,51,135,52;137,51,145,52;54,61,69,64;48,54,60,59;53,53,60,54;72,53,73,54;72,55,81,58;74,54,76,55;75,53,76,54;77,53,78,54;80,53,81,54;109,53,117,55;131,53,137,54;139,53,141,54;108,54,109,55;131,54,134,55;46,55,48,59;81,57,90,62;82,55,83,57;83,56,85,57;84,55,85,56;103,55,106,57;131,55,132,56;90,57,100,59;100,57,102,58;72,58,76,62;77,58,81,62;49,59,51,60;56,59,60,61;55,59,56,60;76,59,77,61;90,59,96,60;60,60,70,61;90,60,93,61;69,62,75,63;71,61,72,62;69,63,71,64;55,64,60,70;60,64,61,65;62,64,66,69;66,64,69,65;52,66,55,71;51,66,52,68;50,66,51,67;60,66,62,71;66,66,67,67;62,69,64,70;55,70,57,71;59,70,60,71;62,70,63,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates6() Func _PixelCoordinates7() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;38,43,43,45;40,41,42,43;38,41,40,42;38,42,39,43;42,42,43,43;45,45,50,49;45,42,48,44;43,44,45,46;44,43,45,44;34,44,36,46;46,44,49,45;29,45,32,47;32,46,34,49;33,45,34,46;37,45,40,52;36,45,37,47;41,45,43,50;34,46,35,47;40,46,41,47;61,47,70,61;64,46,75,47;31,47,32,49;30,47,31,48;34,48,36,50;35,47,36,48;43,47,45,48;47,49,53,59;50,47,51,49;70,47,90,52;39,52,45,58;40,48,41,52;43,48,44,50;57,49,61,65;58,48,61,49;90,49,99,59;90,48,97,49;33,49,34,50;35,50,37,51;36,49,37,50;46,49,47,51;53,52,57,59;53,49,57,51;99,50,106,56;99,49,103,50;41,50,42,51;42,51,44,52;45,51,46,52;55,51,57,52;106,51,109,56;45,53,47,57;46,52,47,53;72,52,75,53;82,55,90,61;85,52,90,55;84,52,85,53;110,53,118,59;109,52,113,53;145,52,150,56;70,53,73,55;109,53,110,56;139,53,145,58;37,55,39,59;38,54,39,55;73,54,74,55;75,54,76,55;78,54,80,56;118,55,126,60;118,54,122,55;133,54,139,58;70,57,76,58;72,55,73,57;74,55,75,56;75,56,78,57;77,55,78,56;80,55,82,56;127,55,133,61;35,56,37,59;70,56,71,57;78,57,82,61;80,56,81,57;99,56,104,58;104,57,110,58;105,56,106,57;126,56,127,61;145,56,147,57;32,57,35,59;46,57,47,58;145,57,146,58;31,58,32,60;70,58,73,59;75,58,77,61;107,58,110,59;32,59,33,60;56,59,57,60;73,59,75,62;77,59,78,61;90,59,92,61;92,59,93,60;114,59,118,60;133,59,136,62;70,61,73,63;72,60,73,61;123,60,126,61;136,60,137,61;54,65,60,69;55,61,57,65;62,61,67,68;61,61,62,64;67,61,69,64;80,61,88,62;69,62,70,64;67,64,68,65;60,66,62,71;61,65,62,66;51,66,54,68;52,69,58,70;53,68,54,69;62,68,65,70;59,69,60,70;53,70,57,71;62,70,63,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates7() Func _PixelCoordinates8() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;67,46,76,52;85,47,92,60;84,46,86,47;56,52,69,61;63,47,67,52;76,47,85,51;92,49,101,58;92,47,93,49;58,49,63,52;61,48,63,49;93,48,95,49;40,52,47,64;40,50,42,52;47,51,49,56;47,50,48,51;51,50,56,60;56,50,58,52;101,52,108,57;101,50,103,52;39,51,40,54;42,51,44,52;46,51,47,52;76,51,77,52;80,51,85,52;103,51,105,52;49,52,51,57;83,52,84,53;69,53,71,59;108,53,111,58;33,55,40,56;37,54,38,55;71,54,73,56;75,54,76,55;77,54,78,55;78,55,80,57;79,54,80,55;80,56,85,61;81,54,82,56;83,54,85,56;111,55,116,59;111,54,113,55;73,55,74,56;82,55,83,56;33,56,35,58;32,56,33,57;35,57,40,58;36,56,37,57;38,56,39,57;47,58,51,62;47,57,49,58;48,56,49,57;74,57,78,60;76,56,78,57;116,57,122,61;116,56,120,57;71,57,72,58;73,57,74,59;100,59,105,61;102,57,104,59;101,57,102,58;105,57,108,58;36,58,40,59;78,58,80,61;92,58,97,59;98,58,100,60;104,58,106,59;122,59,129,65;122,58,125,59;69,59,70,60;96,59,98,60;105,60,108,62;106,59,107,60;108,59,111,60;111,60,116,63;113,59,116,60;51,60,54,61;71,60,75,62;75,60,76,61;77,60,78,61;85,60,90,61;129,60,145,65;146,60,150,65;145,60,146,62;55,61,67,64;68,61,71,63;104,61,105,62;108,61,111,62;116,61,119,64;120,61,122,64;47,62,48,63;67,62,68,64;119,62,120,64;37,64,41,66;39,63,40,64;68,63,69,64;114,63,116,64;145,63,146,65;41,64,44,65;56,64,61,68;63,64,67,68;53,66,56,71;54,65,56,66;61,65,63,70;129,65,138,67;126,65,129,66;148,65,149,66;35,66,38,68;38,66,40,67;52,66,53,68;138,66,139,67;134,67,138,68;56,68,58,70;58,68,59,69;59,69,61,70;60,68,61,69;63,68,65,70;65,68,66,69;52,69,53,70;56,70,57,71;60,70,62,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates8() Func _PixelCoordinates9() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;69,46,92,51;53,51,71,59;65,47,69,51;85,51,106,58;92,47,95,51;63,48,65,51;95,48,98,51;61,49,63,51;98,49,104,51;57,50,61,51;104,50,105,51;71,51,73,52;75,51,76,52;47,54,53,62;48,53,53,54;52,52,53,53;74,53,76,56;73,52,75,53;106,54,109,60;106,52,107,54;72,53,74,54;81,54,85,60;84,53,85,54;75,56,78,60;76,54,79,56;71,55,74,56;79,55,81,57;109,56,114,61;109,55,111,56;45,56,47,57;71,56,72,57;78,56,79,57;42,59,46,67;43,57,46,59;72,57,75,58;113,61,125,67;114,58,118,61;114,57,116,58;46,58,47,62;73,59,75,61;74,58,75,59;78,59,81,60;80,58,81,59;85,58,93,60;96,58,97,59;101,58,103,61;99,58,101,59;104,58,106,60;103,58,104,59;40,59,42,63;53,59,67,63;68,60,70,63;67,59,69,60;91,60,98,61;93,59,94,60;95,59,96,60;97,59,99,60;118,59,120,61;39,60,40,62;67,60,68,61;70,60,73,62;75,60,76,61;95,61,102,62;100,60,101,61;120,60,122,61;102,62,106,64;104,61,105,62;109,61,110,62;112,61,113,63;46,63,51,68;47,62,50,63;51,63,61,67;52,62,53,63;63,63,68,67;67,62,68,63;100,62,102,63;107,62,108,63;125,63,129,70;125,62,127,63;37,64,42,66;41,63,42,64;61,63,62,64;68,63,69,64;108,63,112,64;107,64,109,66;105,64,107,65;111,64,113,66;129,65,138,72;129,64,132,65;35,65,37,67;61,65,63,70;109,65,111,67;34,66,35,67;37,66,41,67;111,66,112,67;138,66,145,73;43,67,46,71;53,67,59,69;60,67,61,69;59,67,60,68;63,67,66,69;66,67,67,68;117,67,125,69;114,67,117,68;145,67,148,74;46,68,49,70;49,68,50,69;41,70,43,74;42,69,43,70;54,69,56,71;53,69,54,70;56,69,58,70;63,69,64,70;120,69,121,70;122,69,125,70;148,69,150,75;46,70,47,71;126,70,129,71;39,73,41,75;40,71,41,73;43,71,45,72;128,71,129,72;43,72,44,73;134,72,138,74;132,72,134,73;138,73,139,74;140,73,145,74;38,74,39,76;41,74,42,75;143,74,144,75;39,75,40,76" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates9() Func _PixelCoordinates10() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;79,45,90,51;73,46,79,51;85,51,107,58;90,46,93,51;66,48,73,54;69,47,73,48;93,47,97,51;97,48,102,51;49,54,69,63;62,49,66,54;102,49,104,51;57,50,62,54;104,50,106,51;54,51,57,54;73,51,78,52;51,52,54,54;73,52,75,53;47,53,51,54;79,55,85,59;81,53,82,55;82,54,85,55;84,53,85,54;48,54,49,61;47,54,48,57;69,54,71,59;71,54,72,57;76,54,77,55;78,54,79,56;101,58,113,62;107,55,108,58;73,57,78,59;75,56,77,57;108,56,109,58;109,57,111,58;78,58,79,59;85,58,95,59;99,58,100,63;97,58,99,60;100,58,101,60;47,59,48,62;69,60,75,61;70,59,71,60;72,59,77,60;81,59,82,60;89,59,90,61;88,59,89,60;113,61,119,70;113,59,115,61;90,60,93,62;94,60,95,63;96,61,99,64;96,60,98,61;115,60,117,61;45,62,47,64;46,61,47,62;69,61,71,62;100,61,101,63;47,63,68,64;48,62,49,63;92,62,94,63;95,62,96,64;102,62,103,64;101,62,102,63;106,62,107,63;108,62,113,63;119,64,123,74;119,62,120,64;44,63,45,64;103,63,104,64;104,65,107,67;105,63,106,65;107,63,109,64;111,63,113,64;120,63,122,64;45,64,46,65;49,64,63,70;63,64,67,67;67,64,68,66;98,64,102,65;108,65,110,66;109,64,110,65;46,70,53,77;46,66,49,70;47,65,49,66;102,65,103,67;101,65,102,66;111,67,113,68;112,65,113,67;123,67,128,75;123,65,125,67;103,66,104,67;109,66,111,67;125,66,127,67;63,67,66,69;106,67,107,69;105,67,106,68;107,68,110,69;109,69,113,70;112,68,113,69;128,70,134,78;128,68,130,70;130,69,132,70;53,70,58,73;58,70,60,71;114,70,115,72;113,70,114,71;116,70,119,73;58,71,59,72;115,71,116,73;134,72,141,80;134,71,138,72;41,73,46,77;42,72,46,73;40,73,41,75;53,73,57,74;118,73,119,74;141,74,145,84;141,73,143,74;53,74,55,75;122,74,123,75;53,75,54,76;126,75,128,77;124,75,126,76;145,75,147,77;38,77,42,80;40,76,41,77;42,77,45,78;46,77,52,79;37,78,38,79;42,78,43,79;44,79,48,83;45,78,46,79;131,78,134,79;145,79,149,84;145,78,147,79;48,79,50,80;133,79,134,80;48,80,49,82;137,80,141,82;135,80,137,81;149,80,150,85;138,82,141,83;44,83,46,85;46,83,47,84;140,83,141,84;43,84,44,86;146,84,149,85;44,85,45,86" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates10() Func _PixelCoordinates11() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;84,52,104,58;81,44,90,51;75,45,81,51;90,46,96,52;90,45,93,46;67,47,75,55;71,46,75,47;96,47,100,52;57,55,70,65;60,49,67,55;65,48,67,49;100,48,104,52;104,50,106,54;104,49,105,50;55,50,60,54;52,59,57,81;49,52,55,58;52,51,55,52;77,51,78,53;75,51,77,52;78,51,80,52;81,51,82,52;85,51,90,52;106,51,107,54;47,53,49,57;48,52,49,53;75,52,76,55;80,53,84,59;55,54,59,55;78,54,80,55;105,54,106,55;55,55,57,57;70,55,73,57;73,55,74,56;76,55,78,56;100,58,110,63;104,55,105,58;74,56,77,59;77,57,80,58;79,56,80,57;105,56,107,58;52,58,56,59;55,57,56,58;70,57,72,58;107,57,108,58;70,58,71,61;72,58,74,60;85,58,88,60;84,58,85,59;88,60,91,62;89,58,90,60;91,58,92,59;95,58,100,60;93,58,95,59;49,62,52,64;50,60,52,62;51,59,52,60;71,59,72,61;74,59,75,60;90,59,91,60;92,59,93,60;108,63,118,67;110,60,112,63;110,59,111,60;86,60,88,61;97,60,100,62;112,61,114,63;89,62,92,63;96,62,97,64;94,62,96,63;97,62,98,63;114,62,117,63;92,63,95,65;91,63,92,64;98,63,99,64;106,63,108,65;104,63,106,64;48,64,50,65;50,65,52,67;51,64,52,65;96,65,98,67;97,64,98,65;99,64,103,65;104,64,105,65;118,67,122,76;118,64,119,67;47,65,49,68;57,65,66,72;66,65,68,69;68,65,69,67;94,65,96,66;99,65,100,66;102,65,103,66;119,65,120,67;49,66,50,68;98,66,99,68;99,67,102,68;100,66,101,67;120,66,121,67;102,69,106,70;104,67,105,69;108,67,109,68;111,67,115,71;115,67,118,69;49,69,52,88;50,68,52,69;100,68,103,69;105,68,106,69;107,68,108,69;122,70,125,77;122,68,123,70;66,69,67,71;110,69,111,70;117,69,118,71;116,69,117,70;123,69,124,70;48,70,49,72;105,70,107,72;104,70,105,71;109,73,118,74;113,71,116,72;115,70,116,71;107,71,109,73;125,73,129,79;125,71,126,73;57,72,64,76;64,72,65,74;109,72,114,73;115,72,116,73;117,72,118,73;126,72,127,73;48,73,49,75;112,74,114,76;114,75,118,77;115,74,116,75;117,74,118,75;127,79,137,82;129,75,131,79;129,74,130,75;48,76,49,79;57,76,60,78;60,76,62,77;118,76,120,79;121,76,122,77;131,76,132,79;116,77,118,78;120,77,121,79;124,77,125,78;132,77,134,79;57,78,59,79;121,78,122,80;134,78,136,79;57,79,58,80;122,79,123,81;" $sPixelRect &= "126,79,127,81;46,81,49,89;48,80,49,81;124,80,125,82;123,80,124,81;135,82,140,92;137,80,139,82;52,81,55,84;55,81,56,82;125,81,126,83;139,81,140,82;42,83,46,88;45,82,46,83;126,82,127,84;129,82,135,86;127,83,129,84;128,82,129,83;140,83,143,85;140,82,142,83;40,84,42,91;52,84,54,85;128,84,129,85;52,85,53,87;141,85,143,86;131,86,132,88;130,86,131,87;133,86,135,87;140,87,143,94;140,86,141,87;132,87,134,88;38,89,40,90;39,88,40,89;42,88,44,90;44,88,45,89;49,88,51,90;132,88,133,90;134,88,135,89;47,89,49,92;133,89,134,91;143,90,145,93;143,89,144,90;42,90,43,91;49,90,50,91;134,90,135,91;45,93,48,94;46,91,47,93;145,91,146,93;47,92,48,93;136,92,140,93;143,93,144,95;45,94,47,95" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates11() Func _PixelCoordinates12() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;77,44,92,50;54,50,78,55;73,45,77,50;86,50,104,58;92,46,98,50;92,45,94,46;66,47,73,50;70,46,73,47;98,47,102,50;62,48,66,50;102,48,104,50;58,49,62,50;104,50,107,54;104,49,105,50;78,50,83,52;83,50,85,51;48,52,54,57;51,51,54,52;83,52,86,58;85,51,86,52;78,52,81,53;47,53,48,56;78,53,79,54;79,54,83,58;80,53,83,54;105,54,106,55;55,61,70,72;61,55,74,61;55,55,60,60;54,55,55,58;60,55,61,56;74,55,77,58;77,56,79,58;100,58,107,65;104,56,105,58;50,57,54,58;60,57,61,61;105,57,106,58;74,58,76,59;82,58,85,59;92,58,100,61;91,58,92,60;90,58,91,59;54,59,55,60;74,59,75,60;85,59,86,61;84,59,85,60;107,60,110,68;107,59,108,60;55,60,59,61;86,60,87,62;90,60,91,62;52,63,55,67;53,62,55,63;54,61,55,62;70,61,73,65;88,61,89,63;87,61,88,62;92,61,94,62;98,61,100,63;96,61,98,62;110,63,113,69;110,61,111,63;89,62,90,64;111,62,112,63;90,63,91,66;91,64,92,66;96,64,97,66;95,64,96,65;98,64,100,67;113,65,116,71;113,64,115,65;70,65,72,68;92,65,95,67;93,67,99,68;97,65,98,67;104,65,107,67;50,68,52,72;51,66,52,68;95,66,96,67;101,66,102,68;100,66,101,67;116,68,119,74;116,66,118,68;52,67,53,69;53,69,55,71;54,67,55,69;70,68,71,70;96,68,98,70;95,68,96,69;98,69,101,71;100,68,101,69;104,68,107,71;109,68,110,70;101,69,104,70;111,71,113,73;112,69,113,71;49,70,50,72;102,71,105,73;103,70,104,71;107,70,108,71;119,71,121,77;119,70,120,71;50,81,59,90;51,73,65,79;52,71,54,73;100,71,102,72;106,71,107,72;110,71,111,72;113,72,116,73;115,71,116,72;50,72,51,73;54,72,69,73;104,73,111,74;105,72,106,73;109,72,110,73;120,77,126,81;121,73,123,77;121,72,122,73;65,73,68,76;110,76,117,78;113,73,114,76;112,73,113,74;106,74,107,76;105,74,106,75;110,74,112,76;108,74,110,75;114,74,116,75;113,78,119,79;118,74,119,78;117,74,118,75;123,74,124,77;50,75,51,76;107,75,108,77;112,75,113,76;65,76,67,77;108,76,110,77;124,76,125,77;50,77,51,79;65,77,66,78;111,78,112,80;110,78,111,79;123,81,128,85;126,78,127,81;52,79,64,81;64,79,65,80;112,79,114,81;115,79,117,83;118,79,119,82;127,79,128,81;51,80,52,81;113,81,115,82;114,80,115,81;" $sPixelRect &= "59,81,62,85;62,81,64,82;117,81,118,84;119,81,120,82;122,81,123,83;121,81,122,82;62,82,63,83;125,85,132,89;128,82,129,85;118,83,120,85;129,83,130,85;119,85,121,86;120,84,121,85;130,84,131,85;59,85,61,87;123,85,124,86;121,86,122,88;120,86,121,87;122,87,125,88;124,86,125,87;131,89,135,101;132,86,133,89;59,87,60,88;133,87,134,89;123,88,124,90;122,88,123,89;134,88,135,89;46,92,52,98;49,89,50,92;124,89,125,94;129,89,131,93;128,89,129,91;127,89,128,90;52,90,56,94;50,90,52,92;56,90,58,91;125,91,128,92;126,90,127,91;135,91,137,94;135,90,136,91;48,91,49,92;56,91,57,93;125,93,127,97;125,92,126,93;127,92,128,94;137,92,138,94;43,96,46,103;44,95,46,96;45,94,46,95;52,94,55,95;127,95,131,96;128,94,129,95;130,94,131,95;52,95,53,97;135,97,137,101;135,95,136,97;130,96,131,98;40,100,43,103;41,98,43,100;42,97,43,98;127,97,129,99;126,97,127,98;46,98,50,101;50,98,51,99;129,98,130,100;130,99,131,101;39,101,40,104;46,101,48,103;48,101,49,102;133,101,136,102;40,103,41,104;42,103,44,105;44,103,45,104" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates12() Func _PixelCoordinates13() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;75,44,93,52;62,52,77,62;68,46,75,52;72,45,75,46;85,52,103,58;93,46,98,52;93,45,95,46;61,48,68,52;65,47,68,48;98,47,103,52;103,49,105,54;103,48,104,49;55,73,63,78;56,59,61,73;53,50,61,57;56,49,61,50;105,50,107,54;49,51,53,57;47,52,49,56;61,52,62,61;77,52,84,55;81,55,85,57;84,53,85,55;105,54,106,55;77,55,80,58;95,58,106,62;103,55,104,58;80,56,81,58;104,56,105,58;51,57,56,58;57,57,61,58;81,57,83,59;84,57,85,58;55,58,59,59;60,58,61,59;77,58,78,60;86,58,87,59;90,58,95,60;55,59,56,60;82,59,85,60;103,62,110,68;106,59,107,62;85,60,87,62;84,60,85,61;92,60,95,61;107,60,108,62;87,62,91,64;89,61,90,62;108,61,109,62;54,62,56,70;65,62,73,74;61,63,65,73;63,62,65,63;73,62,75,67;75,62,76,64;86,62,87,63;92,62,93,63;98,62,102,65;53,63,54,67;52,63,53,64;100,65,103,66;102,63,103,65;110,65,114,71;110,63,112,65;90,64,91,67;89,64,90,65;95,64,98,65;112,64,113,65;75,65,76,66;94,65,96,66;91,66,92,68;92,67,94,68;93,66,94,67;94,69,100,70;96,66,98,68;102,66,103,67;114,67,117,73;114,66,115,67;73,67,74,72;95,67,96,68;98,67,100,69;93,68,95,69;97,68,98,69;100,68,102,69;107,68,110,70;105,68,107,69;117,71,119,77;117,68,118,71;53,70,55,76;53,69,54,70;102,69,105,70;96,70,98,72;95,70,96,71;100,70,102,72;109,70,110,71;55,71,56,72;98,71,100,73;104,71,107,73;102,71,104,72;110,71,112,73;113,71,114,72;100,72,101,74;107,72,109,73;63,73,64,74;101,73,104,75;106,73,107,74;108,76,113,80;109,74,114,75;110,73,111,74;116,73,117,79;115,73,116,75;118,77,122,81;119,74,121,77;119,73,120,74;52,74,53,75;64,74,70,79;70,74,72,76;103,75,105,76;104,74,105,75;54,79,66,87;63,75,64,79;107,75,111,76;112,75,113,76;70,76,71,78;105,76,106,78;104,76,105,77;113,76,114,78;121,76,122,77;53,78,57,79;54,77,55,78;106,77,108,79;114,77,115,78;58,78,63,79;117,78,118,79;120,84,125,86;119,81,124,83;122,78,123,81;66,79,68,82;68,79,69,80;107,79,108,80;113,80,115,84;114,79,115,80;123,79,124,81;109,80,111,82;112,80,113,82;116,80,118,81;66,82,67,85;111,82,112,84;110,82,111,83;121,83,125,84;124,82,125,83;112,83,113,86;116,83,117,84;" $sPixelRect &= "119,83,120,85;53,85,54,86;114,85,115,87;113,85,114,86;125,89,128,97;122,86,126,89;125,85,126,86;115,86,116,89;119,89,125,90;120,86,121,89;53,90,62,98;54,87,65,90;53,87,54,89;118,87,119,88;121,87,122,88;126,87,127,89;117,88,118,91;116,88,117,89;62,90,64,93;118,90,119,99;122,90,124,93;120,90,122,91;124,90,125,91;120,91,121,92;119,92,120,93;124,92,125,101;128,92,129,97;62,93,63,95;120,93,122,94;123,93,124,94;48,102,55,108;50,97,53,102;51,95,53,97;52,94,53,95;119,94,120,95;129,96,131,101;129,94,130,96;121,95,122,99;120,95,121,96;122,95,123,96;119,96,120,97;123,97,124,98;127,98,129,102;127,97,128,98;56,98,60,104;53,98,56,101;60,98,61,101;119,100,121,104;119,98,120,100;125,98,127,99;123,99,124,100;125,99,126,101;131,99,132,101;49,100,50,102;126,100,127,101;53,101,55,102;123,101,124,102;60,102,61,103;124,102,126,103;128,102,129,107;55,104,57,108;55,103,56,104;121,103,122,105;122,104,125,105;123,103,124,104;127,103,128,104;45,108,51,113;46,106,48,108;47,104,48,106;57,104,58,106;124,106,128,107;126,104,127,106;129,104,130,107;124,105,125,106;127,105,128,106;45,107,46,108;125,107,127,108;52,108,55,114;55,108,56,111;44,109,45,113;51,109,52,112;43,112,44,113;46,113,49,115;49,113,50,114;52,114,54,115;47,115,48,116;52,115,53,116" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates13() Func _PixelCoordinates14() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;75,44,92,52;64,52,77,75;69,46,75,52;72,45,75,46;88,52,103,59;92,46,98,52;92,45,94,46;65,47,69,52;98,47,102,52;56,49,64,59;61,48,65,49;102,49,105,52;102,48,104,49;64,49,65,52;49,51,56,57;53,50,56,51;103,52,107,54;105,50,106,52;106,51,107,52;47,52,49,56;77,52,83,58;83,53,88,58;84,52,88,53;105,54,106,55;94,59,106,63;103,56,104,59;51,57,52,58;55,57,56,59;54,57,55,58;104,57,105,59;77,58,82,59;84,58,85,59;105,58,106,59;56,59,63,64;77,59,79,62;82,59,83,61;81,59,82,60;85,59,86,60;90,59,94,61;59,81,70,94;59,65,64,80;63,60,64,65;84,60,85,62;83,60,84,61;88,60,90,61;104,63,111,69;106,60,107,63;85,61,86,63;92,61,94,62;107,61,108,63;53,62,56,67;77,62,78,65;86,62,87,64;108,62,110,63;52,63,53,64;87,63,90,65;92,63,93,64;100,63,103,67;97,63,100,65;56,64,59,72;61,64,63,65;103,64,104,69;111,66,115,72;111,64,112,66;89,65,90,67;88,65,89,66;112,65,113,66;90,66,92,68;95,66,98,70;98,66,99,67;55,67,56,69;92,67,94,70;94,67,95,69;102,67,103,68;115,69,118,75;115,67,116,69;91,68,92,69;98,68,101,72;116,68,117,69;77,69,78,71;100,72,104,76;101,69,102,72;104,72,111,74;107,69,111,71;106,69,107,70;55,70,56,75;94,70,96,72;93,70,94,71;102,70,103,72;104,70,105,71;118,73,120,79;118,70,119,73;96,71,98,73;103,71,104,72;108,71,111,72;56,74,58,78;56,72,57,74;58,72,59,74;98,72,99,74;114,72,115,75;99,73,100,75;104,76,107,79;105,74,107,76;104,74,105,75;108,74,109,76;107,74,108,75;109,75,114,78;110,74,114,75;70,75,73,84;64,75,70,81;73,75,75,79;75,75,76,77;117,75,118,77;119,79,122,81;120,75,121,79;55,76,56,78;58,76,59,77;101,76,104,77;114,76,116,77;107,77,109,80;58,78,59,84;109,78,113,80;114,78,116,79;121,78,122,79;57,79,58,81;73,79,74,82;106,79,107,81;105,79,106,80;113,81,116,86;114,79,115,81;113,79,114,80;59,80,60,81;61,80,64,81;107,80,108,82;109,80,111,83;115,80,117,81;121,82,124,85;120,81,123,82;122,80,123,81;108,81,109,82;111,81,113,82;116,82,119,83;120,82,121,83;109,83,110,85;116,84,118,88;116,83,117,84;70,84,72,87;110,84,111,86;118,84,119,85;57,97,60,120;58,85,59,97;111,85,113,88;122,85,125,89;" $sPixelRect &= "114,87,116,88;115,86,116,87;118,86,119,87;121,86,122,87;70,87,71,90;118,88,122,89;120,87,121,88;112,88,115,89;114,89,115,92;116,89,119,90;118,90,122,91;121,89,122,90;124,89,125,94;115,90,116,93;118,91,119,94;117,91,118,92;116,93,118,109;116,92,117,93;119,92,121,96;121,92,122,93;125,92,126,98;61,99,67,106;62,94,68,99;60,94,61,102;59,94,60,97;61,94,62,98;68,94,69,97;121,94,122,95;118,95,119,96;126,95,127,101;120,96,123,97;118,97,121,98;121,98,123,100;56,99,57,102;67,99,68,102;118,100,120,110;118,99,119,100;120,99,121,100;122,100,124,101;126,103,128,105;127,100,128,103;121,101,122,102;123,106,125,112;124,102,126,104;124,101,125,102;122,102,124,103;60,106,64,116;60,103,61,106;121,103,122,106;53,110,57,115;55,106,57,110;56,104,57,106;122,104,125,105;120,105,121,106;124,105,125,106;127,105,128,106;64,106,66,108;122,106,123,107;121,107,122,108;54,108,55,110;64,108,65,112;120,108,121,113;121,110,123,113;122,109,123,110;52,115,54,118;52,113,53,115;54,115,55,117;56,115,57,122;60,116,63,119;52,118,53,119;60,119,62,121;57,120,58,121" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates14() Func _PixelCoordinates15() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;76,44,92,51;64,51,79,89;70,46,76,51;73,45,76,46;87,51,103,59;92,46,98,51;92,45,94,46;65,47,70,51;98,47,102,51;56,50,64,60;61,48,65,50;103,49,105,54;102,48,104,49;57,49,61,50;102,49,103,51;49,51,56,57;53,50,56,51;64,50,65,51;105,51,107,54;105,50,106,51;79,51,83,55;83,51,84,52;84,52,87,58;85,51,87,52;47,52,49,56;81,55,84,57;83,53,84,55;104,54,106,55;79,67,81,74;79,55,80,67;80,56,81,57;94,59,106,63;103,56,104,59;55,57,56,59;82,57,84,58;104,57,105,59;80,58,81,60;105,58,106,59;82,59,84,61;81,59,82,60;91,59,94,62;89,60,91,61;90,59,91,60;56,60,62,64;62,61,64,64;63,60,64,61;104,63,112,69;106,60,108,63;53,62,56,67;54,61,56,62;84,61,86,63;83,61,84,62;86,61,87,62;108,61,109,63;52,62,53,65;85,63,90,64;88,62,89,63;109,62,111,63;98,63,103,65;94,65,97,68;95,63,97,65;94,63,95,64;97,63,98,64;57,65,64,73;56,64,59,65;60,64,61,65;87,64,88,66;86,64,87,65;90,64,94,66;102,65,104,69;103,64,104,65;112,65,115,71;112,64,113,65;56,65,57,69;88,65,90,67;100,65,102,67;89,67,91,68;90,66,91,67;97,66,100,67;115,67,117,71;115,66,116,67;92,67,94,68;94,71,105,72;95,68,100,70;97,67,98,68;91,68,92,70;90,68,91,69;116,71,120,72;117,68,118,71;92,69,95,71;97,70,104,71;100,69,101,70;102,69,103,70;105,69,112,71;118,69,119,71;56,70,57,71;119,70,120,71;109,76,115,80;109,71,112,76;112,71,114,72;95,72,98,73;100,72,105,76;114,72,116,73;118,72,121,76;117,72,118,74;58,74,60,78;57,73,59,74;61,77,64,82;62,73,64,76;60,73,62,74;97,73,98,75;98,74,100,75;99,73,100,74;105,73,109,76;112,73,114,76;60,74,61,76;79,74,80,82;114,74,116,75;120,76,122,79;121,75,122,76;61,76,63,77;101,76,104,77;106,76,107,80;103,77,106,78;105,76,106,77;107,77,109,78;108,76,109,77;115,76,116,77;119,76,120,78;60,77,61,78;115,78,118,79;107,79,109,82;115,79,116,86;122,80,124,83;121,79,123,80;111,80,113,82;113,81,115,82;114,80,115,81;116,80,118,81;121,80,122,81;110,82,112,86;109,81,111,82;62,82,64,85;108,82,110,83;116,82,118,83;113,83,115,84;124,87,126,89;123,85,125,86;124,83,125,85;123,83,124,84;116,84,119,85;113,85,115,86;112,87,117,88;" $sPixelRect &= "116,85,117,87;63,86,64,90;111,86,114,87;117,86,119,87;124,86,125,87;122,87,123,95;112,88,114,90;116,88,118,89;65,89,77,96;64,89,65,93;77,89,78,93;115,89,116,93;114,89,115,90;124,89,125,93;120,91,121,92;125,91,126,100;116,92,117,94;123,92,124,93;116,99,121,112;117,93,118,99;119,93,120,94;124,94,125,95;126,95,127,103;65,107,69,120;65,96,70,104;70,96,71,101;70,106,76,121;72,96,77,106;118,96,119,99;122,96,123,97;119,97,120,99;116,98,117,99;121,98,122,99;123,98,125,99;122,99,123,100;71,100,72,101;121,100,122,116;123,100,124,101;127,101,128,108;66,104,72,105;71,102,72,104;70,102,71,103;123,102,124,103;66,105,70,107;71,105,72,106;123,105,124,106;125,105,127,107;76,106,77,111;123,109,125,114;123,107,125,108;124,106,125,107;69,107,70,108;126,107,127,108;124,108,125,109;69,111,70,125;122,111,123,115;64,112,65,122;119,112,121,116;118,112,119,113;123,114,124,115;120,116,121,117;65,120,66,122;68,120,69,123;67,120,68,121;70,121,75,124;70,124,72,126;73,124,74,125" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates15() Func _PixelCoordinates16() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;77,44,91,51;66,65,85,83;65,51,81,65;70,46,77,51;73,45,77,46;85,51,104,59;91,46,96,51;91,45,93,46;65,47,70,51;96,47,100,51;59,49,65,63;62,48,65,49;100,48,103,51;53,50,59,56;57,49,59,50;103,49,104,51;104,51,107,54;104,50,106,51;49,51,53,57;81,51,83,52;47,52,49,56;81,52,82,53;82,53,85,58;84,52,85,53;46,54,47,55;81,54,82,58;104,54,106,55;55,56,58,59;53,56,55,57;99,59,108,66;104,56,105,59;56,59,59,64;58,57,59,59;105,57,106,59;106,58,107,59;81,60,83,65;81,59,82,60;93,63,97,68;90,59,99,62;89,59,90,60;53,61,56,67;55,60,56,61;87,61,90,64;87,60,89,61;108,62,112,70;108,60,110,62;83,61,86,63;86,61,87,62;110,61,111,62;52,62,53,64;90,62,93,66;94,62,99,63;58,65,66,72;60,63,61,65;59,63,60,64;61,63,62,64;83,63,84,65;86,63,87,65;85,63,86,64;98,63,99,64;110,70,115,76;112,64,116,70;112,63,114,64;56,64,58,68;62,64,65,65;87,64,88,66;88,65,90,67;89,64,90,65;97,64,98,65;52,65,53,66;116,66,119,69;116,65,118,66;90,66,91,69;97,66,99,67;103,66,108,69;101,66,103,67;91,67,93,69;96,68,98,73;97,67,98,68;100,67,102,68;119,68,121,71;119,67,120,68;57,68,58,69;94,68,96,70;98,68,100,69;93,69,94,71;92,69,93,70;100,69,101,70;105,69,106,70;94,70,95,72;98,70,100,74;103,70,104,71;106,70,109,71;115,70,116,71;121,70,122,76;95,71,96,72;104,71,106,72;120,71,121,73;59,72,61,74;62,72,66,75;100,72,102,75;102,72,103,74;103,73,110,76;107,72,108,73;109,72,110,73;115,72,117,73;61,73,62,76;112,76,116,82;115,73,116,76;122,73,123,78;99,74,100,75;116,74,118,75;62,75,64,76;64,76,66,79;65,75,66,76;82,97,87,123;72,83,86,94;85,75,86,83;102,75,103,77;101,75,102,76;116,75,117,76;123,75,124,80;103,76,106,77;107,77,109,79;108,76,109,77;111,76,112,80;105,77,107,78;109,77,111,78;116,78,119,82;116,77,118,78;119,78,120,79;65,79,66,80;109,79,111,81;108,79,109,80;124,79,125,82;119,80,121,81;110,81,112,83;113,85,122,86;118,82,121,84;119,81,120,82;125,81,126,86;112,82,114,83;115,83,118,84;116,82,117,83;121,82,122,83;68,83,72,88;112,83,113,85;125,87,127,91;126,83,127,87;113,84,114,85;115,84,116,85;119,84,123,85;114,86,115,89;" $sPixelRect &= "113,86,114,87;120,86,122,94;119,86,120,90;122,86,123,87;117,87,119,88;70,88,72,91;115,88,117,90;122,88,123,89;117,89,119,90;117,90,118,93;116,90,117,91;122,90,124,91;118,91,120,92;126,95,128,96;126,93,128,94;127,91,128,93;126,91,127,92;118,92,119,94;122,92,124,93;118,98,123,112;119,94,121,98;119,93,120,94;122,93,123,94;75,107,80,117;74,94,80,103;73,94,74,102;72,94,73,95;81,94,86,97;123,94,125,95;127,94,128,95;80,95,81,97;121,95,123,96;121,96,122,98;123,96,125,97;127,96,128,100;122,97,123,98;81,98,82,100;128,102,130,107;128,98,129,102;123,99,124,100;123,105,126,115;123,101,125,105;127,101,128,102;87,102,88,110;76,103,80,107;81,103,82,106;127,104,128,105;126,105,127,108;127,106,128,107;128,107,129,108;80,109,82,122;80,108,81,109;87,111,88,122;120,112,123,116;119,112,120,113;124,115,126,116;121,116,123,117;76,117,80,120;79,120,80,121;83,123,86,125;82,123,83,124;84,125,85,126" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates16() Func _PixelCoordinates17() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;81,44,88,50;69,53,87,76;71,46,80,53;74,45,81,46;87,50,105,58;88,45,92,50;80,46,81,51;92,46,95,50;63,48,69,61;64,47,71,48;95,47,98,50;55,50,63,60;61,48,63,50;69,48,71,53;98,48,102,50;58,49,61,50;102,49,104,50;49,51,55,57;53,50,55,51;81,50,83,51;84,50,85,51;86,50,87,53;105,52,107,54;105,51,106,52;47,52,49,56;84,52,86,53;46,53,47,55;105,54,106,55;101,58,109,67;105,56,107,58;107,57,109,58;54,58,55,60;93,58,101,62;89,58,93,61;88,58,89,59;109,58,110,61;110,59,112,61;52,61,60,66;55,60,60,61;60,62,69,68;61,60,62,62;109,62,118,66;112,60,114,62;51,61,52,63;64,61,65,62;66,61,69,62;87,61,90,62;114,61,117,62;79,76,92,91;87,64,89,76;87,62,88,64;91,62,92,63;94,62,95,63;96,62,101,63;118,62,119,65;89,63,91,64;99,64,101,65;100,63,101,64;120,63,121,67;119,63,120,65;94,64,97,68;92,64,94,66;90,65,92,67;89,65,90,66;100,65,101,66;121,65,122,70;53,66,56,67;59,66,60,68;58,66,59,67;97,66,99,67;109,66,114,68;114,66,115,67;92,67,94,69;91,67,92,68;96,68,100,71;97,67,98,68;99,67,103,68;106,67,107,68;108,67,109,68;61,68,63,70;60,68,61,69;67,68,69,70;65,68,67,69;89,70,91,76;89,68,90,70;103,68,104,69;105,68,106,69;109,68,110,69;122,68,123,73;63,69,65,71;93,69,96,70;97,71,105,72;100,69,101,71;101,70,104,71;102,69,103,70;106,69,107,70;110,70,115,73;113,69,115,70;115,70,117,71;116,69,117,70;62,70,63,71;66,70,68,71;95,70,96,71;117,71,119,72;118,70,119,71;123,70,124,74;64,71,67,72;67,72,69,73;68,71,69,72;107,71,110,74;98,72,101,73;103,72,107,75;101,73,103,74;102,72,103,73;115,72,116,73;117,72,118,73;118,73,121,74;119,72,120,73;124,72,125,76;67,73,68,75;111,73,114,76;110,73,111,74;116,73,117,74;68,74,69,75;114,74,116,75;117,74,120,75;91,75,92,76;104,75,111,76;113,76,115,78;114,75,115,76;116,75,118,76;120,75,121,78;125,75,126,78;73,76,79,83;70,76,73,78;108,76,109,77;110,76,111,78;116,76,117,78;115,76,116,77;121,76,122,77;112,77,113,80;111,77,112,78;117,77,118,78;118,78,120,80;119,77,120,78;126,77,127,80;115,78,116,85;113,79,115,80;114,78,115,79;127,79,128,84;113,80,114,81;116,81,119,86;" $sPixelRect &= "117,80,119,81;123,80,124,81;120,81,121,82;128,82,129,90;75,83,79,86;74,83,75,85;122,83,124,85;125,84,126,87;124,84,125,85;91,94,95,119;92,85,93,94;121,93,126,109;119,86,124,91;119,85,123,86;77,86,79,88;76,86,77,87;118,86,119,88;117,86,118,87;124,86,125,87;129,87,130,94;78,88,79,90;124,88,126,89;93,89,94,94;121,91,125,93;124,90,125,91;130,90,131,96;83,91,88,112;80,91,83,97;90,91,91,101;89,91,90,95;91,91,92,94;120,91,121,92;126,92,127,93;126,95,128,112;126,94,127,95;131,95,132,101;81,97,83,98;132,98,133,104;130,99,131,100;88,104,91,116;88,101,90,104;88,100,89,101;95,101,96,105;128,103,132,105;130,101,131,103;90,102,91,103;131,102,132,103;133,102,134,103;128,105,129,114;129,108,130,109;122,109,125,114;125,109,126,111;95,110,96,118;85,112,88,116;84,112,85,115;127,112,128,114;96,114,97,116;123,114,125,115;88,116,90,117;92,119,95,120" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates17() Func _PixelCoordinates18() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;70,46,92,69;75,44,79,46;73,45,75,46;79,45,91,46;92,48,100,59;92,46,94,48;62,49,70,63;66,47,70,49;62,47,65,49;65,47,66,48;94,47,97,48;54,50,62,58;60,48,62,50;59,49,60,50;100,53,107,64;100,49,104,53;50,51,54,57;53,50,54,51;104,50,105,53;105,51,106,53;47,52,50,56;46,52,47,55;107,58,113,64;107,55,111,57;107,54,109,55;49,56,50,57;112,56,114,58;111,56,112,57;107,57,109,58;110,57,111,58;113,58,118,62;114,57,117,58;55,58,61,65;54,58,55,59;118,58,120,61;61,59,62,66;94,59,98,61;99,59,100,61;98,59,99,60;120,59,121,62;121,60,122,64;52,61,55,67;95,61,97,64;93,61,95,62;51,62,52,64;50,62,51,63;82,69,95,84;92,64,95,69;92,62,93,64;97,62,100,63;114,62,115,64;113,62,114,63;115,62,116,63;122,63,124,66;122,62,123,63;62,63,67,65;69,63,70,68;67,64,69,65;68,63,69,64;94,63,95,64;95,65,98,68;96,64,100,65;97,63,98,64;104,64,105,71;101,64,104,65;105,64,108,65;109,64,110,65;115,64,117,65;55,65,57,66;58,65,61,66;62,65,63,66;66,65,68,66;99,65,101,66;102,66,104,67;103,65,104,66;105,65,106,66;105,67,115,72;109,66,122,67;110,65,111,66;113,65,116,66;118,65,121,66;55,66,56,67;98,67,101,70;98,66,100,67;124,66,125,70;123,66,124,68;101,69,104,71;102,67,103,69;115,72,123,74;115,68,121,71;115,67,117,68;119,67,121,68;96,68,98,69;121,68,123,69;125,69,127,72;125,68,126,69;75,69,82,75;71,69,75,71;121,70,123,72;116,71,121,72;106,72,107,73;108,72,113,73;123,72,124,73;127,73,129,76;126,72,128,73;74,73,75,74;113,73,115,75;112,73,113,74;116,75,122,79;116,74,119,75;122,74,123,76;120,74,122,75;123,74,125,75;77,75,82,79;76,75,77,76;115,75,116,77;114,75,115,76;128,76,130,78;129,75,130,76;94,89,99,98;95,80,97,89;95,76,96,80;124,76,125,77;121,81,126,84;122,78,125,80;122,77,124,78;125,78,126,79;129,78,130,80;80,79,82,81;79,79,80,80;119,79,121,83;118,79,119,81;117,79,118,80;121,79,122,81;130,79,131,84;122,80,124,81;125,80,128,81;81,81,82,83;127,81,128,82;124,88,131,103;124,84,127,88;126,82,127,84;131,83,133,86;131,82,132,83;86,90,93,103;85,84,92,90;83,84,85,88;93,84,95,89;92,84,93,86;122,84,124,86;" $sPixelRect &= "97,85,98,89;133,85,134,90;123,86,124,87;127,86,129,88;129,87,130,88;131,87,132,94;84,88,85,89;134,88,135,92;93,89,94,93;85,90,86,91;132,92,134,96;132,90,133,92;135,90,136,94;134,95,138,97;136,92,137,95;99,93,100,97;93,98,98,110;93,94,94,98;134,94,135,95;131,95,132,96;132,97,134,100;133,96,134,97;136,97,138,99;135,97,136,98;134,98,135,99;131,99,132,100;125,104,134,106;132,100,133,104;88,103,93,108;87,103,88,107;98,103,99,111;125,103,131,104;133,103,134,104;126,106,129,109;125,106,126,107;129,106,130,107;131,106,134,108;90,108,93,110;132,108,134,109;127,109,129,111;95,110,97,113;94,110,95,112;97,110,98,111" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates18() Func _PixelCoordinates19() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;55,52,77,61;70,42,88,51;73,40,78,42;71,41,73,42;78,41,83,42;66,45,70,52;68,43,70,45;83,62,97,77;78,51,95,62;88,45,91,51;88,43,89,45;89,44,90,45;64,46,66,51;91,47,103,51;91,46,92,47;61,47,64,50;58,48,61,49;60,47,61,48;100,51,109,59;103,48,104,51;54,49,59,52;59,49,60,50;104,49,107,51;60,50,63,52;109,50,111,52;107,50,109,51;49,52,55,57;51,51,54,52;59,51,60,52;65,51,66,52;70,51,76,52;77,51,78,52;95,51,100,57;111,51,112,53;46,52,49,56;109,52,110,53;112,52,117,53;75,61,78,67;77,53,78,61;109,54,116,58;113,53,114,54;116,53,119,56;115,53,116,54;119,53,120,55;120,54,121,56;121,55,122,58;116,56,118,57;122,56,123,59;54,57,55,59;123,57,124,61;109,58,113,60;114,58,115,60;113,58,114,59;116,58,118,59;96,59,99,60;100,61,122,62;106,59,109,61;103,59,106,60;115,59,117,61;98,60,101,61;102,60,104,61;117,60,122,61;124,61,126,65;124,60,125,61;54,61,60,65;61,61,66,64;66,61,67,62;72,61,75,63;95,61,96,62;97,62,100,65;97,61,98,62;52,62,54,67;50,62,52,64;60,62,61,67;78,62,83,71;100,63,105,66;103,62,105,63;105,65,112,67;107,62,108,65;106,62,107,63;113,62,121,67;110,62,113,65;122,62,123,63;126,62,127,66;73,63,74,64;108,63,110,65;61,64,65,65;123,64,124,65;127,64,128,68;51,65,52,66;54,65,56,67;56,65,57,66;59,65,60,67;58,65,59,66;61,65,63,66;99,65,100,66;61,66,62,67;103,66,105,67;110,67,116,68;112,66,113,67;120,70,124,75;122,66,124,70;124,66,125,67;128,66,129,70;77,67,78,70;76,67,77,68;107,67,109,68;117,67,122,68;115,68,116,70;114,68,115,69;116,69,120,71;118,68,119,69;121,68,122,69;129,69,131,72;129,68,130,69;88,84,101,99;97,73,100,84;97,69,98,73;120,69,121,70;125,70,126,71;81,71,83,74;80,71,81,72;119,71,120,74;118,71,119,72;130,73,133,74;131,71,132,73;98,72,99,73;132,72,133,73;122,75,129,77;124,73,125,75;125,74,128,75;131,74,133,75;121,75,122,76;133,75,134,77;100,79,102,84;100,76,101,79;134,76,135,79;86,77,88,91;83,77,86,79;88,77,92,84;94,77,97,81;127,80,132,96;125,77,130,80;124,77,125,79;132,80,135,88;131,78,133,80;132,77,133,78;135,77,136,80;92,78,93,79;136,78,137,82;84,79,86,80;" $sPixelRect &= "133,79,134,80;92,80,93,84;102,80,103,86;126,80,127,86;137,80,138,82;95,81,97,84;135,81,136,84;138,81,139,84;93,82,95,83;137,85,142,86;139,82,140,85;93,83,94,84;103,83,104,85;136,83,137,85;140,83,141,85;101,84,102,86;137,84,138,85;135,86,136,90;139,86,140,88;138,86,139,87;141,86,143,90;140,87,141,89;132,90,135,91;133,88,134,90;132,88,133,89;136,88,137,92;143,88,144,90;101,93,103,100;101,90,102,93;87,91,88,95;132,91,134,93;135,95,139,98;134,93,138,94;137,91,138,93;134,92,136,93;129,96,133,101;132,93,133,96;134,94,136,95;137,94,139,95;134,95,135,96;128,96,129,100;103,97,104,99;136,98,140,100;93,99,94,101;92,99,93,100;94,99,95,100;97,99,100,103;96,99,97,101;100,100,101,103;102,100,103,101;131,101,134,103;133,100,134,101;137,100,139,101;99,103,100,104;131,103,133,104" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates19() Func _PixelCoordinates20() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;69,38,90,58;75,35,78,38;73,36,75,38;78,36,88,38;70,37,73,38;88,37,89,38;65,41,69,48;67,40,69,41;68,39,69,40;90,45,101,60;90,39,91,45;57,49,69,61;63,42,65,49;60,43,63,45;91,43,92,45;96,43,103,45;55,45,60,47;57,44,60,45;93,44,96,45;101,45,109,55;103,44,106,45;61,45,62,46;54,46,55,48;109,49,115,54;111,46,113,49;109,46,111,47;55,47,59,49;60,47,63,49;109,47,110,48;115,47,117,53;114,47,115,49;113,47,114,48;117,48,120,50;117,47,118,48;59,48,60,49;66,48,67,49;120,49,121,52;117,50,118,51;121,50,122,53;48,52,57,57;52,51,57,52;122,51,123,55;46,52,48,56;112,57,120,61;113,54,118,57;116,53,118,54;123,53,124,56;109,54,111,55;112,54,113,55;118,55,122,56;119,54,120,55;121,54,122,55;124,54,125,58;101,55,102,57;105,55,106,61;103,55,105,58;106,55,107,58;102,56,103,57;107,56,113,57;120,56,122,57;125,56,126,59;54,61,65,65;54,57,57,60;107,57,109,58;122,57,124,58;126,57,127,59;69,58,70,61;79,58,87,67;75,58,79,61;73,58,75,60;87,58,90,61;101,58,102,61;110,58,112,62;127,58,128,61;71,59,73,61;102,59,103,61;103,60,105,61;104,59,105,60;106,60,110,61;109,59,110,60;120,59,122,60;128,59,129,62;55,60,57,61;70,60,71,61;73,60,74,61;92,60,98,84;91,60,92,71;90,60,91,65;100,60,101,61;119,61,121,66;120,60,121,61;122,63,125,69;123,61,125,63;124,60,125,61;129,60,130,63;50,61,51,64;65,61,68,62;78,61,79,62;87,61,88,63;89,61,90,62;107,61,109,62;112,61,116,62;117,61,119,64;121,61,123,62;51,62,54,67;65,62,66,63;98,64,101,70;98,62,99,64;116,62,117,64;115,62,116,63;127,62,128,63;130,62,131,65;99,63,100,64;121,63,122,67;83,70,91,82;83,67,88,70;87,64,88,67;131,64,132,67;54,65,56,67;56,65,57,66;58,65,62,67;62,65,63,66;101,67,103,71;101,65,102,67;132,65,133,67;120,66,121,67;128,72,135,86;133,66,134,72;82,67,83,68;88,68,91,69;90,67,91,68;125,68,130,71;125,67,127,68;128,67,129,68;134,67,135,69;135,68,136,70;88,69,90,70;124,69,125,70;136,69,138,71;100,70,101,71;126,71,131,72;130,70,131,71;132,70,133,72;134,70,135,72;138,70,139,75;98,75,101,85;98,72,100,75;98,71,99,72;135,71,136,78;137,71,138,72;" $sPixelRect &= "91,72,92,89;127,72,128,78;136,72,137,73;139,74,144,75;140,72,141,74;139,72,140,73;137,73,138,75;141,73,142,74;136,75,137,78;140,75,141,77;139,75,140,76;142,75,145,77;137,77,138,81;142,77,143,79;141,77,142,78;144,77,147,80;101,80,103,86;101,78,102,80;143,78,144,79;147,78,148,80;137,83,141,85;138,79,139,83;135,80,136,82;146,80,147,81;136,81,137,84;139,81,140,83;84,82,91,85;131,86,137,94;135,83,136,86;92,84,93,89;95,84,98,88;94,84,95,87;103,84,104,86;140,88,143,91;140,85,142,87;141,84,142,85;85,85,88,87;89,85,91,88;98,86,100,90;98,85,99,86;100,85,101,86;138,85,139,87;137,85,138,86;102,86,103,87;130,86,131,93;129,86,130,89;139,86,140,89;85,87,87,88;141,87,143,88;90,88,91,89;97,88,98,90;96,88,97,89;141,91,145,92;143,89,144,91;136,94,138,96;137,92,138,94;142,92,144,93;133,94,136,95" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates20() Func _PixelCoordinates21() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;84,43,95,66;71,33,89,43;83,31,87,33;73,32,83,33;87,32,88,33;68,43,84,48;67,36,71,43;69,34,71,36;89,34,90,39;68,35,69,36;64,38,67,46;65,37,67,38;63,38,64,44;95,39,103,47;97,38,102,39;60,39,63,40;57,40,61,41;62,40,63,41;92,41,95,43;94,40,95,41;103,44,116,49;103,40,107,44;55,41,59,43;107,41,111,43;60,42,63,44;91,42,92,43;111,42,113,44;55,43,57,44;58,44,61,48;59,43,60,44;67,43,68,47;107,43,108,44;109,43,111,44;116,43,119,46;113,43,116,44;55,44,56,47;57,44,58,45;119,45,121,48;119,44,120,45;56,45,57,47;55,51,69,62;60,48,64,51;61,45,62,48;57,46,58,47;62,46,63,48;63,47,67,48;66,46,67,47;116,46,117,47;120,48,123,51;121,46,122,48;95,47,96,48;95,50,103,56;99,47,103,49;98,47,99,48;59,48,60,49;70,48,82,58;69,48,70,49;82,48,84,51;95,49,99,50;100,49,104,50;103,52,109,55;105,49,110,51;112,49,116,53;111,49,112,50;117,51,121,53;118,50,120,51;119,49,120,50;123,49,124,52;59,50,60,51;64,50,70,51;107,51,112,52;110,50,111,51;48,52,55,57;53,51,55,52;69,51,70,59;82,51,83,52;103,51,106,52;116,51,117,52;124,51,125,54;109,52,110,53;111,52,112,53;122,52,123,53;125,52,126,54;46,53,48,56;109,54,114,55;110,53,111,54;112,53,113,54;117,53,120,55;115,53,117,54;123,53,124,55;126,53,127,55;127,54,128,57;103,55,108,56;114,55,117,57;113,55,114,56;118,55,119,59;122,55,123,57;128,55,129,58;47,56,48,57;77,58,84,67;82,56,83,58;95,56,100,58;100,56,101,57;103,56,105,57;117,56,118,57;129,56,130,59;83,57,84,58;116,57,117,58;50,62,64,66;53,59,55,61;54,58,55,59;73,58,77,60;119,58,120,60;130,58,131,60;69,60,75,61;72,59,73,60;120,59,122,61;131,59,133,61;95,62,97,69;95,60,96,62;122,60,123,62;127,63,134,74;127,60,129,63;133,60,134,63;54,61,55,62;123,61,124,63;125,62,127,65;126,61,127,62;129,61,130,63;131,61,132,63;134,63,139,65;135,61,136,63;134,61,135,62;64,62,66,63;124,62,125,64;132,62,133,63;136,62,138,63;64,63,65,65;76,64,77,70;97,64,98,70;139,66,142,68;140,64,141,66;139,64,140,65;126,65,127,66;134,66,136,68;134,65,135,66;137,65,138,67;136,65,137,66;141,65,142,66;50,66,56,67;58,66,63,67;88,66,92,70;" $sPixelRect &= "83,67,87,74;84,66,88,67;94,66,95,68;93,66,94,67;138,66,139,67;143,66,144,68;142,66,143,67;52,67,53,68;77,67,80,73;80,67,81,70;82,67,83,73;87,67,88,68;90,70,94,72;92,67,93,70;98,67,99,69;134,69,139,70;136,67,137,69;144,68,147,71;144,67,146,68;134,68,135,69;142,68,143,70;141,68,142,69;93,69,94,70;143,69,144,70;147,69,149,72;89,70,90,71;137,70,139,72;136,70,137,71;138,72,140,73;139,71,140,72;92,72,93,74;91,72,92,73;93,72,94,73;128,74,137,80;134,72,136,74;136,73,137,74;140,73,141,76;139,73,140,74;84,74,87,75;137,74,139,76;141,74,142,77;138,76,140,77;139,75,140,76;141,78,143,80;142,76,143,78;136,80,139,84;137,77,138,80;140,77,141,79;139,77,140,78;143,77,144,79;144,79,146,83;144,78,145,79;138,79,139,80;130,80,134,85;129,80,130,82;135,80,136,81;142,80,143,82;143,81,144,83;146,81,147,84;133,85,135,88;134,82,135,85;138,84,140,87;139,82,140,84;145,83,146,84;137,84,138,86;131,85,133,86;139,87,142,88;140,85,141,87;135,86,136,87;141,86,142,87;140,88,141,89" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates21() Func _PixelCoordinates22() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;76,29,86,34;82,28,85,29;86,29,87,33;68,35,82,59;72,30,76,35;70,31,72,35;87,31,88,32;67,32,70,34;64,33,67,34;62,34,65,35;66,34,67,35;76,34,84,35;96,45,98,58;94,36,104,43;96,34,99,36;61,35,63,36;63,37,68,47;64,36,68,37;67,35,68,36;82,35,85,38;95,35,96,36;99,35,102,36;59,36,61,42;61,36,62,37;85,36,88,39;57,37,59,40;62,37,63,40;82,43,94,59;88,40,94,43;88,37,90,39;92,37,94,40;104,41,116,45;104,37,107,40;54,39,57,41;56,38,57,39;83,38,85,39;89,39,92,40;91,38,92,39;107,38,111,41;82,39,83,43;111,39,113,41;61,40,62,43;104,40,106,41;113,40,117,41;55,41,56,45;57,41,59,42;83,41,84,43;86,42,88,43;87,41,88,42;117,42,119,45;116,41,118,42;56,44,59,46;57,42,58,44;58,43,61,44;59,42,60,43;84,42,85,43;116,42,117,43;94,43,96,44;99,43,101,57;97,43,99,45;101,43,104,45;118,45,122,49;119,43,120,45;56,51,68,62;59,46,63,49;60,44,63,46;59,44,60,45;94,44,95,46;114,48,118,52;116,44,117,48;120,44,121,45;98,45,99,46;104,45,107,50;103,45,104,46;109,45,112,46;113,45,116,46;58,46,59,48;94,47,96,59;95,46,96,47;101,47,104,49;101,46,103,47;107,46,109,50;109,46,110,47;117,46,118,48;122,46,123,50;63,48,68,50;63,47,65,48;66,47,67,48;98,47,99,49;110,47,111,48;109,48,110,50;123,48,125,51;61,49,63,51;60,49,61,50;102,49,104,50;110,49,114,51;118,49,119,51;121,49,122,51;120,49,121,50;63,50,65,51;66,50,68,51;98,50,99,58;101,51,103,56;101,50,102,51;124,51,127,52;125,50,126,51;112,51,113,52;49,52,56,57;103,52,105,57;114,52,117,53;120,52,122,53;124,54,127,58;126,52,128,54;125,52,126,53;46,53,49,57;117,53,119,55;116,53,117,54;125,62,133,68;127,55,131,62;128,53,130,55;105,54,106,56;119,54,120,56;120,55,122,57;121,54,122,55;130,54,131,55;45,55,46,56;131,57,135,60;132,55,134,57;131,55,132,56;101,56,102,57;122,56,124,59;135,56,136,58;134,56,135,57;48,57,54,58;54,58,56,67;55,57,56,58;99,57,100,58;121,57,122,58;135,59,137,60;136,57,137,59;125,58,127,59;136,60,144,61;138,58,140,60;137,58,138,59;53,59,54,60;68,59,70,62;78,59,89,61;71,59,76,61;76,59,78,60;89,59,91,60;124,59,125,67;123,59,124,60;125,59,126,60;" $sPixelRect &= "140,59,141,60;70,60,71,62;126,60,127,62;131,60,134,62;71,61,74,62;134,61,135,63;141,61,146,63;138,61,141,62;50,62,51,65;51,63,54,68;53,62,54,63;56,62,59,66;60,62,65,65;65,62,66,63;135,62,136,64;143,63,147,64;146,62,147,63;59,63,60,68;133,64,135,72;133,63,134,64;136,63,137,65;135,66,140,67;137,64,138,66;60,65,63,67;63,65,64,66;135,65,136,66;138,65,139,66;50,66,51,67;58,66,59,68;57,66,58,67;54,67,55,68;60,67,62,68;137,67,138,69;136,67,137,68;138,69,143,70;140,67,141,69;139,67,140,68;127,70,132,76;125,68,131,70;132,68,133,70;135,69,137,74;135,68,136,69;138,68,139,69;141,68,142,69;126,70,127,73;125,70,126,71;140,70,141,72;139,70,140,71;141,71,145,73;142,70,144,71;136,74,139,76;137,71,138,74;128,76,134,78;132,72,133,76;134,72,135,73;138,72,139,74;144,73,146,75;145,72,146,73;143,73,144,74;138,76,141,78;139,75,140,76;137,76,138,77;140,78,142,80;141,77,142,78;132,78,134,81;131,78,132,79;139,78,140,79" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates22() Func _PixelCoordinates23() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;45,27,52,30;56,31,80,40;56,28,60,31;52,28,55,31;55,28,56,30;60,28,64,30;69,28,82,31;65,29,69,31;64,29,65,30;82,29,83,32;48,30,52,31;54,31,56,32;80,31,82,32;80,32,81,33;91,34,104,41;94,32,99,34;55,33,56,38;92,33,94,34;99,33,101,34;68,41,94,59;88,37,91,41;89,36,91,37;90,35,91,36;104,36,109,42;104,35,106,36;53,39,55,45;54,36,55,39;80,37,81,41;109,38,115,43;109,37,113,38;86,38,88,41;81,39,82,41;82,40,86,41;85,39,86,40;115,40,117,46;115,39,116,40;51,52,68,58;56,42,61,50;55,40,58,42;58,40,59,41;60,40,80,41;61,41,68,49;59,41,61,42;94,41,95,44;95,42,98,45;96,41,98,42;100,41,104,42;117,43,119,50;117,41,118,43;51,43,53,47;52,42,53,43;55,42,56,45;99,42,101,45;98,42,99,43;101,42,102,43;103,42,104,45;107,42,108,43;106,43,107,44;110,43,115,44;49,45,51,49;50,44,51,45;98,44,99,45;101,44,103,45;104,44,106,46;108,44,111,48;114,44,115,46;113,44,114,45;118,50,128,57;119,45,121,50;119,44,120,45;53,45,54,46;107,45,108,47;106,45,107,46;111,45,113,47;116,46,117,48;121,47,123,50;121,46,122,47;51,47,52,48;110,48,114,49;111,47,112,48;123,48,125,50;62,49,67,52;94,50,101,58;94,49,96,50;113,49,114,51;112,49,113,50;116,49,117,50;125,49,128,50;56,50,59,52;60,50,62,52;67,50,68,52;114,50,115,52;123,57,130,60;128,50,130,56;59,51,60,52;101,52,104,56;101,51,103,52;115,51,117,53;131,52,135,55;130,51,132,52;117,52,118,55;46,53,51,58;104,53,105,57;130,53,131,54;135,53,138,56;138,54,139,56;45,55,46,57;130,55,132,57;101,56,102,57;103,56,104,58;129,56,130,57;132,57,134,59;132,56,133,57;118,57,119,60;121,57,122,60;120,57,121,58;122,57,123,58;131,57,132,58;56,58,65,66;65,58,68,63;94,58,98,59;128,60,132,62;130,58,131,60;134,58,135,60;52,63,56,68;53,59,56,62;68,59,69,62;72,59,90,61;90,59,92,60;119,59,120,64;132,59,133,61;131,59,132,60;134,61,136,62;135,59,136,61;69,61,74,62;71,60,72,61;122,61,124,65;122,60,123,61;125,60,126,63;124,60,125,61;127,60,128,61;133,60,134,61;136,62,140,64;137,60,138,62;136,60,137,61;120,61,121,66;123,65,129,67;126,61,127,65;138,61,139,62;54,62,56,63;129,62,130,64;" $sPixelRect &= "131,62,133,64;135,62,136,63;65,63,66,64;124,63,125,65;130,63,131,65;132,65,136,67;133,63,134,65;138,64,141,65;140,63,141,64;50,64,52,68;127,64,128,65;131,64,132,66;134,64,135,65;121,65,122,67;57,66,63,68;56,66,57,67;63,66,64,67;122,66,123,68;123,67,124,69;126,67,129,69;125,67,126,68;134,67,137,68;52,68,53,69;127,69,130,70;129,68,130,69;136,68,137,69;128,70,129,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates23() Func _PixelCoordinates24() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;33,23,42,24;34,22,35,23;36,24,46,26;34,24,36,25;47,25,49,29;42,26,47,28;46,25,47,26;49,28,52,36;50,25,51,28;49,25,50,26;40,26,42,27;53,26,56,28;51,26,53,27;60,27,61,33;55,28,59,34;56,27,60,28;61,27,64,30;59,28,60,30;65,34,79,51;65,28,76,34;64,28,65,31;52,29,55,35;76,29,77,34;44,31,49,36;47,30,49,31;62,30,64,31;59,31,60,34;61,31,63,32;77,31,78,34;90,33,102,39;94,31,96,33;42,32,44,39;38,33,42,35;41,32,42,33;61,34,65,41;61,32,62,34;64,32,65,34;63,32,64,33;92,32,94,33;96,32,100,33;62,33,63,34;35,34,38,37;54,35,58,38;55,34,58,35;79,42,93,60;85,36,90,41;88,34,90,36;102,35,109,40;102,34,105,35;32,35,35,37;38,35,40,36;52,36,54,39;52,35,53,36;87,35,88,36;39,37,42,40;40,36,42,37;44,36,48,37;51,36,52,37;58,36,60,37;79,38,85,42;79,36,80,38;107,44,122,52;109,37,113,44;109,36,111,37;33,37,34,38;44,37,45,38;58,37,59,39;81,37,85,38;38,38,39,40;56,38,57,40;55,38,56,39;59,38,61,41;54,39,55,43;53,39,54,40;56,41,60,46;57,39,58,41;93,39,94,47;90,39,93,42;94,39,96,41;101,39,102,40;55,40,56,41;58,40,59,41;96,40,97,42;97,41,101,42;98,40,99,41;100,40,101,41;102,41,107,46;104,40,109,41;60,42,65,45;62,41,65,42;85,41,87,42;88,41,90,42;94,41,95,42;107,41,109,43;113,41,114,44;55,42,56,45;98,42,101,43;114,42,116,44;101,43,102,45;100,43,101,44;108,43,109,44;116,43,122,44;122,44,125,46;55,52,68,63;59,46,64,50;60,45,63,46;64,45,65,46;58,46,59,48;104,46,107,47;64,47,65,50;122,48,125,51;122,47,124,48;93,50,99,59;93,49,95,50;125,49,127,51;60,50,64,52;64,51,66,52;68,51,79,59;67,51,68,52;99,52,104,57;99,51,102,52;122,51,124,53;47,53,55,58;53,52,55,53;108,52,117,54;119,52,122,53;104,53,105,57;113,54,118,55;117,53,118,54;121,53,123,54;45,55,47,57;46,54,47,55;110,54,111,56;109,54,110,55;111,54,112,55;115,55,117,56;46,57,47,58;99,57,101,58;103,57,104,58;53,63,63,68;53,60,55,62;54,59,55,60;68,59,71,60;72,59,79,61;68,61,75,62;71,60,72,61;80,60,87,62;79,60,80,61;87,60,91,61;54,62,55,63;68,62,69,63;63,63,65,66;65,63,66,64;50,64,53,68;49,64,50,65;63,66,64,67;51,68,56,69;60,68,61,69" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates24() Func _PixelCoordinates25() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;25,17,30,20;23,17,25,19;30,19,36,26;30,18,32,19;28,20,30,21;36,24,53,26;38,20,39,24;36,20,38,22;39,20,40,22;40,21,42,23;23,22,30,25;19,22,23,24;36,22,37,24;42,22,45,23;39,23,40,24;41,23,42,24;44,23,48,24;53,25,57,27;37,26,51,28;51,26,53,27;58,26,61,29;55,27,58,28;57,26,58,27;65,33,77,50;63,27,69,33;61,27,63,30;69,28,71,32;69,27,70,28;41,28,43,31;39,28,40,30;38,28,39,29;40,28,41,29;43,28,45,29;46,28,50,31;43,29,44,30;44,30,46,32;45,29,46,30;49,31,53,32;50,29,51,31;52,29,53,30;60,29,61,30;71,30,75,33;71,29,73,30;51,30,52,31;53,30,54,31;54,31,56,33;55,30,56,31;58,30,59,31;61,31,63,32;62,30,63,31;46,31,48,32;75,31,76,33;45,32,46,33;52,34,56,38;50,32,53,34;53,32,54,33;56,32,57,33;58,32,59,33;61,32,62,33;70,32,71,33;91,32,99,40;60,47,65,67;61,35,65,42;62,33,65,35;84,40,93,60;87,34,91,40;89,33,91,34;99,34,106,38;99,33,102,34;51,34,52,35;56,34,57,37;56,40,61,46;57,36,61,39;58,34,59,36;60,34,61,36;106,34,108,37;77,39,83,62;77,36,79,39;77,35,78,36;84,35,87,39;108,35,109,37;51,36,52,38;80,36,83,39;83,36,84,37;79,37,80,38;54,38,56,41;53,38,54,40;56,38,57,39;83,38,84,44;99,38,101,39;102,38,103,39;57,39,60,40;84,39,86,40;99,39,100,40;93,40,97,41;54,41,55,43;93,41,95,42;55,42,56,45;61,43,65,46;62,42,65,43;93,42,94,46;83,45,84,62;58,46,64,47;59,47,60,50;58,47,59,48;65,52,70,60;65,50,67,52;70,50,77,59;68,50,70,52;93,51,101,58;93,50,97,51;55,52,60,69;101,53,104,58;101,52,102,53;49,53,55,58;45,55,49,58;46,54,49,55;104,54,105,57;48,58,49,59;54,58,55,59;93,58,99,59;71,59,77,61;93,59,95,60;53,64,55,70;53,60,55,63;65,60,68,64;68,60,69,61;84,60,92,61;70,61,73,63;73,61,75,62;84,61,88,62;68,62,70,63;54,63,55,64;65,64,66,65;50,65,53,69;49,65,50,66;60,67,64,68;60,68,62,69;51,69,53,70" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates25() Func _PixelCoordinates26() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;16,7,22,12;17,6,19,7;13,7,15,9;22,7,23,9;14,9,16,10;15,8,16,9;23,8,25,10;22,11,26,13;25,9,26,11;22,10,24,11;26,12,29,14;27,10,28,12;26,10,27,11;29,11,30,13;28,11,29,12;19,12,22,13;30,12,31,14;22,13,25,15;21,13,22,14;32,13,33,15;31,13,32,14;25,14,27,16;29,14,30,15;33,14,36,16;26,16,31,17;27,15,28,16;31,15,32,16;34,17,40,23;35,16,39,17;36,15,37,16;30,17,34,19;29,17,30,18;40,19,45,22;40,18,42,19;33,19,34,21;45,20,48,22;48,21,50,23;40,22,42,24;44,22,46,23;47,22,48,23;50,22,53,25;34,23,36,24;37,23,40,25;42,24,45,28;42,23,44,24;53,23,56,26;40,24,41,25;49,24,50,25;56,24,59,27;41,25,42,27;45,25,48,27;52,25,53,26;60,43,66,51;61,34,77,39;60,26,66,31;59,25,65,26;86,28,97,40;92,25,94,28;94,26,98,28;96,25,97,26;48,26,49,29;55,26,56,27;58,27,60,28;59,26,60,27;87,26,92,28;45,27,47,28;49,27,50,30;51,27,52,28;50,29,54,32;53,27,54,29;67,28,69,34;66,27,68,28;97,28,99,30;98,27,99,28;58,28,59,31;66,28,67,30;84,31,86,35;85,28,86,31;55,29,56,30;59,29,60,31;69,29,72,34;72,31,75,34;72,30,73,31;97,31,100,37;97,30,98,31;54,31,55,32;56,31,57,32;62,31,67,34;61,31,62,33;51,35,59,36;52,32,53,35;51,32,52,33;57,32,60,35;83,32,84,34;100,32,103,36;53,33,54,35;55,33,57,35;75,33,76,34;103,33,104,36;54,34,55,35;60,34,61,35;82,36,86,38;85,35,86,36;55,36,56,43;52,36,55,38;56,39,60,41;56,36,58,38;59,36,61,37;100,36,101,37;57,38,61,39;58,37,59,38;67,42,93,60;77,37,80,42;81,37,82,39;80,37,81,38;97,37,99,38;54,38,55,39;97,38,98,39;62,39,77,42;80,39,81,40;84,39,86,42;83,39,84,40;60,40,62,41;86,40,96,42;57,43,60,46;58,41,61,43;57,41,58,42;80,41,81,42;82,41,84,42;56,42,57,45;62,42,67,43;93,42,95,44;66,43,67,49;93,44,94,47;59,46,60,48;55,53,67,62;65,51,67,52;66,50,67,51;93,51,100,59;93,50,96,51;61,51,64,53;100,52,102,58;100,51,101,52;58,52,61,53;66,52,67,53;48,54,55,59;51,53,55,54;102,54,105,57;102,53,104,54;45,55,48,58;46,54,48,55;102,57,104,58;93,59,96,60;50,65,63,69;53,61,55,63;54,60,55,61;67,60,69,61;76,60,90,62;72,60,75,62;75,60,76,61;90,60,92,61;67,61,68,64;68,62,74,63;71,61,72,62;" $sPixelRect &= "55,62,66,64;54,63,55,65;66,63,67,64;68,63,69,64;55,64,59,65;63,64,65,67;60,64,63,65;65,64,66,65;63,67,64,68;51,69,54,71;50,69,51,70;54,69,56,70;59,69,61,70" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates26() Func _PixelCoordinates27() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;13,8,19,14;15,6,19,8;12,7,14,8;19,8,21,11;19,7,20,8;10,8,13,11;8,9,10,10;9,8,10,9;21,8,22,10;22,9,23,11;23,10,24,12;12,11,13,13;20,11,22,13;24,11,26,13;19,12,20,14;26,12,28,14;20,13,21,14;23,13,24,14;28,14,31,17;28,13,29,14;17,14,19,16;15,14,17,15;25,14,26,15;19,15,23,17;23,15,25,16;24,17,27,19;26,15,27,17;30,17,36,19;31,15,32,17;27,16,28,17;32,16,33,17;22,17,24,18;27,18,30,20;34,19,39,22;36,18,37,19;30,19,31,21;32,19,34,20;31,21,34,24;31,20,33,21;39,20,42,23;42,21,44,23;86,27,95,45;88,22,95,27;89,21,91,22;93,21,95,22;34,22,37,25;38,22,39,23;44,22,47,25;95,25,100,39;96,22,98,25;37,23,38,25;41,23,43,24;47,23,50,27;86,24,88,26;87,23,88,24;95,23,96,25;33,24,34,25;38,25,42,28;38,24,40,25;50,25,58,28;50,24,52,25;34,25,36,26;57,28,65,32;58,26,61,28;87,26,88,27;42,27,46,28;47,27,48,28;61,27,63,28;46,28,47,30;45,28,46,29;51,28,57,29;47,29,49,31;56,29,57,31;55,29,56,30;62,33,74,44;65,30,68,33;65,29,66,30;49,30,50,34;51,30,52,35;54,30,55,31;100,32,103,37;100,30,101,32;48,31,49,32;50,31,51,32;68,31,70,33;101,31,102,32;52,32,53,39;60,32,62,35;58,32,60,33;62,32,64,33;70,32,73,33;50,33,51,34;55,33,56,34;103,33,104,35;69,44,86,60;74,37,77,44;74,34,75,37;54,35,56,41;53,35,54,40;56,35,58,38;59,35,61,36;84,36,86,37;85,35,86,36;58,36,60,37;60,38,62,39;61,36,62,38;75,36,76,37;83,37,84,44;80,38,83,40;82,37,83,38;84,37,85,39;100,37,101,38;84,40,86,44;85,38,86,40;56,42,61,46;57,39,59,42;59,40,62,41;61,39,62,40;77,39,79,44;79,39,80,41;95,39,98,41;98,39,99,40;81,40,82,42;55,41,56,44;59,41,61,42;82,41,83,44;95,41,97,43;79,42,81,44;95,43,96,44;65,44,69,50;63,44,65,47;55,53,68,64;61,47,64,53;61,45,63,47;86,50,95,60;86,45,93,50;93,45,94,48;59,46,61,48;58,46,59,47;60,48,61,49;64,48,65,51;65,50,66,52;67,50,69,51;67,51,68,53;66,51,67,52;95,52,102,58;95,51,100,52;59,52,61,53;64,52,65,53;68,52,69,61;46,54,55,59;52,53,55,54;102,53,104,58;45,55,46,58;104,55,105,57;44,57,45,58;95,58,100,59;95,59,97,60;71,60,90,62;90,60,93,61;52,65,63,69;54,61,55,65;53,61,54,63;68,62,74,63;78,62,80,63;" $sPixelRect &= "68,63,71,64;55,64,66,65;50,66,52,70;50,65,51,66;63,65,65,67;49,66,50,67;63,67,64,68;52,69,55,71;55,69,56,70;58,69,62,70;51,70,52,71" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates27() Func _PixelCoordinates28() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;14,3,17,5;14,2,16,3;17,4,18,6;15,5,16,7;14,5,15,6;18,5,19,7;10,7,14,12;10,6,13,7;16,6,17,8;17,8,22,12;19,6,21,8;17,7,18,8;21,7,22,8;7,8,10,10;14,8,16,16;22,8,23,11;16,9,17,12;23,10,26,15;23,9,25,10;9,10,10,11;25,15,28,21;26,12,28,15;26,11,27,12;11,12,14,14;20,12,22,14;16,13,17,14;18,13,19,14;22,13,23,14;29,14,31,17;28,13,30,14;13,14,14,16;12,14,13,15;16,15,20,17;17,14,18,15;28,14,29,15;21,15,22,16;23,15,24,16;31,15,32,17;15,16,16,17;19,17,25,19;20,16,21,17;24,16,25,17;28,18,31,23;28,16,29,18;31,18,34,21;32,16,33,18;18,17,19,18;34,17,35,19;33,17,34,18;34,20,40,22;35,18,36,20;21,19,25,20;36,19,38,20;24,20,25,21;93,25,104,38;94,21,105,25;97,20,99,21;100,20,102,21;26,21,28,22;32,21,33,24;40,22,45,25;40,21,42,22;33,23,36,26;34,22,35,23;36,22,40,23;29,23,32,25;39,23,40,24;45,23,48,27;36,24,39,29;48,25,53,28;48,24,50,25;104,25,106,27;105,24,106,25;31,25,33,26;40,25,41,27;39,25,40,26;41,26,45,27;44,25,45,26;33,26,34,27;35,26,36,28;53,26,58,31;39,27,40,30;42,27,44,28;47,27,48,29;46,27,47,28;56,31,66,34;58,28,61,31;58,27,59,28;104,27,105,29;45,28,46,29;51,28,52,30;49,28,51,29;52,28,53,29;88,38,95,47;90,31,93,38;92,28,93,31;40,29,44,31;61,29,63,31;43,31,46,32;44,30,45,31;63,30,64,31;91,30,92,31;47,31,48,32;55,31,56,33;54,31,55,32;46,32,47,34;45,32,46,33;48,33,50,36;48,32,49,33;50,32,51,34;62,35,74,45;66,32,68,35;89,32,90,38;104,32,105,36;47,33,48,34;51,33,52,34;68,33,70,35;52,34,53,36;54,34,55,38;59,34,62,37;57,34,59,35;62,34,66,35;70,34,72,35;87,34,89,35;50,35,51,37;53,35,54,36;86,35,88,37;51,36,52,38;55,36,57,37;74,43,88,62;83,38,87,43;84,37,86,38;85,36,86,37;88,36,89,38;53,37,54,41;52,37,53,38;55,37,56,38;60,37,61,39;74,38,76,43;74,37,75,38;54,39,58,40;57,38,58,39;61,38,62,43;87,38,88,40;95,38,100,42;100,38,102,39;76,39,77,43;81,40,83,41;82,39,83,40;100,39,101,41;55,40,56,43;54,40,55,41;56,41,57,44;58,41,59,42;77,41,78,43;79,41,81,43;81,41,82,42;87,41,88,43;78,42,79,43;95,42,98,44;98,42,99,43;57,45,61,47;59,43,61,45;57,43,59,44;57,44,58,45;61,44,62,45;" $sPixelRect &= "95,44,96,46;66,52,74,60;65,45,74,51;61,46,65,47;64,45,65,46;61,47,64,51;58,47,61,48;88,50,95,60;88,47,93,50;93,47,94,49;60,48,61,49;55,53,66,65;64,48,65,53;62,51,64,53;65,51,67,52;69,51,74,52;95,52,102,58;95,51,100,52;60,52,62,53;46,54,55,59;53,53,55,54;102,53,104,58;44,56,46,58;45,55,46,56;104,55,105,57;45,58,46,59;95,58,100,59;95,59,97,60;66,60,69,64;69,60,70,61;71,60,74,63;88,60,94,61;53,65,63,69;53,61,55,65;69,62,71,64;70,61,71,62;88,61,90,62;79,62,87,63;71,63,72,64;66,64,67,65;63,65,65,67;51,66,53,71;50,66,51,68;49,66,50,67;63,67,64,68;50,69,51,71;53,69,55,71;55,69,56,70;57,69,62,70" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates28() Func _PixelCoordinates29() #region pixel coordinates Local $sPixelRect $sPixelRect &= "30,150x133;15,0,17,2;14,1,15,3;16,4,18,6;17,1,18,4;15,2,16,5;18,2,19,4;19,8,23,16;18,5,23,7;19,3,20,5;20,4,21,5;9,8,14,11;10,6,13,8;17,6,18,7;23,6,24,9;14,7,15,9;13,7,14,8;18,7,21,8;23,10,25,22;24,7,25,10;8,8,9,10;15,8,17,10;25,9,27,12;25,8,26,9;17,9,19,11;15,10,16,12;14,10,15,11;25,16,32,22;27,10,28,16;11,13,17,16;12,11,14,13;10,11,12,12;16,12,18,13;17,11,18,12;28,11,29,13;30,11,32,14;14,12,15,13;26,12,27,13;29,12,30,14;32,13,34,17;32,12,33,13;17,14,19,19;18,13,19,14;25,13,26,15;32,18,38,28;34,15,36,18;34,14,35,15;26,15,27,16;28,15,32,16;15,16,17,18;13,16,15,17;19,17,23,21;19,16,21,17;22,16,23,17;33,17,34,18;36,17,37,18;18,19,19,20;38,22,44,29;38,20,40,22;100,24,108,33;102,20,106,24;108,21,111,28;107,20,109,21;110,20,111,21;22,21,23,22;40,21,41,22;101,21,102,24;106,21,108,24;111,21,112,23;25,22,26,24;24,22,25,23;28,22,32,26;26,23,28,24;27,22,28,23;44,24,48,29;44,23,46,24;111,24,113,26;48,26,52,30;48,25,50,26;29,26,32,27;93,33,104,40;96,28,100,33;98,26,100,28;111,26,112,27;31,27,32,28;51,30,61,33;52,27,55,30;34,28,36,31;33,28,34,29;36,29,38,32;37,28,38,29;55,28,57,30;108,28,110,29;42,29,44,32;41,29,42,30;47,29,48,30;57,29,59,30;93,30,96,33;95,29,96,30;108,29,109,31;39,30,41,33;44,30,45,32;49,30,51,31;38,31,39,32;41,31,42,34;45,31,46,32;59,33,67,40;61,31,62,33;91,32,93,34;92,31,93,32;46,34,51,37;47,32,49,34;49,32,50,33;62,32,64,33;42,33,45,35;45,33,47,34;50,33,51,34;55,33,59,37;53,33,55,35;89,34,92,35;90,33,91,34;104,33,107,37;63,40,76,47;67,35,71,40;67,34,68,35;45,35,46,36;87,35,90,37;84,43,94,61;89,37,93,43;91,35,93,37;51,36,53,37;71,37,74,40;71,36,73,37;85,37,87,42;86,36,87,37;48,37,51,39;47,37,48,38;51,37,52,38;58,37,59,39;104,37,106,38;53,38,55,39;74,38,75,40;87,39,89,43;88,38,89,39;104,38,105,39;49,39,54,40;55,40,57,41;56,39,57,40;83,40,85,43;84,39,85,40;52,40,54,42;61,40,63,44;94,40,101,44;93,40,94,43;101,40,103,41;55,41,56,44;54,41,55,42;58,41,59,42;69,47,84,60;76,42,78,47;76,41,77,42;82,41,83,44;101,41,102,42;60,42,61,43;85,42,86,43;56,43,59,45;" $sPixelRect &= "78,44,81,47;78,43,79,44;81,43,82,45;80,43,81,44;83,43,84,44;94,44,98,46;98,44,99,45;58,45,59,48;57,45,58,46;60,45,61,46;62,45,63,46;82,45,84,47;59,47,62,49;61,46,62,47;81,46,82,47;94,46,96,48;96,46,97,47;65,47,69,49;64,47,65,48;63,48,64,49;94,48,95,49;55,53,69,64;62,50,64,53;61,49,63,50;67,49,69,51;65,50,67,51;64,51,66,53;94,52,102,58;94,51,100,52;61,52,62,53;66,52,69,53;47,54,55,59;53,53,55,54;102,54,104,58;102,53,103,54;45,55,47,59;44,56,45,58;94,58,98,60;98,58,100,59;71,60,84,62;94,60,95,61;53,65,63,69;53,61,55,64;84,61,90,62;69,62,72,64;72,62,74,63;78,62,87,63;52,63,53,64;54,64,67,65;63,65,65,68;50,66,53,71;49,66,50,68;53,69,56,71;57,69,61,71;61,69,62,70;51,71,53,72" #endregion Local $aPixelRect = StringSplit($sPixelRect, ";", 2) Return $aPixelRect EndFunc ;==>_PixelCoordinates29()