Most complex application

What is the most complex application that users have developed using HTMLDB? Is it available for preview (read-only) on htmldb.oracle.com?
I am having difficulty "selling" HTMLDB in our predominantly client-server/VB/.NET/ASP, etc shop. "This is a configurator, not a development environment, you cant develop really complex apps using this" "You dont even have access to the raw HTML to tweak it". "Our typical apps have loads of business logic in it, no way this toy can do it", "The (MS) tools we are currently using can do all of this stuff, why would I want to consider learning a new tool and switching", etc.
Thanks

to be derived from zero experience or knowledge of
HTML DB.Right, these were the comments I received after a 1-hour demo of HTMLDB to a group of MS-based developers who had never seen HTMLDB before.
I do not understand the comparison to a configurator,
that one is confusing. HTMLDB is a "configurator". You guys call it a "declarative programming environment". If anyone has seen Siebel Tools, that is also a configurator. In other words, a tool/environment which generates code for you and provides hooks to override/customize the generated code. The code in this case is HTML.
Their thought was that any point-n-click, wizard-based tool is for sissies. "Real men" use Visual Studio or the other MS offerings. HTMLDB was compared to MS Front Page or even MS Access to build simple data-manipulation forms.
I guess I would ask what is the definition of a "really > complex app"?An app with a lot of complex business logic, complex navigation, validations, high degree of client interaction (Javascript/DHTML with the browser paradigm), etc.
I also like the conclusion of "the MS tools...can do
all of this stuff". Do what? Write all of your
business logic for you automagically? Hardly. TheBy "all this stuff", they meant the application development environment that HTMLDB provides, the widgets, the branching, the validations, etc. That is not exactly ground-breaking, a number of development environments out there offer similar things.
Needless to say, I didnt agree. IMHO, HTMLDB is not a revolution, its a natural evolution for Oracle as a database company to provide tools to build apps using that data. But I can see how it does not offer anything so compelling as to persuade a 10-year MSCE veteran to consider switching
Thanks

Similar Messages

  • HR_INFOTYPE_OPERATION-- Complex Application Error

    Hi:
    I am using the FM "HR_INFOTYPE_OPERATION" for uploading data from flat file to IT0008 infotype.It's giving some error "A complex application error has occurred".I have checked SAP note 710779 but it does not help very much because we are already in the release and the correction is already there.Anybody with any idea is highly appriciated.Award points confirmed.
    ~Sinchan

    try putting DIALOG_MODE = '2' and execute the program.. you cn check if the values get passed to the function module ocrrectly..
    ~Suresh

  • Complex application dependencies

    I have a somewhat complex application dependency tree.
    I have four applications A, B, C, and D. Each application is deployed in its own EAR file. B depends on EJB's from application A. C also depends on A. D depends on A, B, and C. In addition, A depends on B and C. So it makes a diamond, with A at the top, B and C side-by-side on the middle level, and D at the bottom. Each application is deployed in its own EAR file.
    The parent attrib in server.xml doesn't handle this at all. First, you can only specify one parent for each application, and I have one app (D) that depends on three others. Also, the parent relationship only flows one direction. I have three apps that have bidirectional dependencies (A<->B, A<->C).
    Putting all the EJB's in a single EAR file would be very clunky. A couple of my apps already take serveral minutes to deploy, putting them all together would seriously dent development productivity.
    Has anyone else had complex dependencies like this? If so, how did you deal with them?
    Thanks,
    Lance

    On 19/7/09 16:04, Ralf Ebert wrote:
    > I have to agree, setting up a run configuration and dependencies for
    > SWTBot for a complex application is tedious.
    >
    > What do you think about reducing the runtime dependencies of SWTBot?
    > Something like a single plug-in "org.eclipse.swtbot.runtime" containing
    > all the classes required at runtime (maybe complemented by separate
    > finder plug-ins)?
    Could you elaborate more on what you mean by a plugin containing runtime
    classes and how you propose to split them ?
    Ketan
    http://studios.thoughtworks.com/twist | http://twitter.com/ketanpkr

  • I face 1 interview question: what is the most complex Crystal reorts u made

    Hi, i faced one frequent question in interview s ?
    wht is the most complex crystal reports you ever been made ?
    can any one hlep me how to describe this answer ...
    Thanks.

    Number of subreports, custom filters, Complex SQL in a Command Object, writing your own Stored Procedures and the list goes on. Look at some of our sample reports to get an idea of what CR is capable of doing.

  • After Belle Update most of applications missing???

    Hi,m new to community...
    i have a majour problem with my new update.
    i have a Nokia N8 i just update it to belle .
    after the update there are several applications are missed,i've installed them via store and most of applications are paid onces.. like, theft aware,fruit ninja,call recorder,angry birds. ect.....
    now i cant find them only 3 of applications are showing...
    Solved!
    Go to Solution.

    You must re-download them (if they still are in the store, many of mine are gone). And possibly you must buy them again (limited number of downloads). I had to hard-reset my phone once, and had to re-download then. Now I get "max number of downloads reached" on some apps and have to pay again :-(
    Lars-Erik Østerud - http://www.osterud.name/nokia.html

  • [JS CS5.5] Complex Application, want context that current script was called from

    I'm trying to create a slightly sophisticated application that is spread across several script files.  Some functions in these files call either other.  Here is what I want to emulate:
    A.jsx
    if(mainScript=="A.jsx"){
    doA();
    function A(){}
    B.jsx
    #include A.jsx
    if(mainScript=="B.jsx"){
    doB();
    function B(){
    // some stuff
    A();
    //some more stuff
    C.jsx
    #include A.jsx
    #include B.jsx
    #include D.jsx
    main(){
    D();
    A();
    etc...
    Basically, I want a script to act differently depending on if it is the one being called or if it is being called from elsewhere. I thought I could do this pretty easily by using global variables and something like:
    if(mainScript==undefined){
    var mainScript=$.fileName;
    But global variables persist between script calls so this doesn't work. I'm a bit stuck.  Anyone know how to do this?  app.activeScript doesn't work because I am executing through the extendScript toolkit. 
    I'm vexed.

    You're definitely not wrong John, this will resolve the problem.  Sometimes, especially when doing development in a large project with lots of interlocking pieces it's convenient to be able to have some test code within each file that tests the functionality of that specific code.  Even moreso when you are new to a language, so when you think you find a better way to do something you can quicky try it out and see what happens without invoking your monolithic program.  It's not difficult to achieve this approach by splitting into two files, it just means that you have to keep twice as many file tabs open and remember which one to switch to  "Go" instead of doing it with the code you are working  on.  It seems like an extra step for no good reason.
    I do this in Java all the time, most of my complex classes have a main() method so they can be executed standalone to try out a quick snippet or test some corner cases.  Comprehensive unit testing would probably be better but the time investment is much greater plus I doubt something like that would be well supported with ExtendScript.
    Is there any different between a jsx and jsxinc file or is that just a common naming convention that you or a community of people use to differentiate files?

  • Help in profiling a complex application needed

    Hi,
    I have a rather complex, general, problem here I would like to solve using
    dtrace so any hint, advise, similar experience etc would be more than
    welcome.
    Basically, my company has created a complex database system for acquisition
    and management of reference stock market data and the process has several
    phases (this is my understanding of it): acquire the data from
    e.g. Bloomberg in their native format, transforms it in some universal
    format and then use that format to load it into a database where it can be
    analysed, processed etc using more or less (in house developed) standard
    SQL with calendar extensions (e.g every Friday, last Monday in month etc
    etc). There are several processes (servers) involved: data server,
    scheduler, database server etc etc.
    Now, when we have installed the product at one of our customers (running
    E6500 with 24CPUs and 20GB of RAM, all that on Solaris 8 --I think), our
    product was given a two hours window every day to do a certain amount of
    work and to process several GBs of data (don't have the figures) and
    everything was fine, since we were able to finish that in 90 minutes. But
    now, as the amount of data within database grows (although still within
    preallocated 80 or 100GB size -- split into 2GB files to work around (ex)
    large file problem), for the same amount of work the product in question
    needs something like 180 minutes -- which is 1 hour too much.
    My task is to try to find out where the bottleneck is and to give some
    suggestions for speeding things up. The customer claims that the
    application is I/O bound and prstat -m more or less confirms that (almost
    no CPU latency, large amount of voluntary context switches etc etc).
    How do I confirm this using dtrace? I can't run dtrace on their production
    system since it's Solaris 8 but I have set up a Solaris 10 (s10_60)
    machine that has all the components installed and will try to run similar
    kind of work there.
    Where do I start? What shall I look for? The problem is also that there is
    a lot of programs involved, a lot of IPC (shared memory, semaphores, pipes,
    sockets) and in general when the system is busy, it is quite busy.
    I guess in ideal world, we would call Sun and ask them to figure the
    problem themselves, but it is not an ideal world and the golden age of .com
    is gone :-(
    Thanks and bye, Dragan

    Where do I start? What shall I look for? The problem
    is also that there is
    a lot of programs involved, a lot of IPC (shared
    memory, semaphores, pipes,
    sockets) and in general when the system is busy, it is
    quite busy.Well, this is definitely the hard part. DTrace makes it much easier to ask questions of the system, but you're asking "what questions do I ask?" There are lots of valid ways to go about this, but I often start by by looking at how the physical resources on the system are being used: CPU, I/O, networking and so on. For starters, squeeze all of the idle out of the system: as long as there is idle in the system, you're obviously not going as fast as you could. You want to start asking questions like "why am I doing I/O?" or "why am I coming off CPU?" If you could post some mpstat/vmstat/iostat data, perhaps we could provide some more concrete directions...
    - Bryan
    Bryan Cantrill, Solaris Kernel Development. http://blogs.sun.com/bmc

  • Examples of large, algorithmically complex applications

    Does anyone have an example of a large, algorithmically complex Java Application (something on the order of 250K-1M lines of code)? I'm doing a language study to see how well mature Java applications scale over the life of long projects.
    If anyone knows of any examples or could point me to someone who can, it would be appreciated.
    Thanks.

    Two ideas come to mind:
    1) OpenCyc: http://www.opencyc.com/ A java based platform derived from an attempt to breed intelligence into machines.
    2) ANY examples of neural net software you can find that are java based.
    http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=java+neural+net

  • Complex application

    Hi
    I am trying to build an application. The idea is:
    1. connect a mobile to a router
    2. Let the mobile search and display the devices that attached to the router (getting the device name and IP address)
    3. The user clicks on one of the devices to make a connection with it
    I tried to use HttpConnection to access the router and get the DHCP Table but it returns error because the got username and password. My router is Netgear DG834G.
    I know this sounds a bit complex but any help will be appreciated.
    regards

    In my test workspace I created Project1 and Project1 projects.
    In Project1, I created a package of BC4J components named package1
    I chose "Deploy Business Components..." on Project1 and selected a Simple Archive. Upon deployment, this created me two JAR files Project1CSCommon.jar and Project1CSMT.jar.
    I created a library for Project1CSMT.jar and added this library to my Project2 project's library list.
    In Project2, I created another BC4J package of components named package2
    I right-mouse "Import Business Components..." and I navigate to the Project1CSMT.jar and use the file dialog to "drill down" into the jar file just like a folder, and pick the package1.xml file. This results in importing package1 into Project2.
    I chose "Deploy Business Components..." in Project2 and select an AppModule Session Bean (BMT).
    I expand the Project2EJB.bcdeploy node in the navigator and right-mouse on the Project2EJB.deploy node to pick "Settings...".
    I click on the "Profile Dependencies" tab, and check [x] Project1MiddleTier.deploy and [x] Project1Common.deploy to make those two deployment profiles a dependency of this one.
    Then I right-mouse "Deploy" on the Project2EJB.bcdeploy node and it deploys my AppModule in Project2 as a remoteable application module. I go out to the file system and do:
    % jar tvf Project2EJB.ear
       329 Thu Jun 20 18:31:10 CEST 2002 META-INF/application.xml
      1665 Thu Jun 20 18:31:10 CEST 2002 META-INF/data-sources.xml
       286 Thu Jun 20 18:31:10 CEST 2002 META-INF/orion-application.xml
      4361 Thu Jun 20 18:31:10 CEST 2002 Project1CSCommon.jar
    13344 Thu Jun 20 18:31:10 CEST 2002 Project1CSMT.jar
    25345 Thu Jun 20 18:31:10 CEST 2002 Project2EJB.jar
      9185 Thu Jun 20 18:31:10 CEST 2002 Project2EjbCommon.jarto verify that it includes my imported JAR files into the EAR file.

  • Mail crashes and most of applications does not respond

    My mac stopped working well. The mail crash all the time and most programs do not respond after a open. At first I thought it was low disk space. However, I released 70GB and the problem persisted. I thought that the problem was HD. I used Disk Utility to repair but do not work to. Then i formated the drive and used the Time Machine backup to repair but the problem returned.
    Please,  I need urgent help. (thanks in advance)
    This is what appear after an inespected crash of mail.
    Process:         Mail [4921]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.1 (1251)
    Build Info:      Mail-1251000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [154]
    Date/Time:       2012-01-31 19:37:42.992 -0200
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          296395 sec
    Crashes Since Last Report:           4930
    Per-App Interval Since Last Report:  617460 sec
    Per-App Crashes Since Last Report:   31
    Anonymous UUID:                      1C246B0F-3D95-4F41-86A8-EE2F75C1DB3F
    Crashed Thread:  4  -[MailApp _fetchBrandingInfo]  Dispatch queue: com.apple.root.default-overcommit-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010e4e0000-000000010e892000 [ 3784K] r-x/rwx SM=COW  /Applications/Mail.app/Contents/MacOS/Mail
    Application Specific Information:
    objc[4921]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8dba567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8dba4d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8d3edb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8d3f62d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8d3f5ae6 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox                     0x00007fff90f413d3 RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox                     0x00007fff90f4863d ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox                     0x00007fff90f484ca BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff8e3e53f1 _DPSNextEvent + 659
    9   com.apple.AppKit                        0x00007fff8e3e4cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit                        0x00007fff8e3e162d -[NSApplication run] + 470
    11  com.apple.AppKit                        0x00007fff8e66080c NSApplicationMain + 867
    12  com.apple.mail                          0x000000010e5b8d88 0x10e4e0000 + 888200
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8dba77e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db845be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8db8314e _dispatch_mgr_thread + 54
    Thread 2:: -[LocalAccount _synchronizeMailboxListWithFileSystem]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8dba7a8e pread + 10
    1   libsqlite3.dylib                        0x00007fff8b06e07c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff8b08f006 readDbPage + 102
    3   libsqlite3.dylib                        0x00007fff8b08d79b sqlite3PagerAcquire + 315
    4   libsqlite3.dylib                        0x00007fff8b0bb7e2 moveToChild + 146
    5   libsqlite3.dylib                        0x00007fff8b0bdbb2 sqlite3BtreeNext + 674
    6   libsqlite3.dylib                        0x00007fff8b0b63be sqlite3VdbeExec + 37134
    7   libsqlite3.dylib                        0x00007fff8b0ac65b sqlite3_step + 1883
    8   com.apple.MessageFramework              0x00007fff86cb550b __+[Library sendMessagesMatchingQuery:to:options:]_block_invoke_1 + 805
    9   com.apple.MessageFramework              0x00007fff86c8a89f +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 1165
    10  com.apple.MessageFramework              0x00007fff86cb48ed +[Library sendMessagesMatchingQuery:to:options:] + 385
    11  com.apple.MessageFramework              0x00007fff86de3889 +[Library messagesForMailbox:olderThanNumberOfDays:] + 576
    12  com.apple.MessageFramework              0x00007fff86e05f74 -[LibraryStore deleteMessagesOlderThanNumberOfDays:compact:] + 87
    13  com.apple.MessageFramework              0x00007fff86d28ae7 -[MailAccount deleteMessagesFromMailboxUid:olderThanNumberOfDays:] + 147
    14  com.apple.MessageFramework              0x00007fff86d1658e -[MailAccount(Internal) _synchronizeMailboxListWithFileSystemBeforeImport:] + 423
    15  com.apple.CoreFoundation                0x00007fff8d45320c __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8d4530a4 -[NSInvocation invoke] + 132
    17  com.apple.MessageFramework              0x00007fff86caad3c -[MonitoredInvocation invoke] + 196
    18  com.apple.MessageFramework              0x00007fff86c87745 -[ThrowingInvocationOperation main] + 33
    19  com.apple.MessageFramework              0x00007fff86c876eb -[_MFInvocationOperation main] + 449
    20  com.apple.Foundation                    0x00007fff8e0f9788 -[__NSOperationInternal start] + 705
    21  com.apple.Foundation                    0x00007fff8e10c9e6 ____NSOQSchedule_block_invoke_2 + 124
    22  libdispatch.dylib                       0x00007fff8db828ba _dispatch_call_block_and_release + 18
    23  libdispatch.dylib                       0x00007fff8db83799 _dispatch_worker_thread2 + 255
    24  libsystem_c.dylib                       0x00007fff9038b3da _pthread_wqthread + 316
    25  libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 4 Crashed:: -[MailApp _fetchBrandingInfo]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   com.apple.CoreFoundation                0x00007fff8d3c4a22 CFStringGetLength + 18
    1   com.apple.CoreFoundation                0x00007fff8d3dc049 CFStringCompareWithOptionsAndLocale + 73
    2   com.apple.AOSAccounts                   0x000000011491309c SaveAccountInfo(__CFString const*, __CFArray*, __CFDictionary*) + 218
    3   com.apple.AOSAccounts                   0x0000000114914624 ParseAccountInfo(__CFString const*, __CFString const*, __CFDictionary const*) + 1439
    4   com.apple.AOSAccounts                   0x0000000114914699 RefreshAccount + 65
    5   com.apple.AOSAccounts                   0x00000001149161fa ServiceProviderManager::LoadAccountProviders(__CFString const*) + 60
    6   com.apple.AOSAccounts                   0x00000001149166d2 ServiceProviderManager::Login(__CFString const*, __CFString const*, bool) + 76
    7   com.apple.AOSUI                         0x000000011488f158 -[MMAccountMgr init] + 577
    8   com.apple.AOSUI                         0x000000011488e5cb +[MMAccountMgr sharedMgr] + 53
    9   com.apple.placeholder.iaplugin          0x000000011486178c 0x114860000 + 6028
    10  com.apple.placeholder.iaplugin          0x0000000114861476 0x114860000 + 5238
    11  com.apple.framework.internetaccounts          0x00007fff8ce8f6fb -[IAPluginManager _createPluginFromBundle:] + 278
    12  com.apple.framework.internetaccounts          0x00007fff8ce8f492 -[IAPluginManager _loadPluginAtPath:identifiers:] + 267
    13  com.apple.framework.internetaccounts          0x00007fff8ce8f294 -[IAPluginManager _loadPlugins:] + 1174
    14  com.apple.framework.internetaccounts          0x00007fff8ce8ed99 -[IAPluginManager loadPlugins:] + 56
    15  com.apple.framework.internetaccounts          0x00007fff8ce8e956 -[IAPluginManager _allPluginsForClass:] + 75
    16  com.apple.framework.internetaccounts          0x00007fff8ce8e8c9 -[IAPluginManager allAListPlugins] + 52
    17  com.apple.framework.internetaccounts          0x00007fff8ce8bf21 -[IAPluginManager pluginIDForDomain:] + 50
    18  com.apple.framework.internetaccounts          0x00007fff8ce84b37 +[IAAccount aListPluginIDForSettings:] + 793
    19  com.apple.framework.internetaccounts          0x00007fff8ce84ef3 +[IAAccount _pluginForSettings:] + 49
    20  com.apple.framework.internetaccounts          0x00007fff8ce84e88 +[IAAccount brandIconForAccountSettings:] + 18
    21  com.apple.MessageFramework              0x00007fff86d196db -[Account brandIcon] + 98
    22  com.apple.mail                          0x000000010e564cc3 0x10e4e0000 + 543939
    23  com.apple.CoreFoundation                0x00007fff8d45320c __invoking___ + 140
    24  com.apple.CoreFoundation                0x00007fff8d4530a4 -[NSInvocation invoke] + 132
    25  com.apple.MessageFramework              0x00007fff86c87745 -[ThrowingInvocationOperation main] + 33
    26  com.apple.MessageFramework              0x00007fff86c876eb -[_MFInvocationOperation main] + 449
    27  com.apple.Foundation                    0x00007fff8e0f9788 -[__NSOperationInternal start] + 705
    28  com.apple.Foundation                    0x00007fff8e10c9e6 ____NSOQSchedule_block_invoke_2 + 124
    29  libdispatch.dylib                       0x00007fff8db828ba _dispatch_call_block_and_release + 18
    30  libdispatch.dylib                       0x00007fff8db83799 _dispatch_worker_thread2 + 255
    31  libsystem_c.dylib                       0x00007fff9038b3da _pthread_wqthread + 316
    32  libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8dba567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8dba4d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8d3edb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8d3f62d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8d3f5ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8e0bd04f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff8e0bcf3b -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff86ca80b1 -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x00007fff8e10b7fe -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff8e10b776 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff903898bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff9038cb75 thread_start + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8dba7a8e pread + 10
    1   libsqlite3.dylib                        0x00007fff8b06e07c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff8b08f006 readDbPage + 102
    3   libsqlite3.dylib                        0x00007fff8b08d79b sqlite3PagerAcquire + 315
    4   libsqlite3.dylib                        0x00007fff8b0bb7e2 moveToChild + 146
    5   libsqlite3.dylib                        0x00007fff8b0c93c0 sqlite3BtreeMovetoUnpacked + 768
    6   libsqlite3.dylib                        0x00007fff8b0bb954 sqlite3VdbeCursorMoveto + 180
    7   libsqlite3.dylib                        0x00007fff8b0b2356 sqlite3VdbeExec + 20646
    8   libsqlite3.dylib                        0x00007fff8b0ac65b sqlite3_step + 1883
    9   com.apple.MessageFramework              0x00007fff86cb550b __+[Library sendMessagesMatchingQuery:to:options:]_block_invoke_1 + 805
    10  com.apple.MessageFramework              0x00007fff86c8a89f +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 1165
    11  com.apple.MessageFramework              0x00007fff86cb48ed +[Library sendMessagesMatchingQuery:to:options:] + 385
    12  com.apple.MessageFramework              0x00007fff86cb0b42 +[Library sendMessagesMatchingCriterion:to:options:] + 1703
    13  com.apple.MessageFramework              0x00007fff86cb0353 +[Library messagesMatchingCriterion:options:] + 122
    14  com.apple.MessageFramework              0x00007fff86cb019d -[_NonContentSmartMailboxUnreadCountManager _refreshForMailboxes:] + 545
    15  com.apple.MessageFramework              0x00007fff86cafb3e __-[_NonContentSmartMailboxUnreadCountManager updateSmartMailboxes]_block_invoke_1 + 1482
    16  com.apple.Foundation                    0x00007fff8e132b95 -[NSBlockOperation main] + 116
    17  com.apple.Foundation                    0x00007fff8e0f9788 -[__NSOperationInternal start] + 705
    18  com.apple.Foundation                    0x00007fff8e10c9e6 ____NSOQSchedule_block_invoke_2 + 124
    19  libdispatch.dylib                       0x00007fff8db828ba _dispatch_call_block_and_release + 18
    20  libdispatch.dylib                       0x00007fff8db83799 _dispatch_worker_thread2 + 255
    21  libsystem_c.dylib                       0x00007fff9038b3da _pthread_wqthread + 316
    22  libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 9:: -[MailApp _tellSyncServicesToRegisterAndSync]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8dba567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8dba4d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8d3edb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8d3f62d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8d3f5ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8e0d1c02 -[NSConnection sendInvocation:internal:] + 2206
    6   com.apple.CoreFoundation                0x00007fff8d44e2b4 ___forwarding___ + 756
    7   com.apple.CoreFoundation                0x00007fff8d44df48 _CF_forwarding_prep_0 + 232
    8   com.apple.Foundation                    0x00007fff8e0d02bb -[NSConnection rootProxy] + 74
    9   com.apple.syncservices                  0x00007fff856df871 +[NSConnection(SyncServicesExtensions) isd_rootProxyForConnectionWithRegisteredName:requestTimeout:replyTimeout:protoc ol:enableMultipleThreads:independentConversations:] + 213
    10  com.apple.syncservices                  0x00007fff857076ff -[ISyncConcreteManager _connectToServerNoLock] + 237
    11  com.apple.syncservices                  0x00007fff857073bb -[ISyncConcreteManager _connectToServer] + 283
    12  com.apple.syncservices                  0x00007fff85706b86 -[ISyncConcreteManager _performSelectorOnServer:numberOfArguments:] + 346
    13  com.apple.syncservices                  0x00007fff85706a2a -[ISyncConcreteManager _performSelectorOnServer:withArg:withArg:] + 29
    14  com.apple.syncservices                  0x00007fff8570694c -[ISyncConcreteManager clientWithIdentifier:] + 178
    15  com.apple.Mail.Syncer                   0x000000011476f77d 0x11475b000 + 83837
    16  com.apple.mail                          0x000000010e564d67 0x10e4e0000 + 544103
    17  com.apple.CoreFoundation                0x00007fff8d45320c __invoking___ + 140
    18  com.apple.CoreFoundation                0x00007fff8d4530a4 -[NSInvocation invoke] + 132
    19  com.apple.MessageFramework              0x00007fff86caad3c -[MonitoredInvocation invoke] + 196
    20  com.apple.MessageFramework              0x00007fff86c87745 -[ThrowingInvocationOperation main] + 33
    21  com.apple.MessageFramework              0x00007fff86c876eb -[_MFInvocationOperation main] + 449
    22  com.apple.Foundation                    0x00007fff8e0f9788 -[__NSOperationInternal start] + 705
    23  com.apple.Foundation                    0x00007fff8e10c9e6 ____NSOQSchedule_block_invoke_2 + 124
    24  libdispatch.dylib                       0x00007fff8db828ba _dispatch_call_block_and_release + 18
    25  libdispatch.dylib                       0x00007fff8db83799 _dispatch_worker_thread2 + 255
    26  libsystem_c.dylib                       0x00007fff9038b3da _pthread_wqthread + 316
    27  libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8dba7192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9038b594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9038cb85 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x000000000000001c  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x0000000110c95e60  rsp: 0x0000000110c95e50
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000010ed92db0  r11: 0x000000010ea24230
      r12: 0x0000000000000008  r13: 0x00007fda8da71090  r14: 0x00007fda8add3070  r15: 0x0000000000000001
      rip: 0x00007fff8d3c4a22  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU: 2
    Binary Images:
           0x10e4e0000 -        0x10e891fff  com.apple.mail (5.1 - 1251) <6497E6E9-53F7-3772-ACC1-6E5E96449353> /Applications/Mail.app/Contents/MacOS/Mail
           0x10fd3c000 -        0x10fd3efff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x10fd4e000 -        0x10fd50fff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x10fd54000 -        0x10fd6afff  dhx.so (??? - ???) <9AB7809C-2651-3FCF-9357-8E1CDEAB6466> /usr/lib/sasl2/dhx.so
           0x10fd77000 -        0x10fd80fff  digestmd5WebDAV.so (??? - ???) <8D39C8C0-ACCE-34D4-815A-87825A1A4492> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10fd85000 -        0x10fd88fff  libcrammd5.2.so (??? - ???) <5EEE3304-D132-3C9B-A54D-C21D7C34DA28> /usr/lib/sasl2/libcrammd5.2.so
           0x10fd8d000 -        0x10fd96fff  libdigestmd5.2.so (??? - ???) <6DD64225-CFFF-379B-A5BA-5409F777F307> /usr/lib/sasl2/libdigestmd5.2.so
           0x10fd9d000 -        0x10fda2fff  libgssapiv2.2.so (??? - ???) <DC1BA305-26FA-3CC7-8400-6A45521EF2A3> /usr/lib/sasl2/libgssapiv2.2.so
           0x10fda7000 -        0x10fda9fff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x10fdad000 -        0x10fdb2fff  libntlm.so (??? - ???) <1B9D16BE-D0DB-31A3-8B84-7830509B5ECA> /usr/lib/sasl2/libntlm.so
           0x10fdb7000 -        0x10fdbefff  libotp.2.so (??? - ???) <1DDBDDF7-3F84-3AF0-A878-9E64EEBE0ED5> /usr/lib/sasl2/libotp.2.so
           0x10fdc7000 -        0x10fdc9fff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x10fdcd000 -        0x10fdd1fff  libpps.so (??? - ???) <26172BC5-1758-3BE6-9B8D-F254A727478A> /usr/lib/sasl2/libpps.so
           0x10fdd6000 -        0x10fdd9ff7  mschapv2.so (??? - ???) <F62C8BE2-B2E4-3E36-AC52-B4E149AFC186> /usr/lib/sasl2/mschapv2.so
           0x10fdde000 -        0x10fe0cfff  com.apple.DirectoryService.PasswordServerFramework (7.0 - 7.0) <58E9CACA-9438-3B86-84DC-272533F2B704> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10fe6c000 -        0x10fe6ffff  shadow_auxprop.so (??? - ???) <DF9DE842-FBFA-368A-AA8C-E29CF334FF69> /usr/lib/sasl2/shadow_auxprop.so
           0x10fe74000 -        0x10fe76fff  smb_nt.so (??? - ???) <C6D59817-4DB8-34F9-BD71-2FDDA857CBA8> /usr/lib/sasl2/smb_nt.so
           0x10fe7a000 -        0x10fe7dfff  smb_ntlmv2.so (??? - ???) <A2FD1300-B742-32BE-B640-74732490CC94> /usr/lib/sasl2/smb_ntlmv2.so
           0x10fe9d000 -        0x10fe9fff7 +com.omnigroup.OmniMailMessageServiceEnabler (??? - 1.0) <E48CD2DF-01D6-E5CC-8052-947E051A4D08> /Users/USER/Library/Mail/*/OmniMailMessageServiceEnabler
           0x112074000 -        0x112077ff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x11208b000 -        0x11208bffd +cl_kernels (??? - ???) <D4D86C7F-280B-4BC7-AB4D-687F78869BA8> cl_kernels
           0x1120b6000 -        0x1120bcfef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x1129d6000 -        0x112a69ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x112a88000 -        0x112a89ff3 +cl_kernels (??? - ???) <3A4546B9-5F37-41B7-9136-008BC0A1319C> cl_kernels
           0x112ac3000 -        0x112ac3ff1 +cl_kernels (??? - ???) <CB4B1132-AED0-41E3-A3BF-691382781CD7> cl_kernels
           0x112ac5000 -        0x112b56ff7  unorm8_rgba.dylib (1.50.61 - compatibility 1.0.0) <278541F2-18CC-3BE4-AD6B-24A3E983ACB5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x112b7c000 -        0x112b7dffc +cl_kernels (??? - ???) <CB020922-F12E-48BC-BE84-76A3C3FC95B3> cl_kernels
           0x112ffd000 -        0x112ffeff3 +cl_kernels (??? - ???) <7CB7AAD2-8E9A-499D-8534-319136FB3CCC> cl_kernels
           0x11300a000 -        0x11300affd +cl_kernels (??? - ???) <9BA907FF-0D32-4264-8D2F-DD0EDCE93B30> cl_kernels
           0x11300e000 -        0x11300eff5 +cl_kernels (??? - ???) <DE3C3692-E046-499C-9577-702D2486F539> cl_kernels
           0x11343d000 -        0x11343dff7  com.apple.SafariDAVNotifier (1.1 - 1) <560452E6-BCB8-36B0-B36E-47AF9CC99958> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x113453000 -        0x113456fff  com.apple.DirectoryServicesSource (1.2 - 1062) <0F479AAE-037E-3310-8206-DDEB075456C9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x1134d6000 -        0x1134dbfff  com.apple.contacts.iaplugin (1.1 - 1062) <258CC376-5A41-38AB-A21C-D307138EEB52> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x1134fb000 -        0x1134fdfff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1062) <F03F0085-D9E7-3838-9ED6-248E8397620E> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1135b4000 -        0x113615fff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 196) <5304FAE6-1CC6-3539-9046-CE1C362364B9> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x11475b000 -        0x11477ffff  com.apple.Mail.Syncer (5.1 - 1251.1) <019CD023-71F3-3443-A89D-1DF1218F8EE4> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x1147c0000 -        0x1147c8fff  com.apple.calendar.iaplugin (5.0.1 - 1139.14) <C9277923-EEC8-318E-87C9-6FB41174C4F3> /System/Library/InternetAccounts/iCal.iaplugin/Contents/MacOS/iCal
           0x1147d8000 -        0x1147dcfff  com.aol.iaplugin (1.1 - 2) <2D29926E-4B49-3623-AC5F-40CC36A06067> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x1147e2000 -        0x1147e7fff  com.apple.chat.iaplugin (1.0.1 - 935) <27BB8B6C-0BA4-36A3-AAFD-6EA9279112B0> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x114812000 -        0x11481bfff  com.apple.exchange.iaplugin (1.1 - 2) <2540E4F5-F8B6-3135-86BE-79B629F075FC> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x114824000 -        0x114829fff  com.google.iaplugin (1.1 - 2) <434CD71C-53E1-3B80-A3C0-552512CDF105> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x114860000 -        0x114879fff  com.apple.placeholder.iaplugin (1.0.1 - 1) <9EBEE3A8-A6A9-32B7-A6CE-27715102F03E> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x11488c000 -        0x1148dffff  com.apple.AOSUI (1.0.1 - 59) <855C1979-AF41-3DE9-8225-615DF2FC44EE> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x11490d000 -        0x114920ff7  com.apple.AOSAccounts (1.0.1 - 1.0.61) <A0011298-B106-3DEC-B459-60D96F017BE9> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
           0x114934000 -        0x11496fff7  com.apple.Ubiquity (1.0 - 196) <B7CD3D18-84C8-3C5E-8AE5-ED3331E71F05> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x11498c000 -        0x1149acff7  com.apple.ChunkingLibrary (1.0 - 125) <9EAE4385-5DF7-3956-8196-895DD6772BD7> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff6e0e0000 -     0x7fff6e114ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff85136000 -     0x7fff8513dfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8513e000 -     0x7fff8519efff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8519f000 -     0x7fff851eaff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff851eb000 -     0x7fff85246ff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff85247000 -     0x7fff8528dff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EAF61ADC-DC00-34CE-B23E-7238ED54E31D> /usr/lib/libcurl.4.dylib
        0x7fff8528e000 -     0x7fff8538cfff  com.apple.QuickLookUIFramework (3.1 - 500.1) <D3A71FF1-7ED1-39DB-AD4E-451612DA536C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8538d000 -     0x7fff85665ff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff85666000 -     0x7fff856dcfff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff856dd000 -     0x7fff85848fff  com.apple.syncservices (6.1 - 673.3) <1EDAC1B3-C010-3CE1-BC4D-33B879EEF191> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff85849000 -     0x7fff858e3ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff858e4000 -     0x7fff8590ffff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff85910000 -     0x7fff8597efff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8597f000 -     0x7fff85ad8fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85b26000 -     0x7fff85b27fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff85b28000 -     0x7fff85b67ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff85b68000 -     0x7fff85b6ffff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85b78000 -     0x7fff85b8aff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff85c3d000 -     0x7fff85c66fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff85c67000 -     0x7fff86099fff  com.apple.VideoToolbox (1.0 - 705.42) <FA0AD643-845C-3378-AFD1-8C5BD0215B72> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8609a000 -     0x7fff860b7fff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff860b8000 -     0x7fff86257fff  com.apple.QuartzCore (1.7 - 270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86258000 -     0x7fff86265fff  com.apple.KerberosHelper (3.0 - 1.0) <040790B0-527E-337B-8E0D-CC4B4B36634B> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff86266000 -     0x7fff862d0fff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff862d1000 -     0x7fff86301fff  com.apple.framework.Admin (11.0 - 11.0) <C72B49AD-9114-328D-A0FE-AE97111D0A78> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff86302000 -     0x7fff86308ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8639a000 -     0x7fff8639bfff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8639c000 -     0x7fff863a2fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff863a3000 -     0x7fff8662efff  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <4B188A38-3A5B-327D-ABE9-8EE2420B3791> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8662f000 -     0x7fff86634ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff86635000 -     0x7fff866cbff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff866cc000 -     0x7fff867e4ff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8680d000 -     0x7fff8680ffff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff86810000 -     0x7fff86915ff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86916000 -     0x7fff86969fff  com.apple.iCalendar (5.0 - 104) <F7723132-0AA0-3FB3-AAD7-2112D294FDC3> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff869a5000 -     0x7fff869defe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff869df000 -     0x7fff869f2ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff869f3000 -     0x7fff86b7dff7  com.apple.QTKit (7.7.1 - 2306) <A97042BD-4FD8-3556-9279-6B7742C98904> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff86b93000 -     0x7fff86bbcfff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff86bbd000 -     0x7fff86bc0fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff86c03000 -     0x7fff86c77fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6585161A-628F-3467-82A4-ECBF1FE7184D> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff86c85000 -     0x7fff86fddff7  com.apple.MessageFramework (5.1 - 1251.1) <9A036637-6172-3D23-9118-4633E2CF2029> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff86fde000 -     0x7fff87ce9ff7  com.apple.WebCore (7534.52 - 7534.52.12) <32AF92F7-44FC-3ADB-A6DD-D58A3EA88EFE> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff87cf2000 -     0x7fff87dd0fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87dd1000 -     0x7fff87dd9fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff87dda000 -     0x7fff87e21ff7  com.apple.CoreMedia (1.0 - 705.42) <AA2E9D78-A08C-39E2-B423-D69A75C2397D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87e22000 -     0x7fff87e23fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff87e24000 -     0x7fff87e43ff7  com.apple.DotMacSyncManager (6.1 - 488.5) <63D5FE4D-35E4-33A3-BC50-8A48927B82FE> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff87e44000 -     0x7fff88428fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff88429000 -     0x7fff8843ffff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff88440000 -     0x7fff884d2ff7  com.apple.PDFKit (2.6.1 - 2.6.1) <33A0A777-8CF4-3F36-BB1A-78F8A3D7E8C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff886aa000 -     0x7fff886aafff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff886ab000 -     0x7fff886edff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff886ee000 -     0x7fff88b82fff  com.apple.RawCamera.bundle (3.9.0 - 584) <CB295E3D-6E52-4E53-D553-A7C5FF960C01> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88b83000 -     0x7fff88d85fff  com.apple.AOSKit (1.01 - 87) <E00ACA45-14A4-3894-9001-DDD39667B107> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff88d86000 -     0x7fff88db3ff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff88dd0000 -     0x7fff88df8ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88e8a000 -     0x7fff88e96fff  com.apple.DirectoryService.Framework (10.7 - 146) <BB0240B0-69F7-38FA-A8D8-9C0079F8613F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff88eec000 -     0x7fff88f2cff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff88f2d000 -     0x7fff88f2efff  libodfde.dylib (??? - ???) <87836EDD-1474-3926-916A-A7AE8CA65079> /usr/lib/libodfde.dylib
        0x7fff88fa3000 -     0x7fff89004fff  com.apple.ExchangeWebServices (2.0 - 123) <74F90633-C43E-31F2-A9CF-2E91E306E46F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff89005000 -     0x7fff89032fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89033000 -     0x7fff89057ff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff89058000 -     0x7fff8906cff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8906d000 -     0x7fff89111fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89112000 -     0x7fff89112fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff89113000 -     0x7fff89120fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff89121000 -     0x7fff8919cff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff891c5000 -     0x7fff891cffff  libcsfde.dylib (??? - ???) <49DD8C85-A3F9-36FB-BB63-ECAD4ABD8AF9> /usr/lib/libcsfde.dylib
        0x7fff891d0000 -     0x7fff891d2fff  com.apple.EFILogin (1.0 - 1) <E806D2EA-BD93-302E-8F2C-6D33AE26E1BC> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff891d3000 -     0x7fff89200fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff893b5000 -     0x7fff893c7ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff893c8000 -     0x7fff8942dff7  com.apple.coredav (1.0.1 - 115.19) <6E4E8A0B-F6EC-3BCE-B4FB-90154AF13279> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8942e000 -     0x7fff8942efff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff89442000 -     0x7fff89444ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff89445000 -     0x7fff89499ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8949a000 -     0x7fff894a6fff  com.apple.CrashReporterSupport (10.7.2 - 347) <0F6D3509-9062-3647-B7C4-F25AF3AE9B71> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff894a7000 -     0x7fff894b4ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff894b5000 -     0x7fff895b2fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff895b3000 -     0x7fff8969afff  com.apple.backup.framework (1.3.1 - 1.3.1) <3F01784C-3C09-3F08-B949-779F0A5248C1> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8969b000 -     0x7fff896a4ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff896a5000 -     0x7fff896b9fff  com.apple.syncservices.syncservicesui (6.1 - 673.3) <1388CDAC-98DB-3FC8-915A-40301804D172> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
        0x7fff896ba000 -     0x7fff897b4ff7  com.apple.DiskImagesFramework (10.7.2 - 331) <C88025FC-2460-3F33-B808-CB1E8C2E5CB9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff897b5000 -     0x7fff8982aff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff8982b000 -     0x7fff8982cfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8983c000 -     0x7fff89847ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff89848000 -     0x7fff898d5fff  com.apple.iLifeMediaBrowser (2.6.1 - 502.1.5) <6E778C70-7254-3D1A-8D11-6D38643BDEBA> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff898d6000 -     0x7fff898e4ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff898e5000 -     0x7fff89902ff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89907000 -     0x7fff89b75ff7  com.apple.QuartzComposer (5.0 - 236) <CBF3070A-BD09-328D-857F-F35A0E1D22B5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff89b76000 -     0x7fff89b93fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <ABF4E917-A452-3B86-B071-948F4B6A3CD3> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8a351000 -     0x7fff8a3a1fff  com.apple.CoreMediaIO (210.0 - 3180) <13374EA4-83BE-3407-B9DD-D199426D0E7A> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a3a2000 -     0x7fff8a7cffff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a7d0000 -     0x7fff8a7d3ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8a7d4000 -     0x7fff8a7dafff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff8a7db000 -     0x7fff8a81fff7  com.apple.MediaKit (11.0 - 585) <8F2DF50A-03D2-3551-AD92-74A9262D6B0F> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8a820000 -     0x7fff8a865fff  com.apple.DiskManagement (4.2 - 507) <15DB8D3E-E03A-35A0-BF64-85CCF0B2AFFA> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8a882000 -     0x7fff8a897fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ad2c000 -     0x7fff8ad44fff  com.apple.iChat.InstantMessage (6.0 - 833) <DF9EAA84-8AE6-3BFD-AB21-7BDED2161564> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff8ad45000 -     0x7fff8ae47ff7  com.apple.PubSub (1.0.5 - 65.28) <8251731B-2EAA-3957-82B6-3FF0E096645A> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8ae48000 -     0x7fff8ae5ffff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ae60000 -     0x7fff8ae9afff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8aeae000 -     0x7fff8aeb2fff  com.apple.FindMyMac (1.1 - 1.1) <D9EB8F02-7C45-3948-9B50-4979993C6599> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8aeb3000 -     0x7fff8aedcfff  com.apple.datadetectors (3.0 - 172.3) <7C8B98DD-68C0-3AE0-BCD9-55CBD63925B7> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8aedd000 -     0x7fff8af06ff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8af07000 -     0x7fff8af0afff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8af0b000 -     0x7fff8af5efff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b046000 -     0x7fff8b058ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8b059000 -     0x7fff8b064fff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b065000 -     0x7fff8b168fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff8b169000 -     0x7fff8b172fff  com.apple.AOSNotification (1.4.0 - 504.1) <0CD79695-6625-3BF4-A420-2612190EC2E0> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8b173000 -     0x7fff8b1a3ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b1a4000 -     0x7fff8b1e4fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8b1e5000 -     0x7fff8b1f0fff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <67D1D43D-7641-3BCA-B2BF-10838B380100> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8b1f1000 -     0x7fff8b261fff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8b262000 -     0x7fff8b270fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8b271000 -     0x7fff8b3aafef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8b3ab000 -     0x7fff8b3acfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8b3ad000 -     0x7fff8b43ffff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8b440000 -     0x7fff8b466ff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b467000 -     0x7fff8b475ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8b476000 -     0x7fff8b4dafff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b4db000 -     0x7fff8b4dbfff  com.apple.AOSMigrate (1.0 - 1) <7D22554E-EDAE-3B37-AC47-96B0797F1781> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8b61f000 -     0x7fff8b620fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8b621000 -     0x7fff8b63dff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8b63e000 -     0x7fff8b642fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8b643000 -     0x7fff8b64dff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8b64e000 -     0x7fff8b6f0ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8b6f1000 -     0x7fff8b71cfff  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <09D59AFB-6CCD-37E1-8A41-8C45217E7612> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8b7e5000 -     0x7fff8b838fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b839000 -     0x7fff8ba63ff7  com.apple.CalendarStore (5.0.1 - 1139.14) <570E813D-3E53-3F44-8EFB-9037809B305B> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8ba64000 -     0x7fff8bf2bfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8bf2c000 -     0x7fff8bf7eff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8bf7f000 -     0x7fff8c004ff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8c005000 -     0x7fff8c00bff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c00c000 -     0x7fff8c03fff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/G

    Geez I had to scroll down a half a kilometer just to find the reply button...
    You have something maybe that is 32 bit? check the manufactur of both programs to see if there is an update. To be certain it is not your system (and hopefully it is not) back up your hd using TimeMachine in the system preferences.
    Then for "why do I need to do this..." (cause you asked) Open disk utility and select repair permissions. If that does not work, Command+R while the computer is starting up and reinstall OS X.

  • Skype 7 - Most ugly application in moment.

    Skype 6.x is perfect application. But Skype 7 is worse.
    Skype 7 negatives:
    - worse UI;
    - unable to send picture file like JPG, I must archive it in RAR and then send;
    - in main Skype window have many spaces between rows, this lose space for more contacts in list. Must scroll list to see it.
    Skype 6:
    - all this negatives things missing.
    I hope in new version of Skype to can choose Skin or to can personalise UI.
    Today my old Skype 6.6.0.106 stop sign me in Skype network and I was forced to install Skype 7

    6.14.0.104: https://web.archive.org/web/20140413131237/http://​​​download.skype.com/msi/SkypeSetup_6.14.0.104.ms...
    6.18.0.106: https://web.archive.org/web/20141119080039/http://​​​download.skype.com/msi/SkypeSetup_6.18.0.106.ms...
    6.21.0.104: https://web.archive.org/web/20141213144457/http://​​​download.skype.com/msi/SkypeSetup_6.21.0.104.ms...

  • Complex application OC4J deployment

    I need an help to deploy a "local deploy" developed application in OC4J.
    I tried to deploy in OC4J a simple BC4J application, succesfully.
    Now, this is my situation:
    I have a lot of applications which have
    1) a common set of BC4J package. This package has a single table EO, VO, and an ApplicationModule. This BC4Js have a common frame in all applications.
    2) a set of BC4J used for single applications and used in other applications as imported in BC4J projects.
    Now, deployed in local mode, I did a .jar and imported this jar in other project.
    What I have to do to make all ApplicationModule remotable?
    Do I need to change manually .jpx file to change the import location of Business component?
    After all, is better to have a lot of EAR with common jar inside, or is better to build a single EAR?

    In my test workspace I created Project1 and Project1 projects.
    In Project1, I created a package of BC4J components named package1
    I chose "Deploy Business Components..." on Project1 and selected a Simple Archive. Upon deployment, this created me two JAR files Project1CSCommon.jar and Project1CSMT.jar.
    I created a library for Project1CSMT.jar and added this library to my Project2 project's library list.
    In Project2, I created another BC4J package of components named package2
    I right-mouse "Import Business Components..." and I navigate to the Project1CSMT.jar and use the file dialog to "drill down" into the jar file just like a folder, and pick the package1.xml file. This results in importing package1 into Project2.
    I chose "Deploy Business Components..." in Project2 and select an AppModule Session Bean (BMT).
    I expand the Project2EJB.bcdeploy node in the navigator and right-mouse on the Project2EJB.deploy node to pick "Settings...".
    I click on the "Profile Dependencies" tab, and check [x] Project1MiddleTier.deploy and [x] Project1Common.deploy to make those two deployment profiles a dependency of this one.
    Then I right-mouse "Deploy" on the Project2EJB.bcdeploy node and it deploys my AppModule in Project2 as a remoteable application module. I go out to the file system and do:
    % jar tvf Project2EJB.ear
       329 Thu Jun 20 18:31:10 CEST 2002 META-INF/application.xml
      1665 Thu Jun 20 18:31:10 CEST 2002 META-INF/data-sources.xml
       286 Thu Jun 20 18:31:10 CEST 2002 META-INF/orion-application.xml
      4361 Thu Jun 20 18:31:10 CEST 2002 Project1CSCommon.jar
    13344 Thu Jun 20 18:31:10 CEST 2002 Project1CSMT.jar
    25345 Thu Jun 20 18:31:10 CEST 2002 Project2EJB.jar
      9185 Thu Jun 20 18:31:10 CEST 2002 Project2EjbCommon.jarto verify that it includes my imported JAR files into the EAR file.

  • Most Apple applications not starting up

    I've been having issues with system software recently. When I try to start iCal, Safari, Software Update, even the Calculator, the software's icon starts bouncing but never starts up. This is really starting to bug me since I can't update my software or run Disk Utility to check if the problem is with my hard drive. I've tried starting up in Safe Mode and checking with fsck, but it find s no problems.
    Does somebody know what's happening here?

    I've been having similar situations just since Monday Apr 24th. With mine the application will start up (seemingly) but then before I can do anything I will get the spinning beachball icon that never stops. I can force quit (it does not say in that dialog box that the application is "not responding"). I don't know how many apps this applies to, but far too many. This happens invariably with Camino, Calculator, many things in System Preferences, and Disk Utility. It does NOT happen with Photoshop CS2 or fortunately with Startup Disk. I thought that I might make a new user account and delete the one this is happening with and maybe that would clear it up. But, right now, I only have the one account and because I can't get into the Users program, I can't make changes. I was able to use the Install CD and startup from it and repaired permissions but that had no effect once I restarted from my HD. Since I am unable to use some important tools, do you have any suggestions for me. (oh, also, I tried to install Applejack but the installer also wouldn't run.)
    G4   Mac OS X (10.3.9)   1.56 GB RAM

  • Loading a most stubborn application at startup

    Hi all,
    I received quite a bit of help on irc, however I have nonetheless been unsuccessful in making this work.  Essentially I have written some software that manages various usb devices as well as a script that runs the application and then logs the output from stdout and stderr.  Running this application from the cli after logging in works great.  Attempting to run the application during boot however does not work (it segfaults).
    I have tried many things: writing a bash script and running it from rc.d (via daemons in rc.conf), attempting to run the script directly from rc.local, attempting to run the script using screen from rc.local, performing various modifications to my /etc/inittab such as using this command as described in the wiki x:5:once:/bin/su - -- PREFERRED_USER -l -c 'EXECUTE SCRIPT HERE', etc.
    None of these worked.  I figured that, before I quit entirely, I might ask the community to see if anyone else had any ideas.  Any help is greatly appreciated!!!

    rowdog wrote:
    anstmich wrote:Something to note, however, is that the program fails when run in the background (i.e. "/home/user/app &")
    Why? That's probably the first issue to track down. Is this "software" a program that you wrote? What language?
    Long running processes are normally written as daemons. Wikipedia has an overview of the usual approach at
    http://en.wikipedia.org/wiki/Daemon_%28 … of_daemons
    Yes this is an application that I wrote in C.  I tried daemonizing it and that did not work, which I am guessing somehow relates to the fact that it doesnt like being run as a background prcoess.  Beyond using libusb, the only other "libraries" used are those provided standard with C (i.e. string.h, stdio.h, stdlib.h).  Also, when I did daemonize it, if I called /etc/rc.d/app start it would work just fine, just not during boot, however.  I will do some reading though, thanks! 
    I agree with lives2evil,
    This will get a lot more visibility from the coders over at Programming.  Moving....
    I would wager real money you are using dereferencing  null pointer some place.  Maybe some function that fails because the USB in question is not yet set in time for your script?  Set up some logging and pour a bunch of telemetry out to the debug log to see what is happening.
    You might want to put the source up on pastebin and provide a link.
    I doubt it is a null pointer (I do quite a bit of error checking for this).  My guess, though, is that you are right about the USB.  There must be something that libusb needs -- an environment variable or something. 
    If I try putting in a long delay (30+ seconds) in the python (or bash) script that runs my application, although it pauses successfully, the application called still fails.  Furthermore, if I immediately log in and run the script manually, everything works fine.  This would lead me to believe that there is perhaps a problem detaching the kernel USB driver? Im not sure what else could be different before and after logging in.
    Thanks for the help!

  • Language-change series C5180 to Chinese, most complex!

    Have a series HP all-in-one (5180), and my grandchild somehow (aided by Murphy's Law) changed language from English to Chinese  (on the 2" screen on top left front), after cursing and jumping up and down, including disenheritance, seek your help, what exact keys to press to get it back to English.
    My Chinese is the same as my Arabic, non-existant totally.
    Thanks to anyone that can solve my torture for the last two years, many times in advance. 
    Almost calmed down Grandpa

    Hi,
    Sorry, you may not be able to read Chinese on the panel, pleae use the arrows as shown in the following image:
    Good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • Custom Screen for Z program in HRABAP

    Hi Techies, I want to develop report in HR ABAP which has my own selectins screen fields Company Code and Cost Center and Activity, coz i dont want default selection screen provided by the pnp logical database. How do i go for that screen. Regards. R

  • First page after installation

    Hi, I've just downloaded (from otn web site) and installed (on my winxp pro notebook) html db to a just created 10g personal edition db. I'm not able to find the right url to login to html db ... the url http://hostname:7778/pls/htmldb/htmldb_login d

  • How to Photoshop Elements 5 catalog transfer to Bridge

    I recently switched from a pc to a mac. I have an extensive PSE catalog. How do I transfer the tag information into bridge, which is included in PSE 6 for the mac? Carol

  • Summary column get less

    Hi, I have a formula column in group G1, which returns either 0 or 1, and there is summary column calculates the sum of this formula column on report level. it seems that the summary column doesn't count the first row which means I always get the sum

  • Clone stamp tool disables keyboard

    I'm working on an iMac, OSX (10.7.4) with CS5.1. Ever since I uploaded my new Photoshop program months ago, it disables the alphanumeric keys on my key pad when I use the clone stamp tool. I have to restart my computer in order for my keyboard to wor