Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

205
LINES

< > BotCompany Repo | #402 // Magic Wand + Hashes (optimized III)

Lua code - Image recognition

get("#349") -- table functions
get("#380") -- hashImage
get("#121") -- compareTables
get("#348") -- bright and rgb

maxSize = {width=100, height=50}
minSize = {width=4, height=4}
threshold = 0.5
wandSize = 3 -- magic wand size

local rectangles, _img

function cloneRectangle(r)
  return newRectangle(r.x, r.y, r.width, r.height)
end

function newRectangle(x, y, w, h)
  return {x=x, y=y, width=w, height=h}
end

function contains(r, x, y)
  return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width
end

function nextX(x, y)
  for r, _ in pairs(rectangles) do
    pTests = pTests+1
    if contains(r, x, y) then
      return r.x+r.width
    end
  end
  return nil
end

pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0

-- returns rectangle
function magicWand(image, x, y)
  if image ~= _img then
    _img, rectangles = image, {}
  end
  local nx = nextX(x, y)
  if nx ~= nil then
    pSeen = pSeen+1
    return nil, nx
  end
  pNotSeen = pNotSeen+1
  local r = newRectangle(x, y, 1, 1)
  
  while true do
    local last = cloneRectangle(r)
    expandLeft(image, r)
    if tooLarge(r) then return nil end
    expandTop(image, r)
    if tooLarge(r) then return nil end
    expandRight(image, r)
    if tooLarge(r) then return nil end
    expandBottom(image, r)
    if tooLarge(r) then return nil end    
    if compareTables(last, r) then
      if r.width >= minSize.width and r.height >= minSize.width then
        if rectangles[r] then
          pDuplicate = pDuplicate+1
        else
          pNew = pNew+1
          rectangles[r] = true
        end
        return r
      else
        return nil
      end
    end
  end
end

function tooLarge(r)
  return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height)
end

function expandLeft(image, r)
  local newX = math.max(r.x - wandSize, 0)
  if newX == r.x then return end
  newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height))
  r.width = r.width+r.x-newX
  r.x = newX
end

function searchFromLeft(image, r)
  for x = r.x, r.x+r.width-1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x
    end
  end
  return r.x+r.width
end

function expandRight(image, r)
  local newX = math.min(r.x + r.width + wandSize, image.width)
  if newX == r.x+r.width then return end
  newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height))
  r.width = newX-r.x
end

function searchFromRight(image, r)
  for x = r.x+r.width-1, r.x, -1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x+1
    end
  end
  return r.x
end

function expandTop(image, r)
  local newY = math.max(r.y - wandSize, 0)
  if newY == r.y then return end
  newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY))
  r.height = r.height+r.y-newY
  r.y = newY
end

function searchFromTop(image, r)
  for y = r.y, r.y+r.height-1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y
    end
  end
  return r.y+r.height
end

function expandBottom(image, r)
  local newY = math.min(r.y + r.height + wandSize, image.height)
  if newY == r.y+r.height then return end
  newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height)))
  r.height = newY-r.y
end

function searchFromBottom(image, r)
  for y = r.y+r.height-1, r.y, -1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y+1
    end
  end
  return r.y
end

-- we're looking for dark pixels this time
function regionNotEmpty(image, r)
  --return image.clip(rectangle).anyPixelBrighterThan(threshold)
  for y=r.y, r.y+r.height-1 do
    for x=r.x, r.x+r.width-1 do
      if bright(rgb(image.getInt(x, y))) < threshold then
        return true
      end
    end
  end
  return false
end


function recttostring(r)
  return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height
end

function magicWandAll(image)
  local allrects = {}

  for y = 0, image.height-1, 2 do
    for x = 0, image.width-1, 2 do
      local r, nx = magicWand(image, x, y)
      
      if r then
        allrects[recttostring(r)] = true
      elseif nx ~= nil then
        x = nx
        if x%2 == 1 then x=x+1 end -- get to 2-boundary
        x=x-2 -- counteract loop increment
      end
    end
  end
  
  return allrects
end

wandSize = 3

allrects = magicWandAll(img)

function stringtorect(s)
  local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)")
  x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2)
  return newRectangle(x1, y1, x2-x1, y2-y1)
end

result = {}
for s, _ in pairs(allrects) do
  r = stringtorect(s)
  cropped = {width=r.width, height=r.height,
    getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
  hash = hashImage(cropped)
  table.insert(result, s.." -> "..hash)
end
result = table.concat(result, "|")
if result ~= '' then
  return "Magic Wand + hashes (wand size="..wandSize.."): "..result
end

Author comment

Began life as a copy of #386

download  show line numbers   

Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

Comments [hide]

ID Author/Program Comment Date
310 #1000604 (pitcher) 2015-08-18 00:55:17
268 #1000610 (pitcher) Edit suggestion:
!636
!629

main {
static Object androidContext;
static String programID;

public static void main(String[] args) throws Exception {
get("#349") -- table functions
get("#380") -- hashImage
get("#121") -- compareTables
get("#348") -- bright and rgb

maxSize = {width=100, height=50}
minSize = {width=4, height=4}
threshold = 0.5
wandSize = 3 -- magic wand size

local rectangles, _img

function cloneRectangle(r)
return newRectangle(r.x, r.y, r.width, r.height)
end

function newRectangle(x, y, w, h)
return {x=x, y=y, width=w, height=h}
end

function contains(r, x, y)
return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width
end

function nextX(x, y)
for r, _ in pairs(rectangles) do
pTests = pTests+1
if contains(r, x, y) then
return r.x+r.width
end
end
return nil
end

pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0

-- returns rectangle
function magicWand(image, x, y)
if image ~= _img then
_img, rectangles = image, {}
end
local nx = nextX(x, y)
if nx ~= nil then
pSeen = pSeen+1
return nil, nx
end
pNotSeen = pNotSeen+1
local r = newRectangle(x, y, 1, 1)

while true do
local last = cloneRectangle(r)
expandLeft(image, r)
if tooLarge(r) then return nil end
expandTop(image, r)
if tooLarge(r) then return nil end
expandRight(image, r)
if tooLarge(r) then return nil end
expandBottom(image, r)
if tooLarge(r) then return nil end
if compareTables(last, r) then
if r.width >= minSize.width and r.height >= minSize.width then
if rectangles[r] then
pDuplicate = pDuplicate+1
else
pNew = pNew+1
rectangles[r] = true
end
return r
else
return nil
end
end
end
end

function tooLarge(r)
return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height)
end

function expandLeft(image, r)
local newX = math.max(r.x - wandSize, 0)
if newX == r.x then return end
newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height))
r.width = r.width+r.x-newX
r.x = newX
end

function searchFromLeft(image, r)
for x = r.x, r.x+r.width-1 do
if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
return x
end
end
return r.x+r.width
end

function expandRight(image, r)
local newX = math.min(r.x + r.width + wandSize, image.width)
if newX == r.x+r.width then return end
newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height))
r.width = newX-r.x
end

function searchFromRight(image, r)
for x = r.x+r.width-1, r.x, -1 do
if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
return x+1
end
end
return r.x
end

function expandTop(image, r)
local newY = math.max(r.y - wandSize, 0)
if newY == r.y then return end
newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY))
r.height = r.height+r.y-newY
r.y = newY
end

function searchFromTop(image, r)
for y = r.y, r.y+r.height-1 do
if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
return y
end
end
return r.y+r.height
end

function expandBottom(image, r)
local newY = math.min(r.y + r.height + wandSize, image.height)
if newY == r.y+r.height then return end
newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height)))
r.height = newY-r.y
end

function searchFromBottom(image, r)
for y = r.y+r.height-1, r.y, -1 do
if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
return y+1
end
end
return r.y
end

-- we're looking for dark pixels this time
function regionNotEmpty(image, r)
--return image.clip(rectangle).anyPixelBrighterThan(threshold)
for y=r.y, r.y+r.height-1 do
for x=r.x, r.x+r.width-1 do
if bright(rgb(image.getInt(x, y))) < threshold then
return true
end
end
end
return false
end


function recttostring(r)
return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height
end

function magicWandAll(image)
local allrects = {}

for y = 0, image.height-1, 2 do
for x = 0, image.width-1, 2 do
local r, nx = magicWand(image, x, y)

if r then
allrects[recttostring(r)] = true
elseif nx ~= nil then
x = nx
if x%2 == 1 then x=x+1 end -- get to 2-boundary
x=x-2 -- counteract loop increment
end
end
end

return allrects
end

wandSize = 3

allrects = magicWandAll(img)

function stringtorect(s)
local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)")
x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2)
return newRectangle(x1, y1, x2-x1, y2-y1)
end

result = {}
for s, _ in pairs(allrects) do
r = stringtorect(s)
cropped = {width=r.width, height=r.height,
getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
hash = hashImage(cropped)
table.insert(result, s.." -> "..hash)
end
result = table.concat(result, "|")
if result ~= '' then
return "Magic Wand + hashes (wand size="..wandSize.."): "..result
end

}}
2015-08-18 00:53:39

add comment

Image recognition results

show nils
Image Result Result calculated
#1004153 Magic Wand + hashes (wand size=3): 10, 6, 51, 17 -> 00991991|10, 8, 53, 17 -> 00eaab00|8, 8, 51, 17 ... 2016-08-08 16:40:04
Lua instructions: 750k

[raw result]
[visualize]
#1000119 Magic Wand + hashes (wand size=3): 104, 322, 115, 336 -> 000aeea2|212, 18, 255, 31 -> 00958b6c|0, 2,... 2016-08-08 14:15:09
Lua instructions: 87626k (7790 ms)

[raw result]
[visualize]
#1000090 Magic Wand + hashes (wand size=3): 84, 66, 104, 78 -> 007ca960|111, 64, 139, 82 -> 0065093e|201, 64,... 2016-08-08 01:27:27
Lua instructions: 107125k (10593 ms)

[raw result]
[visualize]
#1004135 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-08 00:13:33

[raw result]
[visualize]
#1004090 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-07 13:30:15

[raw result]
[visualize]
#1004088 Magic Wand + hashes (wand size=3): 58, 44, 64, 68 -> 00017ee2|58, 47, 84, 68 -> 008c0b92|498, 10, 50... 2016-08-06 13:56:24
Lua instructions: 600902k

[raw result]
[visualize]
#1000121 Magic Wand + hashes (wand size=3): 104, 322, 115, 336 -> 000aeea2|24, 210, 39, 228 -> 00711451|212, ... 2016-08-06 03:40:36
Lua instructions: 88531k (8130 ms)

[raw result]
[visualize]
#1000160 Magic Wand + hashes (wand size=3): 71, 737, 76, 743 -> 0001b999|3, 520, 7, 526 -> 000dcaf8|1, 638, 7... 2016-08-05 23:40:01
Lua instructions: 151240k (14076 ms)

[raw result]
[visualize]
#1004070 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-05 15:03:02

[raw result]
[visualize]
#1004061 Magic Wand + hashes (wand size=3): 569, 4, 589, 18 -> 00069b64|413, 5, 512, 18 -> 000c301b|372, 187,... 2016-08-05 13:29:34
Lua instructions: 107520k

[raw result]
[visualize]
#1004060 java.lang.OutOfMemoryError: Java heap space 2016-08-05 13:07:18

[raw result]
[visualize]
#1000327 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-04 19:23:24

[raw result]
[visualize]
#1000146 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-04 09:33:22

[raw result]
[visualize]
#1000015 Magic Wand + hashes (wand size=3): 90, 4, 158, 17 -> 01439170|88, 5, 151, 17 -> 008478ce|6, 2, 46, 1... 2016-08-04 00:16:44
Lua instructions: 2388k (245 ms)

[raw result]
[visualize]
#1000113 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-03 23:48:51

[raw result]
[visualize]
#182 Magic Wand + hashes (wand size=3): 258, 36, 271, 48 -> 000ad370|306, 0, 334, 46 -> 00618398|6, 12, 1... 2016-08-03 19:55:08
Lua instructions: 81858k (7671 ms)

[raw result]
[visualize]
#1004009 Magic Wand + hashes (wand size=3): 186, 168, 196, 183 -> 0032604c|363, 208, 417, 218 -> 002fac57|297... 2016-08-03 17:18:33
Lua instructions: 233935k

[raw result]
[visualize]
#1000199 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-03 08:39:21

[raw result]
[visualize]
#1000072 Magic Wand + hashes (wand size=3): 36, 26, 81, 75 -> 009f4240|36, 26, 78, 75 -> 01268248|36, 26, 79,... 2016-08-03 08:16:17
Lua instructions: 14377k (1530 ms)

[raw result]
[visualize]
#1000063 Magic Wand + hashes (wand size=3): 30, 21, 77, 65 -> 010b0f25|30, 21, 79, 65 -> 0161f841|28, 21, 76,... 2016-08-02 16:37:01
Lua instructions: 3400k (477 ms)

[raw result]
[visualize]
#1000614 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 20:23:24

[raw result]
[visualize]
#1000613 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 20:18:59

[raw result]
[visualize]
#1000611 Magic Wand + hashes (wand size=3): 54, 209, 58, 218 -> 000256ee|54, 303, 71, 313 -> 0013879b|140, 30... 2016-08-01 20:10:20
Lua instructions: 755123k (73502 ms)

[raw result]
[visualize]
#1000600 Magic Wand + hashes (wand size=3): 131, 190, 139, 197 -> 000fdbf6|130, 190, 137, 197 -> 0001546e|131... 2016-08-01 20:04:21
Lua instructions: 486518k (47626 ms)

[raw result]
[visualize]
#1000576 Magic Wand + hashes (wand size=3): 54, 209, 58, 218 -> 000256ee|54, 303, 71, 313 -> 0013879b|140, 30... 2016-08-01 19:57:55
Lua instructions: 757172k (74853 ms)

[raw result]
[visualize]
#1000558 Magic Wand + hashes (wand size=3): 286, 238, 298, 242 -> 00094f58 2016-08-01 19:54:29
Lua instructions: 420264k (42009 ms)

[raw result]
[visualize]
#1000556 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 19:43:44

[raw result]
[visualize]
#1000555 Magic Wand + hashes (wand size=3): 120, 130, 126, 138 -> 0008b8d9|183, 195, 187, 202 -> 00023185|225... 2016-08-01 19:37:50
Lua instructions: 933815k (89294 ms)

[raw result]
[visualize]
#1000554 Magic Wand + hashes (wand size=3): 423, 50, 431, 60 -> 000a820d|212, 412, 247, 432 -> 014dbda8|423, ... 2016-08-01 19:34:21
Lua instructions: 720586k (69130 ms)

[raw result]
[visualize]
#1000553 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 19:26:57

[raw result]
[visualize]
#1000549 Magic Wand + hashes (wand size=3): 123, 10, 129, 20 -> 001d1c74|34, 8, 43, 20 -> 0023b6b2|94, 216, 1... 2016-08-01 19:24:50
Lua instructions: 251012k (24891 ms)

[raw result]
[visualize]
#1000547 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 19:17:12

[raw result]
[visualize]
#1000546 Magic Wand + hashes (wand size=3): 144, 89, 149, 93 -> 000434a4|142, 121, 150, 126 -> 0005511d|143, ... 2016-08-01 19:12:57
Lua instructions: 282425k (27325 ms)

[raw result]
[visualize]
#1000544 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 19:01:44

[raw result]
[visualize]
#1000542 Magic Wand + hashes (wand size=3): 414, 508, 481, 519 -> 0029efd3|294, 94, 321, 104 -> 00717ba7|360,... 2016-08-01 18:44:08
Lua instructions: 998183k (102967 ms)

[raw result]
[visualize]
#1000519 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 18:41:37

[raw result]
[visualize]
#1000444 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 18:33:21

[raw result]
[visualize]
#1000428 Magic Wand + hashes (wand size=3): 100, 303, 105, 309 -> 000af8d3|103, 303, 107, 309 -> 000d6216|17,... 2016-08-01 18:29:01
Lua instructions: 743621k (73653 ms)

[raw result]
[visualize]
#1000425 Magic Wand + hashes (wand size=3): 60, 50, 64, 54 -> 0001d582|30, 344, 34, 352 -> 000d1344|54, 46, 5... 2016-08-01 18:24:20
Lua instructions: 270579k (27212 ms)

[raw result]
[visualize]
#1000422 Magic Wand + hashes (wand size=3): 91, 44, 101, 55 -> 00167c92|75, 43, 79, 47 -> 0001e428|62, 37, 71... 2016-08-01 18:22:18
Lua instructions: 391059k (37385 ms)

[raw result]
[visualize]
#1000421 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 18:19:58

[raw result]
[visualize]
#1000418 Magic Wand + hashes (wand size=3): 225, 196, 239, 205 -> 003e58f6|287, 196, 297, 205 -> 00363ffe|122... 2016-08-01 18:08:14
Lua instructions: 255260k (24560 ms)

[raw result]
[visualize]
#1000359 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 18:02:39

[raw result]
[visualize]
#1000338 Magic Wand + hashes (wand size=3): 200, 99, 219, 111 -> 003b3a4a|63, 101, 103, 113 -> 00df57ff|1, 10... 2016-08-01 17:55:03
Lua instructions: 225485k (22856 ms)

[raw result]
[visualize]
#1000339 Magic Wand + hashes (wand size=3): 1, 86, 35, 95 -> 004880b4|40, 88, 53, 95 -> 00362ab2|57, 84, 99, ... 2016-08-01 17:54:39
Lua instructions: 218100k (21739 ms)

[raw result]
[visualize]
#1000336 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 17:48:38

[raw result]
[visualize]
#1000334 Magic Wand + hashes (wand size=3): 102, 104, 111, 112 -> 00037e0e|104, 104, 111, 112 -> 001f1928|105... 2016-08-01 17:43:30
Lua instructions: 17072k (1624 ms)

[raw result]
[visualize]
#1000333 Magic Wand + hashes (wand size=3): 165, 10, 171, 20 -> 001d1c74|76, 11, 87, 20 -> 001e2566|6, 7, 28,... 2016-08-01 17:43:19
Lua instructions: 166136k (15722 ms)

[raw result]
[visualize]
#1000332 Magic Wand + hashes (wand size=3): 320, 175, 328, 180 -> 00048b38|140, 125, 146, 143 -> 00082b38|387... 2016-08-01 17:42:10
Lua instructions: 517969k (50278 ms)

[raw result]
[visualize]
#1000331 Magic Wand + hashes (wand size=3): 63, 209, 67, 216 -> 000c90ad|70, 221, 74, 227 -> 0005542a|91, 246... 2016-08-01 17:39:05
Lua instructions: 318588k (30165 ms)

[raw result]
[visualize]
#1000330 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 17:37:01

[raw result]
[visualize]
#1000329 Magic Wand + hashes (wand size=3): 122, 49, 128, 53 -> 00061e9b 2016-08-01 17:24:23
Lua instructions: 148027k (14634 ms)

[raw result]
[visualize]
#1000328 Magic Wand + hashes (wand size=3): 0, 152, 6, 167 -> 0010d0ef|0, 179, 6, 192 -> 00132960|178, 15, 18... 2016-08-01 17:02:01
Lua instructions: 150590k (14435 ms)

[raw result]
[visualize]
#1000326 java.lang.OutOfMemoryError: Java heap space 2016-08-01 16:53:16

[raw result]
[visualize]
#1000321 Magic Wand + hashes (wand size=3): 450, 295, 467, 312 -> 004b1141|201, 298, 223, 312 -> 00318092|448... 2016-08-01 15:36:22
Lua instructions: 811370k (79121 ms)

[raw result]
[visualize]
#1000320 java.lang.OutOfMemoryError: Java heap space 2016-08-01 15:26:11

[raw result]
[visualize]
#1000314 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 15:24:09

[raw result]
[visualize]
#1000316 Magic Wand + hashes (wand size=3): 224, 10, 241, 21 -> 00494242|220, 28, 260, 39 -> 0061b910|159, 9,... 2016-08-01 15:23:35
Lua instructions: 926604k (87991 ms)

[raw result]
[visualize]
#1000315 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 15:13:20

[raw result]
[visualize]
#1000313 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 14:43:01

[raw result]
[visualize]
#1000312 java.lang.OutOfMemoryError: Java heap space 2016-08-01 14:21:31

[raw result]
[visualize]
#1000310 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 14:21:21

[raw result]
[visualize]
#1000311 java.lang.OutOfMemoryError: Java heap space 2016-08-01 14:20:58

[raw result]
[visualize]
#1000309 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 14:20:52

[raw result]
[visualize]
#1000301 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 14:20:50

[raw result]
[visualize]
#1000294 Magic Wand + hashes (wand size=3): 3, 25, 51, 37 -> 00e5a23d|118, 24, 168, 37 -> 000d8273|55, 26, 11... 2016-08-01 14:20:43
Lua instructions: 4862k (485 ms)

[raw result]
[visualize]
#1000289 Magic Wand + hashes (wand size=3): 182, 20, 191, 31 -> 0000153c|182, 22, 193, 31 -> 002c5a5c|170, 62... 2016-08-01 14:19:55
Lua instructions: 52194k (5233 ms)

[raw result]
[visualize]
#1000284 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 14:05:31

[raw result]
[visualize]
#1000285 Magic Wand + hashes (wand size=3): 395, 268, 400, 272 -> 00031197|284, 176, 316, 180 -> 000fc3f3|299... 2016-08-01 14:00:14
Lua instructions: 533145k (52180 ms)

[raw result]
[visualize]
#1000283 Magic Wand + hashes (wand size=3): 62, 123, 83, 134 -> 00472dd3|292, 124, 307, 134 -> 000342b3|100, ... 2016-08-01 13:51:11
Lua instructions: 26651k (2478 ms)

[raw result]
[visualize]
#1000282 Magic Wand + hashes (wand size=3): 94, 262, 106, 271 -> 0006739d|96, 262, 106, 271 -> 00288106|106, ... 2016-08-01 13:50:15
Lua instructions: 164530k (15661 ms)

[raw result]
[visualize]
#1000276 Magic Wand + hashes (wand size=3): 240, 179, 265, 216 -> 012d9bd5|238, 225, 267, 267 -> 0066a490|237... 2016-08-01 13:31:50
Lua instructions: 796306k (75749 ms)

[raw result]
[visualize]
#1000275 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 13:15:58

[raw result]
[visualize]
#1000269 Magic Wand + hashes (wand size=3): 405, 261, 409, 270 -> 000a9227|122, 10, 126, 14 -> 0000f22f|163, ... 2016-08-01 13:10:41
Lua instructions: 565849k (53737 ms)

[raw result]
[visualize]
#1000268 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 12:56:10

[raw result]
[visualize]
#1000262 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 12:20:47

[raw result]
[visualize]
#1000261 Magic Wand + hashes (wand size=3): 466, 188, 480, 207 -> 003cd992|383, 621, 406, 629 -> 003a33b9|364... 2016-08-01 12:08:14
Lua instructions: 821407k (78785 ms)

[raw result]
[visualize]
#1000259 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 11:48:08

[raw result]
[visualize]
#1000257 Magic Wand + hashes (wand size=3): 350, 386, 354, 395 -> 000d8691|432, 357, 448, 368 -> 0038fa5c|344... 2016-08-01 11:43:17
Lua instructions: 497961k (47988 ms)

[raw result]
[visualize]
#1000253 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 11:34:37

[raw result]
[visualize]
#1000250 Magic Wand + hashes (wand size=3): 650, 58, 656, 64 -> 0007408a|269, 10, 316, 21 -> 006a8dd0|11, 8, ... 2016-08-01 11:25:38
Lua instructions: 881338k (85989 ms)

[raw result]
[visualize]
#1000248 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 11:17:22

[raw result]
[visualize]
#1000247 Magic Wand + hashes (wand size=3): 194, 41, 208, 54 -> 0036dba5|127, 187, 131, 191 -> 0001fef8|24, 1... 2016-08-01 11:06:20
Lua instructions: 343637k (32152 ms)

[raw result]
[visualize]
#1000245 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 10:49:37

[raw result]
[visualize]
#1000246 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 10:40:15

[raw result]
[visualize]
#1000244 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:48:16

[raw result]
[visualize]
#1000243 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:38:27

[raw result]
[visualize]
#1000241 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:35:20

[raw result]
[visualize]
#1000240 Magic Wand + hashes (wand size=3): 238, 48, 245, 53 -> 0004620e|309, 48, 317, 53 -> 000d3174|37, 46,... 2016-08-01 09:34:57
Lua instructions: 107450k (10244 ms)

[raw result]
[visualize]
#1000239 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:30:44

[raw result]
[visualize]
#1000238 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:24:30

[raw result]
[visualize]
#1000236 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:19:57

[raw result]
[visualize]
#1000235 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 09:01:56

[raw result]
[visualize]
#1000233 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 08:52:46

[raw result]
[visualize]
#1000230 Magic Wand + hashes (wand size=3): 358, 0, 373, 29 -> 00609a46|225, 0, 232, 29 -> 00207eba|309, 0, 3... 2016-08-01 08:44:51
Lua instructions: 858787k (84747 ms)

[raw result]
[visualize]
#1000232 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 08:39:35

[raw result]
[visualize]
#1000229 Magic Wand + hashes (wand size=3): 39, 321, 43, 325 -> 00068802|14, 310, 31, 321 -> 001a33f5|305, 18... 2016-08-01 08:37:32
Lua instructions: 783894k (76807 ms)

[raw result]
[visualize]
#499 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 08:34:29

[raw result]
[visualize]
#500 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 08:34:29

[raw result]
[visualize]
#1000224 Magic Wand + hashes (wand size=3): 1, 1, 15, 13 -> 001ab853|1, 0, 14, 13 -> 005c8a3d|0, 1, 14, 13 ->... 2016-08-01 08:23:12
Lua instructions: 95k (17 ms)

[raw result]
[visualize]
#1000223 Magic Wand + hashes (wand size=3): 1, 1, 14, 13 -> 000bb629|7, 0, 13, 6 -> 0007dfb3|0, 1, 14, 13 -> ... 2016-08-01 08:23:11
Lua instructions: 106k (15 ms)

[raw result]
[visualize]
#1000205 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 07:46:37

[raw result]
[visualize]
#1000206 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 07:41:59

[raw result]
[visualize]
#488 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 07:29:04

[raw result]
[visualize]
#1000221 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 07:09:11

[raw result]
[visualize]
#1000210 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 06:53:57

[raw result]
[visualize]
#1000197 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 05:05:15

[raw result]
[visualize]
#1000196 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 05:01:30

[raw result]
[visualize]
#1000211 Magic Wand + hashes (wand size=3): 98, 17, 116, 26 -> 001a3658|96, 29, 124, 33 -> 000e85ab|119, 17, ... 2016-08-01 04:54:03
Lua instructions: 140169k (13422 ms)

[raw result]
[visualize]
#1000214 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 04:53:40

[raw result]
[visualize]
#1000212 java.lang.OutOfMemoryError: Java heap space 2016-08-01 04:50:01

[raw result]
[visualize]
#1000218 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 04:49:49

[raw result]
[visualize]
#1000216 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 04:49:49

[raw result]
[visualize]
#1000195 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 04:17:46

[raw result]
[visualize]
#1000194 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 03:53:15

[raw result]
[visualize]
#1000189 Magic Wand + hashes (wand size=3): 20, 0, 37, 15 -> 001e1943|326, 2, 334, 10 -> 0003ba5c|317, 6, 323... 2016-08-01 03:33:02
Lua instructions: 316869k (31054 ms)

[raw result]
[visualize]
#1000187 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 03:11:14

[raw result]
[visualize]
#1000186 Magic Wand + hashes (wand size=3): 56, 0, 108, 12 -> 007ba6b9|0, 1, 51, 13 -> 004ce567|54, 1, 108, 1... 2016-08-01 03:04:15
Lua instructions: 634k (69 ms)

[raw result]
[visualize]
#1000185 Magic Wand + hashes (wand size=3): 0, 0, 48, 10 -> 00c0f049 2016-08-01 03:04:14
Lua instructions: 55k (11 ms)

[raw result]
[visualize]
#1000184 Magic Wand + hashes (wand size=3): 0, 0, 48, 13 -> 00030a6d 2016-08-01 02:54:47
Lua instructions: 71k (13 ms)

[raw result]
[visualize]
#1000183 Magic Wand + hashes (wand size=3): 0, 0, 45, 12 -> 004aea5a 2016-08-01 02:54:45
Lua instructions: 57k (19 ms)

[raw result]
[visualize]
#1000182 Magic Wand + hashes (wand size=3): 0, 0, 63, 12 -> 00d3e46d 2016-08-01 02:54:42
Lua instructions: 83k (15 ms)

[raw result]
[visualize]
#1000181 Magic Wand + hashes (wand size=3): 0, 0, 50, 10 -> 00adb081 2016-08-01 02:54:26
Lua instructions: 56k (26 ms)

[raw result]
[visualize]
#1000180 Magic Wand + hashes (wand size=3): 181, 18, 187, 29 -> 00185e0f|161, 78, 179, 91 -> 002af9a5|105, 21... 2016-08-01 02:53:51
Lua instructions: 121624k (11867 ms)

[raw result]
[visualize]
#1000179 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 02:50:31

[raw result]
[visualize]
#1000178 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 02:34:47

[raw result]
[visualize]
#1000177 Magic Wand + hashes (wand size=3): 64, 102, 117, 115 -> 00b5986f|171, 105, 175, 110 -> 0002960b|120,... 2016-08-01 02:19:59
Lua instructions: 355733k (34264 ms)

[raw result]
[visualize]
#1000176 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 02:14:50

[raw result]
[visualize]
#1000175 Magic Wand + hashes (wand size=3): 31, 55, 81, 99 -> 0191787f|102, 54, 169, 69 -> 01739c4b|17, 18, 3... 2016-08-01 02:02:10
Lua instructions: 267712k (25807 ms)

[raw result]
[visualize]
#1000172 Magic Wand + hashes (wand size=3): 92, 45, 116, 81 -> 01d4a00a|256, 107, 293, 125 -> 00c82533|160, 1... 2016-08-01 01:55:52
Lua instructions: 26238k (3093 ms)

[raw result]
[visualize]
#1000173 Magic Wand + hashes (wand size=3): 256, 107, 293, 125 -> 00c9e5a7|160, 112, 183, 121 -> 0067193b|91,... 2016-08-01 01:55:27
Lua instructions: 26085k (2603 ms)

[raw result]
[visualize]
#1000171 Magic Wand + hashes (wand size=3): 576, 9, 620, 34 -> 01353eae|564, 1, 573, 34 -> 006e67ec|669, 6, 6... 2016-08-01 01:48:14
Lua instructions: 28215k (2669 ms)

[raw result]
[visualize]
#1000170 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-08-01 01:40:18

[raw result]
[visualize]
#1000169 Magic Wand + hashes (wand size=3): 0, 7, 19, 22 -> 005b37c2|39, 30, 63, 42 -> 000887b4|229, 30, 277,... 2016-08-01 01:26:55
Lua instructions: 223773k (22483 ms)

[raw result]
[visualize]
#1000168 Magic Wand + hashes (wand size=3): 92, 0, 100, 5 -> 000b9820 2016-08-01 01:16:00
Lua instructions: 1452k (150 ms)

[raw result]
[visualize]
#1000166 Magic Wand + hashes (wand size=3): 142, 55, 161, 69 -> 007c7fe6|258, 52, 274, 69 -> 00297b9b|4, 78, ... 2016-08-01 01:11:01
Lua instructions: 311894k (30752 ms)

[raw result]
[visualize]
#1000167 Magic Wand + hashes (wand size=3): 142, 55, 161, 69 -> 007c7fe6|12, 53, 27, 71 -> 0053f11d|258, 52, ... 2016-08-01 01:10:30
Lua instructions: 313800k (30263 ms)

[raw result]
[visualize]
#1000164 Magic Wand + hashes (wand size=3): 0, 0, 59, 21 -> 01d477b6 2016-08-01 01:04:03
Lua instructions: 108k (17 ms)

[raw result]
[visualize]
#1003828 Magic Wand + hashes (wand size=3): 378, 75, 386, 83 -> 00169d4a|444, 128, 460, 151 -> 00707aed|162, ... 2016-08-01 00:57:35
Lua instructions: 939366k

[raw result]
[visualize]
#1000163 Magic Wand + hashes (wand size=3): 213, 56, 243, 63 -> 00216087|155, 56, 161, 65 -> 001baac8|162, 58... 2016-07-31 23:53:00
Lua instructions: 51532k (5547 ms)

[raw result]
[visualize]
#1000162 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 23:21:07

[raw result]
[visualize]
#1000161 Magic Wand + hashes (wand size=3): 52, 69, 71, 82 -> 0031cfee|11, 36, 19, 46 -> 000c7914|22, 554, 28... 2016-07-31 23:18:22
Lua instructions: 75908k (7170 ms)

[raw result]
[visualize]
#1000159 Magic Wand + hashes (wand size=3): 2, 640, 11, 644 -> 00059d1d|5, 6, 10, 11 -> 0001a89d|4, 640, 13, ... 2016-07-31 23:12:16
Lua instructions: 3618k (360 ms)

[raw result]
[visualize]
#1000158 Magic Wand + hashes (wand size=3): 4, 30, 26, 42 -> 0075613a|0, 7, 19, 22 -> 005b37c2|6, 30, 27, 42 ... 2016-07-31 23:11:58
Lua instructions: 1240k (235 ms)

[raw result]
[visualize]
#1000157 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 22:51:15

[raw result]
[visualize]
#1000156 Magic Wand + hashes (wand size=3): 56, 23, 75, 36 -> 0031cfee|14, 22, 33, 38 -> 004a67d4|54, 23, 72,... 2016-07-31 22:36:38
Lua instructions: 248696k (24099 ms)

[raw result]
[visualize]
#1000155 Magic Wand + hashes (wand size=3): 81, 2, 91, 13 -> 0006e4ac|478, 2, 546, 15 -> 0069d674|33, 3, 72, ... 2016-07-31 22:28:49
Lua instructions: 389693k (38067 ms)

[raw result]
[visualize]
#1000154 Magic Wand + hashes (wand size=3): 778, 24, 786, 33 -> 00049010|375, 28, 381, 33 -> 0002b873|44, 77,... 2016-07-31 22:27:12
Lua instructions: 203857k (19012 ms)

[raw result]
[visualize]
#1000152 Magic Wand + hashes (wand size=3): 557, 30, 562, 36 -> 000aa5c4|428, 28, 522, 38 -> 019d2d57|290, 28... 2016-07-31 22:22:07
Lua instructions: 153241k (14508 ms)

[raw result]
[visualize]
#1000153 Magic Wand + hashes (wand size=3): 507, 0, 547, 15 -> 00712a8a|446, 2, 461, 13 -> 0071b710|682, 2, 6... 2016-07-31 22:21:45
Lua instructions: 220025k (21000 ms)

[raw result]
[visualize]
#1000150 Magic Wand + hashes (wand size=3): 557, 30, 562, 36 -> 000aa5c4|428, 28, 522, 38 -> 019d2d57|290, 28... 2016-07-31 22:21:05
Lua instructions: 152595k (14546 ms)

[raw result]
[visualize]
#1000151 Magic Wand + hashes (wand size=3): 507, 0, 547, 15 -> 000f5092|222, 5, 247, 12 -> 0012eb24|446, 2, 4... 2016-07-31 22:20:43
Lua instructions: 218766k (21265 ms)

[raw result]
[visualize]
#1000149 Magic Wand + hashes (wand size=3): 264, 33, 268, 37 -> 0002a7d8|150, 26, 225, 39 -> 01264798|616, 46... 2016-07-31 22:19:35
Lua instructions: 112016k (11600 ms)

[raw result]
[visualize]
#1000148 Magic Wand + hashes (wand size=3): 1, 31, 13, 42 -> 00039368|85, 2, 102, 12 -> 00137a2f|190, 30, 195... 2016-07-31 22:13:41
Lua instructions: 47465k (4349 ms)

[raw result]
[visualize]
#1000144 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 21:46:05

[raw result]
[visualize]
#1000145 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 21:42:13

[raw result]
[visualize]
#1000143 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 21:31:24

[raw result]
[visualize]
#1000142 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 21:20:45

[raw result]
[visualize]
#1000140 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:58:16

[raw result]
[visualize]
#1000138 Magic Wand + hashes (wand size=3): 308, 179, 334, 189 -> 007c31d1|624, 461, 671, 475 -> 00fc2e17|35,... 2016-07-31 20:55:01
Lua instructions: 402107k (35806 ms)

[raw result]
[visualize]
#1000137 Magic Wand + hashes (wand size=3): 447, 352, 484, 366 -> 000a1477|90, 416, 97, 431 -> 003ae4de|624, ... 2016-07-31 20:54:04
Lua instructions: 402486k (36272 ms)

[raw result]
[visualize]
#1000139 Magic Wand + hashes (wand size=3): 308, 179, 334, 189 -> 007c31d1|35, 10, 39, 20 -> 00079ba4|90, 416... 2016-07-31 20:53:16
Lua instructions: 553731k (51198 ms)

[raw result]
[visualize]
#1000136 Magic Wand + hashes (wand size=3): 421, 190, 447, 202 -> 006f6c39|397, 193, 447, 202 -> 0074d379|452... 2016-07-31 20:48:12
Lua instructions: 579962k (57306 ms)

[raw result]
[visualize]
#1000132 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:45:07

[raw result]
[visualize]
#1000131 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:35:23

[raw result]
[visualize]
#1000130 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:27:23

[raw result]
[visualize]
#1000128 Magic Wand + hashes (wand size=3): 0, 0, 7, 17 -> 0002e24d 2016-07-31 20:21:26
Lua instructions: 61k (12 ms)

[raw result]
[visualize]
#1000129 Magic Wand + hashes (wand size=3): 0, 0, 7, 17 -> 0002e222 2016-07-31 20:21:26
Lua instructions: 61k (14 ms)

[raw result]
[visualize]
#1000127 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:17:22

[raw result]
[visualize]
#1000125 Magic Wand + hashes (wand size=3): 168, 272, 175, 285 -> 001bea6f|152, 194, 173, 204 -> 006b46c8|40,... 2016-07-31 20:10:02
Lua instructions: 420516k (39901 ms)

[raw result]
[visualize]
#1000124 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 20:06:00

[raw result]
[visualize]
#1000123 Magic Wand + hashes (wand size=3): 7, 200, 23, 216 -> 00277b4f|91, 368, 97, 379 -> 000a3133|26, 346,... 2016-07-31 20:03:34
Lua instructions: 157865k (14598 ms)

[raw result]
[visualize]
#1000122 Magic Wand + hashes (wand size=3): 14, 8, 78, 20 -> 01f487f3|24, 210, 39, 228 -> 00144667|19, 26, 10... 2016-07-31 20:02:32
Lua instructions: 73026k (6422 ms)

[raw result]
[visualize]
#419 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 20:02:18

[raw result]
[visualize]
#1000120 Magic Wand + hashes (wand size=3): 0, 0, 81, 11 -> 01254317|0, 0, 47, 11 -> 00cfc842|51, 0, 81, 11 -... 2016-07-31 20:01:21
Lua instructions: 259k (131 ms)

[raw result]
[visualize]
#1000118 Magic Wand + hashes (wand size=3): 104, 322, 115, 336 -> 000aeea2|0, 2, 67, 11 -> 004ae65f|24, 210, ... 2016-07-31 20:00:44
Lua instructions: 73955k (6826 ms)

[raw result]
[visualize]
#1000116 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:53:40

[raw result]
[visualize]
#1000114 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:53:40

[raw result]
[visualize]
#1000117 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:53:23

[raw result]
[visualize]
#1000112 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:13

[raw result]
[visualize]
#1000035 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:56

[raw result]
[visualize]
#1000019 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:56

[raw result]
[visualize]
#1000038 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:55

[raw result]
[visualize]
#1000020 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:55

[raw result]
[visualize]
#1000018 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:55

[raw result]
[visualize]
#1000021 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:54

[raw result]
[visualize]
#1000041 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:54

[raw result]
[visualize]
#1000040 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:54

[raw result]
[visualize]
#115 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:54

[raw result]
[visualize]
#1000039 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:54

[raw result]
[visualize]
#1000022 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:54

[raw result]
[visualize]
#1000034 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#1000024 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:53

[raw result]
[visualize]
#100 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#1000013 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#309 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#112 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#1000003 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:53

[raw result]
[visualize]
#1000010 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:52

[raw result]
[visualize]
#1000027 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:52

[raw result]
[visualize]
#1000017 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:49:51

[raw result]
[visualize]
#1000083 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:51

[raw result]
[visualize]
#1000086 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:51

[raw result]
[visualize]
#1000097 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:51

[raw result]
[visualize]
#1000054 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:51

[raw result]
[visualize]
#1000079 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:49

[raw result]
[visualize]
#1000036 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000055 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000073 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000076 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#84 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000084 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000100 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:48

[raw result]
[visualize]
#1000087 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000091 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000088 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000077 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000074 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000081 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000078 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000105 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000104 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:47

[raw result]
[visualize]
#183 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:47

[raw result]
[visualize]
#1000012 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000082 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000062 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000092 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000093 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000106 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:46

[raw result]
[visualize]
#1000031 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:45

[raw result]
[visualize]
#85 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:45

[raw result]
[visualize]
#1000109 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:45

[raw result]
[visualize]
#1000014 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:45

[raw result]
[visualize]
#1000056 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:45

[raw result]
[visualize]
#1000042 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:44

[raw result]
[visualize]
#1000051 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:44

[raw result]
[visualize]
#1000064 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:44

[raw result]
[visualize]
#1000032 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:44

[raw result]
[visualize]
#1000075 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:44

[raw result]
[visualize]
#1000025 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:49:41

[raw result]
[visualize]
#1000095 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:41

[raw result]
[visualize]
#1000085 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:41

[raw result]
[visualize]
#1000047 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:40

[raw result]
[visualize]
#87 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:40

[raw result]
[visualize]
#1000101 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:38

[raw result]
[visualize]
#1000103 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:37

[raw result]
[visualize]
#1000046 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:37

[raw result]
[visualize]
#113 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:37

[raw result]
[visualize]
#48 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:37

[raw result]
[visualize]
#1000045 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:35

[raw result]
[visualize]
#92 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:33

[raw result]
[visualize]
#1000102 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:32

[raw result]
[visualize]
#93 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:32

[raw result]
[visualize]
#1000096 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:32

[raw result]
[visualize]
#1000089 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:32

[raw result]
[visualize]
#1000033 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:30

[raw result]
[visualize]
#98 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:30

[raw result]
[visualize]
#1000061 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:30

[raw result]
[visualize]
#1000026 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:29

[raw result]
[visualize]
#1000107 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:29

[raw result]
[visualize]
#1000044 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:27

[raw result]
[visualize]
#178 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:27

[raw result]
[visualize]
#1000052 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:26

[raw result]
[visualize]
#1000043 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#145 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000030 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000028 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000111 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000029 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000110 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:25

[raw result]
[visualize]
#1000108 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:24

[raw result]
[visualize]
#1000099 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:24

[raw result]
[visualize]
#1000080 LuaError: #402:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:49:24

[raw result]
[visualize]
#1000219 java.lang.OutOfMemoryError: Java heap space 2016-07-31 18:51:32

[raw result]
[visualize]
#1003745 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 18:51:22

[raw result]
[visualize]
#489 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 18:51:22

[raw result]
[visualize]
#1000141 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 18:45:14

[raw result]
[visualize]
#1003958 LuaError: LuaTimeOutSandbox.loader:17 timeout <1000000k> 2016-07-31 18:34:16

[raw result]
[visualize]

Snippet ID: #402
Snippet name: Magic Wand + Hashes (optimized III)
Eternal ID of this version: #402/1
Text MD5: d2cbcd548452d1cdf3af6f5cb62707c5
Author: stefan
Category: image recognition
Type: Lua code - Image recognition
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-02-05 14:57:28
Source code size: 5188 bytes / 205 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 2099 / 180
Referenced in: #403 - Magic Wand + Hashes (one column)
#3000188 - Answer for stefanreich(>> t search)
#3000202 - Answer for stefanreich (>> T conversion bot)
#3000238 - Answer for stefanreich (>> t power bot)
#3000382 - Answer for ferdie (>> t = 1, f = 0)
#3000383 - Answer for funkoverflow (>> t=1, f=0 okay)