discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNUstep app fails on Ubuntu 16 - found workaround


From: Andreas Höschler
Subject: Re: GNUstep app fails on Ubuntu 16 - found workaround
Date: Sat, 9 May 2020 20:28:45 +0200

Hi Fred,

Thank you Andreas for pinning this down. Sadly your solution cannot be used directly. That way all text views or text cell would result in a height of zero. The returned size here has to include at least the height of a new line. This gets handled in the class GSLayoutManager (around line 2600) by adding the extra used rectangle to the returned rectangle.

If you still got time to look further it would help to know, how big the extra_used_rect is in your case and where these values come from. Maybe we fail to initialise the value correctly? That value should get set by the class GSHorizontalTypesetter (line 555). If the wrong value comes from there then the current font is to blame. Could you please inspect that?

Again thank you very much!


I inserted a bunch of log statements. See below for the modified code:


- (NSSize)minimumSizeForContent
{
   //   NSLog(@"%@ minimumSizeForContent", self);
   NSRect oldFrame;
   NSSize minimumSize;
   
   /* Save the oldFrame.  */
   oldFrame = [self frame];
   
   /* Resize the view to fit the contents ... this is the only
   * way available in the AppKit to get the minimum size.  */
   [self sizeToFitContent];
   
   /* Get the minimum size by reading the frame.  */
   minimumSize = [self frame].size;
   
   if (minimumSize.height > 100000) NSLog(@"%@::sizeToFitContent produced bullshit %@", self, NSStringFromSize(minimumSize));
   
   /* Restore the original frame.  */
   [self setFrame:oldFrame];
   return minimumSize;
}



@implementation NSControl (sizeToContent)

- (void)sizeToFitContent
{
//   NSLog(@"%@ sizeToFitContent (sizeToFit) ...", self);
   [self sizeToFit];
   NSSize size = [self frame].size;
   if (size.height  > 10000.0)
     {
      NSLog(@"Got height %f. We correct this ...", size.height);
      [self setFrameSize: NSMakeSize(size.width, 24.0)]; // <-- just some phantaise value
     }
  }

@end


./Source/NSControl.m:- (void) sizeToFit

- (void) sizeToFit
{
   [self setFrameSize:[_cell cellSize]];
}


./Source/NSButtonCell.m:- (NSSize) cellSize

- (NSSize) cellSize
{
...
     if (imageToDisplay)
    {
      imageSize = [imageToDisplay size];
    }

  if (titleToDisplay != nil)
    {
     titleSize = [titleToDisplay size];
    }
  ...
  
 }



pico ./Source/NSStringDrawing.m

@implementation NSAttributedString (NSStringDrawing)

- (NSSize) size
{
  if ([self length] == 0) return NSZeroSize; // <-- inserted this

  NSRect usedRect = [self boundingRectWithSize: NSZeroSize
                                       options: NSStringDrawingUsesLineFragmentOrigin];
  return usedRect.size;
}

- (NSRect) boundingRectWithSize: (NSSize)size
                        options: (NSStringDrawingOptions)options
{
  // FIXME: This ignores options
  cache_t *c;
  NSRect result = NSZeroRect;
  BOOL hasSize = !NSEqualSizes(NSZeroSize, size);

  cache_lock();
  NS_DURING
    {    
     prepare_attributed_string(self);
     c = cache_lookup(hasSize, size, YES);
     result = c->usedRect;
    NSLog(@"In attributed string and got result from  c->usedRect %@", NSStringFromRect(result));
    }
  NS_HANDLER
    {
     cache_unlock();
     [localException raise];
    }
  NS_ENDHANDLER;
  cache_unlock();
  
  return result;
 }

@end



static cache_t *cache_lookup(BOOL hasSize, NSSize size, BOOL useScreenFonts)
  {
   BOOL hit;
   cache_t *c;
   cache_t *scratch = cache + NUM_CACHE_ENTRIES;
   
   scratch->used = 1;
   scratch->string_hash = [[scratch->textStorage string] hash];
   scratch->hasSize = hasSize;
   scratch->useScreenFonts = useScreenFonts;
   scratch->givenSize = size;
   
   c = cache_match(scratch, &hit);
   NSLog(@"cache_lookup hit %d", hit);
   if (!hit)
    {
      // Swap c and scratch
      cache_t temp;

      temp = *c;
      *c = *scratch;
      *scratch = temp;

      // Cache miss, need to set up the text system
      if (hasSize)
        {
          [c->textContainer setContainerSize: NSMakeSize(size.width, size.height)];
        }
      else
        {
         [c->textContainer setContainerSize: NSMakeSize(LARGE_SIZE, LARGE_SIZE)];
        }
      [c->layoutManager setUsesScreenFonts: useScreenFonts];
      // Layout the whole container
      [c->layoutManager glyphRangeForTextContainer: c->textContainer];
      c->usedRect = [c->layoutManager usedRectForTextContainer: c->textContainer]; // <----
     }
   
   return c;
  }



pico ./Source/GSLayoutManager.m

/* The union of all line frag rects' used rects. */
- (NSRect) usedRectForTextContainer: (NSTextContainer *)container
{
  textcontainer_t *tc;
  linefrag_t *lf;
  int i;
  NSRect used;

  for (i = 0, tc = textcontainers; i < num_textcontainers; i++, tc++)
    if (tc->textContainer == container)
      break;
  if (i == num_textcontainers)
    {
      NSLog(@"%s: doesn't own text container", __PRETTY_FUNCTION__);
      return NSMakeRect(0, 0, 0, 0);
    }
  if (!tc->complete)
    {
      [self _doLayoutToContainer: i];
      tc = textcontainers + i;
    }

  if (tc->usedRectValid)
    {
      used = tc->usedRect;
      NSLog(@"A %@", NSStringFromRect(used));
      if (tc->textContainer == extra_textcontainer)
        {
         NSLog(@"B %@", NSStringFromRect(extra_used_rect));
          used = NSUnionRect(used, extra_used_rect);
         NSLog(@"C %@", NSStringFromRect(used));
     }
      return used;
    }

  if (tc->num_linefrags)
    {
     double x0, y0, x1, y1;
     i = 0;
     lf = tc->linefrags;
     x0 = NSMinX(lf->used_rect);
     y0 = NSMinY(lf->used_rect);
     x1 = NSMaxX(lf->used_rect);
     y1 = NSMaxY(lf->used_rect);
     NSLog(@"x0 %f y0 %f x1 %f y1 %f", x0, y0, x1, y1);
      for (i++, lf++; i < tc->num_linefrags; i++, lf++)
        {
         if (NSMinX(lf->used_rect) < x0)
         x0 = NSMinX(lf->used_rect);
         if (NSMinY(lf->used_rect) < y0)
         y0 = NSMinY(lf->used_rect);
         if (NSMaxX(lf->used_rect) > x1)
         x1 = NSMaxX(lf->used_rect);
         if (NSMaxY(lf->used_rect) > y1)
         y1 = NSMaxY(lf->used_rect);
         NSLog(@"i %d x0 %f y0 %f x1 %f y1 %f", i, x0, y0, x1, y1);
        }
      NSLog(@"final x0 %f y0 %f x1 %f y1 %f", x0, y0, x1, y1);
      used = NSMakeRect(x0, y0, x1 - x0, y1 - y0);
       NSLog(@"D %@", NSStringFromRect(used));
     }
  else
    {
      used = NSZeroRect;
    }  
  tc->usedRect = used;
  tc->usedRectValid = YES;
  if (tc->textContainer == extra_textcontainer)
    {     
     used = NSUnionRect(used, extra_used_rect);
      NSLog(@" tc->textContainer == extra_textcontainer used %@", NSStringFromRect(used));
    }
  return used;
}



And here is the output that is logged when opening the form with the image button. Search for "Got height 10000004.000000. We correct this ..." and examine the lines above. Does this give us a clue? I unfortunately get lost in the usedRectForTextContainer: method. :-)

Thanks for looking into this!!!

Best wishes,

 Andreas












2020-05-09 20:19:34.940 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.941 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 93.000000 y1 14.000000
2020-05-09 20:19:34.941 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 93.000000 y1 14.000000
2020-05-09 20:19:34.942 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 93; height = 14}
2020-05-09 20:19:34.943 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.943 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 126.000000 y1 14.000000
2020-05-09 20:19:34.943 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 126.000000 y1 14.000000
2020-05-09 20:19:34.944 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 126; height = 14}
2020-05-09 20:19:34.945 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.945 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 384.000000 y1 14.000000
2020-05-09 20:19:34.945 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 384.000000 y1 14.000000
2020-05-09 20:19:34.945 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 384; height = 14}
2020-05-09 20:19:34.946 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.947 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 36.000000 y1 14.000000
2020-05-09 20:19:34.947 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 36.000000 y1 14.000000
2020-05-09 20:19:34.947 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 36; height = 14}
2020-05-09 20:19:34.948 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.949 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 112.000000 y1 14.000000
2020-05-09 20:19:34.949 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 112.000000 y1 14.000000
2020-05-09 20:19:34.949 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 112; height = 14}
2020-05-09 20:19:34.950 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.950 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 155.000000 y1 14.000000
2020-05-09 20:19:34.950 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 155.000000 y1 14.000000
2020-05-09 20:19:34.950 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 155; height = 14}
2020-05-09 20:19:34.952 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.952 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 130.000000 y1 14.000000
2020-05-09 20:19:34.952 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 130.000000 y1 14.000000
2020-05-09 20:19:34.952 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 130; height = 14}
2020-05-09 20:19:34.953 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.953 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:34.954 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:34.954 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 162; height = 14}
2020-05-09 20:19:34.955 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.956 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:34.956 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:34.956 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:34.957 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.958 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:34.958 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:34.958 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:34.960 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.960 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:34.960 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:34.961 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:34.962 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:34.962 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:34.963 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.964 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:34.964 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:34.964 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:34.965 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.965 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 237.000000 y1 14.000000
2020-05-09 20:19:34.966 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 237.000000 y1 14.000000
2020-05-09 20:19:34.966 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 237; height = 14}
2020-05-09 20:19:34.967 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.968 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 239.000000 y1 14.000000
2020-05-09 20:19:34.968 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 239.000000 y1 14.000000
2020-05-09 20:19:34.968 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 239; height = 14}
2020-05-09 20:19:34.969 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.970 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 335.000000 y1 14.000000
2020-05-09 20:19:34.970 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 335.000000 y1 14.000000
2020-05-09 20:19:34.970 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 335; height = 14}
2020-05-09 20:19:34.971 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.972 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:34.972 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:34.972 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 96; height = 14}
2020-05-09 20:19:34.973 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.974 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 335.000000 y1 14.000000
2020-05-09 20:19:34.974 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 335.000000 y1 14.000000
2020-05-09 20:19:34.974 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 335; height = 14}
2020-05-09 20:19:34.975 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:34.976 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.977 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 166.000000 y1 14.000000
2020-05-09 20:19:34.977 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 166.000000 y1 14.000000
2020-05-09 20:19:34.977 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 166; height = 14}
2020-05-09 20:19:34.978 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.978 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 221.000000 y1 14.000000
2020-05-09 20:19:34.979 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 221.000000 y1 14.000000
2020-05-09 20:19:34.979 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 221; height = 14}
2020-05-09 20:19:34.980 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.980 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 251.000000 y1 14.000000
2020-05-09 20:19:34.981 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 251.000000 y1 14.000000
2020-05-09 20:19:34.981 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 251; height = 14}
2020-05-09 20:19:34.982 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.982 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:34.983 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:34.983 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 42; height = 14}
2020-05-09 20:19:34.984 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.984 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 130.000000 y1 14.000000
2020-05-09 20:19:34.985 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 130.000000 y1 14.000000
2020-05-09 20:19:34.985 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 130; height = 14}
2020-05-09 20:19:34.986 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:34.987 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.988 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 211.000000 y1 14.000000
2020-05-09 20:19:34.988 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 211.000000 y1 14.000000
2020-05-09 20:19:34.988 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 211; height = 14}
2020-05-09 20:19:34.989 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.990 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:34.990 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:34.990 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:34.991 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.992 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:34.992 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:34.992 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:34.993 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.993 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 152.000000 y1 14.000000
2020-05-09 20:19:34.994 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 152.000000 y1 14.000000
2020-05-09 20:19:34.994 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 152; height = 14}
2020-05-09 20:19:34.995 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.995 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:34.996 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:34.996 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:34.997 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.997 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:34.997 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:34.998 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 76; height = 14}
2020-05-09 20:19:34.999 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:34.999 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 93.000000 y1 14.000000
2020-05-09 20:19:35.000 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 93.000000 y1 14.000000
2020-05-09 20:19:35.001 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 93; height = 14}
2020-05-09 20:19:35.002 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:35.002 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 126.000000 y1 14.000000
2020-05-09 20:19:35.003 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 126.000000 y1 14.000000
2020-05-09 20:19:35.003 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 126; height = 14}
2020-05-09 20:19:35.004 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:35.005 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:35.006 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:35.006 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:35.007 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:35.007 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:35.008 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:36.654 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.655 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.655 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.656 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:36.662 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.663 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.663 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.664 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 78; height = 14}
2020-05-09 20:19:36.664 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.665 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.665 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.665 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 78; height = 14}
2020-05-09 20:19:36.666 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.667 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:36.667 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:36.667 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:36.668 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.668 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:36.668 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:36.669 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:36.670 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.670 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:36.670 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:36.671 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:36.671 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.672 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:36.672 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:36.672 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:36.673 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.674 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:36.674 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:36.674 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:36.674 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.675 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:36.675 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:36.676 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:36.676 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.677 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 115.000000 y1 14.000000
2020-05-09 20:19:36.677 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 115.000000 y1 14.000000
2020-05-09 20:19:36.678 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 115; height = 14}
2020-05-09 20:19:36.678 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.679 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 115.000000 y1 14.000000
2020-05-09 20:19:36.679 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 115.000000 y1 14.000000
2020-05-09 20:19:36.679 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 115; height = 14}
2020-05-09 20:19:36.681 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.681 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.681 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.682 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 78; height = 14}
2020-05-09 20:19:36.682 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.683 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.683 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 78.000000 y1 14.000000
2020-05-09 20:19:36.683 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 78; height = 14}
2020-05-09 20:19:36.684 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.685 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:36.685 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:36.685 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 76; height = 14}
2020-05-09 20:19:36.686 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.686 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:36.686 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 76.000000 y1 14.000000
2020-05-09 20:19:36.688 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 76; height = 14}
2020-05-09 20:19:36.689 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.689 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:36.689 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:36.690 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:36.690 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.691 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:36.691 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:36.691 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:36.692 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.693 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 79.000000 y1 14.000000
2020-05-09 20:19:36.693 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 79.000000 y1 14.000000
2020-05-09 20:19:36.693 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 79; height = 14}
2020-05-09 20:19:36.694 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.694 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 79.000000 y1 14.000000
2020-05-09 20:19:36.695 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 79.000000 y1 14.000000
2020-05-09 20:19:36.695 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 79; height = 14}
2020-05-09 20:19:36.696 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.696 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:36.697 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:36.697 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:36.697 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.698 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:36.699 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:36.699 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:36.700 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.701 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:36.701 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:36.701 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 46; height = 14}
2020-05-09 20:19:36.702 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.702 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:36.703 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:36.703 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 46; height = 14}
2020-05-09 20:19:36.704 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.705 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:36.705 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:36.705 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 65; height = 14}
2020-05-09 20:19:36.706 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.706 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:36.707 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:36.707 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 65; height = 14}
2020-05-09 20:19:36.708 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.708 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:36.709 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:36.709 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:36.709 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.710 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:36.710 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:36.710 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:36.711 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.711 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.711 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.711 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:36.711 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.712 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.712 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.712 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:36.713 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.713 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:36.713 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:36.714 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 40; height = 14}
2020-05-09 20:19:36.714 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.714 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:36.714 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:36.715 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 40; height = 14}
2020-05-09 20:19:36.715 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.715 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:36.715 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:36.715 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:36.716 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.716 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:36.716 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:36.716 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:36.717 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.717 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:36.717 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:36.717 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:36.717 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.718 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:36.718 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:36.718 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:36.718 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.718 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:36.719 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:36.720 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.720 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:36.721 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:36.721 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:36.721 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.721 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:36.721 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:36.722 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:36.722 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.722 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.723 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.723 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:36.723 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.723 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.724 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:36.724 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:36.728 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.729 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.729 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.729 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:36.729 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:36.730 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:36.730 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.730 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.731 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:36.731 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:36.732 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.732 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:36.732 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:36.733 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 31; height = 14}
2020-05-09 20:19:36.733 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:36.733 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:36.733 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:36.734 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:36.734 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:36.734 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 31; height = 14}
2020-05-09 20:19:38.382 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.383 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.383 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.384 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:38.384 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.385 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:38.385 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:38.385 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:38.385 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.386 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.386 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.387 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.387 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 154; height = 14}
2020-05-09 20:19:38.387 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.388 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.388 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 147.000000 y1 14.000000
2020-05-09 20:19:38.388 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 147.000000 y1 14.000000
2020-05-09 20:19:38.388 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 147; height = 14}
2020-05-09 20:19:38.389 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.389 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.389 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.390 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.390 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 144; height = 14}
2020-05-09 20:19:38.391 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.391 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.391 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.392 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.392 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:38.392 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.393 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.393 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.394 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.394 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 110; height = 14}
2020-05-09 20:19:38.394 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.395 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.395 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.396 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.396 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.396 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.397 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.397 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.397 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.398 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 148; height = 14}
2020-05-09 20:19:38.398 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.398 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.399 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.399 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.400 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 162; height = 14}
2020-05-09 20:19:38.400 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.400 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.401 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.401 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.402 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.402 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.403 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.403 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.403 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.403 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.404 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.404 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.405 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:38.405 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:38.405 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:38.406 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.406 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.406 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.407 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.407 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.407 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.408 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.409 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.409 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.409 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 143; height = 14}
2020-05-09 20:19:38.409 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.409 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.410 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 140; height = 14}
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.411 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.412 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.413 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.413 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.413 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 100; height = 14}
2020-05-09 20:19:38.413 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.413 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.414 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.414 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.414 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 108; height = 14}
2020-05-09 20:19:38.414 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 96; height = 14}
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.415 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.416 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.416 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.416 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.416 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.416 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.417 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.417 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.417 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.417 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.418 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.418 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.418 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.418 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:38.418 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 178; height = 14}
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.419 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.420 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.421 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:38.421 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.426 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.427 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.427 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:38.428 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:38.428 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:38.428 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.429 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 154; height = 14}
2020-05-09 20:19:38.430 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.430 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.430 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 154.000000 y1 14.000000
2020-05-09 20:19:38.430 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 154; height = 14}
2020-05-09 20:19:38.430 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.431 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.431 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:38.431 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.431 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.432 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 147.000000 y1 14.000000
2020-05-09 20:19:38.432 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 147.000000 y1 14.000000
2020-05-09 20:19:38.432 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 147; height = 14}
2020-05-09 20:19:38.432 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.432 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.433 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.433 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.433 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.433 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 144; height = 14}
2020-05-09 20:19:38.434 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.434 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.434 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 144.000000 y1 14.000000
2020-05-09 20:19:38.434 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 144; height = 14}
2020-05-09 20:19:38.434 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:38.435 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.436 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.436 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:38.436 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:38.436 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.436 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.437 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.437 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.437 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.437 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 110; height = 14}
2020-05-09 20:19:38.437 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.438 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.438 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 110.000000 y1 14.000000
2020-05-09 20:19:38.438 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 110; height = 14}
2020-05-09 20:19:38.438 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.439 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.439 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.439 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.439 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.439 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.440 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.440 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.440 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.440 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.440 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.441 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.441 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.441 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.441 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.441 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 148; height = 14}
2020-05-09 20:19:38.442 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.442 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.442 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 148.000000 y1 14.000000
2020-05-09 20:19:38.442 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 148; height = 14}
2020-05-09 20:19:38.442 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.443 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.443 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 162; height = 14}
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 162.000000 y1 14.000000
2020-05-09 20:19:38.444 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 162; height = 14}
2020-05-09 20:19:38.445 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.445 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.445 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.446 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.446 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.446 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.446 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.446 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.447 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.447 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.447 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.447 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.448 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.448 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.448 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.448 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.449 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.449 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.449 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.449 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.450 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.450 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.450 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.450 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.451 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:38.451 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:38.451 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:38.451 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.451 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.452 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.452 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.452 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.452 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.453 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.453 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.453 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.453 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.454 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.454 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.454 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.455 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.455 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.455 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 143; height = 14}
2020-05-09 20:19:38.455 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.456 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.456 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 143.000000 y1 14.000000
2020-05-09 20:19:38.456 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 143; height = 14}
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:38.457 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.458 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.458 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:38.458 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:38.458 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 140; height = 14}
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.459 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.460 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 140.000000 y1 14.000000
2020-05-09 20:19:38.460 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 140; height = 14}
2020-05-09 20:19:38.460 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.460 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.461 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.461 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.461 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.461 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.461 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.462 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.462 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:38.462 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:38.462 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.462 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.463 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.463 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.463 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.463 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:38.464 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.464 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.464 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:38.464 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:38.464 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.465 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.465 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.465 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.465 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.466 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 100; height = 14}
2020-05-09 20:19:38.466 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.466 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.466 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 100.000000 y1 14.000000
2020-05-09 20:19:38.466 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 100; height = 14}
2020-05-09 20:19:38.467 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.467 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.467 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.467 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.467 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.468 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 108; height = 14}
2020-05-09 20:19:38.468 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.468 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.468 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 108.000000 y1 14.000000
2020-05-09 20:19:38.468 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 108; height = 14}
2020-05-09 20:19:38.469 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.469 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.469 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.469 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 96; height = 14}
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 96.000000 y1 14.000000
2020-05-09 20:19:38.470 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 96; height = 14}
2020-05-09 20:19:38.471 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.471 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.471 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.472 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 153.000000 y1 14.000000
2020-05-09 20:19:38.473 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 153; height = 14}
2020-05-09 20:19:38.473 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.473 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.473 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.474 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:38.475 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:38.475 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.475 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.475 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.475 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:38.476 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 178; height = 14}
2020-05-09 20:19:38.477 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.478 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.478 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 178.000000 y1 14.000000
2020-05-09 20:19:38.478 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 178; height = 14}
2020-05-09 20:19:38.478 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.478 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.479 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.479 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.479 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.479 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.479 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.480 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.480 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:38.480 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:38.480 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.481 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.481 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.481 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.481 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:38.482 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.483 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.483 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.483 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.483 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.484 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:38.484 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.484 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.484 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:38.484 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:38.489 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.490 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:38.490 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:38.490 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:38.490 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.490 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:38.491 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:38.491 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:38.491 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:38.491 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.071 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.071 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:40.072 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:40.072 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:40.073 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.074 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.074 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.075 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:40.075 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:40.075 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:40.082 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.083 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.147 SOObjectBrowser[4163:4163] controllerForFormWithIdentifier jupiter.smartsoft.internal_1251_181216360_-1027396747_2 --> (null) flag 1
2020-05-09 20:19:40.148 SOObjectBrowser[4163:4163] windowTitle Rundholz Holz Manager
2020-05-09 20:19:40.148 SOObjectBrowser[4163:4163] _formManagerClient <Controller: 0x166d3c0>
2020-05-09 20:19:40.148 SOObjectBrowser[4163:4163] <Controller: 0x166d3c0> responds to createWindowControllerForIdentifier:userInfo:
2020-05-09 20:19:40.149 SOObjectBrowser[4163:4163] _formManagerClient <Controller: 0x166d3c0> userInfo {windowTitle = "Rundholz Holz Manager"; }
2020-05-09 20:19:40.149 SOObjectBrowser[4163:4163] GroupForms 482 UserForms 23
2020-05-09 20:19:40.150 SOObjectBrowser[4163:4163] _intermediateGroupFormDisplayGroup <SODisplayGroup: 0x8914e40> TXGroup_forms displayedObjects 482
2020-05-09 20:19:40.150 SOObjectBrowser[4163:4163] _intermediateUserFormDisplayGroup <SODisplayGroup: 0xb4e9270> TXForm_users displayedObjects 23
2020-05-09 20:19:40.458 SOObjectBrowser[4163:4163] increaseNumberOfFormContexts _numberOfFormContexts 1
2020-05-09 20:19:40.463 SOObjectBrowser[4163:4163] suppressMarginString asked _suppressMargin 0
2020-05-09 20:19:40.463 SOObjectBrowser[4163:4163] modelString asked _modal 0
2020-05-09 20:19:40.465 SOObjectBrowser[4163:4163] suppressMarginString asked _suppressMargin 0
2020-05-09 20:19:40.465 SOObjectBrowser[4163:4163] modelString asked _modal 0
2020-05-09 20:19:40.492 SOObjectBrowser[4163:4163] calling loadGSMarkupFromString with owner <FBMarkupController: 0x34468e0>
2020-05-09 20:19:40.589 SOObjectBrowser[4163:4163] File NSView.m: 1183. In -[NSView setFrame:] given negative width
2020-05-09 20:19:40.589 SOObjectBrowser[4163:4163] File NSView.m: 1190. In -[NSView setFrame:] given negative height
2020-05-09 20:19:40.590 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.590 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.591 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.591 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.591 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.591 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.591 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.592 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.592 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.592 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.593 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.593 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.593 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.593 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.594 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.594 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.594 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.594 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.595 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.595 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.595 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.595 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.595 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.596 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.597 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.597 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 37.000000 y1 14.000000
2020-05-09 20:19:40.598 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 37.000000 y1 14.000000
2020-05-09 20:19:40.598 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 37; height = 14}
2020-05-09 20:19:40.598 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 37; height = 14}
2020-05-09 20:19:40.598 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.599 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:40.599 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:40.599 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 47; height = 14}
2020-05-09 20:19:40.599 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 47; height = 14}
2020-05-09 20:19:40.600 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.600 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.600 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.601 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.601 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.613 SOObjectBrowser[4163:4163] image now <NSImage 0x5512660 Name=(null) Size={width = 7; height = 10} Reps=("<NSBitmapImageRep: 0x4dc4480 size: {width = 7; height = 10} pixelsWide: 7 pixelsHigh: 10 colorSpaceName: NSDeviceRGBColorSpace bps: 8>")>
2020-05-09 20:19:40.614 SOObjectBrowser[4163:4163] imageFound 1
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.615 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.616 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.616 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.616 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.616 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.617 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.618 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.618 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.618 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.618 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.618 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.619 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.619 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.619 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.619 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.619 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.621 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.621 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.622 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.622 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.623 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.624 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.624 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.625 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.625 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.625 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.626 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.626 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.627 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.627 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.627 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.627 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.628 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.628 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.628 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.628 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.629 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.629 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.629 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.629 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.630 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.630 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.630 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.630 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.631 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.631 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.632 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.633 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.634 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.635 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.636 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.637 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.638 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.639 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.640 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.641 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 127; height = 14}
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.642 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 127; height = 14}
2020-05-09 20:19:40.643 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.644 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.655 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 34; height = 14}
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 34; height = 14}
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.656 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 18.000000 y1 14.000000
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 18.000000 y1 14.000000
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 18; height = 14}
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 18; height = 14}
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.657 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.658 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.659 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 39.000000 y1 14.000000
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 39.000000 y1 14.000000
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 39; height = 14}
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 39; height = 14}
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 103; height = 14}
2020-05-09 20:19:40.660 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 103; height = 14}
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 40.000000 y1 14.000000
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 40; height = 14}
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 40; height = 14}
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.661 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.662 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 95.000000 y1 14.000000
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 95.000000 y1 14.000000
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 95; height = 14}
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 95; height = 14}
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 42; height = 14}
2020-05-09 20:19:40.663 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 42; height = 14}
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 20.000000 y1 14.000000
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 20.000000 y1 14.000000
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 20; height = 14}
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 20; height = 14}
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:40.664 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 30.000000 y1 14.000000
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 30.000000 y1 14.000000
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 30; height = 14}
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 30; height = 14}
2020-05-09 20:19:40.665 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 25.000000 y1 14.000000
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 25.000000 y1 14.000000
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 25; height = 14}
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 25; height = 14}
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 70.000000 y1 14.000000
2020-05-09 20:19:40.666 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 70.000000 y1 14.000000
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 70; height = 14}
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 70; height = 14}
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.667 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 37.000000 y1 14.000000
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 37.000000 y1 14.000000
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 37; height = 14}
2020-05-09 20:19:40.668 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 37; height = 14}
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 22.000000 y1 14.000000
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 22.000000 y1 14.000000
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 22; height = 14}
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 22; height = 14}
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 19.000000 y1 14.000000
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 19.000000 y1 14.000000
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 19; height = 14}
2020-05-09 20:19:40.669 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 19; height = 14}
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.670 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.671 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:40.672 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:40.673 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:40.674 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 42.000000 y1 14.000000
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 42; height = 14}
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 42; height = 14}
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:40.675 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 15.000000 y1 14.000000
2020-05-09 20:19:40.676 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 15.000000 y1 14.000000
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 15; height = 14}
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 15; height = 14}
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 27.000000 y1 14.000000
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 27.000000 y1 14.000000
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 27; height = 14}
2020-05-09 20:19:40.677 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 27; height = 14}
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.678 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 62.000000 y1 14.000000
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 62.000000 y1 14.000000
2020-05-09 20:19:40.679 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 62; height = 14}
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 62; height = 14}
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.680 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 101.000000 y1 14.000000
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 101; height = 14}
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 86; height = 14}
2020-05-09 20:19:40.681 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 86; height = 14}
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 102.000000 y1 14.000000
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 102; height = 14}
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.682 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:40.683 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 34; height = 14}
2020-05-09 20:19:40.684 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 34; height = 14}
2020-05-09 20:19:40.688 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.688 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.688 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.688 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.688 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.689 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.690 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.691 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.692 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.693 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.694 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.694 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.694 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.695 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.696 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.697 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.698 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.699 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.700 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.701 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.701 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.701 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.701 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.701 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.702 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.703 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.704 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.705 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.706 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.707 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.708 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] _rootTagObject <GSMarkupTagVBox: 0x530edb0> contentView <GSVBox: 0x1c52c40>
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.709 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.710 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.711 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.712 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.713 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.714 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.715 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.716 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 10.000000 y1 14.000000
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 10.000000 y1 14.000000
2020-05-09 20:19:40.717 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.718 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.719 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.720 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.721 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.722 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.723 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.724 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.725 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.726 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.727 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 127.000000 y1 14.000000
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 127; height = 14}
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.728 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:40.729 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.730 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.731 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.732 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.733 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.734 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.735 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 10.000000 y1 14.000000
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 10.000000 y1 14.000000
2020-05-09 20:19:40.736 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.737 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 10; height = 14}
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.738 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.739 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:40.740 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:40.741 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.742 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 87.000000 y1 14.000000
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 87; height = 14}
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.743 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:40.744 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:40.745 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.746 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:40.747 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.747 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:40.748 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.748 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:40.748 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:40.748 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.748 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:40.749 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.750 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.751 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.752 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.753 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:40.754 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.755 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:40.756 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.757 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.758 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.759 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.760 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:40.761 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:40.762 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.763 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.764 SOObjectBrowser[4163:4163] Reporting button::imagePosition 2
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] Reporting _cell::imagePosition 2
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] Got height 10000004.000000. We correct this ...





2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.765 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.766 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] Reporting button::imagePosition 2
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] Reporting _cell::imagePosition 2
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] Got height 10000004.000000. We correct this ...
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.767 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.768 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:40.769 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.770 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 113; height = 14}
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 113; height = 14}
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.771 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:40.772 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.773 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:40.774 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.775 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 113; height = 14}
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:40.776 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:40.777 SOObjectBrowser[4163:4163] contentRect {x = 20; y = 20; width = 1059; height = 555} style 15 backingType 2
2020-05-09 20:19:40.996 SOObjectBrowser[4163:4163] timberitemcustomerId is not null OR transportationcustomerId is not null  --> timberitemcustomerId is not null OR transportationcustomerId is not null 
2020-05-09 20:19:40.996 SOObjectBrowser[4163:4163] qualifierString timberitemcustomerId is not null OR transportationcustomerId is not null 
2020-05-09 20:19:40.996 SOObjectBrowser[4163:4163] qualifier for displayGroup <SOOrQualifier: 0x530c230> ("<SOKeyIsNotNullQualifier: 0x530d610>: (timberitemcustomerId)", "<SOKeyIsNotNullQualifier: 0x530c8d0>: (transportationcustomerId)")
2020-05-09 20:19:40.997 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:40.997 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 39.000000 y1 14.000000
2020-05-09 20:19:40.997 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 39.000000 y1 14.000000
2020-05-09 20:19:40.997 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 39; height = 14}
2020-05-09 20:19:40.997 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 39; height = 14}
2020-05-09 20:19:40.998 SOObjectBrowser[4163:4163] _rootTagObject <GSMarkupTagVBox: 0x52cfb00> contentView <GSVBox: 0xc2a3ef0>
2020-05-09 20:19:40.998 SOObjectBrowser[4163:4163] contentRect {x = 20; y = 20; width = 323; height = 329} style 15 backingType 2
2020-05-09 20:19:41.066 SOObjectBrowser[4163:4163] _rootTagObject <GSMarkupTagGrid: 0x52c9450> contentView <GSVBox: 0xc2a2af0>
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 49.000000 y1 14.000000
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 49.000000 y1 14.000000
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 49; height = 14}
2020-05-09 20:19:41.067 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 49; height = 14}
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 116.000000 y1 14.000000
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 116.000000 y1 14.000000
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 116; height = 14}
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 116; height = 14}
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 45.000000 y1 14.000000
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:41.068 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 116; height = 14}
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 98.000000 y1 14.000000
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 98.000000 y1 14.000000
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 98; height = 14}
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 98; height = 14}
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:41.069 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 95.000000 y1 14.000000
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 95.000000 y1 14.000000
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 95; height = 14}
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 95; height = 14}
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.070 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 90.000000 y1 14.000000
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 90.000000 y1 14.000000
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 90; height = 14}
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 90; height = 14}
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 49; height = 14}
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.071 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 128.000000 y1 14.000000
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 128; height = 14}
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 45; height = 14}
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 116; height = 14}
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.072 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 98; height = 14}
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 116; height = 14}
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 95; height = 14}
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 120.000000 y1 14.000000
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.073 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 90.000000 y1 14.000000
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 90.000000 y1 14.000000
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 90; height = 14}
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 90; height = 14}
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 120; height = 14}
2020-05-09 20:19:41.074 SOObjectBrowser[4163:4163] contentRect {x = 20; y = 20; width = 238; height = 140} style 15 backingType 2
2020-05-09 20:19:41.176 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.176 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.176 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.177 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.177 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.177 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.185 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.185 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.185 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.186 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.186 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.186 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.186 SOObjectBrowser[4163:4163] <GSMarkupCarrier: 0x530faf0> No objectForKey: 30. We have _identDic ...
2020-05-09 20:19:41.734 SOObjectBrowser[4163:4163] employee <SOObjectProxy: 0x4d80cc0> Contacts_Employee (1000133) profitCenter (null)
2020-05-09 20:19:41.763 SOObjectBrowser[4163:4163] form fullname Wood Manager _markupCarrier <GSMarkupCarrier: 0x530faf0>
2020-05-09 20:19:41.765 SOObjectBrowser[4163:4163] isReleasedWhenClosed 0
2020-05-09 20:19:41.765 SOObjectBrowser[4163:4163] <FBMarkupController: 0x34468e0> <SOFormContext: 0x5e0fbb0> setAccesslevel 2
2020-05-09 20:19:41.765 SOObjectBrowser[4163:4163] returning controller <FBMarkupController: 0x34468e0>
2020-05-09 20:19:41.770 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.770 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.770 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.770 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.775 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.775 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.776 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.781 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.781 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:41.781 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:41.781 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:41.782 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.782 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.782 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.782 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.782 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:41.785 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.785 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.785 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.785 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.786 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.786 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.786 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.786 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.787 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.787 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.787 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.788 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:41.788 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.788 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:41.788 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.789 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:41.790 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.790 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.790 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.790 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.790 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:41.791 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.792 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.793 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.794 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:41.794 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.794 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.795 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:41.795 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:41.795 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:41.795 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.795 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.796 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.796 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.796 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.796 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.797 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.798 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.799 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.799 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.803 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.803 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:41.803 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:41.803 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:41.803 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:41.804 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.805 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.805 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.805 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.805 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.805 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.806 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.806 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:41.806 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:41.806 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:41.806 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.807 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.807 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:41.807 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:41.807 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.808 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.809 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.810 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.811 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.812 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.813 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.814 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.815 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.816 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.817 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.818 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.819 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.823 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.823 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.823 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.824 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.825 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.825 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.825 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.827 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.827 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.828 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.829 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.830 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.831 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.832 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.833 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.834 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.835 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.836 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.837 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.837 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.837 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.837 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.837 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:41.838 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 82; height = 14}
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:41.839 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 46; height = 14}
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 47; height = 14}
2020-05-09 20:19:41.840 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.841 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] x0 12.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] final x0 12.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] D {x = 12; y = 0; width = 46; height = 14}
2020-05-09 20:19:41.842 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] x0 -12.000000 y0 0.000000 x1 89.000000 y1 14.000000
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] final x0 -12.000000 y0 0.000000 x1 89.000000 y1 14.000000
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] D {x = -12; y = 0; width = 101; height = 14}
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] x0 -11.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] final x0 -11.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:41.843 SOObjectBrowser[4163:4163] D {x = -11; y = 0; width = 93; height = 14}
2020-05-09 20:19:41.856 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.856 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:41.856 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:41.856 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:41.857 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.858 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.858 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:41.858 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:41.858 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:41.858 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:41.859 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.860 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.860 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.860 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.860 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:41.860 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.861 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:41.862 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.863 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.863 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:41.863 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:41.863 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:41.863 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.864 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.865 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.866 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.867 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.868 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.869 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.870 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.871 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.872 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.873 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.874 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 113; height = 14}
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.875 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.876 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.877 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:41.878 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.879 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.880 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:41.880 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:41.880 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.880 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:41.881 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.882 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.883 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.883 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.883 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:41.883 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:41.883 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.884 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.885 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:41.887 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.887 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.888 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.889 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.889 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.889 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:41.889 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:41.890 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.890 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:41.890 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:41.890 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:41.891 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.892 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.892 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.892 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:41.892 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:41.892 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.893 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.894 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.895 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:41.896 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.896 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.896 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:41.896 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:41.897 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:41.897 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.897 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.898 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.899 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.900 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.900 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.900 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.900 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.900 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.901 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.901 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:41.901 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:41.901 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:41.901 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:41.902 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.903 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.903 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.903 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.903 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.903 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.904 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:41.905 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:41.906 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:41.907 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.907 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.907 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.907 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.907 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.908 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.909 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.910 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.911 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.912 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.913 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.914 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.915 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.916 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.917 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.918 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.919 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:41.920 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.921 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.922 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:41.923 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.924 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.925 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.926 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.927 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.927 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.927 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:41.927 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.927 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:41.930 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.930 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.930 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.930 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.930 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:41.932 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.932 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.932 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.932 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.933 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.933 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.933 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.933 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.933 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.934 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.934 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.934 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.934 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:41.934 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:41.935 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.935 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.936 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.936 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.937 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 141.000000 y1 14.000000
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 141.000000 y1 14.000000
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 141; height = 14}
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.938 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 104.000000 y1 14.000000
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 104.000000 y1 14.000000
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 104; height = 14}
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 22.000000 y1 14.000000
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 22.000000 y1 14.000000
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 22; height = 14}
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 83.000000 y1 14.000000
2020-05-09 20:19:41.939 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 83.000000 y1 14.000000
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 83; height = 14}
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 20.000000 y1 14.000000
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 20.000000 y1 14.000000
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 20; height = 14}
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:41.940 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.071 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.073 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.074 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.075 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.076 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.076 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.077 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.077 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.077 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.078 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.078 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.078 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.079 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.079 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:42.079 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 88.000000 y1 14.000000
2020-05-09 20:19:42.079 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 88; height = 14}
2020-05-09 20:19:42.080 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.081 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.081 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.081 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.081 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:42.088 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.088 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.088 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.088 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.089 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.089 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.089 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.089 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.091 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.091 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:42.091 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:42.091 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:42.092 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.092 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:42.092 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 71.000000 y1 14.000000
2020-05-09 20:19:42.092 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 71; height = 14}
2020-05-09 20:19:42.093 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.093 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.094 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.094 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.094 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 66; height = 14}
2020-05-09 20:19:42.095 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.096 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.096 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:42.096 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:42.096 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.097 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.097 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.098 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.098 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.098 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 59; height = 14}
2020-05-09 20:19:42.099 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.099 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.100 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.100 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.101 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.102 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.102 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.103 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:42.103 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:42.103 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:42.103 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.104 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.104 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:42.104 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:42.106 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:42.107 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.108 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.108 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:42.108 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 57.000000 y1 14.000000
2020-05-09 20:19:42.109 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 57; height = 14}
2020-05-09 20:19:42.110 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.111 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.111 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.112 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.112 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.112 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.113 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.114 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.115 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.115 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.115 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.115 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.115 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.116 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.116 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:42.116 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 26.000000 y1 14.000000
2020-05-09 20:19:42.116 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 26; height = 14}
2020-05-09 20:19:42.116 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.117 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.117 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.117 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.117 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.117 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:42.118 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.118 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.118 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.118 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.118 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.119 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.119 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.119 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:42.119 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:42.119 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:42.120 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.120 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.120 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:42.121 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 60.000000 y1 14.000000
2020-05-09 20:19:42.121 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 60; height = 14}
2020-05-09 20:19:42.121 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.122 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:42.123 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.123 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:42.123 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 77.000000 y1 14.000000
2020-05-09 20:19:42.123 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 77; height = 14}
2020-05-09 20:19:42.124 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.124 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.124 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.124 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.125 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.126 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.127 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 118.000000 y1 14.000000
2020-05-09 20:19:42.127 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.127 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 118; height = 14}
2020-05-09 20:19:42.127 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.128 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 132.000000 y1 14.000000
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.129 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 132; height = 14}
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.130 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.131 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.132 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.132 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.132 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.132 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.133 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.133 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.133 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.133 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.134 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.135 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.135 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.135 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.135 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.135 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.136 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 99.000000 y1 14.000000
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.137 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 99; height = 14}
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.138 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 56.000000 y1 14.000000
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.139 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 56; height = 14}
2020-05-09 20:19:42.140 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.140 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.140 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.140 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.140 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.141 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.142 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.142 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.143 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.144 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.144 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.144 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.144 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.145 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.145 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.146 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.146 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.146 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.146 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.147 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.148 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.148 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 138.000000 y1 14.000000
2020-05-09 20:19:42.148 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.148 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 138; height = 14}
2020-05-09 20:19:42.149 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.149 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.149 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.150 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.150 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.150 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.151 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.151 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.152 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.152 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.152 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.153 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.153 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.153 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 68.000000 y1 14.000000
2020-05-09 20:19:42.154 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.154 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 68; height = 14}
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.155 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.156 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.157 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.157 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.157 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.157 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.157 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.158 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.158 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.158 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.158 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 53.000000 y1 14.000000
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.159 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 53; height = 14}
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 48.000000 y1 14.000000
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.160 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.161 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.161 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.161 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.161 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.162 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.162 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.162 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 59.000000 y1 14.000000
2020-05-09 20:19:42.162 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.162 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 48; height = 14}
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:42.163 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 82; height = 14}
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 21.000000 y1 14.000000
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 21; height = 14}
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.164 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 46; height = 14}
2020-05-09 20:19:42.165 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.165 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:42.165 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 47.000000 y1 14.000000
2020-05-09 20:19:42.165 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 47; height = 14}
2020-05-09 20:19:42.165 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 69.000000 y1 14.000000
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 69; height = 14}
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:42.166 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:42.167 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.167 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.167 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 117.000000 y1 14.000000
2020-05-09 20:19:42.167 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 117; height = 14}
2020-05-09 20:19:42.167 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] x0 12.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] final x0 12.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] D {x = 12; y = 0; width = 46; height = 14}
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] x0 -12.000000 y0 0.000000 x1 89.000000 y1 14.000000
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] final x0 -12.000000 y0 0.000000 x1 89.000000 y1 14.000000
2020-05-09 20:19:42.168 SOObjectBrowser[4163:4163] D {x = -12; y = 0; width = 101; height = 14}
2020-05-09 20:19:42.169 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.169 SOObjectBrowser[4163:4163] x0 -11.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:42.169 SOObjectBrowser[4163:4163] final x0 -11.000000 y0 0.000000 x1 82.000000 y1 14.000000
2020-05-09 20:19:42.169 SOObjectBrowser[4163:4163] D {x = -11; y = 0; width = 93; height = 14}
2020-05-09 20:19:42.170 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.170 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:42.170 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 44.000000 y1 14.000000
2020-05-09 20:19:42.170 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 44; height = 14}
2020-05-09 20:19:42.171 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.171 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.171 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:42.171 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 91.000000 y1 14.000000
2020-05-09 20:19:42.171 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 91; height = 14}
2020-05-09 20:19:42.172 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.172 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.172 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:42.172 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 80.000000 y1 14.000000
2020-05-09 20:19:42.172 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 80; height = 14}
2020-05-09 20:19:42.173 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.173 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.174 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.174 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:42.174 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 29.000000 y1 14.000000
2020-05-09 20:19:42.174 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 29; height = 14}
2020-05-09 20:19:42.175 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.175 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.175 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:42.175 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 50.000000 y1 14.000000
2020-05-09 20:19:42.175 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 50; height = 14}
2020-05-09 20:19:42.176 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.176 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.176 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:42.176 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.176 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.177 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.177 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:42.177 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.177 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.178 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.178 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.178 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.178 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.178 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.179 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:42.179 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.179 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.179 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:42.180 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:42.180 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:42.180 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.181 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.181 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:42.181 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 173.000000 y1 14.000000
2020-05-09 20:19:42.181 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:42.182 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 184.000000 y1 14.000000
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 173; height = 14}
2020-05-09 20:19:42.183 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 64.000000 y1 14.000000
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.184 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 64; height = 14}
2020-05-09 20:19:42.185 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.186 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 66.000000 y1 14.000000
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.187 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.188 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.188 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.188 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.188 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.188 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.189 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.190 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:42.190 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 24.000000 y1 14.000000
2020-05-09 20:19:42.190 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.190 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.191 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.191 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.191 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.191 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.191 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.192 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 24; height = 14}
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.193 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.194 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.194 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:42.194 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 23.000000 y1 14.000000
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:42.195 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 34.000000 y1 14.000000
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 23; height = 14}
2020-05-09 20:19:42.196 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.197 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:42.197 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 113.000000 y1 14.000000
2020-05-09 20:19:42.197 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 113; height = 14}
2020-05-09 20:19:42.197 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.198 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.198 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.198 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 75.000000 y1 14.000000
2020-05-09 20:19:42.198 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.198 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.199 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.199 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.199 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 86.000000 y1 14.000000
2020-05-09 20:19:42.200 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.201 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 75; height = 14}
2020-05-09 20:19:42.201 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 35.000000 y1 14.000000
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.202 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.203 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.203 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.203 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.203 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.205 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.205 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.206 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 46.000000 y1 14.000000
2020-05-09 20:19:42.206 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.206 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 35; height = 14}
2020-05-09 20:19:42.207 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.207 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:42.207 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 92.000000 y1 14.000000
2020-05-09 20:19:42.207 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.208 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.209 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.209 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 0; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.209 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.209 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:42.209 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:42.210 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.210 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.211 SOObjectBrowser[4163:4163] x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:42.211 SOObjectBrowser[4163:4163] final x0 11.000000 y0 0.000000 x1 103.000000 y1 14.000000
2020-05-09 20:19:42.211 SOObjectBrowser[4163:4163] D {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.211 SOObjectBrowser[4163:4163] In attributed string and got result from  c->usedRect {x = 11; y = 0; width = 92; height = 14}
2020-05-09 20:19:42.224 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.225 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:42.225 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:42.226 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:42.226 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.227 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:42.227 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.228 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.228 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:42.228 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 81.000000 y1 14.000000
2020-05-09 20:19:42.228 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 81; height = 14}
2020-05-09 20:19:42.229 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.229 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:42.229 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.229 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1}
2020-05-09 20:19:42.230 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.230 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.230 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.230 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.231 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.232 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.233 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.234 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.235 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:42.236 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.239 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.239 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.240 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.240 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.240 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:42.240 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 67.000000 y1 14.000000
2020-05-09 20:19:42.240 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 67; height = 14}
2020-05-09 20:19:42.241 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.243 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.243 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.243 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.244 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.244 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.244 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 38.000000 y1 14.000000
2020-05-09 20:19:42.244 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 38; height = 14}
2020-05-09 20:19:42.245 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.246 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.247 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 32.000000 y1 14.000000
2020-05-09 20:19:42.247 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 32.000000 y1 14.000000
2020-05-09 20:19:42.247 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 32; height = 14}
2020-05-09 20:19:42.247 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 52.000000 y1 14.000000
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 52.000000 y1 14.000000
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 52; height = 14}
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 63.000000 y1 14.000000
2020-05-09 20:19:42.248 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 63; height = 14}
2020-05-09 20:19:42.249 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.249 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 13.000000 y1 14.000000
2020-05-09 20:19:42.249 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 13.000000 y1 14.000000
2020-05-09 20:19:42.249 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 13; height = 14}
2020-05-09 20:19:42.249 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.250 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.250 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.250 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 43.000000 y1 14.000000
2020-05-09 20:19:42.250 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 43; height = 14}
2020-05-09 20:19:42.251 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.251 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.251 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:42.251 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 31.000000 y1 14.000000
2020-05-09 20:19:42.252 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 31; height = 14}
2020-05-09 20:19:42.252 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.252 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.252 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 55.000000 y1 14.000000
2020-05-09 20:19:42.252 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 55; height = 14}
2020-05-09 20:19:42.253 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.253 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.253 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.253 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.253 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 41.000000 y1 14.000000
2020-05-09 20:19:42.254 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 41; height = 14}
2020-05-09 20:19:42.254 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.254 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.255 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.255 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.256 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.256 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:42.256 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:42.256 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 65; height = 14}
2020-05-09 20:19:42.256 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.257 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.257 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.257 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.258 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:42.258 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 65.000000 y1 14.000000
2020-05-09 20:19:42.258 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 65; height = 14}
2020-05-09 20:19:42.258 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.259 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.259 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.260 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.260 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.270 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.270 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.270 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.270 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.271 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.271 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.271 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.271 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.271 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.272 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.272 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.272 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 61.000000 y1 14.000000
2020-05-09 20:19:42.273 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 61; height = 14}
2020-05-09 20:19:42.273 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.274 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.274 SOObjectBrowser[4163:4163]  tc->textContainer == extra_textcontainer used {x = 0; y = 0; width = 1; height = 1e+07}
2020-05-09 20:19:42.275 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.275 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.275 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.275 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.276 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.277 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.277 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.277 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.278 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.279 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.279 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.279 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.279 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}
2020-05-09 20:19:42.280 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 179; height = 14}
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.281 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.282 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.282 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.282 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.282 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.282 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.283 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.283 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.283 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.283 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.283 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 179; height = 14}
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.284 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.285 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.285 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.285 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 58.000000 y1 14.000000
2020-05-09 20:19:42.286 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 58; height = 14}
2020-05-09 20:19:42.287 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.288 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.289 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.289 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}
2020-05-09 20:19:42.336 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.337 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.337 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.338 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.339 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:42.339 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 54.000000 y1 14.000000
2020-05-09 20:19:42.339 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 54; height = 14}
2020-05-09 20:19:42.340 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.342 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.343 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.343 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.343 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.344 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.344 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.345 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.345 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.346 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.346 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.347 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.347 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.348 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.348 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.348 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.349 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.349 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.349 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.350 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.350 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.350 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.351 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.351 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.351 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.352 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.352 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 179; height = 14}
2020-05-09 20:19:42.352 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.353 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.353 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.353 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.354 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.354 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.354 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.355 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.355 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.355 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.355 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 179.000000 y1 14.000000
2020-05-09 20:19:42.356 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 179; height = 14}
2020-05-09 20:19:42.356 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.356 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.357 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.357 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.357 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.357 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.357 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] cache_lookup hit 1
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] cache_lookup hit 0
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.359 SOObjectBrowser[4163:4163] final x0 0.000000 y0 0.000000 x1 145.000000 y1 14.000000
2020-05-09 20:19:42.360 SOObjectBrowser[4163:4163] D {x = 0; y = 0; width = 145; height = 14}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]