Interval 0 of Line Numbering cause crash

http://kingyo.tutms.tut.ac.jp/%7Etoshi/StarSuite/Chap7/EX743 A.java
http://kingyo.tutms.tut.ac.jp/%7Etoshi/StarSuite/Chap7/Helpe r.java
In this example, if set Interval of Line Numbering as 0, the program cause StarSuite8/Linux on FreeBSD 6-STABLE crash.
Is this related to FreeBSD? Although OpenOffice.org 2.0 on FreeBSD doesn't crash...
(cf. Line Numbering, Developer's Guide 2005 June, Chap. 7.4.3)
I'm sorry if I post the wrong place.

http://kingyo.tutms.tut.ac.jp/%7Etoshi/StarSuite/Chap7/EX743 A.java
http://kingyo.tutms.tut.ac.jp/%7Etoshi/StarSuite/Chap7/Helpe r.java
In this example, if set Interval of Line Numbering as 0, the program cause StarSuite8/Linux on FreeBSD 6-STABLE crash.
Is this related to FreeBSD? Although OpenOffice.org 2.0 on FreeBSD doesn't crash...
(cf. Line Numbering, Developer's Guide 2005 June, Chap. 7.4.3)
I'm sorry if I post the wrong place.

Similar Messages

  • A chart in Numbers causing crashes

    A chart in Numbers is causing Numbers to slow down & stutter when it is seleced or edited.  The memory is eventually depleted and Numbers crashes.  I'm using Numbers 2008 1.0.3.  This chart is pulling info from formulas in a large table.  That table is pulling infor from several smaller charts.  This is odd to me and it is the first time I have had this problem.  I have restart Numbers & the MBP.  In both cases, the memnory is returned the same & I restart.  The file is fine for a good while unless I start messing with that chart.  Then, the free memory excellerates it's disappearing act & Numbers crashes.  I will pay closer attention to the wired, active, & inactive.  I use iStat to follow this stuff.  What could be causing the memory disappearing act & the crashing?  It's just a chart.  I did see other posting about memory loss for Numbers 2009, but nothing within a year or that really addressed my issue.

    There are only 4 lines with 50 points or less in each line.  Maybe my definition of large isn't so large.
    I didn't upgrade to Numbers 2009, because it came out so quick that I thought it wouldn't have many changes & I thought another update would come out.  I have been waiting for the next update ... and waiting.  I'm surprised it has taken this long & am guessing that another should be out any time, now.  It has been 5 years and Numbers is missing some seemingly simple features like scatter plots & linear equations.
    What would b the advantage of upgrading to Numbers 2009 that would be worth it & how would it eliminate this glitching and crashing?

  • Printing Line numbers while dumping stack trace during crash..

    Hi,
    I want to dump the stack trace of all threads with the line numbers when the program crashes. I am able to do that by cathing the signals and invoking "pstack" utility to dump the stack. But it does not dump the line numbers of each function. Is there some way of doing that?
    Thanks
    Atul

    If you run the executable under dbx then you can type 'where' when the program crashes or set a breakpoint in your signal handler. Line numbers will only show up in the dbx stack trace if the application was compiled with -g and not stripped.

  • JSP compiler obfuscates generated servlet debug line numbers

              Here's something that's been baffling me for a couple of days now.
              When WebLogic parses a JSP into servlet Java source, and then compiles the Java
              source into a class, it seems to perform a further step to obfuscate debug line
              numbers in the _jspService method. This converts the debug line numbers from Java
              source code line numbers into JSP line numbers.
              At first sight, this may appear to be useful- it means that when an exception
              is thrown then it references a line number in the original JSP rather than one
              in the generated servlet. However, it actually makes life more difficult when
              you consider included JSPs.
              Suppose you have a file loginresult.jsp, which uses @include to include a header.jsp
              and footer.jsp, both of which contain dynamic content. When WebLogic converts
              line numbers, it ignores the JSP that the code came from, so this causes a many-to-one
              mapping of line numbers. When an error occurs, the exception will tell you the
              line number that it came from, but it won't tell you which JSP caused it. The
              many-to-one mapping ensures a loss of information- and no way of retrieving the
              real line numbers.
              This is an even bigger nuisance when trying to debug JSPs- the debugger hops around
              in the generated servlet file without giving any clue as to whereabouts it really
              is in the code.
              My question is: is there any way of switching off this post-processor behaviour?
              One obvious way would be to locate the WebLogic class that does this post-processing,
              stub it out and run WebLogic with this class higher up in the classpath. But that's
              a last resort.
              Secondly, would there be any other impact in turning off this behaviour? Do other
              parts of WebLogic rely on this?
              Thanks in advance,
              Kevin.
              

    Actually, this option turns line-number table replacement on and off, for example,
              with jsp like this:
              test.jsp
              <%
              throw new Exception();
              %>
              and weblogic.xml:
              <!DOCTYPE weblogic-web-app PUBLIC "-//BEA
              Systems, Inc.//DTD Web Application 7.0//EN"
              "http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd">
              <weblogic-web-app>
              <jsp-descriptor>
              <jsp-param>
              <param-name>debug</param-name>
              <param-value>true</param-value>
              </jsp-param>
              </jsp-descriptor>
              </weblogic-web-app>
              the stacktrace looks like this (note line number 2 - this is JSP line number):
              java.lang.Exception
              at jsp_servlet.__test._jspService(test.jsp:2)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:945)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:332)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:376)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:242)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5360)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:721)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3043)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2468)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              and with debug option turned off:
              <!DOCTYPE weblogic-web-app PUBLIC "-//BEA
              Systems, Inc.//DTD Web Application 7.0//EN"
              "http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd">
              <weblogic-web-app>
              <jsp-descriptor>
              <jsp-param>
              <param-name>debug</param-name>
              <param-value>false</param-value>
              </jsp-param>
              </jsp-descriptor>
              </weblogic-web-app>
              exception stacktrace looks like this (note that line number now is from generated .java file):
              java.lang.Exception
              at jsp_servlet.__test._jspService(__test.java:87)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:945)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:332)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:376)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:242)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5360)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:721)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3043)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2468)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              Kevin Thomas <[email protected]> wrote:
              > But this isn't useful, as you don't know which JSP the line number is referring
              > to! (did it come from the main JSP, or one of the files that it included?)
              > Turning debug off is not an answer- because that will lose other useful information
              > that is useful to the debugger.
              > Kevin.
              > "Dimitri I. Rakitine" <[email protected]> wrote:
              >>Actually, this is useful when you want to debug .jsp's and not generated
              >>..java files. Did you try setting 'debug' jsp-param in the weblogic.xml
              >>to
              >>false? I think it turns class postprocessing on and off.
              >>
              >>Kevin Thomas <[email protected]> wrote:
              >>
              >>> Here's something that's been baffling me for a couple of days now.
              >>
              >>> When WebLogic parses a JSP into servlet Java source, and then compiles
              >>the Java
              >>> source into a class, it seems to perform a further step to obfuscate
              >>debug line
              >>> numbers in the _jspService method. This converts the debug line numbers
              >>from Java
              >>> source code line numbers into JSP line numbers.
              >>
              >>> At first sight, this may appear to be useful- it means that when an
              >>exception
              >>> is thrown then it references a line number in the original JSP rather
              >>than one
              >>> in the generated servlet. However, it actually makes life more difficult
              >>when
              >>> you consider included JSPs.
              >>
              >>> Suppose you have a file loginresult.jsp, which uses @include to include
              >>a header.jsp
              >>> and footer.jsp, both of which contain dynamic content. When WebLogic
              >>converts
              >>> line numbers, it ignores the JSP that the code came from, so this causes
              >>a many-to-one
              >>> mapping of line numbers. When an error occurs, the exception will tell
              >>you the
              >>> line number that it came from, but it won't tell you which JSP caused
              >>it. The
              >>> many-to-one mapping ensures a loss of information- and no way of retrieving
              >>the
              >>> real line numbers.
              >>
              >>> This is an even bigger nuisance when trying to debug JSPs- the debugger
              >>hops around
              >>> in the generated servlet file without giving any clue as to whereabouts
              >>it really
              >>> is in the code.
              >>
              >>> My question is: is there any way of switching off this post-processor
              >>behaviour?
              >>> One obvious way would be to locate the WebLogic class that does this
              >>post-processing,
              >>> stub it out and run WebLogic with this class higher up in the classpath.
              >>But that's
              >>> a last resort.
              >>
              >>> Secondly, would there be any other impact in turning off this behaviour?
              >>Do other
              >>> parts of WebLogic rely on this?
              >>
              >>> Thanks in advance,
              >>
              >>> Kevin.
              >>
              >>--
              >>Dimitri
              >>
              Dimitri
              

  • Is there a way to add line numbers in the margin?

    Is there a way to automatically add line numbers in the margin of a document?

    Hi Brian,
    If you go with Peter's suggestion, there are some details that since I've got a minute here, I'll mention...
    Set your Line Spacing for the document text to "Exactly" before you begin adjusting your table, otherwise you will have registration problems.
    Your Table will have to be a Floating object. Otherwise you won't be able to slide it into the margin. And, speaking of the margin, stay out of the gray area with the numbers if you want to print them. The gray border around your document is the area that the printer driver says is non-printable.
    In the Table Inspector, set Columns to 1 and Rows to 20 or whatever you prefer for your document. Set the number of Header Rows to 0.
    To apply the numbering, use the Fill feature: Type 1 in the first cell, type 2 in the second cell. Select both cells. Grab the Fill Handle in the lower right corner of the selection and drag it down to add a series of numbers to the rest of the column. (Easier than typing.)
    Decide how you want to justify the numbering. The Text Inspector has both vertical and horizontal justification controls for this. Just select the entire table and make the settings.
    Set the cell height to match the text line spacing. You can get close with the table row height, and maybe closer with a minor line spacing adjustment. Don't expect perfection, but you can get pretty close.
    You probably don't want the cell borders to show, so with the entire table selected, go to the Graphic Inspector and set Stroke to None.
    Lastly, cause the table to appear on every page by doing: Format > Advanced > Move Object to Section Master.
    Regards,
    Jerry

  • Convert named access list to line numbers

    I printed out a document months ago which has since then disappeared into my mountains of paperwork. Somewhere in that document listed a command that converted an extended, named access list to one with line numbers. I even recall that you could input the line interval into the conversion process (so lines would be 5,10,15 etc or 10,20,30 etc).
    I just upgraded a 6509, and I'm ready to put line numbers in my access list, and can't find the command - a new Cisco search is coming up empty. Can anyone recall what the command is?? Again, it's for converting an existing access-list with no line numbers to one with line numbers.
    Thank you!

    Hi Emily,
    I guess this is what you are looking for. I have not tried it my self but would like to test it out.
    1. enable
    2. configure terminal
    3. ip access-list resequence access-list-name starting-sequence-number increment
    4. ip access-list {standard | extended} access-list-name
    5. sequence-number permit source source-wildcard
    or
    sequence-number permit protocol source source-wildcard destination destination-wildcard [precedence precedence] [tos tos] [log] [time-range time-range-name] [fragments]
    6. sequence-number deny source source-wildcard
    or
    sequence-number deny protocol source source-wildcard destination destination-wildcard [precedence precedence] [tos tos] [log] [time-range time-range-name] [fragments]
    7. Repeat Step 5 and/or Step 6 as necessary, adding statements by sequence number where you planned. Use the no sequence-number command to delete an entry.
    8. end
    9. show ip access-lists access-list-name
    This link should help :
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1838/products_feature_guide09186a0080134a60.html
    regards,
    -amit singh

  • Photoshop CS5 Type Tool Causes Crash - Tried Several Fixes

    Hello,
    I've tried validating and removing bad fonts via Font Book, restarted in safe mode (during which time, the type tool works, but not after normal rebooting), updated to 12.0.1, ran all updates for OSX, still getting the crash.
    Telephone support was no help. In fact, I don't think they knew what they were doing at all.
    I believe my system configuration is in the crash report below. Please tell me someone can help. I didn't spend this money just to have a pretty icon in my dock.
    Thanks in advance!
    B
    Process:         Adobe Photoshop CS5 [299]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.1 (12.0.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [161]
    Date/Time:       2010-09-21 18:32:57.119 -0500
    OS Version:      Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Interval Since Last Report:          201265 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  207 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      D0978AA8-6CCA-41AA-8ED8-F068F6CCA89E
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x10df84800: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x00000001094f43d6 __kill + 10
    1   libSystem.B.dylib             0x0000000109594972 abort + 83
    2   libSystem.B.dylib             0x0000000109583625 szone_error + 519
    3   libSystem.B.dylib             0x00000001094b0b4b small_free_list_remove_ptr + 246
    4   libSystem.B.dylib             0x00000001094ad5ef szone_free_definite_size + 3254
    5   libFontParser.dylib           0x000000010c3e4314 FPFontCreateFontsWithPath + 1358
    6   libCGXType.A.dylib            0x000000010d7dfe52 create_private_data_with_path + 22
    7   com.apple.CoreGraphics        0x000000010abe7c63 CGFontCreateFontsWithPath + 51
    8   com.apple.CoreGraphics        0x000000010abe78c4 CGFontCreateFontsWithURL + 433
    9   com.apple.CoreText            0x000000010b5e5073 TCGFont::TCGFont(__CFURL const*, bool) + 73
    10  com.apple.CoreText            0x000000010b5e4e00 TCGFontCache::CopyFont(__CFURL const*) const + 92
    11  com.apple.CoreText            0x000000010b5e4c5a TBaseFont::CopyNativeFont() const + 50
    12  com.apple.CoreText            0x000000010b5e6517 TBaseFont::CopyAvailableTables(unsigned int) const + 25
    13  AdobeCoolType                 0x000000010629a60e CTCleanup + 1011924
    14  AdobeCoolType                 0x000000010629d5a4 CTCleanup + 1024106
    15  AdobeCoolType                 0x000000010629d6e3 CTCleanup + 1024425
    16  AdobeCoolType                 0x000000010629ef14 CTCleanup + 1030618
    17  AdobeCoolType                 0x00000001061f23e3 CTCleanup + 323241
    18  AdobeCoolType                 0x0000000106152d04 0x10614e000 + 19716
    19  AdobeCoolType                 0x000000010618215d 0x10614e000 + 213341
    20  AdobeCoolType                 0x00000001061bf822 CTCleanup + 115432
    21  AdobeCoolType                 0x00000001061779d8 0x10614e000 + 170456
    22  AdobeCoolType                 0x0000000106189f54 0x10614e000 + 245588
    23  AdobeCoolType                 0x000000010617da18 0x10614e000 + 195096
    24  AdobeCoolType                 0x000000010619036e 0x10614e000 + 271214
    25  com.adobe.Photoshop           0x0000000100909940 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6474928
    26  com.adobe.Photoshop           0x00000001008fcb74 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6422244
    27  com.adobe.Photoshop           0x0000000100964498 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6846472
    28  com.adobe.Photoshop           0x0000000100970fc8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6898488
    29  com.adobe.Photoshop           0x000000010097284c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6904764
    30  com.adobe.Photoshop           0x0000000100448cbf AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1490991
    31  com.adobe.Photoshop           0x0000000100c46c02 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9871218
    32  com.adobe.Photoshop           0x0000000100c46c62 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9871314
    33  com.adobe.Photoshop           0x0000000100968972 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6864098
    34  com.adobe.Photoshop           0x000000010096fd7a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6893802
    35  com.adobe.Photoshop           0x0000000100964e57 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6848967
    36  com.adobe.Photoshop           0x0000000100964f36 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6849190
    37  com.adobe.Photoshop           0x000000010096ba07 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6876535
    38  com.adobe.Photoshop           0x000000010098d6e2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7014994
    39  com.adobe.Photoshop           0x00000001006b69f2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4037986
    40  com.adobe.Photoshop           0x00000001012d31c0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16737584
    41  com.apple.AppKit              0x000000010413ddc6 -[NSApplication sendEvent:] + 4435
    42  com.adobe.Photoshop           0x00000001012debb2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16785186
    43  com.adobe.Photoshop           0x00000001012df146 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16786614
    44  com.apple.AppKit              0x00000001040d4922 -[NSApplication run] + 474
    45  com.adobe.Photoshop           0x00000001012dd5ee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779614
    46  com.adobe.Photoshop           0x00000001012de819 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16784265
    47  com.adobe.Photoshop           0x00000001000688c2 0x100000000 + 428226
    48  com.adobe.Photoshop           0x0000000100237c01 0x100000000 + 2325505
    49  com.adobe.Photoshop           0x0000000100237c91 0x100000000 + 2325649
    50  com.adobe.Photoshop           0x00000001000028e4 0x100000000 + 10468
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00000001094bf08a kevent + 10
    1   libSystem.B.dylib             0x00000001094c0f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00000001094c0c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00000001094c075e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00000001094c0088 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00000001094bff25 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00000001094e0eb6 __semwait_signal + 10
    1   libSystem.B.dylib             0x00000001094e4cd1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services        0x000000010ea23c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services        0x000000010ea1ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services        0x000000010ea23cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    6   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00000001094a634e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x000000010986888e MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x0000000121f1ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00000001097d3ea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    5   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00000001094e0eb6 __semwait_signal + 10
    1   libSystem.B.dylib             0x00000001094e4cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00000001098924c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x0000000109801cc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00000001097fbbcf MPWaitOnQueue + 215
    5   AdobeACE                      0x00000001078b5ccd 0x10787b000 + 240845
    6   AdobeACE                      0x00000001078b567a 0x10787b000 + 239226
    7   ...ple.CoreServices.CarbonCore 0x00000001097d3ea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    9   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00000001094e0eb6 __semwait_signal + 10
    1   libSystem.B.dylib             0x00000001094e0d45 nanosleep + 148
    2   com.adobe.PSAutomate          0x0000000124d8209b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate          0x0000000124d63fd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate          0x0000000124d82196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    6   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00000001094e0eb6 __semwait_signal + 10
    1   libSystem.B.dylib             0x00000001094e4cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012638789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001261405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001263879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000126387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000126387e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    8   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00000001094e0eb6 __semwait_signal + 10
    1   libSystem.B.dylib             0x00000001094e4cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012638789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001261405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001263879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000126387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000126387e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    8   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00000001094a62fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x00000001094a696d mach_msg + 59
    2   com.apple.CoreFoundation      0x000000010338e3c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x000000010338d84f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices 0x0000000128ab363f MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices 0x0000000128ab520a CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    7   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00000001094a635a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00000001094e4bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x0000000126387869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x00000001263a40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl           0x00000001263879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000126387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000126387e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    8   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00000001094a635a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00000001094e4bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x0000000126387869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000126521ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl           0x00000001263879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000126387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000126387e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    8   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00000001094e9df2 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x000000012ac45982 Invoke + 54020
    2   ServiceManager-Launcher.dylib 0x000000012ac44adf Invoke + 50273
    3   ServiceManager-Launcher.dylib 0x000000012ac43b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib 0x000000012ac43b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib 0x000000012ac43c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib 0x000000012ac3e30d Invoke + 23695
    7   ServiceManager-Launcher.dylib 0x000000012ac3e4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib 0x000000012ac3ef2f Invoke + 26801
    9   ServiceManager-Launcher.dylib 0x000000012ac3f01d Invoke + 27039
    10  ServiceManager-Launcher.dylib 0x000000012ac4231f Invoke + 40097
    11  ServiceManager-Launcher.dylib 0x000000012ac425c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib 0x000000012ac42b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib 0x000000012ac42d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib 0x000000012ac34daf Login + 1773
    15  ServiceManager-Launcher.dylib 0x000000012ac36295 Login + 7123
    16  ServiceManager-Launcher.dylib 0x000000012ac432a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib 0x000000012ac456c1 Invoke + 53315
    18  libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    19  libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib             0x00000001094a635a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00000001094e4bc2 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore 0x0000000109801ce4 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore 0x0000000109801a92 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore 0x0000000109801790 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib             0x00000001094df456 _pthread_start + 331
    6   libSystem.B.dylib             0x00000001094df309 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib             0x00000001094bfeaa __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00000001094c02bc _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00000001094bff25 start_wqthread + 13
    Thread 14:
    0   libSystem.B.dylib             0x00000001094bfeaa __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00000001094c02bc _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00000001094bff25 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000012aa0f000  rcx: 0x00007fff5fbfbfe8  rdx: 0x0000000000000000
      rdi: 0x000000000000012b  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfc000  rsp: 0x00007fff5fbfbfe8
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00000001094f0412  r11: 0x0000000000000206
      r12: 0x0000000000000000  r13: 0x000000010df84800  r14: 0x000000010d236000  r15: 0x000000012aa0f0c0
      rip: 0x00000001094f43d6  rfl: 0x0000000000000206  cr2: 0x000000010957f15a
    Binary Images:
           0x100000000 -        0x1026a7fff +com.adobe.Photoshop 12.0.1 (12.0.1) <CFDED939-0A8A-EBC4-215B-94A4A224A1D1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103287000 -        0x1032fffef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103315000 -        0x103315ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x103318000 -        0x10331ffff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103327000 -        0x103337ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103342000 -        0x1034b7ff7  com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x1035d0000 -        0x103851fef  com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x1039c9000 -        0x103c50fe7  com.apple.security 6.1.1 (37594) <C32E7E37-13EC-381A-7CA6-AAE3EBD2C1F1> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x103d46000 -        0x103da4ff7  com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x103dc6000 -        0x103dccff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103dd3000 -        0x103de2ff7  com.apple.opengl 1.6.9 (1.6.9) <BB8AEF81-0EC1-ED4C-360B-186C60AE745C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x103deb000 -        0x103ff1fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x104084000 -        0x1040bcfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
           0x1040cb000 -        0x104ac1fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x1050b6000 -        0x10544fff7  com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10557c000 -        0x10572afef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1057cc000 -        0x105bfcfef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x105d56000 -        0x106081ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10614e000 -        0x106476fe7 +AdobeCoolType ??? (???) <7EF54CD5-3426-A1E5-7961-FA34CCC2018D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10650e000 -        0x10652fff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10653c000 -        0x106567ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x106579000 -        0x1066bdfef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x106704000 -        0x106769fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x106785000 -        0x10679bfff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x1067b3000 -        0x106849fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x1068c0000 -        0x1068defff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1068fb000 -        0x106b2afff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x106c09000 -        0x106c9cfff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x106cbc000 -        0x107005fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x107195000 -        0x107317fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x1073b9000 -        0x107731fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10787b000 -        0x107990fff +AdobeACE ??? (???) <5BFBC4A1-1704-06A7-B656-D28BF592307A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x1079b5000 -        0x1079d1fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1079db000 -        0x107a45ff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x107a78000 -        0x107b4bffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x107b6b000 -        0x107b6fff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x107b73000 -        0x107beafff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x107c0b000 -        0x107c69ffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x107c77000 -        0x108112fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x108698000 -        0x1086eefeb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x108733000 -        0x108f3dfe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
           0x108f86000 -        0x1090abfef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10911a000 -        0x10913fffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x109179000 -        0x10917effd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x109183000 -        0x10931ffff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x1093c7000 -        0x109444fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
           0x1094a5000 -        0x109665fef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
           0x1096f6000 -        0x1096f6ff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x1096f9000 -        0x1097affff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
           0x1097c3000 -        0x1097c3ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
           0x1097c6000 -        0x1097caff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
           0x1097cd000 -        0x109b00fe7  com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
           0x109b79000 -        0x109c49ff7  com.apple.CFNetwork 454.9.8 (454.9.8) <24667A86-FCDA-5B58-2CDC-3BFDFE8EA985> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
           0x109cbc000 -        0x109d06ff7  com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
           0x109d30000 -        0x109dedff7  com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
           0x109e47000 -        0x109ed7fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
           0x109f15000 -        0x109f50fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
           0x109f6a000 -        0x10a00afff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
           0x10a050000 -        0x10a078fff  com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
           0x10a092000 -        0x10a250fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
           0x10a2bf000 -        0x10a2c5ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10a2ce000 -        0x10a2e4fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
           0x10a2ed000 -        0x10a2fcfff  com.apple.NetFS 3.2.1 (3.2.1) <0357C371-2E2D-069C-08FB-1180512B8516> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10a305000 -        0x10a316ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
           0x10a31b000 -        0x10a329ff7  libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
           0x10a32d000 -        0x10a379fff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
           0x10a386000 -        0x10a43ffff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
           0x10a44f000 -        0x10a490fff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
           0x10a4b4000 -        0x10a4dfff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
           0x10a4ea000 -        0x10a601fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
           0x10a62a000 -        0x10a62fff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
           0x10a637000 -        0x10a63afff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
           0x10a640000 -        0x10a93efe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
           0x10aa6a000 -        0x10aa80fff  com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
           0x10aa9a000 -        0x10ab4ffe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
           0x10ab82000 -        0x10ab9dff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
           0x10abae000 -        0x10abb0fff  com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
           0x10abb5000 -        0x10abb8ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
           0x10abbd000 -        0x10abc8ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
           0x10abd2000 -        0x10b2cf067  com.apple.CoreGraphics 1.545.0 (???) <88892F58-F785-2E30-50B1-E9CC8775E79F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
           0x10b3c1000 -        0x10b577fef  com.apple.ImageIO.framework 3.0.3 (3.0.3) <A32D0B5A-7149-7739-22D3-84D38B07E9E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
           0x10b5dd000 -        0x10b65bfff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
           0x10b699000 -        0x10b733fff  com.apple.ApplicationServices.ATS 275.11.1 (???) <0A898C0C-41A0-B9BF-0A38-74FB029CA049> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
           0x10b75c000 -        0x10b811fe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
           0x10b84e000 -        0x10b89ffe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
           0x10b8cb000 -        0x10b8e0ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
           0x10b8ee000 -        0x10b973fff  com.apple.print.framework.PrintCore 6.2 (312.5) <C20F87CE-ACC1-552B-8A73-2B3846A01D80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
           0x10b9a9000 -        0x10b9eafef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
           0x10ba02000 -        0x10ba16ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
           0x10ba27000 -        0x10ba27ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10ba2a000 -        0x10ba79fef  libTIFF.dylib ??? (???) <A66CBA9C-A38D-5EDB-BFB5-CB398F033D6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
           0x10ba86000 -        0x10ba8bfff  libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
           0x10ba90000 -        0x10baaefff  libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
           0x10bab6000 -        0x10bab8fff  libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
           0x10babc000 -        0x10bae2fe7  libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
           0x10baea000 -        0x10bbc4ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
           0x10bbd3000 -        0x10bbd3ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
           0x10bbd6000 -        0x10bc1eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
           0x10bc26000 -        0x10bc90fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <514D400C-50A5-C196-83AA-1035DDC8FBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
           0x10bc9a000 -        0x10c0ddfef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
           0x10c26a000 -        0x10c379fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
           0x10c3de000 -        0x10c3dfff7  com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
           0x10c3e3000 -        0x10c4a3fff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
           0x10c59a000 -        0x10c649fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10c66f000 -        0x10c690fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
           0x10c69a000 -        0x10c6e1ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10c706000 -        0x10c7ecfe7  com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
           0x10c83b000 -        0x10c890fef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
           0x10c8ad000 -        0x10c8c3fe7  com.apple.MultitouchSupport.framework 205.34 (205.34) <01AAE66D-C2DF-4EF5-FC7B-E89E08C02A01> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
           0x10c8d0000 -        0x10c8f5ff7  com.apple.CoreVideo 1.6.1 (45.5) <29F39070-5CEF-B286-66E3-7CC903519403> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10c90e000 -        0x10c93ffff  libGLImage.dylib ??? (???) <7EF50768-54F1-5883-C40F-DAF83810C3FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
           0x10c946000 -        0x10c969fff  com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10c972000 -        0x10c978ff7  IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10c981000 -        0x10c9cafef  libGLU.dylib ??? (???) <88F0E457-EE53-B5FF-6A1B-D0326D0C643D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10c9d9000 -        0x10c9edfff  libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10c9fd000 -        0x10cb16fef  libGLProgrammability.dylib ??? (???) <0E55A58B-5B42-669F-2655-90893554CA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
           0x10cb37000 -        0x10cb3aff7  libCoreVMClient.dylib ??? (???) <CE19A78F-B76D-244A-1C04-0544B914F728> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
           0x10cb3f000 -        0x10cb44fff  libGFXShared.dylib ??? (???) <1B50D804-966B-30D2-D0FD-B090B6FEAC7E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
           0x10cb49000 -        0x10cbc8fef  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10cbfe000 -        0x10cbffff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10cc04000 -        0x10cc04ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10cc07000 -        0x10cc93fef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
           0x10ccd7000 -        0x10ccdefff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10cce7000 -        0x10cd00fff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
           0x10cd15000 -        0x10cd64ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
           0x10cd85000 -        0x10cda5ff7  com.apple.DirectoryService.Framework 3.6 (621.4) <969734C3-D21E-2F30-5CBB-D9F23D123643> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
           0x10cdaf000 -        0x10cdc1fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
           0x10cdc8000 -        0x10cdc8ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10cdcb000 -        0x10cf09fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10cfa1000 -        0x10cfa2fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
           0x10cfa6000 -        0x10d09eff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
           0x10d0ae000 -        0x10d0c7feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x10d0d8000 -        0x10d0defeb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10d0e5000 -        0x10d0e5ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x10d0e8000 -        0x10d0f0ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x10d0f7000 -        0x10d1ddfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x10d5aa000 -        0x10d5acfef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10d7a7000 -        0x10d7b4fe7  libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
           0x10d7df000 -        0x10d7e3ff7  libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <E666EBC7-2D87-A3C6-9461-A596B4E53593> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
           0x10d7eb000 -        0x10d7fafe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <0628B99F-F193-89BF-6332-B8C50D301F29> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x10ea00000 -        0x10ea70ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x11f907000 -        0x11f94aff7  libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
           0x11f95b000 -        0x11f998ff7  libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistry.dylib
           0x120092000 -        0x1200c3fef  libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libTrueTypeScaler.dylib
           0x1200cf000 -        0x1200e6fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1B9D1076-CC7C-521A-676C-F7BE51F65271> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1200ea000 -        0x12010bfef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <FA6280BD-A73C-3A3D-6494-81EB80FE1C24> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x12010f000 -        0x120121fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <A77665EF-B6FB-00B4-2F3D-90D7845814C9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x120125000 -        0x120126fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <5EB939D1-53CF-EDD2-36DF-3E8A3FB13179> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x12012b000 -        0x120133fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x1201dc000 -        0x1201e3fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x121875000 -        0x121894ffe +com.adobe.adobe_oobe_launcher Adobe OOBE Launcher 1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00) (1.0.0.64) <DAC1355F-1B1F-99B2-E5D7-01EF0BDB5688> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_oobe_launcher.framework/Versions/a/adobe_oobe_launcher
           0x1218f8000 -        0x121935feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x121c33000 -        0x121c3cfff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x121e00000 -        0x121e63ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x121ee9000 -        0x121f54ff0 +MultiProcessor Support ??? (???) <8A0A7B32-67A5-4CD5-80DC-F9BEDA271F2C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x123100000 -        0x1231cbfe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x124725000 -        0x124741ff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x124781000 -        0x1247a1ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x1247fb000 -        0x1247fbff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x124c00000 -        0x124e5cfef +com.adobe.PSAutomate 12.0.1 (12.0.1) <6A522366-AB0A-E14E-D695-CDC7F5211991> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x125072000 -        0x125116ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.25 (4.1.25.8769) <144F37AB-BE20-D159-C326-A34154FE04B3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x125178000 -        0x125218fef +com.adobe.AdobeScCore ScCore 4.1.25 (4.1.25.8769) <28F9410F-A5B5-BB59-FB7E-F5DB8FA70A0C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1252a2000 -        0x1252aafff  com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
           0x1252b3000 -        0x1252c4fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
           0x1252d1000 -        0x1252d2fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
           0x1252d8000 -        0x1252dcfff  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <F6E20DCA-3C00-8990-1F60-E5517F7D0C77> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x1253e7000 -        0x125476fff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
           0x1254cc000 -        0x1254d2fff  com.apple.audio.AppleHDAHALPlugIn 1

    Hi Chris-
    Hearing all these font issues with CS5 is scaring the pants off me.
    I had a nightmare getting CS4 to work after upgrading to Snow Leopard. Finally after biting the bullet and doing a fresh install of SL, I have had CS4 running fine.
    Two questions:
    1- Is it likely that CS5 will work fine since I fixed whatever was causing the CS4 problems?
    2- Is there a way to install CS5 side by side with CS4 that will include all my 3p plugins and then if CS5 works fine, just delete all the CS4 folders?
    I've been using PS since ver 3.0 on windows and had always heard how much better it worked with Macs... but the installs on Macs seem a lot more problematic than they were on windows... maybe it's just because PS is more complicated every year, but it's scary to those of use who need it to work or we can't work... so give me conservative advice... I want CS5 but would rather wait than have a major hassle.
    Thanks, Chris
    tom

  • Numbers keeps crashing everytime when i start working on a worksheet

    Since a few days Numbers keeps crashing when i start to work on a worksheet. And it doesn't matter if it's a template or a empty screen. I keep sending the reports to Cupertino.

    I am also experiencing this problem since yesterday on two computers. I know exactly what caused the problem to start happening, because I replicated it on the second computer. Now I have to figure out how to fix it.
    For the record, in case the iWork engineering team is watching:
    1. I opened a Numbers document from iCloud.
    2. I attempted to Duplicate that document by pressing Shift-Command-S.
    3. The progress bar dialog appeared saying that it was duplicating the document, but the progress bar just got stuck. After an hour it was still there. Numbers had obviously hung.
    4. I force-quit Numbers by option-control-clicking on its icon in the Dock.
    5. Ever since, Numbers crashes on startup with the following message in the crash log:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SFUDateFormat decimalPlaces]: unrecognized selector sent to instance 0x10014020'
    6. I deleted all Numbers preference files from the Preferences folder. It didn't help.
    7. I turned off Document & Data syncing in iCloud. It didn't help.
    8. Opening the same document on another machine and repeating above caused the exact same thing to happen. It appears that there was some corruption about that document that caused Duplicate to fail. Immediately previously to this problem, I had Duplicated several other documents and saved them successfully.
    The problem with Numbers is isolated to the user account I was using when I force quit the application. Numbers continues to work fine on other user accounts on the same machine.
    Now I'm off to try a few solutions to get Numbers working again.

  • Numbers is crashing immediately ...

    Hi.
    Since a few days Numbers and Pages are crashing immediately on startup. I reinstalled both products and but they are still crashing.
    I also checked the fonts.  I'm on a MacBook Pro with Mountain Lion 10.8.5.
    Any hint is welcome!
    >>>Crash-Log
    Process:         Numbers [830]
    Path:            /Applications/Numbers.app/Contents/MacOS/Numbers
    Identifier:      com.apple.iWork.Numbers
    Version:         2.3 (554)
    Build Info:      iWorkAppBundler-9850000~40
    App Item ID:     409203825
    App External ID: 12013123
    Code Type:       X86 (Native)
    Parent Process:  launchd [173]
    User ID:         501
    Date/Time:       2014-04-27 19:14:47.539 +0200
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          47426 sec
    Crashes Since Last Report:           -5
    Per-App Interval Since Last Report:  14922 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      1C124FDF-EC5E-CEBD-5CA8-9B1B24BCB63E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      fast lazy binding from unknown image
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x8fe740b5 dyld_fatal_error + 1
    1   dyld                                    0x8fe7704a dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 197
    2   libdyld.dylib                           0x9556c76c dyld_stub_binder_ + 20
    3   ???                                     0x92b47be7 0 + 2461301735
    4   ???                                     0x92b47b14 0 + 2461301524
    5   libdispatch.dylib                       0x9014dc82 _dispatch_client_callout + 46
    6   libdispatch.dylib                       0x9014dbf1 dispatch_once_f + 57
    7   libdispatch.dylib                       0x9014e831 dispatch_once + 31
    8   ???                                     0x92b47aec 0 + 2461301484
    9   ???                                     0x92b4796e 0 + 2461301102
    10  com.apple.HIServices                    0x96879a8c _RegisterApplication + 7364
    11  com.apple.HIServices                    0x96877d9d GetCurrentProcess + 43
    12  com.apple.HIToolbox                     0x913b7ffe MenuBarInstance::GetAggregateUIMode(unsigned long*, unsigned long*) + 38
    13  com.apple.HIToolbox                     0x911f4e63 _GetAggregateUIMode + 49
    14  com.apple.HIToolbox                     0x911f4e0c MenuBarInstance::IsVisible() + 40
    15  com.apple.HIToolbox                     0x911f4cc3 IsMenuBarVisible + 35
    16  com.apple.AppKit                        0x9355c676 _NSInitializeAppContext + 62
    17  com.apple.AppKit                        0x9355b973 -[NSApplication init] + 658
    18  com.apple.AppKit                        0x9355b504 +[NSApplication sharedApplication] + 153
    19  com.apple.iWork.Numbers                 0x0000c081 0x1000 + 45185
    20  com.apple.iWork.Numbers                 0x0000c048 0x1000 + 45128
    21  com.apple.iWork.Numbers                 0x0004fa2e 0x1000 + 322094
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9a2609ae kevent + 10
    1   libdispatch.dylib                       0x90150c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x901507a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9a2600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984aa0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x984a9e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98491daa start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9a2600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984aa0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x984a9e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98491daa start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x9a2600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984aa0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x984a9e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98491daa start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x8fe809c4  ebx: 0x96877dd9  ecx: 0x00000000  edx: 0x00000025
      edi: 0x8fe74f71  esi: 0x8fea707c  ebp: 0xbfffd008  esp: 0xbfffcfec
       ss: 0x00000023  efl: 0x00000246  eip: 0x8fe740b5   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x8fe9217f
    Logical CPU: 0
    Binary Images:
        0x1000 -   0x167fff  com.apple.iWork.Numbers (2.3 - 554) <1540DC91-ED75-AD99-24BD-22010B9894D5> /Applications/Numbers.app/Contents/MacOS/Numbers
      0x1a9000 -   0x22fff7  com.apple.iLifeMediaBrowser (2.8.0 - 637) <2D3B36A1-EFE0-36D4-83A2-668FE02AF862> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x276000 -   0xd87ffb  com.apple.sfcompatibility (1.0 - 0.0.1d1) <2237C99F-3144-0918-47A2-403A125BA9D0> /Applications/Numbers.app/Contents/Frameworks/SFCompatibility.framework/Version s/A/SFCompatibility
    0x1488000 -  0x1493ff7  com.apple.sfwebview (1.0 - 1.0) <BA9AC8B3-E014-1D60-C00A-9FF8F07B88B0> /Applications/Numbers.app/Contents/Frameworks/SFWebView.framework/Versions/A/SF WebView
    0x149c000 -  0x162dff3  com.apple.Keynote.sfdrawables (2.0 - 2.0) <7D531D66-A640-D293-817E-6D5C8D15E26D> /Applications/Numbers.app/Contents/Frameworks/SFDrawables.framework/Versions/A/ SFDrawables
    0x16ee000 -  0x17fcfef  com.apple.Keynote.sfrendering (1.0 - 1.0) <A817A67F-149D-85C4-4625-5DB753E8A4FF> /Applications/Numbers.app/Contents/Frameworks/SFRendering.framework/Versions/A/ SFRendering
    0x1861000 -  0x191bff3  com.apple.Keynote.sfutility (1.0 - 0.0.1d1) <ED93C91F-C30E-541E-BDD3-04A25579EAFB> /Applications/Numbers.app/Contents/Frameworks/SFUtility.framework/Versions/A/SF Utility
    0x1990000 -  0x19a9ff7  com.apple.Keynote.sfstyles (1.0 - 1.0) <25A20E06-8C1E-1BD9-7F0C-8B4027676DFD> /Applications/Numbers.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFS tyles
    0x19bb000 -  0x1e76feb  com.apple.SFTabular (1.0 - 1.0) <BB41B4DC-2F8E-B7E3-6274-7A92437B8FF4> /Applications/Numbers.app/Contents/Frameworks/SFTabular.framework/Versions/A/SF Tabular
    0x2040000 -  0x23aaff7  com.apple.Keynote.sfcharts (2.0 - 2.0) <0A1A116C-2AE2-7C65-E93B-1A54B1153626> /Applications/Numbers.app/Contents/Frameworks/SFCharts.framework/Versions/A/SFC harts
    0x25e4000 -  0x2857fef  com.apple.Keynote.SFWordProcessing (1.0 - 20030221_1) <F7952C77-8CF1-30F4-7FA7-A3A45FA2E184> /Applications/Numbers.app/Contents/Frameworks/SFWordProcessing.framework/Versio ns/A/SFWordProcessing
    0x297b000 -  0x29c6ff7  com.apple.Keynote.SFControls (1.0 - 20030306_1) <37F86C48-E752-688E-9A75-3F4D3BA5C054> /Applications/Numbers.app/Contents/Frameworks/SFControls.framework/Versions/A/S FControls
    0x29f5000 -  0x2a4eff7  com.apple.Keynote.sfarchiving (1.0 - 0.0.1d1) <E489EE3A-D0D0-749C-E38B-C9E87AA2BEE3> /Applications/Numbers.app/Contents/Frameworks/SFArchiving.framework/Versions/A/ SFArchiving
    0x2a82000 -  0x2ac7fe7  com.apple.Keynote.SFAnimation (1.0 - 0.0.1d1) <057D09D4-072E-995E-D3D0-42D1E0AAC07C> /Applications/Numbers.app/Contents/Frameworks/SFAnimation.framework/Versions/A/ SFAnimation
    0x2af4000 -  0x2b7cfff  com.apple.Keynote.proofreader (0 - 1) <6442D80E-854E-F13A-0C69-AFF7F7D927F7> /Applications/Numbers.app/Contents/Frameworks/SFProofReader.framework/Versions/ A/SFProofReader
    0x2b8c000 -  0x2bb6fe3  com.apple.Keynote.sflicense (1.0 - 0.0.1d1) <6399F656-7AD7-1357-F477-CB6128248032> /Applications/Numbers.app/Contents/Frameworks/SFLicense.framework/Versions/A/SF License
    0x2bd3000 -  0x2c8dfef  com.apple.Keynote.sfinspectors (1.0 - 1.0) <B9BB5F5B-F7CE-8F1A-F308-43A11E6617A5> /Applications/Numbers.app/Contents/Frameworks/SFInspectors.framework/Versions/A /SFInspectors
    0x2cec000 -  0x2daafff  com.apple.sf.sfapplication (1.0 - 1.0) <ED347FE0-B441-1346-3267-5A3D36F4292F> /Applications/Numbers.app/Contents/Frameworks/SFApplication.framework/Versions/ A/SFApplication
    0x2e17000 -  0x2e1dff7  com.apple.sf.sfblocks (1.0 - 1.0) <5A4D56C0-BF30-ED6E-4208-172D05E0C630> /Applications/Numbers.app/Contents/Frameworks/SFBlocks.framework/Versions/A/SFB locks
    0x2e28000 -  0x2ed3fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x2f17000 -  0x3036ffb  com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x30e7000 -  0x3d7cff3  com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4501000 -  0x4503fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x4509000 -  0x475aff3  com.apple.MessageFramework (6.6 - 1510) <6416EA36-21B9-3A8F-9F5C-E6BE23E9D131> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x4831000 -  0x486efff  com.apple.OSAKit (1.3 - 86) <0A129E24-F054-3C58-B1E1-68ECE126DC9C> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x4893000 -  0x4931feb  com.apple.MobileMe (8 - 1.0) <1EE19EEA-80C5-27C0-7F00-37D5B108FE24> /Applications/Numbers.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mob ileMe
    0x498d000 -  0x4bfdff7  com.apple.CalendarStore (6.0 - 1252) <C592854F-17BC-380A-B73B-3510A36B0325> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x4d00000 -  0x4db1ff7  com.apple.CoreMessage (6.6 - 1510) <5303AEA8-F3FA-38B4-9781-96E08D1BE559> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
    0x4e06000 -  0x4e53ffb  com.apple.ExchangeWebServices (3.0.1 - 158) <3D65B6B4-6B1D-3338-8D12-369B842A579B> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x4ea7000 -  0x4f02ff3  com.apple.IMAP (6.6 - 1510) <934EAEBF-C7EA-31B2-A8B3-15A74B3B81DB> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
    0x4f2b000 -  0x4f51fff  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <8DE3CB89-6682-3C69-8115-7027583F1B29> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x4f63000 -  0x4fbfffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x4fec000 -  0x4ff4ffb  com.apple.AppSandbox (2.1 - 1) <00FF2E6E-B400-37A5-A9DC-4FEFF854E959> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x4ffc000 -  0x5040ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x5070000 -  0x5079ff3  com.apple.CalendarAgentLink (1.0 - 38) <73072AA3-0AD8-3CA7-A057-A6FBBD9DA82A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x5087000 -  0x5098fff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x50a8000 -  0x510afff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x5145000 -  0x5193fff  com.apple.iCalendar (6.0 - 126.5) <D682D4AA-B640-356E-A141-845A64295A02> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x51be000 -  0x51cbffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x51d5000 -  0x5321ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x539d000 -  0x540affb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x5438000 -  0x546aff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x547c000 -  0x5485fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x548d000 -  0x54b4ffb  libsandbox.1.dylib (220.3) <159B2935-ED59-3219-8A35-D82885BABBE7> /usr/lib/libsandbox.1.dylib
    0x54bb000 -  0x54ceff7  com.apple.AppContainer (2.1 - 1) <201D693C-63E6-3771-BAF8-946B49F1420A> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x54dd000 -  0x54e1fff  com.apple.SecCodeWrapper (2.1 - 1) <AF713AD0-6A88-3F90-81F4-F3CB9F7B4624> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x54e8000 -  0x54ecffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x54f0000 -  0x54fcff7  libexslt.0.dylib (11.3) <C7ACF116-D881-3C9F-ACFB-A7C9E19E42F6> /usr/lib/libexslt.0.dylib
    0x3e000000 - 0x3e041fff  com.apple.glut (3.5.2 - GLUT-3.5.2) <0A9E8D36-8EA6-328D-AEF9-E7A7B1A830D4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x3f000000 - 0x3f48eff7 +org.coin3d.Coin.framework (3.0.0a - 3.0.0a) <3AA8D04D-ECC2-06BA-3F3C-61DAA4B0A644> /Applications/Numbers.app/Contents/Frameworks/Inventor.framework/Versions/C/Inv entor
    0x8fe73000 - 0x8fea5dd7  dyld (210.2.3) <5C651B52-C8CC-368F-8C84-85CB91C78425> /usr/lib/dyld
    0x90007000 - 0x90105ff7  libFontParser.dylib (84.7) <11EA883A-01C2-305C-AB64-F211E2685F3A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90106000 - 0x90123ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x90124000 - 0x90140fff  libPng.dylib (852) <43B10F0A-07AC-32A1-AE89-63FCF4F9EC72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9014c000 - 0x9015eff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x9015f000 - 0x9047fff3  com.apple.Foundation (6.8 - 945.19) <825DC594-EC88-3456-B20B-DDD372CA7DC2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90480000 - 0x908c2ff7  com.apple.CoreGraphics (1.600.0 - 333.1.1) <87547AFF-5550-3CFD-B24F-872E288649CA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x908c3000 - 0x908c3fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x908c4000 - 0x9093fff3  com.apple.CorePDF (2.2 - 2.2) <5A52A1CF-4801-3E6C-BF6E-E5E75A8DBD8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90940000 - 0x90a73ff3  com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x90a74000 - 0x90a84ff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x90a85000 - 0x90a85ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <CFAAB1B1-DBC7-3FF1-97BA-065C6620360D> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90a86000 - 0x90c42ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x90c43000 - 0x90d37ff3  com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x90d38000 - 0x90d5dff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90d5e000 - 0x90dbfff7  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <C1D471E9-B4D6-3A59-975C-B3B3A25E6058> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90dc0000 - 0x90f49ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90f4a000 - 0x90f6affd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x90f6b000 - 0x90fa1ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x90fa2000 - 0x90fe7ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90fe8000 - 0x91043fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91044000 - 0x9106dfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x910b1000 - 0x910b5fff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x911c7000 - 0x915aafff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x915ab000 - 0x915bbff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x915bc000 - 0x915d2fff  com.apple.CFOpenDirectory (10.8 - 151.10) <CC525D6E-2DEE-3058-ABBB-EA7DC488126C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x915d3000 - 0x915d3ffe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x916ab000 - 0x916abffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x916ac000 - 0x916d7ff9  com.apple.framework.Apple80211 (8.5 - 850.252) <74845A5A-3660-3B50-BDB3-334275E0B461> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x916d8000 - 0x916f6ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x916f7000 - 0x91743fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x91744000 - 0x91744fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <D4F5AB2C-0727-39FD-8EE9-E4DD3D78EB2E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91753000 - 0x91788ff5  libssl.0.9.8.dylib (47.2) <A0802BCF-121C-39C8-8712-B8E90ABDF502> /usr/lib/libssl.0.9.8.dylib
    0x91789000 - 0x917d0ff7  com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9186f000 - 0x918f4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x918f5000 - 0x91b0cfff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91b3e000 - 0x91c12ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91c13000 - 0x91c13fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <E54083A7-7467-3C3C-B30F-EE14C8D781A1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c14000 - 0x91c16ffd  libCVMSPluginSupport.dylib (8.10.1) <F7CD59FE-314A-366E-9A27-CE5BD1D438BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x91c17000 - 0x92034fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x92035000 - 0x924dcffb  com.apple.CoreAUC (6.22.03 - 6.22.03) <054DADA8-A077-3BF0-8BEA-C568E7360E75> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x924e1000 - 0x924e4ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x924e5000 - 0x92504ff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92505000 - 0x92529fff  libJPEG.dylib (852) <84D990B9-7CF9-3EFE-99BC-AD7657D50F29> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x928a3000 - 0x928defef  libGLImage.dylib (8.10.1) <E29ED217-09B3-3436-A961-B6F8EBAA7BED> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x928df000 - 0x92904ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92905000 - 0x92905fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92906000 - 0x929bafff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x929bb000 - 0x92b09ff3  com.apple.CFNetwork (596.6.2 - 596.6.2) <48614F1C-B71B-39F7-BE8B-CF2E623C4884> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x92b0a000 - 0x92b16ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x92f5a000 - 0x92f87ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x92f88000 - 0x92fb9fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93078000 - 0x93083ffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <E90852F7-2FB5-343A-9276-C5CCA414AEDB> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93084000 - 0x9308dfff  com.apple.CommerceCore (1.0 - 26.3) <2552248F-7D93-32DF-856C-4B66C51858BE> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9308e000 - 0x9316ffff  libcrypto.0.9.8.dylib (47.2) <6170B3CB-FA94-3601-A7F7-7F1B953C4F59> /usr/lib/libcrypto.0.9.8.dylib
    0x93228000 - 0x9322ffff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x93230000 - 0x93389ffb  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <461C4CCD-5F52-3D2F-AE22-D0CA7EF3F01A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9338a000 - 0x9338bfff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x93398000 - 0x93430fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <BE4B0D48-1239-3B9B-9905-551336777F09> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93437000 - 0x93438fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93439000 - 0x93443fff  com.apple.DisplayServicesFW (2.7.2 - 357) <E36F0444-BDF1-389D-86BD-65712795BFA3> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93444000 - 0x9345dfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9345e000 - 0x9401aff3  com.apple.AppKit (6.8 - 1187.40) <94E92235-7AD9-37EF-9B7C-B79074762370> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9401b000 - 0x94069ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9406a000 - 0x9406dff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x94094000 - 0x940e2ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x940e3000 - 0x94152ffb  com.apple.Heimdal (3.0 - 2.0) <C007CED7-DDC9-3BA1-8077-294FAE9C78D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94153000 - 0x941acfff  com.apple.QuickLookFramework (4.0 - 555.5) <4E381B7B-7EB5-37FD-9BA7-517DB48D07A7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x941ad000 - 0x9420ffff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x94214000 - 0x942d2ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x942d3000 - 0x942ddfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x942de000 - 0x942e5ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94a82000 - 0x94a82fff  com.apple.vecLib (3.8 - vecLib 3.8) <2D2064EB-FDD5-38AB-B722-4AFA4C6EE0C9> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94a83000 - 0x94addff3  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94ade000 - 0x94adefff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94adf000 - 0x94becff3  com.apple.ImageIO.framework (3.2.2 - 852) <74E1808B-A349-30EB-B4FE-CC5DD7452B71> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x94bed000 - 0x94beeffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x94bfe000 - 0x94c07ffe  com.apple.aps.framework (3.0 - 3.0) <26A02202-9CCA-37A5-AD26-234F55D51471> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x94c08000 - 0x95004feb  com.apple.VideoToolbox (1.0 - 926.106) <C1A411F0-7B7E-3669-83E5-FAEF2BAA8949> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x95005000 - 0x95012ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95013000 - 0x95046ff3  com.apple.GSS (3.0 - 2.0) <EFFA5947-B6BA-3171-B667-9CCB17E0FF2A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x95052000 - 0x9505bfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9505c000 - 0x95080fff  com.apple.PerformanceAnalysis (1.16 - 16) <0CF5DF0C-F23B-3C8D-9C06-486866CB9F53> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x950b1000 - 0x9512bff7  com.apple.securityfoundation (6.0 - 55115.4) <69D92A90-971C-3CD3-BAB1-ADF958C568BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9512c000 - 0x95130ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x95131000 - 0x9518bfff  com.apple.Symbolication (1.3 - 93) <C2781279-DFA9-3BAD-811B-83B608F9F0FB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9518c000 - 0x9519aff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x9519b000 - 0x95417ff7  com.apple.QuickTime (7.7.1 - 2599.46) <FFBB12A1-3F1C-307E-BB9D-6254A4547F0B> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9541a000 - 0x95503ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x95504000 - 0x95508fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95509000 - 0x95515ffe  libkxld.dylib (2050.48.12) <44C8E278-D8CA-3CF4-B3F4-0299654EB341> /usr/lib/system/libkxld.dylib
    0x95516000 - 0x95519ffc  libCoreVMClient.dylib (32.5) <CA150AC5-F98C-3F96-8B11-715B75A89C80> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9551a000 - 0x9555cffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9555d000 - 0x9556bfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x9556c000 - 0x9556efff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9556f000 - 0x9560afff  com.apple.CoreSymbolication (3.0 - 117) <9ECC6770-6FBB-36B3-A4EE-0B60875019A9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9560b000 - 0x95723ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x95724000 - 0x95725fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x95726000 - 0x9576eff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x957a0000 - 0x95898ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x95899000 - 0x95b59ff3  com.apple.security (7.0 - 55179.16.1) <1DA612FC-C177-3AC3-AB91-20A9710D0035> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95bf1000 - 0x95bfaffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95bfb000 - 0x95de3ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95de4000 - 0x95e4cff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <230C6EEC-A926-3720-82DB-25D0FAAEF962> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95e4d000 - 0x95ef7fff  com.apple.LaunchServices (539.11 - 539.11) <29171C94-C757-384C-B42E-4579B246E26D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95f75000 - 0x95f7cffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x95f7d000 - 0x95f89ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x95f8a000 - 0x96006ff3  com.apple.Metadata (10.7.0 - 707.12) <D9221655-56FE-332C-82FF-0CA7EDD521C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96007000 - 0x96008fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x9600b000 - 0x96118057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96119000 - 0x9611ffff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x961c2000 - 0x96206ff7  libGLU.dylib (8.10.1) <5520818E-F290-3942-80B8-370CF9C9B54C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96207000 - 0x96207fff  libSystem.B.dylib (169.3) <C885EEA5-B0A8-30C4-9CCB-DB475115AD72> /usr/lib/libSystem.B.dylib
    0x96208000 - 0x9620cfff  com.apple.OpenDirectory (10.8 - 151.10) <00E824A9-601A-32B3-BD4C-C8A90F6D2C36> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9620d000 - 0x962feffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x962ff000 - 0x9631cfff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x9631d000 - 0x96336ffb  com.apple.frameworks.preferencepanes (15.1 - 15.1) <D788C8BE-5A13-3EA3-93FA-9B5CEEFE249B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x96337000 - 0x96343ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x96348000 - 0x963aefff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x963af000 - 0x963f1fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x963f2000 - 0x96439ff3  com.apple.CoreMedia (1.0 - 926.106) <B1999B3E-F0D3-34CB-A2E7-08CE45B744D9> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9643a000 - 0x9646fff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x96470000 - 0x96485fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96486000 - 0x9648dffe  com.apple.agl (3.2.1 - AGL-3.2.1) <B5A30D4D-F52B-3C3F-BA59-C22EABBDBD62> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9651c000 - 0x965b3ff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x965b6000 - 0x9660dff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x96610000 - 0x966adff7  com.apple.PDFKit (2.8.5 - 2.8.5) <F5D6A1C9-3EC1-312C-839F-6C13708B2CF2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x966ae000 - 0x966c3fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x966c4000 - 0x966dbfff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x966dc000 - 0x966e6fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x966e7000 - 0x966e9ffb  libRadiance.dylib (852) <E512FA13-AFCA-3B7A-A257-FF71A7D38EF3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x966ea000 - 0x967f5ff7  libJP2.dylib (852) <47F0FEEE-04FC-324A-8D44-8F792F95A5BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x967f6000 - 0x9680dff4  com.apple.CoreMediaAuthoring (2.1 - 914) <DEB24207-C250-3308-8C97-E4FA700A8616> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9680e000 - 0x9685eff7  com.apple.CoreMediaIO (309.0 - 4163.1) <2CB854AA-072B-3829-B7D9-133CFEC6272F> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9685f000 - 0x96871fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x96872000 - 0x968c9ff3  com.apple.HIServices (1.20 - 417) <B8410ABC-E0DB-31EB-B923-17F3B65B5F4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x968ca000 - 0x968d0fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x968d1000 - 0x96900ff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96901000 - 0x96926ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96927000 - 0x9692dfff  libGFXShared.dylib (8.10.1) <99622AD6-7A1D-368E-B163-A38400885B45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97667000 - 0x976b1ff7  com.apple.framework.CoreWLAN (3.4 - 340.18) <BD6B479B-B772-37E0-9520-41B84D20C3F9> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x976b2000 - 0x976bcffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x976bd000 - 0x976bdfff  com.apple.Carbon (154 - 155) <17F1B675-E054-3D2C-900B-C9CE69F1FC31> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x976be000 - 0x976befff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x976bf000 - 0x9775fff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97760000 - 0x9787cffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9787d000 - 0x978ccff6  libTIFF.dylib (852) <8375E65D-35FA-315B-993D-254F687578CC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x978cd000 - 0x978cdfff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x978ce000 - 0x97905ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <F05946C0-D3BE-379A-A00E-D2BA6B4EE48D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97a04000 - 0x97a0dff9  com.apple.CommonAuth (3.0 - 2.0) <B28B58CA-C5B1-378E-A969-6A36C7F754D1> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97a0e000 - 0x97a69ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97a74000 - 0x97becff5  com.apple.QuartzCore (1.8 - 304.4) <5EE0260F-D2D0-3983-ABDB-BB0FA8EE1471> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97bf4000 - 0x97bf4fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x97bf5000 - 0x97c6aff7  com.apple.ApplicationServices.ATS (341.2 - 341.2) <E12BB943-9E01-376E-B645-E75413B2CFFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97c6b000 - 0x97cc5ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97cc6000 - 0x97f69ff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x97f6a000 - 0x98322ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98364000 - 0x98381fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x98382000 - 0x983c1ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x983c2000 - 0x98428ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9842c000 - 0x98490ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98491000 - 0x9854effb  libsystem_c.dylib (825.40.1) <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
    0x9854f000 - 0x98556fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x9855a000 - 0x9855dffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x9855e000 - 0x98562ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x98563000 - 0x98564ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98565000 - 0x9886aff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9886b000 - 0x9886cfff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x98870000 - 0x98ac9ff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98aca000 - 0x98ad5fff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x98ad6000 - 0x98ad9fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98ada000 - 0x98adbfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x98adc000 - 0x98b08ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x98b09000 - 0x98df5fff  com.apple.AOSKit (1.051 - 152.4) <31156351-70C4-381A-810D-8E5A937EF95C> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x98df6000 - 0x99090ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x99091000 - 0x991ccff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x991cd000 - 0x991dbff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x991dc000 - 0x9948affb  com.apple.MediaToolbox (1.0 - 926.106) <37A0FC0E-9BC6-3B6B-9F06-489813758F67> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9948b000 - 0x994adfff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x99d2c000 - 0x99d3fff9  com.apple.MultitouchSupport.framework (237.4 - 237.4) <59197044-E513-3223-9337-6EB0F828CB82> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99d40000 - 0x99dd2ffb  libvMisc.dylib (380.10) <D9567F48-ED35-3362-B769-50916D30C601> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x99dd3000 - 0x99e15ff7  libcups.2.dylib (327.7) <6FAC537D-7EC3-3E82-B6E8-F87DE07546B5> /usr/lib/libcups.2.dylib
    0x99e16000 - 0x99f73ffb  com.apple.QTKit (7.7.1 - 2599.46) <C5EB0EB8-D20F-3F66-876D-C23E1B5D4F46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99f74000 - 0x99fd8ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x99fd9000 - 0x99fdcff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x99fdd000 - 0x9a24affb  com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9a24b000 - 0x9a265ffc  libsystem_kernel.dylib (2050.48.12) <9B50E922-DCEA-3066-A9B2-613A6D2C5C69> /usr/lib/system/libsystem_kernel.dylib
    0x9a292000 - 0x9a2f9fe7  libvDSP.dylib (380.10) <A9BB03FC-F70B-388F-8917-F8CE69F2164A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a2fa000 - 0x9a308fff  com.apple.opengl (1.8.10 - 1.8.10) <385E048A-FFB2-348A-8F80-572C2494A776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9a309000 - 0x9a30dffc  libGIF.dylib (852) <48577360-5C29-3B75-AF99-A4340F22218E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9a37f000 - 0x9a38efff  libGL.dylib (8.10.1) <74BE67B7-9EA0-3F16-B43B-48CB92C9ED27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9a38f000 - 0x9a391fff  com.apple.securityhi (4.0 - 55002) <027D2D24-4043-3B43-90F3-112FB46903E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a392000 - 0x9a39afff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x9a39b000 - 0x9a44aff7  com.apple.CoreText (260.0 - 275.17) <433387A6-69C1-32A5-9B61-9E2F6A5F9040> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9a44b000 - 0x9a67bfff  com.apple.QuartzComposer (5.1 - 287.1) <6C0C66F9-BC18-3216-88CC-BAE86937448B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 423
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=235.2M resident=127.7M(54%) swapped_out_or_unallocated=107.5M(46%)
    Writable regions: Total=59.0M written=6224K(10%) resident=7732K(13%) swapped_out=0K(0%) unallocated=51.4M(87%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             42.3M
    MALLOC guard page                    48K
    Memory tag=35                      3956K
    Stack                              66.0M
    VM_ALLOCATE                          16K
    __DATA                             11.1M
    __DATA/__OBJC                       180K
    __IMAGE                             528K
    __IMPORT                            132K
    __LINKEDIT                         54.7M
    __OBJC                             6592K
    __OBJC/__DATA                        52K
    __PAGEZERO                            4K
    __TEXT                            180.5M
    __UNICODE                           544K
    mapped file                        64.8M
    shared memory                        12K
    ===========                      =======
    TOTAL                             431.2M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i5, 2.5 GHz, 16 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST750LX003-1AC154, 750,16 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: Expansion Desk, 0x0bc2  (Seagate LLC), 0x3320, 0x15200000 / 1
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x1d110000 / 10
    USB Device: Razer 1600dpi Mouse, 0x1532, 0x0001, 0x1d111000 / 12
    USB Device: Logitech Speaker, 0x046d  (Logitech Inc.), 0x0a10, 0x1d112000 / 11
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0x1d183000 / 6
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4

    I tried holding the shift key while launching the application, but Numbers and Pages are still crashing.
    I also checked the disk and all file permissions. Hmmm .... the only change at my macbook was the Mountain Lion Security update 2014_002  ...

  • Read Column Cause Crash

    hi!
    I add a colunm in a matrix, with type it_EDIT
    SboColumn = sboMatrix.Columns.Add(Key, SAPbouiCOM.BoFormItemTypes.it_EDIT)
    The user type a char in the column. Then I want to read tha value:
    sboEditTextKey = sboMatrix.Columns(Key).Cells.Item(Row).Specific
    with this line code, sBO crash
    str_Value = sboEditTextKey.Value
    I must use this:
    str_Value = sboEditTextKey.string
    versione BO:6.50.097 SP:01 EF:03

    Andrea,
    the value you are trying to read is stored inside a control SAP calls EditText (basically a textbox).
    The EditText has no value property, hence the crash.
    It is better (and recommended by SAP) to cast the item.specific into the control it really is.
    sboMatrix.Columns(Key).Cells.Item(Row).Specific.string
    will work, but it involves late binding.
    See below:
    Dim sboEditTextKey as EditText
    sboEditTextKey = sboMatrix.Columns(Key).Cells.Item(Row).Specific
    str_Value =sboEditTextKey.String
    Nothing wrong with SAP here. Exept for causing a total crash, which is a little over the edge
    HTH Lutz Morrien

  • Debugger shows wrong line numbers in local file

    I'm using the debugger in Safari 5 for a web app that is entirely made up of local files (it's actually a dashboard widget). For most files it's fine, but there are a few where there appears to be a skew between the actual line number and the line number displayed by Safari. As a result, some errors are displayed with the wrong line number (e.g. "Syntax error on line 5" when the actual line is 2). More troublingly, if I place a breakpoint in a file, it acts as if it is on the wrong line so when I step through the code the current line is actually different from the one displayed by the debugger.
    The weird thing is that the line numbers displayed in the script panel are all correct, so line 47 really says "47" in the left margin, but Safari still thinks that it is line 44. In general, the skew seems to be constant and equal to -3, so the real current line when debugging is 3 lines higher than the one displayed as the current line in the debugger.

    This looks to me like a Safari bug. I did some experimentation, and it appears to be caused by the use of the newer getter syntax in an object prototype. When I do this the debugger seems to set breakpoints at the wrong lines as described in my previous post:
    function foo() {
    foo.prototype = {
      get bar() {
      do_it: function() {
        var baz = 1;
    var obj = new foo();
    obj.do_it();
    If remove the definition of the bar getter or change it to use the older __defineGetter__ syntax then the problem goes away.

  • What is the proper way to record line numbers in Master/Detail records?

    Guys and Gals,
    Been thinking about this for awhile, but thought it best to ask the people who really know what they are doing.
    What is the proper way to record & show line numbers in a Master / Detail record set?
    For example, take Master/Detail relationship Orders and OrderItems. Orders has a column Document_Number and OrderItems has Document_Number, Line_Number. Line_Number should contain the row number 1,2,3,4 ... etc. for each row in a document.
    Should I ...
    <ol><li>Add a sequence and a trigger in the database? The FusionOrderDemo does this, but then the sequence never "resets" and I've got row numbers that keep incrementing. So one document has rows 4,5,6 and the next document has 7,8,9 when they should both have 1,2,3.</li>
    <li>Programmatically take care of the row numbers? This seems like I'm asking for trouble. Anytime an insert or delete operation gets done, I'll have to iterate through rows and re-assign row numbers.</li>
    <li>Is there a way to assign row numbers in a table iterator (or data collection?) to an entity?</li></ol>
    Any suggestions would be appreciated. It's looking like #2 is my only option, but if anyone knows different I'd love the input.
    Will

    Thank you both guys.
    As John said, I believe I'm looking for a gap-free sequence per master record.
    The line number of the OrderItems table is the second half of the primary key. The first half of the primary key (DocumentNumber) is the foreign key to the Orders table.
    Think of it like line items on an order or invoice. For example, if you were talking to someone on the phone concerning an invoice, you might say, "The pricing for line item #3 is incorrect." In this case, it's good to have a common reference. Or imagine a Microsoft Excel spreadsheet with no row numbers displayed! You'd never get anywhere if you had to explain something over the phone.
    If this is tricky to perform, I take it using a sequence and trigger such as the Fusion Order Demo is the best way to approach the challenge for simplicity's sake?
    Will

  • Bridge CS4 attempt to Refresh Preview or Save output causes crash in Mac OS 10.8.2

    Ever since installing Mountain Lion, I can no longer create contact sheets in Adobe Bridge CS4, which I was always able to do before installing ML. As soon as I press "Refresh Preview," or just try to SAVE the Output (PDF) without refreshing the preview, Bridge crashes with the  report below. This is on a MacPro 2.66 GHz Quad-Core Intel Xeon with 20 MB RAM, OS 10.8.2.  Ideas gratefully accepted!
    Process:    
    Adobe Bridge CS4 [36715]
    Path:       
    /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    Identifier: 
    com.adobe.bridge3
    Version:    
    3.0.0.464 (3.0.0.464)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [255]
    User ID:    
    501
    Date/Time:  
    2012-12-10 11:27:27.803 -0800
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:     
    103175 sec
    Crashes Since Last Report:      
    7
    Per-App Interval Since Last Report:  702 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                 
    B4E344BD-3EB9-8467-8B6F-58F7BB669CFF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    __TEXT            
    0000000000001000-0000000000cd8000 [ 12.8M] r-x/rwx SM=COW  /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                
    0x1f013730 PDFLInitFriends + 192
    1   com.apple.carbonframeworktemplate
    0x1e140594 Init() + 64
    2   com.apple.carbonframeworktemplate
    0x1e15efd8 ESInitialize + 120
    3   com.adobe.bridge3        
    0x003a4c90 VCUI_Terminate + 1632106
    4   com.adobe.bridge3        
    0x003a51d5 VCUI_Terminate + 1633455
    5   com.adobe.bridge3        
    0x003a41c3 VCUI_Terminate + 1629341
    6   com.adobe.bridge3        
    0x00371cb4 VCUI_Terminate + 1423246
    7   AdobeExtendScript        
    0x01dbafac ScScript::LiveObjectFunction::propConstruct(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, bool) + 328
    8   AdobeExtendScript        
    0x01d8c5b8 ScScript::RealEngine::makeObject(ScScript::ESVariant&, int, ScCore::BasicArray const*, ScScript::Object*) + 532
    9   AdobeExtendScript        
    0x01d236f7 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1461
    10  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    11  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    12  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    13  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    14  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    15  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    16  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    17  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    18  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    19  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    20  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    21  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    22  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    23  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    24  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    25  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    26  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    27  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    28  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    29  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    30  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    31  AdobeExtendScript        
    0x01d331cb jsOpUnary::run(jsRunner&, ScScript::ESVariant&) const + 51
    32  AdobeExtendScript        
    0x01d2b1dc jsOpLogAndOr::run(jsRunner&, ScScript::ESVariant&) const + 232
    33  AdobeExtendScript        
    0x01d28412 jsOpIf::run(jsRunner&, ScScript::ESVariant&) const + 92
    34  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    35  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    36  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    37  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    38  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    39  AdobeExtendScript        
    0x01d331cb jsOpUnary::run(jsRunner&, ScScript::ESVariant&) const + 51
    40  AdobeExtendScript        
    0x01d28412 jsOpIf::run(jsRunner&, ScScript::ESVariant&) const + 92
    41  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    42  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    43  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    44  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    45  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    46  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    47  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    48  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    49  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    50  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    51  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    52  AdobeExtendScript        
    0x01d8dc5b ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 825
    53  AdobeExtendScript        
    0x01d8ef14 ScScript::RealEngine::call(ScCore::Variant const&, ScCore::String const&, ScCore::BasicArray const&, ScCore::Variant*, int) + 434
    54  AdobeExtendScript        
    0x01d85ca3 ScScript::Object::notify(ScCore::Message&) + 1399
    55  AdobeScCore              
    0x01e9081f _broadcast(ScCore::Message&, ScCore::TSimpleArray<ScCore::Listener>&) + 155
    56  AdobeScCore              
    0x01e90950 ScCore::Broadcaster::broadcast(ScCore::Message&) const + 162
    57  AdobeScCore              
    0x01e85cd7 ScCore::LiveObject::invoke(ScCore::String const&, ScCore::Array const&, ScCore::Variant&, ScCore::Error*) const + 265
    58  com.adobe.bridge3        
    0x002bbadc VCUI_Terminate + 677302
    59  com.adobe.bridge3        
    0x002bbbd4 VCUI_Terminate + 677550
    60  com.adobe.bridge3        
    0x0033e0c3 VCUI_Terminate + 1211293
    61  com.adobe.bridge3        
    0x0026eefd VCUI_Terminate + 362967
    62  com.adobe.bridge3        
    0x00296cc5 VCUI_Terminate + 526239
    63  com.adobe.bridge3        
    0x0026fcb2 VCUI_Terminate + 366476
    64  com.adobe.bridge3        
    0x00274c3b VCUI_Terminate + 386837
    65  com.adobe.bridge3        
    0x0026f276 VCUI_Terminate + 363856
    66  com.adobe.bridge3        
    0x0026c303 VCUI_Terminate + 351709
    67  com.adobe.bridge3        
    0x0026c3d0 VCUI_Terminate + 351914
    68  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    69  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    70  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    71  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    72  com.apple.HIToolbox      
    0x960c3a01 SendControlHit(HIView*, OpaqueEventRef*, short, unsigned long) + 303
    73  com.apple.HIToolbox      
    0x960ba1c1 HIView::NotifyControlHit(OpaqueEventRef*, short, unsigned long) + 41
    74  com.apple.HIToolbox      
    0x960ba3d3 HIView::ClickInternal(CGPoint const&, unsigned long, void (*)(OpaqueControlRef*, short), OpaqueEventRef*, bool) + 259
    75  com.apple.HIToolbox      
    0x960ba5dd HIView::ClickSelf(OpaqueEventRef*) + 387
    76  com.apple.HIToolbox      
    0x9602b912 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2598
    77  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    78  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    79  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    80  com.apple.HIToolbox      
    0x9600cfda CallNextEventHandler + 84
    81  com.adobe.bridge3        
    0x0026c491 VCUI_Terminate + 352107
    82  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    83  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    84  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    85  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    86  com.apple.HIToolbox      
    0x9600f821 HIView::Click(OpaqueEventRef*) + 317
    87  com.apple.HIToolbox      
    0x9600f6d8 HIViewClick + 50
    88  com.apple.HIToolbox      
    0x961a5897 HandleClickAsHIView(OpaqueWindowPtr*, OpaqueEventRef*) + 156
    89  com.apple.HIToolbox      
    0x961a5e46 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 494
    90  com.apple.HIToolbox      
    0x961a54a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    91  com.apple.HIToolbox      
    0x9600da38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    92  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    93  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    94  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    95  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    96  com.apple.HIToolbox      
    0x960557b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    97  com.apple.HIToolbox      
    0x96022a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    98  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    99  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    100 com.adobe.bridge3        
    0x003b7313 Mondo::CProcess::Execute(Mondo::CFlags<unsigned long>) + 857
    101 com.adobe.bridge3        
    0x003ab04a Mondo::CExecutable::RunExecute() + 78
    102 com.adobe.bridge3        
    0x003ab0cb Mondo::CExecutable::Run() + 39
    103 com.adobe.bridge3        
    0x0047f94a Mondo::CApplication::Main() + 58
    104 com.adobe.bridge3        
    0x0047ff06 main + 84
    105 com.adobe.bridge3        
    0x00002cc2 start + 258
    106 com.adobe.bridge3        
    0x00002be9 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x996829ae kevent + 10
    1   libdispatch.dylib        
    0x9a481c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib        
    0x9a4817a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338afc pthread_cond_wait + 48
    3   com.adobe.CameraRaw      
    0x0e845aea 0xe800000 + 285418
    4   com.adobe.CameraRaw      
    0x0eb2d2f4 EntryFM + 836980
    5   com.adobe.CameraRaw      
    0x0e9024a6 0xe800000 + 1057958
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338afc pthread_cond_wait + 48
    3   com.adobe.CameraRaw      
    0x0e845aea 0xe800000 + 285418
    4   com.adobe.CameraRaw      
    0x0ebbd118 EntryFM + 1426328
    5   com.adobe.CameraRaw      
    0x0e9024a6 0xe800000 + 1057958
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x005fa683 vio_timeout + 123585
    5   com.adobe.bridge3        
    0x005fa6e2 vio_timeout + 123680
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x005fa683 vio_timeout + 123585
    5   com.adobe.bridge3        
    0x005fa6e2 vio_timeout + 123680
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib   
    0x9967f8e6 mach_wait_until + 10
    1   libsystem_c.dylib        
    0x92337c1c nanosleep + 375
    2   com.adobe.bridge3        
    0x00388b0d VCUI_Terminate + 1517031
    3   com.adobe.bridge3        
    0x00388b6d VCUI_Terminate + 1517127
    4   com.adobe.bridge3        
    0x00367916 VCUI_Terminate + 1381360
    5   com.adobe.bridge3        
    0x00388f93 VCUI_Terminate + 1518189
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x0063a3c6 vio_timeout + 385028
    5   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    6   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    7   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    8   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x00ac5f5e st_tz_names_entry::st_tz_names_entry() + 1986
    5   com.adobe.bridge3        
    0x005dd9d4 vio_timeout + 5650
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 32:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x1f01367e  ecx: 0x00000000  edx: 0x00002060
      edi: 0x00000000  esi: 0x1e140616  ebp: 0xbfffc308  esp: 0xbfffc290
       ss: 0x00000023  efl: 0x00010246  eip: 0x1f013730   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 6
    Binary Images:
    0x1000 -   0xcd7ff7 +com.adobe.bridge3 (3.0.0.464 - 3.0.0.464) <1B6A56FB-E649-4A04-B272-80FEA8737FEB> /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    0x13bf000 -  0x13fffef +AdobeARE (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1409000 -  0x142dff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1440000 -  0x145afff +AdobeBIB (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1465000 -  0x1572fff +AdobeACE (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1590000 -  0x182cfef +AdobeCoolType (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeCoolType.

    Still crashes the same way.
    Running a bit out of options I'm afraid.
    To be absolutely sure, you also did the 2.1 update for the Output Module:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4229
    Not sure the link works, sometimes they are country specific but otherwise check the downloads at Adobe.com
    Did you try it in a new user account just for testing. Sometimes check and repair permissions using Apple Disk Utility (or 3th party like Cocktail) will also help.
    And finally I should point you to the fact that due to a new upgrade policy from Adobe you have until 31 december this year to profit from the upgrade price for PS CS6, after the 1st of january 2013 you will have to pay the full license price for CS6.

  • Line numbers in text area

    im using the class JTextArea of the swing class to view some text documents.
    How i can vies the number of lines of each document:
    i want the line numbers not in the document but as a part of the text area. for example:
    1:line 1
    2:something
    3:something
    4:sjdhfskjhsl
    Please help.Thanx

    You can do it in two ways.
    Place a JLabel on left of your Text Area, Add a KeyListener to the text area. On each ENTER key press count lines of JTextArea.getLineCount(). and paint your JLabel as well. Secondly you will need to move the JLabel as soon as the ScrollBar of JScrollPane will move.
    Second way is like:
    <code>
    import java.awt.Toolkit;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.text.BadLocationException;
    public class MyTextArea extends JTextArea{
    public MyTextArea(){
    super("1: ");
    setCaretPosition(3);
    addKeyListener(new MyKeyListener());
    class MyKeyListener extends KeyAdapter{
    public void keyReleased(KeyEvent e){
    try{
    switch(e.getKeyCode()){
    case KeyEvent.VK_ENTER:
    int position=getCaretPosition();
    int line=getLineOfOffset(position);
    insert((line + 1) + ": ", position);
    changeLineNos(line);
    break;
    case KeyEvent.VK_BACK_SPACE:
    position=getCaretPosition();
    line=getLineOfOffset(position);
    if(line > 0){
    int cLoc=getCollonLocation(position);
    int diff=position - cLoc;
    if(diff <= 2){
    replaceRange("", getLineEndOffset(line - 1) - 1, cLoc + diff);
    changeLineNos(line);
    } else{
    int cLoc=getCollonLocation(position);
    int diff=position - cLoc;
    if(diff <= 2){
    if(getLineCount() > 1){
    replaceRange("", 0, getLineEndOffset(0));
    changeLineNos(0);
    } else{
    setText("1: ");
    Toolkit.getDefaultToolkit().beep();
    break;
    } catch(BadLocationException ex){
    ex.printStackTrace();
    private void changeLineNos(int lineNo) throws BadLocationException{
    int total=getLineCount();
    if(total > lineNo){
    while(lineNo < total){
    int offset=getLineStartOffset(lineNo);
    int collonLocation=getCollonLocation(offset, lineNo);
    replaceRange("" + ++lineNo, offset, collonLocation);
    private int getCollonLocation(int offset, int lineNo) throws BadLocationException{
    return getText(offset, getLineEndOffset(lineNo) - offset).indexOf(':') + offset;
    private int getCollonLocation(int caretPosition) throws BadLocationException{
    int lineNo=getLineOfOffset(caretPosition);
    int offset=getLineStartOffset(lineNo);
    return getText(offset, getLineEndOffset(lineNo) - offset).indexOf(':') + offset;
    public static void main(String argv[]){
    JFrame frame=new JFrame();
    MyTextArea area=new MyTextArea();
    frame.getContentPane().add(new JScrollPane(area));
    frame.setSize(300, 200);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    </code>
    Regards,

  • How to print line numbers in NWDS for Java?

    Hi everyone,
    does someone know how to print out program code with line numbers from the Netweaver Developer Studio for Java? This is inevitable for code reviews.
    In Eclipse 3.4 this issue is solved. Is there possibly such a patch for NWDS as well?
    Thanks,
    Maria

    Hi Pascal,
    thanks for the quick reply. The setting you mention displays line numbers on the screen alright, but printing out does not work.
    We use: SAP NetWeaver Developer Studio for SAP NetWeaver 7.1 SP06 PAT0000, Build id: 200807051938.
    I guess it just does not work, because it was fixed only for Eclipse 3.4, and the above NWDS version bases on Eclipse 3.3.
    What do you recommend for code inspections - copy/paste into PSPad or do you know a more comfortable practice?
    Greetings
    Maria

Maybe you are looking for

  • Is it possible to change 10.5.2 to 10.4 Leopard to Tiger for new computer?

    For some reasons I need to start up my new MacBook Pro by OS 10.4 (Tiger). The computer doesn't accept to install Tiger. Is it locked to Leopard and doesn't work with any previous OS? I'd like to install it on my external hard disc but It's not possi

  • How can I make the text larger... I cant read it anymore

    I need to have the text enlarged..how do i do that. I cannot read anything on my pages anymore

  • Cheque No in Clearing account

    Hi For doing reconciliation how to gt cheque no in Clearing account i found cheque information from environment is any other way of displaying it in column raj

  • Accessing a Panel being used in a ScrollPane

    Hey all. I'm having trouble accessing a Panel that I am placing inside a ScrollPane. I am getting a ClassCastException, trying to cast a JTextArea to an extension of JFrame. I make the content of the ScrollPane using this code: switch(jComboBox2.getS

  • Can't access Adobe ID via PSE 8

    When I try to sign in with my Adobe ID in PSE 8 I get the following error message:  "Photoshop.com services are currently unavailable.  Please try again or check your network connection.  Error 400."   But I can login via my browser.   Need help acce