from heapq import heappop, heappush H, W, T = map(int, input().split()) sy, sx = map(int, input().split()) gy, gx = map(int, input().split()) grid = [list(input()) for _ in range(H)] sy -= 1 sx -= 1 gy -= 1 gx -= 1 dx = [1, 0, -1, 0] dy = [0, 1, 0, -1] def is_reachable(mid): INF = 10**18 dist = [[INF]*W for _ in range(H)] dist[sy][sx] = 0 heap = [(0, sy, sx)] while heap: d, y, x = heappop(heap) if d > dist[y][x]: continue for i in range(4): nx, ny = x + dx[i], y + dy[i] if nx < 0 or W <= nx or ny < 0 or H <= ny: continue cost = mid if grid[ny][nx] == '#' else 1 if d + cost < dist[ny][nx]: dist[ny][nx] = d + cost heappush(heap, (d + cost, ny, nx)) return dist[gy][gx] <= T left, right = 1, T while right - left > 1: mid = (left + right) // 2 if is_reachable(mid): left = mid else: right = mid print('Yes' if left != 1 else 'No')